cmd/go/internal/modfetch: add codehosting -> repo converter
diff --git a/vendor/cmd/go/internal/modfetch/coderepo.go b/vendor/cmd/go/internal/modfetch/coderepo.go
new file mode 100644
index 0000000..5f51abe
--- /dev/null
+++ b/vendor/cmd/go/internal/modfetch/coderepo.go
@@ -0,0 +1,554 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package modfetch
+
+import (
+	"archive/zip"
+	"bytes"
+	"errors"
+	"fmt"
+	"io"
+	"io/ioutil"
+	"os"
+	"path"
+	"path/filepath"
+	"regexp"
+	"strconv"
+	"strings"
+	"time"
+
+	"cmd/go/internal/modconv"
+	"cmd/go/internal/modfetch/codehost"
+	"cmd/go/internal/modfile"
+	"cmd/go/internal/module"
+	"cmd/go/internal/semver"
+)
+
+// A codeRepo implements modfetch.Repo using an underlying codehost.Repo.
+type codeRepo struct {
+	modPath  string
+	code     codehost.Repo
+	codeRoot string
+	codeDir  string
+
+	path        string
+	pathPrefix  string
+	pathMajor   string
+	pseudoMajor string
+}
+
+func newCodeRepo(code codehost.Repo, path string) (Repo, error) {
+	codeRoot := code.Root()
+	if !hasPathPrefix(path, codeRoot) {
+		return nil, fmt.Errorf("mismatched repo: found %s for %s", codeRoot, path)
+	}
+	pathPrefix, pathMajor, ok := module.SplitPathVersion(path)
+	if !ok {
+		return nil, fmt.Errorf("invalid module path %q", path)
+	}
+	pseudoMajor := "v0"
+	if pathMajor != "" {
+		pseudoMajor = pathMajor[1:]
+	}
+
+	r := &codeRepo{
+		modPath:     path,
+		code:        code,
+		codeRoot:    codeRoot,
+		codeDir:     strings.Trim(strings.TrimPrefix(pathPrefix, codeRoot), "/"),
+		pathPrefix:  pathPrefix,
+		pathMajor:   pathMajor,
+		pseudoMajor: pseudoMajor,
+	}
+
+	return r, nil
+}
+
+func (r *codeRepo) ModulePath() string {
+	return r.modPath
+}
+
+func (r *codeRepo) Versions(prefix string) ([]string, error) {
+	p := prefix
+	if r.codeDir != "" {
+		p = r.codeDir + "/" + p
+	}
+	tags, err := r.code.Tags(p)
+	if err != nil {
+		return nil, err
+	}
+	var list []string
+	for _, tag := range tags {
+		if !strings.HasPrefix(tag, p) {
+			continue
+		}
+		v := tag
+		if r.codeDir != "" {
+			v = v[len(r.codeDir)+1:]
+		}
+		if !module.MatchPathMajor(v, r.pathMajor) {
+			continue
+		}
+		list = append(list, v)
+	}
+	SortVersions(list)
+	return list, nil
+}
+
+func (r *codeRepo) Stat(rev string) (*RevInfo, error) {
+	codeRev := r.revToRev(rev)
+	if semver.IsValid(codeRev) && r.codeDir != "" {
+		codeRev = r.codeDir + "/" + codeRev
+	}
+	info, err := r.code.Stat(codeRev)
+	if err != nil {
+		return nil, err
+	}
+	return r.convert(info)
+}
+
+func (r *codeRepo) LatestAt(t time.Time, branch string) (*RevInfo, error) {
+	info, err := r.code.LatestAt(t, branch)
+	if err != nil {
+		return nil, err
+	}
+	return r.convert(info)
+}
+
+func (r *codeRepo) convert(info *codehost.RevInfo) (*RevInfo, error) {
+	v := info.Version
+	if r.codeDir == "" {
+		if !semver.IsValid(v) || isPseudoVersion(v) {
+			v = PseudoVersion(r.pseudoMajor, info.Time, info.Short)
+		}
+	} else {
+		p := r.codeDir + "/"
+		if strings.HasPrefix(v, p) && semver.IsValid(v[len(p):]) && !isPseudoVersion(v[len(p):]) {
+			v = v[len(p):]
+		} else {
+			v = PseudoVersion(r.pseudoMajor, info.Time, info.Short)
+		}
+	}
+
+	info2 := &RevInfo{
+		Name:    info.Name,
+		Short:   info.Short,
+		Time:    info.Time,
+		Version: v,
+	}
+	return info2, nil
+}
+
+func (r *codeRepo) revToRev(rev string) string {
+	if semver.IsValid(rev) {
+		if isPseudoVersion(rev) {
+			i := strings.Index(rev, "-")
+			j := strings.Index(rev[i+1:], "-")
+			return rev[i+1+j+1:]
+		}
+		if r.codeDir == "" {
+			return rev
+		}
+		return r.codeDir + "/" + rev
+	}
+	return rev
+}
+
+func (r *codeRepo) versionToRev(version string) (rev string, err error) {
+	if !semver.IsValid(version) {
+		return "", fmt.Errorf("malformed semantic version %q", version)
+	}
+	return r.revToRev(version), nil
+}
+
+func (r *codeRepo) findDir(version string) (rev, dir string, gomod []byte, err error) {
+	rev, err = r.versionToRev(version)
+	if err != nil {
+		return "", "", nil, err
+	}
+	if r.pathMajor == "" {
+		if r.codeDir == "" {
+			return rev, "", nil, nil
+		}
+		file1 := path.Join(r.codeDir, "go.mod")
+		gomod1, err1 := r.code.ReadFile(rev, file1, codehost.MaxGoMod)
+		if err1 != nil {
+			return "", "", nil, fmt.Errorf("missing go.mod")
+		}
+		return rev, r.codeDir, gomod1, nil
+	}
+
+	// Suppose pathMajor is "/v2".
+	// Either go.mod should claim v2 and v2/go.mod should not exist,
+	// or v2/go.mod should exist and claim v2. Not both.
+	// Note that we don't check the full path, just the major suffix,
+	// because of replacement modules. This might be a fork of
+	// the real module, found at a different path, usable only in
+	// a replace directive.
+	file1 := path.Join(r.codeDir, "go.mod")
+	file2 := path.Join(r.codeDir, r.pathMajor[1:], "go.mod")
+	gomod1, err1 := r.code.ReadFile(rev, file1, codehost.MaxGoMod)
+	gomod2, err2 := r.code.ReadFile(rev, file2, codehost.MaxGoMod)
+	found1 := err1 == nil && isMajor(gomod1, r.pathMajor)
+	found2 := err2 == nil && isMajor(gomod2, r.pathMajor)
+
+	if err2 == nil && !found2 {
+		return "", "", nil, fmt.Errorf("%s has non-...%s module path", file2, r.pathMajor)
+	}
+	if found1 && found2 {
+		return "", "", nil, fmt.Errorf("both %s and %s claim ...%s module", file1, file2, r.pathMajor)
+	}
+	if found2 {
+		return rev, filepath.Join(r.codeDir, r.pathMajor), gomod2, nil
+	}
+	if found1 {
+		return rev, r.codeDir, gomod1, nil
+	}
+	return "", "", nil, fmt.Errorf("missing go.mod")
+}
+
+func isMajor(gomod []byte, pathMajor string) bool {
+	return strings.HasSuffix(modPath(gomod), pathMajor)
+}
+
+var moduleStr = []byte("module")
+
+func modPath(mod []byte) string {
+	for len(mod) > 0 {
+		line := mod
+		mod = nil
+		if i := bytes.IndexByte(line, '\n'); i >= 0 {
+			line, mod = line[:i], line[i+1:]
+		}
+		line = bytes.TrimSpace(line)
+		if !bytes.HasPrefix(line, moduleStr) {
+			continue
+		}
+		line = line[len(moduleStr):]
+		n := len(line)
+		line = bytes.TrimSpace(line)
+		if len(line) == n || len(line) == 0 || line[0] != '"' && line[0] != '`' {
+			continue
+		}
+		q := line[0]
+		i := 1
+		for i < len(line) && line[i] != q {
+			if q == '"' && line[i] == '\\' {
+				i++
+			}
+			i++
+		}
+		if i >= len(line) {
+			return "" // malformed quoted string or multiline module path
+		}
+		p, err := strconv.Unquote(string(line[:i+1]))
+		if err != nil {
+			return ""
+		}
+		return p
+	}
+	return "" // missing module path
+}
+
+func (r *codeRepo) GoMod(version string) (data []byte, err error) {
+	rev, dir, gomod, err := r.findDir(version)
+	if err != nil {
+		return nil, err
+	}
+	if gomod != nil {
+		return gomod, nil
+	}
+	data, err = r.code.ReadFile(rev, path.Join(dir, "go.mod"), codehost.MaxGoMod)
+	if err != nil {
+		if e := strings.ToLower(err.Error()); strings.Contains(e, "not found") || strings.Contains(e, "404") { // TODO
+			return r.legacyGoMod(rev, dir), nil
+		}
+		return nil, err
+	}
+	return data, nil
+}
+
+var altConfigs = []string{
+	"Gopkg.lock",
+
+	"GLOCKFILE",
+	"Godeps/Godeps.json",
+	"dependencies.tsv",
+	"glide.lock",
+	"vendor.conf",
+	"vendor.yml",
+	"vendor/manifest",
+	"vendor/vendor.json",
+}
+
+func (r *codeRepo) legacyGoMod(rev, dir string) []byte {
+	mf := new(modfile.File)
+	mf.AddModuleStmt(r.modPath)
+	for _, file := range altConfigs {
+		data, err := r.code.ReadFile(rev, path.Join(dir, file), codehost.MaxGoMod)
+		if err != nil {
+			continue
+		}
+		convert := modconv.Converters[file]
+		if convert == nil {
+			continue
+		}
+		if err := ConvertLegacyConfig(mf, file, data); err != nil {
+			continue
+		}
+		break
+	}
+	data, err := mf.Format()
+	if err != nil {
+		return []byte(fmt.Sprintf("%s\nmodule %q\n", modconv.Prefix, r.modPath))
+	}
+	return append([]byte(modconv.Prefix+"\n"), data...)
+}
+
+func (r *codeRepo) modPrefix(rev string) string {
+	return r.modPath + "@" + rev
+}
+
+func (r *codeRepo) Zip(version string, tmpdir string) (tmpfile string, err error) {
+	rev, dir, _, err := r.findDir(version)
+	if err != nil {
+		return "", err
+	}
+	dl, actualDir, err := r.code.ReadZip(rev, dir, codehost.MaxZipFile)
+	if err != nil {
+		return "", err
+	}
+	if actualDir != "" && !hasPathPrefix(dir, actualDir) {
+		return "", fmt.Errorf("internal error: downloading %v %v: dir=%q but actualDir=%q", r.path, rev, dir, actualDir)
+	}
+	subdir := strings.Trim(strings.TrimPrefix(dir, actualDir), "/")
+
+	// Spool to local file.
+	f, err := ioutil.TempFile(tmpdir, "vgo-codehost-")
+	if err != nil {
+		dl.Close()
+		return "", err
+	}
+	defer os.Remove(f.Name())
+	defer f.Close()
+	maxSize := int64(codehost.MaxZipFile)
+	lr := &io.LimitedReader{R: dl, N: maxSize + 1}
+	if _, err := io.Copy(f, lr); err != nil {
+		dl.Close()
+		return "", err
+	}
+	dl.Close()
+	if lr.N <= 0 {
+		return "", fmt.Errorf("downloaded zip file too large")
+	}
+	size := (maxSize + 1) - lr.N
+	if _, err := f.Seek(0, 0); err != nil {
+		return "", err
+	}
+
+	// Translate from zip file we have to zip file we want.
+	zr, err := zip.NewReader(f, size)
+	if err != nil {
+		return "", err
+	}
+	f2, err := ioutil.TempFile(tmpdir, "vgo-")
+	if err != nil {
+		return "", err
+	}
+
+	zw := zip.NewWriter(f2)
+	newName := f2.Name()
+	defer func() {
+		f2.Close()
+		if err != nil {
+			os.Remove(newName)
+		}
+	}()
+	if subdir != "" {
+		subdir += "/"
+	}
+	haveLICENSE := false
+	topPrefix := ""
+	haveGoMod := make(map[string]bool)
+	for _, zf := range zr.File {
+		if topPrefix == "" {
+			i := strings.Index(zf.Name, "/")
+			if i < 0 {
+				return "", fmt.Errorf("missing top-level directory prefix")
+			}
+			topPrefix = zf.Name[:i+1]
+		}
+		if !strings.HasPrefix(zf.Name, topPrefix) {
+			return "", fmt.Errorf("zip file contains more than one top-level directory")
+		}
+		dir, file := path.Split(zf.Name)
+		if file == "go.mod" {
+			haveGoMod[dir] = true
+		}
+	}
+	root := topPrefix + subdir
+	inSubmodule := func(name string) bool {
+		for {
+			dir, _ := path.Split(name)
+			if len(dir) <= len(root) {
+				return false
+			}
+			if haveGoMod[dir] {
+				return true
+			}
+			name = dir[:len(dir)-1]
+		}
+	}
+	for _, zf := range zr.File {
+		if topPrefix == "" {
+			i := strings.Index(zf.Name, "/")
+			if i < 0 {
+				return "", fmt.Errorf("missing top-level directory prefix")
+			}
+			topPrefix = zf.Name[:i+1]
+		}
+		if strings.HasSuffix(zf.Name, "/") { // drop directory dummy entries
+			continue
+		}
+		if !strings.HasPrefix(zf.Name, topPrefix) {
+			return "", fmt.Errorf("zip file contains more than one top-level directory")
+		}
+		name := strings.TrimPrefix(zf.Name, topPrefix)
+		if !strings.HasPrefix(name, subdir) {
+			continue
+		}
+		name = strings.TrimPrefix(name, subdir)
+		if isVendoredPackage(name) {
+			continue
+		}
+		if inSubmodule(zf.Name) {
+			continue
+		}
+		base := path.Base(name)
+		if strings.ToLower(base) == "go.mod" && base != "go.mod" {
+			return "", fmt.Errorf("zip file contains %s, want all lower-case go.mod", zf.Name)
+		}
+		if name == "LICENSE" {
+			haveLICENSE = true
+		}
+		size := int64(zf.UncompressedSize)
+		if size < 0 || maxSize < size {
+			return "", fmt.Errorf("module source tree too big")
+		}
+		maxSize -= size
+
+		rc, err := zf.Open()
+		if err != nil {
+			return "", err
+		}
+		w, err := zw.Create(r.modPrefix(version) + "/" + name)
+		lr := &io.LimitedReader{R: rc, N: size + 1}
+		if _, err := io.Copy(w, lr); err != nil {
+			return "", err
+		}
+		if lr.N <= 0 {
+			return "", fmt.Errorf("individual file too large")
+		}
+	}
+
+	if !haveLICENSE && subdir != "" {
+		if data, err := r.code.ReadFile(rev, "LICENSE", codehost.MaxLICENSE); err == nil {
+			w, err := zw.Create(r.modPrefix(version) + "/LICENSE")
+			if err != nil {
+				return "", err
+			}
+			if _, err := w.Write(data); err != nil {
+				return "", err
+			}
+		}
+	}
+	if err := zw.Close(); err != nil {
+		return "", err
+	}
+	if err := f2.Close(); err != nil {
+		return "", err
+	}
+
+	return f2.Name(), nil
+}
+
+// hasPathPrefix reports whether the path s begins with the
+// elements in prefix.
+func hasPathPrefix(s, prefix string) bool {
+	switch {
+	default:
+		return false
+	case len(s) == len(prefix):
+		return s == prefix
+	case len(s) > len(prefix):
+		if prefix != "" && prefix[len(prefix)-1] == '/' {
+			return strings.HasPrefix(s, prefix)
+		}
+		return s[len(prefix)] == '/' && s[:len(prefix)] == prefix
+	}
+}
+
+func isVendoredPackage(name string) bool {
+	var i int
+	if strings.HasPrefix(name, "vendor/") {
+		i += len("vendor/")
+	} else if j := strings.Index(name, "/vendor/"); j >= 0 {
+		i += len("/vendor/")
+	} else {
+		return false
+	}
+	return strings.Contains(name[i:], "/")
+}
+
+func PseudoVersion(major string, t time.Time, rev string) string {
+	if major == "" {
+		major = "v0"
+	}
+	return fmt.Sprintf("%s.0.0-%s-%s", major, t.UTC().Format("20060102150405"), rev)
+}
+
+var ErrNotPseudoVersion = errors.New("not a pseudo-version")
+
+/*
+func ParsePseudoVersion(repo Repo, version string) (rev string, err error) {
+	major := semver.Major(version)
+	if major == "" {
+		return "", ErrNotPseudoVersion
+	}
+	majorPrefix := major + ".0.0-"
+	if !strings.HasPrefix(version, majorPrefix) || !strings.Contains(version[len(majorPrefix):], "-") {
+		return "", ErrNotPseudoVersion
+	}
+	versionSuffix := version[len(majorPrefix):]
+	for i := 0; versionSuffix[i] != '-'; i++ {
+		c := versionSuffix[i]
+		if c < '0' || '9' < c {
+			return "", ErrNotPseudoVersion
+		}
+	}
+	rev = versionSuffix[strings.Index(versionSuffix, "-")+1:]
+	if rev == "" {
+		return "", ErrNotPseudoVersion
+	}
+	if proxyURL != "" {
+		return version, nil
+	}
+	fullRev, t, err := repo.CommitInfo(rev)
+	if err != nil {
+		return "", fmt.Errorf("unknown pseudo-version %s: loading %v: %v", version, rev, err)
+	}
+	v := PseudoVersion(major, t, repo.ShortRev(fullRev))
+	if v != version {
+		return "", fmt.Errorf("unknown pseudo-version %s: %v is %v", version, rev, v)
+	}
+	return fullRev, nil
+}
+*/
+
+var pseudoVersionRE = regexp.MustCompile(`^v[0-9]+\.0\.0-[0-9]{14}-[A-Za-z0-9]+$`)
+
+func isPseudoVersion(v string) bool {
+	return pseudoVersionRE.MatchString(v)
+}
diff --git a/vendor/cmd/go/internal/modfetch/coderepo_test.go b/vendor/cmd/go/internal/modfetch/coderepo_test.go
new file mode 100644
index 0000000..6b5a100
--- /dev/null
+++ b/vendor/cmd/go/internal/modfetch/coderepo_test.go
@@ -0,0 +1,478 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package modfetch
+
+import (
+	"archive/zip"
+	"cmd/go/internal/webtest"
+	"io/ioutil"
+	"os"
+	"reflect"
+	"strings"
+	"testing"
+	"time"
+)
+
+func init() {
+	isTest = true
+}
+
+var codeRepoTests = []struct {
+	path     string
+	rev      string
+	err      string
+	version  string
+	name     string
+	short    string
+	time     time.Time
+	gomod    string
+	gomoderr string
+	zip      []string
+	ziperr   string
+}{
+	{
+		path:    "github.com/rsc/vgotest1",
+		rev:     "v0.0.0",
+		version: "v0.0.0",
+		name:    "80d85c5d4d17598a0e9055e7c175a32b415d6128",
+		short:   "80d85c5d4d17",
+		time:    time.Date(2018, 2, 19, 23, 10, 6, 0, time.UTC),
+		zip: []string{
+			"LICENSE",
+			"README.md",
+			"pkg/p.go",
+		},
+	},
+	{
+		path:    "github.com/rsc/vgotest1",
+		rev:     "v1.0.0",
+		version: "v1.0.0",
+		name:    "80d85c5d4d17598a0e9055e7c175a32b415d6128",
+		short:   "80d85c5d4d17",
+		time:    time.Date(2018, 2, 19, 23, 10, 6, 0, time.UTC),
+		zip: []string{
+			"LICENSE",
+			"README.md",
+			"pkg/p.go",
+		},
+	},
+	{
+		path:    "github.com/rsc/vgotest1/v2",
+		rev:     "v2.0.0",
+		version: "v2.0.0",
+		name:    "80d85c5d4d17598a0e9055e7c175a32b415d6128",
+		short:   "80d85c5d4d17",
+		time:    time.Date(2018, 2, 19, 23, 10, 6, 0, time.UTC),
+		ziperr:  "missing go.mod",
+	},
+	{
+		path:    "github.com/rsc/vgotest1",
+		rev:     "80d85",
+		version: "v0.0.0-20180219231006-80d85c5d4d17",
+		name:    "80d85c5d4d17598a0e9055e7c175a32b415d6128",
+		short:   "80d85c5d4d17",
+		time:    time.Date(2018, 2, 19, 23, 10, 6, 0, time.UTC),
+		zip: []string{
+			"LICENSE",
+			"README.md",
+			"pkg/p.go",
+		},
+	},
+	{
+		path:    "github.com/rsc/vgotest1",
+		rev:     "mytag",
+		version: "v0.0.0-20180219231006-80d85c5d4d17",
+		name:    "80d85c5d4d17598a0e9055e7c175a32b415d6128",
+		short:   "80d85c5d4d17",
+		time:    time.Date(2018, 2, 19, 23, 10, 6, 0, time.UTC),
+		zip: []string{
+			"LICENSE",
+			"README.md",
+			"pkg/p.go",
+		},
+	},
+	{
+		path:     "github.com/rsc/vgotest1/v2",
+		rev:      "80d85",
+		version:  "v2.0.0-20180219231006-80d85c5d4d17",
+		name:     "80d85c5d4d17598a0e9055e7c175a32b415d6128",
+		short:    "80d85c5d4d17",
+		time:     time.Date(2018, 2, 19, 23, 10, 6, 0, time.UTC),
+		gomoderr: "missing go.mod",
+		ziperr:   "missing go.mod",
+	},
+	{
+		path:    "github.com/rsc/vgotest1/v54321",
+		rev:     "80d85",
+		version: "v54321.0.0-20180219231006-80d85c5d4d17",
+		name:    "80d85c5d4d17598a0e9055e7c175a32b415d6128",
+		short:   "80d85c5d4d17",
+		time:    time.Date(2018, 2, 19, 23, 10, 6, 0, time.UTC),
+		ziperr:  "missing go.mod",
+	},
+	{
+		path: "github.com/rsc/vgotest1/submod",
+		rev:  "v1.0.0",
+		err:  "404 Not Found", // TODO
+	},
+	{
+		path: "github.com/rsc/vgotest1/submod",
+		rev:  "v1.0.3",
+		err:  "404 Not Found", // TODO
+	},
+	{
+		path:    "github.com/rsc/vgotest1/submod",
+		rev:     "v1.0.4",
+		version: "v1.0.4",
+		name:    "8afe2b2efed96e0880ecd2a69b98a53b8c2738b6",
+		short:   "8afe2b2efed9",
+		time:    time.Date(2018, 2, 19, 23, 12, 7, 0, time.UTC),
+		gomod:   "module \"github.com/vgotest1/submod\" // submod/go.mod\n",
+		zip: []string{
+			"go.mod",
+			"pkg/p.go",
+			"LICENSE",
+		},
+	},
+	{
+		path:    "github.com/rsc/vgotest1",
+		rev:     "v1.1.0",
+		version: "v1.1.0",
+		name:    "b769f2de407a4db81af9c5de0a06016d60d2ea09",
+		short:   "b769f2de407a",
+		time:    time.Date(2018, 2, 19, 23, 13, 36, 0, time.UTC),
+		gomod:   "module \"github.com/rsc/vgotest1\" // root go.mod\nrequire \"github.com/rsc/vgotest1/submod\" v1.0.5\n",
+		zip: []string{
+			"LICENSE",
+			"README.md",
+			"go.mod",
+			"pkg/p.go",
+		},
+	},
+	{
+		path:    "github.com/rsc/vgotest1/v2",
+		rev:     "v2.0.1",
+		version: "v2.0.1",
+		name:    "ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9",
+		short:   "ea65f87c8f52",
+		time:    time.Date(2018, 2, 19, 23, 14, 23, 0, time.UTC),
+		gomod:   "module \"github.com/rsc/vgotest1/v2\" // root go.mod\n",
+	},
+	{
+		path:     "github.com/rsc/vgotest1/v2",
+		rev:      "v2.0.3",
+		version:  "v2.0.3",
+		name:     "f18795870fb14388a21ef3ebc1d75911c8694f31",
+		short:    "f18795870fb1",
+		time:     time.Date(2018, 2, 19, 23, 16, 4, 0, time.UTC),
+		gomoderr: "v2/go.mod has non-.../v2 module path",
+	},
+	{
+		path:     "github.com/rsc/vgotest1/v2",
+		rev:      "v2.0.4",
+		version:  "v2.0.4",
+		name:     "1f863feb76bc7029b78b21c5375644838962f88d",
+		short:    "1f863feb76bc",
+		time:     time.Date(2018, 2, 20, 0, 3, 38, 0, time.UTC),
+		gomoderr: "both go.mod and v2/go.mod claim .../v2 module",
+	},
+	{
+		path:    "github.com/rsc/vgotest1/v2",
+		rev:     "v2.0.5",
+		version: "v2.0.5",
+		name:    "2f615117ce481c8efef46e0cc0b4b4dccfac8fea",
+		short:   "2f615117ce48",
+		time:    time.Date(2018, 2, 20, 0, 3, 59, 0, time.UTC),
+		gomod:   "module \"github.com/rsc/vgotest1/v2\" // v2/go.mod\n",
+	},
+	{
+		path:    "go.googlesource.com/scratch",
+		rev:     "0f302529858",
+		version: "v0.0.0-20180220024720-0f3025298580",
+		name:    "0f30252985809011f026b5a2d5cf456e021623da",
+		short:   "0f3025298580",
+		time:    time.Date(2018, 2, 20, 2, 47, 20, 0, time.UTC),
+		gomod:   "//vgo 0.0.3\n\nmodule \"go.googlesource.com/scratch\"\n",
+	},
+	{
+		path:    "go.googlesource.com/scratch/rsc",
+		rev:     "0f302529858",
+		version: "v0.0.0-20180220024720-0f3025298580",
+		name:    "0f30252985809011f026b5a2d5cf456e021623da",
+		short:   "0f3025298580",
+		time:    time.Date(2018, 2, 20, 2, 47, 20, 0, time.UTC),
+		gomod:   "",
+	},
+	{
+		path:     "go.googlesource.com/scratch/cbro",
+		rev:      "0f302529858",
+		version:  "v0.0.0-20180220024720-0f3025298580",
+		name:     "0f30252985809011f026b5a2d5cf456e021623da",
+		short:    "0f3025298580",
+		time:     time.Date(2018, 2, 20, 2, 47, 20, 0, time.UTC),
+		gomoderr: "missing go.mod",
+	},
+	{
+		// redirect to github
+		path:    "rsc.io/quote",
+		rev:     "v1.0.0",
+		version: "v1.0.0",
+		name:    "f488df80bcdbd3e5bafdc24ad7d1e79e83edd7e6",
+		short:   "f488df80bcdb",
+		time:    time.Date(2018, 2, 14, 0, 45, 20, 0, time.UTC),
+		gomod:   "module \"rsc.io/quote\"\n",
+	},
+	{
+		// redirect to static hosting proxy
+		path:    "swtch.com/testmod",
+		rev:     "v1.0.0",
+		version: "v1.0.0",
+		name:    "v1.0.0",
+		short:   "v1.0.0",
+		time:    time.Date(1972, 7, 18, 12, 34, 56, 0, time.UTC),
+		gomod:   "module \"swtch.com/testmod\"\n",
+	},
+	{
+		// redirect to googlesource
+		path:    "golang.org/x/text",
+		rev:     "4e4a3210bb",
+		version: "v0.0.0-20180208041248-4e4a3210bb54",
+		name:    "4e4a3210bb54bb31f6ab2cdca2edcc0b50c420c1",
+		short:   "4e4a3210bb54",
+		time:    time.Date(2018, 2, 8, 4, 12, 48, 0, time.UTC),
+	},
+	{
+		path:    "github.com/pkg/errors",
+		rev:     "v0.8.0",
+		version: "v0.8.0",
+		name:    "645ef00459ed84a119197bfb8d8205042c6df63d",
+		short:   "645ef00459ed",
+		time:    time.Date(2016, 9, 29, 1, 48, 1, 0, time.UTC),
+	},
+}
+
+func TestCodeRepo(t *testing.T) {
+	webtest.LoadOnce("testdata/webtest.txt")
+	webtest.Hook()
+	defer webtest.Unhook()
+
+	tmpdir, err := ioutil.TempDir("", "vgo-modfetch-test-")
+	if err != nil {
+		t.Fatal(err)
+	}
+	defer os.RemoveAll(tmpdir)
+	for _, tt := range codeRepoTests {
+		t.Run(strings.Replace(tt.path, "/", "_", -1)+"/"+tt.rev, func(t *testing.T) {
+			repo, err := Lookup(tt.path)
+			if err != nil {
+				t.Fatalf("Lookup(%q): %v", tt.path, err)
+			}
+			if mpath := repo.ModulePath(); mpath != tt.path {
+				t.Errorf("repo.ModulePath() = %q, want %q", mpath, tt.path)
+			}
+			info, err := repo.Stat(tt.rev)
+			if err != nil {
+				if tt.err != "" {
+					if !strings.Contains(err.Error(), tt.err) {
+						t.Fatalf("repoStat(%q): %v, wanted %q", tt.rev, err, tt.err)
+					}
+					return
+				}
+				t.Fatalf("repo.Stat(%q): %v", tt.rev, err)
+			}
+			if tt.err != "" {
+				t.Errorf("repo.Stat(%q): success, wanted error", tt.rev)
+			}
+			if info.Version != tt.version {
+				t.Errorf("info.Version = %q, want %q", info.Version, tt.version)
+			}
+			if info.Name != tt.name {
+				t.Errorf("info.Name = %q, want %q", info.Name, tt.name)
+			}
+			if info.Short != tt.short {
+				t.Errorf("info.Short = %q, want %q", info.Short, tt.short)
+			}
+			if info.Time != tt.time {
+				t.Errorf("info.Time = %v, want %v", info.Time, tt.time)
+			}
+			if tt.gomod != "" || tt.gomoderr != "" {
+				data, err := repo.GoMod(tt.version)
+				if err != nil && tt.gomoderr == "" {
+					t.Errorf("repo.GoMod(%q): %v", tt.version, err)
+				} else if err != nil && tt.gomoderr != "" {
+					if err.Error() != tt.gomoderr {
+						t.Errorf("repo.GoMod(%q): %v, want %q", tt.version, err, tt.gomoderr)
+					}
+				} else if tt.gomoderr != "" {
+					t.Errorf("repo.GoMod(%q) = %q, want error %q", tt.version, data, tt.gomoderr)
+				} else if string(data) != tt.gomod {
+					t.Errorf("repo.GoMod(%q) = %q, want %q", tt.version, data, tt.gomod)
+				}
+			}
+			if tt.zip != nil || tt.ziperr != "" {
+				zipfile, err := repo.Zip(tt.version, tmpdir)
+				if err != nil {
+					if tt.ziperr != "" {
+						if err.Error() == tt.ziperr {
+							return
+						}
+						t.Fatalf("repo.Zip(%q): %v, want error %q", tt.version, err, tt.ziperr)
+					}
+					t.Fatalf("repo.Zip(%q): %v", tt.version, err)
+				}
+				if tt.ziperr != "" {
+					t.Errorf("repo.Zip(%q): success, want error %q", tt.version, tt.ziperr)
+				}
+				prefix := tt.path + "@" + tt.version + "/"
+				z, err := zip.OpenReader(zipfile)
+				if err != nil {
+					t.Fatalf("open zip %s: %v", zipfile, err)
+				}
+				var names []string
+				for _, file := range z.File {
+					if !strings.HasPrefix(file.Name, prefix) {
+						t.Errorf("zip entry %v does not start with prefix %v", file.Name, prefix)
+						continue
+					}
+					names = append(names, file.Name[len(prefix):])
+				}
+				z.Close()
+				if !reflect.DeepEqual(names, tt.zip) {
+					t.Fatalf("zip = %v\nwant %v\n", names, tt.zip)
+				}
+			}
+		})
+	}
+}
+
+var codeRepoVersionsTests = []struct {
+	path     string
+	prefix   string
+	versions []string
+}{
+	// TODO: Why do we allow a prefix here at all?
+	{
+		path:     "github.com/rsc/vgotest1",
+		versions: []string{"v0.0.0", "v0.0.1", "v1.0.0", "v1.0.1", "v1.0.2", "v1.0.3", "v1.1.0"},
+	},
+	{
+		path:     "github.com/rsc/vgotest1",
+		prefix:   "v1.0",
+		versions: []string{"v1.0.0", "v1.0.1", "v1.0.2", "v1.0.3"},
+	},
+	{
+		path:     "github.com/rsc/vgotest1/v2",
+		versions: []string{"v2.0.0", "v2.0.1", "v2.0.2", "v2.0.3", "v2.0.4", "v2.0.5", "v2.0.6"},
+	},
+	{
+		path:     "swtch.com/testmod",
+		versions: []string{"v1.0.0", "v1.1.1"},
+	},
+}
+
+func TestCodeRepoVersions(t *testing.T) {
+	webtest.LoadOnce("testdata/webtest.txt")
+	webtest.Hook()
+	defer webtest.Unhook()
+
+	tmpdir, err := ioutil.TempDir("", "vgo-modfetch-test-")
+	if err != nil {
+		t.Fatal(err)
+	}
+	defer os.RemoveAll(tmpdir)
+	for _, tt := range codeRepoVersionsTests {
+		t.Run(strings.Replace(tt.path, "/", "_", -1), func(t *testing.T) {
+			repo, err := Lookup(tt.path)
+			if err != nil {
+				t.Fatalf("Lookup(%q): %v", tt.path, err)
+			}
+			list, err := repo.Versions(tt.prefix)
+			if err != nil {
+				t.Fatalf("Versions(%q): %v", tt.prefix, err)
+			}
+			if !reflect.DeepEqual(list, tt.versions) {
+				t.Fatalf("Versions(%q):\nhave %v\nwant %v", tt.prefix, list, tt.versions)
+			}
+		})
+	}
+}
+
+var latestAtTests = []struct {
+	path    string
+	time    time.Time
+	branch  string
+	version string
+	err     string
+}{
+	{
+		path: "github.com/rsc/vgotest1",
+		time: time.Date(2018, 1, 20, 0, 0, 0, 0, time.UTC),
+		err:  "no commits",
+	},
+	{
+		path:    "github.com/rsc/vgotest1",
+		time:    time.Date(2018, 2, 20, 0, 0, 0, 0, time.UTC),
+		version: "v0.0.0-20180219223237-a08abb797a67",
+	},
+	{
+		path:    "github.com/rsc/vgotest1",
+		time:    time.Date(2018, 2, 20, 0, 0, 0, 0, time.UTC),
+		branch:  "mybranch",
+		version: "v0.0.0-20180219231006-80d85c5d4d17",
+	},
+	{
+		path:    "swtch.com/testmod",
+		time:    time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC),
+		version: "v1.0.0",
+	},
+	{
+		path:    "swtch.com/testmod",
+		time:    time.Date(3000, 1, 1, 0, 0, 0, 0, time.UTC),
+		version: "v1.1.1",
+	},
+	{
+		path:   "swtch.com/testmod",
+		time:   time.Date(3000, 1, 1, 0, 0, 0, 0, time.UTC),
+		branch: "branch",
+		err:    "latest on branch not supported",
+	},
+}
+
+func TestLatestAt(t *testing.T) {
+	webtest.LoadOnce("testdata/webtest.txt")
+	webtest.Hook()
+	defer webtest.Unhook()
+
+	tmpdir, err := ioutil.TempDir("", "vgo-modfetch-test-")
+	if err != nil {
+		t.Fatal(err)
+	}
+	defer os.RemoveAll(tmpdir)
+	for _, tt := range latestAtTests {
+		name := strings.Replace(tt.path, "/", "_", -1) + "/" + tt.time.Format("2006-01-02_15:04:05")
+		if tt.branch != "" {
+			name += "/" + tt.branch
+		}
+		t.Run(name, func(t *testing.T) {
+			repo, err := Lookup(tt.path)
+			if err != nil {
+				t.Fatalf("Lookup(%q): %v", tt.path, err)
+			}
+			info, err := repo.LatestAt(tt.time, tt.branch)
+			if err != nil {
+				if tt.err != "" {
+					if err.Error() == tt.err {
+						return
+					}
+					t.Fatalf("LatestAt(%v, %q): %v, want %q", tt.time, tt.branch, err, tt.err)
+				}
+				t.Fatalf("LatestAt(%v, %q): %v", tt.time, tt.branch, err)
+			}
+			if info.Version != tt.version {
+				t.Fatalf("LatestAt(%v, %q) = %v, want %v", tt.time, tt.branch, info.Version, tt.version)
+			}
+		})
+	}
+}
diff --git a/vendor/cmd/go/internal/modfetch/testdata/webtest.txt b/vendor/cmd/go/internal/modfetch/testdata/webtest.txt
new file mode 100644
index 0000000..63e4949
--- /dev/null
+++ b/vendor/cmd/go/internal/modfetch/testdata/webtest.txt
@@ -0,0 +1,8350 @@
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.1
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:11 GMT
+Etag: W/"beed32a2e161b1baf3a443e1020f19dd"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C19:18DDEE:5A6FD403
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4650
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.033639
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.0.1","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.1","object":{"sha":"f1a9aa6283243d744b4be6746116ee72fa03efb0","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0"}}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=f1a9aa6283243d744b4be6746116ee72fa03efb0&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:11 GMT
+Etag: W/"dda064d623858cf4d58c2ef2fb5efe95"
+Last-Modified: Mon, 29 Jan 2018 22:20:18 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C1F:18DDFC:5A6FD403
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4649
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.046698
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"f1a9aa6283243d744b4be6746116ee72fa03efb0","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:20:18Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:20:18Z"},"message":"v0.0.1: dummy.txt","tree":{"sha":"20d300f098482086649c989628c3764f75f9e979","url":"https://api.github.com/repos/rsc/vgotest/git/trees/20d300f098482086649c989628c3764f75f9e979"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0","html_url":"https://github.com/rsc/vgotest/commit/f1a9aa6283243d744b4be6746116ee72fa03efb0","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[]}]
+
+GET https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=f1a9aa6283243d744b4be6746116ee72fa03efb0
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:11 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C23:18DE0B:5A6FD403
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4648
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.038821
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/rsc/vgotest/contents/Gopkg.lock?ref=f1a9aa6283243d744b4be6746116ee72fa03efb0
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:11 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C2A:18DE18:5A6FD403
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4647
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.043500
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/rsc/vgotest/contents/Godeps%2FGodeps.json?ref=f1a9aa6283243d744b4be6746116ee72fa03efb0
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:11 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C31:18DE21:5A6FD403
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4646
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.040269
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:11 GMT
+Etag: W/"2ca267c27d15022dba483415bcafcee8"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C32:18DE39:5A6FD403
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4645
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.025100
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.0.2","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.2","object":{"sha":"218e041c507c7115f3c7afcda8f15a94df8af4a7","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/218e041c507c7115f3c7afcda8f15a94df8af4a7"}}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=218e041c507c7115f3c7afcda8f15a94df8af4a7&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:11 GMT
+Etag: W/"1c54b89345fd176f5f65ed88cec23c47"
+Last-Modified: Mon, 29 Jan 2018 22:20:30 GMT
+Link: <https://api.github.com/repositories/119466083/commits?sha=218e041c507c7115f3c7afcda8f15a94df8af4a7&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/119466083/commits?sha=218e041c507c7115f3c7afcda8f15a94df8af4a7&per_page=2&page=1>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C35:18DE40:5A6FD403
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4644
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.047650
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"218e041c507c7115f3c7afcda8f15a94df8af4a7","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:20:30Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:20:30Z"},"message":"v0.0.2: add go.mod","tree":{"sha":"c84ca2760332927a5d314e6c1d3744871ff46a23","url":"https://api.github.com/repos/rsc/vgotest/git/trees/c84ca2760332927a5d314e6c1d3744871ff46a23"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/218e041c507c7115f3c7afcda8f15a94df8af4a7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/218e041c507c7115f3c7afcda8f15a94df8af4a7","html_url":"https://github.com/rsc/vgotest/commit/218e041c507c7115f3c7afcda8f15a94df8af4a7","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/218e041c507c7115f3c7afcda8f15a94df8af4a7/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"f1a9aa6283243d744b4be6746116ee72fa03efb0","url":"https://api.github.com/repos/rsc/vgotest/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0","html_url":"https://github.com/rsc/vgotest/commit/f1a9aa6283243d744b4be6746116ee72fa03efb0"}]},{"sha":"f1a9aa6283243d744b4be6746116ee72fa03efb0","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:20:18Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:20:18Z"},"message":"v0.0.1: dummy.txt","tree":{"sha":"20d300f098482086649c989628c3764f75f9e979","url":"https://api.github.com/repos/rsc/vgotest/git/trees/20d300f098482086649c989628c3764f75f9e979"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0","html_url":"https://github.com/rsc/vgotest/commit/f1a9aa6283243d744b4be6746116ee72fa03efb0","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[]}]
+
+GET https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=218e041c507c7115f3c7afcda8f15a94df8af4a7
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:11 GMT
+Etag: W/"f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6"
+Last-Modified: Mon, 29 Jan 2018 22:20:30 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C3B:18DE52:5A6FD403
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4643
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.048571
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6","size":32,"url":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=218e041c507c7115f3c7afcda8f15a94df8af4a7","html_url":"https://github.com/rsc/vgotest/blob/218e041c507c7115f3c7afcda8f15a94df8af4a7/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6","download_url":"https://raw.githubusercontent.com/rsc/vgotest/218e041c507c7115f3c7afcda8f15a94df8af4a7/go.mod?token=AAGWXrgFtBs38anzv2etxfDBJP7xyQvJks5ab9Q_wA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0Igo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=218e041c507c7115f3c7afcda8f15a94df8af4a7","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6","html":"https://github.com/rsc/vgotest/blob/218e041c507c7115f3c7afcda8f15a94df8af4a7/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/218e041c507c7115f3c7afcda8f15a94df8af4a7/go.mod?token=AAGWXrgFtBs38anzv2etxfDBJP7xyQvJks5ab9Q_wA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: "f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6"
+Expires: Tue, 30 Jan 2018 02:15:12 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 24eb95ed17dbf0597bdd55501ac4e5c23fbed4b2
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: DFBC:1D293:369A:39DE:5A6FD403
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278212.018053,VS0,VE46
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest"
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.5
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: W/"ce44128974a5504d2570b0d9cbb5ac7b"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C4C:18DE6A:5A6FD403
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4642
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.038089
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.0.5","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.5","object":{"sha":"9468fdc59d0c589c56c6aab7e43141f5ebd1019a","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a"}}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=9468fdc59d0c589c56c6aab7e43141f5ebd1019a&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: W/"7b4d992cb331326006ccd200b4fc5073"
+Last-Modified: Mon, 29 Jan 2018 22:22:45 GMT
+Link: <https://api.github.com/repositories/119466083/commits?sha=9468fdc59d0c589c56c6aab7e43141f5ebd1019a&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/119466083/commits?sha=9468fdc59d0c589c56c6aab7e43141f5ebd1019a&per_page=2&page=3>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C53:18DE82:5A6FD404
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4641
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.034219
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"9468fdc59d0c589c56c6aab7e43141f5ebd1019a","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:22:03Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:22:45Z"},"message":"v0.0.5, v2.0.1: break root go.mod","tree":{"sha":"7734581f4fe0ae4aed819d507ba7bac693832700","url":"https://api.github.com/repos/rsc/vgotest/git/trees/7734581f4fe0ae4aed819d507ba7bac693832700"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a","html_url":"https://github.com/rsc/vgotest/commit/9468fdc59d0c589c56c6aab7e43141f5ebd1019a","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"e6360637022d660cb6011689facabccd42fe7bbf","url":"https://api.github.com/repos/rsc/vgotest/commits/e6360637022d660cb6011689facabccd42fe7bbf","html_url":"https://github.com/rsc/vgotest/commit/e6360637022d660cb6011689facabccd42fe7bbf"}]},{"sha":"e6360637022d660cb6011689facabccd42fe7bbf","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:21:23Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:21:23Z"},"message":"v0.0.4, v2.0.0: add v2/go.mod","tree":{"sha":"ec1610b45051862fbabf4da2b2975018e8b1ba0a","url":"https://api.github.com/repos/rsc/vgotest/git/trees/ec1610b45051862fbabf4da2b2975018e8b1ba0a"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/e6360637022d660cb6011689facabccd42fe7bbf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/e6360637022d660cb6011689facabccd42fe7bbf","html_url":"https://github.com/rsc/vgotest/commit/e6360637022d660cb6011689facabccd42fe7bbf","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/e6360637022d660cb6011689facabccd42fe7bbf/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"37db17a199d8ebdfc5bac19089ac46da4711d2ea","url":"https://api.github.com/repos/rsc/vgotest/commits/37db17a199d8ebdfc5bac19089ac46da4711d2ea","html_url":"https://github.com/rsc/vgotest/commit/37db17a199d8ebdfc5bac19089ac46da4711d2ea"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=9468fdc59d0c589c56c6aab7e43141f5ebd1019a
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: W/"b3c1a8e2c9701480d8f0d25a6ace28f7b3ba0bdc"
+Last-Modified: Mon, 29 Jan 2018 22:22:45 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C57:18DE92:5A6FD404
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4640
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.038812
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"b3c1a8e2c9701480d8f0d25a6ace28f7b3ba0bdc","size":32,"url":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=9468fdc59d0c589c56c6aab7e43141f5ebd1019a","html_url":"https://github.com/rsc/vgotest/blob/9468fdc59d0c589c56c6aab7e43141f5ebd1019a/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/b3c1a8e2c9701480d8f0d25a6ace28f7b3ba0bdc","download_url":"https://raw.githubusercontent.com/rsc/vgotest/9468fdc59d0c589c56c6aab7e43141f5ebd1019a/go.mod?token=AAGWXmZ2Up7MbDMg2BeA2yEMvCoq5y3Eks5ab9RAwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0Cgo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=9468fdc59d0c589c56c6aab7e43141f5ebd1019a","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/b3c1a8e2c9701480d8f0d25a6ace28f7b3ba0bdc","html":"https://github.com/rsc/vgotest/blob/9468fdc59d0c589c56c6aab7e43141f5ebd1019a/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/9468fdc59d0c589c56c6aab7e43141f5ebd1019a/go.mod?token=AAGWXmZ2Up7MbDMg2BeA2yEMvCoq5y3Eks5ab9RAwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: "b3c1a8e2c9701480d8f0d25a6ace28f7b3ba0bdc"
+Expires: Tue, 30 Jan 2018 02:15:12 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: ab5128ffeacb7e933d0b4d0a318a348e575e8cae
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 42E4:7C3D:15267:163D4:5A6FD403
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278212.294283,VS0,VE51
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest
+
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.6
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: W/"0d97da31915b4d002af43b922a44d1d5"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C5D:18DE9C:5A6FD404
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4639
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.026408
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.0.6","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.6","object":{"sha":"b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e"}}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: W/"ea23583750f7c681d64e6fa904fee714"
+Last-Modified: Mon, 29 Jan 2018 22:22:50 GMT
+Link: <https://api.github.com/repositories/119466083/commits?sha=b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/119466083/commits?sha=b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e&per_page=2&page=3>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C60:18DEB9:5A6FD404
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4638
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.048952
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:22:16Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:22:50Z"},"message":"v0.0.6, v2.0.2: set root go.mod to say v2 incorrectly","tree":{"sha":"6c853a9664eb0d08fa00577d91d9002b2ddbfc66","url":"https://api.github.com/repos/rsc/vgotest/git/trees/6c853a9664eb0d08fa00577d91d9002b2ddbfc66"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","html_url":"https://github.com/rsc/vgotest/commit/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"9468fdc59d0c589c56c6aab7e43141f5ebd1019a","url":"https://api.github.com/repos/rsc/vgotest/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a","html_url":"https://github.com/rsc/vgotest/commit/9468fdc59d0c589c56c6aab7e43141f5ebd1019a"}]},{"sha":"9468fdc59d0c589c56c6aab7e43141f5ebd1019a","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:22:03Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:22:45Z"},"message":"v0.0.5, v2.0.1: break root go.mod","tree":{"sha":"7734581f4fe0ae4aed819d507ba7bac693832700","url":"https://api.github.com/repos/rsc/vgotest/git/trees/7734581f4fe0ae4aed819d507ba7bac693832700"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a","html_url":"https://github.com/rsc/vgotest/commit/9468fdc59d0c589c56c6aab7e43141f5ebd1019a","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"e6360637022d660cb6011689facabccd42fe7bbf","url":"https://api.github.com/repos/rsc/vgotest/commits/e6360637022d660cb6011689facabccd42fe7bbf","html_url":"https://github.com/rsc/vgotest/commit/e6360637022d660cb6011689facabccd42fe7bbf"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: W/"76e5e8f598cddabd0271d97c317b09702cb6c88f"
+Last-Modified: Mon, 29 Jan 2018 22:22:50 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C67:18DEC2:5A6FD404
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4637
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.044350
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"76e5e8f598cddabd0271d97c317b09702cb6c88f","size":36,"url":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","html_url":"https://github.com/rsc/vgotest/blob/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/76e5e8f598cddabd0271d97c317b09702cb6c88f","download_url":"https://raw.githubusercontent.com/rsc/vgotest/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e/go.mod?token=AAGWXmT7yUuASRUVOEOSZafK-KBqgo8Kks5ab9RAwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0L3YyIgoK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/76e5e8f598cddabd0271d97c317b09702cb6c88f","html":"https://github.com/rsc/vgotest/blob/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e/go.mod?token=AAGWXmT7yUuASRUVOEOSZafK-KBqgo8Kks5ab9RAwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: "76e5e8f598cddabd0271d97c317b09702cb6c88f"
+Expires: Tue, 30 Jan 2018 02:15:12 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: a94c20a130627e7bdd9d825517b86e7efee3d557
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 675E:1ACA0:23C03:24F8C:5A6FD403
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278213.588298,VS0,VE50
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest/v2"
+
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.7
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: W/"fe0fd26bffba1380f4f94e9fbfea7fa2"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C73:18DED5:5A6FD404
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4636
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.035768
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.0.7","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.7","object":{"sha":"3c73944f478fe0f57538ee6cd1abedc816e85c12","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12"}}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=3c73944f478fe0f57538ee6cd1abedc816e85c12&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: W/"2a1c75e096710e93ee21d18833dfb68d"
+Last-Modified: Mon, 29 Jan 2018 22:23:04 GMT
+Link: <https://api.github.com/repositories/119466083/commits?sha=3c73944f478fe0f57538ee6cd1abedc816e85c12&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/119466083/commits?sha=3c73944f478fe0f57538ee6cd1abedc816e85c12&per_page=2&page=4>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C79:18DEF2:5A6FD404
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4635
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.044222
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"3c73944f478fe0f57538ee6cd1abedc816e85c12","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:04Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:04Z"},"message":"v0.0.7, v2.0.3; fix root go.mod","tree":{"sha":"e056cc41d564a20e7ec5acea86c3687daf153f2e","url":"https://api.github.com/repos/rsc/vgotest/git/trees/e056cc41d564a20e7ec5acea86c3687daf153f2e"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12","html_url":"https://github.com/rsc/vgotest/commit/3c73944f478fe0f57538ee6cd1abedc816e85c12","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","url":"https://api.github.com/repos/rsc/vgotest/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","html_url":"https://github.com/rsc/vgotest/commit/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e"}]},{"sha":"b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:22:16Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:22:50Z"},"message":"v0.0.6, v2.0.2: set root go.mod to say v2 incorrectly","tree":{"sha":"6c853a9664eb0d08fa00577d91d9002b2ddbfc66","url":"https://api.github.com/repos/rsc/vgotest/git/trees/6c853a9664eb0d08fa00577d91d9002b2ddbfc66"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","html_url":"https://github.com/rsc/vgotest/commit/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"9468fdc59d0c589c56c6aab7e43141f5ebd1019a","url":"https://api.github.com/repos/rsc/vgotest/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a","html_url":"https://github.com/rsc/vgotest/commit/9468fdc59d0c589c56c6aab7e43141f5ebd1019a"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=3c73944f478fe0f57538ee6cd1abedc816e85c12
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: W/"0b94025c90623a60d0b35571a28e17a43631f366"
+Last-Modified: Mon, 29 Jan 2018 22:23:04 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C80:18DF0A:5A6FD404
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4634
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.040149
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"0b94025c90623a60d0b35571a28e17a43631f366","size":33,"url":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=3c73944f478fe0f57538ee6cd1abedc816e85c12","html_url":"https://github.com/rsc/vgotest/blob/3c73944f478fe0f57538ee6cd1abedc816e85c12/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","download_url":"https://raw.githubusercontent.com/rsc/vgotest/3c73944f478fe0f57538ee6cd1abedc816e85c12/go.mod?token=AAGWXgAkAcJJmLrB6J_fYnGtkAzBlISeks5ab9RAwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0IgoK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=3c73944f478fe0f57538ee6cd1abedc816e85c12","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","html":"https://github.com/rsc/vgotest/blob/3c73944f478fe0f57538ee6cd1abedc816e85c12/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/3c73944f478fe0f57538ee6cd1abedc816e85c12/go.mod?token=AAGWXgAkAcJJmLrB6J_fYnGtkAzBlISeks5ab9RAwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: "0b94025c90623a60d0b35571a28e17a43631f366"
+Expires: Tue, 30 Jan 2018 02:15:12 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: fd514ec68140f1fc8c0e6f55074fd27fe47c0da9
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: D7F2:1031:10E49:11E64:5A6FD404
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278213.874227,VS0,VE45
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest"
+
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.8
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:12 GMT
+Etag: W/"985ad4a42e423c58c52e06fb435b694f"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C8F:18DF17:5A6FD404
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4633
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.026794
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.0.8","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.8","object":{"sha":"02065c595de4ed2b0271558e2c7267f52bdd81f8","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8"}}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=02065c595de4ed2b0271558e2c7267f52bdd81f8&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: W/"1f307a737345d6a382c18b5343fc8195"
+Last-Modified: Mon, 29 Jan 2018 22:23:20 GMT
+Link: <https://api.github.com/repositories/119466083/commits?sha=02065c595de4ed2b0271558e2c7267f52bdd81f8&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/119466083/commits?sha=02065c595de4ed2b0271558e2c7267f52bdd81f8&per_page=2&page=4>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C94:18DF34:5A6FD404
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4632
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.047734
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"02065c595de4ed2b0271558e2c7267f52bdd81f8","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:20Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:20Z"},"message":"v0.0.8, v2.0.4: break v2/go.mod","tree":{"sha":"b88583f674ddf0ffdac611aca87cd7e7797200ad","url":"https://api.github.com/repos/rsc/vgotest/git/trees/b88583f674ddf0ffdac611aca87cd7e7797200ad"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8","html_url":"https://github.com/rsc/vgotest/commit/02065c595de4ed2b0271558e2c7267f52bdd81f8","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"3c73944f478fe0f57538ee6cd1abedc816e85c12","url":"https://api.github.com/repos/rsc/vgotest/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12","html_url":"https://github.com/rsc/vgotest/commit/3c73944f478fe0f57538ee6cd1abedc816e85c12"}]},{"sha":"3c73944f478fe0f57538ee6cd1abedc816e85c12","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:04Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:04Z"},"message":"v0.0.7, v2.0.3; fix root go.mod","tree":{"sha":"e056cc41d564a20e7ec5acea86c3687daf153f2e","url":"https://api.github.com/repos/rsc/vgotest/git/trees/e056cc41d564a20e7ec5acea86c3687daf153f2e"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12","html_url":"https://github.com/rsc/vgotest/commit/3c73944f478fe0f57538ee6cd1abedc816e85c12","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","url":"https://api.github.com/repos/rsc/vgotest/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","html_url":"https://github.com/rsc/vgotest/commit/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=02065c595de4ed2b0271558e2c7267f52bdd81f8
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: W/"0b94025c90623a60d0b35571a28e17a43631f366"
+Last-Modified: Mon, 29 Jan 2018 22:23:20 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92C9E:18DF45:5A6FD405
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4631
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.040157
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"0b94025c90623a60d0b35571a28e17a43631f366","size":33,"url":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=02065c595de4ed2b0271558e2c7267f52bdd81f8","html_url":"https://github.com/rsc/vgotest/blob/02065c595de4ed2b0271558e2c7267f52bdd81f8/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","download_url":"https://raw.githubusercontent.com/rsc/vgotest/02065c595de4ed2b0271558e2c7267f52bdd81f8/go.mod?token=AAGWXtLDXFwmzJ8dn9ZqSG_U9-KEumDmks5ab9RBwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0IgoK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=02065c595de4ed2b0271558e2c7267f52bdd81f8","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","html":"https://github.com/rsc/vgotest/blob/02065c595de4ed2b0271558e2c7267f52bdd81f8/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/02065c595de4ed2b0271558e2c7267f52bdd81f8/go.mod?token=AAGWXtLDXFwmzJ8dn9ZqSG_U9-KEumDmks5ab9RBwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: "0b94025c90623a60d0b35571a28e17a43631f366"
+Expires: Tue, 30 Jan 2018 02:15:13 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: bacdc223a1690bdc5bbdc40df1037102410ec84c
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 6A18:1C5ED:26BF3:28A05:5A6FD404
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278213.157437,VS0,VE49
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest"
+
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.9
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: W/"ea70c5d327e5ad728f15149c24c751b5"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92CAC:18DF5B:5A6FD405
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4630
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.043904
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.0.9","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.9","object":{"sha":"f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a"}}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: W/"95490ed0f094605c8030d7bbb1b34aab"
+Last-Modified: Mon, 29 Jan 2018 22:23:46 GMT
+Link: <https://api.github.com/repositories/119466083/commits?sha=f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/119466083/commits?sha=f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a&per_page=2&page=5>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92CB3:18DF80:5A6FD405
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4629
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.048108
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:46Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:46Z"},"message":"v0.0.9, v2.0.5: set v2/go.mod to say root module path incorrectly","tree":{"sha":"9440ee735d0394654d90805adca7ca3f52a38f89","url":"https://api.github.com/repos/rsc/vgotest/git/trees/9440ee735d0394654d90805adca7ca3f52a38f89"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","html_url":"https://github.com/rsc/vgotest/commit/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"02065c595de4ed2b0271558e2c7267f52bdd81f8","url":"https://api.github.com/repos/rsc/vgotest/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8","html_url":"https://github.com/rsc/vgotest/commit/02065c595de4ed2b0271558e2c7267f52bdd81f8"}]},{"sha":"02065c595de4ed2b0271558e2c7267f52bdd81f8","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:20Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:20Z"},"message":"v0.0.8, v2.0.4: break v2/go.mod","tree":{"sha":"b88583f674ddf0ffdac611aca87cd7e7797200ad","url":"https://api.github.com/repos/rsc/vgotest/git/trees/b88583f674ddf0ffdac611aca87cd7e7797200ad"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8","html_url":"https://github.com/rsc/vgotest/commit/02065c595de4ed2b0271558e2c7267f52bdd81f8","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"3c73944f478fe0f57538ee6cd1abedc816e85c12","url":"https://api.github.com/repos/rsc/vgotest/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12","html_url":"https://github.com/rsc/vgotest/commit/3c73944f478fe0f57538ee6cd1abedc816e85c12"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: W/"0b94025c90623a60d0b35571a28e17a43631f366"
+Last-Modified: Mon, 29 Jan 2018 22:23:46 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92CBB:18DF95:5A6FD405
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4628
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.054631
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"0b94025c90623a60d0b35571a28e17a43631f366","size":33,"url":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","html_url":"https://github.com/rsc/vgotest/blob/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","download_url":"https://raw.githubusercontent.com/rsc/vgotest/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a/go.mod?token=AAGWXtfO0qktMe6stua8LdkpXCkT0rOPks5ab9RBwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0IgoK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","html":"https://github.com/rsc/vgotest/blob/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a/go.mod?token=AAGWXtfO0qktMe6stua8LdkpXCkT0rOPks5ab9RBwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: "0b94025c90623a60d0b35571a28e17a43631f366"
+Expires: Tue, 30 Jan 2018 02:15:13 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: ef59d7429e9e877ff48ad7d9a676200209980077
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 6A18:1C5ED:26C10:28A2E:5A6FD405
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278213.458416,VS0,VE52
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest"
+
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.10
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: W/"81959d8998e14ff740e1b83ee94d8dca"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92CC8:18DFAA:5A6FD405
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4627
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.025713
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.0.10","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.10","object":{"sha":"1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52"}}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: W/"3995a9fe8f5a36f2b7c3bca68a706461"
+Last-Modified: Tue, 30 Jan 2018 02:05:44 GMT
+Link: <https://api.github.com/repositories/119466083/commits?sha=1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/119466083/commits?sha=1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52&per_page=2&page=5>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92CCD:18DFC3:5A6FD405
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4626
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.041957
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-30T02:05:44Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-30T02:05:44Z"},"message":"v0.0.10, v2.0.6: fix v2/go.mod","tree":{"sha":"e056cc41d564a20e7ec5acea86c3687daf153f2e","url":"https://api.github.com/repos/rsc/vgotest/git/trees/e056cc41d564a20e7ec5acea86c3687daf153f2e"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","html_url":"https://github.com/rsc/vgotest/commit/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","url":"https://api.github.com/repos/rsc/vgotest/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","html_url":"https://github.com/rsc/vgotest/commit/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a"}]},{"sha":"f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:46Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:23:46Z"},"message":"v0.0.9, v2.0.5: set v2/go.mod to say root module path incorrectly","tree":{"sha":"9440ee735d0394654d90805adca7ca3f52a38f89","url":"https://api.github.com/repos/rsc/vgotest/git/trees/9440ee735d0394654d90805adca7ca3f52a38f89"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","html_url":"https://github.com/rsc/vgotest/commit/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"02065c595de4ed2b0271558e2c7267f52bdd81f8","url":"https://api.github.com/repos/rsc/vgotest/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8","html_url":"https://github.com/rsc/vgotest/commit/02065c595de4ed2b0271558e2c7267f52bdd81f8"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: W/"0b94025c90623a60d0b35571a28e17a43631f366"
+Last-Modified: Tue, 30 Jan 2018 02:05:44 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92CD1:18DFCF:5A6FD405
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4625
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.046817
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"0b94025c90623a60d0b35571a28e17a43631f366","size":33,"url":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","html_url":"https://github.com/rsc/vgotest/blob/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","download_url":"https://raw.githubusercontent.com/rsc/vgotest/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52/go.mod?token=AAGWXkUnfZPg5WQuQVQ10NWFf5wINV14ks5ab9RBwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0IgoK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","html":"https://github.com/rsc/vgotest/blob/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52/go.mod?token=AAGWXkUnfZPg5WQuQVQ10NWFf5wINV14ks5ab9RBwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: "0b94025c90623a60d0b35571a28e17a43631f366"
+Expires: Tue, 30 Jan 2018 02:15:13 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: fec862524628ffdbc5d268650c6ed22b8902f03c
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: DFBC:1D293:36BA:3A01:5A6FD405
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278214.770093,VS0,VE57
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest"
+
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.11
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: W/"8c0aa54ce7e62b01166b6c4d833f5801"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92CE4:18DFE4:5A6FD405
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4624
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.036370
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.0.11","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.11","object":{"sha":"5477b30a70f9f724b4d9ef973d813d7b1c9c0520","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/5477b30a70f9f724b4d9ef973d813d7b1c9c0520"}}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=5477b30a70f9f724b4d9ef973d813d7b1c9c0520&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:13 GMT
+Etag: W/"733a14078a34a31dc3dec9812f7fabb5"
+Last-Modified: Tue, 30 Jan 2018 02:06:03 GMT
+Link: <https://api.github.com/repositories/119466083/commits?sha=5477b30a70f9f724b4d9ef973d813d7b1c9c0520&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/119466083/commits?sha=5477b30a70f9f724b4d9ef973d813d7b1c9c0520&per_page=2&page=6>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92CEB:18E008:5A6FD405
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4623
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.049541
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"5477b30a70f9f724b4d9ef973d813d7b1c9c0520","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-30T02:06:03Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-30T02:06:03Z"},"message":"v0.0.11, v2.0.7: add // comment to v2/go.mod","tree":{"sha":"f7ea4de16f349e7f9439ea7259348a0caa75f366","url":"https://api.github.com/repos/rsc/vgotest/git/trees/f7ea4de16f349e7f9439ea7259348a0caa75f366"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/5477b30a70f9f724b4d9ef973d813d7b1c9c0520","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/5477b30a70f9f724b4d9ef973d813d7b1c9c0520","html_url":"https://github.com/rsc/vgotest/commit/5477b30a70f9f724b4d9ef973d813d7b1c9c0520","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/5477b30a70f9f724b4d9ef973d813d7b1c9c0520/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","url":"https://api.github.com/repos/rsc/vgotest/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","html_url":"https://github.com/rsc/vgotest/commit/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52"}]},{"sha":"1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-30T02:05:44Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-30T02:05:44Z"},"message":"v0.0.10, v2.0.6: fix v2/go.mod","tree":{"sha":"e056cc41d564a20e7ec5acea86c3687daf153f2e","url":"https://api.github.com/repos/rsc/vgotest/git/trees/e056cc41d564a20e7ec5acea86c3687daf153f2e"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","html_url":"https://github.com/rsc/vgotest/commit/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","url":"https://api.github.com/repos/rsc/vgotest/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","html_url":"https://github.com/rsc/vgotest/commit/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=5477b30a70f9f724b4d9ef973d813d7b1c9c0520
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: W/"0b94025c90623a60d0b35571a28e17a43631f366"
+Last-Modified: Tue, 30 Jan 2018 02:06:03 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92CF0:18E019:5A6FD405
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4622
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.043857
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"0b94025c90623a60d0b35571a28e17a43631f366","size":33,"url":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=5477b30a70f9f724b4d9ef973d813d7b1c9c0520","html_url":"https://github.com/rsc/vgotest/blob/5477b30a70f9f724b4d9ef973d813d7b1c9c0520/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","download_url":"https://raw.githubusercontent.com/rsc/vgotest/5477b30a70f9f724b4d9ef973d813d7b1c9c0520/go.mod?token=AAGWXmX9O23IBPuFwm5CegDI1UvpYj4tks5ab9RCwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0IgoK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=5477b30a70f9f724b4d9ef973d813d7b1c9c0520","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","html":"https://github.com/rsc/vgotest/blob/5477b30a70f9f724b4d9ef973d813d7b1c9c0520/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/5477b30a70f9f724b4d9ef973d813d7b1c9c0520/go.mod?token=AAGWXmX9O23IBPuFwm5CegDI1UvpYj4tks5ab9RCwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: "0b94025c90623a60d0b35571a28e17a43631f366"
+Expires: Tue, 30 Jan 2018 02:15:14 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 333c3edca7c710df6643d6d1974049969c28a50e
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 6A18:1C5ED:26C40:28A4A:5A6FD405
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278214.078266,VS0,VE56
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest"
+
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.12
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: W/"fea6738d1abb92d0c0429ce117dea8e3"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92CF9:18E02C:5A6FD406
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4621
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.032296
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.0.12","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.12","object":{"sha":"8a7f05fc6d877b9ccd022f17576b75f38a432d16","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/8a7f05fc6d877b9ccd022f17576b75f38a432d16"}}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=8a7f05fc6d877b9ccd022f17576b75f38a432d16&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: W/"ebbf07d152bd84311229a4cca5545227"
+Last-Modified: Tue, 30 Jan 2018 02:06:20 GMT
+Link: <https://api.github.com/repositories/119466083/commits?sha=8a7f05fc6d877b9ccd022f17576b75f38a432d16&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/119466083/commits?sha=8a7f05fc6d877b9ccd022f17576b75f38a432d16&per_page=2&page=6>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92CFF:18E045:5A6FD406
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4620
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.049107
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"8a7f05fc6d877b9ccd022f17576b75f38a432d16","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-30T02:06:20Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-30T02:06:20Z"},"message":"v0.0.12, v2.0.8: add blank line to v2/go.mod","tree":{"sha":"26a26621643e45400235d62dc3f1ecbc84f1e3f8","url":"https://api.github.com/repos/rsc/vgotest/git/trees/26a26621643e45400235d62dc3f1ecbc84f1e3f8"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/8a7f05fc6d877b9ccd022f17576b75f38a432d16","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/8a7f05fc6d877b9ccd022f17576b75f38a432d16","html_url":"https://github.com/rsc/vgotest/commit/8a7f05fc6d877b9ccd022f17576b75f38a432d16","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/8a7f05fc6d877b9ccd022f17576b75f38a432d16/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"5477b30a70f9f724b4d9ef973d813d7b1c9c0520","url":"https://api.github.com/repos/rsc/vgotest/commits/5477b30a70f9f724b4d9ef973d813d7b1c9c0520","html_url":"https://github.com/rsc/vgotest/commit/5477b30a70f9f724b4d9ef973d813d7b1c9c0520"}]},{"sha":"5477b30a70f9f724b4d9ef973d813d7b1c9c0520","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-30T02:06:03Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-30T02:06:03Z"},"message":"v0.0.11, v2.0.7: add // comment to v2/go.mod","tree":{"sha":"f7ea4de16f349e7f9439ea7259348a0caa75f366","url":"https://api.github.com/repos/rsc/vgotest/git/trees/f7ea4de16f349e7f9439ea7259348a0caa75f366"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/5477b30a70f9f724b4d9ef973d813d7b1c9c0520","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/5477b30a70f9f724b4d9ef973d813d7b1c9c0520","html_url":"https://github.com/rsc/vgotest/commit/5477b30a70f9f724b4d9ef973d813d7b1c9c0520","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/5477b30a70f9f724b4d9ef973d813d7b1c9c0520/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","url":"https://api.github.com/repos/rsc/vgotest/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","html_url":"https://github.com/rsc/vgotest/commit/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=8a7f05fc6d877b9ccd022f17576b75f38a432d16
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: W/"0b94025c90623a60d0b35571a28e17a43631f366"
+Last-Modified: Tue, 30 Jan 2018 02:06:20 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D05:18E057:5A6FD406
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4619
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.048981
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"0b94025c90623a60d0b35571a28e17a43631f366","size":33,"url":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=8a7f05fc6d877b9ccd022f17576b75f38a432d16","html_url":"https://github.com/rsc/vgotest/blob/8a7f05fc6d877b9ccd022f17576b75f38a432d16/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","download_url":"https://raw.githubusercontent.com/rsc/vgotest/8a7f05fc6d877b9ccd022f17576b75f38a432d16/go.mod?token=AAGWXi6HmMWx54wZ_ngk4SJEDeEUsn8nks5ab9RCwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0IgoK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=8a7f05fc6d877b9ccd022f17576b75f38a432d16","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/0b94025c90623a60d0b35571a28e17a43631f366","html":"https://github.com/rsc/vgotest/blob/8a7f05fc6d877b9ccd022f17576b75f38a432d16/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/8a7f05fc6d877b9ccd022f17576b75f38a432d16/go.mod?token=AAGWXi6HmMWx54wZ_ngk4SJEDeEUsn8nks5ab9RCwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: "0b94025c90623a60d0b35571a28e17a43631f366"
+Expires: Tue, 30 Jan 2018 02:15:14 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: edbb5bd02089ea2ac714f8d222dff2af167c163e
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 1828:7C3C:92DE:9B07:5A6FD3F7
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278214.408157,VS0,VE47
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest"
+
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: W/"9b060231a16c039bdab34be39e472110"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D10:18E066:5A6FD406
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4618
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.028230
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.0","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.0","object":{"sha":"e6360637022d660cb6011689facabccd42fe7bbf","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/e6360637022d660cb6011689facabccd42fe7bbf"}}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=e6360637022d660cb6011689facabccd42fe7bbf&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: W/"f50c906ea8cbebbbdaf9b1749f910337"
+Last-Modified: Mon, 29 Jan 2018 22:21:23 GMT
+Link: <https://api.github.com/repositories/119466083/commits?sha=e6360637022d660cb6011689facabccd42fe7bbf&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/119466083/commits?sha=e6360637022d660cb6011689facabccd42fe7bbf&per_page=2&page=2>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D13:18E07D:5A6FD406
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4617
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.045140
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"e6360637022d660cb6011689facabccd42fe7bbf","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:21:23Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:21:23Z"},"message":"v0.0.4, v2.0.0: add v2/go.mod","tree":{"sha":"ec1610b45051862fbabf4da2b2975018e8b1ba0a","url":"https://api.github.com/repos/rsc/vgotest/git/trees/ec1610b45051862fbabf4da2b2975018e8b1ba0a"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/e6360637022d660cb6011689facabccd42fe7bbf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/e6360637022d660cb6011689facabccd42fe7bbf","html_url":"https://github.com/rsc/vgotest/commit/e6360637022d660cb6011689facabccd42fe7bbf","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/e6360637022d660cb6011689facabccd42fe7bbf/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"37db17a199d8ebdfc5bac19089ac46da4711d2ea","url":"https://api.github.com/repos/rsc/vgotest/commits/37db17a199d8ebdfc5bac19089ac46da4711d2ea","html_url":"https://github.com/rsc/vgotest/commit/37db17a199d8ebdfc5bac19089ac46da4711d2ea"}]},{"sha":"37db17a199d8ebdfc5bac19089ac46da4711d2ea","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:20:55Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:20:55Z"},"message":"v0.0.3: add v2/p/p.go","tree":{"sha":"0577deea9fdf9e62c179815a2be44c1d4f1e5ef7","url":"https://api.github.com/repos/rsc/vgotest/git/trees/0577deea9fdf9e62c179815a2be44c1d4f1e5ef7"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/37db17a199d8ebdfc5bac19089ac46da4711d2ea","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/37db17a199d8ebdfc5bac19089ac46da4711d2ea","html_url":"https://github.com/rsc/vgotest/commit/37db17a199d8ebdfc5bac19089ac46da4711d2ea","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/37db17a199d8ebdfc5bac19089ac46da4711d2ea/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"218e041c507c7115f3c7afcda8f15a94df8af4a7","url":"https://api.github.com/repos/rsc/vgotest/commits/218e041c507c7115f3c7afcda8f15a94df8af4a7","html_url":"https://github.com/rsc/vgotest/commit/218e041c507c7115f3c7afcda8f15a94df8af4a7"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=e6360637022d660cb6011689facabccd42fe7bbf
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: W/"f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6"
+Last-Modified: Mon, 29 Jan 2018 22:21:23 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D17:18E08D:5A6FD406
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4616
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.049779
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6","size":32,"url":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=e6360637022d660cb6011689facabccd42fe7bbf","html_url":"https://github.com/rsc/vgotest/blob/e6360637022d660cb6011689facabccd42fe7bbf/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6","download_url":"https://raw.githubusercontent.com/rsc/vgotest/e6360637022d660cb6011689facabccd42fe7bbf/go.mod?token=AAGWXmuRINkAQjobL0kGExsLR3pY_ttBks5ab9RCwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0Igo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/go.mod?ref=e6360637022d660cb6011689facabccd42fe7bbf","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6","html":"https://github.com/rsc/vgotest/blob/e6360637022d660cb6011689facabccd42fe7bbf/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/e6360637022d660cb6011689facabccd42fe7bbf/go.mod?token=AAGWXmuRINkAQjobL0kGExsLR3pY_ttBks5ab9RCwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: "f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6"
+Expires: Tue, 30 Jan 2018 02:15:14 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 3e580659c3338aa4c0a85e5a87c8517a7ddcf9bd
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 9706:710C:FAE4:10D71:5A6FD406
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278215.691506,VS0,VE60
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest"
+
+
+GET https://api.github.com/repos/rsc/vgotest/contents/v2%2Fgo.mod?ref=e6360637022d660cb6011689facabccd42fe7bbf
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: W/"c25e0ea6b06a75daaa32858c505a1ad3b5ad267b"
+Last-Modified: Mon, 29 Jan 2018 22:21:23 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D22:18E0A0:5A6FD406
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4615
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.036813
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","size":35,"url":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=e6360637022d660cb6011689facabccd42fe7bbf","html_url":"https://github.com/rsc/vgotest/blob/e6360637022d660cb6011689facabccd42fe7bbf/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","download_url":"https://raw.githubusercontent.com/rsc/vgotest/e6360637022d660cb6011689facabccd42fe7bbf/v2/go.mod?token=AAGWXiGbi9GI8t4h0npTLaRW2qHfgBZOks5ab9RCwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0L3YyIgo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=e6360637022d660cb6011689facabccd42fe7bbf","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","html":"https://github.com/rsc/vgotest/blob/e6360637022d660cb6011689facabccd42fe7bbf/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/e6360637022d660cb6011689facabccd42fe7bbf/v2/go.mod?token=AAGWXiGbi9GI8t4h0npTLaRW2qHfgBZOks5ab9RCwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: "c25e0ea6b06a75daaa32858c505a1ad3b5ad267b"
+Expires: Tue, 30 Jan 2018 02:15:14 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 3f5e925017f0bfebbfbb852457d015cb101e12bb
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 2FC0:267E1:3CCB:4030:5A6FD406
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278215.844463,VS0,VE51
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest/v2"
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.1
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:14 GMT
+Etag: W/"5a420e26697a67b935ebea319ae3373e"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D29:18E0BB:5A6FD406
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4614
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.034915
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.1","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.1","object":{"sha":"9468fdc59d0c589c56c6aab7e43141f5ebd1019a","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a"}}
+
+GET https://api.github.com/repos/rsc/vgotest/contents/v2%2Fgo.mod?ref=9468fdc59d0c589c56c6aab7e43141f5ebd1019a
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: W/"c25e0ea6b06a75daaa32858c505a1ad3b5ad267b"
+Last-Modified: Mon, 29 Jan 2018 22:22:45 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D2F:18E0D0:5A6FD406
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4613
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.052668
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","size":35,"url":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=9468fdc59d0c589c56c6aab7e43141f5ebd1019a","html_url":"https://github.com/rsc/vgotest/blob/9468fdc59d0c589c56c6aab7e43141f5ebd1019a/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","download_url":"https://raw.githubusercontent.com/rsc/vgotest/9468fdc59d0c589c56c6aab7e43141f5ebd1019a/v2/go.mod?token=AAGWXoVI8NDdJON8XFnHoDmKfhwoxgeRks5ab9RDwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0L3YyIgo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=9468fdc59d0c589c56c6aab7e43141f5ebd1019a","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","html":"https://github.com/rsc/vgotest/blob/9468fdc59d0c589c56c6aab7e43141f5ebd1019a/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/9468fdc59d0c589c56c6aab7e43141f5ebd1019a/v2/go.mod?token=AAGWXoVI8NDdJON8XFnHoDmKfhwoxgeRks5ab9RDwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: "c25e0ea6b06a75daaa32858c505a1ad3b5ad267b"
+Expires: Tue, 30 Jan 2018 02:15:15 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: a8f87e8f23741d6f7efab060be3adcb28aa3d0db
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 5498:7721:12D99:1391D:5A6FD406
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278215.079062,VS0,VE47
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest/v2"
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: W/"00ceacad8411eaa3dcd5920b0e8b63c7"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D3D:18E0E8:5A6FD407
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4612
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.037433
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.2","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.2","object":{"sha":"b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e"}}
+
+GET https://api.github.com/repos/rsc/vgotest/contents/v2%2Fgo.mod?ref=b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: W/"c25e0ea6b06a75daaa32858c505a1ad3b5ad267b"
+Last-Modified: Mon, 29 Jan 2018 22:22:50 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D44:18E108:5A6FD407
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4611
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.040613
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","size":35,"url":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","html_url":"https://github.com/rsc/vgotest/blob/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","download_url":"https://raw.githubusercontent.com/rsc/vgotest/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e/v2/go.mod?token=AAGWXn23fjyL9I1iql_Uv-MMYE0Asb9iks5ab9RDwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0L3YyIgo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","html":"https://github.com/rsc/vgotest/blob/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e/v2/go.mod?token=AAGWXn23fjyL9I1iql_Uv-MMYE0Asb9iks5ab9RDwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: "c25e0ea6b06a75daaa32858c505a1ad3b5ad267b"
+Expires: Tue, 30 Jan 2018 02:15:15 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 304bcdc5f995b096d64496641ade4e55ac2da4ed
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: D6DA:4FCC:1257A:138AD:5A6FD406
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278215.288220,VS0,VE44
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest/v2"
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.3
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: W/"72699a981d92644f94f7c07482a3bebf"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D4D:18E115:5A6FD407
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4610
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.040315
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.3","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.3","object":{"sha":"3c73944f478fe0f57538ee6cd1abedc816e85c12","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12"}}
+
+GET https://api.github.com/repos/rsc/vgotest/contents/v2%2Fgo.mod?ref=3c73944f478fe0f57538ee6cd1abedc816e85c12
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: W/"c25e0ea6b06a75daaa32858c505a1ad3b5ad267b"
+Last-Modified: Mon, 29 Jan 2018 22:23:04 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D5A:18E133:5A6FD407
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4609
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.049417
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","size":35,"url":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=3c73944f478fe0f57538ee6cd1abedc816e85c12","html_url":"https://github.com/rsc/vgotest/blob/3c73944f478fe0f57538ee6cd1abedc816e85c12/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","download_url":"https://raw.githubusercontent.com/rsc/vgotest/3c73944f478fe0f57538ee6cd1abedc816e85c12/v2/go.mod?token=AAGWXk8tAGxazEpoAlvbuVwa2EKjMeDJks5ab9RDwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0L3YyIgo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=3c73944f478fe0f57538ee6cd1abedc816e85c12","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","html":"https://github.com/rsc/vgotest/blob/3c73944f478fe0f57538ee6cd1abedc816e85c12/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/3c73944f478fe0f57538ee6cd1abedc816e85c12/v2/go.mod?token=AAGWXk8tAGxazEpoAlvbuVwa2EKjMeDJks5ab9RDwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: "c25e0ea6b06a75daaa32858c505a1ad3b5ad267b"
+Expires: Tue, 30 Jan 2018 02:15:15 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 85724cc5259b4bc68cbf83ee6ee0a4d49065a1ec
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 4AF6:7722:25510:26B20:5A6FD407
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278215.497358,VS0,VE54
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest/v2"
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.4
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: W/"9a664760380dbc47f14032b89b2c65b0"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D61:18E144:5A6FD407
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4608
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.030500
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.4","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.4","object":{"sha":"02065c595de4ed2b0271558e2c7267f52bdd81f8","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8"}}
+
+GET https://api.github.com/repos/rsc/vgotest/contents/v2%2Fgo.mod?ref=02065c595de4ed2b0271558e2c7267f52bdd81f8
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: W/"a6dd933616595035f03c7a000128b31d9117cade"
+Last-Modified: Mon, 29 Jan 2018 22:23:20 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D6A:18E16E:5A6FD407
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4607
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.055486
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"a6dd933616595035f03c7a000128b31d9117cade","size":31,"url":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=02065c595de4ed2b0271558e2c7267f52bdd81f8","html_url":"https://github.com/rsc/vgotest/blob/02065c595de4ed2b0271558e2c7267f52bdd81f8/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/a6dd933616595035f03c7a000128b31d9117cade","download_url":"https://raw.githubusercontent.com/rsc/vgotest/02065c595de4ed2b0271558e2c7267f52bdd81f8/v2/go.mod?token=AAGWXkYqLFgMUhe4dHQssRpaxM4F01bnks5ab9RDwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0Cg==\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=02065c595de4ed2b0271558e2c7267f52bdd81f8","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/a6dd933616595035f03c7a000128b31d9117cade","html":"https://github.com/rsc/vgotest/blob/02065c595de4ed2b0271558e2c7267f52bdd81f8/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/02065c595de4ed2b0271558e2c7267f52bdd81f8/v2/go.mod?token=AAGWXkYqLFgMUhe4dHQssRpaxM4F01bnks5ab9RDwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: "a6dd933616595035f03c7a000128b31d9117cade"
+Expires: Tue, 30 Jan 2018 02:15:15 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 86087a8fc753dad3447c9136ba7f8d3c286ae9aa
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 5490:7721:12DBC:13970:5A6FD407
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278216.730251,VS0,VE50
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.5
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: W/"250008c132cda8fd80e4f815ef4ca0a3"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D77:18E18A:5A6FD407
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4606
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.030748
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.5","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.5","object":{"sha":"f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a"}}
+
+GET https://api.github.com/repos/rsc/vgotest/contents/v2%2Fgo.mod?ref=f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: W/"f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6"
+Last-Modified: Mon, 29 Jan 2018 22:23:46 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D7A:18E19F:5A6FD407
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4605
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.035481
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6","size":32,"url":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","html_url":"https://github.com/rsc/vgotest/blob/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6","download_url":"https://raw.githubusercontent.com/rsc/vgotest/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a/v2/go.mod?token=AAGWXrhRaNrQXGSCs28HVlWzuttxmzgwks5ab9RDwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0Igo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6","html":"https://github.com/rsc/vgotest/blob/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a/v2/go.mod?token=AAGWXrhRaNrQXGSCs28HVlWzuttxmzgwks5ab9RDwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:15 GMT
+Etag: "f69cebce9ad8a32d2bc0d9eed30bee4e86b04aa6"
+Expires: Tue, 30 Jan 2018 02:15:15 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: f15f9c130411b43ebdaf9923985b7826c9be107e
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 675E:1ACA0:23CF4:250B6:5A6FD407
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278216.930484,VS0,VE44
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest"
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.6
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:16 GMT
+Etag: W/"b71c46577f632e01a9360bda18931020"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D86:18E1AE:5A6FD407
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4604
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.031549
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.6","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.6","object":{"sha":"1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52"}}
+
+GET https://api.github.com/repos/rsc/vgotest/contents/v2%2Fgo.mod?ref=1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:16 GMT
+Etag: W/"c25e0ea6b06a75daaa32858c505a1ad3b5ad267b"
+Last-Modified: Tue, 30 Jan 2018 02:05:44 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D8A:18E1C9:5A6FD408
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4603
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.048127
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","size":35,"url":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","html_url":"https://github.com/rsc/vgotest/blob/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","download_url":"https://raw.githubusercontent.com/rsc/vgotest/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52/v2/go.mod?token=AAGWXifICOeT03CnZ5_KlvLrGd-nULPJks5ab9REwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0L3YyIgo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/c25e0ea6b06a75daaa32858c505a1ad3b5ad267b","html":"https://github.com/rsc/vgotest/blob/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52/v2/go.mod?token=AAGWXifICOeT03CnZ5_KlvLrGd-nULPJks5ab9REwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:16 GMT
+Etag: "c25e0ea6b06a75daaa32858c505a1ad3b5ad267b"
+Expires: Tue, 30 Jan 2018 02:15:16 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 85ecdb429857b3f674b6e852f7127ce669f55d23
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: BD04:710A:33A9:3884:5A6FD407
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278216.134424,VS0,VE46
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest/v2"
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.7
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:16 GMT
+Etag: W/"6ec9a200ccd7682e58cac9f83606e568"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D90:18E1D3:5A6FD408
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4602
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.028628
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.7","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.7","object":{"sha":"5477b30a70f9f724b4d9ef973d813d7b1c9c0520","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/5477b30a70f9f724b4d9ef973d813d7b1c9c0520"}}
+
+GET https://api.github.com/repos/rsc/vgotest/contents/v2%2Fgo.mod?ref=5477b30a70f9f724b4d9ef973d813d7b1c9c0520
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:16 GMT
+Etag: W/"8bf61544ea19fa0873523e425da363c0a64956bc"
+Last-Modified: Tue, 30 Jan 2018 02:06:03 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D98:18E1E6:5A6FD408
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4601
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.033892
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"8bf61544ea19fa0873523e425da363c0a64956bc","size":46,"url":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=5477b30a70f9f724b4d9ef973d813d7b1c9c0520","html_url":"https://github.com/rsc/vgotest/blob/5477b30a70f9f724b4d9ef973d813d7b1c9c0520/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/8bf61544ea19fa0873523e425da363c0a64956bc","download_url":"https://raw.githubusercontent.com/rsc/vgotest/5477b30a70f9f724b4d9ef973d813d7b1c9c0520/v2/go.mod?token=AAGWXu6VLDXZoaHfleknVILV_LJztDWTks5ab9REwA%3D%3D","type":"file","content":"Ly8gY29tbWVudAptb2R1bGUgImdpdGh1Yi5jb20vcnNjL3Znb3Rlc3QvdjIi\nCg==\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=5477b30a70f9f724b4d9ef973d813d7b1c9c0520","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/8bf61544ea19fa0873523e425da363c0a64956bc","html":"https://github.com/rsc/vgotest/blob/5477b30a70f9f724b4d9ef973d813d7b1c9c0520/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/5477b30a70f9f724b4d9ef973d813d7b1c9c0520/v2/go.mod?token=AAGWXu6VLDXZoaHfleknVILV_LJztDWTks5ab9REwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:16 GMT
+Etag: "8bf61544ea19fa0873523e425da363c0a64956bc"
+Expires: Tue, 30 Jan 2018 02:15:16 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 0cee9ce156c00f986f939a51208c35c9fb4df361
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 675E:1ACA0:23D0C:250D1:5A6FD407
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278216.325232,VS0,VE49
+X-Xss-Protection: 1; mode=block
+
+// comment
+module "github.com/rsc/vgotest/v2"
+
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.8
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:16 GMT
+Etag: W/"1d3cb7f527412d69e633d2444c7a1f2c"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92D9F:18E1FA:5A6FD408
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4600
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.025941
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.8","url":"https://api.github.com/repos/rsc/vgotest/git/refs/tags/v2.0.8","object":{"sha":"8a7f05fc6d877b9ccd022f17576b75f38a432d16","type":"commit","url":"https://api.github.com/repos/rsc/vgotest/git/commits/8a7f05fc6d877b9ccd022f17576b75f38a432d16"}}
+
+GET https://api.github.com/repos/rsc/vgotest/contents/v2%2Fgo.mod?ref=8a7f05fc6d877b9ccd022f17576b75f38a432d16
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:16 GMT
+Etag: W/"b8cfea90d141b970b93c352579e034c3d3d51673"
+Last-Modified: Tue, 30 Jan 2018 02:06:20 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9DFA:15D16:92DA2:18E20B:5A6FD408
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4599
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.041604
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"b8cfea90d141b970b93c352579e034c3d3d51673","size":47,"url":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=8a7f05fc6d877b9ccd022f17576b75f38a432d16","html_url":"https://github.com/rsc/vgotest/blob/8a7f05fc6d877b9ccd022f17576b75f38a432d16/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest/git/blobs/b8cfea90d141b970b93c352579e034c3d3d51673","download_url":"https://raw.githubusercontent.com/rsc/vgotest/8a7f05fc6d877b9ccd022f17576b75f38a432d16/v2/go.mod?token=AAGWXtAcbXKJIcqTLX5x4UPOs_xLsM14ks5ab9REwA%3D%3D","type":"file","content":"Ly8gY29tbWVudAptb2R1bGUgImdpdGh1Yi5jb20vcnNjL3Znb3Rlc3QvdjIi\nCgo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest/contents/v2/go.mod?ref=8a7f05fc6d877b9ccd022f17576b75f38a432d16","git":"https://api.github.com/repos/rsc/vgotest/git/blobs/b8cfea90d141b970b93c352579e034c3d3d51673","html":"https://github.com/rsc/vgotest/blob/8a7f05fc6d877b9ccd022f17576b75f38a432d16/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest/8a7f05fc6d877b9ccd022f17576b75f38a432d16/v2/go.mod?token=AAGWXtAcbXKJIcqTLX5x4UPOs_xLsM14ks5ab9REwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 02:10:16 GMT
+Etag: "b8cfea90d141b970b93c352579e034c3d3d51673"
+Expires: Tue, 30 Jan 2018 02:15:16 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 2f4f61f60b6559c4d5a482de709d09438f16f005
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: D7F2:1031:10EBB:11EC9:5A6FD407
+X-Served-By: cache-bos8228-BOS
+X-Timer: S1517278217.522450,VS0,VE48
+X-Xss-Protection: 1; mode=block
+
+// comment
+module "github.com/rsc/vgotest/v2"
+
+
+
+GET https://api.github.com/repos/rsc/vgotest/tags
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:11:04 GMT
+Etag: W/"f0ab874eac3120335f15b68f4710bf41"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9876:15D13:45445:9FFBA:5A6FD437
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4598
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.043814
+X-Xss-Protection: 1; mode=block
+
+[{"name":"v2.0.8","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v2.0.8","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v2.0.8","commit":{"sha":"8a7f05fc6d877b9ccd022f17576b75f38a432d16","url":"https://api.github.com/repos/rsc/vgotest/commits/8a7f05fc6d877b9ccd022f17576b75f38a432d16"}},{"name":"v2.0.7","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v2.0.7","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v2.0.7","commit":{"sha":"5477b30a70f9f724b4d9ef973d813d7b1c9c0520","url":"https://api.github.com/repos/rsc/vgotest/commits/5477b30a70f9f724b4d9ef973d813d7b1c9c0520"}},{"name":"v2.0.6","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v2.0.6","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v2.0.6","commit":{"sha":"1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","url":"https://api.github.com/repos/rsc/vgotest/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52"}},{"name":"v2.0.5","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v2.0.5","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v2.0.5","commit":{"sha":"f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","url":"https://api.github.com/repos/rsc/vgotest/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a"}},{"name":"v2.0.4","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v2.0.4","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v2.0.4","commit":{"sha":"02065c595de4ed2b0271558e2c7267f52bdd81f8","url":"https://api.github.com/repos/rsc/vgotest/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8"}},{"name":"v2.0.3","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v2.0.3","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v2.0.3","commit":{"sha":"3c73944f478fe0f57538ee6cd1abedc816e85c12","url":"https://api.github.com/repos/rsc/vgotest/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12"}},{"name":"v2.0.2","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v2.0.2","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v2.0.2","commit":{"sha":"b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","url":"https://api.github.com/repos/rsc/vgotest/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e"}},{"name":"v2.0.1","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v2.0.1","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v2.0.1","commit":{"sha":"9468fdc59d0c589c56c6aab7e43141f5ebd1019a","url":"https://api.github.com/repos/rsc/vgotest/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a"}},{"name":"v2.0.0","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v2.0.0","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v2.0.0","commit":{"sha":"e6360637022d660cb6011689facabccd42fe7bbf","url":"https://api.github.com/repos/rsc/vgotest/commits/e6360637022d660cb6011689facabccd42fe7bbf"}},{"name":"v0.0.12","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.12","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.12","commit":{"sha":"8a7f05fc6d877b9ccd022f17576b75f38a432d16","url":"https://api.github.com/repos/rsc/vgotest/commits/8a7f05fc6d877b9ccd022f17576b75f38a432d16"}},{"name":"v0.0.11","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.11","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.11","commit":{"sha":"5477b30a70f9f724b4d9ef973d813d7b1c9c0520","url":"https://api.github.com/repos/rsc/vgotest/commits/5477b30a70f9f724b4d9ef973d813d7b1c9c0520"}},{"name":"v0.0.10","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.10","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.10","commit":{"sha":"1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52","url":"https://api.github.com/repos/rsc/vgotest/commits/1cd3e6ae6a78a2b4ce2fec3c1b045798e54c9e52"}},{"name":"v0.0.9","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.9","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.9","commit":{"sha":"f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a","url":"https://api.github.com/repos/rsc/vgotest/commits/f69a796eed48f6acbf5e8e1ec1abb8a75ea36f5a"}},{"name":"v0.0.8","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.8","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.8","commit":{"sha":"02065c595de4ed2b0271558e2c7267f52bdd81f8","url":"https://api.github.com/repos/rsc/vgotest/commits/02065c595de4ed2b0271558e2c7267f52bdd81f8"}},{"name":"v0.0.7","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.7","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.7","commit":{"sha":"3c73944f478fe0f57538ee6cd1abedc816e85c12","url":"https://api.github.com/repos/rsc/vgotest/commits/3c73944f478fe0f57538ee6cd1abedc816e85c12"}},{"name":"v0.0.6","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.6","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.6","commit":{"sha":"b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e","url":"https://api.github.com/repos/rsc/vgotest/commits/b5f07bb7d2f4f24e46197702fdf3d9a140ec3b7e"}},{"name":"v0.0.5","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.5","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.5","commit":{"sha":"9468fdc59d0c589c56c6aab7e43141f5ebd1019a","url":"https://api.github.com/repos/rsc/vgotest/commits/9468fdc59d0c589c56c6aab7e43141f5ebd1019a"}},{"name":"v0.0.4","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.4","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.4","commit":{"sha":"e6360637022d660cb6011689facabccd42fe7bbf","url":"https://api.github.com/repos/rsc/vgotest/commits/e6360637022d660cb6011689facabccd42fe7bbf"}},{"name":"v0.0.3","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.3","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.3","commit":{"sha":"37db17a199d8ebdfc5bac19089ac46da4711d2ea","url":"https://api.github.com/repos/rsc/vgotest/commits/37db17a199d8ebdfc5bac19089ac46da4711d2ea"}},{"name":"v0.0.2","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.2","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.2","commit":{"sha":"218e041c507c7115f3c7afcda8f15a94df8af4a7","url":"https://api.github.com/repos/rsc/vgotest/commits/218e041c507c7115f3c7afcda8f15a94df8af4a7"}},{"name":"v0.0.1","zipball_url":"https://api.github.com/repos/rsc/vgotest/zipball/v0.0.1","tarball_url":"https://api.github.com/repos/rsc/vgotest/tarball/v0.0.1","commit":{"sha":"f1a9aa6283243d744b4be6746116ee72fa03efb0","url":"https://api.github.com/repos/rsc/vgotest/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0"}}]
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v1.0.0
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:16:51 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: A331:15D16:99A92:1A0039:5A6FD593
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4597
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.026830
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/git/refs/#get-a-reference"}
+
+GET https://api.github.com/repos/rsc/vgotest/contents/v2%2Fgo.mod?ref=f1a9aa6283243d744b4be6746116ee72fa03efb0
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:17:15 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9C61:15D15:7C3D3:107AA5:5A6FD5AA
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4596
+X-Ratelimit-Reset: 1517279329
+X-Runtime-Rack: 0.051852
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/rsc/vgotest/git/refs/tags/v0.0.0-20180129222018-f1a9aa628324
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:54:23 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 9351:15D16:BEDBC:206806:5A6FDE5F
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4999
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.039647
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/git/refs/#get-a-reference"}
+
+GET https://api.github.com/repos/rsc/vgotest/commits?sha=f1a9aa628324&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 02:55:51 GMT
+Etag: W/"dda064d623858cf4d58c2ef2fb5efe95"
+Last-Modified: Mon, 29 Jan 2018 22:20:18 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B374:15D16:C02F0:20A1F6:5A6FDEB7
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4998
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.054164
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"f1a9aa6283243d744b4be6746116ee72fa03efb0","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:20:18Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-01-29T22:20:18Z"},"message":"v0.0.1: dummy.txt","tree":{"sha":"20d300f098482086649c989628c3764f75f9e979","url":"https://api.github.com/repos/rsc/vgotest/git/trees/20d300f098482086649c989628c3764f75f9e979"},"url":"https://api.github.com/repos/rsc/vgotest/git/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0","html_url":"https://github.com/rsc/vgotest/commit/f1a9aa6283243d744b4be6746116ee72fa03efb0","comments_url":"https://api.github.com/repos/rsc/vgotest/commits/f1a9aa6283243d744b4be6746116ee72fa03efb0/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[]}]
+
+GET https://api.github.com/repos/golang/dep/git/refs/tags/v0.4.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:56 GMT
+Etag: W/"3e0e7064b88e3331cc72ef74786fe74f"
+Last-Modified: Tue, 30 Jan 2018 03:24:27 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE33B:1935B8:5A6FE948
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4830
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.030712
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.4.0","url":"https://api.github.com/repos/golang/dep/git/refs/tags/v0.4.0","object":{"sha":"6d95d0d6ac152023bf56b7293f5cae3792936c98","type":"commit","url":"https://api.github.com/repos/golang/dep/git/commits/6d95d0d6ac152023bf56b7293f5cae3792936c98"}}
+
+GET https://api.github.com/repos/golang/dep/commits?sha=6d95d0d6ac152023bf56b7293f5cae3792936c98&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:56 GMT
+Etag: W/"4809f7c34d847466a4338016b429a4e1"
+Last-Modified: Wed, 24 Jan 2018 04:59:21 GMT
+Link: <https://api.github.com/repositories/70202506/commits?sha=6d95d0d6ac152023bf56b7293f5cae3792936c98&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/70202506/commits?sha=6d95d0d6ac152023bf56b7293f5cae3792936c98&per_page=2&page=1470>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE33F:1935BF:5A6FE948
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4829
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.057732
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"6d95d0d6ac152023bf56b7293f5cae3792936c98","commit":{"author":{"name":"sam boyer","email":"tech@samboyer.org","date":"2018-01-24T04:59:21Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2018-01-24T04:59:21Z"},"message":"Merge pull request #1559 from sdboyer/v040-release-prep\n\nv0.4.0 release prep","tree":{"sha":"45ef6ada0db2686ec56fa6e8b07772020ac6e0e7","url":"https://api.github.com/repos/golang/dep/git/trees/45ef6ada0db2686ec56fa6e8b07772020ac6e0e7"},"url":"https://api.github.com/repos/golang/dep/git/commits/6d95d0d6ac152023bf56b7293f5cae3792936c98","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJaaBKpCRBK7hj4Ov3rIwAAdHIIAKDh5T4cdqcN06pS0n7HAzYq\nnY5Tfqf/duEuXgT69a34lp89jHSQDW/bH6jIiFRl5ZZcItwHRdJinYbQpupM74sj\neFkOZ+F24Sm0u3Z7O0zoMRZsOzN7pauPVz/b2f/IWPoRUo8u8tg2ge71p6L91hkk\nSjF9bBJwXPzTER1NKSpw5IYQ3qWLD/kTh83u9K/YuJwJf3/wIAU9cssd9kgfjzzW\nnq+RyIMRAHw5FgGd3guGCMyPAciBVJPQMFpHLarOyQJfgLKkJfnHXVDEjdilAEcN\n7X0sItlkOQhP3vKRwXAuF+wpSOfqd5KtnUVqjALm3XzZcQ+rDGCLspuNzxsN9QA=\n=VrdQ\n-----END PGP SIGNATURE-----\n","payload":"tree 45ef6ada0db2686ec56fa6e8b07772020ac6e0e7\nparent 4a3baf8b68e3ae2a1d57685f0b7242388d36d8f7\nparent 916906bed1151d03f38760936aba919cd85cb9b3\nauthor sam boyer <tech@samboyer.org> 1516769961 -0500\ncommitter GitHub <noreply@github.com> 1516769961 -0500\n\nMerge pull request #1559 from sdboyer/v040-release-prep\n\nv0.4.0 release prep"}},"url":"https://api.github.com/repos/golang/dep/commits/6d95d0d6ac152023bf56b7293f5cae3792936c98","html_url":"https://github.com/golang/dep/commit/6d95d0d6ac152023bf56b7293f5cae3792936c98","comments_url":"https://api.github.com/repos/golang/dep/commits/6d95d0d6ac152023bf56b7293f5cae3792936c98/comments","author":{"login":"sdboyer","id":21599,"avatar_url":"https://avatars0.githubusercontent.com/u/21599?v=4","gravatar_id":"","url":"https://api.github.com/users/sdboyer","html_url":"https://github.com/sdboyer","followers_url":"https://api.github.com/users/sdboyer/followers","following_url":"https://api.github.com/users/sdboyer/following{/other_user}","gists_url":"https://api.github.com/users/sdboyer/gists{/gist_id}","starred_url":"https://api.github.com/users/sdboyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sdboyer/subscriptions","organizations_url":"https://api.github.com/users/sdboyer/orgs","repos_url":"https://api.github.com/users/sdboyer/repos","events_url":"https://api.github.com/users/sdboyer/events{/privacy}","received_events_url":"https://api.github.com/users/sdboyer/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"avatar_url":"https://avatars3.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"4a3baf8b68e3ae2a1d57685f0b7242388d36d8f7","url":"https://api.github.com/repos/golang/dep/commits/4a3baf8b68e3ae2a1d57685f0b7242388d36d8f7","html_url":"https://github.com/golang/dep/commit/4a3baf8b68e3ae2a1d57685f0b7242388d36d8f7"},{"sha":"916906bed1151d03f38760936aba919cd85cb9b3","url":"https://api.github.com/repos/golang/dep/commits/916906bed1151d03f38760936aba919cd85cb9b3","html_url":"https://github.com/golang/dep/commit/916906bed1151d03f38760936aba919cd85cb9b3"}]},{"sha":"916906bed1151d03f38760936aba919cd85cb9b3","commit":{"author":{"name":"sam boyer","email":"tech@samboyer.org","date":"2018-01-24T04:42:44Z"},"committer":{"name":"sam boyer","email":"tech@samboyer.org","date":"2018-01-24T04:46:57Z"},"message":"dep: Prune vendor using new pruning powers\n\nAlso remove the now-superfluous `dep prune` call from vendor validation\nchecks.","tree":{"sha":"45ef6ada0db2686ec56fa6e8b07772020ac6e0e7","url":"https://api.github.com/repos/golang/dep/git/trees/45ef6ada0db2686ec56fa6e8b07772020ac6e0e7"},"url":"https://api.github.com/repos/golang/dep/git/commits/916906bed1151d03f38760936aba919cd85cb9b3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/golang/dep/commits/916906bed1151d03f38760936aba919cd85cb9b3","html_url":"https://github.com/golang/dep/commit/916906bed1151d03f38760936aba919cd85cb9b3","comments_url":"https://api.github.com/repos/golang/dep/commits/916906bed1151d03f38760936aba919cd85cb9b3/comments","author":{"login":"sdboyer","id":21599,"avatar_url":"https://avatars0.githubusercontent.com/u/21599?v=4","gravatar_id":"","url":"https://api.github.com/users/sdboyer","html_url":"https://github.com/sdboyer","followers_url":"https://api.github.com/users/sdboyer/followers","following_url":"https://api.github.com/users/sdboyer/following{/other_user}","gists_url":"https://api.github.com/users/sdboyer/gists{/gist_id}","starred_url":"https://api.github.com/users/sdboyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sdboyer/subscriptions","organizations_url":"https://api.github.com/users/sdboyer/orgs","repos_url":"https://api.github.com/users/sdboyer/repos","events_url":"https://api.github.com/users/sdboyer/events{/privacy}","received_events_url":"https://api.github.com/users/sdboyer/received_events","type":"User","site_admin":false},"committer":{"login":"sdboyer","id":21599,"avatar_url":"https://avatars0.githubusercontent.com/u/21599?v=4","gravatar_id":"","url":"https://api.github.com/users/sdboyer","html_url":"https://github.com/sdboyer","followers_url":"https://api.github.com/users/sdboyer/followers","following_url":"https://api.github.com/users/sdboyer/following{/other_user}","gists_url":"https://api.github.com/users/sdboyer/gists{/gist_id}","starred_url":"https://api.github.com/users/sdboyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sdboyer/subscriptions","organizations_url":"https://api.github.com/users/sdboyer/orgs","repos_url":"https://api.github.com/users/sdboyer/repos","events_url":"https://api.github.com/users/sdboyer/events{/privacy}","received_events_url":"https://api.github.com/users/sdboyer/received_events","type":"User","site_admin":false},"parents":[{"sha":"7297a48ece4df1df5e88440fe70fd441de73e01e","url":"https://api.github.com/repos/golang/dep/commits/7297a48ece4df1df5e88440fe70fd441de73e01e","html_url":"https://github.com/golang/dep/commit/7297a48ece4df1df5e88440fe70fd441de73e01e"}]}]
+
+GET https://api.github.com/repos/golang/dep/contents/go.mod?ref=6d95d0d6ac152023bf56b7293f5cae3792936c98
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:56 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE345:1935C8:5A6FE948
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4828
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.041398
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/golang/dep/contents/Gopkg.lock?ref=6d95d0d6ac152023bf56b7293f5cae3792936c98
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:56 GMT
+Etag: W/"1779ee42072dcdb018f85ec43f6050b014e1652c"
+Last-Modified: Wed, 24 Jan 2018 04:59:21 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE348:1935D2:5A6FE948
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4827
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.043717
+X-Xss-Protection: 1; mode=block
+
+{"name":"Gopkg.lock","path":"Gopkg.lock","sha":"1779ee42072dcdb018f85ec43f6050b014e1652c","size":2411,"url":"https://api.github.com/repos/golang/dep/contents/Gopkg.lock?ref=6d95d0d6ac152023bf56b7293f5cae3792936c98","html_url":"https://github.com/golang/dep/blob/6d95d0d6ac152023bf56b7293f5cae3792936c98/Gopkg.lock","git_url":"https://api.github.com/repos/golang/dep/git/blobs/1779ee42072dcdb018f85ec43f6050b014e1652c","download_url":"https://raw.githubusercontent.com/golang/dep/6d95d0d6ac152023bf56b7293f5cae3792936c98/Gopkg.lock","type":"file","content":"IyBUaGlzIGZpbGUgaXMgYXV0b2dlbmVyYXRlZCwgZG8gbm90IGVkaXQ7IGNo\nYW5nZXMgbWF5IGJlIHVuZG9uZSBieSB0aGUgbmV4dCAnZGVwIGVuc3VyZScu\nCgoKW1twcm9qZWN0c11dCiAgYnJhbmNoID0gInBhcnNlLWNvbnN0cmFpbnRz\nLXdpdGgtZGFzaC1pbi1wcmUiCiAgbmFtZSA9ICJnaXRodWIuY29tL01hc3Rl\ncm1pbmRzL3NlbXZlciIKICBwYWNrYWdlcyA9IFsiLiJdCiAgcmV2aXNpb24g\nPSAiYTkzZTUxYjVhNTdlZjQxNmRhYzhiYjAyZDExNDA3YjZmNTVkODkyOSIK\nICBzb3VyY2UgPSAiaHR0cHM6Ly9naXRodWIuY29tL2Nhcm9seW52cy9zZW12\nZXIuZ2l0IgoKW1twcm9qZWN0c11dCiAgbmFtZSA9ICJnaXRodWIuY29tL01h\nc3Rlcm1pbmRzL3ZjcyIKICBwYWNrYWdlcyA9IFsiLiJdCiAgcmV2aXNpb24g\nPSAiMzA4NDY3N2MyYzE4ODg0MDc3N2JmZjMwMDU0ZjJiNTUzNzI5ZDMyOSIK\nICB2ZXJzaW9uID0gInYxLjExLjEiCgpbW3Byb2plY3RzXV0KICBicmFuY2gg\nPSAibWFzdGVyIgogIG5hbWUgPSAiZ2l0aHViLmNvbS9hcm1vbi9nby1yYWRp\neCIKICBwYWNrYWdlcyA9IFsiLiJdCiAgcmV2aXNpb24gPSAiNDIzOWI3NzA3\nOWM3YjVkMTI0M2I3YjQ3MzYzMDRjZThkZGI2ZjBmMiIKCltbcHJvamVjdHNd\nXQogIG5hbWUgPSAiZ2l0aHViLmNvbS9ib2x0ZGIvYm9sdCIKICBwYWNrYWdl\ncyA9IFsiLiJdCiAgcmV2aXNpb24gPSAiMmYxY2U3YTgzN2RjYjhkYTNlYzU5\nNWIxZGFjOWQwNjMyZjBmOTllOCIKICB2ZXJzaW9uID0gInYxLjMuMSIKCltb\ncHJvamVjdHNdXQogIGJyYW5jaCA9ICJ2MiIKICBuYW1lID0gImdpdGh1Yi5j\nb20vZ28teWFtbC95YW1sIgogIHBhY2thZ2VzID0gWyIuIl0KICByZXZpc2lv\nbiA9ICJjZDhiNTJmODI2OWUwZmViMjg2ZGZlZWYyOWY4ZmU0ZDViMzk3ZTBi\nIgoKW1twcm9qZWN0c11dCiAgYnJhbmNoID0gIm1hc3RlciIKICBuYW1lID0g\nImdpdGh1Yi5jb20vZ29sYW5nL3Byb3RvYnVmIgogIHBhY2thZ2VzID0gWyJw\ncm90byJdCiAgcmV2aXNpb24gPSAiNWFmZDA2ZjlkODFhODZkNmUzYmI3ZGM3\nMDJkNmJkMTQ4ZWEzZmYyMyIKCltbcHJvamVjdHNdXQogIG5hbWUgPSAiZ2l0\naHViLmNvbS9qbWFuazg4L251dHMiCiAgcGFja2FnZXMgPSBbIi4iXQogIHJl\ndmlzaW9uID0gIjhiMjgxNDVkZmZjODcxMDRlNjZkMDc0ZjYyZWE4MDgwZWRm\nYWQ3YzgiCiAgdmVyc2lvbiA9ICJ2MC4zLjAiCgpbW3Byb2plY3RzXV0KICBi\ncmFuY2ggPSAibWFzdGVyIgogIG5hbWUgPSAiZ2l0aHViLmNvbS9uaWdodGx5\nb25lL2xvY2tmaWxlIgogIHBhY2thZ2VzID0gWyIuIl0KICByZXZpc2lvbiA9\nICJlODNkYzVlN2JiYTA5NWU4ZDMyZmIyMTI0NzE0YmY0MWYyYTMwY2I1IgoK\nW1twcm9qZWN0c11dCiAgYnJhbmNoID0gIm1hc3RlciIKICBuYW1lID0gImdp\ndGh1Yi5jb20vcGVsbGV0aWVyL2dvLXRvbWwiCiAgcGFja2FnZXMgPSBbIi4i\nXQogIHJldmlzaW9uID0gImI4YjVlNzY5NjU3NDQ2NGIyZjliZjMwM2E3YjM3\nNzgxYmI1Mjg4OWYiCgpbW3Byb2plY3RzXV0KICBuYW1lID0gImdpdGh1Yi5j\nb20vcGtnL2Vycm9ycyIKICBwYWNrYWdlcyA9IFsiLiJdCiAgcmV2aXNpb24g\nPSAiNjQ1ZWYwMDQ1OWVkODRhMTE5MTk3YmZiOGQ4MjA1MDQyYzZkZjYzZCIK\nICB2ZXJzaW9uID0gInYwLjguMCIKCltbcHJvamVjdHNdXQogIGJyYW5jaCA9\nICJtYXN0ZXIiCiAgbmFtZSA9ICJnaXRodWIuY29tL3NkYm95ZXIvY29uc3Rl\neHQiCiAgcGFja2FnZXMgPSBbIi4iXQogIHJldmlzaW9uID0gIjgzNmExNDQ1\nNzM1MzNlYTRkYTRlNjkyOWMyMzVmZDM0OGFlZDFjODAiCgpbW3Byb2plY3Rz\nXV0KICBicmFuY2ggPSAibWFzdGVyIgogIG5hbWUgPSAiZ29sYW5nLm9yZy94\nL25ldCIKICBwYWNrYWdlcyA9IFsiY29udGV4dCJdCiAgcmV2aXNpb24gPSAi\nNjZhYWNlZjNkZDhhNjc2Njg2YzdhZTM3MTY5Nzk1ODFlOGIwM2M0NyIKCltb\ncHJvamVjdHNdXQogIGJyYW5jaCA9ICJtYXN0ZXIiCiAgbmFtZSA9ICJnb2xh\nbmcub3JnL3gvc3luYyIKICBwYWNrYWdlcyA9IFsiZXJyZ3JvdXAiXQogIHJl\ndmlzaW9uID0gImY1MmQxODExYTYyOTI3NTU5ZGU4NzcwOGM4OTEzYzE2NTBj\nZTRmMjYiCgpbW3Byb2plY3RzXV0KICBicmFuY2ggPSAibWFzdGVyIgogIG5h\nbWUgPSAiZ29sYW5nLm9yZy94L3N5cyIKICBwYWNrYWdlcyA9IFsidW5peCJd\nCiAgcmV2aXNpb24gPSAiYmIyNGE0N2E4OWVhYzZjMTIyN2ZiY2IyYWUzN2E4\nYjllZDMyMzM2NiIKCltzb2x2ZS1tZXRhXQogIGFuYWx5emVyLW5hbWUgPSAi\nZGVwIgogIGFuYWx5emVyLXZlcnNpb24gPSAxCiAgaW5wdXRzLWRpZ2VzdCA9\nICJlNzBkMjZiMzU5YWVkN2FmNjZmMzM5M2ZjOWQ0OTg1YmJjZjQ5OWMwYjVl\nZDNiNTY2MWE1OTEyYjRjNzFhMzJlIgogIHNvbHZlci1uYW1lID0gImdwcy1j\nZGNsIgogIHNvbHZlci12ZXJzaW9uID0gMQo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/golang/dep/contents/Gopkg.lock?ref=6d95d0d6ac152023bf56b7293f5cae3792936c98","git":"https://api.github.com/repos/golang/dep/git/blobs/1779ee42072dcdb018f85ec43f6050b014e1652c","html":"https://github.com/golang/dep/blob/6d95d0d6ac152023bf56b7293f5cae3792936c98/Gopkg.lock"}}
+
+GET https://raw.githubusercontent.com/golang/dep/6d95d0d6ac152023bf56b7293f5cae3792936c98/Gopkg.lock
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Etag: "1779ee42072dcdb018f85ec43f6050b014e1652c"
+Expires: Tue, 30 Jan 2018 03:45:57 GMT
+Source-Age: 73
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: HIT
+X-Cache-Hits: 1
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: a1f1b51245862e479fb4630e3345fb7410e5f94a
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 3510:7C3C:2066F:2272B:5A6FE900
+X-Served-By: cache-bos8230-BOS
+X-Timer: S1517283657.023471,VS0,VE7
+X-Xss-Protection: 1; mode=block
+
+# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
+
+
+[[projects]]
+  branch = "parse-constraints-with-dash-in-pre"
+  name = "github.com/Masterminds/semver"
+  packages = ["."]
+  revision = "a93e51b5a57ef416dac8bb02d11407b6f55d8929"
+  source = "https://github.com/carolynvs/semver.git"
+
+[[projects]]
+  name = "github.com/Masterminds/vcs"
+  packages = ["."]
+  revision = "3084677c2c188840777bff30054f2b553729d329"
+  version = "v1.11.1"
+
+[[projects]]
+  branch = "master"
+  name = "github.com/armon/go-radix"
+  packages = ["."]
+  revision = "4239b77079c7b5d1243b7b4736304ce8ddb6f0f2"
+
+[[projects]]
+  name = "github.com/boltdb/bolt"
+  packages = ["."]
+  revision = "2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8"
+  version = "v1.3.1"
+
+[[projects]]
+  branch = "v2"
+  name = "github.com/go-yaml/yaml"
+  packages = ["."]
+  revision = "cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b"
+
+[[projects]]
+  branch = "master"
+  name = "github.com/golang/protobuf"
+  packages = ["proto"]
+  revision = "5afd06f9d81a86d6e3bb7dc702d6bd148ea3ff23"
+
+[[projects]]
+  name = "github.com/jmank88/nuts"
+  packages = ["."]
+  revision = "8b28145dffc87104e66d074f62ea8080edfad7c8"
+  version = "v0.3.0"
+
+[[projects]]
+  branch = "master"
+  name = "github.com/nightlyone/lockfile"
+  packages = ["."]
+  revision = "e83dc5e7bba095e8d32fb2124714bf41f2a30cb5"
+
+[[projects]]
+  branch = "master"
+  name = "github.com/pelletier/go-toml"
+  packages = ["."]
+  revision = "b8b5e7696574464b2f9bf303a7b37781bb52889f"
+
+[[projects]]
+  name = "github.com/pkg/errors"
+  packages = ["."]
+  revision = "645ef00459ed84a119197bfb8d8205042c6df63d"
+  version = "v0.8.0"
+
+[[projects]]
+  branch = "master"
+  name = "github.com/sdboyer/constext"
+  packages = ["."]
+  revision = "836a144573533ea4da4e6929c235fd348aed1c80"
+
+[[projects]]
+  branch = "master"
+  name = "golang.org/x/net"
+  packages = ["context"]
+  revision = "66aacef3dd8a676686c7ae3716979581e8b03c47"
+
+[[projects]]
+  branch = "master"
+  name = "golang.org/x/sync"
+  packages = ["errgroup"]
+  revision = "f52d1811a62927559de87708c8913c1650ce4f26"
+
+[[projects]]
+  branch = "master"
+  name = "golang.org/x/sys"
+  packages = ["unix"]
+  revision = "bb24a47a89eac6c1227fbcb2ae37a8b9ed323366"
+
+[solve-meta]
+  analyzer-name = "dep"
+  analyzer-version = 1
+  inputs-digest = "e70d26b359aed7af66f3393fc9d4985bbcf499c0b5ed3b5661a5912b4c71a32e"
+  solver-name = "gps-cdcl"
+  solver-version = 1
+
+
+GET https://api.github.com/repos/Masterminds/semver/commits?sha=a93e51b5a57ef416dac8bb02d11407b6f55d8929&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Etag: W/"1e1ae0f54d0dd9ddea01b36966a18087"
+Last-Modified: Wed, 26 Jul 2017 23:05:14 GMT
+Link: <https://api.github.com/repositories/43896280/commits?sha=a93e51b5a57ef416dac8bb02d11407b6f55d8929&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/43896280/commits?sha=a93e51b5a57ef416dac8bb02d11407b6f55d8929&per_page=2&page=65>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE350:1935DA:5A6FE948
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4826
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.043860
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"a93e51b5a57ef416dac8bb02d11407b6f55d8929","commit":{"author":{"name":"Carolyn Van Slyck","email":"me@carolynvanslyck.com","date":"2017-07-26T21:53:14Z"},"committer":{"name":"Carolyn Van Slyck","email":"me@carolynvanslyck.com","date":"2017-07-26T23:05:14Z"},"message":"Handle a version with a dash in the prerelease tag\n\nWhen parsing a constraint, before converting dashes to a range,\ncheck if it is a valid version first. That way a version with multiple\ndashes, like v1.0.0-12-abc123 isn't turned into a range of\n1.0.0 to 12-abc123.","tree":{"sha":"4647a70aba27d1fa938f0380088895681838272a","url":"https://api.github.com/repos/Masterminds/semver/git/trees/4647a70aba27d1fa938f0380088895681838272a"},"url":"https://api.github.com/repos/Masterminds/semver/git/commits/a93e51b5a57ef416dac8bb02d11407b6f55d8929","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCAAdFiEEvcURAop+f9hDNLJCrvX2TmudgZcFAll5ICsACgkQrvX2Tmud\ngZdrRQ//fcDUBZheDZ6I1Iv+S7mQyWpoqX0hRPFmvzEj6xsdOoAi9EJ15tRQP97Y\n+MuTfB1M6F+0seU7LfI1gE5fWMKC4yzpEG8nF5OVxawK2g3qRuLZYgem8loIs11x\nsKd4LzcCu/gy0F7pWmcOsG3f3iGw1o42xsryVrUj0ryjlCbHHQ7fItgpVRktIKLs\nMTra1tcaRKehBl73vVc83KzBBQYT1SDIrVga3Tts3/xV/0nip8KO7yaQjranM9/+\nMpf3egT2rkMtYtnn2I57BwnyLPUD7k6IRhQMwsrGrXYM1/yeUGzJceS7DkcD2MWu\nWVHmzu57NhdyAyU1TfkUIyomv/txqio43wK4Qv5FX7ZPoTw0JoBegdl80U0NwC99\nMQ3fmuoTvRqTrJlgeePxJo/Q9xDVlNjRCzPydcT/auiMa87ADsuCDW7j6dslWp9F\nY4ZBLY4No87fha+umvcTny2k4ydktmGYDIKcoTzIz+C7CCtKjGP5x1m8GE9vdCz8\nPf99O4PtuRZAzyK1NuQFVgGSoP+ZgtP0CYSE9e42OUMBX/3sh7TMNNzz9xU5Fu3m\ntzud/FDG4VQLK9UIiTeBuUv/P+zpjYj/URm9hd5bTqwvJlZiromE07T3d/Wp7FWj\nWRZFfxQTknoxW2JxMD9jH/88rxM9Y/Qm4YjdYdB/q8tNtgE+C8E=\n=xhKO\n-----END PGP SIGNATURE-----","payload":"tree 4647a70aba27d1fa938f0380088895681838272a\nparent c2e7f6c2f49a1613362aa774884c17e395dd85b7\nauthor Carolyn Van Slyck <me@carolynvanslyck.com> 1501105994 -0500\ncommitter Carolyn Van Slyck <me@carolynvanslyck.com> 1501110314 -0500\n\nHandle a version with a dash in the prerelease tag\n\nWhen parsing a constraint, before converting dashes to a range,\ncheck if it is a valid version first. That way a version with multiple\ndashes, like v1.0.0-12-abc123 isn't turned into a range of\n1.0.0 to 12-abc123.\n"}},"url":"https://api.github.com/repos/Masterminds/semver/commits/a93e51b5a57ef416dac8bb02d11407b6f55d8929","html_url":"https://github.com/Masterminds/semver/commit/a93e51b5a57ef416dac8bb02d11407b6f55d8929","comments_url":"https://api.github.com/repos/Masterminds/semver/commits/a93e51b5a57ef416dac8bb02d11407b6f55d8929/comments","author":{"login":"carolynvs","id":1368985,"avatar_url":"https://avatars1.githubusercontent.com/u/1368985?v=4","gravatar_id":"","url":"https://api.github.com/users/carolynvs","html_url":"https://github.com/carolynvs","followers_url":"https://api.github.com/users/carolynvs/followers","following_url":"https://api.github.com/users/carolynvs/following{/other_user}","gists_url":"https://api.github.com/users/carolynvs/gists{/gist_id}","starred_url":"https://api.github.com/users/carolynvs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carolynvs/subscriptions","organizations_url":"https://api.github.com/users/carolynvs/orgs","repos_url":"https://api.github.com/users/carolynvs/repos","events_url":"https://api.github.com/users/carolynvs/events{/privacy}","received_events_url":"https://api.github.com/users/carolynvs/received_events","type":"User","site_admin":false},"committer":{"login":"carolynvs","id":1368985,"avatar_url":"https://avatars1.githubusercontent.com/u/1368985?v=4","gravatar_id":"","url":"https://api.github.com/users/carolynvs","html_url":"https://github.com/carolynvs","followers_url":"https://api.github.com/users/carolynvs/followers","following_url":"https://api.github.com/users/carolynvs/following{/other_user}","gists_url":"https://api.github.com/users/carolynvs/gists{/gist_id}","starred_url":"https://api.github.com/users/carolynvs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/carolynvs/subscriptions","organizations_url":"https://api.github.com/users/carolynvs/orgs","repos_url":"https://api.github.com/users/carolynvs/repos","events_url":"https://api.github.com/users/carolynvs/events{/privacy}","received_events_url":"https://api.github.com/users/carolynvs/received_events","type":"User","site_admin":false},"parents":[{"sha":"c2e7f6c2f49a1613362aa774884c17e395dd85b7","url":"https://api.github.com/repos/Masterminds/semver/commits/c2e7f6c2f49a1613362aa774884c17e395dd85b7","html_url":"https://github.com/Masterminds/semver/commit/c2e7f6c2f49a1613362aa774884c17e395dd85b7"}]},{"sha":"c2e7f6c2f49a1613362aa774884c17e395dd85b7","commit":{"author":{"name":"Matt Farina","email":"matt@mattfarina.com","date":"2017-07-07T02:35:26Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2017-07-07T02:35:26Z"},"message":"Merge pull request #56 from sdboyer/patch-1\n\nFix dumb typo in comment","tree":{"sha":"1105838609b947e32003c6621a6cd9c278f239a2","url":"https://api.github.com/repos/Masterminds/semver/git/trees/1105838609b947e32003c6621a6cd9c278f239a2"},"url":"https://api.github.com/repos/Masterminds/semver/git/commits/c2e7f6c2f49a1613362aa774884c17e395dd85b7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/Masterminds/semver/commits/c2e7f6c2f49a1613362aa774884c17e395dd85b7","html_url":"https://github.com/Masterminds/semver/commit/c2e7f6c2f49a1613362aa774884c17e395dd85b7","comments_url":"https://api.github.com/repos/Masterminds/semver/commits/c2e7f6c2f49a1613362aa774884c17e395dd85b7/comments","author":{"login":"mattfarina","id":62991,"avatar_url":"https://avatars2.githubusercontent.com/u/62991?v=4","gravatar_id":"","url":"https://api.github.com/users/mattfarina","html_url":"https://github.com/mattfarina","followers_url":"https://api.github.com/users/mattfarina/followers","following_url":"https://api.github.com/users/mattfarina/following{/other_user}","gists_url":"https://api.github.com/users/mattfarina/gists{/gist_id}","starred_url":"https://api.github.com/users/mattfarina/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattfarina/subscriptions","organizations_url":"https://api.github.com/users/mattfarina/orgs","repos_url":"https://api.github.com/users/mattfarina/repos","events_url":"https://api.github.com/users/mattfarina/events{/privacy}","received_events_url":"https://api.github.com/users/mattfarina/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"avatar_url":"https://avatars3.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"139cc0982c53f1367af5636b12b7643cd03757fc","url":"https://api.github.com/repos/Masterminds/semver/commits/139cc0982c53f1367af5636b12b7643cd03757fc","html_url":"https://github.com/Masterminds/semver/commit/139cc0982c53f1367af5636b12b7643cd03757fc"},{"sha":"3bb858bc34b4cdd92ca0a5eb658e34fdedda87c1","url":"https://api.github.com/repos/Masterminds/semver/commits/3bb858bc34b4cdd92ca0a5eb658e34fdedda87c1","html_url":"https://github.com/Masterminds/semver/commit/3bb858bc34b4cdd92ca0a5eb658e34fdedda87c1"}]}]
+
+GET https://api.github.com/repos/Masterminds/vcs/git/refs/tags/v1.11.1
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Etag: W/"77db62b0804d67d9c395bdd9eefe1495"
+Last-Modified: Thu, 25 Jan 2018 07:39:00 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE355:1935ED:5A6FE949
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4825
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.037227
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v1.11.1","url":"https://api.github.com/repos/Masterminds/vcs/git/refs/tags/v1.11.1","object":{"sha":"e3f8fae6d4770ed026f74f3c82439901e15af524","type":"tag","url":"https://api.github.com/repos/Masterminds/vcs/git/tags/e3f8fae6d4770ed026f74f3c82439901e15af524"}}
+
+GET https://api.github.com/repos/Masterminds/vcs/git/tags/e3f8fae6d4770ed026f74f3c82439901e15af524
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Etag: W/"d14341ea6314a0b2890e825efe650e97"
+Last-Modified: Thu, 25 Jan 2018 07:39:00 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE358:1935F6:5A6FE949
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4824
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.044260
+X-Xss-Protection: 1; mode=block
+
+{"sha":"e3f8fae6d4770ed026f74f3c82439901e15af524","url":"https://api.github.com/repos/Masterminds/vcs/git/tags/e3f8fae6d4770ed026f74f3c82439901e15af524","tagger":{"name":"Matt Farina","email":"matt@mattfarina.com","date":"2017-04-28T13:24:35Z"},"object":{"sha":"3084677c2c188840777bff30054f2b553729d329","type":"commit","url":"https://api.github.com/repos/Masterminds/vcs/git/commits/3084677c2c188840777bff30054f2b553729d329"},"tag":"v1.11.1","message":"Release 1.11.1\n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1\n\niQIcBAABAgAGBQJZA0KgAAoJEFY0Y+SvAXqy/iwP/0JWRZhjq0hb+z++xxJERVK7\nFDuY5ztnD9Ndk1IQMWZMp11/7x7K1iuyJ9YRBsjrSFM+nUmkzXVbKgX59LQGivyM\nixI8qHa1Swi96mBi8+ZorlMH/mxeUIuESqS2g59GS0Hyc2b17fGhClF2rEwZpZaN\naKQq9NqYr4XX5nA+i+2T76LlTzETSJdJNWzWrzPHtIJ28Y8pNYIl7GlJlqUibRCn\nH4PfW6ZLtO8s8C8Q7IbL+4Eh1ybmtcjGdlYZoyIHy60CiKULlBvw4U40ZbMo6dm6\nlhttEKth1sI8oUPI4Kjhhi1WohXGM6YboZD3fIfUYC2lXNyAhxlO5v4FNXYArd9H\ntLe6wSFRQkIXhem5xlYcyOItEMNHs9XpfkrLxrrVim6YLIWzc8nVvEcDYRKymXFN\nbxqzYwlOZqLMrXcRWml8T9GzotiDuGlWWWQMJUoSrY2YTxXaFlwHd9FOIinJwiZp\nfWaAN8dO69NsjrISyq4Pg9skKo2FJl4GwohhGh5lyX+sDD5mgMok/wdbfG9/q2eZ\no/DDduLJYn21alLLtfmEULDcv1owclEr9BdL4tLjyom65VEEkQtXvOXyoZhrRL9N\ni0H3UtPfKp2Ckgb0A7b6EzNkWO6x3RKbI/1TX15qvpaoiK7hGS5nnj9XJRLM8a6F\nsnlG1qj5pgyqOypTgpxf\n=0Mhd\n-----END PGP SIGNATURE-----\n","verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1\n\niQIcBAABAgAGBQJZA0KgAAoJEFY0Y+SvAXqy/iwP/0JWRZhjq0hb+z++xxJERVK7\nFDuY5ztnD9Ndk1IQMWZMp11/7x7K1iuyJ9YRBsjrSFM+nUmkzXVbKgX59LQGivyM\nixI8qHa1Swi96mBi8+ZorlMH/mxeUIuESqS2g59GS0Hyc2b17fGhClF2rEwZpZaN\naKQq9NqYr4XX5nA+i+2T76LlTzETSJdJNWzWrzPHtIJ28Y8pNYIl7GlJlqUibRCn\nH4PfW6ZLtO8s8C8Q7IbL+4Eh1ybmtcjGdlYZoyIHy60CiKULlBvw4U40ZbMo6dm6\nlhttEKth1sI8oUPI4Kjhhi1WohXGM6YboZD3fIfUYC2lXNyAhxlO5v4FNXYArd9H\ntLe6wSFRQkIXhem5xlYcyOItEMNHs9XpfkrLxrrVim6YLIWzc8nVvEcDYRKymXFN\nbxqzYwlOZqLMrXcRWml8T9GzotiDuGlWWWQMJUoSrY2YTxXaFlwHd9FOIinJwiZp\nfWaAN8dO69NsjrISyq4Pg9skKo2FJl4GwohhGh5lyX+sDD5mgMok/wdbfG9/q2eZ\no/DDduLJYn21alLLtfmEULDcv1owclEr9BdL4tLjyom65VEEkQtXvOXyoZhrRL9N\ni0H3UtPfKp2Ckgb0A7b6EzNkWO6x3RKbI/1TX15qvpaoiK7hGS5nnj9XJRLM8a6F\nsnlG1qj5pgyqOypTgpxf\n=0Mhd\n-----END PGP SIGNATURE-----\n","payload":"object 3084677c2c188840777bff30054f2b553729d329\ntype commit\ntag v1.11.1\ntagger Matt Farina <matt@mattfarina.com> 1493385875 -0400\n\nRelease 1.11.1\n"}}
+
+GET https://api.github.com/repos/Masterminds/vcs/commits?sha=3084677c2c188840777bff30054f2b553729d329&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Etag: W/"1dde65e07a71b1b4de71769fd38126f7"
+Last-Modified: Fri, 28 Apr 2017 13:23:44 GMT
+Link: <https://api.github.com/repositories/39643904/commits?sha=3084677c2c188840777bff30054f2b553729d329&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/39643904/commits?sha=3084677c2c188840777bff30054f2b553729d329&per_page=2&page=106>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE35D:1935FE:5A6FE949
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4823
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.061207
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"3084677c2c188840777bff30054f2b553729d329","commit":{"author":{"name":"Matt Farina","email":"matt@mattfarina.com","date":"2017-04-28T13:23:44Z"},"committer":{"name":"Matt Farina","email":"matt@mattfarina.com","date":"2017-04-28T13:23:44Z"},"message":"Updating changelog for 1.11.1 release","tree":{"sha":"308364dd49e884c5070803be9da49cc5ea34b3a3","url":"https://api.github.com/repos/Masterminds/vcs/git/trees/308364dd49e884c5070803be9da49cc5ea34b3a3"},"url":"https://api.github.com/repos/Masterminds/vcs/git/commits/3084677c2c188840777bff30054f2b553729d329","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1\n\niQIcBAABAgAGBQJZA0JgAAoJEFY0Y+SvAXqyFooP/jnuI8e29nrUrneaGMnpAEbf\nqcBMKSuRdzPGTeD/lZvd9gjqDhNvZneP0nmiJzvL20rKL3tqVgOiStoV4gq8mCUw\nYF9smt+DwpTVx5v/SHM1WrrdUwgLHrZ36sWZ9vL/oNtv2K1WAsdvl6T/UZmjdxNx\nt+1KF7sWJCYlyu8jSTqdCdGK05M4Uumi43cq0JCdsEtBH44Sug5gj5JfknwqcQDx\nrZmrp6vMw239orUcm2fclR9sF8oFuBcRM8WFputmPXzrKe4ZrHjT2RTH6WJpPYB3\nBbjLahnfEEJUPpGajQy/4/nFHgHvHaVIKUR0iPoYz2IZZlaR/gpDRckXuzKhUPbz\nt9+i1FZJzIT4BYDx+OHoJZYUb4vPptiOW3RC8CfbYESoTFIVDABN7z4CsP6UYx4H\nqAI1AT+C80o0vll5PK31EAzK895Mmge6THBiXGEVR9gBdV4UhXHTV/5Je+hByx4z\na23BfIbciIbtiyKXcohzAefwfAr8OPGjt3MRC6qwjiUyLzXVIR0IbAPg8aZRnFgK\nFdf64PonwRRI5N6p8LFAfMhKbs4T9Dk7BQY4LUAGTQoyTSsqxVh1GrLWd9rXkw9d\n+RRbYnUeumT4uEHZpcNDJk+2+ptlSxfvrafqa7WsBKyVvfrFrvsp67MePeF1D4A2\nyKAC5HSwquw8hn9wSiIy\n=5JyI\n-----END PGP SIGNATURE-----","payload":"tree 308364dd49e884c5070803be9da49cc5ea34b3a3\nparent 6594752281f29a3a1fc949b9ac7930e39f819b96\nauthor Matt Farina <matt@mattfarina.com> 1493385824 -0400\ncommitter Matt Farina <matt@mattfarina.com> 1493385824 -0400\n\nUpdating changelog for 1.11.1 release\n"}},"url":"https://api.github.com/repos/Masterminds/vcs/commits/3084677c2c188840777bff30054f2b553729d329","html_url":"https://github.com/Masterminds/vcs/commit/3084677c2c188840777bff30054f2b553729d329","comments_url":"https://api.github.com/repos/Masterminds/vcs/commits/3084677c2c188840777bff30054f2b553729d329/comments","author":{"login":"mattfarina","id":62991,"avatar_url":"https://avatars2.githubusercontent.com/u/62991?v=4","gravatar_id":"","url":"https://api.github.com/users/mattfarina","html_url":"https://github.com/mattfarina","followers_url":"https://api.github.com/users/mattfarina/followers","following_url":"https://api.github.com/users/mattfarina/following{/other_user}","gists_url":"https://api.github.com/users/mattfarina/gists{/gist_id}","starred_url":"https://api.github.com/users/mattfarina/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattfarina/subscriptions","organizations_url":"https://api.github.com/users/mattfarina/orgs","repos_url":"https://api.github.com/users/mattfarina/repos","events_url":"https://api.github.com/users/mattfarina/events{/privacy}","received_events_url":"https://api.github.com/users/mattfarina/received_events","type":"User","site_admin":false},"committer":{"login":"mattfarina","id":62991,"avatar_url":"https://avatars2.githubusercontent.com/u/62991?v=4","gravatar_id":"","url":"https://api.github.com/users/mattfarina","html_url":"https://github.com/mattfarina","followers_url":"https://api.github.com/users/mattfarina/followers","following_url":"https://api.github.com/users/mattfarina/following{/other_user}","gists_url":"https://api.github.com/users/mattfarina/gists{/gist_id}","starred_url":"https://api.github.com/users/mattfarina/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattfarina/subscriptions","organizations_url":"https://api.github.com/users/mattfarina/orgs","repos_url":"https://api.github.com/users/mattfarina/repos","events_url":"https://api.github.com/users/mattfarina/events{/privacy}","received_events_url":"https://api.github.com/users/mattfarina/received_events","type":"User","site_admin":false},"parents":[{"sha":"6594752281f29a3a1fc949b9ac7930e39f819b96","url":"https://api.github.com/repos/Masterminds/vcs/commits/6594752281f29a3a1fc949b9ac7930e39f819b96","html_url":"https://github.com/Masterminds/vcs/commit/6594752281f29a3a1fc949b9ac7930e39f819b96"}]},{"sha":"6594752281f29a3a1fc949b9ac7930e39f819b96","commit":{"author":{"name":"Matt Farina","email":"matt@mattfarina.com","date":"2017-04-28T13:03:48Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2017-04-28T13:03:48Z"},"message":"Merge pull request #77 from m0j0hn/VCS-76\n\nVCS-76: Fix submodule handling for Windows","tree":{"sha":"204b346117080c215960aa145381709abd267740","url":"https://api.github.com/repos/Masterminds/vcs/git/trees/204b346117080c215960aa145381709abd267740"},"url":"https://api.github.com/repos/Masterminds/vcs/git/commits/6594752281f29a3a1fc949b9ac7930e39f819b96","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/Masterminds/vcs/commits/6594752281f29a3a1fc949b9ac7930e39f819b96","html_url":"https://github.com/Masterminds/vcs/commit/6594752281f29a3a1fc949b9ac7930e39f819b96","comments_url":"https://api.github.com/repos/Masterminds/vcs/commits/6594752281f29a3a1fc949b9ac7930e39f819b96/comments","author":{"login":"mattfarina","id":62991,"avatar_url":"https://avatars2.githubusercontent.com/u/62991?v=4","gravatar_id":"","url":"https://api.github.com/users/mattfarina","html_url":"https://github.com/mattfarina","followers_url":"https://api.github.com/users/mattfarina/followers","following_url":"https://api.github.com/users/mattfarina/following{/other_user}","gists_url":"https://api.github.com/users/mattfarina/gists{/gist_id}","starred_url":"https://api.github.com/users/mattfarina/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattfarina/subscriptions","organizations_url":"https://api.github.com/users/mattfarina/orgs","repos_url":"https://api.github.com/users/mattfarina/repos","events_url":"https://api.github.com/users/mattfarina/events{/privacy}","received_events_url":"https://api.github.com/users/mattfarina/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"avatar_url":"https://avatars3.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"795e20f901c3d561de52811fb3488a2cb2c8588b","url":"https://api.github.com/repos/Masterminds/vcs/commits/795e20f901c3d561de52811fb3488a2cb2c8588b","html_url":"https://github.com/Masterminds/vcs/commit/795e20f901c3d561de52811fb3488a2cb2c8588b"},{"sha":"92b5758418170922cbd404c9384032b4a7620f7b","url":"https://api.github.com/repos/Masterminds/vcs/commits/92b5758418170922cbd404c9384032b4a7620f7b","html_url":"https://github.com/Masterminds/vcs/commit/92b5758418170922cbd404c9384032b4a7620f7b"}]}]
+
+GET https://api.github.com/repos/Masterminds/vcs/contents/go.mod?ref=3084677c2c188840777bff30054f2b553729d329
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE365:19360B:5A6FE949
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4822
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.045006
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/armon/go-radix/commits?sha=4239b77079c7b5d1243b7b4736304ce8ddb6f0f2&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Etag: W/"9a21e50cec7a8c740a04eec6d4774341"
+Last-Modified: Fri, 15 Jan 2016 23:47:25 GMT
+Link: <https://api.github.com/repositories/22491681/commits?sha=4239b77079c7b5d1243b7b4736304ce8ddb6f0f2&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/22491681/commits?sha=4239b77079c7b5d1243b7b4736304ce8ddb6f0f2&per_page=2&page=9>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE368:193618:5A6FE949
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4821
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.047830
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"4239b77079c7b5d1243b7b4736304ce8ddb6f0f2","commit":{"author":{"name":"Armon Dadgar","email":"armon.dadgar@gmail.com","date":"2016-01-15T23:47:25Z"},"committer":{"name":"Armon Dadgar","email":"armon.dadgar@gmail.com","date":"2016-01-15T23:47:25Z"},"message":"Merge pull request #4 from muyiwaolurin/master\n\nUnreachable code section","tree":{"sha":"ec12deb6ca1c4e3901de0fb4a164b9f067117705","url":"https://api.github.com/repos/armon/go-radix/git/trees/ec12deb6ca1c4e3901de0fb4a164b9f067117705"},"url":"https://api.github.com/repos/armon/go-radix/git/commits/4239b77079c7b5d1243b7b4736304ce8ddb6f0f2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/armon/go-radix/commits/4239b77079c7b5d1243b7b4736304ce8ddb6f0f2","html_url":"https://github.com/armon/go-radix/commit/4239b77079c7b5d1243b7b4736304ce8ddb6f0f2","comments_url":"https://api.github.com/repos/armon/go-radix/commits/4239b77079c7b5d1243b7b4736304ce8ddb6f0f2/comments","author":{"login":"armon","id":592032,"avatar_url":"https://avatars3.githubusercontent.com/u/592032?v=4","gravatar_id":"","url":"https://api.github.com/users/armon","html_url":"https://github.com/armon","followers_url":"https://api.github.com/users/armon/followers","following_url":"https://api.github.com/users/armon/following{/other_user}","gists_url":"https://api.github.com/users/armon/gists{/gist_id}","starred_url":"https://api.github.com/users/armon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/armon/subscriptions","organizations_url":"https://api.github.com/users/armon/orgs","repos_url":"https://api.github.com/users/armon/repos","events_url":"https://api.github.com/users/armon/events{/privacy}","received_events_url":"https://api.github.com/users/armon/received_events","type":"User","site_admin":false},"committer":{"login":"armon","id":592032,"avatar_url":"https://avatars3.githubusercontent.com/u/592032?v=4","gravatar_id":"","url":"https://api.github.com/users/armon","html_url":"https://github.com/armon","followers_url":"https://api.github.com/users/armon/followers","following_url":"https://api.github.com/users/armon/following{/other_user}","gists_url":"https://api.github.com/users/armon/gists{/gist_id}","starred_url":"https://api.github.com/users/armon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/armon/subscriptions","organizations_url":"https://api.github.com/users/armon/orgs","repos_url":"https://api.github.com/users/armon/repos","events_url":"https://api.github.com/users/armon/events{/privacy}","received_events_url":"https://api.github.com/users/armon/received_events","type":"User","site_admin":false},"parents":[{"sha":"fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93","url":"https://api.github.com/repos/armon/go-radix/commits/fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93","html_url":"https://github.com/armon/go-radix/commit/fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93"},{"sha":"6e886418b1acdcd0a3f58bd6526eafc26bb80416","url":"https://api.github.com/repos/armon/go-radix/commits/6e886418b1acdcd0a3f58bd6526eafc26bb80416","html_url":"https://github.com/armon/go-radix/commit/6e886418b1acdcd0a3f58bd6526eafc26bb80416"}]},{"sha":"6e886418b1acdcd0a3f58bd6526eafc26bb80416","commit":{"author":{"name":"Anthony Olurin","email":"anthony.olurin@metricaid.com","date":"2016-01-10T20:52:02Z"},"committer":{"name":"Anthony Olurin","email":"anthony.olurin@metricaid.com","date":"2016-01-10T20:52:02Z"},"message":"Unreachable code section\n- removed unreachable code section","tree":{"sha":"ec12deb6ca1c4e3901de0fb4a164b9f067117705","url":"https://api.github.com/repos/armon/go-radix/git/trees/ec12deb6ca1c4e3901de0fb4a164b9f067117705"},"url":"https://api.github.com/repos/armon/go-radix/git/commits/6e886418b1acdcd0a3f58bd6526eafc26bb80416","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/armon/go-radix/commits/6e886418b1acdcd0a3f58bd6526eafc26bb80416","html_url":"https://github.com/armon/go-radix/commit/6e886418b1acdcd0a3f58bd6526eafc26bb80416","comments_url":"https://api.github.com/repos/armon/go-radix/commits/6e886418b1acdcd0a3f58bd6526eafc26bb80416/comments","author":null,"committer":null,"parents":[{"sha":"fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93","url":"https://api.github.com/repos/armon/go-radix/commits/fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93","html_url":"https://github.com/armon/go-radix/commit/fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93"}]}]
+
+GET https://api.github.com/repos/boltdb/bolt/git/refs/tags/v1.3.1
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Etag: W/"cc6225427c4b1dd95563ef1ac7c8cdb8"
+Last-Modified: Mon, 29 Jan 2018 21:54:02 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE36C:19361B:5A6FE949
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4820
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.036185
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v1.3.1","url":"https://api.github.com/repos/boltdb/bolt/git/refs/tags/v1.3.1","object":{"sha":"2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8","type":"commit","url":"https://api.github.com/repos/boltdb/bolt/git/commits/2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8"}}
+
+GET https://api.github.com/repos/boltdb/bolt/commits?sha=2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Etag: W/"b18630abb489615fd921a6584d33c620"
+Last-Modified: Mon, 17 Jul 2017 17:11:48 GMT
+Link: <https://api.github.com/repositories/15345331/commits?sha=2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/15345331/commits?sha=2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8&per_page=2&page=406>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE36F:19361C:5A6FE949
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4819
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.039497
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8","commit":{"author":{"name":"Ben Johnson","email":"benbjohnson@yahoo.com","date":"2017-07-17T17:11:48Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2017-07-17T17:11:48Z"},"message":"Merge pull request #703 from nilslice/patch-1\n\nAdd Ponzu CMS to list of projects using Bolt","tree":{"sha":"9622d012a81153bda792892b03e63bc6e786bac7","url":"https://api.github.com/repos/boltdb/bolt/git/trees/9622d012a81153bda792892b03e63bc6e786bac7"},"url":"https://api.github.com/repos/boltdb/bolt/git/commits/2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/boltdb/bolt/commits/2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8","html_url":"https://github.com/boltdb/bolt/commit/2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8","comments_url":"https://api.github.com/repos/boltdb/bolt/commits/2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8/comments","author":{"login":"benbjohnson","id":118015,"avatar_url":"https://avatars2.githubusercontent.com/u/118015?v=4","gravatar_id":"","url":"https://api.github.com/users/benbjohnson","html_url":"https://github.com/benbjohnson","followers_url":"https://api.github.com/users/benbjohnson/followers","following_url":"https://api.github.com/users/benbjohnson/following{/other_user}","gists_url":"https://api.github.com/users/benbjohnson/gists{/gist_id}","starred_url":"https://api.github.com/users/benbjohnson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/benbjohnson/subscriptions","organizations_url":"https://api.github.com/users/benbjohnson/orgs","repos_url":"https://api.github.com/users/benbjohnson/repos","events_url":"https://api.github.com/users/benbjohnson/events{/privacy}","received_events_url":"https://api.github.com/users/benbjohnson/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"avatar_url":"https://avatars3.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"e9cf4fae01b5a8ff89d0ec6b32f0d9c9f79aefdd","url":"https://api.github.com/repos/boltdb/bolt/commits/e9cf4fae01b5a8ff89d0ec6b32f0d9c9f79aefdd","html_url":"https://github.com/boltdb/bolt/commit/e9cf4fae01b5a8ff89d0ec6b32f0d9c9f79aefdd"},{"sha":"f7f91ab543b44359d9ee6ff8fbb867f3215446f0","url":"https://api.github.com/repos/boltdb/bolt/commits/f7f91ab543b44359d9ee6ff8fbb867f3215446f0","html_url":"https://github.com/boltdb/bolt/commit/f7f91ab543b44359d9ee6ff8fbb867f3215446f0"}]},{"sha":"f7f91ab543b44359d9ee6ff8fbb867f3215446f0","commit":{"author":{"name":"Steve Manuel","email":"nilslice@gmail.com","date":"2017-07-10T22:15:44Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2017-07-10T22:15:44Z"},"message":"Add Ponzu CMS to list of projects using Bolt","tree":{"sha":"9622d012a81153bda792892b03e63bc6e786bac7","url":"https://api.github.com/repos/boltdb/bolt/git/trees/9622d012a81153bda792892b03e63bc6e786bac7"},"url":"https://api.github.com/repos/boltdb/bolt/git/commits/f7f91ab543b44359d9ee6ff8fbb867f3215446f0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/boltdb/bolt/commits/f7f91ab543b44359d9ee6ff8fbb867f3215446f0","html_url":"https://github.com/boltdb/bolt/commit/f7f91ab543b44359d9ee6ff8fbb867f3215446f0","comments_url":"https://api.github.com/repos/boltdb/bolt/commits/f7f91ab543b44359d9ee6ff8fbb867f3215446f0/comments","author":{"login":"nilslice","id":7517515,"avatar_url":"https://avatars0.githubusercontent.com/u/7517515?v=4","gravatar_id":"","url":"https://api.github.com/users/nilslice","html_url":"https://github.com/nilslice","followers_url":"https://api.github.com/users/nilslice/followers","following_url":"https://api.github.com/users/nilslice/following{/other_user}","gists_url":"https://api.github.com/users/nilslice/gists{/gist_id}","starred_url":"https://api.github.com/users/nilslice/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nilslice/subscriptions","organizations_url":"https://api.github.com/users/nilslice/orgs","repos_url":"https://api.github.com/users/nilslice/repos","events_url":"https://api.github.com/users/nilslice/events{/privacy}","received_events_url":"https://api.github.com/users/nilslice/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"avatar_url":"https://avatars3.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"e9cf4fae01b5a8ff89d0ec6b32f0d9c9f79aefdd","url":"https://api.github.com/repos/boltdb/bolt/commits/e9cf4fae01b5a8ff89d0ec6b32f0d9c9f79aefdd","html_url":"https://github.com/boltdb/bolt/commit/e9cf4fae01b5a8ff89d0ec6b32f0d9c9f79aefdd"}]}]
+
+GET https://api.github.com/repos/boltdb/bolt/contents/go.mod?ref=2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE372:193623:5A6FE949
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4818
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.041875
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/go-yaml/yaml/commits?sha=cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Etag: W/"75514ab819f999a847cee11313fa790e"
+Last-Modified: Fri, 07 Apr 2017 17:21:22 GMT
+Link: <https://api.github.com/repositories/17451182/commits?sha=cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/17451182/commits?sha=cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b&per_page=2&page=96>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE377:19362B:5A6FE949
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4817
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.039050
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b","commit":{"author":{"name":"Morgan Jones","email":"mevanj89@gmail.com","date":"2017-04-07T17:21:22Z"},"committer":{"name":"Gustavo Niemeyer","email":"gustavo@niemeyer.net","date":"2017-04-07T17:21:22Z"},"message":"Remove unreachable code to fix go vet (#249)","tree":{"sha":"aade0cbeb4ebb50a3733267e87639b3ee0ef56d8","url":"https://api.github.com/repos/go-yaml/yaml/git/trees/aade0cbeb4ebb50a3733267e87639b3ee0ef56d8"},"url":"https://api.github.com/repos/go-yaml/yaml/git/commits/cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/go-yaml/yaml/commits/cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b","html_url":"https://github.com/go-yaml/yaml/commit/cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b","comments_url":"https://api.github.com/repos/go-yaml/yaml/commits/cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b/comments","author":{"login":"mogthesprog","id":8202113,"avatar_url":"https://avatars3.githubusercontent.com/u/8202113?v=4","gravatar_id":"","url":"https://api.github.com/users/mogthesprog","html_url":"https://github.com/mogthesprog","followers_url":"https://api.github.com/users/mogthesprog/followers","following_url":"https://api.github.com/users/mogthesprog/following{/other_user}","gists_url":"https://api.github.com/users/mogthesprog/gists{/gist_id}","starred_url":"https://api.github.com/users/mogthesprog/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mogthesprog/subscriptions","organizations_url":"https://api.github.com/users/mogthesprog/orgs","repos_url":"https://api.github.com/users/mogthesprog/repos","events_url":"https://api.github.com/users/mogthesprog/events{/privacy}","received_events_url":"https://api.github.com/users/mogthesprog/received_events","type":"User","site_admin":false},"committer":{"login":"niemeyer","id":378683,"avatar_url":"https://avatars3.githubusercontent.com/u/378683?v=4","gravatar_id":"","url":"https://api.github.com/users/niemeyer","html_url":"https://github.com/niemeyer","followers_url":"https://api.github.com/users/niemeyer/followers","following_url":"https://api.github.com/users/niemeyer/following{/other_user}","gists_url":"https://api.github.com/users/niemeyer/gists{/gist_id}","starred_url":"https://api.github.com/users/niemeyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/niemeyer/subscriptions","organizations_url":"https://api.github.com/users/niemeyer/orgs","repos_url":"https://api.github.com/users/niemeyer/repos","events_url":"https://api.github.com/users/niemeyer/events{/privacy}","received_events_url":"https://api.github.com/users/niemeyer/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3f3340b5840cee44f372bddb5880fcbc419b46a","url":"https://api.github.com/repos/go-yaml/yaml/commits/a3f3340b5840cee44f372bddb5880fcbc419b46a","html_url":"https://github.com/go-yaml/yaml/commit/a3f3340b5840cee44f372bddb5880fcbc419b46a"}]},{"sha":"a3f3340b5840cee44f372bddb5880fcbc419b46a","commit":{"author":{"name":"Aaron.L.Xu","email":"likexu@harmonycloud.cn","date":"2017-02-08T14:18:51Z"},"committer":{"name":"Gustavo Niemeyer","email":"gustavo@niemeyer.net","date":"2017-02-08T14:18:51Z"},"message":"Fix dead URL for yaml specification (#240)","tree":{"sha":"e658580d1983a42228ffa118c447e96ba2c3abf1","url":"https://api.github.com/repos/go-yaml/yaml/git/trees/e658580d1983a42228ffa118c447e96ba2c3abf1"},"url":"https://api.github.com/repos/go-yaml/yaml/git/commits/a3f3340b5840cee44f372bddb5880fcbc419b46a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/go-yaml/yaml/commits/a3f3340b5840cee44f372bddb5880fcbc419b46a","html_url":"https://github.com/go-yaml/yaml/commit/a3f3340b5840cee44f372bddb5880fcbc419b46a","comments_url":"https://api.github.com/repos/go-yaml/yaml/commits/a3f3340b5840cee44f372bddb5880fcbc419b46a/comments","author":{"login":"xulike666","id":24667625,"avatar_url":"https://avatars0.githubusercontent.com/u/24667625?v=4","gravatar_id":"","url":"https://api.github.com/users/xulike666","html_url":"https://github.com/xulike666","followers_url":"https://api.github.com/users/xulike666/followers","following_url":"https://api.github.com/users/xulike666/following{/other_user}","gists_url":"https://api.github.com/users/xulike666/gists{/gist_id}","starred_url":"https://api.github.com/users/xulike666/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xulike666/subscriptions","organizations_url":"https://api.github.com/users/xulike666/orgs","repos_url":"https://api.github.com/users/xulike666/repos","events_url":"https://api.github.com/users/xulike666/events{/privacy}","received_events_url":"https://api.github.com/users/xulike666/received_events","type":"User","site_admin":false},"committer":{"login":"niemeyer","id":378683,"avatar_url":"https://avatars3.githubusercontent.com/u/378683?v=4","gravatar_id":"","url":"https://api.github.com/users/niemeyer","html_url":"https://github.com/niemeyer","followers_url":"https://api.github.com/users/niemeyer/followers","following_url":"https://api.github.com/users/niemeyer/following{/other_user}","gists_url":"https://api.github.com/users/niemeyer/gists{/gist_id}","starred_url":"https://api.github.com/users/niemeyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/niemeyer/subscriptions","organizations_url":"https://api.github.com/users/niemeyer/orgs","repos_url":"https://api.github.com/users/niemeyer/repos","events_url":"https://api.github.com/users/niemeyer/events{/privacy}","received_events_url":"https://api.github.com/users/niemeyer/received_events","type":"User","site_admin":false},"parents":[{"sha":"4c78c975fe7c825c6d1466c42be594d1d6f3aba6","url":"https://api.github.com/repos/go-yaml/yaml/commits/4c78c975fe7c825c6d1466c42be594d1d6f3aba6","html_url":"https://github.com/go-yaml/yaml/commit/4c78c975fe7c825c6d1466c42be594d1d6f3aba6"}]}]
+
+GET https://api.github.com/repos/golang/protobuf/commits?sha=5afd06f9d81a86d6e3bb7dc702d6bd148ea3ff23&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Etag: W/"0106f985e2453b678f2993081fe7493f"
+Last-Modified: Fri, 01 Sep 2017 04:27:39 GMT
+Link: <https://api.github.com/repositories/27051771/commits?sha=5afd06f9d81a86d6e3bb7dc702d6bd148ea3ff23&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/27051771/commits?sha=5afd06f9d81a86d6e3bb7dc702d6bd148ea3ff23&per_page=2&page=249>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE378:193631:5A6FE949
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4816
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.044776
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"5afd06f9d81a86d6e3bb7dc702d6bd148ea3ff23","commit":{"author":{"name":"Joshua Humphries","email":"jh@fullstory.com","date":"2017-09-01T04:27:39Z"},"committer":{"name":"Herbie Ong","email":"cybrcodr@users.noreply.github.com","date":"2017-09-01T04:27:39Z"},"message":"jsonpb: add support for custom resolution of Any messages to/from JSON (#410)\n\nIntroduce type AnyResolver with func Resolve that takes in Any's type_url value and returns corresponding proto.Message.  Add AnyResolver field to both Marshaler and Unmarshaler for use when Any is encountered.","tree":{"sha":"99226e93853eb59ab0ef57f513be105fea13549a","url":"https://api.github.com/repos/golang/protobuf/git/trees/99226e93853eb59ab0ef57f513be105fea13549a"},"url":"https://api.github.com/repos/golang/protobuf/git/commits/5afd06f9d81a86d6e3bb7dc702d6bd148ea3ff23","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/golang/protobuf/commits/5afd06f9d81a86d6e3bb7dc702d6bd148ea3ff23","html_url":"https://github.com/golang/protobuf/commit/5afd06f9d81a86d6e3bb7dc702d6bd148ea3ff23","comments_url":"https://api.github.com/repos/golang/protobuf/commits/5afd06f9d81a86d6e3bb7dc702d6bd148ea3ff23/comments","author":{"login":"jhump","id":2035234,"avatar_url":"https://avatars0.githubusercontent.com/u/2035234?v=4","gravatar_id":"","url":"https://api.github.com/users/jhump","html_url":"https://github.com/jhump","followers_url":"https://api.github.com/users/jhump/followers","following_url":"https://api.github.com/users/jhump/following{/other_user}","gists_url":"https://api.github.com/users/jhump/gists{/gist_id}","starred_url":"https://api.github.com/users/jhump/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jhump/subscriptions","organizations_url":"https://api.github.com/users/jhump/orgs","repos_url":"https://api.github.com/users/jhump/repos","events_url":"https://api.github.com/users/jhump/events{/privacy}","received_events_url":"https://api.github.com/users/jhump/received_events","type":"User","site_admin":false},"committer":{"login":"cybrcodr","id":1845151,"avatar_url":"https://avatars0.githubusercontent.com/u/1845151?v=4","gravatar_id":"","url":"https://api.github.com/users/cybrcodr","html_url":"https://github.com/cybrcodr","followers_url":"https://api.github.com/users/cybrcodr/followers","following_url":"https://api.github.com/users/cybrcodr/following{/other_user}","gists_url":"https://api.github.com/users/cybrcodr/gists{/gist_id}","starred_url":"https://api.github.com/users/cybrcodr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cybrcodr/subscriptions","organizations_url":"https://api.github.com/users/cybrcodr/orgs","repos_url":"https://api.github.com/users/cybrcodr/repos","events_url":"https://api.github.com/users/cybrcodr/events{/privacy}","received_events_url":"https://api.github.com/users/cybrcodr/received_events","type":"User","site_admin":false},"parents":[{"sha":"83cd65fc365ace80eb6b6ecfc45203e43edfbc70","url":"https://api.github.com/repos/golang/protobuf/commits/83cd65fc365ace80eb6b6ecfc45203e43edfbc70","html_url":"https://github.com/golang/protobuf/commit/83cd65fc365ace80eb6b6ecfc45203e43edfbc70"}]},{"sha":"83cd65fc365ace80eb6b6ecfc45203e43edfbc70","commit":{"author":{"name":"Grayson Koonce","email":"grayson.koonce@gmail.com","date":"2017-08-31T01:06:43Z"},"committer":{"name":"Herbie Ong","email":"cybrcodr@users.noreply.github.com","date":"2017-08-31T01:06:43Z"},"message":"Add tests for Go 1.9 (#421)","tree":{"sha":"9e073e0c32b346f0b3cfd00b0da8770bbdd85342","url":"https://api.github.com/repos/golang/protobuf/git/trees/9e073e0c32b346f0b3cfd00b0da8770bbdd85342"},"url":"https://api.github.com/repos/golang/protobuf/git/commits/83cd65fc365ace80eb6b6ecfc45203e43edfbc70","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/golang/protobuf/commits/83cd65fc365ace80eb6b6ecfc45203e43edfbc70","html_url":"https://github.com/golang/protobuf/commit/83cd65fc365ace80eb6b6ecfc45203e43edfbc70","comments_url":"https://api.github.com/repos/golang/protobuf/commits/83cd65fc365ace80eb6b6ecfc45203e43edfbc70/comments","author":{"login":"breerly","id":263587,"avatar_url":"https://avatars1.githubusercontent.com/u/263587?v=4","gravatar_id":"","url":"https://api.github.com/users/breerly","html_url":"https://github.com/breerly","followers_url":"https://api.github.com/users/breerly/followers","following_url":"https://api.github.com/users/breerly/following{/other_user}","gists_url":"https://api.github.com/users/breerly/gists{/gist_id}","starred_url":"https://api.github.com/users/breerly/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/breerly/subscriptions","organizations_url":"https://api.github.com/users/breerly/orgs","repos_url":"https://api.github.com/users/breerly/repos","events_url":"https://api.github.com/users/breerly/events{/privacy}","received_events_url":"https://api.github.com/users/breerly/received_events","type":"User","site_admin":false},"committer":{"login":"cybrcodr","id":1845151,"avatar_url":"https://avatars0.githubusercontent.com/u/1845151?v=4","gravatar_id":"","url":"https://api.github.com/users/cybrcodr","html_url":"https://github.com/cybrcodr","followers_url":"https://api.github.com/users/cybrcodr/followers","following_url":"https://api.github.com/users/cybrcodr/following{/other_user}","gists_url":"https://api.github.com/users/cybrcodr/gists{/gist_id}","starred_url":"https://api.github.com/users/cybrcodr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cybrcodr/subscriptions","organizations_url":"https://api.github.com/users/cybrcodr/orgs","repos_url":"https://api.github.com/users/cybrcodr/repos","events_url":"https://api.github.com/users/cybrcodr/events{/privacy}","received_events_url":"https://api.github.com/users/cybrcodr/received_events","type":"User","site_admin":false},"parents":[{"sha":"ab9f9a6dab164b7d1246e0e688b0ab7b94d8553e","url":"https://api.github.com/repos/golang/protobuf/commits/ab9f9a6dab164b7d1246e0e688b0ab7b94d8553e","html_url":"https://github.com/golang/protobuf/commit/ab9f9a6dab164b7d1246e0e688b0ab7b94d8553e"}]}]
+
+GET https://api.github.com/repos/jmank88/nuts/git/refs/tags/v0.3.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:57 GMT
+Etag: W/"106377becc876e3a3bb9c01d27b37118"
+Last-Modified: Wed, 24 Jan 2018 10:38:38 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE37A:193633:5A6FE949
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4815
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.032848
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.3.0","url":"https://api.github.com/repos/jmank88/nuts/git/refs/tags/v0.3.0","object":{"sha":"8b28145dffc87104e66d074f62ea8080edfad7c8","type":"commit","url":"https://api.github.com/repos/jmank88/nuts/git/commits/8b28145dffc87104e66d074f62ea8080edfad7c8"}}
+
+GET https://api.github.com/repos/jmank88/nuts/commits?sha=8b28145dffc87104e66d074f62ea8080edfad7c8&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:58 GMT
+Etag: W/"6561a465768950bb4e598fed9ed730aa"
+Last-Modified: Tue, 09 Jan 2018 02:25:40 GMT
+Link: <https://api.github.com/repositories/86607147/commits?sha=8b28145dffc87104e66d074f62ea8080edfad7c8&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/86607147/commits?sha=8b28145dffc87104e66d074f62ea8080edfad7c8&per_page=2&page=10>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE37C:193636:5A6FE949
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4814
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.056740
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"8b28145dffc87104e66d074f62ea8080edfad7c8","commit":{"author":{"name":"Jordan Krage","email":"jmank88@gmail.com","date":"2018-01-09T02:25:40Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2018-01-09T02:25:40Z"},"message":"Merge pull request #3 from jmank88/std_hash\n\nreplace github.com/dgryski/go-metro with hash/fnv","tree":{"sha":"91852d21c36a3db63ab51f7bed9339cb826119ed","url":"https://api.github.com/repos/jmank88/nuts/git/trees/91852d21c36a3db63ab51f7bed9339cb826119ed"},"url":"https://api.github.com/repos/jmank88/nuts/git/commits/8b28145dffc87104e66d074f62ea8080edfad7c8","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJaVCgkCRBK7hj4Ov3rIwAAdHIIAFFXBBvNLE8A4cwKuIV+oK4P\nT3kR7HFoCI+6FOuVvHwVdryEuvudw9Gl5e3QxpZHRjVycXv489iyD+keBBgmbUZ9\n8A9df1LxbB1mdPhKeEuxD/O7v2WKLOghhwEoheK3/lpaBBv8UBWyGtgUBYXLq/Sg\n/XCwBJdGxX6QA0yIht8metGS3Zg8E7IN4W3j32Es206Wjgw7bHCwzs4hTS1X0urx\nUj7XEb0uL2SnL3RDY/cKMCaRi8wiKlSr5XAj2GNXmwaqtjWtf3eIYE4NAG1eXcaU\npJw0bsz2NcwQfaxrg8L5e54icO6t3XKmLp5DPd38NwF5273cHvc6OXy/soXzEbc=\n=+54H\n-----END PGP SIGNATURE-----\n","payload":"tree 91852d21c36a3db63ab51f7bed9339cb826119ed\nparent a1e02c788669d022c325a8ee674f15360d7104f4\nparent 326826bd835e84feb7f204433bb6c271c2e66282\nauthor Jordan Krage <jmank88@gmail.com> 1515464740 -0600\ncommitter GitHub <noreply@github.com> 1515464740 -0600\n\nMerge pull request #3 from jmank88/std_hash\n\nreplace github.com/dgryski/go-metro with hash/fnv"}},"url":"https://api.github.com/repos/jmank88/nuts/commits/8b28145dffc87104e66d074f62ea8080edfad7c8","html_url":"https://github.com/jmank88/nuts/commit/8b28145dffc87104e66d074f62ea8080edfad7c8","comments_url":"https://api.github.com/repos/jmank88/nuts/commits/8b28145dffc87104e66d074f62ea8080edfad7c8/comments","author":{"login":"jmank88","id":1194128,"avatar_url":"https://avatars2.githubusercontent.com/u/1194128?v=4","gravatar_id":"","url":"https://api.github.com/users/jmank88","html_url":"https://github.com/jmank88","followers_url":"https://api.github.com/users/jmank88/followers","following_url":"https://api.github.com/users/jmank88/following{/other_user}","gists_url":"https://api.github.com/users/jmank88/gists{/gist_id}","starred_url":"https://api.github.com/users/jmank88/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jmank88/subscriptions","organizations_url":"https://api.github.com/users/jmank88/orgs","repos_url":"https://api.github.com/users/jmank88/repos","events_url":"https://api.github.com/users/jmank88/events{/privacy}","received_events_url":"https://api.github.com/users/jmank88/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"avatar_url":"https://avatars3.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"a1e02c788669d022c325a8ee674f15360d7104f4","url":"https://api.github.com/repos/jmank88/nuts/commits/a1e02c788669d022c325a8ee674f15360d7104f4","html_url":"https://github.com/jmank88/nuts/commit/a1e02c788669d022c325a8ee674f15360d7104f4"},{"sha":"326826bd835e84feb7f204433bb6c271c2e66282","url":"https://api.github.com/repos/jmank88/nuts/commits/326826bd835e84feb7f204433bb6c271c2e66282","html_url":"https://github.com/jmank88/nuts/commit/326826bd835e84feb7f204433bb6c271c2e66282"}]},{"sha":"326826bd835e84feb7f204433bb6c271c2e66282","commit":{"author":{"name":"Jordan Krage","email":"jmank88@gmail.com","date":"2018-01-09T02:16:23Z"},"committer":{"name":"Jordan Krage","email":"jmank88@gmail.com","date":"2018-01-09T02:20:00Z"},"message":"replace github.com/dgryski/go-metro with hash/fnv","tree":{"sha":"91852d21c36a3db63ab51f7bed9339cb826119ed","url":"https://api.github.com/repos/jmank88/nuts/git/trees/91852d21c36a3db63ab51f7bed9339cb826119ed"},"url":"https://api.github.com/repos/jmank88/nuts/git/commits/326826bd835e84feb7f204433bb6c271c2e66282","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/jmank88/nuts/commits/326826bd835e84feb7f204433bb6c271c2e66282","html_url":"https://github.com/jmank88/nuts/commit/326826bd835e84feb7f204433bb6c271c2e66282","comments_url":"https://api.github.com/repos/jmank88/nuts/commits/326826bd835e84feb7f204433bb6c271c2e66282/comments","author":{"login":"jmank88","id":1194128,"avatar_url":"https://avatars2.githubusercontent.com/u/1194128?v=4","gravatar_id":"","url":"https://api.github.com/users/jmank88","html_url":"https://github.com/jmank88","followers_url":"https://api.github.com/users/jmank88/followers","following_url":"https://api.github.com/users/jmank88/following{/other_user}","gists_url":"https://api.github.com/users/jmank88/gists{/gist_id}","starred_url":"https://api.github.com/users/jmank88/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jmank88/subscriptions","organizations_url":"https://api.github.com/users/jmank88/orgs","repos_url":"https://api.github.com/users/jmank88/repos","events_url":"https://api.github.com/users/jmank88/events{/privacy}","received_events_url":"https://api.github.com/users/jmank88/received_events","type":"User","site_admin":false},"committer":{"login":"jmank88","id":1194128,"avatar_url":"https://avatars2.githubusercontent.com/u/1194128?v=4","gravatar_id":"","url":"https://api.github.com/users/jmank88","html_url":"https://github.com/jmank88","followers_url":"https://api.github.com/users/jmank88/followers","following_url":"https://api.github.com/users/jmank88/following{/other_user}","gists_url":"https://api.github.com/users/jmank88/gists{/gist_id}","starred_url":"https://api.github.com/users/jmank88/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jmank88/subscriptions","organizations_url":"https://api.github.com/users/jmank88/orgs","repos_url":"https://api.github.com/users/jmank88/repos","events_url":"https://api.github.com/users/jmank88/events{/privacy}","received_events_url":"https://api.github.com/users/jmank88/received_events","type":"User","site_admin":false},"parents":[{"sha":"a1e02c788669d022c325a8ee674f15360d7104f4","url":"https://api.github.com/repos/jmank88/nuts/commits/a1e02c788669d022c325a8ee674f15360d7104f4","html_url":"https://github.com/jmank88/nuts/commit/a1e02c788669d022c325a8ee674f15360d7104f4"}]}]
+
+GET https://api.github.com/repos/jmank88/nuts/contents/go.mod?ref=8b28145dffc87104e66d074f62ea8080edfad7c8
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:58 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE37D:19363B:5A6FE94A
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4813
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.058700
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/nightlyone/lockfile/commits?sha=e83dc5e7bba095e8d32fb2124714bf41f2a30cb5&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:58 GMT
+Etag: W/"186ef03d6cb15d602097426ab0ded941"
+Last-Modified: Fri, 07 Jul 2017 06:04:51 GMT
+Link: <https://api.github.com/repositories/9440454/commits?sha=e83dc5e7bba095e8d32fb2124714bf41f2a30cb5&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/9440454/commits?sha=e83dc5e7bba095e8d32fb2124714bf41f2a30cb5&per_page=2&page=20>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE380:19363F:5A6FE94A
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4812
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.037565
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"e83dc5e7bba095e8d32fb2124714bf41f2a30cb5","commit":{"author":{"name":"Ingo Oeser","email":"nightlyone@googlemail.com","date":"2017-07-07T06:04:51Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2017-07-07T06:04:51Z"},"message":"Merge pull request #17 from oliverpool/patch-1\n\nAdd a prefix for the lock hard links","tree":{"sha":"59e5162fed9a644f169e7be9337cb8c64609ed57","url":"https://api.github.com/repos/nightlyone/lockfile/git/trees/59e5162fed9a644f169e7be9337cb8c64609ed57"},"url":"https://api.github.com/repos/nightlyone/lockfile/git/commits/e83dc5e7bba095e8d32fb2124714bf41f2a30cb5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/nightlyone/lockfile/commits/e83dc5e7bba095e8d32fb2124714bf41f2a30cb5","html_url":"https://github.com/nightlyone/lockfile/commit/e83dc5e7bba095e8d32fb2124714bf41f2a30cb5","comments_url":"https://api.github.com/repos/nightlyone/lockfile/commits/e83dc5e7bba095e8d32fb2124714bf41f2a30cb5/comments","author":{"login":"nightlyone","id":1767118,"avatar_url":"https://avatars1.githubusercontent.com/u/1767118?v=4","gravatar_id":"","url":"https://api.github.com/users/nightlyone","html_url":"https://github.com/nightlyone","followers_url":"https://api.github.com/users/nightlyone/followers","following_url":"https://api.github.com/users/nightlyone/following{/other_user}","gists_url":"https://api.github.com/users/nightlyone/gists{/gist_id}","starred_url":"https://api.github.com/users/nightlyone/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nightlyone/subscriptions","organizations_url":"https://api.github.com/users/nightlyone/orgs","repos_url":"https://api.github.com/users/nightlyone/repos","events_url":"https://api.github.com/users/nightlyone/events{/privacy}","received_events_url":"https://api.github.com/users/nightlyone/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"avatar_url":"https://avatars3.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"7ac7324405f7309d07259f55e918e7ae1d29840a","url":"https://api.github.com/repos/nightlyone/lockfile/commits/7ac7324405f7309d07259f55e918e7ae1d29840a","html_url":"https://github.com/nightlyone/lockfile/commit/7ac7324405f7309d07259f55e918e7ae1d29840a"},{"sha":"b7898b6bc5d9a3dc97e2b8fb6ab28548617d6004","url":"https://api.github.com/repos/nightlyone/lockfile/commits/b7898b6bc5d9a3dc97e2b8fb6ab28548617d6004","html_url":"https://github.com/nightlyone/lockfile/commit/b7898b6bc5d9a3dc97e2b8fb6ab28548617d6004"}]},{"sha":"7ac7324405f7309d07259f55e918e7ae1d29840a","commit":{"author":{"name":"Ingo Oeser","email":"nightlyone@googlemail.com","date":"2017-07-07T06:03:45Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2017-07-07T06:03:45Z"},"message":"Merge pull request #19 from nightlyone/Did-license\n\nFix license name in Readme","tree":{"sha":"f273463f89be16e58057f415fa23b182adafffe7","url":"https://api.github.com/repos/nightlyone/lockfile/git/trees/f273463f89be16e58057f415fa23b182adafffe7"},"url":"https://api.github.com/repos/nightlyone/lockfile/git/commits/7ac7324405f7309d07259f55e918e7ae1d29840a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/nightlyone/lockfile/commits/7ac7324405f7309d07259f55e918e7ae1d29840a","html_url":"https://github.com/nightlyone/lockfile/commit/7ac7324405f7309d07259f55e918e7ae1d29840a","comments_url":"https://api.github.com/repos/nightlyone/lockfile/commits/7ac7324405f7309d07259f55e918e7ae1d29840a/comments","author":{"login":"nightlyone","id":1767118,"avatar_url":"https://avatars1.githubusercontent.com/u/1767118?v=4","gravatar_id":"","url":"https://api.github.com/users/nightlyone","html_url":"https://github.com/nightlyone","followers_url":"https://api.github.com/users/nightlyone/followers","following_url":"https://api.github.com/users/nightlyone/following{/other_user}","gists_url":"https://api.github.com/users/nightlyone/gists{/gist_id}","starred_url":"https://api.github.com/users/nightlyone/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nightlyone/subscriptions","organizations_url":"https://api.github.com/users/nightlyone/orgs","repos_url":"https://api.github.com/users/nightlyone/repos","events_url":"https://api.github.com/users/nightlyone/events{/privacy}","received_events_url":"https://api.github.com/users/nightlyone/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"avatar_url":"https://avatars3.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"1d49c987357a327b5b03aa84cbddd582c328615d","url":"https://api.github.com/repos/nightlyone/lockfile/commits/1d49c987357a327b5b03aa84cbddd582c328615d","html_url":"https://github.com/nightlyone/lockfile/commit/1d49c987357a327b5b03aa84cbddd582c328615d"},{"sha":"9bf21cb6d9b11403de651b95bfef56c6853ef44b","url":"https://api.github.com/repos/nightlyone/lockfile/commits/9bf21cb6d9b11403de651b95bfef56c6853ef44b","html_url":"https://github.com/nightlyone/lockfile/commit/9bf21cb6d9b11403de651b95bfef56c6853ef44b"}]}]
+
+GET https://api.github.com/repos/pelletier/go-toml/commits?sha=b8b5e7696574464b2f9bf303a7b37781bb52889f&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:58 GMT
+Etag: W/"92591f696832a33f2d656354e045818a"
+Last-Modified: Mon, 18 Dec 2017 13:57:16 GMT
+Link: <https://api.github.com/repositories/8393979/commits?sha=b8b5e7696574464b2f9bf303a7b37781bb52889f&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/8393979/commits?sha=b8b5e7696574464b2f9bf303a7b37781bb52889f&per_page=2&page=133>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE381:193644:5A6FE94A
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4811
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.054492
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"b8b5e7696574464b2f9bf303a7b37781bb52889f","commit":{"author":{"name":"Thomas Pelletier","email":"pelletier.thomas@gmail.com","date":"2017-12-18T13:57:16Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2017-12-18T13:57:16Z"},"message":"Add Encoder opt to emit arrays on multiple lines (#203)\n\nA new Encoder option emits arrays with more than one line on multiple lines.\r\nThis is off by default and toggled with `ArraysWithOneElementPerLine`.\r\n\r\nFor example:\r\n\r\n```\r\nA = [1,2,3]\r\n```\r\n\r\nBecomes:\r\n\r\n```\r\nA = [\r\n  1,\r\n  2,\r\n  3\r\n]\r\n```\r\n\r\nFixes #200","tree":{"sha":"7cd0935e23a24b11191e9b4dc99eaabb342a1c69","url":"https://api.github.com/repos/pelletier/go-toml/git/trees/7cd0935e23a24b11191e9b4dc99eaabb342a1c69"},"url":"https://api.github.com/repos/pelletier/go-toml/git/commits/b8b5e7696574464b2f9bf303a7b37781bb52889f","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsBcBAABCAAQBQJaN8k8CRBK7hj4Ov3rIwAAdHIIAGw9IXRdMvPWCXpHVO0CepTe\n4mMUqLI8LL1hyjpZ+rF6apdDaV3FDfSvi3R3gZTxMp1yrCU6m7RMWaReEG3hmtMu\n3+uc8SOh1sJ3EUqdbe1UCEqWNJyDRCX+XXiou34weNaf19eCo+XSUYJHTEa3IHFt\nQs5cwAUDuWH1WZtl4ofIECAw4Sw3RmSw30JBzPNglmBbGsAmBfUEGc0bOErtmHsu\nHFU8SAIEpBZZwCrTt5Zzw56tOE2T6QyDas5RyL32S2q7t87GB/EFo6GHM8R4Xk4F\n6+wZsvRanty3idgt0iJH5wCxYQIpztDf3eh7Cv6omW39LQJFZ4Pm7fMRLuiiomY=\n=URDs\n-----END PGP SIGNATURE-----\n","payload":"tree 7cd0935e23a24b11191e9b4dc99eaabb342a1c69\nparent 4e9e0ee19b60b13eb79915933f44d8ed5f268bdd\nauthor Thomas Pelletier <pelletier.thomas@gmail.com> 1513605436 +0100\ncommitter GitHub <noreply@github.com> 1513605436 +0100\n\nAdd Encoder opt to emit arrays on multiple lines (#203)\n\nA new Encoder option emits arrays with more than one line on multiple lines.\r\nThis is off by default and toggled with `ArraysWithOneElementPerLine`.\r\n\r\nFor example:\r\n\r\n```\r\nA = [1,2,3]\r\n```\r\n\r\nBecomes:\r\n\r\n```\r\nA = [\r\n  1,\r\n  2,\r\n  3\r\n]\r\n```\r\n\r\nFixes #200"}},"url":"https://api.github.com/repos/pelletier/go-toml/commits/b8b5e7696574464b2f9bf303a7b37781bb52889f","html_url":"https://github.com/pelletier/go-toml/commit/b8b5e7696574464b2f9bf303a7b37781bb52889f","comments_url":"https://api.github.com/repos/pelletier/go-toml/commits/b8b5e7696574464b2f9bf303a7b37781bb52889f/comments","author":{"login":"pelletier","id":172804,"avatar_url":"https://avatars2.githubusercontent.com/u/172804?v=4","gravatar_id":"","url":"https://api.github.com/users/pelletier","html_url":"https://github.com/pelletier","followers_url":"https://api.github.com/users/pelletier/followers","following_url":"https://api.github.com/users/pelletier/following{/other_user}","gists_url":"https://api.github.com/users/pelletier/gists{/gist_id}","starred_url":"https://api.github.com/users/pelletier/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pelletier/subscriptions","organizations_url":"https://api.github.com/users/pelletier/orgs","repos_url":"https://api.github.com/users/pelletier/repos","events_url":"https://api.github.com/users/pelletier/events{/privacy}","received_events_url":"https://api.github.com/users/pelletier/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"avatar_url":"https://avatars3.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"4e9e0ee19b60b13eb79915933f44d8ed5f268bdd","url":"https://api.github.com/repos/pelletier/go-toml/commits/4e9e0ee19b60b13eb79915933f44d8ed5f268bdd","html_url":"https://github.com/pelletier/go-toml/commit/4e9e0ee19b60b13eb79915933f44d8ed5f268bdd"}]},{"sha":"4e9e0ee19b60b13eb79915933f44d8ed5f268bdd","commit":{"author":{"name":"Robert Günzler","email":"robertguenzler@kinvolk.io","date":"2017-10-24T21:10:38Z"},"committer":{"name":"Thomas Pelletier","email":"pelletier.thomas@gmail.com","date":"2017-10-24T21:10:38Z"},"message":"Add Encoder/Decoder types (#192)\n\nUsage is similar to the stdlibs JSON encoder/decoder but I tried to\r\nleave the general structure of the code the same.\r\n\r\nMain motivation was to support encoding/decoding options to allow\r\nencoding string-type map keys as quoted TOML keys.\r\nThis was implemented on the Encoder with QuoteMapKeys(bool).\r\n\r\n> The TOML spec supports using UTF-8 strings as keys.\r\n> https://github.com/toml-lang/toml/blob/master/versions/en/toml-v0.4.0.md#table","tree":{"sha":"ff0668ce98a5f1e75cac1463bbee3423bf464aa5","url":"https://api.github.com/repos/pelletier/go-toml/git/trees/ff0668ce98a5f1e75cac1463bbee3423bf464aa5"},"url":"https://api.github.com/repos/pelletier/go-toml/git/commits/4e9e0ee19b60b13eb79915933f44d8ed5f268bdd","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/pelletier/go-toml/commits/4e9e0ee19b60b13eb79915933f44d8ed5f268bdd","html_url":"https://github.com/pelletier/go-toml/commit/4e9e0ee19b60b13eb79915933f44d8ed5f268bdd","comments_url":"https://api.github.com/repos/pelletier/go-toml/commits/4e9e0ee19b60b13eb79915933f44d8ed5f268bdd/comments","author":{"login":"robertgzr","id":3930615,"avatar_url":"https://avatars2.githubusercontent.com/u/3930615?v=4","gravatar_id":"","url":"https://api.github.com/users/robertgzr","html_url":"https://github.com/robertgzr","followers_url":"https://api.github.com/users/robertgzr/followers","following_url":"https://api.github.com/users/robertgzr/following{/other_user}","gists_url":"https://api.github.com/users/robertgzr/gists{/gist_id}","starred_url":"https://api.github.com/users/robertgzr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robertgzr/subscriptions","organizations_url":"https://api.github.com/users/robertgzr/orgs","repos_url":"https://api.github.com/users/robertgzr/repos","events_url":"https://api.github.com/users/robertgzr/events{/privacy}","received_events_url":"https://api.github.com/users/robertgzr/received_events","type":"User","site_admin":false},"committer":{"login":"pelletier","id":172804,"avatar_url":"https://avatars2.githubusercontent.com/u/172804?v=4","gravatar_id":"","url":"https://api.github.com/users/pelletier","html_url":"https://github.com/pelletier","followers_url":"https://api.github.com/users/pelletier/followers","following_url":"https://api.github.com/users/pelletier/following{/other_user}","gists_url":"https://api.github.com/users/pelletier/gists{/gist_id}","starred_url":"https://api.github.com/users/pelletier/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pelletier/subscriptions","organizations_url":"https://api.github.com/users/pelletier/orgs","repos_url":"https://api.github.com/users/pelletier/repos","events_url":"https://api.github.com/users/pelletier/events{/privacy}","received_events_url":"https://api.github.com/users/pelletier/received_events","type":"User","site_admin":false},"parents":[{"sha":"8c31c2ec65b208cc2ad1608bf25a3ff91adf1944","url":"https://api.github.com/repos/pelletier/go-toml/commits/8c31c2ec65b208cc2ad1608bf25a3ff91adf1944","html_url":"https://github.com/pelletier/go-toml/commit/8c31c2ec65b208cc2ad1608bf25a3ff91adf1944"}]}]
+
+GET https://api.github.com/repos/pkg/errors/git/refs/tags/v0.8.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:58 GMT
+Etag: W/"7bf8b7ba892eeedf295b6500995b4a34"
+Last-Modified: Mon, 29 Jan 2018 16:04:47 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE384:19364B:5A6FE94A
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4810
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.054772
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.8.0","url":"https://api.github.com/repos/pkg/errors/git/refs/tags/v0.8.0","object":{"sha":"3866ebc348c54054262feae422da428fe6cf147d","type":"tag","url":"https://api.github.com/repos/pkg/errors/git/tags/3866ebc348c54054262feae422da428fe6cf147d"}}
+
+GET https://api.github.com/repos/pkg/errors/git/tags/3866ebc348c54054262feae422da428fe6cf147d
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:58 GMT
+Etag: W/"73acc97f6694dffe7f85e372c99dfa1b"
+Last-Modified: Mon, 29 Jan 2018 16:04:47 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE38A:193655:5A6FE94A
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4809
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.028990
+X-Xss-Protection: 1; mode=block
+
+{"sha":"3866ebc348c54054262feae422da428fe6cf147d","url":"https://api.github.com/repos/pkg/errors/git/tags/3866ebc348c54054262feae422da428fe6cf147d","tagger":{"name":"Dave Cheney","email":"dave@cheney.net","date":"2016-09-29T01:52:04Z"},"object":{"sha":"645ef00459ed84a119197bfb8d8205042c6df63d","type":"commit","url":"https://api.github.com/repos/pkg/errors/git/commits/645ef00459ed84a119197bfb8d8205042c6df63d"},"tag":"v0.8.0","message":"release errors 0.8.0\n","verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}}
+
+GET https://api.github.com/repos/pkg/errors/commits?sha=645ef00459ed84a119197bfb8d8205042c6df63d&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:58 GMT
+Etag: W/"9335f15a0b154b5a28d9cc9b5fc73b38"
+Last-Modified: Thu, 29 Sep 2016 01:48:01 GMT
+Link: <https://api.github.com/repositories/48643510/commits?sha=645ef00459ed84a119197bfb8d8205042c6df63d&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/48643510/commits?sha=645ef00459ed84a119197bfb8d8205042c6df63d&per_page=2&page=55>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE38E:19365B:5A6FE94A
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4808
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.056544
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"645ef00459ed84a119197bfb8d8205042c6df63d","commit":{"author":{"name":"Dave Cheney","email":"dave@cheney.net","date":"2016-09-29T01:48:01Z"},"committer":{"name":"Dave Cheney","email":"dave@cheney.net","date":"2016-09-29T01:48:01Z"},"message":"doc tweaks","tree":{"sha":"5928659268eb2b83ac460a15bd309c0472cf8040","url":"https://api.github.com/repos/pkg/errors/git/trees/5928659268eb2b83ac460a15bd309c0472cf8040"},"url":"https://api.github.com/repos/pkg/errors/git/commits/645ef00459ed84a119197bfb8d8205042c6df63d","comment_count":3,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/pkg/errors/commits/645ef00459ed84a119197bfb8d8205042c6df63d","html_url":"https://github.com/pkg/errors/commit/645ef00459ed84a119197bfb8d8205042c6df63d","comments_url":"https://api.github.com/repos/pkg/errors/commits/645ef00459ed84a119197bfb8d8205042c6df63d/comments","author":{"login":"davecheney","id":7171,"avatar_url":"https://avatars0.githubusercontent.com/u/7171?v=4","gravatar_id":"","url":"https://api.github.com/users/davecheney","html_url":"https://github.com/davecheney","followers_url":"https://api.github.com/users/davecheney/followers","following_url":"https://api.github.com/users/davecheney/following{/other_user}","gists_url":"https://api.github.com/users/davecheney/gists{/gist_id}","starred_url":"https://api.github.com/users/davecheney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davecheney/subscriptions","organizations_url":"https://api.github.com/users/davecheney/orgs","repos_url":"https://api.github.com/users/davecheney/repos","events_url":"https://api.github.com/users/davecheney/events{/privacy}","received_events_url":"https://api.github.com/users/davecheney/received_events","type":"User","site_admin":false},"committer":{"login":"davecheney","id":7171,"avatar_url":"https://avatars0.githubusercontent.com/u/7171?v=4","gravatar_id":"","url":"https://api.github.com/users/davecheney","html_url":"https://github.com/davecheney","followers_url":"https://api.github.com/users/davecheney/followers","following_url":"https://api.github.com/users/davecheney/following{/other_user}","gists_url":"https://api.github.com/users/davecheney/gists{/gist_id}","starred_url":"https://api.github.com/users/davecheney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davecheney/subscriptions","organizations_url":"https://api.github.com/users/davecheney/orgs","repos_url":"https://api.github.com/users/davecheney/repos","events_url":"https://api.github.com/users/davecheney/events{/privacy}","received_events_url":"https://api.github.com/users/davecheney/received_events","type":"User","site_admin":false},"parents":[{"sha":"7433cb070c74c4cb854f8e248b600840969a0bee","url":"https://api.github.com/repos/pkg/errors/commits/7433cb070c74c4cb854f8e248b600840969a0bee","html_url":"https://github.com/pkg/errors/commit/7433cb070c74c4cb854f8e248b600840969a0bee"}]},{"sha":"7433cb070c74c4cb854f8e248b600840969a0bee","commit":{"author":{"name":"Dave Cheney","email":"dave@cheney.net","date":"2016-09-29T01:23:57Z"},"committer":{"name":"Dave Cheney","email":"dave@cheney.net","date":"2016-09-29T01:32:15Z"},"message":"fix line numbers in fmt tests","tree":{"sha":"12554a76b7a84c631ef65f568a1ea07e38b89b34","url":"https://api.github.com/repos/pkg/errors/git/trees/12554a76b7a84c631ef65f568a1ea07e38b89b34"},"url":"https://api.github.com/repos/pkg/errors/git/commits/7433cb070c74c4cb854f8e248b600840969a0bee","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/pkg/errors/commits/7433cb070c74c4cb854f8e248b600840969a0bee","html_url":"https://github.com/pkg/errors/commit/7433cb070c74c4cb854f8e248b600840969a0bee","comments_url":"https://api.github.com/repos/pkg/errors/commits/7433cb070c74c4cb854f8e248b600840969a0bee/comments","author":{"login":"davecheney","id":7171,"avatar_url":"https://avatars0.githubusercontent.com/u/7171?v=4","gravatar_id":"","url":"https://api.github.com/users/davecheney","html_url":"https://github.com/davecheney","followers_url":"https://api.github.com/users/davecheney/followers","following_url":"https://api.github.com/users/davecheney/following{/other_user}","gists_url":"https://api.github.com/users/davecheney/gists{/gist_id}","starred_url":"https://api.github.com/users/davecheney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davecheney/subscriptions","organizations_url":"https://api.github.com/users/davecheney/orgs","repos_url":"https://api.github.com/users/davecheney/repos","events_url":"https://api.github.com/users/davecheney/events{/privacy}","received_events_url":"https://api.github.com/users/davecheney/received_events","type":"User","site_admin":false},"committer":{"login":"davecheney","id":7171,"avatar_url":"https://avatars0.githubusercontent.com/u/7171?v=4","gravatar_id":"","url":"https://api.github.com/users/davecheney","html_url":"https://github.com/davecheney","followers_url":"https://api.github.com/users/davecheney/followers","following_url":"https://api.github.com/users/davecheney/following{/other_user}","gists_url":"https://api.github.com/users/davecheney/gists{/gist_id}","starred_url":"https://api.github.com/users/davecheney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davecheney/subscriptions","organizations_url":"https://api.github.com/users/davecheney/orgs","repos_url":"https://api.github.com/users/davecheney/repos","events_url":"https://api.github.com/users/davecheney/events{/privacy}","received_events_url":"https://api.github.com/users/davecheney/received_events","type":"User","site_admin":false},"parents":[{"sha":"3a4fafe48b56fb2451912232afc27af1262d38b7","url":"https://api.github.com/repos/pkg/errors/commits/3a4fafe48b56fb2451912232afc27af1262d38b7","html_url":"https://github.com/pkg/errors/commit/3a4fafe48b56fb2451912232afc27af1262d38b7"}]}]
+
+GET https://api.github.com/repos/pkg/errors/contents/go.mod?ref=645ef00459ed84a119197bfb8d8205042c6df63d
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:58 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE391:193661:5A6FE94A
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4807
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.059082
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/sdboyer/constext/commits?sha=836a144573533ea4da4e6929c235fd348aed1c80&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:58 GMT
+Etag: W/"7aba6f91738bab426987a4f833ecaadb"
+Last-Modified: Tue, 21 Mar 2017 16:34:24 GMT
+Link: <https://api.github.com/repositories/85373779/commits?sha=836a144573533ea4da4e6929c235fd348aed1c80&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/85373779/commits?sha=836a144573533ea4da4e6929c235fd348aed1c80&per_page=2&page=8>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BD48:15D15:BE393:19366C:5A6FE94A
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4806
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.051774
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"836a144573533ea4da4e6929c235fd348aed1c80","commit":{"author":{"name":"sam boyer","email":"tech@samboyer.org","date":"2017-03-21T16:34:24Z"},"committer":{"name":"sam boyer","email":"tech@samboyer.org","date":"2017-03-21T16:34:24Z"},"message":"Ensure goroutine dies when canceled","tree":{"sha":"9dca1740eee17cc2e30473477738ef37c6297e19","url":"https://api.github.com/repos/sdboyer/constext/git/trees/9dca1740eee17cc2e30473477738ef37c6297e19"},"url":"https://api.github.com/repos/sdboyer/constext/git/commits/836a144573533ea4da4e6929c235fd348aed1c80","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/sdboyer/constext/commits/836a144573533ea4da4e6929c235fd348aed1c80","html_url":"https://github.com/sdboyer/constext/commit/836a144573533ea4da4e6929c235fd348aed1c80","comments_url":"https://api.github.com/repos/sdboyer/constext/commits/836a144573533ea4da4e6929c235fd348aed1c80/comments","author":{"login":"sdboyer","id":21599,"avatar_url":"https://avatars0.githubusercontent.com/u/21599?v=4","gravatar_id":"","url":"https://api.github.com/users/sdboyer","html_url":"https://github.com/sdboyer","followers_url":"https://api.github.com/users/sdboyer/followers","following_url":"https://api.github.com/users/sdboyer/following{/other_user}","gists_url":"https://api.github.com/users/sdboyer/gists{/gist_id}","starred_url":"https://api.github.com/users/sdboyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sdboyer/subscriptions","organizations_url":"https://api.github.com/users/sdboyer/orgs","repos_url":"https://api.github.com/users/sdboyer/repos","events_url":"https://api.github.com/users/sdboyer/events{/privacy}","received_events_url":"https://api.github.com/users/sdboyer/received_events","type":"User","site_admin":false},"committer":{"login":"sdboyer","id":21599,"avatar_url":"https://avatars0.githubusercontent.com/u/21599?v=4","gravatar_id":"","url":"https://api.github.com/users/sdboyer","html_url":"https://github.com/sdboyer","followers_url":"https://api.github.com/users/sdboyer/followers","following_url":"https://api.github.com/users/sdboyer/following{/other_user}","gists_url":"https://api.github.com/users/sdboyer/gists{/gist_id}","starred_url":"https://api.github.com/users/sdboyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sdboyer/subscriptions","organizations_url":"https://api.github.com/users/sdboyer/orgs","repos_url":"https://api.github.com/users/sdboyer/repos","events_url":"https://api.github.com/users/sdboyer/events{/privacy}","received_events_url":"https://api.github.com/users/sdboyer/received_events","type":"User","site_admin":false},"parents":[{"sha":"600a52478fccf2cb980d99d2865c27bc0172d19c","url":"https://api.github.com/repos/sdboyer/constext/commits/600a52478fccf2cb980d99d2865c27bc0172d19c","html_url":"https://github.com/sdboyer/constext/commit/600a52478fccf2cb980d99d2865c27bc0172d19c"}]},{"sha":"600a52478fccf2cb980d99d2865c27bc0172d19c","commit":{"author":{"name":"sam boyer","email":"tech@samboyer.org","date":"2017-03-21T16:31:10Z"},"committer":{"name":"sam boyer","email":"tech@samboyer.org","date":"2017-03-21T16:31:10Z"},"message":"Tighten up init and cancel w/a sync.Once","tree":{"sha":"068090d6c8e4bb5ac2fa996c74d66771d3ccd68d","url":"https://api.github.com/repos/sdboyer/constext/git/trees/068090d6c8e4bb5ac2fa996c74d66771d3ccd68d"},"url":"https://api.github.com/repos/sdboyer/constext/git/commits/600a52478fccf2cb980d99d2865c27bc0172d19c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/sdboyer/constext/commits/600a52478fccf2cb980d99d2865c27bc0172d19c","html_url":"https://github.com/sdboyer/constext/commit/600a52478fccf2cb980d99d2865c27bc0172d19c","comments_url":"https://api.github.com/repos/sdboyer/constext/commits/600a52478fccf2cb980d99d2865c27bc0172d19c/comments","author":{"login":"sdboyer","id":21599,"avatar_url":"https://avatars0.githubusercontent.com/u/21599?v=4","gravatar_id":"","url":"https://api.github.com/users/sdboyer","html_url":"https://github.com/sdboyer","followers_url":"https://api.github.com/users/sdboyer/followers","following_url":"https://api.github.com/users/sdboyer/following{/other_user}","gists_url":"https://api.github.com/users/sdboyer/gists{/gist_id}","starred_url":"https://api.github.com/users/sdboyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sdboyer/subscriptions","organizations_url":"https://api.github.com/users/sdboyer/orgs","repos_url":"https://api.github.com/users/sdboyer/repos","events_url":"https://api.github.com/users/sdboyer/events{/privacy}","received_events_url":"https://api.github.com/users/sdboyer/received_events","type":"User","site_admin":false},"committer":{"login":"sdboyer","id":21599,"avatar_url":"https://avatars0.githubusercontent.com/u/21599?v=4","gravatar_id":"","url":"https://api.github.com/users/sdboyer","html_url":"https://github.com/sdboyer","followers_url":"https://api.github.com/users/sdboyer/followers","following_url":"https://api.github.com/users/sdboyer/following{/other_user}","gists_url":"https://api.github.com/users/sdboyer/gists{/gist_id}","starred_url":"https://api.github.com/users/sdboyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sdboyer/subscriptions","organizations_url":"https://api.github.com/users/sdboyer/orgs","repos_url":"https://api.github.com/users/sdboyer/repos","events_url":"https://api.github.com/users/sdboyer/events{/privacy}","received_events_url":"https://api.github.com/users/sdboyer/received_events","type":"User","site_admin":false},"parents":[{"sha":"ec4a18cfea3be6f1e813bb946497754cef2ef9da","url":"https://api.github.com/repos/sdboyer/constext/commits/ec4a18cfea3be6f1e813bb946497754cef2ef9da","html_url":"https://github.com/sdboyer/constext/commit/ec4a18cfea3be6f1e813bb946497754cef2ef9da"}]}]
+
+GET https://golang.org/x/net?go-get=1
+200 OK
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: private
+Content-Type: text/html; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:58 GMT
+Server: Google Frontend
+Vary: Accept-Encoding
+X-Cloud-Trace-Context: fd9216519bb8006b586b7fdda695bcd0
+
+<!DOCTYPE html>
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<meta name="go-import" content="golang.org/x/net git https://go.googlesource.com/net">
+<meta name="go-source" content="golang.org/x/net https://github.com/golang/net/ https://github.com/golang/net/tree/master{/dir} https://github.com/golang/net/blob/master{/dir}/{file}#L{line}">
+<meta http-equiv="refresh" content="0; url=https://godoc.org/golang.org/x/net">
+</head>
+<body>
+Nothing to see here; <a href="https://godoc.org/golang.org/x/net">move along</a>.
+</body>
+</html>
+
+
+GET https://go.googlesource.com/net/+show/66aacef3dd8a676686c7ae3716979581e8b03c47?format=TEXT
+200 OK
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: private, max-age=7200, stale-while-revalidate=604800
+Content-Disposition: attachment
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:59 GMT
+Expires: Tue, 30 Jan 2018 03:40:59 GMT
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+Vary: Accept-Encoding
+X-Content-Type-Options: nosniff
+X-Frame-Options: SAMEORIGIN
+X-Gitiles-Object-Type: commit
+X-Xss-Protection: 1; mode=block
+
+dHJlZSAyMzg3YTg2MzY5YjU2ZDUzZGU1NGViNzFkMjRhZTZkZDY3YzNmNDM1CnBhcmVudCA1N2VmYzljM2Q5ZjkxZmIzMjc3ZjhkYTFjZmYzNzA1MzljNGQzZGM1CmF1dGhvciBNaWtlIEFwcGxlYnkgPG1pa2VAYXBwLmxlYnkub3JnPiAxNDczODExOTE0IC0wNTAwCmNvbW1pdHRlciBUb20gQmVyZ2FuIDx0b21iZXJnYW5AZ29vZ2xlLmNvbT4gMTUwMzk2MjI3MiArMDAwMAoKaHR0cDI6IFJlc3BlY3QgcGVlcidzIFNFVFRJTkdTX01BWF9IRUFERVJfTElTVF9TSVpFIGluIENsaWVudENvbm4KCkFkZCBhIG5ldyBwZWVyTWF4SGVhZGVyTGlzdFNpemUgbWVtYmVyIHRvIENsaWVudENvbm4gd2hpY2ggcmVjb3JkcyB0aGUKU0VUVElOR1NfTUFYX0hFQURFUl9MSVNUX1NJWkUgcmVxdWVzdGVkIGJ5IHRoZSBjbGllbnQncyBwZWVyLCBhbmQKcmVzcGVjdCB0aGlzIGxpbWl0IGluICgqQ2xpZW50Q29ubikgZW5jb2RlSGVhZGVycyAvIGVuY29kZVRyYWlsZXJzLgoKQXR0ZW1wdGluZyB0byBzZW5kIG1vcmUgdGhhbiBwZWVyTWF4SGVhZGVyTGlzdFNpemUgYnl0ZXMgb2YgaGVhZGVycyBvcgp0cmFpbGVycyB3aWxsIHJlc3VsdCBpbiBSb3VuZFRyaXAgcmV0dXJuaW5nIGVyclJlcXVlc3RIZWFkZXJMaXN0U2l6ZS4KClVwZGF0ZXMgZ29sYW5nL2dvIzEzOTU5CgpDaGFuZ2UtSWQ6IEljNzA3MTc5NzgyYWNkZjhhZTU0MzQyOWVhMWFmN2Y0ZjMwZTY3ZTU5ClJldmlld2VkLW9uOiBodHRwczovL2dvLXJldmlldy5nb29nbGVzb3VyY2UuY29tLzI5MjQzClJ1bi1UcnlCb3Q6IFRvbSBCZXJnYW4gPHRvbWJlcmdhbkBnb29nbGUuY29tPgpUcnlCb3QtUmVzdWx0OiBHb2JvdCBHb2JvdCA8Z29ib3RAZ29sYW5nLm9yZz4KUmV2aWV3ZWQtYnk6IFRvbSBCZXJnYW4gPHRvbWJlcmdhbkBnb29nbGUuY29tPgo=
+
+GET https://golang.org/x/sync?go-get=1
+200 OK
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: private
+Content-Type: text/html; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:59 GMT
+Server: Google Frontend
+Vary: Accept-Encoding
+X-Cloud-Trace-Context: 931f3c3ff7ace150ef683fb7288a7bd0
+
+<!DOCTYPE html>
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<meta name="go-import" content="golang.org/x/sync git https://go.googlesource.com/sync">
+<meta name="go-source" content="golang.org/x/sync https://github.com/golang/sync/ https://github.com/golang/sync/tree/master{/dir} https://github.com/golang/sync/blob/master{/dir}/{file}#L{line}">
+<meta http-equiv="refresh" content="0; url=https://godoc.org/golang.org/x/sync">
+</head>
+<body>
+Nothing to see here; <a href="https://godoc.org/golang.org/x/sync">move along</a>.
+</body>
+</html>
+
+
+GET https://go.googlesource.com/sync/+show/f52d1811a62927559de87708c8913c1650ce4f26?format=TEXT
+200 OK
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: private, max-age=7200, stale-while-revalidate=604800
+Content-Disposition: attachment
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:59 GMT
+Expires: Tue, 30 Jan 2018 03:40:59 GMT
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+Vary: Accept-Encoding
+X-Content-Type-Options: nosniff
+X-Frame-Options: SAMEORIGIN
+X-Gitiles-Object-Type: commit
+X-Xss-Protection: 1; mode=block
+
+dHJlZSA4MDA0YWE1MWUyNjIwM2NmZGM1ZDI4NDdjYWY0YjBjNGM2NmMzNDMxCnBhcmVudCA1N2FmNzM2NjI1YWFhNjlkZmEwOTk0MzJiYjY3ZTA4MDhlZWYzYmNjCmF1dGhvciBKb25hdGhhbiBBbXN0ZXJkYW0gPGpiYUBnb29nbGUuY29tPiAxNDk1MDUyNzI2IC0wNDAwCmNvbW1pdHRlciBCcmFkIEZpdHpwYXRyaWNrIDxicmFkZml0ekBnb2xhbmcub3JnPiAxNDk1MDU1NTUyICswMDAwCgpzZW1hcGhvcmU6IG1ha2UgdGVzdCB0aW1lIGluZGVwZW5kZW50IG9mIEdPTUFYUFJPQ1MKClRlc3RXZWlnaHRlZCdzIHJ1bnRpbWUgd2FzIHJvdWdobHkgcHJvcG9ydGlvbmFsIHRvIHRoZSBudW1iZXIgb2YgQ1BVcywKc28gaXQgcmFuIGEgbG9uZyB0aW1lIG9uIFBQQ3MgKDE2MCBDUFVzKS4KCk1ha2UgdGhlIG51bWJlciBvZiBsb29wcyBpbiB0aGUgdGVzdCBhbiBpbnZlcnNlIGZ1bmN0aW9uIG9mIHRoZSBudW1iZXIKb2YgQ1BVcywgdG8ga2VlcCB0aGUgdGVzdCBzaG9ydC4KCkNoYW5nZS1JZDogSWQ4NTNkYmI1ZTVlMmY5ZmI5NTk2NmQxOWVmMGM1MTFlM2Y4MDgwZTAKUmV2aWV3ZWQtb246IGh0dHBzOi8vZ28tcmV2aWV3Lmdvb2dsZXNvdXJjZS5jb20vNDM2MzIKUmV2aWV3ZWQtYnk6IEJyeWFuIE1pbGxzIDxiY21pbGxzQGdvb2dsZS5jb20+ClJ1bi1UcnlCb3Q6IEJyeWFuIE1pbGxzIDxiY21pbGxzQGdvb2dsZS5jb20+ClRyeUJvdC1SZXN1bHQ6IEdvYm90IEdvYm90IDxnb2JvdEBnb2xhbmcub3JnPgo=
+
+GET https://golang.org/x/sys?go-get=1
+200 OK
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: private
+Content-Type: text/html; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:59 GMT
+Server: Google Frontend
+Vary: Accept-Encoding
+X-Cloud-Trace-Context: 012986abbd4f67e44104a3c1bebc3191
+
+<!DOCTYPE html>
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<meta name="go-import" content="golang.org/x/sys git https://go.googlesource.com/sys">
+<meta name="go-source" content="golang.org/x/sys https://github.com/golang/sys/ https://github.com/golang/sys/tree/master{/dir} https://github.com/golang/sys/blob/master{/dir}/{file}#L{line}">
+<meta http-equiv="refresh" content="0; url=https://godoc.org/golang.org/x/sys">
+</head>
+<body>
+Nothing to see here; <a href="https://godoc.org/golang.org/x/sys">move along</a>.
+</body>
+</html>
+
+
+GET https://go.googlesource.com/sys/+show/bb24a47a89eac6c1227fbcb2ae37a8b9ed323366?format=TEXT
+200 OK
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: private, max-age=7200, stale-while-revalidate=604800
+Content-Disposition: attachment
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 03:40:59 GMT
+Expires: Tue, 30 Jan 2018 03:40:59 GMT
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+Vary: Accept-Encoding
+X-Content-Type-Options: nosniff
+X-Frame-Options: SAMEORIGIN
+X-Gitiles-Object-Type: commit
+X-Xss-Protection: 1; mode=block
+
+dHJlZSA3M2EyNDQ0MjFiNDBmYzE3ZDg5M2JhN2ZmMTQ0YmU5MDI4ODAzM2Y1CnBhcmVudCBhYjllMzY0ZWZkOGI1MjgwMGZmN2VlNDhhOWZmYmE0ZTBlZDc4ZGZiCmF1dGhvciBMdWNhIEJydW5vIDxsdWNhLmJydW5vQGNvcmVvcy5jb20+IDE1MDQwODMwNjIgKzAwMDAKY29tbWl0dGVyIElhbiBMYW5jZSBUYXlsb3IgPGlhbnRAZ29sYW5nLm9yZz4gMTUwNDEwMDUyMiArMDAwMAoKdW5peDogZHJvcCBkdW1teSBieXRlIGZvciBvb2IgaW4gdW5peGdyYW0gU2VuZG1zZ04KClRoaXMgY29tbWl0IHJlbGF4ZXMgU2VuZG1zZ04gYmVoYXZpb3Igb2YgaW50cm9kdWNpbmcgYSBkdW1teSAxLWJ5dGUKcGF5bG9hZCB3aGVuIHNlbmRpbmcgYW5jaWxsYXJ5LW9ubHkgbWVzc2FnZXMuClRoZSBmYWtlIHBheWxvYWQgaXMgbm90IG5lZWRlZCBmb3IgU09DS19ER1JBTSB0eXBlIHNvY2tldHMsIGFuZCBhY3R1YWxseQpicmVha3MgaW50ZXJvcGVyYWJpbGl0eSB3aXRoIG90aGVyIGZkLXBhc3Npbmcgc29mdHdhcmUgKGpvdXJuYWxkIGlzIG9uZQprbm93biBleGFtcGxlKS4gVGhpcyBpbnRyb2R1Y2VzIGFuIGFkZGl0aW9uYWwgY2hlY2sgdG8gYXZvaWQgaW5qZWN0aW5nCmR1bW15IHBheWxvYWQgaW4gc3VjaCBjYXNlLgoKQmFja3BvcnQgb2YgaHR0cHM6Ly9nby5nb29nbGVzb3VyY2UuY29tL2dvLysvOTNkYTBiNmU2NmYyNGM0YzMwN2UwZGYzN2NlYjEwMmEzMzMwNjE3NApGdWxsIHJlZmVyZW5jZSBhdCBodHRwczovZ29sYW5nLm9yZy9pc3N1ZS82NDc2I2lzc3VlLTUxMjg1MjQzCgpDaGFuZ2UtSWQ6IEk3Y2YwMGExYzdjZGU3NWZlNjJlMDBiOThjY2JhNmFjODQ2OWIwNDkzClJldmlld2VkLW9uOiBodHRwczovL2dvLXJldmlldy5nb29nbGVzb3VyY2UuY29tLzYwMTkwClJldmlld2VkLWJ5OiBJYW4gTGFuY2UgVGF5bG9yIDxpYW50QGdvbGFuZy5vcmc+ClJ1bi1UcnlCb3Q6IElhbiBMYW5jZSBUYXlsb3IgPGlhbnRAZ29sYW5nLm9yZz4KVHJ5Qm90LVJlc3VsdDogR29ib3QgR29ib3QgPGdvYm90QGdvbGFuZy5vcmc+Cg==
+
+GET https://api.github.com/repos/docker/distribution/commits?sha=85de3967aa93&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:34 GMT
+Etag: W/"52d42ed83389842d6a3b15a6f5f60ae0"
+Last-Modified: Fri, 10 Apr 2015 20:54:53 GMT
+Link: <https://api.github.com/repositories/28366058/commits?sha=85de3967aa93&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/28366058/commits?sha=85de3967aa93&per_page=2&page=326>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148AC9:274D71:5A6FEBC5
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4754
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.050694
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"85de3967aa930a7f13c671b5b5f2e6936d80596f","commit":{"author":{"name":"Stephen J Day","email":"stephen.day@docker.com","date":"2015-04-10T20:54:53Z"},"committer":{"name":"Stephen J Day","email":"stephen.day@docker.com","date":"2015-04-10T20:54:53Z"},"message":"Update logrus package for configurable TimestampFormat\n\nSigned-off-by: Stephen J Day <stephen.day@docker.com>","tree":{"sha":"7e68f3508efcbb1a14ccc90fbf7e230b5cf0f0cf","url":"https://api.github.com/repos/docker/distribution/git/trees/7e68f3508efcbb1a14ccc90fbf7e230b5cf0f0cf"},"url":"https://api.github.com/repos/docker/distribution/git/commits/85de3967aa930a7f13c671b5b5f2e6936d80596f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/docker/distribution/commits/85de3967aa930a7f13c671b5b5f2e6936d80596f","html_url":"https://github.com/docker/distribution/commit/85de3967aa930a7f13c671b5b5f2e6936d80596f","comments_url":"https://api.github.com/repos/docker/distribution/commits/85de3967aa930a7f13c671b5b5f2e6936d80596f/comments","author":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"committer":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"parents":[{"sha":"18d099be742290ccedf62998c95400f767e6b1aa","url":"https://api.github.com/repos/docker/distribution/commits/18d099be742290ccedf62998c95400f767e6b1aa","html_url":"https://github.com/docker/distribution/commit/18d099be742290ccedf62998c95400f767e6b1aa"}]},{"sha":"18d099be742290ccedf62998c95400f767e6b1aa","commit":{"author":{"name":"Stephen Day","email":"stevvooe@users.noreply.github.com","date":"2015-04-10T19:58:01Z"},"committer":{"name":"Stephen Day","email":"stevvooe@users.noreply.github.com","date":"2015-04-10T19:58:01Z"},"message":"Merge pull request #307 from dmcgowan/namespace-interface\n\nRename top level registry interface to namespace","tree":{"sha":"af3ce1108cf04560d3cf9a37e6e308f216423c37","url":"https://api.github.com/repos/docker/distribution/git/trees/af3ce1108cf04560d3cf9a37e6e308f216423c37"},"url":"https://api.github.com/repos/docker/distribution/git/commits/18d099be742290ccedf62998c95400f767e6b1aa","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/docker/distribution/commits/18d099be742290ccedf62998c95400f767e6b1aa","html_url":"https://github.com/docker/distribution/commit/18d099be742290ccedf62998c95400f767e6b1aa","comments_url":"https://api.github.com/repos/docker/distribution/commits/18d099be742290ccedf62998c95400f767e6b1aa/comments","author":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"committer":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"parents":[{"sha":"5dd885b3117ad6db150230a84bd5d1690ff2a39a","url":"https://api.github.com/repos/docker/distribution/commits/5dd885b3117ad6db150230a84bd5d1690ff2a39a","html_url":"https://github.com/docker/distribution/commit/5dd885b3117ad6db150230a84bd5d1690ff2a39a"},{"sha":"142d62798e382b41963530a8e2761a9a4ce288f1","url":"https://api.github.com/repos/docker/distribution/commits/142d62798e382b41963530a8e2761a9a4ce288f1","html_url":"https://github.com/docker/distribution/commit/142d62798e382b41963530a8e2761a9a4ce288f1"}]}]
+
+GET https://api.github.com/repos/docker/distribution/commits?sha=85de3967aa930a7f13c671b5b5f2e6936d80596f&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:34 GMT
+Etag: W/"52d42ed83389842d6a3b15a6f5f60ae0"
+Last-Modified: Fri, 10 Apr 2015 20:54:53 GMT
+Link: <https://api.github.com/repositories/28366058/commits?sha=85de3967aa930a7f13c671b5b5f2e6936d80596f&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/28366058/commits?sha=85de3967aa930a7f13c671b5b5f2e6936d80596f&per_page=2&page=326>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148AD0:274D7D:5A6FEBC6
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4753
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.042943
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"85de3967aa930a7f13c671b5b5f2e6936d80596f","commit":{"author":{"name":"Stephen J Day","email":"stephen.day@docker.com","date":"2015-04-10T20:54:53Z"},"committer":{"name":"Stephen J Day","email":"stephen.day@docker.com","date":"2015-04-10T20:54:53Z"},"message":"Update logrus package for configurable TimestampFormat\n\nSigned-off-by: Stephen J Day <stephen.day@docker.com>","tree":{"sha":"7e68f3508efcbb1a14ccc90fbf7e230b5cf0f0cf","url":"https://api.github.com/repos/docker/distribution/git/trees/7e68f3508efcbb1a14ccc90fbf7e230b5cf0f0cf"},"url":"https://api.github.com/repos/docker/distribution/git/commits/85de3967aa930a7f13c671b5b5f2e6936d80596f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/docker/distribution/commits/85de3967aa930a7f13c671b5b5f2e6936d80596f","html_url":"https://github.com/docker/distribution/commit/85de3967aa930a7f13c671b5b5f2e6936d80596f","comments_url":"https://api.github.com/repos/docker/distribution/commits/85de3967aa930a7f13c671b5b5f2e6936d80596f/comments","author":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"committer":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"parents":[{"sha":"18d099be742290ccedf62998c95400f767e6b1aa","url":"https://api.github.com/repos/docker/distribution/commits/18d099be742290ccedf62998c95400f767e6b1aa","html_url":"https://github.com/docker/distribution/commit/18d099be742290ccedf62998c95400f767e6b1aa"}]},{"sha":"18d099be742290ccedf62998c95400f767e6b1aa","commit":{"author":{"name":"Stephen Day","email":"stevvooe@users.noreply.github.com","date":"2015-04-10T19:58:01Z"},"committer":{"name":"Stephen Day","email":"stevvooe@users.noreply.github.com","date":"2015-04-10T19:58:01Z"},"message":"Merge pull request #307 from dmcgowan/namespace-interface\n\nRename top level registry interface to namespace","tree":{"sha":"af3ce1108cf04560d3cf9a37e6e308f216423c37","url":"https://api.github.com/repos/docker/distribution/git/trees/af3ce1108cf04560d3cf9a37e6e308f216423c37"},"url":"https://api.github.com/repos/docker/distribution/git/commits/18d099be742290ccedf62998c95400f767e6b1aa","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/docker/distribution/commits/18d099be742290ccedf62998c95400f767e6b1aa","html_url":"https://github.com/docker/distribution/commit/18d099be742290ccedf62998c95400f767e6b1aa","comments_url":"https://api.github.com/repos/docker/distribution/commits/18d099be742290ccedf62998c95400f767e6b1aa/comments","author":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"committer":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"parents":[{"sha":"5dd885b3117ad6db150230a84bd5d1690ff2a39a","url":"https://api.github.com/repos/docker/distribution/commits/5dd885b3117ad6db150230a84bd5d1690ff2a39a","html_url":"https://github.com/docker/distribution/commit/5dd885b3117ad6db150230a84bd5d1690ff2a39a"},{"sha":"142d62798e382b41963530a8e2761a9a4ce288f1","url":"https://api.github.com/repos/docker/distribution/commits/142d62798e382b41963530a8e2761a9a4ce288f1","html_url":"https://github.com/docker/distribution/commit/142d62798e382b41963530a8e2761a9a4ce288f1"}]}]
+
+GET https://api.github.com/repos/docker/distribution/contents/go.mod?ref=85de3967aa930a7f13c671b5b5f2e6936d80596f
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:34 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148AD7:274D87:5A6FEBC6
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4752
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.044491
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/docker/distribution/contents/Gopkg.lock?ref=85de3967aa930a7f13c671b5b5f2e6936d80596f
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:34 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148ADF:274D95:5A6FEBC6
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4751
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.055853
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/docker/distribution/contents/Godeps%2FGodeps.json?ref=85de3967aa930a7f13c671b5b5f2e6936d80596f
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:34 GMT
+Etag: W/"dc643683d3fb512d0b67a4b23da5c81518665dd2"
+Last-Modified: Fri, 10 Apr 2015 20:54:53 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148AE8:274DA7:5A6FEBC6
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4750
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.043578
+X-Xss-Protection: 1; mode=block
+
+{"name":"Godeps.json","path":"Godeps/Godeps.json","sha":"dc643683d3fb512d0b67a4b23da5c81518665dd2","size":3219,"url":"https://api.github.com/repos/docker/distribution/contents/Godeps/Godeps.json?ref=85de3967aa930a7f13c671b5b5f2e6936d80596f","html_url":"https://github.com/docker/distribution/blob/85de3967aa930a7f13c671b5b5f2e6936d80596f/Godeps/Godeps.json","git_url":"https://api.github.com/repos/docker/distribution/git/blobs/dc643683d3fb512d0b67a4b23da5c81518665dd2","download_url":"https://raw.githubusercontent.com/docker/distribution/85de3967aa930a7f13c671b5b5f2e6936d80596f/Godeps/Godeps.json","type":"file","content":"ewoJIkltcG9ydFBhdGgiOiAiZ2l0aHViLmNvbS9kb2NrZXIvZGlzdHJpYnV0\naW9uIiwKCSJHb1ZlcnNpb24iOiAiZ28xLjQuMiIsCgkiUGFja2FnZXMiOiBb\nCgkJIi4vLi4uIgoJXSwKCSJEZXBzIjogWwoJCXsKCQkJIkltcG9ydFBhdGgi\nOiAiY29kZS5nb29nbGUuY29tL3AvZ28tdXVpZC91dWlkIiwKCQkJIkNvbW1l\nbnQiOiAibnVsbC0xNSIsCgkJCSJSZXYiOiAiMzViYzQyMDM3MzUwZjAwNzhl\nM2M5NzRjNmVhNjkwZjE5MjY2MDNhYiIKCQl9LAoJCXsKCQkJIkltcG9ydFBh\ndGgiOiAiZ2l0aHViLmNvbS9BZFJvbGwvZ29hbXovYXdzIiwKCQkJIlJldiI6\nICJkMzY2NGI3NmQ5MDUwOGNkZGE1YTZjOTIwNDJmMjZlYWI1ZGIzMTAzIgoJ\nCX0sCgkJewoJCQkiSW1wb3J0UGF0aCI6ICJnaXRodWIuY29tL0FkUm9sbC9n\nb2Ftei9jbG91ZGZyb250IiwKCQkJIlJldiI6ICJkMzY2NGI3NmQ5MDUwOGNk\nZGE1YTZjOTIwNDJmMjZlYWI1ZGIzMTAzIgoJCX0sCgkJewoJCQkiSW1wb3J0\nUGF0aCI6ICJnaXRodWIuY29tL0FkUm9sbC9nb2Ftei9zMyIsCgkJCSJSZXYi\nOiAiZDM2NjRiNzZkOTA1MDhjZGRhNWE2YzkyMDQyZjI2ZWFiNWRiMzEwMyIK\nCQl9LAoJCXsKCQkJIkltcG9ydFBhdGgiOiAiZ2l0aHViLmNvbS9NU09wZW5U\nZWNoL2F6dXJlLXNkay1mb3ItZ28vc3RvcmFnZSIsCgkJCSJDb21tZW50Ijog\nInYxLjItNDMtZ2Q5MDc1M2IiLAoJCQkiUmV2IjogImQ5MDc1M2JjYWQyZWQ3\nODJmY2VhZDczOTJkMWU4MzFkZjI5YWEyYmIiCgkJfSwKCQl7CgkJCSJJbXBv\ncnRQYXRoIjogImdpdGh1Yi5jb20vU2lydXBzZW4vbG9ncnVzIiwKCQkJIkNv\nbW1lbnQiOiAidjAuNy4zIiwKCQkJIlJldiI6ICI1NWViMTFkMjFkMmEzMWEz\nY2M5MzgzODI0MWQwNDgwMGY1MmU4MjNkIgoJCX0sCgkJewoJCQkiSW1wb3J0\nUGF0aCI6ICJnaXRodWIuY29tL2J1Z3NuYWcvYnVnc25hZy1nbyIsCgkJCSJD\nb21tZW50IjogInYxLjAuMi01LWdiMWQxNTMwIiwKCQkJIlJldiI6ICJiMWQx\nNTMwMjFmY2Q5MGNhM2YwODBkYjM2YmVjOTZkYzY5MGZiMjc0IgoJCX0sCgkJ\newoJCQkiSW1wb3J0UGF0aCI6ICJnaXRodWIuY29tL2J1Z3NuYWcvb3NleHQi\nLAoJCQkiUmV2IjogIjBkZDNmOTE4YjIxYmVjOTVhY2U5ZGM4NmM3ZTcwMjY2\nY2ZjNWM3MDIiCgkJfSwKCQl7CgkJCSJJbXBvcnRQYXRoIjogImdpdGh1Yi5j\nb20vYnVnc25hZy9wYW5pY3dyYXAiLAoJCQkiUmV2IjogImU1Zjk4NTQ4NjVi\nOTc3OGE0NTE2OWZjMjQ5ZTk5ZTMzOGQ0ZDZmMjciCgkJfSwKCQl7CgkJCSJJ\nbXBvcnRQYXRoIjogImdpdGh1Yi5jb20vY29kZWdhbmdzdGEvY2xpIiwKCQkJ\nIkNvbW1lbnQiOiAiMS4yLjAtNjYtZzYwODZkNzkiLAoJCQkiUmV2IjogIjYw\nODZkNzkyN2VjMzUzMTU5NjRkOWZlYTQ2ZGY2YzA0ZTZkNjk3YzEiCgkJfSwK\nCQl7CgkJCSJJbXBvcnRQYXRoIjogImdpdGh1Yi5jb20vZG9ja2VyL2RvY2tl\nci9wa2cvdGFyc3VtIiwKCQkJIkNvbW1lbnQiOiAidjEuNC4xLTg2My1nMTY1\nZWE1YyIsCgkJCSJSZXYiOiAiMTY1ZWE1YzE1OGNmZjNmYzQwZDQ3NmZmZTIz\nM2E1Y2NjMDNlN2Q2MSIKCQl9LAoJCXsKCQkJIkltcG9ydFBhdGgiOiAiZ2l0\naHViLmNvbS9kb2NrZXIvZG9ja2VyL3ZlbmRvci9zcmMvY29kZS5nb29nbGUu\nY29tL3AvZ28vc3JjL3BrZy9hcmNoaXZlL3RhciIsCgkJCSJDb21tZW50Ijog\nInYxLjQuMS04NjMtZzE2NWVhNWMiLAoJCQkiUmV2IjogIjE2NWVhNWMxNThj\nZmYzZmM0MGQ0NzZmZmUyMzNhNWNjYzAzZTdkNjEiCgkJfSwKCQl7CgkJCSJJ\nbXBvcnRQYXRoIjogImdpdGh1Yi5jb20vZG9ja2VyL2xpYnRydXN0IiwKCQkJ\nIlJldiI6ICJmYTU2NzA0NmQ5YjE0ZjZhYTc4ODg4MmE5NTBkNjk2NTFkMjMw\nYjIxIgoJCX0sCgkJewoJCQkiSW1wb3J0UGF0aCI6ICJnaXRodWIuY29tL2dh\ncnlidXJkL3JlZGlnby9pbnRlcm5hbCIsCgkJCSJSZXYiOiAiNTM1MTM4ZDdi\nY2Q3MTdkNjUzMWM3MDFlZjU5MzNkOThiMTg2NjI1NyIKCQl9LAoJCXsKCQkJ\nIkltcG9ydFBhdGgiOiAiZ2l0aHViLmNvbS9nYXJ5YnVyZC9yZWRpZ28vcmVk\naXMiLAoJCQkiUmV2IjogIjUzNTEzOGQ3YmNkNzE3ZDY1MzFjNzAxZWY1OTMz\nZDk4YjE4NjYyNTciCgkJfSwKCQl7CgkJCSJJbXBvcnRQYXRoIjogImdpdGh1\nYi5jb20vZ29yaWxsYS9jb250ZXh0IiwKCQkJIlJldiI6ICIxNGY1NTBmNTFh\nZjUyMTgwYzJlZWZlZDE1ZTVmZDE4ZDYzYzBhNjRhIgoJCX0sCgkJewoJCQki\nSW1wb3J0UGF0aCI6ICJnaXRodWIuY29tL2dvcmlsbGEvaGFuZGxlcnMiLAoJ\nCQkiUmV2IjogIjBlODRiN2Q4MTBjMTZhZWQ0MzIyMTdlMzMwMjA2YmUxNTZi\nYWZhZTAiCgkJfSwKCQl7CgkJCSJJbXBvcnRQYXRoIjogImdpdGh1Yi5jb20v\nZ29yaWxsYS9tdXgiLAoJCQkiUmV2IjogImU0NDRlNjljYmQyZTJlM2UwNzQ5\nYTJmM2M3MTdjZWM0OTE1NTJiYmYiCgkJfSwKCQl7CgkJCSJJbXBvcnRQYXRo\nIjogImdpdGh1Yi5jb20vamxoYXduL2dvLWNyeXB0byIsCgkJCSJSZXYiOiAi\nY2Q3MzhkZGUyMGYwYjM3ODI1MTYxODFiMDg2NmM5YmI5ZGI0NzQwMSIKCQl9\nLAoJCXsKCQkJIkltcG9ydFBhdGgiOiAiZ2l0aHViLmNvbS95dmFzaXlhcm92\nL2dvLW1ldHJpY3MiLAoJCQkiUmV2IjogIjU3YmNjZDFjY2Q0M2Y5NGJiMTdm\nZGQ4YmYzMDA3MDU5YjgwMmY4NWUiCgkJfSwKCQl7CgkJCSJJbXBvcnRQYXRo\nIjogImdpdGh1Yi5jb20veXZhc2l5YXJvdi9nb3JlbGljIiwKCQkJIkNvbW1l\nbnQiOiAidjAuMC42LTgtZ2E5YmJhNWIiLAoJCQkiUmV2IjogImE5YmJhNWI5\nYWI1MDhhMDg2ZjlhMTJiOGM1MWZhYjY4NDc4ZTIxMjgiCgkJfSwKCQl7CgkJ\nCSJJbXBvcnRQYXRoIjogImdpdGh1Yi5jb20veXZhc2l5YXJvdi9uZXdyZWxp\nY19wbGF0Zm9ybV9nbyIsCgkJCSJSZXYiOiAiYjIxZmRiZDQzNzBmMzcxN2Yz\nYmJkMmJmNDFjMjIzYmMyNzMwNjhlNiIKCQl9LAoJCXsKCQkJIkltcG9ydFBh\ndGgiOiAiZ29sYW5nLm9yZy94L25ldC9jb250ZXh0IiwKCQkJIlJldiI6ICIx\nZGZlNzkxNWRlYWYzZjgwYjk2MmMxNjNiOTE4ODY4ZDhhNmQ4OTc0IgoJCX0s\nCgkJewoJCQkiSW1wb3J0UGF0aCI6ICJnb3BrZy5pbi9jaGVjay52MSIsCgkJ\nCSJSZXYiOiAiNjQxMzE1NDNlNzg5NmQ1YmNjNmJkNWE3NjI4N2ViNzVlYTk2\nYzY3MyIKCQl9LAoJCXsKCQkJIkltcG9ydFBhdGgiOiAiZ29wa2cuaW4veWFt\nbC52MiIsCgkJCSJSZXYiOiAiYmVmNTNlZmQwYzc2ZTQ5ZTZkZTU1ZWFkMDUx\nZjg4NmJlYTdlOTQyMCIKCQl9CgldCn0K\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/docker/distribution/contents/Godeps/Godeps.json?ref=85de3967aa930a7f13c671b5b5f2e6936d80596f","git":"https://api.github.com/repos/docker/distribution/git/blobs/dc643683d3fb512d0b67a4b23da5c81518665dd2","html":"https://github.com/docker/distribution/blob/85de3967aa930a7f13c671b5b5f2e6936d80596f/Godeps/Godeps.json"}}
+
+GET https://raw.githubusercontent.com/docker/distribution/85de3967aa930a7f13c671b5b5f2e6936d80596f/Godeps/Godeps.json
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:34 GMT
+Etag: "dc643683d3fb512d0b67a4b23da5c81518665dd2"
+Expires: Tue, 30 Jan 2018 03:56:34 GMT
+Source-Age: 192
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: HIT
+X-Cache-Hits: 1
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 8ec65132454817b167f34c25878f2cf37671df4b
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: FB8A:165A:6A053:6F26E:5A6FEAFC
+X-Served-By: cache-bos8230-BOS
+X-Timer: S1517284295.576992,VS0,VE0
+X-Xss-Protection: 1; mode=block
+
+{
+	"ImportPath": "github.com/docker/distribution",
+	"GoVersion": "go1.4.2",
+	"Packages": [
+		"./..."
+	],
+	"Deps": [
+		{
+			"ImportPath": "code.google.com/p/go-uuid/uuid",
+			"Comment": "null-15",
+			"Rev": "35bc42037350f0078e3c974c6ea690f1926603ab"
+		},
+		{
+			"ImportPath": "github.com/AdRoll/goamz/aws",
+			"Rev": "d3664b76d90508cdda5a6c92042f26eab5db3103"
+		},
+		{
+			"ImportPath": "github.com/AdRoll/goamz/cloudfront",
+			"Rev": "d3664b76d90508cdda5a6c92042f26eab5db3103"
+		},
+		{
+			"ImportPath": "github.com/AdRoll/goamz/s3",
+			"Rev": "d3664b76d90508cdda5a6c92042f26eab5db3103"
+		},
+		{
+			"ImportPath": "github.com/MSOpenTech/azure-sdk-for-go/storage",
+			"Comment": "v1.2-43-gd90753b",
+			"Rev": "d90753bcad2ed782fcead7392d1e831df29aa2bb"
+		},
+		{
+			"ImportPath": "github.com/Sirupsen/logrus",
+			"Comment": "v0.7.3",
+			"Rev": "55eb11d21d2a31a3cc93838241d04800f52e823d"
+		},
+		{
+			"ImportPath": "github.com/bugsnag/bugsnag-go",
+			"Comment": "v1.0.2-5-gb1d1530",
+			"Rev": "b1d153021fcd90ca3f080db36bec96dc690fb274"
+		},
+		{
+			"ImportPath": "github.com/bugsnag/osext",
+			"Rev": "0dd3f918b21bec95ace9dc86c7e70266cfc5c702"
+		},
+		{
+			"ImportPath": "github.com/bugsnag/panicwrap",
+			"Rev": "e5f9854865b9778a45169fc249e99e338d4d6f27"
+		},
+		{
+			"ImportPath": "github.com/codegangsta/cli",
+			"Comment": "1.2.0-66-g6086d79",
+			"Rev": "6086d7927ec35315964d9fea46df6c04e6d697c1"
+		},
+		{
+			"ImportPath": "github.com/docker/docker/pkg/tarsum",
+			"Comment": "v1.4.1-863-g165ea5c",
+			"Rev": "165ea5c158cff3fc40d476ffe233a5ccc03e7d61"
+		},
+		{
+			"ImportPath": "github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar",
+			"Comment": "v1.4.1-863-g165ea5c",
+			"Rev": "165ea5c158cff3fc40d476ffe233a5ccc03e7d61"
+		},
+		{
+			"ImportPath": "github.com/docker/libtrust",
+			"Rev": "fa567046d9b14f6aa788882a950d69651d230b21"
+		},
+		{
+			"ImportPath": "github.com/garyburd/redigo/internal",
+			"Rev": "535138d7bcd717d6531c701ef5933d98b1866257"
+		},
+		{
+			"ImportPath": "github.com/garyburd/redigo/redis",
+			"Rev": "535138d7bcd717d6531c701ef5933d98b1866257"
+		},
+		{
+			"ImportPath": "github.com/gorilla/context",
+			"Rev": "14f550f51af52180c2eefed15e5fd18d63c0a64a"
+		},
+		{
+			"ImportPath": "github.com/gorilla/handlers",
+			"Rev": "0e84b7d810c16aed432217e330206be156bafae0"
+		},
+		{
+			"ImportPath": "github.com/gorilla/mux",
+			"Rev": "e444e69cbd2e2e3e0749a2f3c717cec491552bbf"
+		},
+		{
+			"ImportPath": "github.com/jlhawn/go-crypto",
+			"Rev": "cd738dde20f0b3782516181b0866c9bb9db47401"
+		},
+		{
+			"ImportPath": "github.com/yvasiyarov/go-metrics",
+			"Rev": "57bccd1ccd43f94bb17fdd8bf3007059b802f85e"
+		},
+		{
+			"ImportPath": "github.com/yvasiyarov/gorelic",
+			"Comment": "v0.0.6-8-ga9bba5b",
+			"Rev": "a9bba5b9ab508a086f9a12b8c51fab68478e2128"
+		},
+		{
+			"ImportPath": "github.com/yvasiyarov/newrelic_platform_go",
+			"Rev": "b21fdbd4370f3717f3bbd2bf41c223bc273068e6"
+		},
+		{
+			"ImportPath": "golang.org/x/net/context",
+			"Rev": "1dfe7915deaf3f80b962c163b918868d8a6d8974"
+		},
+		{
+			"ImportPath": "gopkg.in/check.v1",
+			"Rev": "64131543e7896d5bcc6bd5a76287eb75ea96c673"
+		},
+		{
+			"ImportPath": "gopkg.in/yaml.v2",
+			"Rev": "bef53efd0c76e49e6de55ead051f886bea7e9420"
+		}
+	]
+}
+
+
+GET https://code.google.com/p/go-uuid/uuid?go-get=1
+200 OK
+Age: 192
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: public, max-age=600
+Content-Type: text/html
+Date: Tue, 30 Jan 2018 03:48:22 GMT
+Etag: "eunJCg"
+Expires: Tue, 30 Jan 2018 03:58:22 GMT
+Server: Google Frontend
+X-Cloud-Trace-Context: f3998b09f77620cc09c417196ea78d61
+
+<!DOCTYPE html>
+<html class="google" lang="en" ng-app="codesiteArchive.application">
+
+  <head>
+    <meta charset="utf-8">
+    <meta content="initial-scale=1, minimum-scale=1, width=device-width" name="viewport">
+
+    <!-- https://developers.google.com/webmasters/ajax-crawling/docs/specification -->
+    <meta name="fragment" content="!">
+    <title>Google Code Archive - Long-term storage for Google Code Project Hosting.</title>
+
+    <link rel="icon" type="image/vnd.microsoft.icon" href="/archive/img/project-hosting.ico">
+    <script src="//www.google.com/js/google.js"></script>
+    <link href="//www.google.com/css/maia.css" rel="stylesheet">
+    <link
+        href="//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&amp;lang=en"
+        rel="stylesheet">
+    <link rel="stylesheet" href="/archive/archive_css.css">
+    <script>
+      CLOSURE_NO_DEPS = true;
+    </script>
+    <script src="/archive/angular.js"></script>
+    <script src="/archive/pagedown.js"></script>
+    <script src="/archive/archive.js"></script>
+    <base href="/archive/">
+  </head>
+
+  <body>
+    <div class="maia-header" id="maia-header" role="banner">
+      <div class="maia-aux">
+        <a href="/archive/">
+          <h1>
+            <img alt="Google" src="//www.google.com/images/branding/googlelogo/1x/googlelogo_color_116x41dp.png"> Code</a>
+          </h1>
+        </a>
+        <a href="/archive/">
+          <h2>Archive</h2>
+        </a>
+        <a class="maia-teleport" href="#content">Skip to content</a>
+        <div class="maia-util">
+          <form action="/archive/search" class="maia-search">
+            <input name="q" placeholder="Search this site" type="text">
+            <button class="maia-button">
+              <span class="maia-search-icon">Search</span>
+            </button>
+          </form>
+        </div>
+      </div>
+    </div>
+
+    <div ng-view></div>
+    <noscript>
+      <p>The Google Code Archive requires JavaScript to be enabled in your browser.</p>
+    </noscript>
+
+    <div id="maia-signature"></div>
+    <div class="maia-footer" id="maia-footer">
+      <div id="maia-footer-local">
+      </div>
+      <div id="maia-footer-global">
+        <div class="maia-aux">
+          <ul>
+            <li>
+              <a href="//www.google.com/">Google</a>
+            </li>
+            <li>
+              <a href="//www.google.com/intl/en/about/">About Google</a>
+            </li>
+            <li>
+              <a href="//www.google.com/intl/en/policies/privacy/">Privacy</a>
+            </li>
+            <li>
+              <a href="//www.google.com/intl/en/policies/terms/">Terms</a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </div>
+    <script src="//www.google.com/js/maia.js"></script>
+  </body>
+
+</html>
+
+
+GET https://api.github.com/repos/AdRoll/goamz/commits?sha=d3664b76d90508cdda5a6c92042f26eab5db3103&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:34 GMT
+Etag: W/"ae22b21f7601b88008cc6b05f4eb1d5d"
+Last-Modified: Fri, 30 Jan 2015 16:28:28 GMT
+Link: <https://api.github.com/repositories/9154423/commits?sha=d3664b76d90508cdda5a6c92042f26eab5db3103&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/9154423/commits?sha=d3664b76d90508cdda5a6c92042f26eab5db3103&per_page=2&page=511>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B1B:274DB0:5A6FEBC6
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4749
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.044904
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"d3664b76d90508cdda5a6c92042f26eab5db3103","commit":{"author":{"name":"Matthew Moore","email":"m3moore@gmail.com","date":"2015-01-30T16:28:28Z"},"committer":{"name":"Matthew Moore","email":"m3moore@gmail.com","date":"2015-01-30T16:28:28Z"},"message":"add 1.2 back to travis","tree":{"sha":"d5bef1de6aab3626c1b8c73786eb91b911ea07f4","url":"https://api.github.com/repos/AdRoll/goamz/git/trees/d5bef1de6aab3626c1b8c73786eb91b911ea07f4"},"url":"https://api.github.com/repos/AdRoll/goamz/git/commits/d3664b76d90508cdda5a6c92042f26eab5db3103","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/AdRoll/goamz/commits/d3664b76d90508cdda5a6c92042f26eab5db3103","html_url":"https://github.com/AdRoll/goamz/commit/d3664b76d90508cdda5a6c92042f26eab5db3103","comments_url":"https://api.github.com/repos/AdRoll/goamz/commits/d3664b76d90508cdda5a6c92042f26eab5db3103/comments","author":{"login":"moorage","id":8590,"avatar_url":"https://avatars3.githubusercontent.com/u/8590?v=4","gravatar_id":"","url":"https://api.github.com/users/moorage","html_url":"https://github.com/moorage","followers_url":"https://api.github.com/users/moorage/followers","following_url":"https://api.github.com/users/moorage/following{/other_user}","gists_url":"https://api.github.com/users/moorage/gists{/gist_id}","starred_url":"https://api.github.com/users/moorage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moorage/subscriptions","organizations_url":"https://api.github.com/users/moorage/orgs","repos_url":"https://api.github.com/users/moorage/repos","events_url":"https://api.github.com/users/moorage/events{/privacy}","received_events_url":"https://api.github.com/users/moorage/received_events","type":"User","site_admin":false},"committer":{"login":"moorage","id":8590,"avatar_url":"https://avatars3.githubusercontent.com/u/8590?v=4","gravatar_id":"","url":"https://api.github.com/users/moorage","html_url":"https://github.com/moorage","followers_url":"https://api.github.com/users/moorage/followers","following_url":"https://api.github.com/users/moorage/following{/other_user}","gists_url":"https://api.github.com/users/moorage/gists{/gist_id}","starred_url":"https://api.github.com/users/moorage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moorage/subscriptions","organizations_url":"https://api.github.com/users/moorage/orgs","repos_url":"https://api.github.com/users/moorage/repos","events_url":"https://api.github.com/users/moorage/events{/privacy}","received_events_url":"https://api.github.com/users/moorage/received_events","type":"User","site_admin":false},"parents":[{"sha":"8133224891333b7c9d172550767bb43717cc8872","url":"https://api.github.com/repos/AdRoll/goamz/commits/8133224891333b7c9d172550767bb43717cc8872","html_url":"https://github.com/AdRoll/goamz/commit/8133224891333b7c9d172550767bb43717cc8872"}]},{"sha":"8133224891333b7c9d172550767bb43717cc8872","commit":{"author":{"name":"Matthew Moore","email":"m3moore@gmail.com","date":"2015-01-30T16:27:00Z"},"committer":{"name":"Matthew Moore","email":"m3moore@gmail.com","date":"2015-01-30T16:27:00Z"},"message":"run gofmt on an inexplicable change to the dynamodb files","tree":{"sha":"8f8e62aa3988b8a8ff31429942d0976f58223398","url":"https://api.github.com/repos/AdRoll/goamz/git/trees/8f8e62aa3988b8a8ff31429942d0976f58223398"},"url":"https://api.github.com/repos/AdRoll/goamz/git/commits/8133224891333b7c9d172550767bb43717cc8872","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/AdRoll/goamz/commits/8133224891333b7c9d172550767bb43717cc8872","html_url":"https://github.com/AdRoll/goamz/commit/8133224891333b7c9d172550767bb43717cc8872","comments_url":"https://api.github.com/repos/AdRoll/goamz/commits/8133224891333b7c9d172550767bb43717cc8872/comments","author":{"login":"moorage","id":8590,"avatar_url":"https://avatars3.githubusercontent.com/u/8590?v=4","gravatar_id":"","url":"https://api.github.com/users/moorage","html_url":"https://github.com/moorage","followers_url":"https://api.github.com/users/moorage/followers","following_url":"https://api.github.com/users/moorage/following{/other_user}","gists_url":"https://api.github.com/users/moorage/gists{/gist_id}","starred_url":"https://api.github.com/users/moorage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moorage/subscriptions","organizations_url":"https://api.github.com/users/moorage/orgs","repos_url":"https://api.github.com/users/moorage/repos","events_url":"https://api.github.com/users/moorage/events{/privacy}","received_events_url":"https://api.github.com/users/moorage/received_events","type":"User","site_admin":false},"committer":{"login":"moorage","id":8590,"avatar_url":"https://avatars3.githubusercontent.com/u/8590?v=4","gravatar_id":"","url":"https://api.github.com/users/moorage","html_url":"https://github.com/moorage","followers_url":"https://api.github.com/users/moorage/followers","following_url":"https://api.github.com/users/moorage/following{/other_user}","gists_url":"https://api.github.com/users/moorage/gists{/gist_id}","starred_url":"https://api.github.com/users/moorage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moorage/subscriptions","organizations_url":"https://api.github.com/users/moorage/orgs","repos_url":"https://api.github.com/users/moorage/repos","events_url":"https://api.github.com/users/moorage/events{/privacy}","received_events_url":"https://api.github.com/users/moorage/received_events","type":"User","site_admin":false},"parents":[{"sha":"db4992b3c27416616a4b65c08ee6309eb95cac38","url":"https://api.github.com/repos/AdRoll/goamz/commits/db4992b3c27416616a4b65c08ee6309eb95cac38","html_url":"https://github.com/AdRoll/goamz/commit/db4992b3c27416616a4b65c08ee6309eb95cac38"}]}]
+
+GET https://api.github.com/repos/MSOpenTech/azure-sdk-for-go/commits?sha=d90753bcad2ed782fcead7392d1e831df29aa2bb&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:34 GMT
+Etag: W/"88b9903ffbfef40ab3a7b385ca43f9ea"
+Last-Modified: Mon, 23 Mar 2015 22:30:30 GMT
+Link: <https://api.github.com/repositories/22855240/commits?sha=d90753bcad2ed782fcead7392d1e831df29aa2bb&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/22855240/commits?sha=d90753bcad2ed782fcead7392d1e831df29aa2bb&per_page=2&page=95>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B32:274E19:5A6FEBC6
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4747
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.038636
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"d90753bcad2ed782fcead7392d1e831df29aa2bb","commit":{"author":{"name":"Ahmet Alp Balkan","email":"ahmetalpbalkan@gmail.com","date":"2015-03-23T22:30:30Z"},"committer":{"name":"Ahmet Alp Balkan","email":"ahmetalpbalkan@gmail.com","date":"2015-03-23T22:30:30Z"},"message":"Merge pull request #65 from paulmey/virtualmachine\n\n Move convenience methods to vmutils package","tree":{"sha":"0d8e79b1adc633ed8d05a3a9bf8dfa56be205c4c","url":"https://api.github.com/repos/Azure/azure-sdk-for-go/git/trees/0d8e79b1adc633ed8d05a3a9bf8dfa56be205c4c"},"url":"https://api.github.com/repos/Azure/azure-sdk-for-go/git/commits/d90753bcad2ed782fcead7392d1e831df29aa2bb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/Azure/azure-sdk-for-go/commits/d90753bcad2ed782fcead7392d1e831df29aa2bb","html_url":"https://github.com/Azure/azure-sdk-for-go/commit/d90753bcad2ed782fcead7392d1e831df29aa2bb","comments_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/commits/d90753bcad2ed782fcead7392d1e831df29aa2bb/comments","author":{"login":"ahmetb","id":159209,"avatar_url":"https://avatars1.githubusercontent.com/u/159209?v=4","gravatar_id":"","url":"https://api.github.com/users/ahmetb","html_url":"https://github.com/ahmetb","followers_url":"https://api.github.com/users/ahmetb/followers","following_url":"https://api.github.com/users/ahmetb/following{/other_user}","gists_url":"https://api.github.com/users/ahmetb/gists{/gist_id}","starred_url":"https://api.github.com/users/ahmetb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ahmetb/subscriptions","organizations_url":"https://api.github.com/users/ahmetb/orgs","repos_url":"https://api.github.com/users/ahmetb/repos","events_url":"https://api.github.com/users/ahmetb/events{/privacy}","received_events_url":"https://api.github.com/users/ahmetb/received_events","type":"User","site_admin":false},"committer":{"login":"ahmetb","id":159209,"avatar_url":"https://avatars1.githubusercontent.com/u/159209?v=4","gravatar_id":"","url":"https://api.github.com/users/ahmetb","html_url":"https://github.com/ahmetb","followers_url":"https://api.github.com/users/ahmetb/followers","following_url":"https://api.github.com/users/ahmetb/following{/other_user}","gists_url":"https://api.github.com/users/ahmetb/gists{/gist_id}","starred_url":"https://api.github.com/users/ahmetb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ahmetb/subscriptions","organizations_url":"https://api.github.com/users/ahmetb/orgs","repos_url":"https://api.github.com/users/ahmetb/repos","events_url":"https://api.github.com/users/ahmetb/events{/privacy}","received_events_url":"https://api.github.com/users/ahmetb/received_events","type":"User","site_admin":false},"parents":[{"sha":"de1dcac65f7ad09eaab7d291e03916bef4a10a6f","url":"https://api.github.com/repos/Azure/azure-sdk-for-go/commits/de1dcac65f7ad09eaab7d291e03916bef4a10a6f","html_url":"https://github.com/Azure/azure-sdk-for-go/commit/de1dcac65f7ad09eaab7d291e03916bef4a10a6f"},{"sha":"755fee3ff3c28a9bfac4e52665d2e2e5a28e57b8","url":"https://api.github.com/repos/Azure/azure-sdk-for-go/commits/755fee3ff3c28a9bfac4e52665d2e2e5a28e57b8","html_url":"https://github.com/Azure/azure-sdk-for-go/commit/755fee3ff3c28a9bfac4e52665d2e2e5a28e57b8"}]},{"sha":"755fee3ff3c28a9bfac4e52665d2e2e5a28e57b8","commit":{"author":{"name":"Paul Meyer","email":"paul.meyer@microsoft.com","date":"2015-03-23T16:19:08Z"},"committer":{"name":"Paul Meyer","email":"paul.meyer@microsoft.com","date":"2015-03-23T21:11:41Z"},"message":"Make vmutils.NewVmConfiguration return Role\n\nEncourages explicit address-of (&) for the Configure* to indicate possible modification of the role struct.\n\nSigned-off-by: Paul Meyer <paul.meyer@microsoft.com>","tree":{"sha":"0d8e79b1adc633ed8d05a3a9bf8dfa56be205c4c","url":"https://api.github.com/repos/Azure/azure-sdk-for-go/git/trees/0d8e79b1adc633ed8d05a3a9bf8dfa56be205c4c"},"url":"https://api.github.com/repos/Azure/azure-sdk-for-go/git/commits/755fee3ff3c28a9bfac4e52665d2e2e5a28e57b8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/Azure/azure-sdk-for-go/commits/755fee3ff3c28a9bfac4e52665d2e2e5a28e57b8","html_url":"https://github.com/Azure/azure-sdk-for-go/commit/755fee3ff3c28a9bfac4e52665d2e2e5a28e57b8","comments_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/commits/755fee3ff3c28a9bfac4e52665d2e2e5a28e57b8/comments","author":{"login":"paulmey","id":1740197,"avatar_url":"https://avatars2.githubusercontent.com/u/1740197?v=4","gravatar_id":"","url":"https://api.github.com/users/paulmey","html_url":"https://github.com/paulmey","followers_url":"https://api.github.com/users/paulmey/followers","following_url":"https://api.github.com/users/paulmey/following{/other_user}","gists_url":"https://api.github.com/users/paulmey/gists{/gist_id}","starred_url":"https://api.github.com/users/paulmey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/paulmey/subscriptions","organizations_url":"https://api.github.com/users/paulmey/orgs","repos_url":"https://api.github.com/users/paulmey/repos","events_url":"https://api.github.com/users/paulmey/events{/privacy}","received_events_url":"https://api.github.com/users/paulmey/received_events","type":"User","site_admin":false},"committer":{"login":"paulmey","id":1740197,"avatar_url":"https://avatars2.githubusercontent.com/u/1740197?v=4","gravatar_id":"","url":"https://api.github.com/users/paulmey","html_url":"https://github.com/paulmey","followers_url":"https://api.github.com/users/paulmey/followers","following_url":"https://api.github.com/users/paulmey/following{/other_user}","gists_url":"https://api.github.com/users/paulmey/gists{/gist_id}","starred_url":"https://api.github.com/users/paulmey/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/paulmey/subscriptions","organizations_url":"https://api.github.com/users/paulmey/orgs","repos_url":"https://api.github.com/users/paulmey/repos","events_url":"https://api.github.com/users/paulmey/events{/privacy}","received_events_url":"https://api.github.com/users/paulmey/received_events","type":"User","site_admin":false},"parents":[{"sha":"979871fa03beed6125ddbbae0bd3bf25e5735c3e","url":"https://api.github.com/repos/Azure/azure-sdk-for-go/commits/979871fa03beed6125ddbbae0bd3bf25e5735c3e","html_url":"https://github.com/Azure/azure-sdk-for-go/commit/979871fa03beed6125ddbbae0bd3bf25e5735c3e"}]}]
+
+GET https://api.github.com/repos/Sirupsen/logrus/commits?sha=55eb11d21d2a31a3cc93838241d04800f52e823d&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:35 GMT
+Etag: W/"5f7d8b8b0cdebf642f9ab25c80de9587"
+Last-Modified: Thu, 09 Apr 2015 23:08:25 GMT
+Link: <https://api.github.com/repositories/13628513/commits?sha=55eb11d21d2a31a3cc93838241d04800f52e823d&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/13628513/commits?sha=55eb11d21d2a31a3cc93838241d04800f52e823d&per_page=2&page=155>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B37:274E23:5A6FEBC6
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4746
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.045749
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"55eb11d21d2a31a3cc93838241d04800f52e823d","commit":{"author":{"name":"Simon Eskildsen","email":"sirup@sirupsen.com","date":"2015-04-09T23:08:25Z"},"committer":{"name":"Simon Eskildsen","email":"sirup@sirupsen.com","date":"2015-04-09T23:08:25Z"},"message":"changelog: 0.7.3","tree":{"sha":"078b547f504738c2af1ca3ca25e026e1ebf2bfd6","url":"https://api.github.com/repos/sirupsen/logrus/git/trees/078b547f504738c2af1ca3ca25e026e1ebf2bfd6"},"url":"https://api.github.com/repos/sirupsen/logrus/git/commits/55eb11d21d2a31a3cc93838241d04800f52e823d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/sirupsen/logrus/commits/55eb11d21d2a31a3cc93838241d04800f52e823d","html_url":"https://github.com/sirupsen/logrus/commit/55eb11d21d2a31a3cc93838241d04800f52e823d","comments_url":"https://api.github.com/repos/sirupsen/logrus/commits/55eb11d21d2a31a3cc93838241d04800f52e823d/comments","author":{"login":"sirupsen","id":97400,"avatar_url":"https://avatars3.githubusercontent.com/u/97400?v=4","gravatar_id":"","url":"https://api.github.com/users/sirupsen","html_url":"https://github.com/sirupsen","followers_url":"https://api.github.com/users/sirupsen/followers","following_url":"https://api.github.com/users/sirupsen/following{/other_user}","gists_url":"https://api.github.com/users/sirupsen/gists{/gist_id}","starred_url":"https://api.github.com/users/sirupsen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sirupsen/subscriptions","organizations_url":"https://api.github.com/users/sirupsen/orgs","repos_url":"https://api.github.com/users/sirupsen/repos","events_url":"https://api.github.com/users/sirupsen/events{/privacy}","received_events_url":"https://api.github.com/users/sirupsen/received_events","type":"User","site_admin":false},"committer":{"login":"sirupsen","id":97400,"avatar_url":"https://avatars3.githubusercontent.com/u/97400?v=4","gravatar_id":"","url":"https://api.github.com/users/sirupsen","html_url":"https://github.com/sirupsen","followers_url":"https://api.github.com/users/sirupsen/followers","following_url":"https://api.github.com/users/sirupsen/following{/other_user}","gists_url":"https://api.github.com/users/sirupsen/gists{/gist_id}","starred_url":"https://api.github.com/users/sirupsen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sirupsen/subscriptions","organizations_url":"https://api.github.com/users/sirupsen/orgs","repos_url":"https://api.github.com/users/sirupsen/repos","events_url":"https://api.github.com/users/sirupsen/events{/privacy}","received_events_url":"https://api.github.com/users/sirupsen/received_events","type":"User","site_admin":false},"parents":[{"sha":"7ca50a32cda083533c92d330e2ddb556cc8b9cce","url":"https://api.github.com/repos/sirupsen/logrus/commits/7ca50a32cda083533c92d330e2ddb556cc8b9cce","html_url":"https://github.com/sirupsen/logrus/commit/7ca50a32cda083533c92d330e2ddb556cc8b9cce"}]},{"sha":"7ca50a32cda083533c92d330e2ddb556cc8b9cce","commit":{"author":{"name":"Simon Eskildsen","email":"sirup@sirupsen.com","date":"2015-04-09T23:07:39Z"},"committer":{"name":"Simon Eskildsen","email":"sirup@sirupsen.com","date":"2015-04-09T23:07:39Z"},"message":"Merge pull request #162 from stevvooe/timestamp-layout\n\nAllow configuration of timestamp layout","tree":{"sha":"23bf8d4d0b6ae2cc62d142324da51c78cd6ee66c","url":"https://api.github.com/repos/sirupsen/logrus/git/trees/23bf8d4d0b6ae2cc62d142324da51c78cd6ee66c"},"url":"https://api.github.com/repos/sirupsen/logrus/git/commits/7ca50a32cda083533c92d330e2ddb556cc8b9cce","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/sirupsen/logrus/commits/7ca50a32cda083533c92d330e2ddb556cc8b9cce","html_url":"https://github.com/sirupsen/logrus/commit/7ca50a32cda083533c92d330e2ddb556cc8b9cce","comments_url":"https://api.github.com/repos/sirupsen/logrus/commits/7ca50a32cda083533c92d330e2ddb556cc8b9cce/comments","author":{"login":"sirupsen","id":97400,"avatar_url":"https://avatars3.githubusercontent.com/u/97400?v=4","gravatar_id":"","url":"https://api.github.com/users/sirupsen","html_url":"https://github.com/sirupsen","followers_url":"https://api.github.com/users/sirupsen/followers","following_url":"https://api.github.com/users/sirupsen/following{/other_user}","gists_url":"https://api.github.com/users/sirupsen/gists{/gist_id}","starred_url":"https://api.github.com/users/sirupsen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sirupsen/subscriptions","organizations_url":"https://api.github.com/users/sirupsen/orgs","repos_url":"https://api.github.com/users/sirupsen/repos","events_url":"https://api.github.com/users/sirupsen/events{/privacy}","received_events_url":"https://api.github.com/users/sirupsen/received_events","type":"User","site_admin":false},"committer":{"login":"sirupsen","id":97400,"avatar_url":"https://avatars3.githubusercontent.com/u/97400?v=4","gravatar_id":"","url":"https://api.github.com/users/sirupsen","html_url":"https://github.com/sirupsen","followers_url":"https://api.github.com/users/sirupsen/followers","following_url":"https://api.github.com/users/sirupsen/following{/other_user}","gists_url":"https://api.github.com/users/sirupsen/gists{/gist_id}","starred_url":"https://api.github.com/users/sirupsen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sirupsen/subscriptions","organizations_url":"https://api.github.com/users/sirupsen/orgs","repos_url":"https://api.github.com/users/sirupsen/repos","events_url":"https://api.github.com/users/sirupsen/events{/privacy}","received_events_url":"https://api.github.com/users/sirupsen/received_events","type":"User","site_admin":false},"parents":[{"sha":"cdd90c38c6e3718c731b555b9c3ed1becebec3ba","url":"https://api.github.com/repos/sirupsen/logrus/commits/cdd90c38c6e3718c731b555b9c3ed1becebec3ba","html_url":"https://github.com/sirupsen/logrus/commit/cdd90c38c6e3718c731b555b9c3ed1becebec3ba"},{"sha":"e14471f8f2019ad541afa6e6f9d7b3233e49bf06","url":"https://api.github.com/repos/sirupsen/logrus/commits/e14471f8f2019ad541afa6e6f9d7b3233e49bf06","html_url":"https://github.com/sirupsen/logrus/commit/e14471f8f2019ad541afa6e6f9d7b3233e49bf06"}]}]
+
+GET https://api.github.com/repos/bugsnag/bugsnag-go/commits?sha=b1d153021fcd90ca3f080db36bec96dc690fb274&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:35 GMT
+Etag: W/"b4f126d416467c8d184dbcf7b659070e"
+Last-Modified: Mon, 10 Nov 2014 18:40:14 GMT
+Link: <https://api.github.com/repositories/21560954/commits?sha=b1d153021fcd90ca3f080db36bec96dc690fb274&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/21560954/commits?sha=b1d153021fcd90ca3f080db36bec96dc690fb274&per_page=2&page=32>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B3E:274E2E:5A6FEBC7
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4745
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.050080
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"b1d153021fcd90ca3f080db36bec96dc690fb274","commit":{"author":{"name":"Conrad Irwin","email":"conrad.irwin@gmail.com","date":"2014-11-10T18:40:14Z"},"committer":{"name":"Conrad Irwin","email":"conrad.irwin@gmail.com","date":"2014-11-10T18:40:14Z"},"message":"Use bugsnag deps","tree":{"sha":"1544f687d41d7973caae06aea597ac202f2e2743","url":"https://api.github.com/repos/bugsnag/bugsnag-go/git/trees/1544f687d41d7973caae06aea597ac202f2e2743"},"url":"https://api.github.com/repos/bugsnag/bugsnag-go/git/commits/b1d153021fcd90ca3f080db36bec96dc690fb274","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/bugsnag/bugsnag-go/commits/b1d153021fcd90ca3f080db36bec96dc690fb274","html_url":"https://github.com/bugsnag/bugsnag-go/commit/b1d153021fcd90ca3f080db36bec96dc690fb274","comments_url":"https://api.github.com/repos/bugsnag/bugsnag-go/commits/b1d153021fcd90ca3f080db36bec96dc690fb274/comments","author":{"login":"ConradIrwin","id":94272,"avatar_url":"https://avatars2.githubusercontent.com/u/94272?v=4","gravatar_id":"","url":"https://api.github.com/users/ConradIrwin","html_url":"https://github.com/ConradIrwin","followers_url":"https://api.github.com/users/ConradIrwin/followers","following_url":"https://api.github.com/users/ConradIrwin/following{/other_user}","gists_url":"https://api.github.com/users/ConradIrwin/gists{/gist_id}","starred_url":"https://api.github.com/users/ConradIrwin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ConradIrwin/subscriptions","organizations_url":"https://api.github.com/users/ConradIrwin/orgs","repos_url":"https://api.github.com/users/ConradIrwin/repos","events_url":"https://api.github.com/users/ConradIrwin/events{/privacy}","received_events_url":"https://api.github.com/users/ConradIrwin/received_events","type":"User","site_admin":false},"committer":{"login":"ConradIrwin","id":94272,"avatar_url":"https://avatars2.githubusercontent.com/u/94272?v=4","gravatar_id":"","url":"https://api.github.com/users/ConradIrwin","html_url":"https://github.com/ConradIrwin","followers_url":"https://api.github.com/users/ConradIrwin/followers","following_url":"https://api.github.com/users/ConradIrwin/following{/other_user}","gists_url":"https://api.github.com/users/ConradIrwin/gists{/gist_id}","starred_url":"https://api.github.com/users/ConradIrwin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ConradIrwin/subscriptions","organizations_url":"https://api.github.com/users/ConradIrwin/orgs","repos_url":"https://api.github.com/users/ConradIrwin/repos","events_url":"https://api.github.com/users/ConradIrwin/events{/privacy}","received_events_url":"https://api.github.com/users/ConradIrwin/received_events","type":"User","site_admin":false},"parents":[{"sha":"ec8bebeb0a1462b6208790a4d69e36fe30cd3a34","url":"https://api.github.com/repos/bugsnag/bugsnag-go/commits/ec8bebeb0a1462b6208790a4d69e36fe30cd3a34","html_url":"https://github.com/bugsnag/bugsnag-go/commit/ec8bebeb0a1462b6208790a4d69e36fe30cd3a34"}]},{"sha":"ec8bebeb0a1462b6208790a4d69e36fe30cd3a34","commit":{"author":{"name":"Conrad Irwin","email":"conrad.irwin@gmail.com","date":"2014-10-21T20:50:16Z"},"committer":{"name":"Conrad Irwin","email":"conrad.irwin@gmail.com","date":"2014-10-21T20:50:16Z"},"message":"Clearer docs  Fixes #10","tree":{"sha":"011bc86e1555084592cf880c823bfb66f968f56d","url":"https://api.github.com/repos/bugsnag/bugsnag-go/git/trees/011bc86e1555084592cf880c823bfb66f968f56d"},"url":"https://api.github.com/repos/bugsnag/bugsnag-go/git/commits/ec8bebeb0a1462b6208790a4d69e36fe30cd3a34","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/bugsnag/bugsnag-go/commits/ec8bebeb0a1462b6208790a4d69e36fe30cd3a34","html_url":"https://github.com/bugsnag/bugsnag-go/commit/ec8bebeb0a1462b6208790a4d69e36fe30cd3a34","comments_url":"https://api.github.com/repos/bugsnag/bugsnag-go/commits/ec8bebeb0a1462b6208790a4d69e36fe30cd3a34/comments","author":{"login":"ConradIrwin","id":94272,"avatar_url":"https://avatars2.githubusercontent.com/u/94272?v=4","gravatar_id":"","url":"https://api.github.com/users/ConradIrwin","html_url":"https://github.com/ConradIrwin","followers_url":"https://api.github.com/users/ConradIrwin/followers","following_url":"https://api.github.com/users/ConradIrwin/following{/other_user}","gists_url":"https://api.github.com/users/ConradIrwin/gists{/gist_id}","starred_url":"https://api.github.com/users/ConradIrwin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ConradIrwin/subscriptions","organizations_url":"https://api.github.com/users/ConradIrwin/orgs","repos_url":"https://api.github.com/users/ConradIrwin/repos","events_url":"https://api.github.com/users/ConradIrwin/events{/privacy}","received_events_url":"https://api.github.com/users/ConradIrwin/received_events","type":"User","site_admin":false},"committer":{"login":"ConradIrwin","id":94272,"avatar_url":"https://avatars2.githubusercontent.com/u/94272?v=4","gravatar_id":"","url":"https://api.github.com/users/ConradIrwin","html_url":"https://github.com/ConradIrwin","followers_url":"https://api.github.com/users/ConradIrwin/followers","following_url":"https://api.github.com/users/ConradIrwin/following{/other_user}","gists_url":"https://api.github.com/users/ConradIrwin/gists{/gist_id}","starred_url":"https://api.github.com/users/ConradIrwin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ConradIrwin/subscriptions","organizations_url":"https://api.github.com/users/ConradIrwin/orgs","repos_url":"https://api.github.com/users/ConradIrwin/repos","events_url":"https://api.github.com/users/ConradIrwin/events{/privacy}","received_events_url":"https://api.github.com/users/ConradIrwin/received_events","type":"User","site_admin":false},"parents":[{"sha":"4235a4d700a0be6094fcb98c610caab6e21ec8df","url":"https://api.github.com/repos/bugsnag/bugsnag-go/commits/4235a4d700a0be6094fcb98c610caab6e21ec8df","html_url":"https://github.com/bugsnag/bugsnag-go/commit/4235a4d700a0be6094fcb98c610caab6e21ec8df"}]}]
+
+GET https://api.github.com/repos/bugsnag/osext/commits?sha=0dd3f918b21bec95ace9dc86c7e70266cfc5c702&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:35 GMT
+Etag: W/"99fb8967aba723ae45041efbfa44ac25"
+Last-Modified: Mon, 17 Jun 2013 22:48:35 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B45:274E3B:5A6FEBC7
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4744
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.046875
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"0dd3f918b21bec95ace9dc86c7e70266cfc5c702","commit":{"author":{"name":"Mitchell Hashimoto","email":"mitchell.hashimoto@gmail.com","date":"2013-06-17T22:48:35Z"},"committer":{"name":"Mitchell Hashimoto","email":"mitchell.hashimoto@gmail.com","date":"2013-06-17T22:48:35Z"},"message":"Initial commmit","tree":{"sha":"466b416c94b95d2ce6c929dc5bd1d91f6b7f17ce","url":"https://api.github.com/repos/bugsnag/osext/git/trees/466b416c94b95d2ce6c929dc5bd1d91f6b7f17ce"},"url":"https://api.github.com/repos/bugsnag/osext/git/commits/0dd3f918b21bec95ace9dc86c7e70266cfc5c702","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/bugsnag/osext/commits/0dd3f918b21bec95ace9dc86c7e70266cfc5c702","html_url":"https://github.com/bugsnag/osext/commit/0dd3f918b21bec95ace9dc86c7e70266cfc5c702","comments_url":"https://api.github.com/repos/bugsnag/osext/commits/0dd3f918b21bec95ace9dc86c7e70266cfc5c702/comments","author":{"login":"mitchellh","id":1299,"avatar_url":"https://avatars3.githubusercontent.com/u/1299?v=4","gravatar_id":"","url":"https://api.github.com/users/mitchellh","html_url":"https://github.com/mitchellh","followers_url":"https://api.github.com/users/mitchellh/followers","following_url":"https://api.github.com/users/mitchellh/following{/other_user}","gists_url":"https://api.github.com/users/mitchellh/gists{/gist_id}","starred_url":"https://api.github.com/users/mitchellh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mitchellh/subscriptions","organizations_url":"https://api.github.com/users/mitchellh/orgs","repos_url":"https://api.github.com/users/mitchellh/repos","events_url":"https://api.github.com/users/mitchellh/events{/privacy}","received_events_url":"https://api.github.com/users/mitchellh/received_events","type":"User","site_admin":false},"committer":{"login":"mitchellh","id":1299,"avatar_url":"https://avatars3.githubusercontent.com/u/1299?v=4","gravatar_id":"","url":"https://api.github.com/users/mitchellh","html_url":"https://github.com/mitchellh","followers_url":"https://api.github.com/users/mitchellh/followers","following_url":"https://api.github.com/users/mitchellh/following{/other_user}","gists_url":"https://api.github.com/users/mitchellh/gists{/gist_id}","starred_url":"https://api.github.com/users/mitchellh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mitchellh/subscriptions","organizations_url":"https://api.github.com/users/mitchellh/orgs","repos_url":"https://api.github.com/users/mitchellh/repos","events_url":"https://api.github.com/users/mitchellh/events{/privacy}","received_events_url":"https://api.github.com/users/mitchellh/received_events","type":"User","site_admin":false},"parents":[]}]
+
+GET https://api.github.com/repos/bugsnag/panicwrap/commits?sha=e5f9854865b9778a45169fc249e99e338d4d6f27&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:35 GMT
+Etag: W/"add293d5e5c55ce1afa57fc8dad89d0d"
+Last-Modified: Mon, 10 Nov 2014 18:43:34 GMT
+Link: <https://api.github.com/repositories/26449736/commits?sha=e5f9854865b9778a45169fc249e99e338d4d6f27&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/26449736/commits?sha=e5f9854865b9778a45169fc249e99e338d4d6f27&per_page=2&page=21>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B4A:274E46:5A6FEBC7
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4743
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.046943
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"e5f9854865b9778a45169fc249e99e338d4d6f27","commit":{"author":{"name":"Conrad Irwin","email":"conrad.irwin@gmail.com","date":"2014-11-10T18:43:34Z"},"committer":{"name":"Conrad Irwin","email":"conrad.irwin@gmail.com","date":"2014-11-10T18:43:34Z"},"message":"Fix other dep","tree":{"sha":"af251946e04655b6f1decb05254a2fe7d89c45bb","url":"https://api.github.com/repos/bugsnag/panicwrap/git/trees/af251946e04655b6f1decb05254a2fe7d89c45bb"},"url":"https://api.github.com/repos/bugsnag/panicwrap/git/commits/e5f9854865b9778a45169fc249e99e338d4d6f27","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/bugsnag/panicwrap/commits/e5f9854865b9778a45169fc249e99e338d4d6f27","html_url":"https://github.com/bugsnag/panicwrap/commit/e5f9854865b9778a45169fc249e99e338d4d6f27","comments_url":"https://api.github.com/repos/bugsnag/panicwrap/commits/e5f9854865b9778a45169fc249e99e338d4d6f27/comments","author":{"login":"ConradIrwin","id":94272,"avatar_url":"https://avatars2.githubusercontent.com/u/94272?v=4","gravatar_id":"","url":"https://api.github.com/users/ConradIrwin","html_url":"https://github.com/ConradIrwin","followers_url":"https://api.github.com/users/ConradIrwin/followers","following_url":"https://api.github.com/users/ConradIrwin/following{/other_user}","gists_url":"https://api.github.com/users/ConradIrwin/gists{/gist_id}","starred_url":"https://api.github.com/users/ConradIrwin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ConradIrwin/subscriptions","organizations_url":"https://api.github.com/users/ConradIrwin/orgs","repos_url":"https://api.github.com/users/ConradIrwin/repos","events_url":"https://api.github.com/users/ConradIrwin/events{/privacy}","received_events_url":"https://api.github.com/users/ConradIrwin/received_events","type":"User","site_admin":false},"committer":{"login":"ConradIrwin","id":94272,"avatar_url":"https://avatars2.githubusercontent.com/u/94272?v=4","gravatar_id":"","url":"https://api.github.com/users/ConradIrwin","html_url":"https://github.com/ConradIrwin","followers_url":"https://api.github.com/users/ConradIrwin/followers","following_url":"https://api.github.com/users/ConradIrwin/following{/other_user}","gists_url":"https://api.github.com/users/ConradIrwin/gists{/gist_id}","starred_url":"https://api.github.com/users/ConradIrwin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ConradIrwin/subscriptions","organizations_url":"https://api.github.com/users/ConradIrwin/orgs","repos_url":"https://api.github.com/users/ConradIrwin/repos","events_url":"https://api.github.com/users/ConradIrwin/events{/privacy}","received_events_url":"https://api.github.com/users/ConradIrwin/received_events","type":"User","site_admin":false},"parents":[{"sha":"dcc0b1f08206e8fac1d50ecc542c98ce615574e5","url":"https://api.github.com/repos/bugsnag/panicwrap/commits/dcc0b1f08206e8fac1d50ecc542c98ce615574e5","html_url":"https://github.com/bugsnag/panicwrap/commit/dcc0b1f08206e8fac1d50ecc542c98ce615574e5"}]},{"sha":"dcc0b1f08206e8fac1d50ecc542c98ce615574e5","commit":{"author":{"name":"Conrad Irwin","email":"conrad.irwin@gmail.com","date":"2014-11-10T18:38:11Z"},"committer":{"name":"Conrad Irwin","email":"conrad.irwin@gmail.com","date":"2014-11-10T18:38:11Z"},"message":"Use bugsnag deps","tree":{"sha":"038d09446ced0dbb8ba037b61099b08880b7be56","url":"https://api.github.com/repos/bugsnag/panicwrap/git/trees/038d09446ced0dbb8ba037b61099b08880b7be56"},"url":"https://api.github.com/repos/bugsnag/panicwrap/git/commits/dcc0b1f08206e8fac1d50ecc542c98ce615574e5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/bugsnag/panicwrap/commits/dcc0b1f08206e8fac1d50ecc542c98ce615574e5","html_url":"https://github.com/bugsnag/panicwrap/commit/dcc0b1f08206e8fac1d50ecc542c98ce615574e5","comments_url":"https://api.github.com/repos/bugsnag/panicwrap/commits/dcc0b1f08206e8fac1d50ecc542c98ce615574e5/comments","author":{"login":"ConradIrwin","id":94272,"avatar_url":"https://avatars2.githubusercontent.com/u/94272?v=4","gravatar_id":"","url":"https://api.github.com/users/ConradIrwin","html_url":"https://github.com/ConradIrwin","followers_url":"https://api.github.com/users/ConradIrwin/followers","following_url":"https://api.github.com/users/ConradIrwin/following{/other_user}","gists_url":"https://api.github.com/users/ConradIrwin/gists{/gist_id}","starred_url":"https://api.github.com/users/ConradIrwin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ConradIrwin/subscriptions","organizations_url":"https://api.github.com/users/ConradIrwin/orgs","repos_url":"https://api.github.com/users/ConradIrwin/repos","events_url":"https://api.github.com/users/ConradIrwin/events{/privacy}","received_events_url":"https://api.github.com/users/ConradIrwin/received_events","type":"User","site_admin":false},"committer":{"login":"ConradIrwin","id":94272,"avatar_url":"https://avatars2.githubusercontent.com/u/94272?v=4","gravatar_id":"","url":"https://api.github.com/users/ConradIrwin","html_url":"https://github.com/ConradIrwin","followers_url":"https://api.github.com/users/ConradIrwin/followers","following_url":"https://api.github.com/users/ConradIrwin/following{/other_user}","gists_url":"https://api.github.com/users/ConradIrwin/gists{/gist_id}","starred_url":"https://api.github.com/users/ConradIrwin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ConradIrwin/subscriptions","organizations_url":"https://api.github.com/users/ConradIrwin/orgs","repos_url":"https://api.github.com/users/ConradIrwin/repos","events_url":"https://api.github.com/users/ConradIrwin/events{/privacy}","received_events_url":"https://api.github.com/users/ConradIrwin/received_events","type":"User","site_admin":false},"parents":[{"sha":"dbbd17736f5ece8f7cd73c4d555ddf22dce9b33d","url":"https://api.github.com/repos/bugsnag/panicwrap/commits/dbbd17736f5ece8f7cd73c4d555ddf22dce9b33d","html_url":"https://github.com/bugsnag/panicwrap/commit/dbbd17736f5ece8f7cd73c4d555ddf22dce9b33d"}]}]
+
+GET https://api.github.com/repos/codegangsta/cli/commits?sha=6086d7927ec35315964d9fea46df6c04e6d697c1&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:35 GMT
+Etag: W/"3b0189770db937bd26a3431d30b7e5a3"
+Last-Modified: Sat, 31 Jan 2015 03:12:59 GMT
+Link: <https://api.github.com/repositories/11393110/commits?sha=6086d7927ec35315964d9fea46df6c04e6d697c1&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/11393110/commits?sha=6086d7927ec35315964d9fea46df6c04e6d697c1&per_page=2&page=130>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B53:274E5E:5A6FEBC7
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4741
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.039088
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"6086d7927ec35315964d9fea46df6c04e6d697c1","commit":{"author":{"name":"Jesse Szwedko","email":"jesse.szwedko@gmail.com","date":"2015-01-31T03:12:59Z"},"committer":{"name":"Jesse Szwedko","email":"jesse.szwedko@gmail.com","date":"2015-01-31T03:12:59Z"},"message":"Merge pull request #177 from vishalsodani/master\n\nFix sentence","tree":{"sha":"352b1e5ce04bff45bc3851bba2ad052be8c597b3","url":"https://api.github.com/repos/urfave/cli/git/trees/352b1e5ce04bff45bc3851bba2ad052be8c597b3"},"url":"https://api.github.com/repos/urfave/cli/git/commits/6086d7927ec35315964d9fea46df6c04e6d697c1","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/urfave/cli/commits/6086d7927ec35315964d9fea46df6c04e6d697c1","html_url":"https://github.com/urfave/cli/commit/6086d7927ec35315964d9fea46df6c04e6d697c1","comments_url":"https://api.github.com/repos/urfave/cli/commits/6086d7927ec35315964d9fea46df6c04e6d697c1/comments","author":{"login":"jszwedko","id":316880,"avatar_url":"https://avatars2.githubusercontent.com/u/316880?v=4","gravatar_id":"","url":"https://api.github.com/users/jszwedko","html_url":"https://github.com/jszwedko","followers_url":"https://api.github.com/users/jszwedko/followers","following_url":"https://api.github.com/users/jszwedko/following{/other_user}","gists_url":"https://api.github.com/users/jszwedko/gists{/gist_id}","starred_url":"https://api.github.com/users/jszwedko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jszwedko/subscriptions","organizations_url":"https://api.github.com/users/jszwedko/orgs","repos_url":"https://api.github.com/users/jszwedko/repos","events_url":"https://api.github.com/users/jszwedko/events{/privacy}","received_events_url":"https://api.github.com/users/jszwedko/received_events","type":"User","site_admin":false},"committer":{"login":"jszwedko","id":316880,"avatar_url":"https://avatars2.githubusercontent.com/u/316880?v=4","gravatar_id":"","url":"https://api.github.com/users/jszwedko","html_url":"https://github.com/jszwedko","followers_url":"https://api.github.com/users/jszwedko/followers","following_url":"https://api.github.com/users/jszwedko/following{/other_user}","gists_url":"https://api.github.com/users/jszwedko/gists{/gist_id}","starred_url":"https://api.github.com/users/jszwedko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jszwedko/subscriptions","organizations_url":"https://api.github.com/users/jszwedko/orgs","repos_url":"https://api.github.com/users/jszwedko/repos","events_url":"https://api.github.com/users/jszwedko/events{/privacy}","received_events_url":"https://api.github.com/users/jszwedko/received_events","type":"User","site_admin":false},"parents":[{"sha":"e1712f381785e32046927f64a7c86fe569203196","url":"https://api.github.com/repos/urfave/cli/commits/e1712f381785e32046927f64a7c86fe569203196","html_url":"https://github.com/urfave/cli/commit/e1712f381785e32046927f64a7c86fe569203196"},{"sha":"2a9c617652b1f8a8e5db915dbe85cc0c0b1967ca","url":"https://api.github.com/repos/urfave/cli/commits/2a9c617652b1f8a8e5db915dbe85cc0c0b1967ca","html_url":"https://github.com/urfave/cli/commit/2a9c617652b1f8a8e5db915dbe85cc0c0b1967ca"}]},{"sha":"2a9c617652b1f8a8e5db915dbe85cc0c0b1967ca","commit":{"author":{"name":"Vishal Sodani","email":"vishalsodani@rediffmail.com","date":"2015-01-30T11:02:58Z"},"committer":{"name":"Vishal Sodani","email":"vishalsodani@rediffmail.com","date":"2015-01-30T11:02:58Z"},"message":"Fix sentence","tree":{"sha":"352b1e5ce04bff45bc3851bba2ad052be8c597b3","url":"https://api.github.com/repos/urfave/cli/git/trees/352b1e5ce04bff45bc3851bba2ad052be8c597b3"},"url":"https://api.github.com/repos/urfave/cli/git/commits/2a9c617652b1f8a8e5db915dbe85cc0c0b1967ca","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/urfave/cli/commits/2a9c617652b1f8a8e5db915dbe85cc0c0b1967ca","html_url":"https://github.com/urfave/cli/commit/2a9c617652b1f8a8e5db915dbe85cc0c0b1967ca","comments_url":"https://api.github.com/repos/urfave/cli/commits/2a9c617652b1f8a8e5db915dbe85cc0c0b1967ca/comments","author":{"login":"vishalsodani","id":364183,"avatar_url":"https://avatars1.githubusercontent.com/u/364183?v=4","gravatar_id":"","url":"https://api.github.com/users/vishalsodani","html_url":"https://github.com/vishalsodani","followers_url":"https://api.github.com/users/vishalsodani/followers","following_url":"https://api.github.com/users/vishalsodani/following{/other_user}","gists_url":"https://api.github.com/users/vishalsodani/gists{/gist_id}","starred_url":"https://api.github.com/users/vishalsodani/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vishalsodani/subscriptions","organizations_url":"https://api.github.com/users/vishalsodani/orgs","repos_url":"https://api.github.com/users/vishalsodani/repos","events_url":"https://api.github.com/users/vishalsodani/events{/privacy}","received_events_url":"https://api.github.com/users/vishalsodani/received_events","type":"User","site_admin":false},"committer":{"login":"vishalsodani","id":364183,"avatar_url":"https://avatars1.githubusercontent.com/u/364183?v=4","gravatar_id":"","url":"https://api.github.com/users/vishalsodani","html_url":"https://github.com/vishalsodani","followers_url":"https://api.github.com/users/vishalsodani/followers","following_url":"https://api.github.com/users/vishalsodani/following{/other_user}","gists_url":"https://api.github.com/users/vishalsodani/gists{/gist_id}","starred_url":"https://api.github.com/users/vishalsodani/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vishalsodani/subscriptions","organizations_url":"https://api.github.com/users/vishalsodani/orgs","repos_url":"https://api.github.com/users/vishalsodani/repos","events_url":"https://api.github.com/users/vishalsodani/events{/privacy}","received_events_url":"https://api.github.com/users/vishalsodani/received_events","type":"User","site_admin":false},"parents":[{"sha":"e1712f381785e32046927f64a7c86fe569203196","url":"https://api.github.com/repos/urfave/cli/commits/e1712f381785e32046927f64a7c86fe569203196","html_url":"https://github.com/urfave/cli/commit/e1712f381785e32046927f64a7c86fe569203196"}]}]
+
+GET https://api.github.com/repos/docker/docker/commits?sha=165ea5c158cff3fc40d476ffe233a5ccc03e7d61&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:35 GMT
+Etag: W/"34db223ca2675dba1c86dfaeea3a8311"
+Last-Modified: Wed, 04 Feb 2015 01:33:15 GMT
+Link: <https://api.github.com/repositories/7691631/commits?sha=165ea5c158cff3fc40d476ffe233a5ccc03e7d61&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/7691631/commits?sha=165ea5c158cff3fc40d476ffe233a5ccc03e7d61&per_page=2&page=6480>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B5F:274E6F:5A6FEBC7
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4739
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.038780
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"165ea5c158cff3fc40d476ffe233a5ccc03e7d61","commit":{"author":{"name":"Fred Lifton","email":"fred.lifton@docker.com","date":"2015-02-04T01:33:15Z"},"committer":{"name":"Fred Lifton","email":"fred.lifton@docker.com","date":"2015-02-04T01:33:15Z"},"message":"Merge pull request #10507 from jbruni/patch-1\n\nRemove File List","tree":{"sha":"1103521cae043d546142c331a37e13bfb9af7c9a","url":"https://api.github.com/repos/moby/moby/git/trees/1103521cae043d546142c331a37e13bfb9af7c9a"},"url":"https://api.github.com/repos/moby/moby/git/commits/165ea5c158cff3fc40d476ffe233a5ccc03e7d61","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/moby/moby/commits/165ea5c158cff3fc40d476ffe233a5ccc03e7d61","html_url":"https://github.com/moby/moby/commit/165ea5c158cff3fc40d476ffe233a5ccc03e7d61","comments_url":"https://api.github.com/repos/moby/moby/commits/165ea5c158cff3fc40d476ffe233a5ccc03e7d61/comments","author":null,"committer":null,"parents":[{"sha":"31c6419e58fb20ae7a013d361f32ed00bb4d6f3f","url":"https://api.github.com/repos/moby/moby/commits/31c6419e58fb20ae7a013d361f32ed00bb4d6f3f","html_url":"https://github.com/moby/moby/commit/31c6419e58fb20ae7a013d361f32ed00bb4d6f3f"},{"sha":"aceb735dbaa7845aeacfdaa62656de558554d8b7","url":"https://api.github.com/repos/moby/moby/commits/aceb735dbaa7845aeacfdaa62656de558554d8b7","html_url":"https://github.com/moby/moby/commit/aceb735dbaa7845aeacfdaa62656de558554d8b7"}]},{"sha":"31c6419e58fb20ae7a013d361f32ed00bb4d6f3f","commit":{"author":{"name":"Michael Crosby","email":"crosby.michael@gmail.com","date":"2015-02-04T01:12:05Z"},"committer":{"name":"Michael Crosby","email":"crosby.michael@gmail.com","date":"2015-02-04T01:12:05Z"},"message":"Merge pull request #10538 from vieux/update_MAINTAINERS\n\nupdate MAINTAINERS file","tree":{"sha":"39df759948c9a16a3fd7def6ba9c297b361ebd27","url":"https://api.github.com/repos/moby/moby/git/trees/39df759948c9a16a3fd7def6ba9c297b361ebd27"},"url":"https://api.github.com/repos/moby/moby/git/commits/31c6419e58fb20ae7a013d361f32ed00bb4d6f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/moby/moby/commits/31c6419e58fb20ae7a013d361f32ed00bb4d6f3f","html_url":"https://github.com/moby/moby/commit/31c6419e58fb20ae7a013d361f32ed00bb4d6f3f","comments_url":"https://api.github.com/repos/moby/moby/commits/31c6419e58fb20ae7a013d361f32ed00bb4d6f3f/comments","author":{"login":"crosbymichael","id":749551,"avatar_url":"https://avatars1.githubusercontent.com/u/749551?v=4","gravatar_id":"","url":"https://api.github.com/users/crosbymichael","html_url":"https://github.com/crosbymichael","followers_url":"https://api.github.com/users/crosbymichael/followers","following_url":"https://api.github.com/users/crosbymichael/following{/other_user}","gists_url":"https://api.github.com/users/crosbymichael/gists{/gist_id}","starred_url":"https://api.github.com/users/crosbymichael/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/crosbymichael/subscriptions","organizations_url":"https://api.github.com/users/crosbymichael/orgs","repos_url":"https://api.github.com/users/crosbymichael/repos","events_url":"https://api.github.com/users/crosbymichael/events{/privacy}","received_events_url":"https://api.github.com/users/crosbymichael/received_events","type":"User","site_admin":false},"committer":{"login":"crosbymichael","id":749551,"avatar_url":"https://avatars1.githubusercontent.com/u/749551?v=4","gravatar_id":"","url":"https://api.github.com/users/crosbymichael","html_url":"https://github.com/crosbymichael","followers_url":"https://api.github.com/users/crosbymichael/followers","following_url":"https://api.github.com/users/crosbymichael/following{/other_user}","gists_url":"https://api.github.com/users/crosbymichael/gists{/gist_id}","starred_url":"https://api.github.com/users/crosbymichael/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/crosbymichael/subscriptions","organizations_url":"https://api.github.com/users/crosbymichael/orgs","repos_url":"https://api.github.com/users/crosbymichael/repos","events_url":"https://api.github.com/users/crosbymichael/events{/privacy}","received_events_url":"https://api.github.com/users/crosbymichael/received_events","type":"User","site_admin":false},"parents":[{"sha":"944f76d444674b3e1969264925c66847b7a6dfa1","url":"https://api.github.com/repos/moby/moby/commits/944f76d444674b3e1969264925c66847b7a6dfa1","html_url":"https://github.com/moby/moby/commit/944f76d444674b3e1969264925c66847b7a6dfa1"},{"sha":"2e9c498e347bdd15befc5e38ce831d7b07a828aa","url":"https://api.github.com/repos/moby/moby/commits/2e9c498e347bdd15befc5e38ce831d7b07a828aa","html_url":"https://github.com/moby/moby/commit/2e9c498e347bdd15befc5e38ce831d7b07a828aa"}]}]
+
+GET https://api.github.com/repos/docker/libtrust/commits?sha=fa567046d9b14f6aa788882a950d69651d230b21&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:35 GMT
+Etag: W/"9e7b1a96e534b5f4812db07445fefbaf"
+Last-Modified: Wed, 14 Jan 2015 04:01:49 GMT
+Link: <https://api.github.com/repositories/20236298/commits?sha=fa567046d9b14f6aa788882a950d69651d230b21&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/20236298/commits?sha=fa567046d9b14f6aa788882a950d69651d230b21&per_page=2&page=30>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B67:274E7D:5A6FEBC7
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4738
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.043404
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"fa567046d9b14f6aa788882a950d69651d230b21","commit":{"author":{"name":"Stephen J Day","email":"stephen.day@docker.com","date":"2015-01-14T04:01:49Z"},"committer":{"name":"Stephen J Day","email":"stephen.day@docker.com","date":"2015-01-14T04:01:49Z"},"message":"Remove unnecessary use of pointer types\n\nTo simplify the code, some pointer type fields have been removed where it makes\nsense. Doing so should reduce the number of scattered heap allocations and\nsimplify areas where we copy into a struct.\n\nThere is probably more work that can be done to get the benefits of this change.\n\nSigned-off-by: Stephen J Day <stephen.day@docker.com>","tree":{"sha":"6e692e1bb47ca48576b63acb57c90745d895de74","url":"https://api.github.com/repos/docker/libtrust/git/trees/6e692e1bb47ca48576b63acb57c90745d895de74"},"url":"https://api.github.com/repos/docker/libtrust/git/commits/fa567046d9b14f6aa788882a950d69651d230b21","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/docker/libtrust/commits/fa567046d9b14f6aa788882a950d69651d230b21","html_url":"https://github.com/docker/libtrust/commit/fa567046d9b14f6aa788882a950d69651d230b21","comments_url":"https://api.github.com/repos/docker/libtrust/commits/fa567046d9b14f6aa788882a950d69651d230b21/comments","author":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"committer":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"parents":[{"sha":"03e0134165a5dc7b0c71ef9c7ef7d975fa2a7258","url":"https://api.github.com/repos/docker/libtrust/commits/03e0134165a5dc7b0c71ef9c7ef7d975fa2a7258","html_url":"https://github.com/docker/libtrust/commit/03e0134165a5dc7b0c71ef9c7ef7d975fa2a7258"}]},{"sha":"03e0134165a5dc7b0c71ef9c7ef7d975fa2a7258","commit":{"author":{"name":"Stephen J Day","email":"stephen.day@docker.com","date":"2015-01-14T03:47:50Z"},"committer":{"name":"Stephen J Day","email":"stephen.day@docker.com","date":"2015-01-14T03:47:50Z"},"message":"Provide methods to disassemble signatures in JWS\n\nThis adds (*JSONSignature).Signatures and modifies NewJSONSignature to allow\nworking with individual signature blobs. The blobs can be pulled off of a\nsignature, stored separately then merged back together. The signatures are\ntransported as byte slices.\n\nSigned-off-by: Stephen J Day <stephen.day@docker.com>","tree":{"sha":"c667ea281c53f7c4d89a7224bfa447139684d699","url":"https://api.github.com/repos/docker/libtrust/git/trees/c667ea281c53f7c4d89a7224bfa447139684d699"},"url":"https://api.github.com/repos/docker/libtrust/git/commits/03e0134165a5dc7b0c71ef9c7ef7d975fa2a7258","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/docker/libtrust/commits/03e0134165a5dc7b0c71ef9c7ef7d975fa2a7258","html_url":"https://github.com/docker/libtrust/commit/03e0134165a5dc7b0c71ef9c7ef7d975fa2a7258","comments_url":"https://api.github.com/repos/docker/libtrust/commits/03e0134165a5dc7b0c71ef9c7ef7d975fa2a7258/comments","author":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"committer":{"login":"stevvooe","id":120601,"avatar_url":"https://avatars1.githubusercontent.com/u/120601?v=4","gravatar_id":"","url":"https://api.github.com/users/stevvooe","html_url":"https://github.com/stevvooe","followers_url":"https://api.github.com/users/stevvooe/followers","following_url":"https://api.github.com/users/stevvooe/following{/other_user}","gists_url":"https://api.github.com/users/stevvooe/gists{/gist_id}","starred_url":"https://api.github.com/users/stevvooe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevvooe/subscriptions","organizations_url":"https://api.github.com/users/stevvooe/orgs","repos_url":"https://api.github.com/users/stevvooe/repos","events_url":"https://api.github.com/users/stevvooe/events{/privacy}","received_events_url":"https://api.github.com/users/stevvooe/received_events","type":"User","site_admin":false},"parents":[{"sha":"dddd1cbedd5bc3b579f8f91727641db7b0b0b02a","url":"https://api.github.com/repos/docker/libtrust/commits/dddd1cbedd5bc3b579f8f91727641db7b0b0b02a","html_url":"https://github.com/docker/libtrust/commit/dddd1cbedd5bc3b579f8f91727641db7b0b0b02a"}]}]
+
+GET https://api.github.com/repos/garyburd/redigo/commits?sha=535138d7bcd717d6531c701ef5933d98b1866257&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:35 GMT
+Etag: W/"4ca52440661f0a4676161e0867e17601"
+Last-Modified: Sun, 01 Mar 2015 18:00:06 GMT
+Link: <https://api.github.com/repositories/4022652/commits?sha=535138d7bcd717d6531c701ef5933d98b1866257&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/4022652/commits?sha=535138d7bcd717d6531c701ef5933d98b1866257&per_page=2&page=59>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B6E:274E8C:5A6FEBC7
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4737
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.047381
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"535138d7bcd717d6531c701ef5933d98b1866257","commit":{"author":{"name":"Gary Burd","email":"gary@beagledreams.com","date":"2015-03-01T18:00:06Z"},"committer":{"name":"Gary Burd","email":"gary@beagledreams.com","date":"2015-03-01T18:00:06Z"},"message":"Merge branch 'TheAJ-scanmap'","tree":{"sha":"1d6b0139b26bf1f0bc75bb4e779fd1c09f2524b6","url":"https://api.github.com/repos/garyburd/redigo/git/trees/1d6b0139b26bf1f0bc75bb4e779fd1c09f2524b6"},"url":"https://api.github.com/repos/garyburd/redigo/git/commits/535138d7bcd717d6531c701ef5933d98b1866257","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/garyburd/redigo/commits/535138d7bcd717d6531c701ef5933d98b1866257","html_url":"https://github.com/garyburd/redigo/commit/535138d7bcd717d6531c701ef5933d98b1866257","comments_url":"https://api.github.com/repos/garyburd/redigo/commits/535138d7bcd717d6531c701ef5933d98b1866257/comments","author":{"login":"garyburd","id":33411,"avatar_url":"https://avatars2.githubusercontent.com/u/33411?v=4","gravatar_id":"","url":"https://api.github.com/users/garyburd","html_url":"https://github.com/garyburd","followers_url":"https://api.github.com/users/garyburd/followers","following_url":"https://api.github.com/users/garyburd/following{/other_user}","gists_url":"https://api.github.com/users/garyburd/gists{/gist_id}","starred_url":"https://api.github.com/users/garyburd/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garyburd/subscriptions","organizations_url":"https://api.github.com/users/garyburd/orgs","repos_url":"https://api.github.com/users/garyburd/repos","events_url":"https://api.github.com/users/garyburd/events{/privacy}","received_events_url":"https://api.github.com/users/garyburd/received_events","type":"User","site_admin":false},"committer":{"login":"garyburd","id":33411,"avatar_url":"https://avatars2.githubusercontent.com/u/33411?v=4","gravatar_id":"","url":"https://api.github.com/users/garyburd","html_url":"https://github.com/garyburd","followers_url":"https://api.github.com/users/garyburd/followers","following_url":"https://api.github.com/users/garyburd/following{/other_user}","gists_url":"https://api.github.com/users/garyburd/gists{/gist_id}","starred_url":"https://api.github.com/users/garyburd/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garyburd/subscriptions","organizations_url":"https://api.github.com/users/garyburd/orgs","repos_url":"https://api.github.com/users/garyburd/repos","events_url":"https://api.github.com/users/garyburd/events{/privacy}","received_events_url":"https://api.github.com/users/garyburd/received_events","type":"User","site_admin":false},"parents":[{"sha":"785e0ca9319196b94fd61abd4c9eab5c11777377","url":"https://api.github.com/repos/garyburd/redigo/commits/785e0ca9319196b94fd61abd4c9eab5c11777377","html_url":"https://github.com/garyburd/redigo/commit/785e0ca9319196b94fd61abd4c9eab5c11777377"},{"sha":"2668ae2944701f73206a228638407926dea859b1","url":"https://api.github.com/repos/garyburd/redigo/commits/2668ae2944701f73206a228638407926dea859b1","html_url":"https://github.com/garyburd/redigo/commit/2668ae2944701f73206a228638407926dea859b1"}]},{"sha":"2668ae2944701f73206a228638407926dea859b1","commit":{"author":{"name":"TheAJ","email":"ajravindiran@gmail.com","date":"2015-03-01T04:43:01Z"},"committer":{"name":"TheAJ","email":"ajravindiran@gmail.com","date":"2015-03-01T06:04:19Z"},"message":"StringMap function","tree":{"sha":"1d6b0139b26bf1f0bc75bb4e779fd1c09f2524b6","url":"https://api.github.com/repos/garyburd/redigo/git/trees/1d6b0139b26bf1f0bc75bb4e779fd1c09f2524b6"},"url":"https://api.github.com/repos/garyburd/redigo/git/commits/2668ae2944701f73206a228638407926dea859b1","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/garyburd/redigo/commits/2668ae2944701f73206a228638407926dea859b1","html_url":"https://github.com/garyburd/redigo/commit/2668ae2944701f73206a228638407926dea859b1","comments_url":"https://api.github.com/repos/garyburd/redigo/commits/2668ae2944701f73206a228638407926dea859b1/comments","author":{"login":"TheAJ","id":1740540,"avatar_url":"https://avatars3.githubusercontent.com/u/1740540?v=4","gravatar_id":"","url":"https://api.github.com/users/TheAJ","html_url":"https://github.com/TheAJ","followers_url":"https://api.github.com/users/TheAJ/followers","following_url":"https://api.github.com/users/TheAJ/following{/other_user}","gists_url":"https://api.github.com/users/TheAJ/gists{/gist_id}","starred_url":"https://api.github.com/users/TheAJ/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheAJ/subscriptions","organizations_url":"https://api.github.com/users/TheAJ/orgs","repos_url":"https://api.github.com/users/TheAJ/repos","events_url":"https://api.github.com/users/TheAJ/events{/privacy}","received_events_url":"https://api.github.com/users/TheAJ/received_events","type":"User","site_admin":false},"committer":{"login":"TheAJ","id":1740540,"avatar_url":"https://avatars3.githubusercontent.com/u/1740540?v=4","gravatar_id":"","url":"https://api.github.com/users/TheAJ","html_url":"https://github.com/TheAJ","followers_url":"https://api.github.com/users/TheAJ/followers","following_url":"https://api.github.com/users/TheAJ/following{/other_user}","gists_url":"https://api.github.com/users/TheAJ/gists{/gist_id}","starred_url":"https://api.github.com/users/TheAJ/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheAJ/subscriptions","organizations_url":"https://api.github.com/users/TheAJ/orgs","repos_url":"https://api.github.com/users/TheAJ/repos","events_url":"https://api.github.com/users/TheAJ/events{/privacy}","received_events_url":"https://api.github.com/users/TheAJ/received_events","type":"User","site_admin":false},"parents":[{"sha":"785e0ca9319196b94fd61abd4c9eab5c11777377","url":"https://api.github.com/repos/garyburd/redigo/commits/785e0ca9319196b94fd61abd4c9eab5c11777377","html_url":"https://github.com/garyburd/redigo/commit/785e0ca9319196b94fd61abd4c9eab5c11777377"}]}]
+
+GET https://api.github.com/repos/gorilla/context/commits?sha=14f550f51af52180c2eefed15e5fd18d63c0a64a&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:35 GMT
+Etag: W/"c351e6e41d9145212ed2374d726b739f"
+Last-Modified: Wed, 04 Jun 2014 16:11:50 GMT
+Link: <https://api.github.com/repositories/6051928/commits?sha=14f550f51af52180c2eefed15e5fd18d63c0a64a&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/6051928/commits?sha=14f550f51af52180c2eefed15e5fd18d63c0a64a&per_page=2&page=18>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B75:274E98:5A6FEBC7
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4736
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.054708
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"14f550f51af52180c2eefed15e5fd18d63c0a64a","commit":{"author":{"name":"Kamil Kisiel","email":"kamil@kamilkisiel.net","date":"2014-06-04T16:11:50Z"},"committer":{"name":"Kamil Kisiel","email":"kamil@kamilkisiel.net","date":"2014-06-04T16:11:50Z"},"message":"Merge pull request #14 from LK4D4/fix_race_in_get\n\nFix racy code in Get","tree":{"sha":"d702f1a40a9ca4eaa11b5908f7d3652704be78b9","url":"https://api.github.com/repos/gorilla/context/git/trees/d702f1a40a9ca4eaa11b5908f7d3652704be78b9"},"url":"https://api.github.com/repos/gorilla/context/git/commits/14f550f51af52180c2eefed15e5fd18d63c0a64a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/gorilla/context/commits/14f550f51af52180c2eefed15e5fd18d63c0a64a","html_url":"https://github.com/gorilla/context/commit/14f550f51af52180c2eefed15e5fd18d63c0a64a","comments_url":"https://api.github.com/repos/gorilla/context/commits/14f550f51af52180c2eefed15e5fd18d63c0a64a/comments","author":{"login":"kisielk","id":58618,"avatar_url":"https://avatars2.githubusercontent.com/u/58618?v=4","gravatar_id":"","url":"https://api.github.com/users/kisielk","html_url":"https://github.com/kisielk","followers_url":"https://api.github.com/users/kisielk/followers","following_url":"https://api.github.com/users/kisielk/following{/other_user}","gists_url":"https://api.github.com/users/kisielk/gists{/gist_id}","starred_url":"https://api.github.com/users/kisielk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kisielk/subscriptions","organizations_url":"https://api.github.com/users/kisielk/orgs","repos_url":"https://api.github.com/users/kisielk/repos","events_url":"https://api.github.com/users/kisielk/events{/privacy}","received_events_url":"https://api.github.com/users/kisielk/received_events","type":"User","site_admin":false},"committer":{"login":"kisielk","id":58618,"avatar_url":"https://avatars2.githubusercontent.com/u/58618?v=4","gravatar_id":"","url":"https://api.github.com/users/kisielk","html_url":"https://github.com/kisielk","followers_url":"https://api.github.com/users/kisielk/followers","following_url":"https://api.github.com/users/kisielk/following{/other_user}","gists_url":"https://api.github.com/users/kisielk/gists{/gist_id}","starred_url":"https://api.github.com/users/kisielk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kisielk/subscriptions","organizations_url":"https://api.github.com/users/kisielk/orgs","repos_url":"https://api.github.com/users/kisielk/repos","events_url":"https://api.github.com/users/kisielk/events{/privacy}","received_events_url":"https://api.github.com/users/kisielk/received_events","type":"User","site_admin":false},"parents":[{"sha":"1f3e8a46c5bb4c29971d9867ede6e198ca5eddce","url":"https://api.github.com/repos/gorilla/context/commits/1f3e8a46c5bb4c29971d9867ede6e198ca5eddce","html_url":"https://github.com/gorilla/context/commit/1f3e8a46c5bb4c29971d9867ede6e198ca5eddce"},{"sha":"9af56363a72d2e9f29d444682583074e4d05a213","url":"https://api.github.com/repos/gorilla/context/commits/9af56363a72d2e9f29d444682583074e4d05a213","html_url":"https://github.com/gorilla/context/commit/9af56363a72d2e9f29d444682583074e4d05a213"}]},{"sha":"9af56363a72d2e9f29d444682583074e4d05a213","commit":{"author":{"name":"Alexandr Morozov","email":"lk4d4math@gmail.com","date":"2014-06-04T14:45:55Z"},"committer":{"name":"Alexandr Morozov","email":"amorozov@ivi.ru","date":"2014-06-04T15:58:59Z"},"message":"Fix racy code in Get","tree":{"sha":"d702f1a40a9ca4eaa11b5908f7d3652704be78b9","url":"https://api.github.com/repos/gorilla/context/git/trees/d702f1a40a9ca4eaa11b5908f7d3652704be78b9"},"url":"https://api.github.com/repos/gorilla/context/git/commits/9af56363a72d2e9f29d444682583074e4d05a213","comment_count":4,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/gorilla/context/commits/9af56363a72d2e9f29d444682583074e4d05a213","html_url":"https://github.com/gorilla/context/commit/9af56363a72d2e9f29d444682583074e4d05a213","comments_url":"https://api.github.com/repos/gorilla/context/commits/9af56363a72d2e9f29d444682583074e4d05a213/comments","author":{"login":"LK4D4","id":101445,"avatar_url":"https://avatars2.githubusercontent.com/u/101445?v=4","gravatar_id":"","url":"https://api.github.com/users/LK4D4","html_url":"https://github.com/LK4D4","followers_url":"https://api.github.com/users/LK4D4/followers","following_url":"https://api.github.com/users/LK4D4/following{/other_user}","gists_url":"https://api.github.com/users/LK4D4/gists{/gist_id}","starred_url":"https://api.github.com/users/LK4D4/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LK4D4/subscriptions","organizations_url":"https://api.github.com/users/LK4D4/orgs","repos_url":"https://api.github.com/users/LK4D4/repos","events_url":"https://api.github.com/users/LK4D4/events{/privacy}","received_events_url":"https://api.github.com/users/LK4D4/received_events","type":"User","site_admin":false},"committer":null,"parents":[{"sha":"1f3e8a46c5bb4c29971d9867ede6e198ca5eddce","url":"https://api.github.com/repos/gorilla/context/commits/1f3e8a46c5bb4c29971d9867ede6e198ca5eddce","html_url":"https://github.com/gorilla/context/commit/1f3e8a46c5bb4c29971d9867ede6e198ca5eddce"}]}]
+
+GET https://api.github.com/repos/gorilla/handlers/commits?sha=0e84b7d810c16aed432217e330206be156bafae0&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:35 GMT
+Etag: W/"aed6599fd2ce309dc970a85f8bd174c7"
+Last-Modified: Mon, 25 Aug 2014 15:07:57 GMT
+Link: <https://api.github.com/repositories/7951393/commits?sha=0e84b7d810c16aed432217e330206be156bafae0&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/7951393/commits?sha=0e84b7d810c16aed432217e330206be156bafae0&per_page=2&page=21>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B7E:274EA3:5A6FEBC7
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4735
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.041439
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"0e84b7d810c16aed432217e330206be156bafae0","commit":{"author":{"name":"Kamil Kisiel","email":"kamil@kamilkisiel.net","date":"2014-08-25T15:07:57Z"},"committer":{"name":"Kamil Kisiel","email":"kamil@kamilkisiel.net","date":"2014-08-25T15:07:57Z"},"message":"Merge pull request #21 from vincent-petithory/more-handlers\n\nContent-Type and HTTP method override handlers","tree":{"sha":"a411c048ca1c22a1ed7408fb16300041b5c91207","url":"https://api.github.com/repos/gorilla/handlers/git/trees/a411c048ca1c22a1ed7408fb16300041b5c91207"},"url":"https://api.github.com/repos/gorilla/handlers/git/commits/0e84b7d810c16aed432217e330206be156bafae0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/gorilla/handlers/commits/0e84b7d810c16aed432217e330206be156bafae0","html_url":"https://github.com/gorilla/handlers/commit/0e84b7d810c16aed432217e330206be156bafae0","comments_url":"https://api.github.com/repos/gorilla/handlers/commits/0e84b7d810c16aed432217e330206be156bafae0/comments","author":{"login":"kisielk","id":58618,"avatar_url":"https://avatars2.githubusercontent.com/u/58618?v=4","gravatar_id":"","url":"https://api.github.com/users/kisielk","html_url":"https://github.com/kisielk","followers_url":"https://api.github.com/users/kisielk/followers","following_url":"https://api.github.com/users/kisielk/following{/other_user}","gists_url":"https://api.github.com/users/kisielk/gists{/gist_id}","starred_url":"https://api.github.com/users/kisielk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kisielk/subscriptions","organizations_url":"https://api.github.com/users/kisielk/orgs","repos_url":"https://api.github.com/users/kisielk/repos","events_url":"https://api.github.com/users/kisielk/events{/privacy}","received_events_url":"https://api.github.com/users/kisielk/received_events","type":"User","site_admin":false},"committer":{"login":"kisielk","id":58618,"avatar_url":"https://avatars2.githubusercontent.com/u/58618?v=4","gravatar_id":"","url":"https://api.github.com/users/kisielk","html_url":"https://github.com/kisielk","followers_url":"https://api.github.com/users/kisielk/followers","following_url":"https://api.github.com/users/kisielk/following{/other_user}","gists_url":"https://api.github.com/users/kisielk/gists{/gist_id}","starred_url":"https://api.github.com/users/kisielk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kisielk/subscriptions","organizations_url":"https://api.github.com/users/kisielk/orgs","repos_url":"https://api.github.com/users/kisielk/repos","events_url":"https://api.github.com/users/kisielk/events{/privacy}","received_events_url":"https://api.github.com/users/kisielk/received_events","type":"User","site_admin":false},"parents":[{"sha":"42d7c9b5036711e84df44328d7640c8b2079b4ec","url":"https://api.github.com/repos/gorilla/handlers/commits/42d7c9b5036711e84df44328d7640c8b2079b4ec","html_url":"https://github.com/gorilla/handlers/commit/42d7c9b5036711e84df44328d7640c8b2079b4ec"},{"sha":"ff8fefaa426e1696a8643b272273f1c9d2e2d7c2","url":"https://api.github.com/repos/gorilla/handlers/commits/ff8fefaa426e1696a8643b272273f1c9d2e2d7c2","html_url":"https://github.com/gorilla/handlers/commit/ff8fefaa426e1696a8643b272273f1c9d2e2d7c2"}]},{"sha":"ff8fefaa426e1696a8643b272273f1c9d2e2d7c2","commit":{"author":{"name":"Vincent Petithory","email":"vincent.petithory@gmail.com","date":"2014-08-23T21:23:51Z"},"committer":{"name":"Vincent Petithory","email":"vincent.petithory@gmail.com","date":"2014-08-23T22:34:01Z"},"message":"Add HTTPMethodOverrideHandler:\n\n This handler allows to override the HTTP request method using\n a header or a form key.","tree":{"sha":"a411c048ca1c22a1ed7408fb16300041b5c91207","url":"https://api.github.com/repos/gorilla/handlers/git/trees/a411c048ca1c22a1ed7408fb16300041b5c91207"},"url":"https://api.github.com/repos/gorilla/handlers/git/commits/ff8fefaa426e1696a8643b272273f1c9d2e2d7c2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/gorilla/handlers/commits/ff8fefaa426e1696a8643b272273f1c9d2e2d7c2","html_url":"https://github.com/gorilla/handlers/commit/ff8fefaa426e1696a8643b272273f1c9d2e2d7c2","comments_url":"https://api.github.com/repos/gorilla/handlers/commits/ff8fefaa426e1696a8643b272273f1c9d2e2d7c2/comments","author":{"login":"vincent-petithory","id":110640,"avatar_url":"https://avatars2.githubusercontent.com/u/110640?v=4","gravatar_id":"","url":"https://api.github.com/users/vincent-petithory","html_url":"https://github.com/vincent-petithory","followers_url":"https://api.github.com/users/vincent-petithory/followers","following_url":"https://api.github.com/users/vincent-petithory/following{/other_user}","gists_url":"https://api.github.com/users/vincent-petithory/gists{/gist_id}","starred_url":"https://api.github.com/users/vincent-petithory/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vincent-petithory/subscriptions","organizations_url":"https://api.github.com/users/vincent-petithory/orgs","repos_url":"https://api.github.com/users/vincent-petithory/repos","events_url":"https://api.github.com/users/vincent-petithory/events{/privacy}","received_events_url":"https://api.github.com/users/vincent-petithory/received_events","type":"User","site_admin":false},"committer":{"login":"vincent-petithory","id":110640,"avatar_url":"https://avatars2.githubusercontent.com/u/110640?v=4","gravatar_id":"","url":"https://api.github.com/users/vincent-petithory","html_url":"https://github.com/vincent-petithory","followers_url":"https://api.github.com/users/vincent-petithory/followers","following_url":"https://api.github.com/users/vincent-petithory/following{/other_user}","gists_url":"https://api.github.com/users/vincent-petithory/gists{/gist_id}","starred_url":"https://api.github.com/users/vincent-petithory/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vincent-petithory/subscriptions","organizations_url":"https://api.github.com/users/vincent-petithory/orgs","repos_url":"https://api.github.com/users/vincent-petithory/repos","events_url":"https://api.github.com/users/vincent-petithory/events{/privacy}","received_events_url":"https://api.github.com/users/vincent-petithory/received_events","type":"User","site_admin":false},"parents":[{"sha":"59a51c28f1a9c1435d93b175ee6f7c010b5ff3f5","url":"https://api.github.com/repos/gorilla/handlers/commits/59a51c28f1a9c1435d93b175ee6f7c010b5ff3f5","html_url":"https://github.com/gorilla/handlers/commit/59a51c28f1a9c1435d93b175ee6f7c010b5ff3f5"}]}]
+
+GET https://api.github.com/repos/gorilla/mux/commits?sha=e444e69cbd2e2e3e0749a2f3c717cec491552bbf&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:36 GMT
+Etag: W/"102b9f2c634345848b3ba9650c5d4007"
+Last-Modified: Fri, 26 Sep 2014 15:38:14 GMT
+Link: <https://api.github.com/repositories/6051812/commits?sha=e444e69cbd2e2e3e0749a2f3c717cec491552bbf&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/6051812/commits?sha=e444e69cbd2e2e3e0749a2f3c717cec491552bbf&per_page=2&page=29>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B86:274EAD:5A6FEBC7
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4734
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.044586
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"e444e69cbd2e2e3e0749a2f3c717cec491552bbf","commit":{"author":{"name":"Kamil Kisiel","email":"kamil@kamilkisiel.net","date":"2014-09-26T15:38:14Z"},"committer":{"name":"Kamil Kisiel","email":"kamil@kamilkisiel.net","date":"2014-09-26T15:38:14Z"},"message":"Merge pull request #71 from Madrigal/patch-1\n\nRearrange code","tree":{"sha":"0011ec90dfdb783974c478b3fbb831dcee6a79c4","url":"https://api.github.com/repos/gorilla/mux/git/trees/0011ec90dfdb783974c478b3fbb831dcee6a79c4"},"url":"https://api.github.com/repos/gorilla/mux/git/commits/e444e69cbd2e2e3e0749a2f3c717cec491552bbf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/gorilla/mux/commits/e444e69cbd2e2e3e0749a2f3c717cec491552bbf","html_url":"https://github.com/gorilla/mux/commit/e444e69cbd2e2e3e0749a2f3c717cec491552bbf","comments_url":"https://api.github.com/repos/gorilla/mux/commits/e444e69cbd2e2e3e0749a2f3c717cec491552bbf/comments","author":{"login":"kisielk","id":58618,"avatar_url":"https://avatars2.githubusercontent.com/u/58618?v=4","gravatar_id":"","url":"https://api.github.com/users/kisielk","html_url":"https://github.com/kisielk","followers_url":"https://api.github.com/users/kisielk/followers","following_url":"https://api.github.com/users/kisielk/following{/other_user}","gists_url":"https://api.github.com/users/kisielk/gists{/gist_id}","starred_url":"https://api.github.com/users/kisielk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kisielk/subscriptions","organizations_url":"https://api.github.com/users/kisielk/orgs","repos_url":"https://api.github.com/users/kisielk/repos","events_url":"https://api.github.com/users/kisielk/events{/privacy}","received_events_url":"https://api.github.com/users/kisielk/received_events","type":"User","site_admin":false},"committer":{"login":"kisielk","id":58618,"avatar_url":"https://avatars2.githubusercontent.com/u/58618?v=4","gravatar_id":"","url":"https://api.github.com/users/kisielk","html_url":"https://github.com/kisielk","followers_url":"https://api.github.com/users/kisielk/followers","following_url":"https://api.github.com/users/kisielk/following{/other_user}","gists_url":"https://api.github.com/users/kisielk/gists{/gist_id}","starred_url":"https://api.github.com/users/kisielk/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kisielk/subscriptions","organizations_url":"https://api.github.com/users/kisielk/orgs","repos_url":"https://api.github.com/users/kisielk/repos","events_url":"https://api.github.com/users/kisielk/events{/privacy}","received_events_url":"https://api.github.com/users/kisielk/received_events","type":"User","site_admin":false},"parents":[{"sha":"4b8fbc56f3b2400a7c7ea3dba9b3539787c486b6","url":"https://api.github.com/repos/gorilla/mux/commits/4b8fbc56f3b2400a7c7ea3dba9b3539787c486b6","html_url":"https://github.com/gorilla/mux/commit/4b8fbc56f3b2400a7c7ea3dba9b3539787c486b6"},{"sha":"d7e46398189abd89d18d874e3c53b42d492002b8","url":"https://api.github.com/repos/gorilla/mux/commits/d7e46398189abd89d18d874e3c53b42d492002b8","html_url":"https://github.com/gorilla/mux/commit/d7e46398189abd89d18d874e3c53b42d492002b8"}]},{"sha":"d7e46398189abd89d18d874e3c53b42d492002b8","commit":{"author":{"name":"Felipe Madrigal","email":"luis.felipe@ooyala.com","date":"2014-09-26T05:20:46Z"},"committer":{"name":"Felipe Madrigal","email":"luis.felipe@ooyala.com","date":"2014-09-26T05:20:46Z"},"message":"Rearrange rules for matching strict slash","tree":{"sha":"0011ec90dfdb783974c478b3fbb831dcee6a79c4","url":"https://api.github.com/repos/gorilla/mux/git/trees/0011ec90dfdb783974c478b3fbb831dcee6a79c4"},"url":"https://api.github.com/repos/gorilla/mux/git/commits/d7e46398189abd89d18d874e3c53b42d492002b8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/gorilla/mux/commits/d7e46398189abd89d18d874e3c53b42d492002b8","html_url":"https://github.com/gorilla/mux/commit/d7e46398189abd89d18d874e3c53b42d492002b8","comments_url":"https://api.github.com/repos/gorilla/mux/commits/d7e46398189abd89d18d874e3c53b42d492002b8/comments","author":null,"committer":null,"parents":[{"sha":"8df3a80fb8cd2b280d3b0b7d809ad80c1d0be236","url":"https://api.github.com/repos/gorilla/mux/commits/8df3a80fb8cd2b280d3b0b7d809ad80c1d0be236","html_url":"https://github.com/gorilla/mux/commit/8df3a80fb8cd2b280d3b0b7d809ad80c1d0be236"}]}]
+
+GET https://api.github.com/repos/jlhawn/go-crypto/commits?sha=cd738dde20f0b3782516181b0866c9bb9db47401&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:36 GMT
+Etag: W/"86c550585167224a486d660d0f573239"
+Last-Modified: Wed, 01 Apr 2015 21:38:27 GMT
+Link: <https://api.github.com/repositories/32612244/commits?sha=cd738dde20f0b3782516181b0866c9bb9db47401&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/32612244/commits?sha=cd738dde20f0b3782516181b0866c9bb9db47401&per_page=2&page=6>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B8D:274EBC:5A6FEBC8
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4733
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.058798
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"cd738dde20f0b3782516181b0866c9bb9db47401","commit":{"author":{"name":"Josh Hawn","email":"josh.hawn@docker.com","date":"2015-04-01T21:38:27Z"},"committer":{"name":"Josh Hawn","email":"josh.hawn@docker.com","date":"2015-04-01T21:38:27Z"},"message":"Refactor the comparison tests\n\nThey're now more readable and no longer reset the stdlib hasher with\never iteration of the test loop. It's also now more explicit that we\nare comparing it with Go's stdlib hashers.\n\nDocker-DCO-1.1-Signed-off-by: Josh Hawn <josh.hawn@docker.com> (github: jlhawn)","tree":{"sha":"d0c263c0df2377aeb8725451a053a24b15c182ab","url":"https://api.github.com/repos/jlhawn/go-crypto/git/trees/d0c263c0df2377aeb8725451a053a24b15c182ab"},"url":"https://api.github.com/repos/jlhawn/go-crypto/git/commits/cd738dde20f0b3782516181b0866c9bb9db47401","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/jlhawn/go-crypto/commits/cd738dde20f0b3782516181b0866c9bb9db47401","html_url":"https://github.com/jlhawn/go-crypto/commit/cd738dde20f0b3782516181b0866c9bb9db47401","comments_url":"https://api.github.com/repos/jlhawn/go-crypto/commits/cd738dde20f0b3782516181b0866c9bb9db47401/comments","author":{"login":"jlhawn","id":1441929,"avatar_url":"https://avatars2.githubusercontent.com/u/1441929?v=4","gravatar_id":"","url":"https://api.github.com/users/jlhawn","html_url":"https://github.com/jlhawn","followers_url":"https://api.github.com/users/jlhawn/followers","following_url":"https://api.github.com/users/jlhawn/following{/other_user}","gists_url":"https://api.github.com/users/jlhawn/gists{/gist_id}","starred_url":"https://api.github.com/users/jlhawn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jlhawn/subscriptions","organizations_url":"https://api.github.com/users/jlhawn/orgs","repos_url":"https://api.github.com/users/jlhawn/repos","events_url":"https://api.github.com/users/jlhawn/events{/privacy}","received_events_url":"https://api.github.com/users/jlhawn/received_events","type":"User","site_admin":false},"committer":{"login":"jlhawn","id":1441929,"avatar_url":"https://avatars2.githubusercontent.com/u/1441929?v=4","gravatar_id":"","url":"https://api.github.com/users/jlhawn","html_url":"https://github.com/jlhawn","followers_url":"https://api.github.com/users/jlhawn/followers","following_url":"https://api.github.com/users/jlhawn/following{/other_user}","gists_url":"https://api.github.com/users/jlhawn/gists{/gist_id}","starred_url":"https://api.github.com/users/jlhawn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jlhawn/subscriptions","organizations_url":"https://api.github.com/users/jlhawn/orgs","repos_url":"https://api.github.com/users/jlhawn/repos","events_url":"https://api.github.com/users/jlhawn/events{/privacy}","received_events_url":"https://api.github.com/users/jlhawn/received_events","type":"User","site_admin":false},"parents":[{"sha":"64e8498eca2be36096c07c091284937daa025a68","url":"https://api.github.com/repos/jlhawn/go-crypto/commits/64e8498eca2be36096c07c091284937daa025a68","html_url":"https://github.com/jlhawn/go-crypto/commit/64e8498eca2be36096c07c091284937daa025a68"}]},{"sha":"64e8498eca2be36096c07c091284937daa025a68","commit":{"author":{"name":"Josh Hawn","email":"josh.hawn@docker.com","date":"2015-04-01T19:03:14Z"},"committer":{"name":"Josh Hawn","email":"josh.hawn@docker.com","date":"2015-04-01T19:03:14Z"},"message":"Move resumable functions to a separate source file\n\nDocker-DCO-1.1-Signed-off-by: Josh Hawn <josh.hawn@docker.com> (github: jlhawn)","tree":{"sha":"82d169cd6a599095e53c89bfddfb4419ce4becd7","url":"https://api.github.com/repos/jlhawn/go-crypto/git/trees/82d169cd6a599095e53c89bfddfb4419ce4becd7"},"url":"https://api.github.com/repos/jlhawn/go-crypto/git/commits/64e8498eca2be36096c07c091284937daa025a68","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/jlhawn/go-crypto/commits/64e8498eca2be36096c07c091284937daa025a68","html_url":"https://github.com/jlhawn/go-crypto/commit/64e8498eca2be36096c07c091284937daa025a68","comments_url":"https://api.github.com/repos/jlhawn/go-crypto/commits/64e8498eca2be36096c07c091284937daa025a68/comments","author":{"login":"jlhawn","id":1441929,"avatar_url":"https://avatars2.githubusercontent.com/u/1441929?v=4","gravatar_id":"","url":"https://api.github.com/users/jlhawn","html_url":"https://github.com/jlhawn","followers_url":"https://api.github.com/users/jlhawn/followers","following_url":"https://api.github.com/users/jlhawn/following{/other_user}","gists_url":"https://api.github.com/users/jlhawn/gists{/gist_id}","starred_url":"https://api.github.com/users/jlhawn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jlhawn/subscriptions","organizations_url":"https://api.github.com/users/jlhawn/orgs","repos_url":"https://api.github.com/users/jlhawn/repos","events_url":"https://api.github.com/users/jlhawn/events{/privacy}","received_events_url":"https://api.github.com/users/jlhawn/received_events","type":"User","site_admin":false},"committer":{"login":"jlhawn","id":1441929,"avatar_url":"https://avatars2.githubusercontent.com/u/1441929?v=4","gravatar_id":"","url":"https://api.github.com/users/jlhawn","html_url":"https://github.com/jlhawn","followers_url":"https://api.github.com/users/jlhawn/followers","following_url":"https://api.github.com/users/jlhawn/following{/other_user}","gists_url":"https://api.github.com/users/jlhawn/gists{/gist_id}","starred_url":"https://api.github.com/users/jlhawn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jlhawn/subscriptions","organizations_url":"https://api.github.com/users/jlhawn/orgs","repos_url":"https://api.github.com/users/jlhawn/repos","events_url":"https://api.github.com/users/jlhawn/events{/privacy}","received_events_url":"https://api.github.com/users/jlhawn/received_events","type":"User","site_admin":false},"parents":[{"sha":"b10ea8719fa7d8d25b39c31ba42bee7b7646eaa0","url":"https://api.github.com/repos/jlhawn/go-crypto/commits/b10ea8719fa7d8d25b39c31ba42bee7b7646eaa0","html_url":"https://github.com/jlhawn/go-crypto/commit/b10ea8719fa7d8d25b39c31ba42bee7b7646eaa0"}]}]
+
+GET https://api.github.com/repos/yvasiyarov/go-metrics/commits?sha=57bccd1ccd43f94bb17fdd8bf3007059b802f85e&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:36 GMT
+Etag: W/"846bf914f73ebe13a1cd4e217b99a589"
+Last-Modified: Fri, 26 Sep 2014 11:03:28 GMT
+Link: <https://api.github.com/repositories/13006296/commits?sha=57bccd1ccd43f94bb17fdd8bf3007059b802f85e&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/13006296/commits?sha=57bccd1ccd43f94bb17fdd8bf3007059b802f85e&per_page=2&page=118>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B97:274ECF:5A6FEBC8
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4732
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.033140
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"57bccd1ccd43f94bb17fdd8bf3007059b802f85e","commit":{"author":{"name":"Yuriy Vasiyarov","email":"yuriy.vasiyarov@lazada.com","date":"2014-09-26T10:54:11Z"},"committer":{"name":"Yuriy Vasiyarov","email":"yuriy.vasiyarov@lazada.com","date":"2014-09-26T11:03:28Z"},"message":"Fix reporting for NumCgoCall() and apply go fmt","tree":{"sha":"d5cdbae59c89bc4e9504ee83d1169629079ade5a","url":"https://api.github.com/repos/yvasiyarov/go-metrics/git/trees/d5cdbae59c89bc4e9504ee83d1169629079ade5a"},"url":"https://api.github.com/repos/yvasiyarov/go-metrics/git/commits/57bccd1ccd43f94bb17fdd8bf3007059b802f85e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/yvasiyarov/go-metrics/commits/57bccd1ccd43f94bb17fdd8bf3007059b802f85e","html_url":"https://github.com/yvasiyarov/go-metrics/commit/57bccd1ccd43f94bb17fdd8bf3007059b802f85e","comments_url":"https://api.github.com/repos/yvasiyarov/go-metrics/commits/57bccd1ccd43f94bb17fdd8bf3007059b802f85e/comments","author":null,"committer":null,"parents":[{"sha":"fbfb859578274920b14381048fadaefb55cb462d","url":"https://api.github.com/repos/yvasiyarov/go-metrics/commits/fbfb859578274920b14381048fadaefb55cb462d","html_url":"https://github.com/yvasiyarov/go-metrics/commit/fbfb859578274920b14381048fadaefb55cb462d"}]},{"sha":"fbfb859578274920b14381048fadaefb55cb462d","commit":{"author":{"name":"Yuriy Vasiyarov","email":"yuriy.vasiyarov@lazada.com","date":"2014-07-26T12:51:00Z"},"committer":{"name":"Yuriy Vasiyarov","email":"yuriy.vasiyarov@lazada.com","date":"2014-09-26T10:37:16Z"},"message":"Add prefix support","tree":{"sha":"03b453cbd915855c2876810f890de2c57543173c","url":"https://api.github.com/repos/yvasiyarov/go-metrics/git/trees/03b453cbd915855c2876810f890de2c57543173c"},"url":"https://api.github.com/repos/yvasiyarov/go-metrics/git/commits/fbfb859578274920b14381048fadaefb55cb462d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/yvasiyarov/go-metrics/commits/fbfb859578274920b14381048fadaefb55cb462d","html_url":"https://github.com/yvasiyarov/go-metrics/commit/fbfb859578274920b14381048fadaefb55cb462d","comments_url":"https://api.github.com/repos/yvasiyarov/go-metrics/commits/fbfb859578274920b14381048fadaefb55cb462d/comments","author":null,"committer":null,"parents":[{"sha":"dc42d45218778850334afa8c0758e3e00ebf6f22","url":"https://api.github.com/repos/yvasiyarov/go-metrics/commits/dc42d45218778850334afa8c0758e3e00ebf6f22","html_url":"https://github.com/yvasiyarov/go-metrics/commit/dc42d45218778850334afa8c0758e3e00ebf6f22"}]}]
+
+GET https://api.github.com/repos/yvasiyarov/gorelic/commits?sha=a9bba5b9ab508a086f9a12b8c51fab68478e2128&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:36 GMT
+Etag: W/"ad2933a5216e038eee3de1087667bcf2"
+Last-Modified: Fri, 12 Dec 2014 07:35:37 GMT
+Link: <https://api.github.com/repositories/9293780/commits?sha=a9bba5b9ab508a086f9a12b8c51fab68478e2128&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/9293780/commits?sha=a9bba5b9ab508a086f9a12b8c51fab68478e2128&per_page=2&page=32>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148B9F:274EE0:5A6FEBC8
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4731
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.056320
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"a9bba5b9ab508a086f9a12b8c51fab68478e2128","commit":{"author":{"name":"Yuriy Vasiyarov","email":"varyous@gmail.com","date":"2014-12-12T07:35:37Z"},"committer":{"name":"Yuriy Vasiyarov","email":"varyous@gmail.com","date":"2014-12-12T07:35:37Z"},"message":"Merge pull request #26 from jwaldrip/patch-1\n\nAdd gin middleware link.","tree":{"sha":"78eba3b64741494cb19e48115fed4605e67a7c90","url":"https://api.github.com/repos/yvasiyarov/gorelic/git/trees/78eba3b64741494cb19e48115fed4605e67a7c90"},"url":"https://api.github.com/repos/yvasiyarov/gorelic/git/commits/a9bba5b9ab508a086f9a12b8c51fab68478e2128","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/yvasiyarov/gorelic/commits/a9bba5b9ab508a086f9a12b8c51fab68478e2128","html_url":"https://github.com/yvasiyarov/gorelic/commit/a9bba5b9ab508a086f9a12b8c51fab68478e2128","comments_url":"https://api.github.com/repos/yvasiyarov/gorelic/commits/a9bba5b9ab508a086f9a12b8c51fab68478e2128/comments","author":{"login":"yvasiyarov","id":889406,"avatar_url":"https://avatars3.githubusercontent.com/u/889406?v=4","gravatar_id":"","url":"https://api.github.com/users/yvasiyarov","html_url":"https://github.com/yvasiyarov","followers_url":"https://api.github.com/users/yvasiyarov/followers","following_url":"https://api.github.com/users/yvasiyarov/following{/other_user}","gists_url":"https://api.github.com/users/yvasiyarov/gists{/gist_id}","starred_url":"https://api.github.com/users/yvasiyarov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yvasiyarov/subscriptions","organizations_url":"https://api.github.com/users/yvasiyarov/orgs","repos_url":"https://api.github.com/users/yvasiyarov/repos","events_url":"https://api.github.com/users/yvasiyarov/events{/privacy}","received_events_url":"https://api.github.com/users/yvasiyarov/received_events","type":"User","site_admin":false},"committer":{"login":"yvasiyarov","id":889406,"avatar_url":"https://avatars3.githubusercontent.com/u/889406?v=4","gravatar_id":"","url":"https://api.github.com/users/yvasiyarov","html_url":"https://github.com/yvasiyarov","followers_url":"https://api.github.com/users/yvasiyarov/followers","following_url":"https://api.github.com/users/yvasiyarov/following{/other_user}","gists_url":"https://api.github.com/users/yvasiyarov/gists{/gist_id}","starred_url":"https://api.github.com/users/yvasiyarov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yvasiyarov/subscriptions","organizations_url":"https://api.github.com/users/yvasiyarov/orgs","repos_url":"https://api.github.com/users/yvasiyarov/repos","events_url":"https://api.github.com/users/yvasiyarov/events{/privacy}","received_events_url":"https://api.github.com/users/yvasiyarov/received_events","type":"User","site_admin":false},"parents":[{"sha":"ed461c0552ffe5e4bee53eb23c0edacc13c82555","url":"https://api.github.com/repos/yvasiyarov/gorelic/commits/ed461c0552ffe5e4bee53eb23c0edacc13c82555","html_url":"https://github.com/yvasiyarov/gorelic/commit/ed461c0552ffe5e4bee53eb23c0edacc13c82555"},{"sha":"4a2f486730176e7cd9ba71fee944e3683289a1bc","url":"https://api.github.com/repos/yvasiyarov/gorelic/commits/4a2f486730176e7cd9ba71fee944e3683289a1bc","html_url":"https://github.com/yvasiyarov/gorelic/commit/4a2f486730176e7cd9ba71fee944e3683289a1bc"}]},{"sha":"4a2f486730176e7cd9ba71fee944e3683289a1bc","commit":{"author":{"name":"Jason Waldrip","email":"jason@waldrip.net","date":"2014-12-11T23:54:26Z"},"committer":{"name":"Jason Waldrip","email":"jason@waldrip.net","date":"2014-12-11T23:54:26Z"},"message":"Update README.md","tree":{"sha":"78eba3b64741494cb19e48115fed4605e67a7c90","url":"https://api.github.com/repos/yvasiyarov/gorelic/git/trees/78eba3b64741494cb19e48115fed4605e67a7c90"},"url":"https://api.github.com/repos/yvasiyarov/gorelic/git/commits/4a2f486730176e7cd9ba71fee944e3683289a1bc","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/yvasiyarov/gorelic/commits/4a2f486730176e7cd9ba71fee944e3683289a1bc","html_url":"https://github.com/yvasiyarov/gorelic/commit/4a2f486730176e7cd9ba71fee944e3683289a1bc","comments_url":"https://api.github.com/repos/yvasiyarov/gorelic/commits/4a2f486730176e7cd9ba71fee944e3683289a1bc/comments","author":{"login":"jwaldrip","id":43164,"avatar_url":"https://avatars0.githubusercontent.com/u/43164?v=4","gravatar_id":"","url":"https://api.github.com/users/jwaldrip","html_url":"https://github.com/jwaldrip","followers_url":"https://api.github.com/users/jwaldrip/followers","following_url":"https://api.github.com/users/jwaldrip/following{/other_user}","gists_url":"https://api.github.com/users/jwaldrip/gists{/gist_id}","starred_url":"https://api.github.com/users/jwaldrip/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jwaldrip/subscriptions","organizations_url":"https://api.github.com/users/jwaldrip/orgs","repos_url":"https://api.github.com/users/jwaldrip/repos","events_url":"https://api.github.com/users/jwaldrip/events{/privacy}","received_events_url":"https://api.github.com/users/jwaldrip/received_events","type":"User","site_admin":false},"committer":{"login":"jwaldrip","id":43164,"avatar_url":"https://avatars0.githubusercontent.com/u/43164?v=4","gravatar_id":"","url":"https://api.github.com/users/jwaldrip","html_url":"https://github.com/jwaldrip","followers_url":"https://api.github.com/users/jwaldrip/followers","following_url":"https://api.github.com/users/jwaldrip/following{/other_user}","gists_url":"https://api.github.com/users/jwaldrip/gists{/gist_id}","starred_url":"https://api.github.com/users/jwaldrip/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jwaldrip/subscriptions","organizations_url":"https://api.github.com/users/jwaldrip/orgs","repos_url":"https://api.github.com/users/jwaldrip/repos","events_url":"https://api.github.com/users/jwaldrip/events{/privacy}","received_events_url":"https://api.github.com/users/jwaldrip/received_events","type":"User","site_admin":false},"parents":[{"sha":"ed461c0552ffe5e4bee53eb23c0edacc13c82555","url":"https://api.github.com/repos/yvasiyarov/gorelic/commits/ed461c0552ffe5e4bee53eb23c0edacc13c82555","html_url":"https://github.com/yvasiyarov/gorelic/commit/ed461c0552ffe5e4bee53eb23c0edacc13c82555"}]}]
+
+GET https://api.github.com/repos/yvasiyarov/newrelic_platform_go/commits?sha=b21fdbd4370f3717f3bbd2bf41c223bc273068e6&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:36 GMT
+Etag: W/"e492e25eca706477628e157bd7e4e8fb"
+Last-Modified: Mon, 08 Sep 2014 18:44:05 GMT
+Link: <https://api.github.com/repositories/11311788/commits?sha=b21fdbd4370f3717f3bbd2bf41c223bc273068e6&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/11311788/commits?sha=b21fdbd4370f3717f3bbd2bf41c223bc273068e6&per_page=2&page=13>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: BDC6:15D14:148BAF:274EF4:5A6FEBC8
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4730
+X-Ratelimit-Reset: 1517284463
+X-Runtime-Rack: 0.047946
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"b21fdbd4370f3717f3bbd2bf41c223bc273068e6","commit":{"author":{"name":"Yuriy Vasiyarov","email":"varyous@gmail.com","date":"2014-09-08T18:44:05Z"},"committer":{"name":"Yuriy Vasiyarov","email":"varyous@gmail.com","date":"2014-09-08T18:44:05Z"},"message":"Merge pull request #1 from jingweno/patch-1\n\nAdd missing response code for http error","tree":{"sha":"4414e792616d889eda83e7768c42b0a2ecbe651a","url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/git/trees/4414e792616d889eda83e7768c42b0a2ecbe651a"},"url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/git/commits/b21fdbd4370f3717f3bbd2bf41c223bc273068e6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/commits/b21fdbd4370f3717f3bbd2bf41c223bc273068e6","html_url":"https://github.com/yvasiyarov/newrelic_platform_go/commit/b21fdbd4370f3717f3bbd2bf41c223bc273068e6","comments_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/commits/b21fdbd4370f3717f3bbd2bf41c223bc273068e6/comments","author":{"login":"yvasiyarov","id":889406,"avatar_url":"https://avatars3.githubusercontent.com/u/889406?v=4","gravatar_id":"","url":"https://api.github.com/users/yvasiyarov","html_url":"https://github.com/yvasiyarov","followers_url":"https://api.github.com/users/yvasiyarov/followers","following_url":"https://api.github.com/users/yvasiyarov/following{/other_user}","gists_url":"https://api.github.com/users/yvasiyarov/gists{/gist_id}","starred_url":"https://api.github.com/users/yvasiyarov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yvasiyarov/subscriptions","organizations_url":"https://api.github.com/users/yvasiyarov/orgs","repos_url":"https://api.github.com/users/yvasiyarov/repos","events_url":"https://api.github.com/users/yvasiyarov/events{/privacy}","received_events_url":"https://api.github.com/users/yvasiyarov/received_events","type":"User","site_admin":false},"committer":{"login":"yvasiyarov","id":889406,"avatar_url":"https://avatars3.githubusercontent.com/u/889406?v=4","gravatar_id":"","url":"https://api.github.com/users/yvasiyarov","html_url":"https://github.com/yvasiyarov","followers_url":"https://api.github.com/users/yvasiyarov/followers","following_url":"https://api.github.com/users/yvasiyarov/following{/other_user}","gists_url":"https://api.github.com/users/yvasiyarov/gists{/gist_id}","starred_url":"https://api.github.com/users/yvasiyarov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yvasiyarov/subscriptions","organizations_url":"https://api.github.com/users/yvasiyarov/orgs","repos_url":"https://api.github.com/users/yvasiyarov/repos","events_url":"https://api.github.com/users/yvasiyarov/events{/privacy}","received_events_url":"https://api.github.com/users/yvasiyarov/received_events","type":"User","site_admin":false},"parents":[{"sha":"2d5b3d6e6db42e361ca5a5b6376a1368f7067236","url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/commits/2d5b3d6e6db42e361ca5a5b6376a1368f7067236","html_url":"https://github.com/yvasiyarov/newrelic_platform_go/commit/2d5b3d6e6db42e361ca5a5b6376a1368f7067236"},{"sha":"3135c42eaf6e24de1ae06d31e17ee6fd903f1496","url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/commits/3135c42eaf6e24de1ae06d31e17ee6fd903f1496","html_url":"https://github.com/yvasiyarov/newrelic_platform_go/commit/3135c42eaf6e24de1ae06d31e17ee6fd903f1496"}]},{"sha":"3135c42eaf6e24de1ae06d31e17ee6fd903f1496","commit":{"author":{"name":"Jingwen Owen Ou","email":"jingweno@gmail.com","date":"2014-09-08T14:36:21Z"},"committer":{"name":"Jingwen Owen Ou","email":"jingweno@gmail.com","date":"2014-09-08T14:36:21Z"},"message":"Add missing response code for http error","tree":{"sha":"4414e792616d889eda83e7768c42b0a2ecbe651a","url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/git/trees/4414e792616d889eda83e7768c42b0a2ecbe651a"},"url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/git/commits/3135c42eaf6e24de1ae06d31e17ee6fd903f1496","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/commits/3135c42eaf6e24de1ae06d31e17ee6fd903f1496","html_url":"https://github.com/yvasiyarov/newrelic_platform_go/commit/3135c42eaf6e24de1ae06d31e17ee6fd903f1496","comments_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/commits/3135c42eaf6e24de1ae06d31e17ee6fd903f1496/comments","author":{"login":"jingweno","id":169064,"avatar_url":"https://avatars1.githubusercontent.com/u/169064?v=4","gravatar_id":"","url":"https://api.github.com/users/jingweno","html_url":"https://github.com/jingweno","followers_url":"https://api.github.com/users/jingweno/followers","following_url":"https://api.github.com/users/jingweno/following{/other_user}","gists_url":"https://api.github.com/users/jingweno/gists{/gist_id}","starred_url":"https://api.github.com/users/jingweno/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jingweno/subscriptions","organizations_url":"https://api.github.com/users/jingweno/orgs","repos_url":"https://api.github.com/users/jingweno/repos","events_url":"https://api.github.com/users/jingweno/events{/privacy}","received_events_url":"https://api.github.com/users/jingweno/received_events","type":"User","site_admin":false},"committer":{"login":"jingweno","id":169064,"avatar_url":"https://avatars1.githubusercontent.com/u/169064?v=4","gravatar_id":"","url":"https://api.github.com/users/jingweno","html_url":"https://github.com/jingweno","followers_url":"https://api.github.com/users/jingweno/followers","following_url":"https://api.github.com/users/jingweno/following{/other_user}","gists_url":"https://api.github.com/users/jingweno/gists{/gist_id}","starred_url":"https://api.github.com/users/jingweno/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jingweno/subscriptions","organizations_url":"https://api.github.com/users/jingweno/orgs","repos_url":"https://api.github.com/users/jingweno/repos","events_url":"https://api.github.com/users/jingweno/events{/privacy}","received_events_url":"https://api.github.com/users/jingweno/received_events","type":"User","site_admin":false},"parents":[{"sha":"2d5b3d6e6db42e361ca5a5b6376a1368f7067236","url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/commits/2d5b3d6e6db42e361ca5a5b6376a1368f7067236","html_url":"https://github.com/yvasiyarov/newrelic_platform_go/commit/2d5b3d6e6db42e361ca5a5b6376a1368f7067236"}]}]
+
+GET https://golang.org/x/net/context?go-get=1
+200 OK
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: private
+Content-Type: text/html; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:36 GMT
+Server: Google Frontend
+Vary: Accept-Encoding
+X-Cloud-Trace-Context: aeeb9fc3a7bde4bf5f0e4aa06bc8c489
+
+<!DOCTYPE html>
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<meta name="go-import" content="golang.org/x/net git https://go.googlesource.com/net">
+<meta name="go-source" content="golang.org/x/net https://github.com/golang/net/ https://github.com/golang/net/tree/master{/dir} https://github.com/golang/net/blob/master{/dir}/{file}#L{line}">
+<meta http-equiv="refresh" content="0; url=https://godoc.org/golang.org/x/net/context">
+</head>
+<body>
+Nothing to see here; <a href="https://godoc.org/golang.org/x/net/context">move along</a>.
+</body>
+</html>
+
+
+GET https://go.googlesource.com/net/+show/1dfe7915deaf3f80b962c163b918868d8a6d8974?format=TEXT
+200 OK
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: private, max-age=7200, stale-while-revalidate=604800
+Content-Disposition: attachment
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 30 Jan 2018 03:51:36 GMT
+Expires: Tue, 30 Jan 2018 03:51:36 GMT
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+Vary: Accept-Encoding
+X-Content-Type-Options: nosniff
+X-Frame-Options: SAMEORIGIN
+X-Gitiles-Object-Type: commit
+X-Xss-Protection: 1; mode=block
+
+dHJlZSA5OTVlY2YzYzVhZjk0NzczNWNhMDcwOGIxMGE0Y2EzZGYwY2ZkNTFiCnBhcmVudCA1YmRlMjYwMzdhNDBiMTY0YTA2ZmU1ZWUyMTY3NjViMjJjZjE1ZWJhCmF1dGhvciBSb2JlcnQgU3RlcGFuZWsgPHJvYmVydC5zdGVwYW5la0BnbWFpbC5jb20+IDE0MjI1NDA3NjYgKzAxMDAKY29tbWl0dGVyIE5pZ2VsIFRhbyA8bmlnZWx0YW9AZ29sYW5nLm9yZz4gMTQyMjg1MzgxMCArMDAwMAoKd2ViZGF2OiBhZHZlcnRpc2UgUFVUIGZvciBleGlzdGluZyBmaWxlcwoKQ2hhbmdlLUlkOiBJMjg1ZjkzZTU2MmNhMGM2YmRjNjE2OGU2YzQ3YjI4YzdjYWVmN2NmNQpSZXZpZXdlZC1vbjogaHR0cHM6Ly9nby1yZXZpZXcuZ29vZ2xlc291cmNlLmNvbS8zNTAxClJldmlld2VkLWJ5OiBOaWNrIENvb3BlciA8bm12Y0Bnb29nbGUuY29tPgpSZXZpZXdlZC1ieTogTmlnZWwgVGFvIDxuaWdlbHRhb0Bnb2xhbmcub3JnPgo=
+
+GET https://gopkg.in/check.v1?go-get=1
+200 OK
+Content-Length: 318
+Content-Type: text/html
+Date: Tue, 30 Jan 2018 03:51:37 GMT
+
+
+<html>
+<head>
+<meta name="go-import" content="gopkg.in/check.v1 git https://gopkg.in/check.v1">
+<meta name="go-source" content="gopkg.in/check.v1 _ https://github.com/go-check/check/tree/v1{/dir} https://github.com/go-check/check/blob/v1{/dir}/{file}#L{line}">
+</head>
+<body>
+go get gopkg.in/check.v1
+</body>
+</html>
+
+
+GET https://gopkg.in/yaml.v2?go-get=1
+200 OK
+Content-Length: 310
+Content-Type: text/html
+Date: Tue, 30 Jan 2018 03:51:37 GMT
+
+
+<html>
+<head>
+<meta name="go-import" content="gopkg.in/yaml.v2 git https://gopkg.in/yaml.v2">
+<meta name="go-source" content="gopkg.in/yaml.v2 _ https://github.com/go-yaml/yaml/tree/v2{/dir} https://github.com/go-yaml/yaml/blob/v2{/dir}/{file}#L{line}">
+</head>
+<body>
+go get gopkg.in/yaml.v2
+</body>
+</html>
+
+
+GET https://api.github.com/repos/rsc/vgotest
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:47 GMT
+Etag: W/"8e2b156f00958f72b5dcb54ec7e124a7"
+Last-Modified: Tue, 30 Jan 2018 01:44:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A850F:864290:5A7A5F72
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4786
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.070527
+X-Xss-Protection: 1; mode=block
+
+{"id":119466083,"name":"vgotest","full_name":"rsc/vgotest","owner":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"private":true,"html_url":"https://github.com/rsc/vgotest","description":"test repo for vgo","fork":false,"url":"https://api.github.com/repos/rsc/vgotest","forks_url":"https://api.github.com/repos/rsc/vgotest/forks","keys_url":"https://api.github.com/repos/rsc/vgotest/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rsc/vgotest/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rsc/vgotest/teams","hooks_url":"https://api.github.com/repos/rsc/vgotest/hooks","issue_events_url":"https://api.github.com/repos/rsc/vgotest/issues/events{/number}","events_url":"https://api.github.com/repos/rsc/vgotest/events","assignees_url":"https://api.github.com/repos/rsc/vgotest/assignees{/user}","branches_url":"https://api.github.com/repos/rsc/vgotest/branches{/branch}","tags_url":"https://api.github.com/repos/rsc/vgotest/tags","blobs_url":"https://api.github.com/repos/rsc/vgotest/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rsc/vgotest/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rsc/vgotest/git/refs{/sha}","trees_url":"https://api.github.com/repos/rsc/vgotest/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rsc/vgotest/statuses/{sha}","languages_url":"https://api.github.com/repos/rsc/vgotest/languages","stargazers_url":"https://api.github.com/repos/rsc/vgotest/stargazers","contributors_url":"https://api.github.com/repos/rsc/vgotest/contributors","subscribers_url":"https://api.github.com/repos/rsc/vgotest/subscribers","subscription_url":"https://api.github.com/repos/rsc/vgotest/subscription","commits_url":"https://api.github.com/repos/rsc/vgotest/commits{/sha}","git_commits_url":"https://api.github.com/repos/rsc/vgotest/git/commits{/sha}","comments_url":"https://api.github.com/repos/rsc/vgotest/comments{/number}","issue_comment_url":"https://api.github.com/repos/rsc/vgotest/issues/comments{/number}","contents_url":"https://api.github.com/repos/rsc/vgotest/contents/{+path}","compare_url":"https://api.github.com/repos/rsc/vgotest/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rsc/vgotest/merges","archive_url":"https://api.github.com/repos/rsc/vgotest/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rsc/vgotest/downloads","issues_url":"https://api.github.com/repos/rsc/vgotest/issues{/number}","pulls_url":"https://api.github.com/repos/rsc/vgotest/pulls{/number}","milestones_url":"https://api.github.com/repos/rsc/vgotest/milestones{/number}","notifications_url":"https://api.github.com/repos/rsc/vgotest/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rsc/vgotest/labels{/name}","releases_url":"https://api.github.com/repos/rsc/vgotest/releases{/id}","deployments_url":"https://api.github.com/repos/rsc/vgotest/deployments","created_at":"2018-01-30T01:41:34Z","updated_at":"2018-01-30T01:44:17Z","pushed_at":"2018-01-30T02:08:19Z","git_url":"git://github.com/rsc/vgotest.git","ssh_url":"git@github.com:rsc/vgotest.git","clone_url":"https://github.com/rsc/vgotest.git","svn_url":"https://github.com/rsc/vgotest","homepage":null,"size":3,"stargazers_count":0,"watchers_count":0,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true},"allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"network_count":0,"subscribers_count":1}
+
+GET https://api.github.com/repos/golang/dep
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:47 GMT
+Etag: W/"b0f0b49caa3e490ed54f703d3d473ee8"
+Last-Modified: Wed, 07 Feb 2018 01:48:25 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A853C:8642A5:5A7A5F73
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4785
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.051317
+X-Xss-Protection: 1; mode=block
+
+{"id":70202506,"name":"dep","full_name":"golang/dep","owner":{"login":"golang","id":4314092,"avatar_url":"https://avatars3.githubusercontent.com/u/4314092?v=4","gravatar_id":"","url":"https://api.github.com/users/golang","html_url":"https://github.com/golang","followers_url":"https://api.github.com/users/golang/followers","following_url":"https://api.github.com/users/golang/following{/other_user}","gists_url":"https://api.github.com/users/golang/gists{/gist_id}","starred_url":"https://api.github.com/users/golang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/golang/subscriptions","organizations_url":"https://api.github.com/users/golang/orgs","repos_url":"https://api.github.com/users/golang/repos","events_url":"https://api.github.com/users/golang/events{/privacy}","received_events_url":"https://api.github.com/users/golang/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/golang/dep","description":"Go dependency management tool","fork":false,"url":"https://api.github.com/repos/golang/dep","forks_url":"https://api.github.com/repos/golang/dep/forks","keys_url":"https://api.github.com/repos/golang/dep/keys{/key_id}","collaborators_url":"https://api.github.com/repos/golang/dep/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/golang/dep/teams","hooks_url":"https://api.github.com/repos/golang/dep/hooks","issue_events_url":"https://api.github.com/repos/golang/dep/issues/events{/number}","events_url":"https://api.github.com/repos/golang/dep/events","assignees_url":"https://api.github.com/repos/golang/dep/assignees{/user}","branches_url":"https://api.github.com/repos/golang/dep/branches{/branch}","tags_url":"https://api.github.com/repos/golang/dep/tags","blobs_url":"https://api.github.com/repos/golang/dep/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/golang/dep/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/golang/dep/git/refs{/sha}","trees_url":"https://api.github.com/repos/golang/dep/git/trees{/sha}","statuses_url":"https://api.github.com/repos/golang/dep/statuses/{sha}","languages_url":"https://api.github.com/repos/golang/dep/languages","stargazers_url":"https://api.github.com/repos/golang/dep/stargazers","contributors_url":"https://api.github.com/repos/golang/dep/contributors","subscribers_url":"https://api.github.com/repos/golang/dep/subscribers","subscription_url":"https://api.github.com/repos/golang/dep/subscription","commits_url":"https://api.github.com/repos/golang/dep/commits{/sha}","git_commits_url":"https://api.github.com/repos/golang/dep/git/commits{/sha}","comments_url":"https://api.github.com/repos/golang/dep/comments{/number}","issue_comment_url":"https://api.github.com/repos/golang/dep/issues/comments{/number}","contents_url":"https://api.github.com/repos/golang/dep/contents/{+path}","compare_url":"https://api.github.com/repos/golang/dep/compare/{base}...{head}","merges_url":"https://api.github.com/repos/golang/dep/merges","archive_url":"https://api.github.com/repos/golang/dep/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/golang/dep/downloads","issues_url":"https://api.github.com/repos/golang/dep/issues{/number}","pulls_url":"https://api.github.com/repos/golang/dep/pulls{/number}","milestones_url":"https://api.github.com/repos/golang/dep/milestones{/number}","notifications_url":"https://api.github.com/repos/golang/dep/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/golang/dep/labels{/name}","releases_url":"https://api.github.com/repos/golang/dep/releases{/id}","deployments_url":"https://api.github.com/repos/golang/dep/deployments","created_at":"2016-10-07T00:04:51Z","updated_at":"2018-02-07T01:48:25Z","pushed_at":"2018-02-06T18:16:30Z","git_url":"git://github.com/golang/dep.git","ssh_url":"git@github.com:golang/dep.git","clone_url":"https://github.com/golang/dep.git","svn_url":"https://github.com/golang/dep","homepage":"https://golang.github.io/dep/","size":9384,"stargazers_count":7394,"watchers_count":7394,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":520,"mirror_url":null,"archived":false,"open_issues_count":286,"license":null,"forks":520,"open_issues":286,"watchers":7394,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true},"allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"organization":{"login":"golang","id":4314092,"avatar_url":"https://avatars3.githubusercontent.com/u/4314092?v=4","gravatar_id":"","url":"https://api.github.com/users/golang","html_url":"https://github.com/golang","followers_url":"https://api.github.com/users/golang/followers","following_url":"https://api.github.com/users/golang/following{/other_user}","gists_url":"https://api.github.com/users/golang/gists{/gist_id}","starred_url":"https://api.github.com/users/golang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/golang/subscriptions","organizations_url":"https://api.github.com/users/golang/orgs","repos_url":"https://api.github.com/users/golang/repos","events_url":"https://api.github.com/users/golang/events{/privacy}","received_events_url":"https://api.github.com/users/golang/received_events","type":"Organization","site_admin":false},"network_count":520,"subscribers_count":263}
+
+GET https://api.github.com/repos/Masterminds/semver
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:47 GMT
+Etag: W/"bec94891beba02cc44be8831803e7605"
+Last-Modified: Fri, 02 Feb 2018 13:21:54 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8549:8642F0:5A7A5F73
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4784
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.062798
+X-Xss-Protection: 1; mode=block
+
+{"id":43896280,"name":"semver","full_name":"Masterminds/semver","owner":{"login":"Masterminds","id":689082,"avatar_url":"https://avatars2.githubusercontent.com/u/689082?v=4","gravatar_id":"","url":"https://api.github.com/users/Masterminds","html_url":"https://github.com/Masterminds","followers_url":"https://api.github.com/users/Masterminds/followers","following_url":"https://api.github.com/users/Masterminds/following{/other_user}","gists_url":"https://api.github.com/users/Masterminds/gists{/gist_id}","starred_url":"https://api.github.com/users/Masterminds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Masterminds/subscriptions","organizations_url":"https://api.github.com/users/Masterminds/orgs","repos_url":"https://api.github.com/users/Masterminds/repos","events_url":"https://api.github.com/users/Masterminds/events{/privacy}","received_events_url":"https://api.github.com/users/Masterminds/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Masterminds/semver","description":"Work with Semantic Versions in Go","fork":false,"url":"https://api.github.com/repos/Masterminds/semver","forks_url":"https://api.github.com/repos/Masterminds/semver/forks","keys_url":"https://api.github.com/repos/Masterminds/semver/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Masterminds/semver/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Masterminds/semver/teams","hooks_url":"https://api.github.com/repos/Masterminds/semver/hooks","issue_events_url":"https://api.github.com/repos/Masterminds/semver/issues/events{/number}","events_url":"https://api.github.com/repos/Masterminds/semver/events","assignees_url":"https://api.github.com/repos/Masterminds/semver/assignees{/user}","branches_url":"https://api.github.com/repos/Masterminds/semver/branches{/branch}","tags_url":"https://api.github.com/repos/Masterminds/semver/tags","blobs_url":"https://api.github.com/repos/Masterminds/semver/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Masterminds/semver/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Masterminds/semver/git/refs{/sha}","trees_url":"https://api.github.com/repos/Masterminds/semver/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Masterminds/semver/statuses/{sha}","languages_url":"https://api.github.com/repos/Masterminds/semver/languages","stargazers_url":"https://api.github.com/repos/Masterminds/semver/stargazers","contributors_url":"https://api.github.com/repos/Masterminds/semver/contributors","subscribers_url":"https://api.github.com/repos/Masterminds/semver/subscribers","subscription_url":"https://api.github.com/repos/Masterminds/semver/subscription","commits_url":"https://api.github.com/repos/Masterminds/semver/commits{/sha}","git_commits_url":"https://api.github.com/repos/Masterminds/semver/git/commits{/sha}","comments_url":"https://api.github.com/repos/Masterminds/semver/comments{/number}","issue_comment_url":"https://api.github.com/repos/Masterminds/semver/issues/comments{/number}","contents_url":"https://api.github.com/repos/Masterminds/semver/contents/{+path}","compare_url":"https://api.github.com/repos/Masterminds/semver/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Masterminds/semver/merges","archive_url":"https://api.github.com/repos/Masterminds/semver/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Masterminds/semver/downloads","issues_url":"https://api.github.com/repos/Masterminds/semver/issues{/number}","pulls_url":"https://api.github.com/repos/Masterminds/semver/pulls{/number}","milestones_url":"https://api.github.com/repos/Masterminds/semver/milestones{/number}","notifications_url":"https://api.github.com/repos/Masterminds/semver/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Masterminds/semver/labels{/name}","releases_url":"https://api.github.com/repos/Masterminds/semver/releases{/id}","deployments_url":"https://api.github.com/repos/Masterminds/semver/deployments","created_at":"2015-10-08T14:57:25Z","updated_at":"2018-02-02T13:21:54Z","pushed_at":"2017-10-04T14:26:15Z","git_url":"git://github.com/Masterminds/semver.git","ssh_url":"git@github.com:Masterminds/semver.git","clone_url":"https://github.com/Masterminds/semver.git","svn_url":"https://github.com/Masterminds/semver","homepage":"","size":179,"stargazers_count":244,"watchers_count":244,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":20,"mirror_url":null,"archived":false,"open_issues_count":6,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":20,"open_issues":6,"watchers":244,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"Masterminds","id":689082,"avatar_url":"https://avatars2.githubusercontent.com/u/689082?v=4","gravatar_id":"","url":"https://api.github.com/users/Masterminds","html_url":"https://github.com/Masterminds","followers_url":"https://api.github.com/users/Masterminds/followers","following_url":"https://api.github.com/users/Masterminds/following{/other_user}","gists_url":"https://api.github.com/users/Masterminds/gists{/gist_id}","starred_url":"https://api.github.com/users/Masterminds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Masterminds/subscriptions","organizations_url":"https://api.github.com/users/Masterminds/orgs","repos_url":"https://api.github.com/users/Masterminds/repos","events_url":"https://api.github.com/users/Masterminds/events{/privacy}","received_events_url":"https://api.github.com/users/Masterminds/received_events","type":"Organization","site_admin":false},"network_count":20,"subscribers_count":16}
+
+GET https://api.github.com/repos/Masterminds/vcs
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:47 GMT
+Etag: W/"dafc3e90e7ede319b95dc3d3a0e69475"
+Last-Modified: Thu, 25 Jan 2018 07:39:00 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8558:864308:5A7A5F73
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4783
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.058521
+X-Xss-Protection: 1; mode=block
+
+{"id":39643904,"name":"vcs","full_name":"Masterminds/vcs","owner":{"login":"Masterminds","id":689082,"avatar_url":"https://avatars2.githubusercontent.com/u/689082?v=4","gravatar_id":"","url":"https://api.github.com/users/Masterminds","html_url":"https://github.com/Masterminds","followers_url":"https://api.github.com/users/Masterminds/followers","following_url":"https://api.github.com/users/Masterminds/following{/other_user}","gists_url":"https://api.github.com/users/Masterminds/gists{/gist_id}","starred_url":"https://api.github.com/users/Masterminds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Masterminds/subscriptions","organizations_url":"https://api.github.com/users/Masterminds/orgs","repos_url":"https://api.github.com/users/Masterminds/repos","events_url":"https://api.github.com/users/Masterminds/events{/privacy}","received_events_url":"https://api.github.com/users/Masterminds/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Masterminds/vcs","description":"VCS Repo management through a common interface in Go","fork":false,"url":"https://api.github.com/repos/Masterminds/vcs","forks_url":"https://api.github.com/repos/Masterminds/vcs/forks","keys_url":"https://api.github.com/repos/Masterminds/vcs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Masterminds/vcs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Masterminds/vcs/teams","hooks_url":"https://api.github.com/repos/Masterminds/vcs/hooks","issue_events_url":"https://api.github.com/repos/Masterminds/vcs/issues/events{/number}","events_url":"https://api.github.com/repos/Masterminds/vcs/events","assignees_url":"https://api.github.com/repos/Masterminds/vcs/assignees{/user}","branches_url":"https://api.github.com/repos/Masterminds/vcs/branches{/branch}","tags_url":"https://api.github.com/repos/Masterminds/vcs/tags","blobs_url":"https://api.github.com/repos/Masterminds/vcs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Masterminds/vcs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Masterminds/vcs/git/refs{/sha}","trees_url":"https://api.github.com/repos/Masterminds/vcs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Masterminds/vcs/statuses/{sha}","languages_url":"https://api.github.com/repos/Masterminds/vcs/languages","stargazers_url":"https://api.github.com/repos/Masterminds/vcs/stargazers","contributors_url":"https://api.github.com/repos/Masterminds/vcs/contributors","subscribers_url":"https://api.github.com/repos/Masterminds/vcs/subscribers","subscription_url":"https://api.github.com/repos/Masterminds/vcs/subscription","commits_url":"https://api.github.com/repos/Masterminds/vcs/commits{/sha}","git_commits_url":"https://api.github.com/repos/Masterminds/vcs/git/commits{/sha}","comments_url":"https://api.github.com/repos/Masterminds/vcs/comments{/number}","issue_comment_url":"https://api.github.com/repos/Masterminds/vcs/issues/comments{/number}","contents_url":"https://api.github.com/repos/Masterminds/vcs/contents/{+path}","compare_url":"https://api.github.com/repos/Masterminds/vcs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Masterminds/vcs/merges","archive_url":"https://api.github.com/repos/Masterminds/vcs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Masterminds/vcs/downloads","issues_url":"https://api.github.com/repos/Masterminds/vcs/issues{/number}","pulls_url":"https://api.github.com/repos/Masterminds/vcs/pulls{/number}","milestones_url":"https://api.github.com/repos/Masterminds/vcs/milestones{/number}","notifications_url":"https://api.github.com/repos/Masterminds/vcs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Masterminds/vcs/labels{/name}","releases_url":"https://api.github.com/repos/Masterminds/vcs/releases{/id}","deployments_url":"https://api.github.com/repos/Masterminds/vcs/deployments","created_at":"2015-07-24T16:06:34Z","updated_at":"2018-01-25T07:39:00Z","pushed_at":"2018-02-05T23:48:30Z","git_url":"git://github.com/Masterminds/vcs.git","ssh_url":"git@github.com:Masterminds/vcs.git","clone_url":"https://github.com/Masterminds/vcs.git","svn_url":"https://github.com/Masterminds/vcs","homepage":"","size":270,"stargazers_count":120,"watchers_count":120,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":42,"mirror_url":null,"archived":false,"open_issues_count":14,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":42,"open_issues":14,"watchers":120,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"Masterminds","id":689082,"avatar_url":"https://avatars2.githubusercontent.com/u/689082?v=4","gravatar_id":"","url":"https://api.github.com/users/Masterminds","html_url":"https://github.com/Masterminds","followers_url":"https://api.github.com/users/Masterminds/followers","following_url":"https://api.github.com/users/Masterminds/following{/other_user}","gists_url":"https://api.github.com/users/Masterminds/gists{/gist_id}","starred_url":"https://api.github.com/users/Masterminds/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Masterminds/subscriptions","organizations_url":"https://api.github.com/users/Masterminds/orgs","repos_url":"https://api.github.com/users/Masterminds/repos","events_url":"https://api.github.com/users/Masterminds/events{/privacy}","received_events_url":"https://api.github.com/users/Masterminds/received_events","type":"Organization","site_admin":false},"network_count":42,"subscribers_count":8}
+
+GET https://api.github.com/repos/armon/go-radix
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:47 GMT
+Etag: W/"7ba9fd56dfa8ea46e87dbe7e1c139eb6"
+Last-Modified: Sat, 03 Feb 2018 16:39:07 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8566:86431C:5A7A5F73
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4782
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.043065
+X-Xss-Protection: 1; mode=block
+
+{"id":22491681,"name":"go-radix","full_name":"armon/go-radix","owner":{"login":"armon","id":592032,"avatar_url":"https://avatars3.githubusercontent.com/u/592032?v=4","gravatar_id":"","url":"https://api.github.com/users/armon","html_url":"https://github.com/armon","followers_url":"https://api.github.com/users/armon/followers","following_url":"https://api.github.com/users/armon/following{/other_user}","gists_url":"https://api.github.com/users/armon/gists{/gist_id}","starred_url":"https://api.github.com/users/armon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/armon/subscriptions","organizations_url":"https://api.github.com/users/armon/orgs","repos_url":"https://api.github.com/users/armon/repos","events_url":"https://api.github.com/users/armon/events{/privacy}","received_events_url":"https://api.github.com/users/armon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/armon/go-radix","description":"Golang implementation of Radix trees","fork":false,"url":"https://api.github.com/repos/armon/go-radix","forks_url":"https://api.github.com/repos/armon/go-radix/forks","keys_url":"https://api.github.com/repos/armon/go-radix/keys{/key_id}","collaborators_url":"https://api.github.com/repos/armon/go-radix/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/armon/go-radix/teams","hooks_url":"https://api.github.com/repos/armon/go-radix/hooks","issue_events_url":"https://api.github.com/repos/armon/go-radix/issues/events{/number}","events_url":"https://api.github.com/repos/armon/go-radix/events","assignees_url":"https://api.github.com/repos/armon/go-radix/assignees{/user}","branches_url":"https://api.github.com/repos/armon/go-radix/branches{/branch}","tags_url":"https://api.github.com/repos/armon/go-radix/tags","blobs_url":"https://api.github.com/repos/armon/go-radix/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/armon/go-radix/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/armon/go-radix/git/refs{/sha}","trees_url":"https://api.github.com/repos/armon/go-radix/git/trees{/sha}","statuses_url":"https://api.github.com/repos/armon/go-radix/statuses/{sha}","languages_url":"https://api.github.com/repos/armon/go-radix/languages","stargazers_url":"https://api.github.com/repos/armon/go-radix/stargazers","contributors_url":"https://api.github.com/repos/armon/go-radix/contributors","subscribers_url":"https://api.github.com/repos/armon/go-radix/subscribers","subscription_url":"https://api.github.com/repos/armon/go-radix/subscription","commits_url":"https://api.github.com/repos/armon/go-radix/commits{/sha}","git_commits_url":"https://api.github.com/repos/armon/go-radix/git/commits{/sha}","comments_url":"https://api.github.com/repos/armon/go-radix/comments{/number}","issue_comment_url":"https://api.github.com/repos/armon/go-radix/issues/comments{/number}","contents_url":"https://api.github.com/repos/armon/go-radix/contents/{+path}","compare_url":"https://api.github.com/repos/armon/go-radix/compare/{base}...{head}","merges_url":"https://api.github.com/repos/armon/go-radix/merges","archive_url":"https://api.github.com/repos/armon/go-radix/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/armon/go-radix/downloads","issues_url":"https://api.github.com/repos/armon/go-radix/issues{/number}","pulls_url":"https://api.github.com/repos/armon/go-radix/pulls{/number}","milestones_url":"https://api.github.com/repos/armon/go-radix/milestones{/number}","notifications_url":"https://api.github.com/repos/armon/go-radix/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/armon/go-radix/labels{/name}","releases_url":"https://api.github.com/repos/armon/go-radix/releases{/id}","deployments_url":"https://api.github.com/repos/armon/go-radix/deployments","created_at":"2014-08-01T01:40:30Z","updated_at":"2018-02-03T16:39:07Z","pushed_at":"2017-07-27T15:54:44Z","git_url":"git://github.com/armon/go-radix.git","ssh_url":"git@github.com:armon/go-radix.git","clone_url":"https://github.com/armon/go-radix.git","svn_url":"https://github.com/armon/go-radix","homepage":null,"size":15,"stargazers_count":291,"watchers_count":291,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":28,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":28,"open_issues":0,"watchers":291,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"network_count":28,"subscribers_count":9}
+
+GET https://api.github.com/repos/boltdb/bolt
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:47 GMT
+Etag: W/"ad231462e06603de403f4f92dce3dab6"
+Last-Modified: Tue, 06 Feb 2018 17:25:35 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8571:86432A:5A7A5F73
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4781
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.066346
+X-Xss-Protection: 1; mode=block
+
+{"id":15345331,"name":"bolt","full_name":"boltdb/bolt","owner":{"login":"boltdb","id":6539737,"avatar_url":"https://avatars2.githubusercontent.com/u/6539737?v=4","gravatar_id":"","url":"https://api.github.com/users/boltdb","html_url":"https://github.com/boltdb","followers_url":"https://api.github.com/users/boltdb/followers","following_url":"https://api.github.com/users/boltdb/following{/other_user}","gists_url":"https://api.github.com/users/boltdb/gists{/gist_id}","starred_url":"https://api.github.com/users/boltdb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/boltdb/subscriptions","organizations_url":"https://api.github.com/users/boltdb/orgs","repos_url":"https://api.github.com/users/boltdb/repos","events_url":"https://api.github.com/users/boltdb/events{/privacy}","received_events_url":"https://api.github.com/users/boltdb/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/boltdb/bolt","description":"An embedded key/value database for Go.","fork":false,"url":"https://api.github.com/repos/boltdb/bolt","forks_url":"https://api.github.com/repos/boltdb/bolt/forks","keys_url":"https://api.github.com/repos/boltdb/bolt/keys{/key_id}","collaborators_url":"https://api.github.com/repos/boltdb/bolt/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/boltdb/bolt/teams","hooks_url":"https://api.github.com/repos/boltdb/bolt/hooks","issue_events_url":"https://api.github.com/repos/boltdb/bolt/issues/events{/number}","events_url":"https://api.github.com/repos/boltdb/bolt/events","assignees_url":"https://api.github.com/repos/boltdb/bolt/assignees{/user}","branches_url":"https://api.github.com/repos/boltdb/bolt/branches{/branch}","tags_url":"https://api.github.com/repos/boltdb/bolt/tags","blobs_url":"https://api.github.com/repos/boltdb/bolt/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/boltdb/bolt/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/boltdb/bolt/git/refs{/sha}","trees_url":"https://api.github.com/repos/boltdb/bolt/git/trees{/sha}","statuses_url":"https://api.github.com/repos/boltdb/bolt/statuses/{sha}","languages_url":"https://api.github.com/repos/boltdb/bolt/languages","stargazers_url":"https://api.github.com/repos/boltdb/bolt/stargazers","contributors_url":"https://api.github.com/repos/boltdb/bolt/contributors","subscribers_url":"https://api.github.com/repos/boltdb/bolt/subscribers","subscription_url":"https://api.github.com/repos/boltdb/bolt/subscription","commits_url":"https://api.github.com/repos/boltdb/bolt/commits{/sha}","git_commits_url":"https://api.github.com/repos/boltdb/bolt/git/commits{/sha}","comments_url":"https://api.github.com/repos/boltdb/bolt/comments{/number}","issue_comment_url":"https://api.github.com/repos/boltdb/bolt/issues/comments{/number}","contents_url":"https://api.github.com/repos/boltdb/bolt/contents/{+path}","compare_url":"https://api.github.com/repos/boltdb/bolt/compare/{base}...{head}","merges_url":"https://api.github.com/repos/boltdb/bolt/merges","archive_url":"https://api.github.com/repos/boltdb/bolt/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/boltdb/bolt/downloads","issues_url":"https://api.github.com/repos/boltdb/bolt/issues{/number}","pulls_url":"https://api.github.com/repos/boltdb/bolt/pulls{/number}","milestones_url":"https://api.github.com/repos/boltdb/bolt/milestones{/number}","notifications_url":"https://api.github.com/repos/boltdb/bolt/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/boltdb/bolt/labels{/name}","releases_url":"https://api.github.com/repos/boltdb/bolt/releases{/id}","deployments_url":"https://api.github.com/repos/boltdb/bolt/deployments","created_at":"2013-12-20T18:26:14Z","updated_at":"2018-02-06T17:25:35Z","pushed_at":"2018-01-18T17:47:51Z","git_url":"git://github.com/boltdb/bolt.git","ssh_url":"git@github.com:boltdb/bolt.git","clone_url":"https://github.com/boltdb/bolt.git","svn_url":"https://github.com/boltdb/bolt","homepage":"","size":1329,"stargazers_count":7804,"watchers_count":7804,"language":"Go","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":664,"mirror_url":null,"archived":false,"open_issues_count":116,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":664,"open_issues":116,"watchers":7804,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"boltdb","id":6539737,"avatar_url":"https://avatars2.githubusercontent.com/u/6539737?v=4","gravatar_id":"","url":"https://api.github.com/users/boltdb","html_url":"https://github.com/boltdb","followers_url":"https://api.github.com/users/boltdb/followers","following_url":"https://api.github.com/users/boltdb/following{/other_user}","gists_url":"https://api.github.com/users/boltdb/gists{/gist_id}","starred_url":"https://api.github.com/users/boltdb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/boltdb/subscriptions","organizations_url":"https://api.github.com/users/boltdb/orgs","repos_url":"https://api.github.com/users/boltdb/repos","events_url":"https://api.github.com/users/boltdb/events{/privacy}","received_events_url":"https://api.github.com/users/boltdb/received_events","type":"Organization","site_admin":false},"network_count":664,"subscribers_count":300}
+
+GET https://api.github.com/repos/go-yaml/yaml
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:48 GMT
+Etag: W/"2db6d803093a829eee5f388ec5cedc49"
+Last-Modified: Tue, 06 Feb 2018 19:15:27 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8581:864342:5A7A5F73
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4780
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.067222
+X-Xss-Protection: 1; mode=block
+
+{"id":17451182,"name":"yaml","full_name":"go-yaml/yaml","owner":{"login":"go-yaml","id":6823640,"avatar_url":"https://avatars1.githubusercontent.com/u/6823640?v=4","gravatar_id":"","url":"https://api.github.com/users/go-yaml","html_url":"https://github.com/go-yaml","followers_url":"https://api.github.com/users/go-yaml/followers","following_url":"https://api.github.com/users/go-yaml/following{/other_user}","gists_url":"https://api.github.com/users/go-yaml/gists{/gist_id}","starred_url":"https://api.github.com/users/go-yaml/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/go-yaml/subscriptions","organizations_url":"https://api.github.com/users/go-yaml/orgs","repos_url":"https://api.github.com/users/go-yaml/repos","events_url":"https://api.github.com/users/go-yaml/events{/privacy}","received_events_url":"https://api.github.com/users/go-yaml/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/go-yaml/yaml","description":"YAML support for the Go language.","fork":false,"url":"https://api.github.com/repos/go-yaml/yaml","forks_url":"https://api.github.com/repos/go-yaml/yaml/forks","keys_url":"https://api.github.com/repos/go-yaml/yaml/keys{/key_id}","collaborators_url":"https://api.github.com/repos/go-yaml/yaml/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/go-yaml/yaml/teams","hooks_url":"https://api.github.com/repos/go-yaml/yaml/hooks","issue_events_url":"https://api.github.com/repos/go-yaml/yaml/issues/events{/number}","events_url":"https://api.github.com/repos/go-yaml/yaml/events","assignees_url":"https://api.github.com/repos/go-yaml/yaml/assignees{/user}","branches_url":"https://api.github.com/repos/go-yaml/yaml/branches{/branch}","tags_url":"https://api.github.com/repos/go-yaml/yaml/tags","blobs_url":"https://api.github.com/repos/go-yaml/yaml/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/go-yaml/yaml/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/go-yaml/yaml/git/refs{/sha}","trees_url":"https://api.github.com/repos/go-yaml/yaml/git/trees{/sha}","statuses_url":"https://api.github.com/repos/go-yaml/yaml/statuses/{sha}","languages_url":"https://api.github.com/repos/go-yaml/yaml/languages","stargazers_url":"https://api.github.com/repos/go-yaml/yaml/stargazers","contributors_url":"https://api.github.com/repos/go-yaml/yaml/contributors","subscribers_url":"https://api.github.com/repos/go-yaml/yaml/subscribers","subscription_url":"https://api.github.com/repos/go-yaml/yaml/subscription","commits_url":"https://api.github.com/repos/go-yaml/yaml/commits{/sha}","git_commits_url":"https://api.github.com/repos/go-yaml/yaml/git/commits{/sha}","comments_url":"https://api.github.com/repos/go-yaml/yaml/comments{/number}","issue_comment_url":"https://api.github.com/repos/go-yaml/yaml/issues/comments{/number}","contents_url":"https://api.github.com/repos/go-yaml/yaml/contents/{+path}","compare_url":"https://api.github.com/repos/go-yaml/yaml/compare/{base}...{head}","merges_url":"https://api.github.com/repos/go-yaml/yaml/merges","archive_url":"https://api.github.com/repos/go-yaml/yaml/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/go-yaml/yaml/downloads","issues_url":"https://api.github.com/repos/go-yaml/yaml/issues{/number}","pulls_url":"https://api.github.com/repos/go-yaml/yaml/pulls{/number}","milestones_url":"https://api.github.com/repos/go-yaml/yaml/milestones{/number}","notifications_url":"https://api.github.com/repos/go-yaml/yaml/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/go-yaml/yaml/labels{/name}","releases_url":"https://api.github.com/repos/go-yaml/yaml/releases{/id}","deployments_url":"https://api.github.com/repos/go-yaml/yaml/deployments","created_at":"2014-03-05T18:54:57Z","updated_at":"2018-02-06T19:15:27Z","pushed_at":"2018-02-03T04:27:05Z","git_url":"git://github.com/go-yaml/yaml.git","ssh_url":"git@github.com:go-yaml/yaml.git","clone_url":"https://github.com/go-yaml/yaml.git","svn_url":"https://github.com/go-yaml/yaml","homepage":null,"size":1275,"stargazers_count":1843,"watchers_count":1843,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":336,"mirror_url":null,"archived":false,"open_issues_count":119,"license":null,"forks":336,"open_issues":119,"watchers":1843,"default_branch":"v2","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"go-yaml","id":6823640,"avatar_url":"https://avatars1.githubusercontent.com/u/6823640?v=4","gravatar_id":"","url":"https://api.github.com/users/go-yaml","html_url":"https://github.com/go-yaml","followers_url":"https://api.github.com/users/go-yaml/followers","following_url":"https://api.github.com/users/go-yaml/following{/other_user}","gists_url":"https://api.github.com/users/go-yaml/gists{/gist_id}","starred_url":"https://api.github.com/users/go-yaml/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/go-yaml/subscriptions","organizations_url":"https://api.github.com/users/go-yaml/orgs","repos_url":"https://api.github.com/users/go-yaml/repos","events_url":"https://api.github.com/users/go-yaml/events{/privacy}","received_events_url":"https://api.github.com/users/go-yaml/received_events","type":"Organization","site_admin":false},"network_count":336,"subscribers_count":57}
+
+GET https://api.github.com/repos/golang/protobuf
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:48 GMT
+Etag: W/"0e9635332eba4c1de388c72cfef568f0"
+Last-Modified: Tue, 06 Feb 2018 22:54:14 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A858D:864353:5A7A5F74
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4779
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.058407
+X-Xss-Protection: 1; mode=block
+
+{"id":27051771,"name":"protobuf","full_name":"golang/protobuf","owner":{"login":"golang","id":4314092,"avatar_url":"https://avatars3.githubusercontent.com/u/4314092?v=4","gravatar_id":"","url":"https://api.github.com/users/golang","html_url":"https://github.com/golang","followers_url":"https://api.github.com/users/golang/followers","following_url":"https://api.github.com/users/golang/following{/other_user}","gists_url":"https://api.github.com/users/golang/gists{/gist_id}","starred_url":"https://api.github.com/users/golang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/golang/subscriptions","organizations_url":"https://api.github.com/users/golang/orgs","repos_url":"https://api.github.com/users/golang/repos","events_url":"https://api.github.com/users/golang/events{/privacy}","received_events_url":"https://api.github.com/users/golang/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/golang/protobuf","description":"Go support for Google's protocol buffers","fork":false,"url":"https://api.github.com/repos/golang/protobuf","forks_url":"https://api.github.com/repos/golang/protobuf/forks","keys_url":"https://api.github.com/repos/golang/protobuf/keys{/key_id}","collaborators_url":"https://api.github.com/repos/golang/protobuf/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/golang/protobuf/teams","hooks_url":"https://api.github.com/repos/golang/protobuf/hooks","issue_events_url":"https://api.github.com/repos/golang/protobuf/issues/events{/number}","events_url":"https://api.github.com/repos/golang/protobuf/events","assignees_url":"https://api.github.com/repos/golang/protobuf/assignees{/user}","branches_url":"https://api.github.com/repos/golang/protobuf/branches{/branch}","tags_url":"https://api.github.com/repos/golang/protobuf/tags","blobs_url":"https://api.github.com/repos/golang/protobuf/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/golang/protobuf/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/golang/protobuf/git/refs{/sha}","trees_url":"https://api.github.com/repos/golang/protobuf/git/trees{/sha}","statuses_url":"https://api.github.com/repos/golang/protobuf/statuses/{sha}","languages_url":"https://api.github.com/repos/golang/protobuf/languages","stargazers_url":"https://api.github.com/repos/golang/protobuf/stargazers","contributors_url":"https://api.github.com/repos/golang/protobuf/contributors","subscribers_url":"https://api.github.com/repos/golang/protobuf/subscribers","subscription_url":"https://api.github.com/repos/golang/protobuf/subscription","commits_url":"https://api.github.com/repos/golang/protobuf/commits{/sha}","git_commits_url":"https://api.github.com/repos/golang/protobuf/git/commits{/sha}","comments_url":"https://api.github.com/repos/golang/protobuf/comments{/number}","issue_comment_url":"https://api.github.com/repos/golang/protobuf/issues/comments{/number}","contents_url":"https://api.github.com/repos/golang/protobuf/contents/{+path}","compare_url":"https://api.github.com/repos/golang/protobuf/compare/{base}...{head}","merges_url":"https://api.github.com/repos/golang/protobuf/merges","archive_url":"https://api.github.com/repos/golang/protobuf/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/golang/protobuf/downloads","issues_url":"https://api.github.com/repos/golang/protobuf/issues{/number}","pulls_url":"https://api.github.com/repos/golang/protobuf/pulls{/number}","milestones_url":"https://api.github.com/repos/golang/protobuf/milestones{/number}","notifications_url":"https://api.github.com/repos/golang/protobuf/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/golang/protobuf/labels{/name}","releases_url":"https://api.github.com/repos/golang/protobuf/releases{/id}","deployments_url":"https://api.github.com/repos/golang/protobuf/deployments","created_at":"2014-11-23T23:07:23Z","updated_at":"2018-02-06T22:54:14Z","pushed_at":"2018-02-07T01:48:07Z","git_url":"git://github.com/golang/protobuf.git","ssh_url":"git@github.com:golang/protobuf.git","clone_url":"https://github.com/golang/protobuf.git","svn_url":"https://github.com/golang/protobuf","homepage":null,"size":3187,"stargazers_count":2554,"watchers_count":2554,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":593,"mirror_url":null,"archived":false,"open_issues_count":104,"license":{"key":"other","name":"Other","spdx_id":null,"url":null},"forks":593,"open_issues":104,"watchers":2554,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true},"allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"organization":{"login":"golang","id":4314092,"avatar_url":"https://avatars3.githubusercontent.com/u/4314092?v=4","gravatar_id":"","url":"https://api.github.com/users/golang","html_url":"https://github.com/golang","followers_url":"https://api.github.com/users/golang/followers","following_url":"https://api.github.com/users/golang/following{/other_user}","gists_url":"https://api.github.com/users/golang/gists{/gist_id}","starred_url":"https://api.github.com/users/golang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/golang/subscriptions","organizations_url":"https://api.github.com/users/golang/orgs","repos_url":"https://api.github.com/users/golang/repos","events_url":"https://api.github.com/users/golang/events{/privacy}","received_events_url":"https://api.github.com/users/golang/received_events","type":"Organization","site_admin":false},"network_count":593,"subscribers_count":147}
+
+GET https://api.github.com/repos/jmank88/nuts
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:48 GMT
+Etag: W/"6e8fded196b1d32978f7d6f9a05b625f"
+Last-Modified: Wed, 24 Jan 2018 10:38:38 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A859B:864363:5A7A5F74
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4778
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.066493
+X-Xss-Protection: 1; mode=block
+
+{"id":86607147,"name":"nuts","full_name":"jmank88/nuts","owner":{"login":"jmank88","id":1194128,"avatar_url":"https://avatars2.githubusercontent.com/u/1194128?v=4","gravatar_id":"","url":"https://api.github.com/users/jmank88","html_url":"https://github.com/jmank88","followers_url":"https://api.github.com/users/jmank88/followers","following_url":"https://api.github.com/users/jmank88/following{/other_user}","gists_url":"https://api.github.com/users/jmank88/gists{/gist_id}","starred_url":"https://api.github.com/users/jmank88/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jmank88/subscriptions","organizations_url":"https://api.github.com/users/jmank88/orgs","repos_url":"https://api.github.com/users/jmank88/repos","events_url":"https://api.github.com/users/jmank88/events{/privacy}","received_events_url":"https://api.github.com/users/jmank88/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jmank88/nuts","description":"A collections of BoltDB utilities","fork":false,"url":"https://api.github.com/repos/jmank88/nuts","forks_url":"https://api.github.com/repos/jmank88/nuts/forks","keys_url":"https://api.github.com/repos/jmank88/nuts/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jmank88/nuts/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jmank88/nuts/teams","hooks_url":"https://api.github.com/repos/jmank88/nuts/hooks","issue_events_url":"https://api.github.com/repos/jmank88/nuts/issues/events{/number}","events_url":"https://api.github.com/repos/jmank88/nuts/events","assignees_url":"https://api.github.com/repos/jmank88/nuts/assignees{/user}","branches_url":"https://api.github.com/repos/jmank88/nuts/branches{/branch}","tags_url":"https://api.github.com/repos/jmank88/nuts/tags","blobs_url":"https://api.github.com/repos/jmank88/nuts/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jmank88/nuts/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jmank88/nuts/git/refs{/sha}","trees_url":"https://api.github.com/repos/jmank88/nuts/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jmank88/nuts/statuses/{sha}","languages_url":"https://api.github.com/repos/jmank88/nuts/languages","stargazers_url":"https://api.github.com/repos/jmank88/nuts/stargazers","contributors_url":"https://api.github.com/repos/jmank88/nuts/contributors","subscribers_url":"https://api.github.com/repos/jmank88/nuts/subscribers","subscription_url":"https://api.github.com/repos/jmank88/nuts/subscription","commits_url":"https://api.github.com/repos/jmank88/nuts/commits{/sha}","git_commits_url":"https://api.github.com/repos/jmank88/nuts/git/commits{/sha}","comments_url":"https://api.github.com/repos/jmank88/nuts/comments{/number}","issue_comment_url":"https://api.github.com/repos/jmank88/nuts/issues/comments{/number}","contents_url":"https://api.github.com/repos/jmank88/nuts/contents/{+path}","compare_url":"https://api.github.com/repos/jmank88/nuts/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jmank88/nuts/merges","archive_url":"https://api.github.com/repos/jmank88/nuts/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jmank88/nuts/downloads","issues_url":"https://api.github.com/repos/jmank88/nuts/issues{/number}","pulls_url":"https://api.github.com/repos/jmank88/nuts/pulls{/number}","milestones_url":"https://api.github.com/repos/jmank88/nuts/milestones{/number}","notifications_url":"https://api.github.com/repos/jmank88/nuts/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jmank88/nuts/labels{/name}","releases_url":"https://api.github.com/repos/jmank88/nuts/releases{/id}","deployments_url":"https://api.github.com/repos/jmank88/nuts/deployments","created_at":"2017-03-29T16:50:48Z","updated_at":"2018-01-24T10:38:38Z","pushed_at":"2018-01-09T02:28:11Z","git_url":"git://github.com/jmank88/nuts.git","ssh_url":"git@github.com:jmank88/nuts.git","clone_url":"https://github.com/jmank88/nuts.git","svn_url":"https://github.com/jmank88/nuts","homepage":null,"size":18,"stargazers_count":1,"watchers_count":1,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":2,"open_issues":0,"watchers":1,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"network_count":2,"subscribers_count":1}
+
+GET https://api.github.com/repos/nightlyone/lockfile
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:48 GMT
+Etag: W/"366e8aae4d39f542b57aecd243b37fdb"
+Last-Modified: Sun, 24 Dec 2017 00:31:13 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A85A3:864375:5A7A5F74
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4777
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.052926
+X-Xss-Protection: 1; mode=block
+
+{"id":9440454,"name":"lockfile","full_name":"nightlyone/lockfile","owner":{"login":"nightlyone","id":1767118,"avatar_url":"https://avatars1.githubusercontent.com/u/1767118?v=4","gravatar_id":"","url":"https://api.github.com/users/nightlyone","html_url":"https://github.com/nightlyone","followers_url":"https://api.github.com/users/nightlyone/followers","following_url":"https://api.github.com/users/nightlyone/following{/other_user}","gists_url":"https://api.github.com/users/nightlyone/gists{/gist_id}","starred_url":"https://api.github.com/users/nightlyone/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nightlyone/subscriptions","organizations_url":"https://api.github.com/users/nightlyone/orgs","repos_url":"https://api.github.com/users/nightlyone/repos","events_url":"https://api.github.com/users/nightlyone/events{/privacy}","received_events_url":"https://api.github.com/users/nightlyone/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/nightlyone/lockfile","description":"Handle locking via pid files","fork":false,"url":"https://api.github.com/repos/nightlyone/lockfile","forks_url":"https://api.github.com/repos/nightlyone/lockfile/forks","keys_url":"https://api.github.com/repos/nightlyone/lockfile/keys{/key_id}","collaborators_url":"https://api.github.com/repos/nightlyone/lockfile/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/nightlyone/lockfile/teams","hooks_url":"https://api.github.com/repos/nightlyone/lockfile/hooks","issue_events_url":"https://api.github.com/repos/nightlyone/lockfile/issues/events{/number}","events_url":"https://api.github.com/repos/nightlyone/lockfile/events","assignees_url":"https://api.github.com/repos/nightlyone/lockfile/assignees{/user}","branches_url":"https://api.github.com/repos/nightlyone/lockfile/branches{/branch}","tags_url":"https://api.github.com/repos/nightlyone/lockfile/tags","blobs_url":"https://api.github.com/repos/nightlyone/lockfile/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/nightlyone/lockfile/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/nightlyone/lockfile/git/refs{/sha}","trees_url":"https://api.github.com/repos/nightlyone/lockfile/git/trees{/sha}","statuses_url":"https://api.github.com/repos/nightlyone/lockfile/statuses/{sha}","languages_url":"https://api.github.com/repos/nightlyone/lockfile/languages","stargazers_url":"https://api.github.com/repos/nightlyone/lockfile/stargazers","contributors_url":"https://api.github.com/repos/nightlyone/lockfile/contributors","subscribers_url":"https://api.github.com/repos/nightlyone/lockfile/subscribers","subscription_url":"https://api.github.com/repos/nightlyone/lockfile/subscription","commits_url":"https://api.github.com/repos/nightlyone/lockfile/commits{/sha}","git_commits_url":"https://api.github.com/repos/nightlyone/lockfile/git/commits{/sha}","comments_url":"https://api.github.com/repos/nightlyone/lockfile/comments{/number}","issue_comment_url":"https://api.github.com/repos/nightlyone/lockfile/issues/comments{/number}","contents_url":"https://api.github.com/repos/nightlyone/lockfile/contents/{+path}","compare_url":"https://api.github.com/repos/nightlyone/lockfile/compare/{base}...{head}","merges_url":"https://api.github.com/repos/nightlyone/lockfile/merges","archive_url":"https://api.github.com/repos/nightlyone/lockfile/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/nightlyone/lockfile/downloads","issues_url":"https://api.github.com/repos/nightlyone/lockfile/issues{/number}","pulls_url":"https://api.github.com/repos/nightlyone/lockfile/pulls{/number}","milestones_url":"https://api.github.com/repos/nightlyone/lockfile/milestones{/number}","notifications_url":"https://api.github.com/repos/nightlyone/lockfile/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/nightlyone/lockfile/labels{/name}","releases_url":"https://api.github.com/repos/nightlyone/lockfile/releases{/id}","deployments_url":"https://api.github.com/repos/nightlyone/lockfile/deployments","created_at":"2013-04-15T04:05:26Z","updated_at":"2017-12-24T00:31:13Z","pushed_at":"2018-01-08T15:23:51Z","git_url":"git://github.com/nightlyone/lockfile.git","ssh_url":"git@github.com:nightlyone/lockfile.git","clone_url":"https://github.com/nightlyone/lockfile.git","svn_url":"https://github.com/nightlyone/lockfile","homepage":null,"size":23,"stargazers_count":67,"watchers_count":67,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":25,"mirror_url":null,"archived":false,"open_issues_count":4,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":25,"open_issues":4,"watchers":67,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"network_count":25,"subscribers_count":6}
+
+GET https://api.github.com/repos/pelletier/go-toml
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:48 GMT
+Etag: W/"0827cbca3e3e1502ebce08d0d58cfcc7"
+Last-Modified: Mon, 05 Feb 2018 08:54:00 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A85B1:864388:5A7A5F74
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4776
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.044209
+X-Xss-Protection: 1; mode=block
+
+{"id":8393979,"name":"go-toml","full_name":"pelletier/go-toml","owner":{"login":"pelletier","id":172804,"avatar_url":"https://avatars2.githubusercontent.com/u/172804?v=4","gravatar_id":"","url":"https://api.github.com/users/pelletier","html_url":"https://github.com/pelletier","followers_url":"https://api.github.com/users/pelletier/followers","following_url":"https://api.github.com/users/pelletier/following{/other_user}","gists_url":"https://api.github.com/users/pelletier/gists{/gist_id}","starred_url":"https://api.github.com/users/pelletier/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pelletier/subscriptions","organizations_url":"https://api.github.com/users/pelletier/orgs","repos_url":"https://api.github.com/users/pelletier/repos","events_url":"https://api.github.com/users/pelletier/events{/privacy}","received_events_url":"https://api.github.com/users/pelletier/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/pelletier/go-toml","description":"Go library for the TOML language","fork":false,"url":"https://api.github.com/repos/pelletier/go-toml","forks_url":"https://api.github.com/repos/pelletier/go-toml/forks","keys_url":"https://api.github.com/repos/pelletier/go-toml/keys{/key_id}","collaborators_url":"https://api.github.com/repos/pelletier/go-toml/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/pelletier/go-toml/teams","hooks_url":"https://api.github.com/repos/pelletier/go-toml/hooks","issue_events_url":"https://api.github.com/repos/pelletier/go-toml/issues/events{/number}","events_url":"https://api.github.com/repos/pelletier/go-toml/events","assignees_url":"https://api.github.com/repos/pelletier/go-toml/assignees{/user}","branches_url":"https://api.github.com/repos/pelletier/go-toml/branches{/branch}","tags_url":"https://api.github.com/repos/pelletier/go-toml/tags","blobs_url":"https://api.github.com/repos/pelletier/go-toml/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/pelletier/go-toml/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/pelletier/go-toml/git/refs{/sha}","trees_url":"https://api.github.com/repos/pelletier/go-toml/git/trees{/sha}","statuses_url":"https://api.github.com/repos/pelletier/go-toml/statuses/{sha}","languages_url":"https://api.github.com/repos/pelletier/go-toml/languages","stargazers_url":"https://api.github.com/repos/pelletier/go-toml/stargazers","contributors_url":"https://api.github.com/repos/pelletier/go-toml/contributors","subscribers_url":"https://api.github.com/repos/pelletier/go-toml/subscribers","subscription_url":"https://api.github.com/repos/pelletier/go-toml/subscription","commits_url":"https://api.github.com/repos/pelletier/go-toml/commits{/sha}","git_commits_url":"https://api.github.com/repos/pelletier/go-toml/git/commits{/sha}","comments_url":"https://api.github.com/repos/pelletier/go-toml/comments{/number}","issue_comment_url":"https://api.github.com/repos/pelletier/go-toml/issues/comments{/number}","contents_url":"https://api.github.com/repos/pelletier/go-toml/contents/{+path}","compare_url":"https://api.github.com/repos/pelletier/go-toml/compare/{base}...{head}","merges_url":"https://api.github.com/repos/pelletier/go-toml/merges","archive_url":"https://api.github.com/repos/pelletier/go-toml/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/pelletier/go-toml/downloads","issues_url":"https://api.github.com/repos/pelletier/go-toml/issues{/number}","pulls_url":"https://api.github.com/repos/pelletier/go-toml/pulls{/number}","milestones_url":"https://api.github.com/repos/pelletier/go-toml/milestones{/number}","notifications_url":"https://api.github.com/repos/pelletier/go-toml/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/pelletier/go-toml/labels{/name}","releases_url":"https://api.github.com/repos/pelletier/go-toml/releases{/id}","deployments_url":"https://api.github.com/repos/pelletier/go-toml/deployments","created_at":"2013-02-24T17:45:51Z","updated_at":"2018-02-05T08:54:00Z","pushed_at":"2018-01-24T03:50:02Z","git_url":"git://github.com/pelletier/go-toml.git","ssh_url":"git@github.com:pelletier/go-toml.git","clone_url":"https://github.com/pelletier/go-toml.git","svn_url":"https://github.com/pelletier/go-toml","homepage":"https://github.com/pelletier/go-toml","size":426,"stargazers_count":358,"watchers_count":358,"language":"Go","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":61,"mirror_url":null,"archived":false,"open_issues_count":12,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":61,"open_issues":12,"watchers":358,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"network_count":61,"subscribers_count":17}
+
+GET https://api.github.com/repos/pkg/errors
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:48 GMT
+Etag: W/"4429a3c3043fffcad749341d817d7bcf"
+Last-Modified: Tue, 06 Feb 2018 22:33:24 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A85BD:86439B:5A7A5F74
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4775
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.049939
+X-Xss-Protection: 1; mode=block
+
+{"id":48643510,"name":"errors","full_name":"pkg/errors","owner":{"login":"pkg","id":5497984,"avatar_url":"https://avatars3.githubusercontent.com/u/5497984?v=4","gravatar_id":"","url":"https://api.github.com/users/pkg","html_url":"https://github.com/pkg","followers_url":"https://api.github.com/users/pkg/followers","following_url":"https://api.github.com/users/pkg/following{/other_user}","gists_url":"https://api.github.com/users/pkg/gists{/gist_id}","starred_url":"https://api.github.com/users/pkg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pkg/subscriptions","organizations_url":"https://api.github.com/users/pkg/orgs","repos_url":"https://api.github.com/users/pkg/repos","events_url":"https://api.github.com/users/pkg/events{/privacy}","received_events_url":"https://api.github.com/users/pkg/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/pkg/errors","description":"Simple error handling primitives","fork":false,"url":"https://api.github.com/repos/pkg/errors","forks_url":"https://api.github.com/repos/pkg/errors/forks","keys_url":"https://api.github.com/repos/pkg/errors/keys{/key_id}","collaborators_url":"https://api.github.com/repos/pkg/errors/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/pkg/errors/teams","hooks_url":"https://api.github.com/repos/pkg/errors/hooks","issue_events_url":"https://api.github.com/repos/pkg/errors/issues/events{/number}","events_url":"https://api.github.com/repos/pkg/errors/events","assignees_url":"https://api.github.com/repos/pkg/errors/assignees{/user}","branches_url":"https://api.github.com/repos/pkg/errors/branches{/branch}","tags_url":"https://api.github.com/repos/pkg/errors/tags","blobs_url":"https://api.github.com/repos/pkg/errors/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/pkg/errors/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/pkg/errors/git/refs{/sha}","trees_url":"https://api.github.com/repos/pkg/errors/git/trees{/sha}","statuses_url":"https://api.github.com/repos/pkg/errors/statuses/{sha}","languages_url":"https://api.github.com/repos/pkg/errors/languages","stargazers_url":"https://api.github.com/repos/pkg/errors/stargazers","contributors_url":"https://api.github.com/repos/pkg/errors/contributors","subscribers_url":"https://api.github.com/repos/pkg/errors/subscribers","subscription_url":"https://api.github.com/repos/pkg/errors/subscription","commits_url":"https://api.github.com/repos/pkg/errors/commits{/sha}","git_commits_url":"https://api.github.com/repos/pkg/errors/git/commits{/sha}","comments_url":"https://api.github.com/repos/pkg/errors/comments{/number}","issue_comment_url":"https://api.github.com/repos/pkg/errors/issues/comments{/number}","contents_url":"https://api.github.com/repos/pkg/errors/contents/{+path}","compare_url":"https://api.github.com/repos/pkg/errors/compare/{base}...{head}","merges_url":"https://api.github.com/repos/pkg/errors/merges","archive_url":"https://api.github.com/repos/pkg/errors/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/pkg/errors/downloads","issues_url":"https://api.github.com/repos/pkg/errors/issues{/number}","pulls_url":"https://api.github.com/repos/pkg/errors/pulls{/number}","milestones_url":"https://api.github.com/repos/pkg/errors/milestones{/number}","notifications_url":"https://api.github.com/repos/pkg/errors/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/pkg/errors/labels{/name}","releases_url":"https://api.github.com/repos/pkg/errors/releases{/id}","deployments_url":"https://api.github.com/repos/pkg/errors/deployments","created_at":"2015-12-27T12:05:38Z","updated_at":"2018-02-06T22:33:24Z","pushed_at":"2018-01-27T01:58:13Z","git_url":"git://github.com/pkg/errors.git","ssh_url":"git@github.com:pkg/errors.git","clone_url":"https://github.com/pkg/errors.git","svn_url":"https://github.com/pkg/errors","homepage":"https://godoc.org/github.com/pkg/errors","size":91,"stargazers_count":2691,"watchers_count":2691,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":145,"mirror_url":null,"archived":false,"open_issues_count":30,"license":{"key":"bsd-2-clause","name":"BSD 2-Clause \"Simplified\" License","spdx_id":"BSD-2-Clause","url":"https://api.github.com/licenses/bsd-2-clause"},"forks":145,"open_issues":30,"watchers":2691,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"pkg","id":5497984,"avatar_url":"https://avatars3.githubusercontent.com/u/5497984?v=4","gravatar_id":"","url":"https://api.github.com/users/pkg","html_url":"https://github.com/pkg","followers_url":"https://api.github.com/users/pkg/followers","following_url":"https://api.github.com/users/pkg/following{/other_user}","gists_url":"https://api.github.com/users/pkg/gists{/gist_id}","starred_url":"https://api.github.com/users/pkg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pkg/subscriptions","organizations_url":"https://api.github.com/users/pkg/orgs","repos_url":"https://api.github.com/users/pkg/repos","events_url":"https://api.github.com/users/pkg/events{/privacy}","received_events_url":"https://api.github.com/users/pkg/received_events","type":"Organization","site_admin":false},"network_count":145,"subscribers_count":67}
+
+GET https://api.github.com/repos/sdboyer/constext
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:48 GMT
+Etag: W/"7e5bcc137f66894938b63b2978ee1b74"
+Last-Modified: Wed, 31 Jan 2018 10:31:12 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A85CF:8643AC:5A7A5F74
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4774
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.052338
+X-Xss-Protection: 1; mode=block
+
+{"id":85373779,"name":"constext","full_name":"sdboyer/constext","owner":{"login":"sdboyer","id":21599,"avatar_url":"https://avatars0.githubusercontent.com/u/21599?v=4","gravatar_id":"","url":"https://api.github.com/users/sdboyer","html_url":"https://github.com/sdboyer","followers_url":"https://api.github.com/users/sdboyer/followers","following_url":"https://api.github.com/users/sdboyer/following{/other_user}","gists_url":"https://api.github.com/users/sdboyer/gists{/gist_id}","starred_url":"https://api.github.com/users/sdboyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sdboyer/subscriptions","organizations_url":"https://api.github.com/users/sdboyer/orgs","repos_url":"https://api.github.com/users/sdboyer/repos","events_url":"https://api.github.com/users/sdboyer/events{/privacy}","received_events_url":"https://api.github.com/users/sdboyer/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/sdboyer/constext","description":"ctx = Cons(ctx1, ctx2)","fork":false,"url":"https://api.github.com/repos/sdboyer/constext","forks_url":"https://api.github.com/repos/sdboyer/constext/forks","keys_url":"https://api.github.com/repos/sdboyer/constext/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sdboyer/constext/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sdboyer/constext/teams","hooks_url":"https://api.github.com/repos/sdboyer/constext/hooks","issue_events_url":"https://api.github.com/repos/sdboyer/constext/issues/events{/number}","events_url":"https://api.github.com/repos/sdboyer/constext/events","assignees_url":"https://api.github.com/repos/sdboyer/constext/assignees{/user}","branches_url":"https://api.github.com/repos/sdboyer/constext/branches{/branch}","tags_url":"https://api.github.com/repos/sdboyer/constext/tags","blobs_url":"https://api.github.com/repos/sdboyer/constext/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sdboyer/constext/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sdboyer/constext/git/refs{/sha}","trees_url":"https://api.github.com/repos/sdboyer/constext/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sdboyer/constext/statuses/{sha}","languages_url":"https://api.github.com/repos/sdboyer/constext/languages","stargazers_url":"https://api.github.com/repos/sdboyer/constext/stargazers","contributors_url":"https://api.github.com/repos/sdboyer/constext/contributors","subscribers_url":"https://api.github.com/repos/sdboyer/constext/subscribers","subscription_url":"https://api.github.com/repos/sdboyer/constext/subscription","commits_url":"https://api.github.com/repos/sdboyer/constext/commits{/sha}","git_commits_url":"https://api.github.com/repos/sdboyer/constext/git/commits{/sha}","comments_url":"https://api.github.com/repos/sdboyer/constext/comments{/number}","issue_comment_url":"https://api.github.com/repos/sdboyer/constext/issues/comments{/number}","contents_url":"https://api.github.com/repos/sdboyer/constext/contents/{+path}","compare_url":"https://api.github.com/repos/sdboyer/constext/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sdboyer/constext/merges","archive_url":"https://api.github.com/repos/sdboyer/constext/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sdboyer/constext/downloads","issues_url":"https://api.github.com/repos/sdboyer/constext/issues{/number}","pulls_url":"https://api.github.com/repos/sdboyer/constext/pulls{/number}","milestones_url":"https://api.github.com/repos/sdboyer/constext/milestones{/number}","notifications_url":"https://api.github.com/repos/sdboyer/constext/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sdboyer/constext/labels{/name}","releases_url":"https://api.github.com/repos/sdboyer/constext/releases{/id}","deployments_url":"https://api.github.com/repos/sdboyer/constext/deployments","created_at":"2017-03-18T03:45:01Z","updated_at":"2018-01-31T10:31:12Z","pushed_at":"2017-03-21T16:34:57Z","git_url":"git://github.com/sdboyer/constext.git","ssh_url":"git@github.com:sdboyer/constext.git","clone_url":"https://github.com/sdboyer/constext.git","svn_url":"https://github.com/sdboyer/constext","homepage":"","size":16,"stargazers_count":18,"watchers_count":18,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":0,"open_issues":0,"watchers":18,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"network_count":0,"subscribers_count":2}
+
+GET https://api.github.com/repos/docker/distribution
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:48 GMT
+Etag: W/"3f6a4178100ad1c44f15e8442b1ee495"
+Last-Modified: Tue, 06 Feb 2018 19:22:24 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A85DC:8643C4:5A7A5F74
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4773
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.052699
+X-Xss-Protection: 1; mode=block
+
+{"id":28366058,"name":"distribution","full_name":"docker/distribution","owner":{"login":"docker","id":5429470,"avatar_url":"https://avatars1.githubusercontent.com/u/5429470?v=4","gravatar_id":"","url":"https://api.github.com/users/docker","html_url":"https://github.com/docker","followers_url":"https://api.github.com/users/docker/followers","following_url":"https://api.github.com/users/docker/following{/other_user}","gists_url":"https://api.github.com/users/docker/gists{/gist_id}","starred_url":"https://api.github.com/users/docker/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/docker/subscriptions","organizations_url":"https://api.github.com/users/docker/orgs","repos_url":"https://api.github.com/users/docker/repos","events_url":"https://api.github.com/users/docker/events{/privacy}","received_events_url":"https://api.github.com/users/docker/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/docker/distribution","description":"The Docker toolset to pack, ship, store, and deliver content","fork":false,"url":"https://api.github.com/repos/docker/distribution","forks_url":"https://api.github.com/repos/docker/distribution/forks","keys_url":"https://api.github.com/repos/docker/distribution/keys{/key_id}","collaborators_url":"https://api.github.com/repos/docker/distribution/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/docker/distribution/teams","hooks_url":"https://api.github.com/repos/docker/distribution/hooks","issue_events_url":"https://api.github.com/repos/docker/distribution/issues/events{/number}","events_url":"https://api.github.com/repos/docker/distribution/events","assignees_url":"https://api.github.com/repos/docker/distribution/assignees{/user}","branches_url":"https://api.github.com/repos/docker/distribution/branches{/branch}","tags_url":"https://api.github.com/repos/docker/distribution/tags","blobs_url":"https://api.github.com/repos/docker/distribution/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/docker/distribution/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/docker/distribution/git/refs{/sha}","trees_url":"https://api.github.com/repos/docker/distribution/git/trees{/sha}","statuses_url":"https://api.github.com/repos/docker/distribution/statuses/{sha}","languages_url":"https://api.github.com/repos/docker/distribution/languages","stargazers_url":"https://api.github.com/repos/docker/distribution/stargazers","contributors_url":"https://api.github.com/repos/docker/distribution/contributors","subscribers_url":"https://api.github.com/repos/docker/distribution/subscribers","subscription_url":"https://api.github.com/repos/docker/distribution/subscription","commits_url":"https://api.github.com/repos/docker/distribution/commits{/sha}","git_commits_url":"https://api.github.com/repos/docker/distribution/git/commits{/sha}","comments_url":"https://api.github.com/repos/docker/distribution/comments{/number}","issue_comment_url":"https://api.github.com/repos/docker/distribution/issues/comments{/number}","contents_url":"https://api.github.com/repos/docker/distribution/contents/{+path}","compare_url":"https://api.github.com/repos/docker/distribution/compare/{base}...{head}","merges_url":"https://api.github.com/repos/docker/distribution/merges","archive_url":"https://api.github.com/repos/docker/distribution/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/docker/distribution/downloads","issues_url":"https://api.github.com/repos/docker/distribution/issues{/number}","pulls_url":"https://api.github.com/repos/docker/distribution/pulls{/number}","milestones_url":"https://api.github.com/repos/docker/distribution/milestones{/number}","notifications_url":"https://api.github.com/repos/docker/distribution/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/docker/distribution/labels{/name}","releases_url":"https://api.github.com/repos/docker/distribution/releases{/id}","deployments_url":"https://api.github.com/repos/docker/distribution/deployments","created_at":"2014-12-22T23:49:26Z","updated_at":"2018-02-06T19:22:24Z","pushed_at":"2018-02-07T00:43:50Z","git_url":"git://github.com/docker/distribution.git","ssh_url":"git@github.com:docker/distribution.git","clone_url":"https://github.com/docker/distribution.git","svn_url":"https://github.com/docker/distribution","homepage":null,"size":12187,"stargazers_count":3730,"watchers_count":3730,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1274,"mirror_url":null,"archived":false,"open_issues_count":369,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0"},"forks":1274,"open_issues":369,"watchers":3730,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"docker","id":5429470,"avatar_url":"https://avatars1.githubusercontent.com/u/5429470?v=4","gravatar_id":"","url":"https://api.github.com/users/docker","html_url":"https://github.com/docker","followers_url":"https://api.github.com/users/docker/followers","following_url":"https://api.github.com/users/docker/following{/other_user}","gists_url":"https://api.github.com/users/docker/gists{/gist_id}","starred_url":"https://api.github.com/users/docker/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/docker/subscriptions","organizations_url":"https://api.github.com/users/docker/orgs","repos_url":"https://api.github.com/users/docker/repos","events_url":"https://api.github.com/users/docker/events{/privacy}","received_events_url":"https://api.github.com/users/docker/received_events","type":"Organization","site_admin":false},"network_count":1274,"subscribers_count":264}
+
+GET https://api.github.com/repos/AdRoll/goamz
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:48 GMT
+Etag: W/"ec71b81871e61699367274eb772424fc"
+Last-Modified: Mon, 05 Feb 2018 22:46:17 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A85EB:8643D4:5A7A5F74
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4772
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.057667
+X-Xss-Protection: 1; mode=block
+
+{"id":9154423,"name":"goamz","full_name":"AdRoll/goamz","owner":{"login":"AdRoll","id":4723070,"avatar_url":"https://avatars1.githubusercontent.com/u/4723070?v=4","gravatar_id":"","url":"https://api.github.com/users/AdRoll","html_url":"https://github.com/AdRoll","followers_url":"https://api.github.com/users/AdRoll/followers","following_url":"https://api.github.com/users/AdRoll/following{/other_user}","gists_url":"https://api.github.com/users/AdRoll/gists{/gist_id}","starred_url":"https://api.github.com/users/AdRoll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AdRoll/subscriptions","organizations_url":"https://api.github.com/users/AdRoll/orgs","repos_url":"https://api.github.com/users/AdRoll/repos","events_url":"https://api.github.com/users/AdRoll/events{/privacy}","received_events_url":"https://api.github.com/users/AdRoll/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/AdRoll/goamz","description":"Fork of the GOAMZ version developed within Canonical with additional functionality with DynamoDB","fork":false,"url":"https://api.github.com/repos/AdRoll/goamz","forks_url":"https://api.github.com/repos/AdRoll/goamz/forks","keys_url":"https://api.github.com/repos/AdRoll/goamz/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AdRoll/goamz/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AdRoll/goamz/teams","hooks_url":"https://api.github.com/repos/AdRoll/goamz/hooks","issue_events_url":"https://api.github.com/repos/AdRoll/goamz/issues/events{/number}","events_url":"https://api.github.com/repos/AdRoll/goamz/events","assignees_url":"https://api.github.com/repos/AdRoll/goamz/assignees{/user}","branches_url":"https://api.github.com/repos/AdRoll/goamz/branches{/branch}","tags_url":"https://api.github.com/repos/AdRoll/goamz/tags","blobs_url":"https://api.github.com/repos/AdRoll/goamz/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AdRoll/goamz/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AdRoll/goamz/git/refs{/sha}","trees_url":"https://api.github.com/repos/AdRoll/goamz/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AdRoll/goamz/statuses/{sha}","languages_url":"https://api.github.com/repos/AdRoll/goamz/languages","stargazers_url":"https://api.github.com/repos/AdRoll/goamz/stargazers","contributors_url":"https://api.github.com/repos/AdRoll/goamz/contributors","subscribers_url":"https://api.github.com/repos/AdRoll/goamz/subscribers","subscription_url":"https://api.github.com/repos/AdRoll/goamz/subscription","commits_url":"https://api.github.com/repos/AdRoll/goamz/commits{/sha}","git_commits_url":"https://api.github.com/repos/AdRoll/goamz/git/commits{/sha}","comments_url":"https://api.github.com/repos/AdRoll/goamz/comments{/number}","issue_comment_url":"https://api.github.com/repos/AdRoll/goamz/issues/comments{/number}","contents_url":"https://api.github.com/repos/AdRoll/goamz/contents/{+path}","compare_url":"https://api.github.com/repos/AdRoll/goamz/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AdRoll/goamz/merges","archive_url":"https://api.github.com/repos/AdRoll/goamz/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AdRoll/goamz/downloads","issues_url":"https://api.github.com/repos/AdRoll/goamz/issues{/number}","pulls_url":"https://api.github.com/repos/AdRoll/goamz/pulls{/number}","milestones_url":"https://api.github.com/repos/AdRoll/goamz/milestones{/number}","notifications_url":"https://api.github.com/repos/AdRoll/goamz/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AdRoll/goamz/labels{/name}","releases_url":"https://api.github.com/repos/AdRoll/goamz/releases{/id}","deployments_url":"https://api.github.com/repos/AdRoll/goamz/deployments","created_at":"2013-04-01T19:36:11Z","updated_at":"2018-02-05T22:46:17Z","pushed_at":"2017-08-25T15:48:03Z","git_url":"git://github.com/AdRoll/goamz.git","ssh_url":"git@github.com:AdRoll/goamz.git","clone_url":"https://github.com/AdRoll/goamz.git","svn_url":"https://github.com/AdRoll/goamz","homepage":"https://wiki.ubuntu.com/goamz","size":1941,"stargazers_count":407,"watchers_count":407,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":236,"mirror_url":null,"archived":false,"open_issues_count":40,"license":{"key":"lgpl-3.0","name":"GNU Lesser General Public License v3.0","spdx_id":"LGPL-3.0","url":"https://api.github.com/licenses/lgpl-3.0"},"forks":236,"open_issues":40,"watchers":407,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"AdRoll","id":4723070,"avatar_url":"https://avatars1.githubusercontent.com/u/4723070?v=4","gravatar_id":"","url":"https://api.github.com/users/AdRoll","html_url":"https://github.com/AdRoll","followers_url":"https://api.github.com/users/AdRoll/followers","following_url":"https://api.github.com/users/AdRoll/following{/other_user}","gists_url":"https://api.github.com/users/AdRoll/gists{/gist_id}","starred_url":"https://api.github.com/users/AdRoll/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AdRoll/subscriptions","organizations_url":"https://api.github.com/users/AdRoll/orgs","repos_url":"https://api.github.com/users/AdRoll/repos","events_url":"https://api.github.com/users/AdRoll/events{/privacy}","received_events_url":"https://api.github.com/users/AdRoll/received_events","type":"Organization","site_admin":false},"network_count":236,"subscribers_count":34}
+
+GET https://api.github.com/repos/MSOpenTech/azure-sdk-for-go
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:48 GMT
+Etag: W/"a96c34efc1bc09bbd6ba2a264904f327"
+Last-Modified: Thu, 01 Feb 2018 17:47:03 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A85FE:8643F0:5A7A5F74
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4770
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.057075
+X-Xss-Protection: 1; mode=block
+
+{"id":22855240,"name":"azure-sdk-for-go","full_name":"Azure/azure-sdk-for-go","owner":{"login":"Azure","id":6844498,"avatar_url":"https://avatars0.githubusercontent.com/u/6844498?v=4","gravatar_id":"","url":"https://api.github.com/users/Azure","html_url":"https://github.com/Azure","followers_url":"https://api.github.com/users/Azure/followers","following_url":"https://api.github.com/users/Azure/following{/other_user}","gists_url":"https://api.github.com/users/Azure/gists{/gist_id}","starred_url":"https://api.github.com/users/Azure/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Azure/subscriptions","organizations_url":"https://api.github.com/users/Azure/orgs","repos_url":"https://api.github.com/users/Azure/repos","events_url":"https://api.github.com/users/Azure/events{/privacy}","received_events_url":"https://api.github.com/users/Azure/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Azure/azure-sdk-for-go","description":"Microsoft Azure SDK for Go","fork":false,"url":"https://api.github.com/repos/Azure/azure-sdk-for-go","forks_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/forks","keys_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/teams","hooks_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/hooks","issue_events_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/issues/events{/number}","events_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/events","assignees_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/assignees{/user}","branches_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/branches{/branch}","tags_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/tags","blobs_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/git/refs{/sha}","trees_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/statuses/{sha}","languages_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/languages","stargazers_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/stargazers","contributors_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/contributors","subscribers_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/subscribers","subscription_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/subscription","commits_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/commits{/sha}","git_commits_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/git/commits{/sha}","comments_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/comments{/number}","issue_comment_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/issues/comments{/number}","contents_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/contents/{+path}","compare_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/merges","archive_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/downloads","issues_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/issues{/number}","pulls_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/pulls{/number}","milestones_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/milestones{/number}","notifications_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/labels{/name}","releases_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/releases{/id}","deployments_url":"https://api.github.com/repos/Azure/azure-sdk-for-go/deployments","created_at":"2014-08-11T21:18:43Z","updated_at":"2018-02-01T17:47:03Z","pushed_at":"2018-02-07T02:06:49Z","git_url":"git://github.com/Azure/azure-sdk-for-go.git","ssh_url":"git@github.com:Azure/azure-sdk-for-go.git","clone_url":"https://github.com/Azure/azure-sdk-for-go.git","svn_url":"https://github.com/Azure/azure-sdk-for-go","homepage":"https://docs.microsoft.com/azure/","size":17395,"stargazers_count":360,"watchers_count":360,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":200,"mirror_url":null,"archived":false,"open_issues_count":101,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0"},"forks":200,"open_issues":101,"watchers":360,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"Azure","id":6844498,"avatar_url":"https://avatars0.githubusercontent.com/u/6844498?v=4","gravatar_id":"","url":"https://api.github.com/users/Azure","html_url":"https://github.com/Azure","followers_url":"https://api.github.com/users/Azure/followers","following_url":"https://api.github.com/users/Azure/following{/other_user}","gists_url":"https://api.github.com/users/Azure/gists{/gist_id}","starred_url":"https://api.github.com/users/Azure/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Azure/subscriptions","organizations_url":"https://api.github.com/users/Azure/orgs","repos_url":"https://api.github.com/users/Azure/repos","events_url":"https://api.github.com/users/Azure/events{/privacy}","received_events_url":"https://api.github.com/users/Azure/received_events","type":"Organization","site_admin":false},"network_count":200,"subscribers_count":75}
+
+GET https://api.github.com/repos/Sirupsen/logrus
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:48 GMT
+Etag: W/"e5f23c2afc4e30f36fd678ba83aad747"
+Last-Modified: Wed, 07 Feb 2018 00:38:03 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8607:864403:5A7A5F74
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4769
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.054581
+X-Xss-Protection: 1; mode=block
+
+{"id":13628513,"name":"logrus","full_name":"sirupsen/logrus","owner":{"login":"sirupsen","id":97400,"avatar_url":"https://avatars3.githubusercontent.com/u/97400?v=4","gravatar_id":"","url":"https://api.github.com/users/sirupsen","html_url":"https://github.com/sirupsen","followers_url":"https://api.github.com/users/sirupsen/followers","following_url":"https://api.github.com/users/sirupsen/following{/other_user}","gists_url":"https://api.github.com/users/sirupsen/gists{/gist_id}","starred_url":"https://api.github.com/users/sirupsen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sirupsen/subscriptions","organizations_url":"https://api.github.com/users/sirupsen/orgs","repos_url":"https://api.github.com/users/sirupsen/repos","events_url":"https://api.github.com/users/sirupsen/events{/privacy}","received_events_url":"https://api.github.com/users/sirupsen/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/sirupsen/logrus","description":"Structured, pluggable logging for Go.","fork":false,"url":"https://api.github.com/repos/sirupsen/logrus","forks_url":"https://api.github.com/repos/sirupsen/logrus/forks","keys_url":"https://api.github.com/repos/sirupsen/logrus/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sirupsen/logrus/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sirupsen/logrus/teams","hooks_url":"https://api.github.com/repos/sirupsen/logrus/hooks","issue_events_url":"https://api.github.com/repos/sirupsen/logrus/issues/events{/number}","events_url":"https://api.github.com/repos/sirupsen/logrus/events","assignees_url":"https://api.github.com/repos/sirupsen/logrus/assignees{/user}","branches_url":"https://api.github.com/repos/sirupsen/logrus/branches{/branch}","tags_url":"https://api.github.com/repos/sirupsen/logrus/tags","blobs_url":"https://api.github.com/repos/sirupsen/logrus/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sirupsen/logrus/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sirupsen/logrus/git/refs{/sha}","trees_url":"https://api.github.com/repos/sirupsen/logrus/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sirupsen/logrus/statuses/{sha}","languages_url":"https://api.github.com/repos/sirupsen/logrus/languages","stargazers_url":"https://api.github.com/repos/sirupsen/logrus/stargazers","contributors_url":"https://api.github.com/repos/sirupsen/logrus/contributors","subscribers_url":"https://api.github.com/repos/sirupsen/logrus/subscribers","subscription_url":"https://api.github.com/repos/sirupsen/logrus/subscription","commits_url":"https://api.github.com/repos/sirupsen/logrus/commits{/sha}","git_commits_url":"https://api.github.com/repos/sirupsen/logrus/git/commits{/sha}","comments_url":"https://api.github.com/repos/sirupsen/logrus/comments{/number}","issue_comment_url":"https://api.github.com/repos/sirupsen/logrus/issues/comments{/number}","contents_url":"https://api.github.com/repos/sirupsen/logrus/contents/{+path}","compare_url":"https://api.github.com/repos/sirupsen/logrus/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sirupsen/logrus/merges","archive_url":"https://api.github.com/repos/sirupsen/logrus/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sirupsen/logrus/downloads","issues_url":"https://api.github.com/repos/sirupsen/logrus/issues{/number}","pulls_url":"https://api.github.com/repos/sirupsen/logrus/pulls{/number}","milestones_url":"https://api.github.com/repos/sirupsen/logrus/milestones{/number}","notifications_url":"https://api.github.com/repos/sirupsen/logrus/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sirupsen/logrus/labels{/name}","releases_url":"https://api.github.com/repos/sirupsen/logrus/releases{/id}","deployments_url":"https://api.github.com/repos/sirupsen/logrus/deployments","created_at":"2013-10-16T19:08:55Z","updated_at":"2018-02-07T00:38:03Z","pushed_at":"2018-02-07T01:40:46Z","git_url":"git://github.com/sirupsen/logrus.git","ssh_url":"git@github.com:sirupsen/logrus.git","clone_url":"https://github.com/sirupsen/logrus.git","svn_url":"https://github.com/sirupsen/logrus","homepage":"","size":506,"stargazers_count":6575,"watchers_count":6575,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":882,"mirror_url":null,"archived":false,"open_issues_count":139,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":882,"open_issues":139,"watchers":6575,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"network_count":882,"subscribers_count":198}
+
+GET https://api.github.com/repos/bugsnag/bugsnag-go
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:49 GMT
+Etag: W/"5da19655d47397e9a83f03f850d7aefd"
+Last-Modified: Wed, 31 Jan 2018 07:02:56 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A860B:86440A:5A7A5F74
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4768
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.060626
+X-Xss-Protection: 1; mode=block
+
+{"id":21560954,"name":"bugsnag-go","full_name":"bugsnag/bugsnag-go","owner":{"login":"bugsnag","id":1058895,"avatar_url":"https://avatars2.githubusercontent.com/u/1058895?v=4","gravatar_id":"","url":"https://api.github.com/users/bugsnag","html_url":"https://github.com/bugsnag","followers_url":"https://api.github.com/users/bugsnag/followers","following_url":"https://api.github.com/users/bugsnag/following{/other_user}","gists_url":"https://api.github.com/users/bugsnag/gists{/gist_id}","starred_url":"https://api.github.com/users/bugsnag/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bugsnag/subscriptions","organizations_url":"https://api.github.com/users/bugsnag/orgs","repos_url":"https://api.github.com/users/bugsnag/repos","events_url":"https://api.github.com/users/bugsnag/events{/privacy}","received_events_url":"https://api.github.com/users/bugsnag/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/bugsnag/bugsnag-go","description":"Automatic panic monitoring for Go and Go web frameworks, like negroni, gin, and revel","fork":false,"url":"https://api.github.com/repos/bugsnag/bugsnag-go","forks_url":"https://api.github.com/repos/bugsnag/bugsnag-go/forks","keys_url":"https://api.github.com/repos/bugsnag/bugsnag-go/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bugsnag/bugsnag-go/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bugsnag/bugsnag-go/teams","hooks_url":"https://api.github.com/repos/bugsnag/bugsnag-go/hooks","issue_events_url":"https://api.github.com/repos/bugsnag/bugsnag-go/issues/events{/number}","events_url":"https://api.github.com/repos/bugsnag/bugsnag-go/events","assignees_url":"https://api.github.com/repos/bugsnag/bugsnag-go/assignees{/user}","branches_url":"https://api.github.com/repos/bugsnag/bugsnag-go/branches{/branch}","tags_url":"https://api.github.com/repos/bugsnag/bugsnag-go/tags","blobs_url":"https://api.github.com/repos/bugsnag/bugsnag-go/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bugsnag/bugsnag-go/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bugsnag/bugsnag-go/git/refs{/sha}","trees_url":"https://api.github.com/repos/bugsnag/bugsnag-go/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bugsnag/bugsnag-go/statuses/{sha}","languages_url":"https://api.github.com/repos/bugsnag/bugsnag-go/languages","stargazers_url":"https://api.github.com/repos/bugsnag/bugsnag-go/stargazers","contributors_url":"https://api.github.com/repos/bugsnag/bugsnag-go/contributors","subscribers_url":"https://api.github.com/repos/bugsnag/bugsnag-go/subscribers","subscription_url":"https://api.github.com/repos/bugsnag/bugsnag-go/subscription","commits_url":"https://api.github.com/repos/bugsnag/bugsnag-go/commits{/sha}","git_commits_url":"https://api.github.com/repos/bugsnag/bugsnag-go/git/commits{/sha}","comments_url":"https://api.github.com/repos/bugsnag/bugsnag-go/comments{/number}","issue_comment_url":"https://api.github.com/repos/bugsnag/bugsnag-go/issues/comments{/number}","contents_url":"https://api.github.com/repos/bugsnag/bugsnag-go/contents/{+path}","compare_url":"https://api.github.com/repos/bugsnag/bugsnag-go/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bugsnag/bugsnag-go/merges","archive_url":"https://api.github.com/repos/bugsnag/bugsnag-go/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bugsnag/bugsnag-go/downloads","issues_url":"https://api.github.com/repos/bugsnag/bugsnag-go/issues{/number}","pulls_url":"https://api.github.com/repos/bugsnag/bugsnag-go/pulls{/number}","milestones_url":"https://api.github.com/repos/bugsnag/bugsnag-go/milestones{/number}","notifications_url":"https://api.github.com/repos/bugsnag/bugsnag-go/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bugsnag/bugsnag-go/labels{/name}","releases_url":"https://api.github.com/repos/bugsnag/bugsnag-go/releases{/id}","deployments_url":"https://api.github.com/repos/bugsnag/bugsnag-go/deployments","created_at":"2014-07-07T07:25:13Z","updated_at":"2018-01-31T07:02:56Z","pushed_at":"2017-12-06T23:19:19Z","git_url":"git://github.com/bugsnag/bugsnag-go.git","ssh_url":"git@github.com:bugsnag/bugsnag-go.git","clone_url":"https://github.com/bugsnag/bugsnag-go.git","svn_url":"https://github.com/bugsnag/bugsnag-go","homepage":"https://docs.bugsnag.com/platforms/go","size":244,"stargazers_count":81,"watchers_count":81,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":27,"mirror_url":null,"archived":false,"open_issues_count":8,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":27,"open_issues":8,"watchers":81,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"bugsnag","id":1058895,"avatar_url":"https://avatars2.githubusercontent.com/u/1058895?v=4","gravatar_id":"","url":"https://api.github.com/users/bugsnag","html_url":"https://github.com/bugsnag","followers_url":"https://api.github.com/users/bugsnag/followers","following_url":"https://api.github.com/users/bugsnag/following{/other_user}","gists_url":"https://api.github.com/users/bugsnag/gists{/gist_id}","starred_url":"https://api.github.com/users/bugsnag/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bugsnag/subscriptions","organizations_url":"https://api.github.com/users/bugsnag/orgs","repos_url":"https://api.github.com/users/bugsnag/repos","events_url":"https://api.github.com/users/bugsnag/events{/privacy}","received_events_url":"https://api.github.com/users/bugsnag/received_events","type":"Organization","site_admin":false},"network_count":27,"subscribers_count":17}
+
+GET https://api.github.com/repos/bugsnag/osext
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:49 GMT
+Etag: W/"9a776d75110e61e7eb28d4759cb2ac6e"
+Last-Modified: Tue, 17 Dec 2013 06:38:52 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8614:864412:5A7A5F75
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4767
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.070205
+X-Xss-Protection: 1; mode=block
+
+{"id":26449752,"name":"osext","full_name":"bugsnag/osext","owner":{"login":"bugsnag","id":1058895,"avatar_url":"https://avatars2.githubusercontent.com/u/1058895?v=4","gravatar_id":"","url":"https://api.github.com/users/bugsnag","html_url":"https://github.com/bugsnag","followers_url":"https://api.github.com/users/bugsnag/followers","following_url":"https://api.github.com/users/bugsnag/following{/other_user}","gists_url":"https://api.github.com/users/bugsnag/gists{/gist_id}","starred_url":"https://api.github.com/users/bugsnag/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bugsnag/subscriptions","organizations_url":"https://api.github.com/users/bugsnag/orgs","repos_url":"https://api.github.com/users/bugsnag/repos","events_url":"https://api.github.com/users/bugsnag/events{/privacy}","received_events_url":"https://api.github.com/users/bugsnag/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/bugsnag/osext","description":"Copy of https://bitbucket.org/kardianos/osext","fork":true,"url":"https://api.github.com/repos/bugsnag/osext","forks_url":"https://api.github.com/repos/bugsnag/osext/forks","keys_url":"https://api.github.com/repos/bugsnag/osext/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bugsnag/osext/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bugsnag/osext/teams","hooks_url":"https://api.github.com/repos/bugsnag/osext/hooks","issue_events_url":"https://api.github.com/repos/bugsnag/osext/issues/events{/number}","events_url":"https://api.github.com/repos/bugsnag/osext/events","assignees_url":"https://api.github.com/repos/bugsnag/osext/assignees{/user}","branches_url":"https://api.github.com/repos/bugsnag/osext/branches{/branch}","tags_url":"https://api.github.com/repos/bugsnag/osext/tags","blobs_url":"https://api.github.com/repos/bugsnag/osext/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bugsnag/osext/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bugsnag/osext/git/refs{/sha}","trees_url":"https://api.github.com/repos/bugsnag/osext/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bugsnag/osext/statuses/{sha}","languages_url":"https://api.github.com/repos/bugsnag/osext/languages","stargazers_url":"https://api.github.com/repos/bugsnag/osext/stargazers","contributors_url":"https://api.github.com/repos/bugsnag/osext/contributors","subscribers_url":"https://api.github.com/repos/bugsnag/osext/subscribers","subscription_url":"https://api.github.com/repos/bugsnag/osext/subscription","commits_url":"https://api.github.com/repos/bugsnag/osext/commits{/sha}","git_commits_url":"https://api.github.com/repos/bugsnag/osext/git/commits{/sha}","comments_url":"https://api.github.com/repos/bugsnag/osext/comments{/number}","issue_comment_url":"https://api.github.com/repos/bugsnag/osext/issues/comments{/number}","contents_url":"https://api.github.com/repos/bugsnag/osext/contents/{+path}","compare_url":"https://api.github.com/repos/bugsnag/osext/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bugsnag/osext/merges","archive_url":"https://api.github.com/repos/bugsnag/osext/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bugsnag/osext/downloads","issues_url":"https://api.github.com/repos/bugsnag/osext/issues{/number}","pulls_url":"https://api.github.com/repos/bugsnag/osext/pulls{/number}","milestones_url":"https://api.github.com/repos/bugsnag/osext/milestones{/number}","notifications_url":"https://api.github.com/repos/bugsnag/osext/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bugsnag/osext/labels{/name}","releases_url":"https://api.github.com/repos/bugsnag/osext/releases{/id}","deployments_url":"https://api.github.com/repos/bugsnag/osext/deployments","created_at":"2014-11-10T18:37:04Z","updated_at":"2013-12-17T06:38:52Z","pushed_at":"2013-06-17T22:49:20Z","git_url":"git://github.com/bugsnag/osext.git","ssh_url":"git@github.com:bugsnag/osext.git","clone_url":"https://github.com/bugsnag/osext.git","svn_url":"https://github.com/bugsnag/osext","homepage":null,"size":95,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":null,"url":null},"forks":1,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"bugsnag","id":1058895,"avatar_url":"https://avatars2.githubusercontent.com/u/1058895?v=4","gravatar_id":"","url":"https://api.github.com/users/bugsnag","html_url":"https://github.com/bugsnag","followers_url":"https://api.github.com/users/bugsnag/followers","following_url":"https://api.github.com/users/bugsnag/following{/other_user}","gists_url":"https://api.github.com/users/bugsnag/gists{/gist_id}","starred_url":"https://api.github.com/users/bugsnag/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bugsnag/subscriptions","organizations_url":"https://api.github.com/users/bugsnag/orgs","repos_url":"https://api.github.com/users/bugsnag/repos","events_url":"https://api.github.com/users/bugsnag/events{/privacy}","received_events_url":"https://api.github.com/users/bugsnag/received_events","type":"Organization","site_admin":false},"parent":{"id":10749101,"name":"osext","full_name":"mitchellh/osext","owner":{"login":"mitchellh","id":1299,"avatar_url":"https://avatars3.githubusercontent.com/u/1299?v=4","gravatar_id":"","url":"https://api.github.com/users/mitchellh","html_url":"https://github.com/mitchellh","followers_url":"https://api.github.com/users/mitchellh/followers","following_url":"https://api.github.com/users/mitchellh/following{/other_user}","gists_url":"https://api.github.com/users/mitchellh/gists{/gist_id}","starred_url":"https://api.github.com/users/mitchellh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mitchellh/subscriptions","organizations_url":"https://api.github.com/users/mitchellh/orgs","repos_url":"https://api.github.com/users/mitchellh/repos","events_url":"https://api.github.com/users/mitchellh/events{/privacy}","received_events_url":"https://api.github.com/users/mitchellh/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mitchellh/osext","description":"Copy of https://bitbucket.org/kardianos/osext","fork":false,"url":"https://api.github.com/repos/mitchellh/osext","forks_url":"https://api.github.com/repos/mitchellh/osext/forks","keys_url":"https://api.github.com/repos/mitchellh/osext/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mitchellh/osext/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mitchellh/osext/teams","hooks_url":"https://api.github.com/repos/mitchellh/osext/hooks","issue_events_url":"https://api.github.com/repos/mitchellh/osext/issues/events{/number}","events_url":"https://api.github.com/repos/mitchellh/osext/events","assignees_url":"https://api.github.com/repos/mitchellh/osext/assignees{/user}","branches_url":"https://api.github.com/repos/mitchellh/osext/branches{/branch}","tags_url":"https://api.github.com/repos/mitchellh/osext/tags","blobs_url":"https://api.github.com/repos/mitchellh/osext/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mitchellh/osext/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mitchellh/osext/git/refs{/sha}","trees_url":"https://api.github.com/repos/mitchellh/osext/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mitchellh/osext/statuses/{sha}","languages_url":"https://api.github.com/repos/mitchellh/osext/languages","stargazers_url":"https://api.github.com/repos/mitchellh/osext/stargazers","contributors_url":"https://api.github.com/repos/mitchellh/osext/contributors","subscribers_url":"https://api.github.com/repos/mitchellh/osext/subscribers","subscription_url":"https://api.github.com/repos/mitchellh/osext/subscription","commits_url":"https://api.github.com/repos/mitchellh/osext/commits{/sha}","git_commits_url":"https://api.github.com/repos/mitchellh/osext/git/commits{/sha}","comments_url":"https://api.github.com/repos/mitchellh/osext/comments{/number}","issue_comment_url":"https://api.github.com/repos/mitchellh/osext/issues/comments{/number}","contents_url":"https://api.github.com/repos/mitchellh/osext/contents/{+path}","compare_url":"https://api.github.com/repos/mitchellh/osext/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mitchellh/osext/merges","archive_url":"https://api.github.com/repos/mitchellh/osext/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mitchellh/osext/downloads","issues_url":"https://api.github.com/repos/mitchellh/osext/issues{/number}","pulls_url":"https://api.github.com/repos/mitchellh/osext/pulls{/number}","milestones_url":"https://api.github.com/repos/mitchellh/osext/milestones{/number}","notifications_url":"https://api.github.com/repos/mitchellh/osext/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mitchellh/osext/labels{/name}","releases_url":"https://api.github.com/repos/mitchellh/osext/releases{/id}","deployments_url":"https://api.github.com/repos/mitchellh/osext/deployments","created_at":"2013-06-17T22:49:09Z","updated_at":"2015-11-07T12:54:52Z","pushed_at":"2015-10-18T00:30:39Z","git_url":"git://github.com/mitchellh/osext.git","ssh_url":"git@github.com:mitchellh/osext.git","clone_url":"https://github.com/mitchellh/osext.git","svn_url":"https://github.com/mitchellh/osext","homepage":null,"size":104,"stargazers_count":2,"watchers_count":2,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":null,"url":null},"forks":3,"open_issues":0,"watchers":2,"default_branch":"master"},"source":{"id":10749101,"name":"osext","full_name":"mitchellh/osext","owner":{"login":"mitchellh","id":1299,"avatar_url":"https://avatars3.githubusercontent.com/u/1299?v=4","gravatar_id":"","url":"https://api.github.com/users/mitchellh","html_url":"https://github.com/mitchellh","followers_url":"https://api.github.com/users/mitchellh/followers","following_url":"https://api.github.com/users/mitchellh/following{/other_user}","gists_url":"https://api.github.com/users/mitchellh/gists{/gist_id}","starred_url":"https://api.github.com/users/mitchellh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mitchellh/subscriptions","organizations_url":"https://api.github.com/users/mitchellh/orgs","repos_url":"https://api.github.com/users/mitchellh/repos","events_url":"https://api.github.com/users/mitchellh/events{/privacy}","received_events_url":"https://api.github.com/users/mitchellh/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mitchellh/osext","description":"Copy of https://bitbucket.org/kardianos/osext","fork":false,"url":"https://api.github.com/repos/mitchellh/osext","forks_url":"https://api.github.com/repos/mitchellh/osext/forks","keys_url":"https://api.github.com/repos/mitchellh/osext/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mitchellh/osext/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mitchellh/osext/teams","hooks_url":"https://api.github.com/repos/mitchellh/osext/hooks","issue_events_url":"https://api.github.com/repos/mitchellh/osext/issues/events{/number}","events_url":"https://api.github.com/repos/mitchellh/osext/events","assignees_url":"https://api.github.com/repos/mitchellh/osext/assignees{/user}","branches_url":"https://api.github.com/repos/mitchellh/osext/branches{/branch}","tags_url":"https://api.github.com/repos/mitchellh/osext/tags","blobs_url":"https://api.github.com/repos/mitchellh/osext/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mitchellh/osext/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mitchellh/osext/git/refs{/sha}","trees_url":"https://api.github.com/repos/mitchellh/osext/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mitchellh/osext/statuses/{sha}","languages_url":"https://api.github.com/repos/mitchellh/osext/languages","stargazers_url":"https://api.github.com/repos/mitchellh/osext/stargazers","contributors_url":"https://api.github.com/repos/mitchellh/osext/contributors","subscribers_url":"https://api.github.com/repos/mitchellh/osext/subscribers","subscription_url":"https://api.github.com/repos/mitchellh/osext/subscription","commits_url":"https://api.github.com/repos/mitchellh/osext/commits{/sha}","git_commits_url":"https://api.github.com/repos/mitchellh/osext/git/commits{/sha}","comments_url":"https://api.github.com/repos/mitchellh/osext/comments{/number}","issue_comment_url":"https://api.github.com/repos/mitchellh/osext/issues/comments{/number}","contents_url":"https://api.github.com/repos/mitchellh/osext/contents/{+path}","compare_url":"https://api.github.com/repos/mitchellh/osext/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mitchellh/osext/merges","archive_url":"https://api.github.com/repos/mitchellh/osext/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mitchellh/osext/downloads","issues_url":"https://api.github.com/repos/mitchellh/osext/issues{/number}","pulls_url":"https://api.github.com/repos/mitchellh/osext/pulls{/number}","milestones_url":"https://api.github.com/repos/mitchellh/osext/milestones{/number}","notifications_url":"https://api.github.com/repos/mitchellh/osext/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mitchellh/osext/labels{/name}","releases_url":"https://api.github.com/repos/mitchellh/osext/releases{/id}","deployments_url":"https://api.github.com/repos/mitchellh/osext/deployments","created_at":"2013-06-17T22:49:09Z","updated_at":"2015-11-07T12:54:52Z","pushed_at":"2015-10-18T00:30:39Z","git_url":"git://github.com/mitchellh/osext.git","ssh_url":"git@github.com:mitchellh/osext.git","clone_url":"https://github.com/mitchellh/osext.git","svn_url":"https://github.com/mitchellh/osext","homepage":null,"size":104,"stargazers_count":2,"watchers_count":2,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":null,"url":null},"forks":3,"open_issues":0,"watchers":2,"default_branch":"master"},"network_count":3,"subscribers_count":9}
+
+GET https://api.github.com/repos/bugsnag/panicwrap
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:49 GMT
+Etag: W/"55c465f3416a06cf320cabaaf495fe78"
+Last-Modified: Thu, 09 Nov 2017 22:08:55 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A861E:864421:5A7A5F75
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4766
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.085926
+X-Xss-Protection: 1; mode=block
+
+{"id":26449736,"name":"panicwrap","full_name":"bugsnag/panicwrap","owner":{"login":"bugsnag","id":1058895,"avatar_url":"https://avatars2.githubusercontent.com/u/1058895?v=4","gravatar_id":"","url":"https://api.github.com/users/bugsnag","html_url":"https://github.com/bugsnag","followers_url":"https://api.github.com/users/bugsnag/followers","following_url":"https://api.github.com/users/bugsnag/following{/other_user}","gists_url":"https://api.github.com/users/bugsnag/gists{/gist_id}","starred_url":"https://api.github.com/users/bugsnag/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bugsnag/subscriptions","organizations_url":"https://api.github.com/users/bugsnag/orgs","repos_url":"https://api.github.com/users/bugsnag/repos","events_url":"https://api.github.com/users/bugsnag/events{/privacy}","received_events_url":"https://api.github.com/users/bugsnag/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/bugsnag/panicwrap","description":"panicwrap is a Go library for catching and handling panics in Go applications.","fork":true,"url":"https://api.github.com/repos/bugsnag/panicwrap","forks_url":"https://api.github.com/repos/bugsnag/panicwrap/forks","keys_url":"https://api.github.com/repos/bugsnag/panicwrap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bugsnag/panicwrap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bugsnag/panicwrap/teams","hooks_url":"https://api.github.com/repos/bugsnag/panicwrap/hooks","issue_events_url":"https://api.github.com/repos/bugsnag/panicwrap/issues/events{/number}","events_url":"https://api.github.com/repos/bugsnag/panicwrap/events","assignees_url":"https://api.github.com/repos/bugsnag/panicwrap/assignees{/user}","branches_url":"https://api.github.com/repos/bugsnag/panicwrap/branches{/branch}","tags_url":"https://api.github.com/repos/bugsnag/panicwrap/tags","blobs_url":"https://api.github.com/repos/bugsnag/panicwrap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bugsnag/panicwrap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bugsnag/panicwrap/git/refs{/sha}","trees_url":"https://api.github.com/repos/bugsnag/panicwrap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bugsnag/panicwrap/statuses/{sha}","languages_url":"https://api.github.com/repos/bugsnag/panicwrap/languages","stargazers_url":"https://api.github.com/repos/bugsnag/panicwrap/stargazers","contributors_url":"https://api.github.com/repos/bugsnag/panicwrap/contributors","subscribers_url":"https://api.github.com/repos/bugsnag/panicwrap/subscribers","subscription_url":"https://api.github.com/repos/bugsnag/panicwrap/subscription","commits_url":"https://api.github.com/repos/bugsnag/panicwrap/commits{/sha}","git_commits_url":"https://api.github.com/repos/bugsnag/panicwrap/git/commits{/sha}","comments_url":"https://api.github.com/repos/bugsnag/panicwrap/comments{/number}","issue_comment_url":"https://api.github.com/repos/bugsnag/panicwrap/issues/comments{/number}","contents_url":"https://api.github.com/repos/bugsnag/panicwrap/contents/{+path}","compare_url":"https://api.github.com/repos/bugsnag/panicwrap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bugsnag/panicwrap/merges","archive_url":"https://api.github.com/repos/bugsnag/panicwrap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bugsnag/panicwrap/downloads","issues_url":"https://api.github.com/repos/bugsnag/panicwrap/issues{/number}","pulls_url":"https://api.github.com/repos/bugsnag/panicwrap/pulls{/number}","milestones_url":"https://api.github.com/repos/bugsnag/panicwrap/milestones{/number}","notifications_url":"https://api.github.com/repos/bugsnag/panicwrap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bugsnag/panicwrap/labels{/name}","releases_url":"https://api.github.com/repos/bugsnag/panicwrap/releases{/id}","deployments_url":"https://api.github.com/repos/bugsnag/panicwrap/deployments","created_at":"2014-11-10T18:36:48Z","updated_at":"2017-11-09T22:08:55Z","pushed_at":"2017-08-29T15:24:10Z","git_url":"git://github.com/bugsnag/panicwrap.git","ssh_url":"git@github.com:bugsnag/panicwrap.git","clone_url":"https://github.com/bugsnag/panicwrap.git","svn_url":"https://github.com/bugsnag/panicwrap","homepage":null,"size":35,"stargazers_count":15,"watchers_count":15,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":5,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":5,"open_issues":0,"watchers":15,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"bugsnag","id":1058895,"avatar_url":"https://avatars2.githubusercontent.com/u/1058895?v=4","gravatar_id":"","url":"https://api.github.com/users/bugsnag","html_url":"https://github.com/bugsnag","followers_url":"https://api.github.com/users/bugsnag/followers","following_url":"https://api.github.com/users/bugsnag/following{/other_user}","gists_url":"https://api.github.com/users/bugsnag/gists{/gist_id}","starred_url":"https://api.github.com/users/bugsnag/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bugsnag/subscriptions","organizations_url":"https://api.github.com/users/bugsnag/orgs","repos_url":"https://api.github.com/users/bugsnag/repos","events_url":"https://api.github.com/users/bugsnag/events{/privacy}","received_events_url":"https://api.github.com/users/bugsnag/received_events","type":"Organization","site_admin":false},"parent":{"id":23035107,"name":"panicwrap","full_name":"ConradIrwin/panicwrap","owner":{"login":"ConradIrwin","id":94272,"avatar_url":"https://avatars2.githubusercontent.com/u/94272?v=4","gravatar_id":"","url":"https://api.github.com/users/ConradIrwin","html_url":"https://github.com/ConradIrwin","followers_url":"https://api.github.com/users/ConradIrwin/followers","following_url":"https://api.github.com/users/ConradIrwin/following{/other_user}","gists_url":"https://api.github.com/users/ConradIrwin/gists{/gist_id}","starred_url":"https://api.github.com/users/ConradIrwin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ConradIrwin/subscriptions","organizations_url":"https://api.github.com/users/ConradIrwin/orgs","repos_url":"https://api.github.com/users/ConradIrwin/repos","events_url":"https://api.github.com/users/ConradIrwin/events{/privacy}","received_events_url":"https://api.github.com/users/ConradIrwin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ConradIrwin/panicwrap","description":"panicwrap is a Go library for catching and handling panics in Go applications.","fork":true,"url":"https://api.github.com/repos/ConradIrwin/panicwrap","forks_url":"https://api.github.com/repos/ConradIrwin/panicwrap/forks","keys_url":"https://api.github.com/repos/ConradIrwin/panicwrap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ConradIrwin/panicwrap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ConradIrwin/panicwrap/teams","hooks_url":"https://api.github.com/repos/ConradIrwin/panicwrap/hooks","issue_events_url":"https://api.github.com/repos/ConradIrwin/panicwrap/issues/events{/number}","events_url":"https://api.github.com/repos/ConradIrwin/panicwrap/events","assignees_url":"https://api.github.com/repos/ConradIrwin/panicwrap/assignees{/user}","branches_url":"https://api.github.com/repos/ConradIrwin/panicwrap/branches{/branch}","tags_url":"https://api.github.com/repos/ConradIrwin/panicwrap/tags","blobs_url":"https://api.github.com/repos/ConradIrwin/panicwrap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ConradIrwin/panicwrap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ConradIrwin/panicwrap/git/refs{/sha}","trees_url":"https://api.github.com/repos/ConradIrwin/panicwrap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ConradIrwin/panicwrap/statuses/{sha}","languages_url":"https://api.github.com/repos/ConradIrwin/panicwrap/languages","stargazers_url":"https://api.github.com/repos/ConradIrwin/panicwrap/stargazers","contributors_url":"https://api.github.com/repos/ConradIrwin/panicwrap/contributors","subscribers_url":"https://api.github.com/repos/ConradIrwin/panicwrap/subscribers","subscription_url":"https://api.github.com/repos/ConradIrwin/panicwrap/subscription","commits_url":"https://api.github.com/repos/ConradIrwin/panicwrap/commits{/sha}","git_commits_url":"https://api.github.com/repos/ConradIrwin/panicwrap/git/commits{/sha}","comments_url":"https://api.github.com/repos/ConradIrwin/panicwrap/comments{/number}","issue_comment_url":"https://api.github.com/repos/ConradIrwin/panicwrap/issues/comments{/number}","contents_url":"https://api.github.com/repos/ConradIrwin/panicwrap/contents/{+path}","compare_url":"https://api.github.com/repos/ConradIrwin/panicwrap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ConradIrwin/panicwrap/merges","archive_url":"https://api.github.com/repos/ConradIrwin/panicwrap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ConradIrwin/panicwrap/downloads","issues_url":"https://api.github.com/repos/ConradIrwin/panicwrap/issues{/number}","pulls_url":"https://api.github.com/repos/ConradIrwin/panicwrap/pulls{/number}","milestones_url":"https://api.github.com/repos/ConradIrwin/panicwrap/milestones{/number}","notifications_url":"https://api.github.com/repos/ConradIrwin/panicwrap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ConradIrwin/panicwrap/labels{/name}","releases_url":"https://api.github.com/repos/ConradIrwin/panicwrap/releases{/id}","deployments_url":"https://api.github.com/repos/ConradIrwin/panicwrap/deployments","created_at":"2014-08-17T06:55:59Z","updated_at":"2014-10-25T01:57:38Z","pushed_at":"2014-10-08T05:26:27Z","git_url":"git://github.com/ConradIrwin/panicwrap.git","ssh_url":"git@github.com:ConradIrwin/panicwrap.git","clone_url":"https://github.com/ConradIrwin/panicwrap.git","svn_url":"https://github.com/ConradIrwin/panicwrap","homepage":null,"size":179,"stargazers_count":0,"watchers_count":0,"language":"Go","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":2,"open_issues":0,"watchers":0,"default_branch":"master"},"source":{"id":11906240,"name":"panicwrap","full_name":"mitchellh/panicwrap","owner":{"login":"mitchellh","id":1299,"avatar_url":"https://avatars3.githubusercontent.com/u/1299?v=4","gravatar_id":"","url":"https://api.github.com/users/mitchellh","html_url":"https://github.com/mitchellh","followers_url":"https://api.github.com/users/mitchellh/followers","following_url":"https://api.github.com/users/mitchellh/following{/other_user}","gists_url":"https://api.github.com/users/mitchellh/gists{/gist_id}","starred_url":"https://api.github.com/users/mitchellh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mitchellh/subscriptions","organizations_url":"https://api.github.com/users/mitchellh/orgs","repos_url":"https://api.github.com/users/mitchellh/repos","events_url":"https://api.github.com/users/mitchellh/events{/privacy}","received_events_url":"https://api.github.com/users/mitchellh/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mitchellh/panicwrap","description":"panicwrap is a Go library for catching and handling panics in Go applications.","fork":false,"url":"https://api.github.com/repos/mitchellh/panicwrap","forks_url":"https://api.github.com/repos/mitchellh/panicwrap/forks","keys_url":"https://api.github.com/repos/mitchellh/panicwrap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mitchellh/panicwrap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mitchellh/panicwrap/teams","hooks_url":"https://api.github.com/repos/mitchellh/panicwrap/hooks","issue_events_url":"https://api.github.com/repos/mitchellh/panicwrap/issues/events{/number}","events_url":"https://api.github.com/repos/mitchellh/panicwrap/events","assignees_url":"https://api.github.com/repos/mitchellh/panicwrap/assignees{/user}","branches_url":"https://api.github.com/repos/mitchellh/panicwrap/branches{/branch}","tags_url":"https://api.github.com/repos/mitchellh/panicwrap/tags","blobs_url":"https://api.github.com/repos/mitchellh/panicwrap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mitchellh/panicwrap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mitchellh/panicwrap/git/refs{/sha}","trees_url":"https://api.github.com/repos/mitchellh/panicwrap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mitchellh/panicwrap/statuses/{sha}","languages_url":"https://api.github.com/repos/mitchellh/panicwrap/languages","stargazers_url":"https://api.github.com/repos/mitchellh/panicwrap/stargazers","contributors_url":"https://api.github.com/repos/mitchellh/panicwrap/contributors","subscribers_url":"https://api.github.com/repos/mitchellh/panicwrap/subscribers","subscription_url":"https://api.github.com/repos/mitchellh/panicwrap/subscription","commits_url":"https://api.github.com/repos/mitchellh/panicwrap/commits{/sha}","git_commits_url":"https://api.github.com/repos/mitchellh/panicwrap/git/commits{/sha}","comments_url":"https://api.github.com/repos/mitchellh/panicwrap/comments{/number}","issue_comment_url":"https://api.github.com/repos/mitchellh/panicwrap/issues/comments{/number}","contents_url":"https://api.github.com/repos/mitchellh/panicwrap/contents/{+path}","compare_url":"https://api.github.com/repos/mitchellh/panicwrap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mitchellh/panicwrap/merges","archive_url":"https://api.github.com/repos/mitchellh/panicwrap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mitchellh/panicwrap/downloads","issues_url":"https://api.github.com/repos/mitchellh/panicwrap/issues{/number}","pulls_url":"https://api.github.com/repos/mitchellh/panicwrap/pulls{/number}","milestones_url":"https://api.github.com/repos/mitchellh/panicwrap/milestones{/number}","notifications_url":"https://api.github.com/repos/mitchellh/panicwrap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mitchellh/panicwrap/labels{/name}","releases_url":"https://api.github.com/repos/mitchellh/panicwrap/releases{/id}","deployments_url":"https://api.github.com/repos/mitchellh/panicwrap/deployments","created_at":"2013-08-05T19:00:46Z","updated_at":"2018-02-04T03:16:39Z","pushed_at":"2017-10-06T12:38:28Z","git_url":"git://github.com/mitchellh/panicwrap.git","ssh_url":"git@github.com:mitchellh/panicwrap.git","clone_url":"https://github.com/mitchellh/panicwrap.git","svn_url":"https://github.com/mitchellh/panicwrap","homepage":null,"size":42,"stargazers_count":224,"watchers_count":224,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":30,"mirror_url":null,"archived":false,"open_issues_count":9,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":30,"open_issues":9,"watchers":224,"default_branch":"master"},"network_count":30,"subscribers_count":9}
+
+GET https://api.github.com/repos/codegangsta/cli
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:49 GMT
+Etag: W/"c017c62bb58fb50dce2176df9b1a73ea"
+Last-Modified: Tue, 06 Feb 2018 11:02:11 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8635:864447:5A7A5F75
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4764
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.056946
+X-Xss-Protection: 1; mode=block
+
+{"id":11393110,"name":"cli","full_name":"urfave/cli","owner":{"login":"urfave","id":19274464,"avatar_url":"https://avatars2.githubusercontent.com/u/19274464?v=4","gravatar_id":"","url":"https://api.github.com/users/urfave","html_url":"https://github.com/urfave","followers_url":"https://api.github.com/users/urfave/followers","following_url":"https://api.github.com/users/urfave/following{/other_user}","gists_url":"https://api.github.com/users/urfave/gists{/gist_id}","starred_url":"https://api.github.com/users/urfave/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/urfave/subscriptions","organizations_url":"https://api.github.com/users/urfave/orgs","repos_url":"https://api.github.com/users/urfave/repos","events_url":"https://api.github.com/users/urfave/events{/privacy}","received_events_url":"https://api.github.com/users/urfave/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/urfave/cli","description":"A simple, fast, and fun package for building command line apps in Go","fork":false,"url":"https://api.github.com/repos/urfave/cli","forks_url":"https://api.github.com/repos/urfave/cli/forks","keys_url":"https://api.github.com/repos/urfave/cli/keys{/key_id}","collaborators_url":"https://api.github.com/repos/urfave/cli/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/urfave/cli/teams","hooks_url":"https://api.github.com/repos/urfave/cli/hooks","issue_events_url":"https://api.github.com/repos/urfave/cli/issues/events{/number}","events_url":"https://api.github.com/repos/urfave/cli/events","assignees_url":"https://api.github.com/repos/urfave/cli/assignees{/user}","branches_url":"https://api.github.com/repos/urfave/cli/branches{/branch}","tags_url":"https://api.github.com/repos/urfave/cli/tags","blobs_url":"https://api.github.com/repos/urfave/cli/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/urfave/cli/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/urfave/cli/git/refs{/sha}","trees_url":"https://api.github.com/repos/urfave/cli/git/trees{/sha}","statuses_url":"https://api.github.com/repos/urfave/cli/statuses/{sha}","languages_url":"https://api.github.com/repos/urfave/cli/languages","stargazers_url":"https://api.github.com/repos/urfave/cli/stargazers","contributors_url":"https://api.github.com/repos/urfave/cli/contributors","subscribers_url":"https://api.github.com/repos/urfave/cli/subscribers","subscription_url":"https://api.github.com/repos/urfave/cli/subscription","commits_url":"https://api.github.com/repos/urfave/cli/commits{/sha}","git_commits_url":"https://api.github.com/repos/urfave/cli/git/commits{/sha}","comments_url":"https://api.github.com/repos/urfave/cli/comments{/number}","issue_comment_url":"https://api.github.com/repos/urfave/cli/issues/comments{/number}","contents_url":"https://api.github.com/repos/urfave/cli/contents/{+path}","compare_url":"https://api.github.com/repos/urfave/cli/compare/{base}...{head}","merges_url":"https://api.github.com/repos/urfave/cli/merges","archive_url":"https://api.github.com/repos/urfave/cli/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/urfave/cli/downloads","issues_url":"https://api.github.com/repos/urfave/cli/issues{/number}","pulls_url":"https://api.github.com/repos/urfave/cli/pulls{/number}","milestones_url":"https://api.github.com/repos/urfave/cli/milestones{/number}","notifications_url":"https://api.github.com/repos/urfave/cli/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/urfave/cli/labels{/name}","releases_url":"https://api.github.com/repos/urfave/cli/releases{/id}","deployments_url":"https://api.github.com/repos/urfave/cli/deployments","created_at":"2013-07-13T19:32:06Z","updated_at":"2018-02-06T11:02:11Z","pushed_at":"2018-02-02T21:13:19Z","git_url":"git://github.com/urfave/cli.git","ssh_url":"git@github.com:urfave/cli.git","clone_url":"https://github.com/urfave/cli.git","svn_url":"https://github.com/urfave/cli","homepage":"","size":1168,"stargazers_count":7380,"watchers_count":7380,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":656,"mirror_url":null,"archived":false,"open_issues_count":87,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":656,"open_issues":87,"watchers":7380,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"urfave","id":19274464,"avatar_url":"https://avatars2.githubusercontent.com/u/19274464?v=4","gravatar_id":"","url":"https://api.github.com/users/urfave","html_url":"https://github.com/urfave","followers_url":"https://api.github.com/users/urfave/followers","following_url":"https://api.github.com/users/urfave/following{/other_user}","gists_url":"https://api.github.com/users/urfave/gists{/gist_id}","starred_url":"https://api.github.com/users/urfave/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/urfave/subscriptions","organizations_url":"https://api.github.com/users/urfave/orgs","repos_url":"https://api.github.com/users/urfave/repos","events_url":"https://api.github.com/users/urfave/events{/privacy}","received_events_url":"https://api.github.com/users/urfave/received_events","type":"Organization","site_admin":false},"network_count":656,"subscribers_count":214}
+
+GET https://api.github.com/repos/docker/docker
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:49 GMT
+Etag: W/"36ca3a49aa2550d83c7bd574503ad950"
+Last-Modified: Wed, 07 Feb 2018 00:24:13 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A864A:864468:5A7A5F75
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4762
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.063503
+X-Xss-Protection: 1; mode=block
+
+{"id":7691631,"name":"moby","full_name":"moby/moby","owner":{"login":"moby","id":27259197,"avatar_url":"https://avatars1.githubusercontent.com/u/27259197?v=4","gravatar_id":"","url":"https://api.github.com/users/moby","html_url":"https://github.com/moby","followers_url":"https://api.github.com/users/moby/followers","following_url":"https://api.github.com/users/moby/following{/other_user}","gists_url":"https://api.github.com/users/moby/gists{/gist_id}","starred_url":"https://api.github.com/users/moby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moby/subscriptions","organizations_url":"https://api.github.com/users/moby/orgs","repos_url":"https://api.github.com/users/moby/repos","events_url":"https://api.github.com/users/moby/events{/privacy}","received_events_url":"https://api.github.com/users/moby/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/moby/moby","description":"Moby Project - a collaborative project for the container ecosystem to assemble container-based systems","fork":false,"url":"https://api.github.com/repos/moby/moby","forks_url":"https://api.github.com/repos/moby/moby/forks","keys_url":"https://api.github.com/repos/moby/moby/keys{/key_id}","collaborators_url":"https://api.github.com/repos/moby/moby/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/moby/moby/teams","hooks_url":"https://api.github.com/repos/moby/moby/hooks","issue_events_url":"https://api.github.com/repos/moby/moby/issues/events{/number}","events_url":"https://api.github.com/repos/moby/moby/events","assignees_url":"https://api.github.com/repos/moby/moby/assignees{/user}","branches_url":"https://api.github.com/repos/moby/moby/branches{/branch}","tags_url":"https://api.github.com/repos/moby/moby/tags","blobs_url":"https://api.github.com/repos/moby/moby/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/moby/moby/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/moby/moby/git/refs{/sha}","trees_url":"https://api.github.com/repos/moby/moby/git/trees{/sha}","statuses_url":"https://api.github.com/repos/moby/moby/statuses/{sha}","languages_url":"https://api.github.com/repos/moby/moby/languages","stargazers_url":"https://api.github.com/repos/moby/moby/stargazers","contributors_url":"https://api.github.com/repos/moby/moby/contributors","subscribers_url":"https://api.github.com/repos/moby/moby/subscribers","subscription_url":"https://api.github.com/repos/moby/moby/subscription","commits_url":"https://api.github.com/repos/moby/moby/commits{/sha}","git_commits_url":"https://api.github.com/repos/moby/moby/git/commits{/sha}","comments_url":"https://api.github.com/repos/moby/moby/comments{/number}","issue_comment_url":"https://api.github.com/repos/moby/moby/issues/comments{/number}","contents_url":"https://api.github.com/repos/moby/moby/contents/{+path}","compare_url":"https://api.github.com/repos/moby/moby/compare/{base}...{head}","merges_url":"https://api.github.com/repos/moby/moby/merges","archive_url":"https://api.github.com/repos/moby/moby/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/moby/moby/downloads","issues_url":"https://api.github.com/repos/moby/moby/issues{/number}","pulls_url":"https://api.github.com/repos/moby/moby/pulls{/number}","milestones_url":"https://api.github.com/repos/moby/moby/milestones{/number}","notifications_url":"https://api.github.com/repos/moby/moby/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/moby/moby/labels{/name}","releases_url":"https://api.github.com/repos/moby/moby/releases{/id}","deployments_url":"https://api.github.com/repos/moby/moby/deployments","created_at":"2013-01-18T18:10:57Z","updated_at":"2018-02-07T00:24:13Z","pushed_at":"2018-02-07T01:26:50Z","git_url":"git://github.com/moby/moby.git","ssh_url":"git@github.com:moby/moby.git","clone_url":"https://github.com/moby/moby.git","svn_url":"https://github.com/moby/moby","homepage":"https://mobyproject.org/","size":136445,"stargazers_count":47556,"watchers_count":47556,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":14042,"mirror_url":null,"archived":false,"open_issues_count":3075,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0"},"forks":14042,"open_issues":3075,"watchers":47556,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"moby","id":27259197,"avatar_url":"https://avatars1.githubusercontent.com/u/27259197?v=4","gravatar_id":"","url":"https://api.github.com/users/moby","html_url":"https://github.com/moby","followers_url":"https://api.github.com/users/moby/followers","following_url":"https://api.github.com/users/moby/following{/other_user}","gists_url":"https://api.github.com/users/moby/gists{/gist_id}","starred_url":"https://api.github.com/users/moby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moby/subscriptions","organizations_url":"https://api.github.com/users/moby/orgs","repos_url":"https://api.github.com/users/moby/repos","events_url":"https://api.github.com/users/moby/events{/privacy}","received_events_url":"https://api.github.com/users/moby/received_events","type":"Organization","site_admin":false},"network_count":14042,"subscribers_count":3324}
+
+GET https://api.github.com/repos/docker/libtrust
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:49 GMT
+Etag: W/"53b78a2c61162e096e2d4b95b944955d"
+Last-Modified: Tue, 16 Jan 2018 07:46:26 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8657:86447D:5A7A5F75
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4761
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.044566
+X-Xss-Protection: 1; mode=block
+
+{"id":20236298,"name":"libtrust","full_name":"docker/libtrust","owner":{"login":"docker","id":5429470,"avatar_url":"https://avatars1.githubusercontent.com/u/5429470?v=4","gravatar_id":"","url":"https://api.github.com/users/docker","html_url":"https://github.com/docker","followers_url":"https://api.github.com/users/docker/followers","following_url":"https://api.github.com/users/docker/following{/other_user}","gists_url":"https://api.github.com/users/docker/gists{/gist_id}","starred_url":"https://api.github.com/users/docker/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/docker/subscriptions","organizations_url":"https://api.github.com/users/docker/orgs","repos_url":"https://api.github.com/users/docker/repos","events_url":"https://api.github.com/users/docker/events{/privacy}","received_events_url":"https://api.github.com/users/docker/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/docker/libtrust","description":"Primitives for identity and authorization","fork":false,"url":"https://api.github.com/repos/docker/libtrust","forks_url":"https://api.github.com/repos/docker/libtrust/forks","keys_url":"https://api.github.com/repos/docker/libtrust/keys{/key_id}","collaborators_url":"https://api.github.com/repos/docker/libtrust/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/docker/libtrust/teams","hooks_url":"https://api.github.com/repos/docker/libtrust/hooks","issue_events_url":"https://api.github.com/repos/docker/libtrust/issues/events{/number}","events_url":"https://api.github.com/repos/docker/libtrust/events","assignees_url":"https://api.github.com/repos/docker/libtrust/assignees{/user}","branches_url":"https://api.github.com/repos/docker/libtrust/branches{/branch}","tags_url":"https://api.github.com/repos/docker/libtrust/tags","blobs_url":"https://api.github.com/repos/docker/libtrust/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/docker/libtrust/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/docker/libtrust/git/refs{/sha}","trees_url":"https://api.github.com/repos/docker/libtrust/git/trees{/sha}","statuses_url":"https://api.github.com/repos/docker/libtrust/statuses/{sha}","languages_url":"https://api.github.com/repos/docker/libtrust/languages","stargazers_url":"https://api.github.com/repos/docker/libtrust/stargazers","contributors_url":"https://api.github.com/repos/docker/libtrust/contributors","subscribers_url":"https://api.github.com/repos/docker/libtrust/subscribers","subscription_url":"https://api.github.com/repos/docker/libtrust/subscription","commits_url":"https://api.github.com/repos/docker/libtrust/commits{/sha}","git_commits_url":"https://api.github.com/repos/docker/libtrust/git/commits{/sha}","comments_url":"https://api.github.com/repos/docker/libtrust/comments{/number}","issue_comment_url":"https://api.github.com/repos/docker/libtrust/issues/comments{/number}","contents_url":"https://api.github.com/repos/docker/libtrust/contents/{+path}","compare_url":"https://api.github.com/repos/docker/libtrust/compare/{base}...{head}","merges_url":"https://api.github.com/repos/docker/libtrust/merges","archive_url":"https://api.github.com/repos/docker/libtrust/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/docker/libtrust/downloads","issues_url":"https://api.github.com/repos/docker/libtrust/issues{/number}","pulls_url":"https://api.github.com/repos/docker/libtrust/pulls{/number}","milestones_url":"https://api.github.com/repos/docker/libtrust/milestones{/number}","notifications_url":"https://api.github.com/repos/docker/libtrust/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/docker/libtrust/labels{/name}","releases_url":"https://api.github.com/repos/docker/libtrust/releases{/id}","deployments_url":"https://api.github.com/repos/docker/libtrust/deployments","created_at":"2014-05-27T21:35:22Z","updated_at":"2018-01-16T07:46:26Z","pushed_at":"2016-07-08T17:25:14Z","git_url":"git://github.com/docker/libtrust.git","ssh_url":"git@github.com:docker/libtrust.git","clone_url":"https://github.com/docker/libtrust.git","svn_url":"https://github.com/docker/libtrust","homepage":null,"size":202,"stargazers_count":96,"watchers_count":96,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":28,"mirror_url":null,"archived":false,"open_issues_count":14,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0"},"forks":28,"open_issues":14,"watchers":96,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"docker","id":5429470,"avatar_url":"https://avatars1.githubusercontent.com/u/5429470?v=4","gravatar_id":"","url":"https://api.github.com/users/docker","html_url":"https://github.com/docker","followers_url":"https://api.github.com/users/docker/followers","following_url":"https://api.github.com/users/docker/following{/other_user}","gists_url":"https://api.github.com/users/docker/gists{/gist_id}","starred_url":"https://api.github.com/users/docker/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/docker/subscriptions","organizations_url":"https://api.github.com/users/docker/orgs","repos_url":"https://api.github.com/users/docker/repos","events_url":"https://api.github.com/users/docker/events{/privacy}","received_events_url":"https://api.github.com/users/docker/received_events","type":"Organization","site_admin":false},"network_count":28,"subscribers_count":42}
+
+GET https://api.github.com/repos/garyburd/redigo
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:49 GMT
+Etag: W/"b84ccfce8b5b710c469815656ea04e1f"
+Last-Modified: Tue, 06 Feb 2018 13:55:14 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8663:86448E:5A7A5F75
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4760
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.054759
+X-Xss-Protection: 1; mode=block
+
+{"id":4022652,"name":"redigo","full_name":"garyburd/redigo","owner":{"login":"garyburd","id":33411,"avatar_url":"https://avatars2.githubusercontent.com/u/33411?v=4","gravatar_id":"","url":"https://api.github.com/users/garyburd","html_url":"https://github.com/garyburd","followers_url":"https://api.github.com/users/garyburd/followers","following_url":"https://api.github.com/users/garyburd/following{/other_user}","gists_url":"https://api.github.com/users/garyburd/gists{/gist_id}","starred_url":"https://api.github.com/users/garyburd/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garyburd/subscriptions","organizations_url":"https://api.github.com/users/garyburd/orgs","repos_url":"https://api.github.com/users/garyburd/repos","events_url":"https://api.github.com/users/garyburd/events{/privacy}","received_events_url":"https://api.github.com/users/garyburd/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/garyburd/redigo","description":"Go client for Redis","fork":false,"url":"https://api.github.com/repos/garyburd/redigo","forks_url":"https://api.github.com/repos/garyburd/redigo/forks","keys_url":"https://api.github.com/repos/garyburd/redigo/keys{/key_id}","collaborators_url":"https://api.github.com/repos/garyburd/redigo/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/garyburd/redigo/teams","hooks_url":"https://api.github.com/repos/garyburd/redigo/hooks","issue_events_url":"https://api.github.com/repos/garyburd/redigo/issues/events{/number}","events_url":"https://api.github.com/repos/garyburd/redigo/events","assignees_url":"https://api.github.com/repos/garyburd/redigo/assignees{/user}","branches_url":"https://api.github.com/repos/garyburd/redigo/branches{/branch}","tags_url":"https://api.github.com/repos/garyburd/redigo/tags","blobs_url":"https://api.github.com/repos/garyburd/redigo/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/garyburd/redigo/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/garyburd/redigo/git/refs{/sha}","trees_url":"https://api.github.com/repos/garyburd/redigo/git/trees{/sha}","statuses_url":"https://api.github.com/repos/garyburd/redigo/statuses/{sha}","languages_url":"https://api.github.com/repos/garyburd/redigo/languages","stargazers_url":"https://api.github.com/repos/garyburd/redigo/stargazers","contributors_url":"https://api.github.com/repos/garyburd/redigo/contributors","subscribers_url":"https://api.github.com/repos/garyburd/redigo/subscribers","subscription_url":"https://api.github.com/repos/garyburd/redigo/subscription","commits_url":"https://api.github.com/repos/garyburd/redigo/commits{/sha}","git_commits_url":"https://api.github.com/repos/garyburd/redigo/git/commits{/sha}","comments_url":"https://api.github.com/repos/garyburd/redigo/comments{/number}","issue_comment_url":"https://api.github.com/repos/garyburd/redigo/issues/comments{/number}","contents_url":"https://api.github.com/repos/garyburd/redigo/contents/{+path}","compare_url":"https://api.github.com/repos/garyburd/redigo/compare/{base}...{head}","merges_url":"https://api.github.com/repos/garyburd/redigo/merges","archive_url":"https://api.github.com/repos/garyburd/redigo/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/garyburd/redigo/downloads","issues_url":"https://api.github.com/repos/garyburd/redigo/issues{/number}","pulls_url":"https://api.github.com/repos/garyburd/redigo/pulls{/number}","milestones_url":"https://api.github.com/repos/garyburd/redigo/milestones{/number}","notifications_url":"https://api.github.com/repos/garyburd/redigo/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/garyburd/redigo/labels{/name}","releases_url":"https://api.github.com/repos/garyburd/redigo/releases{/id}","deployments_url":"https://api.github.com/repos/garyburd/redigo/deployments","created_at":"2012-04-14T04:31:58Z","updated_at":"2018-02-06T13:55:14Z","pushed_at":"2018-02-01T03:09:15Z","git_url":"git://github.com/garyburd/redigo.git","ssh_url":"git@github.com:garyburd/redigo.git","clone_url":"https://github.com/garyburd/redigo.git","svn_url":"https://github.com/garyburd/redigo","homepage":"","size":318,"stargazers_count":4016,"watchers_count":4016,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":643,"mirror_url":null,"archived":false,"open_issues_count":7,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0"},"forks":643,"open_issues":7,"watchers":4016,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"network_count":643,"subscribers_count":224}
+
+GET https://api.github.com/repos/gorilla/context
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:49 GMT
+Etag: W/"876e76472448699eca6c58645ce55bd1"
+Last-Modified: Thu, 01 Feb 2018 19:02:15 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8670:86449D:5A7A5F75
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4759
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.055870
+X-Xss-Protection: 1; mode=block
+
+{"id":6051928,"name":"context","full_name":"gorilla/context","owner":{"login":"gorilla","id":489566,"avatar_url":"https://avatars0.githubusercontent.com/u/489566?v=4","gravatar_id":"","url":"https://api.github.com/users/gorilla","html_url":"https://github.com/gorilla","followers_url":"https://api.github.com/users/gorilla/followers","following_url":"https://api.github.com/users/gorilla/following{/other_user}","gists_url":"https://api.github.com/users/gorilla/gists{/gist_id}","starred_url":"https://api.github.com/users/gorilla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gorilla/subscriptions","organizations_url":"https://api.github.com/users/gorilla/orgs","repos_url":"https://api.github.com/users/gorilla/repos","events_url":"https://api.github.com/users/gorilla/events{/privacy}","received_events_url":"https://api.github.com/users/gorilla/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/gorilla/context","description":"A golang registry for global request variables.","fork":false,"url":"https://api.github.com/repos/gorilla/context","forks_url":"https://api.github.com/repos/gorilla/context/forks","keys_url":"https://api.github.com/repos/gorilla/context/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gorilla/context/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gorilla/context/teams","hooks_url":"https://api.github.com/repos/gorilla/context/hooks","issue_events_url":"https://api.github.com/repos/gorilla/context/issues/events{/number}","events_url":"https://api.github.com/repos/gorilla/context/events","assignees_url":"https://api.github.com/repos/gorilla/context/assignees{/user}","branches_url":"https://api.github.com/repos/gorilla/context/branches{/branch}","tags_url":"https://api.github.com/repos/gorilla/context/tags","blobs_url":"https://api.github.com/repos/gorilla/context/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gorilla/context/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gorilla/context/git/refs{/sha}","trees_url":"https://api.github.com/repos/gorilla/context/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gorilla/context/statuses/{sha}","languages_url":"https://api.github.com/repos/gorilla/context/languages","stargazers_url":"https://api.github.com/repos/gorilla/context/stargazers","contributors_url":"https://api.github.com/repos/gorilla/context/contributors","subscribers_url":"https://api.github.com/repos/gorilla/context/subscribers","subscription_url":"https://api.github.com/repos/gorilla/context/subscription","commits_url":"https://api.github.com/repos/gorilla/context/commits{/sha}","git_commits_url":"https://api.github.com/repos/gorilla/context/git/commits{/sha}","comments_url":"https://api.github.com/repos/gorilla/context/comments{/number}","issue_comment_url":"https://api.github.com/repos/gorilla/context/issues/comments{/number}","contents_url":"https://api.github.com/repos/gorilla/context/contents/{+path}","compare_url":"https://api.github.com/repos/gorilla/context/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gorilla/context/merges","archive_url":"https://api.github.com/repos/gorilla/context/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gorilla/context/downloads","issues_url":"https://api.github.com/repos/gorilla/context/issues{/number}","pulls_url":"https://api.github.com/repos/gorilla/context/pulls{/number}","milestones_url":"https://api.github.com/repos/gorilla/context/milestones{/number}","notifications_url":"https://api.github.com/repos/gorilla/context/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gorilla/context/labels{/name}","releases_url":"https://api.github.com/repos/gorilla/context/releases{/id}","deployments_url":"https://api.github.com/repos/gorilla/context/deployments","created_at":"2012-10-02T21:41:50Z","updated_at":"2018-02-01T19:02:15Z","pushed_at":"2016-11-11T05:56:18Z","git_url":"git://github.com/gorilla/context.git","ssh_url":"git@github.com:gorilla/context.git","clone_url":"https://github.com/gorilla/context.git","svn_url":"https://github.com/gorilla/context","homepage":"http://www.gorillatoolkit.org/pkg/context","size":64,"stargazers_count":323,"watchers_count":323,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":122,"mirror_url":null,"archived":false,"open_issues_count":1,"license":{"key":"bsd-3-clause","name":"BSD 3-Clause \"New\" or \"Revised\" License","spdx_id":"BSD-3-Clause","url":"https://api.github.com/licenses/bsd-3-clause"},"forks":122,"open_issues":1,"watchers":323,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"gorilla","id":489566,"avatar_url":"https://avatars0.githubusercontent.com/u/489566?v=4","gravatar_id":"","url":"https://api.github.com/users/gorilla","html_url":"https://github.com/gorilla","followers_url":"https://api.github.com/users/gorilla/followers","following_url":"https://api.github.com/users/gorilla/following{/other_user}","gists_url":"https://api.github.com/users/gorilla/gists{/gist_id}","starred_url":"https://api.github.com/users/gorilla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gorilla/subscriptions","organizations_url":"https://api.github.com/users/gorilla/orgs","repos_url":"https://api.github.com/users/gorilla/repos","events_url":"https://api.github.com/users/gorilla/events{/privacy}","received_events_url":"https://api.github.com/users/gorilla/received_events","type":"Organization","site_admin":false},"network_count":122,"subscribers_count":25}
+
+GET https://api.github.com/repos/gorilla/handlers
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:49 GMT
+Etag: W/"bb13995c6488dd46caffe025ed5c440c"
+Last-Modified: Mon, 05 Feb 2018 20:37:54 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8679:8644AC:5A7A5F75
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4758
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.051447
+X-Xss-Protection: 1; mode=block
+
+{"id":7951393,"name":"handlers","full_name":"gorilla/handlers","owner":{"login":"gorilla","id":489566,"avatar_url":"https://avatars0.githubusercontent.com/u/489566?v=4","gravatar_id":"","url":"https://api.github.com/users/gorilla","html_url":"https://github.com/gorilla","followers_url":"https://api.github.com/users/gorilla/followers","following_url":"https://api.github.com/users/gorilla/following{/other_user}","gists_url":"https://api.github.com/users/gorilla/gists{/gist_id}","starred_url":"https://api.github.com/users/gorilla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gorilla/subscriptions","organizations_url":"https://api.github.com/users/gorilla/orgs","repos_url":"https://api.github.com/users/gorilla/repos","events_url":"https://api.github.com/users/gorilla/events{/privacy}","received_events_url":"https://api.github.com/users/gorilla/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/gorilla/handlers","description":"A collection of useful handlers for Go's net/http package.","fork":false,"url":"https://api.github.com/repos/gorilla/handlers","forks_url":"https://api.github.com/repos/gorilla/handlers/forks","keys_url":"https://api.github.com/repos/gorilla/handlers/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gorilla/handlers/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gorilla/handlers/teams","hooks_url":"https://api.github.com/repos/gorilla/handlers/hooks","issue_events_url":"https://api.github.com/repos/gorilla/handlers/issues/events{/number}","events_url":"https://api.github.com/repos/gorilla/handlers/events","assignees_url":"https://api.github.com/repos/gorilla/handlers/assignees{/user}","branches_url":"https://api.github.com/repos/gorilla/handlers/branches{/branch}","tags_url":"https://api.github.com/repos/gorilla/handlers/tags","blobs_url":"https://api.github.com/repos/gorilla/handlers/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gorilla/handlers/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gorilla/handlers/git/refs{/sha}","trees_url":"https://api.github.com/repos/gorilla/handlers/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gorilla/handlers/statuses/{sha}","languages_url":"https://api.github.com/repos/gorilla/handlers/languages","stargazers_url":"https://api.github.com/repos/gorilla/handlers/stargazers","contributors_url":"https://api.github.com/repos/gorilla/handlers/contributors","subscribers_url":"https://api.github.com/repos/gorilla/handlers/subscribers","subscription_url":"https://api.github.com/repos/gorilla/handlers/subscription","commits_url":"https://api.github.com/repos/gorilla/handlers/commits{/sha}","git_commits_url":"https://api.github.com/repos/gorilla/handlers/git/commits{/sha}","comments_url":"https://api.github.com/repos/gorilla/handlers/comments{/number}","issue_comment_url":"https://api.github.com/repos/gorilla/handlers/issues/comments{/number}","contents_url":"https://api.github.com/repos/gorilla/handlers/contents/{+path}","compare_url":"https://api.github.com/repos/gorilla/handlers/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gorilla/handlers/merges","archive_url":"https://api.github.com/repos/gorilla/handlers/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gorilla/handlers/downloads","issues_url":"https://api.github.com/repos/gorilla/handlers/issues{/number}","pulls_url":"https://api.github.com/repos/gorilla/handlers/pulls{/number}","milestones_url":"https://api.github.com/repos/gorilla/handlers/milestones{/number}","notifications_url":"https://api.github.com/repos/gorilla/handlers/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gorilla/handlers/labels{/name}","releases_url":"https://api.github.com/repos/gorilla/handlers/releases{/id}","deployments_url":"https://api.github.com/repos/gorilla/handlers/deployments","created_at":"2013-02-01T03:53:49Z","updated_at":"2018-02-05T20:37:54Z","pushed_at":"2017-11-10T23:58:13Z","git_url":"git://github.com/gorilla/handlers.git","ssh_url":"git@github.com:gorilla/handlers.git","clone_url":"https://github.com/gorilla/handlers.git","svn_url":"https://github.com/gorilla/handlers","homepage":null,"size":107,"stargazers_count":473,"watchers_count":473,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":100,"mirror_url":null,"archived":false,"open_issues_count":20,"license":{"key":"bsd-2-clause","name":"BSD 2-Clause \"Simplified\" License","spdx_id":"BSD-2-Clause","url":"https://api.github.com/licenses/bsd-2-clause"},"forks":100,"open_issues":20,"watchers":473,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"gorilla","id":489566,"avatar_url":"https://avatars0.githubusercontent.com/u/489566?v=4","gravatar_id":"","url":"https://api.github.com/users/gorilla","html_url":"https://github.com/gorilla","followers_url":"https://api.github.com/users/gorilla/followers","following_url":"https://api.github.com/users/gorilla/following{/other_user}","gists_url":"https://api.github.com/users/gorilla/gists{/gist_id}","starred_url":"https://api.github.com/users/gorilla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gorilla/subscriptions","organizations_url":"https://api.github.com/users/gorilla/orgs","repos_url":"https://api.github.com/users/gorilla/repos","events_url":"https://api.github.com/users/gorilla/events{/privacy}","received_events_url":"https://api.github.com/users/gorilla/received_events","type":"Organization","site_admin":false},"network_count":100,"subscribers_count":23}
+
+GET https://api.github.com/repos/gorilla/mux
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:50 GMT
+Etag: W/"60c64700558720c54e83010926e0d730"
+Last-Modified: Tue, 06 Feb 2018 19:00:04 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8685:8644BB:5A7A5F75
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4757
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.254617
+X-Xss-Protection: 1; mode=block
+
+{"id":6051812,"name":"mux","full_name":"gorilla/mux","owner":{"login":"gorilla","id":489566,"avatar_url":"https://avatars0.githubusercontent.com/u/489566?v=4","gravatar_id":"","url":"https://api.github.com/users/gorilla","html_url":"https://github.com/gorilla","followers_url":"https://api.github.com/users/gorilla/followers","following_url":"https://api.github.com/users/gorilla/following{/other_user}","gists_url":"https://api.github.com/users/gorilla/gists{/gist_id}","starred_url":"https://api.github.com/users/gorilla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gorilla/subscriptions","organizations_url":"https://api.github.com/users/gorilla/orgs","repos_url":"https://api.github.com/users/gorilla/repos","events_url":"https://api.github.com/users/gorilla/events{/privacy}","received_events_url":"https://api.github.com/users/gorilla/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/gorilla/mux","description":"A powerful URL router and dispatcher for golang.","fork":false,"url":"https://api.github.com/repos/gorilla/mux","forks_url":"https://api.github.com/repos/gorilla/mux/forks","keys_url":"https://api.github.com/repos/gorilla/mux/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gorilla/mux/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gorilla/mux/teams","hooks_url":"https://api.github.com/repos/gorilla/mux/hooks","issue_events_url":"https://api.github.com/repos/gorilla/mux/issues/events{/number}","events_url":"https://api.github.com/repos/gorilla/mux/events","assignees_url":"https://api.github.com/repos/gorilla/mux/assignees{/user}","branches_url":"https://api.github.com/repos/gorilla/mux/branches{/branch}","tags_url":"https://api.github.com/repos/gorilla/mux/tags","blobs_url":"https://api.github.com/repos/gorilla/mux/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gorilla/mux/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gorilla/mux/git/refs{/sha}","trees_url":"https://api.github.com/repos/gorilla/mux/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gorilla/mux/statuses/{sha}","languages_url":"https://api.github.com/repos/gorilla/mux/languages","stargazers_url":"https://api.github.com/repos/gorilla/mux/stargazers","contributors_url":"https://api.github.com/repos/gorilla/mux/contributors","subscribers_url":"https://api.github.com/repos/gorilla/mux/subscribers","subscription_url":"https://api.github.com/repos/gorilla/mux/subscription","commits_url":"https://api.github.com/repos/gorilla/mux/commits{/sha}","git_commits_url":"https://api.github.com/repos/gorilla/mux/git/commits{/sha}","comments_url":"https://api.github.com/repos/gorilla/mux/comments{/number}","issue_comment_url":"https://api.github.com/repos/gorilla/mux/issues/comments{/number}","contents_url":"https://api.github.com/repos/gorilla/mux/contents/{+path}","compare_url":"https://api.github.com/repos/gorilla/mux/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gorilla/mux/merges","archive_url":"https://api.github.com/repos/gorilla/mux/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gorilla/mux/downloads","issues_url":"https://api.github.com/repos/gorilla/mux/issues{/number}","pulls_url":"https://api.github.com/repos/gorilla/mux/pulls{/number}","milestones_url":"https://api.github.com/repos/gorilla/mux/milestones{/number}","notifications_url":"https://api.github.com/repos/gorilla/mux/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gorilla/mux/labels{/name}","releases_url":"https://api.github.com/repos/gorilla/mux/releases{/id}","deployments_url":"https://api.github.com/repos/gorilla/mux/deployments","created_at":"2012-10-02T21:32:24Z","updated_at":"2018-02-06T19:00:04Z","pushed_at":"2018-01-26T09:02:17Z","git_url":"git://github.com/gorilla/mux.git","ssh_url":"git@github.com:gorilla/mux.git","clone_url":"https://github.com/gorilla/mux.git","svn_url":"https://github.com/gorilla/mux","homepage":"http://www.gorillatoolkit.org/pkg/mux","size":314,"stargazers_count":5361,"watchers_count":5361,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":695,"mirror_url":null,"archived":false,"open_issues_count":14,"license":{"key":"bsd-3-clause","name":"BSD 3-Clause \"New\" or \"Revised\" License","spdx_id":"BSD-3-Clause","url":"https://api.github.com/licenses/bsd-3-clause"},"forks":695,"open_issues":14,"watchers":5361,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"gorilla","id":489566,"avatar_url":"https://avatars0.githubusercontent.com/u/489566?v=4","gravatar_id":"","url":"https://api.github.com/users/gorilla","html_url":"https://github.com/gorilla","followers_url":"https://api.github.com/users/gorilla/followers","following_url":"https://api.github.com/users/gorilla/following{/other_user}","gists_url":"https://api.github.com/users/gorilla/gists{/gist_id}","starred_url":"https://api.github.com/users/gorilla/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gorilla/subscriptions","organizations_url":"https://api.github.com/users/gorilla/orgs","repos_url":"https://api.github.com/users/gorilla/repos","events_url":"https://api.github.com/users/gorilla/events{/privacy}","received_events_url":"https://api.github.com/users/gorilla/received_events","type":"Organization","site_admin":false},"network_count":695,"subscribers_count":200}
+
+GET https://api.github.com/repos/jlhawn/go-crypto
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:50 GMT
+Etag: W/"cbcf0da9cf6b8bdd16f0337d4c4b1952"
+Last-Modified: Wed, 26 Jul 2017 13:01:28 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A86EB:8644F7:5A7A5F76
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4756
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.046568
+X-Xss-Protection: 1; mode=block
+
+{"id":32612244,"name":"go-crypto","full_name":"jlhawn/go-crypto","owner":{"login":"jlhawn","id":1441929,"avatar_url":"https://avatars2.githubusercontent.com/u/1441929?v=4","gravatar_id":"","url":"https://api.github.com/users/jlhawn","html_url":"https://github.com/jlhawn","followers_url":"https://api.github.com/users/jlhawn/followers","following_url":"https://api.github.com/users/jlhawn/following{/other_user}","gists_url":"https://api.github.com/users/jlhawn/gists{/gist_id}","starred_url":"https://api.github.com/users/jlhawn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jlhawn/subscriptions","organizations_url":"https://api.github.com/users/jlhawn/orgs","repos_url":"https://api.github.com/users/jlhawn/repos","events_url":"https://api.github.com/users/jlhawn/events{/privacy}","received_events_url":"https://api.github.com/users/jlhawn/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jlhawn/go-crypto","description":"A Subset of the Go `crypto` Package with a Resumable Hash Interface","fork":false,"url":"https://api.github.com/repos/jlhawn/go-crypto","forks_url":"https://api.github.com/repos/jlhawn/go-crypto/forks","keys_url":"https://api.github.com/repos/jlhawn/go-crypto/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jlhawn/go-crypto/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jlhawn/go-crypto/teams","hooks_url":"https://api.github.com/repos/jlhawn/go-crypto/hooks","issue_events_url":"https://api.github.com/repos/jlhawn/go-crypto/issues/events{/number}","events_url":"https://api.github.com/repos/jlhawn/go-crypto/events","assignees_url":"https://api.github.com/repos/jlhawn/go-crypto/assignees{/user}","branches_url":"https://api.github.com/repos/jlhawn/go-crypto/branches{/branch}","tags_url":"https://api.github.com/repos/jlhawn/go-crypto/tags","blobs_url":"https://api.github.com/repos/jlhawn/go-crypto/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jlhawn/go-crypto/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jlhawn/go-crypto/git/refs{/sha}","trees_url":"https://api.github.com/repos/jlhawn/go-crypto/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jlhawn/go-crypto/statuses/{sha}","languages_url":"https://api.github.com/repos/jlhawn/go-crypto/languages","stargazers_url":"https://api.github.com/repos/jlhawn/go-crypto/stargazers","contributors_url":"https://api.github.com/repos/jlhawn/go-crypto/contributors","subscribers_url":"https://api.github.com/repos/jlhawn/go-crypto/subscribers","subscription_url":"https://api.github.com/repos/jlhawn/go-crypto/subscription","commits_url":"https://api.github.com/repos/jlhawn/go-crypto/commits{/sha}","git_commits_url":"https://api.github.com/repos/jlhawn/go-crypto/git/commits{/sha}","comments_url":"https://api.github.com/repos/jlhawn/go-crypto/comments{/number}","issue_comment_url":"https://api.github.com/repos/jlhawn/go-crypto/issues/comments{/number}","contents_url":"https://api.github.com/repos/jlhawn/go-crypto/contents/{+path}","compare_url":"https://api.github.com/repos/jlhawn/go-crypto/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jlhawn/go-crypto/merges","archive_url":"https://api.github.com/repos/jlhawn/go-crypto/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jlhawn/go-crypto/downloads","issues_url":"https://api.github.com/repos/jlhawn/go-crypto/issues{/number}","pulls_url":"https://api.github.com/repos/jlhawn/go-crypto/pulls{/number}","milestones_url":"https://api.github.com/repos/jlhawn/go-crypto/milestones{/number}","notifications_url":"https://api.github.com/repos/jlhawn/go-crypto/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jlhawn/go-crypto/labels{/name}","releases_url":"https://api.github.com/repos/jlhawn/go-crypto/releases{/id}","deployments_url":"https://api.github.com/repos/jlhawn/go-crypto/deployments","created_at":"2015-03-20T23:28:05Z","updated_at":"2017-07-26T13:01:28Z","pushed_at":"2016-09-23T21:36:49Z","git_url":"git://github.com/jlhawn/go-crypto.git","ssh_url":"git@github.com:jlhawn/go-crypto.git","clone_url":"https://github.com/jlhawn/go-crypto.git","svn_url":"https://github.com/jlhawn/go-crypto","homepage":null,"size":47,"stargazers_count":4,"watchers_count":4,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":4,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"bsd-3-clause","name":"BSD 3-Clause \"New\" or \"Revised\" License","spdx_id":"BSD-3-Clause","url":"https://api.github.com/licenses/bsd-3-clause"},"forks":4,"open_issues":0,"watchers":4,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"network_count":4,"subscribers_count":1}
+
+GET https://api.github.com/repos/yvasiyarov/go-metrics
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:50 GMT
+Etag: W/"7c29ea8c3d1dc8647763daf8e4696070"
+Last-Modified: Wed, 22 Jun 2016 22:10:52 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A86F7:864575:5A7A5F76
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4755
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.065024
+X-Xss-Protection: 1; mode=block
+
+{"id":13006296,"name":"go-metrics","full_name":"yvasiyarov/go-metrics","owner":{"login":"yvasiyarov","id":889406,"avatar_url":"https://avatars3.githubusercontent.com/u/889406?v=4","gravatar_id":"","url":"https://api.github.com/users/yvasiyarov","html_url":"https://github.com/yvasiyarov","followers_url":"https://api.github.com/users/yvasiyarov/followers","following_url":"https://api.github.com/users/yvasiyarov/following{/other_user}","gists_url":"https://api.github.com/users/yvasiyarov/gists{/gist_id}","starred_url":"https://api.github.com/users/yvasiyarov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yvasiyarov/subscriptions","organizations_url":"https://api.github.com/users/yvasiyarov/orgs","repos_url":"https://api.github.com/users/yvasiyarov/repos","events_url":"https://api.github.com/users/yvasiyarov/events{/privacy}","received_events_url":"https://api.github.com/users/yvasiyarov/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/yvasiyarov/go-metrics","description":"Go port of Coda Hale's Metrics library","fork":true,"url":"https://api.github.com/repos/yvasiyarov/go-metrics","forks_url":"https://api.github.com/repos/yvasiyarov/go-metrics/forks","keys_url":"https://api.github.com/repos/yvasiyarov/go-metrics/keys{/key_id}","collaborators_url":"https://api.github.com/repos/yvasiyarov/go-metrics/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/yvasiyarov/go-metrics/teams","hooks_url":"https://api.github.com/repos/yvasiyarov/go-metrics/hooks","issue_events_url":"https://api.github.com/repos/yvasiyarov/go-metrics/issues/events{/number}","events_url":"https://api.github.com/repos/yvasiyarov/go-metrics/events","assignees_url":"https://api.github.com/repos/yvasiyarov/go-metrics/assignees{/user}","branches_url":"https://api.github.com/repos/yvasiyarov/go-metrics/branches{/branch}","tags_url":"https://api.github.com/repos/yvasiyarov/go-metrics/tags","blobs_url":"https://api.github.com/repos/yvasiyarov/go-metrics/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/yvasiyarov/go-metrics/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/yvasiyarov/go-metrics/git/refs{/sha}","trees_url":"https://api.github.com/repos/yvasiyarov/go-metrics/git/trees{/sha}","statuses_url":"https://api.github.com/repos/yvasiyarov/go-metrics/statuses/{sha}","languages_url":"https://api.github.com/repos/yvasiyarov/go-metrics/languages","stargazers_url":"https://api.github.com/repos/yvasiyarov/go-metrics/stargazers","contributors_url":"https://api.github.com/repos/yvasiyarov/go-metrics/contributors","subscribers_url":"https://api.github.com/repos/yvasiyarov/go-metrics/subscribers","subscription_url":"https://api.github.com/repos/yvasiyarov/go-metrics/subscription","commits_url":"https://api.github.com/repos/yvasiyarov/go-metrics/commits{/sha}","git_commits_url":"https://api.github.com/repos/yvasiyarov/go-metrics/git/commits{/sha}","comments_url":"https://api.github.com/repos/yvasiyarov/go-metrics/comments{/number}","issue_comment_url":"https://api.github.com/repos/yvasiyarov/go-metrics/issues/comments{/number}","contents_url":"https://api.github.com/repos/yvasiyarov/go-metrics/contents/{+path}","compare_url":"https://api.github.com/repos/yvasiyarov/go-metrics/compare/{base}...{head}","merges_url":"https://api.github.com/repos/yvasiyarov/go-metrics/merges","archive_url":"https://api.github.com/repos/yvasiyarov/go-metrics/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/yvasiyarov/go-metrics/downloads","issues_url":"https://api.github.com/repos/yvasiyarov/go-metrics/issues{/number}","pulls_url":"https://api.github.com/repos/yvasiyarov/go-metrics/pulls{/number}","milestones_url":"https://api.github.com/repos/yvasiyarov/go-metrics/milestones{/number}","notifications_url":"https://api.github.com/repos/yvasiyarov/go-metrics/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/yvasiyarov/go-metrics/labels{/name}","releases_url":"https://api.github.com/repos/yvasiyarov/go-metrics/releases{/id}","deployments_url":"https://api.github.com/repos/yvasiyarov/go-metrics/deployments","created_at":"2013-09-22T02:28:27Z","updated_at":"2016-06-22T22:10:52Z","pushed_at":"2015-01-12T13:30:30Z","git_url":"git://github.com/yvasiyarov/go-metrics.git","ssh_url":"git@github.com:yvasiyarov/go-metrics.git","clone_url":"https://github.com/yvasiyarov/go-metrics.git","svn_url":"https://github.com/yvasiyarov/go-metrics","homepage":"","size":1339,"stargazers_count":8,"watchers_count":8,"language":"Go","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":5,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":null,"url":null},"forks":5,"open_issues":0,"watchers":8,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"parent":{"id":2823239,"name":"go-metrics","full_name":"rcrowley/go-metrics","owner":{"login":"rcrowley","id":11151,"avatar_url":"https://avatars0.githubusercontent.com/u/11151?v=4","gravatar_id":"","url":"https://api.github.com/users/rcrowley","html_url":"https://github.com/rcrowley","followers_url":"https://api.github.com/users/rcrowley/followers","following_url":"https://api.github.com/users/rcrowley/following{/other_user}","gists_url":"https://api.github.com/users/rcrowley/gists{/gist_id}","starred_url":"https://api.github.com/users/rcrowley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rcrowley/subscriptions","organizations_url":"https://api.github.com/users/rcrowley/orgs","repos_url":"https://api.github.com/users/rcrowley/repos","events_url":"https://api.github.com/users/rcrowley/events{/privacy}","received_events_url":"https://api.github.com/users/rcrowley/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/rcrowley/go-metrics","description":"Go port of Coda Hale's Metrics library","fork":false,"url":"https://api.github.com/repos/rcrowley/go-metrics","forks_url":"https://api.github.com/repos/rcrowley/go-metrics/forks","keys_url":"https://api.github.com/repos/rcrowley/go-metrics/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rcrowley/go-metrics/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rcrowley/go-metrics/teams","hooks_url":"https://api.github.com/repos/rcrowley/go-metrics/hooks","issue_events_url":"https://api.github.com/repos/rcrowley/go-metrics/issues/events{/number}","events_url":"https://api.github.com/repos/rcrowley/go-metrics/events","assignees_url":"https://api.github.com/repos/rcrowley/go-metrics/assignees{/user}","branches_url":"https://api.github.com/repos/rcrowley/go-metrics/branches{/branch}","tags_url":"https://api.github.com/repos/rcrowley/go-metrics/tags","blobs_url":"https://api.github.com/repos/rcrowley/go-metrics/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rcrowley/go-metrics/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rcrowley/go-metrics/git/refs{/sha}","trees_url":"https://api.github.com/repos/rcrowley/go-metrics/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rcrowley/go-metrics/statuses/{sha}","languages_url":"https://api.github.com/repos/rcrowley/go-metrics/languages","stargazers_url":"https://api.github.com/repos/rcrowley/go-metrics/stargazers","contributors_url":"https://api.github.com/repos/rcrowley/go-metrics/contributors","subscribers_url":"https://api.github.com/repos/rcrowley/go-metrics/subscribers","subscription_url":"https://api.github.com/repos/rcrowley/go-metrics/subscription","commits_url":"https://api.github.com/repos/rcrowley/go-metrics/commits{/sha}","git_commits_url":"https://api.github.com/repos/rcrowley/go-metrics/git/commits{/sha}","comments_url":"https://api.github.com/repos/rcrowley/go-metrics/comments{/number}","issue_comment_url":"https://api.github.com/repos/rcrowley/go-metrics/issues/comments{/number}","contents_url":"https://api.github.com/repos/rcrowley/go-metrics/contents/{+path}","compare_url":"https://api.github.com/repos/rcrowley/go-metrics/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rcrowley/go-metrics/merges","archive_url":"https://api.github.com/repos/rcrowley/go-metrics/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rcrowley/go-metrics/downloads","issues_url":"https://api.github.com/repos/rcrowley/go-metrics/issues{/number}","pulls_url":"https://api.github.com/repos/rcrowley/go-metrics/pulls{/number}","milestones_url":"https://api.github.com/repos/rcrowley/go-metrics/milestones{/number}","notifications_url":"https://api.github.com/repos/rcrowley/go-metrics/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rcrowley/go-metrics/labels{/name}","releases_url":"https://api.github.com/repos/rcrowley/go-metrics/releases{/id}","deployments_url":"https://api.github.com/repos/rcrowley/go-metrics/deployments","created_at":"2011-11-21T21:35:09Z","updated_at":"2018-02-06T13:03:38Z","pushed_at":"2018-01-26T20:58:14Z","git_url":"git://github.com/rcrowley/go-metrics.git","ssh_url":"git@github.com:rcrowley/go-metrics.git","clone_url":"https://github.com/rcrowley/go-metrics.git","svn_url":"https://github.com/rcrowley/go-metrics","homepage":"","size":1264,"stargazers_count":1812,"watchers_count":1812,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":325,"mirror_url":null,"archived":false,"open_issues_count":45,"license":{"key":"other","name":"Other","spdx_id":null,"url":null},"forks":325,"open_issues":45,"watchers":1812,"default_branch":"master"},"source":{"id":2823239,"name":"go-metrics","full_name":"rcrowley/go-metrics","owner":{"login":"rcrowley","id":11151,"avatar_url":"https://avatars0.githubusercontent.com/u/11151?v=4","gravatar_id":"","url":"https://api.github.com/users/rcrowley","html_url":"https://github.com/rcrowley","followers_url":"https://api.github.com/users/rcrowley/followers","following_url":"https://api.github.com/users/rcrowley/following{/other_user}","gists_url":"https://api.github.com/users/rcrowley/gists{/gist_id}","starred_url":"https://api.github.com/users/rcrowley/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rcrowley/subscriptions","organizations_url":"https://api.github.com/users/rcrowley/orgs","repos_url":"https://api.github.com/users/rcrowley/repos","events_url":"https://api.github.com/users/rcrowley/events{/privacy}","received_events_url":"https://api.github.com/users/rcrowley/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/rcrowley/go-metrics","description":"Go port of Coda Hale's Metrics library","fork":false,"url":"https://api.github.com/repos/rcrowley/go-metrics","forks_url":"https://api.github.com/repos/rcrowley/go-metrics/forks","keys_url":"https://api.github.com/repos/rcrowley/go-metrics/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rcrowley/go-metrics/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rcrowley/go-metrics/teams","hooks_url":"https://api.github.com/repos/rcrowley/go-metrics/hooks","issue_events_url":"https://api.github.com/repos/rcrowley/go-metrics/issues/events{/number}","events_url":"https://api.github.com/repos/rcrowley/go-metrics/events","assignees_url":"https://api.github.com/repos/rcrowley/go-metrics/assignees{/user}","branches_url":"https://api.github.com/repos/rcrowley/go-metrics/branches{/branch}","tags_url":"https://api.github.com/repos/rcrowley/go-metrics/tags","blobs_url":"https://api.github.com/repos/rcrowley/go-metrics/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rcrowley/go-metrics/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rcrowley/go-metrics/git/refs{/sha}","trees_url":"https://api.github.com/repos/rcrowley/go-metrics/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rcrowley/go-metrics/statuses/{sha}","languages_url":"https://api.github.com/repos/rcrowley/go-metrics/languages","stargazers_url":"https://api.github.com/repos/rcrowley/go-metrics/stargazers","contributors_url":"https://api.github.com/repos/rcrowley/go-metrics/contributors","subscribers_url":"https://api.github.com/repos/rcrowley/go-metrics/subscribers","subscription_url":"https://api.github.com/repos/rcrowley/go-metrics/subscription","commits_url":"https://api.github.com/repos/rcrowley/go-metrics/commits{/sha}","git_commits_url":"https://api.github.com/repos/rcrowley/go-metrics/git/commits{/sha}","comments_url":"https://api.github.com/repos/rcrowley/go-metrics/comments{/number}","issue_comment_url":"https://api.github.com/repos/rcrowley/go-metrics/issues/comments{/number}","contents_url":"https://api.github.com/repos/rcrowley/go-metrics/contents/{+path}","compare_url":"https://api.github.com/repos/rcrowley/go-metrics/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rcrowley/go-metrics/merges","archive_url":"https://api.github.com/repos/rcrowley/go-metrics/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rcrowley/go-metrics/downloads","issues_url":"https://api.github.com/repos/rcrowley/go-metrics/issues{/number}","pulls_url":"https://api.github.com/repos/rcrowley/go-metrics/pulls{/number}","milestones_url":"https://api.github.com/repos/rcrowley/go-metrics/milestones{/number}","notifications_url":"https://api.github.com/repos/rcrowley/go-metrics/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rcrowley/go-metrics/labels{/name}","releases_url":"https://api.github.com/repos/rcrowley/go-metrics/releases{/id}","deployments_url":"https://api.github.com/repos/rcrowley/go-metrics/deployments","created_at":"2011-11-21T21:35:09Z","updated_at":"2018-02-06T13:03:38Z","pushed_at":"2018-01-26T20:58:14Z","git_url":"git://github.com/rcrowley/go-metrics.git","ssh_url":"git@github.com:rcrowley/go-metrics.git","clone_url":"https://github.com/rcrowley/go-metrics.git","svn_url":"https://github.com/rcrowley/go-metrics","homepage":"","size":1264,"stargazers_count":1812,"watchers_count":1812,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":325,"mirror_url":null,"archived":false,"open_issues_count":45,"license":{"key":"other","name":"Other","spdx_id":null,"url":null},"forks":325,"open_issues":45,"watchers":1812,"default_branch":"master"},"network_count":325,"subscribers_count":1}
+
+GET https://api.github.com/repos/yvasiyarov/gorelic
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:51 GMT
+Etag: W/"7774e24ad61c7bc7cba44caed35aad41"
+Last-Modified: Mon, 11 Dec 2017 09:38:26 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8702:864590:5A7A5F76
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4754
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.076929
+X-Xss-Protection: 1; mode=block
+
+{"id":9293780,"name":"gorelic","full_name":"yvasiyarov/gorelic","owner":{"login":"yvasiyarov","id":889406,"avatar_url":"https://avatars3.githubusercontent.com/u/889406?v=4","gravatar_id":"","url":"https://api.github.com/users/yvasiyarov","html_url":"https://github.com/yvasiyarov","followers_url":"https://api.github.com/users/yvasiyarov/followers","following_url":"https://api.github.com/users/yvasiyarov/following{/other_user}","gists_url":"https://api.github.com/users/yvasiyarov/gists{/gist_id}","starred_url":"https://api.github.com/users/yvasiyarov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yvasiyarov/subscriptions","organizations_url":"https://api.github.com/users/yvasiyarov/orgs","repos_url":"https://api.github.com/users/yvasiyarov/repos","events_url":"https://api.github.com/users/yvasiyarov/events{/privacy}","received_events_url":"https://api.github.com/users/yvasiyarov/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/yvasiyarov/gorelic","description":"New Relic agent for Go lang","fork":false,"url":"https://api.github.com/repos/yvasiyarov/gorelic","forks_url":"https://api.github.com/repos/yvasiyarov/gorelic/forks","keys_url":"https://api.github.com/repos/yvasiyarov/gorelic/keys{/key_id}","collaborators_url":"https://api.github.com/repos/yvasiyarov/gorelic/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/yvasiyarov/gorelic/teams","hooks_url":"https://api.github.com/repos/yvasiyarov/gorelic/hooks","issue_events_url":"https://api.github.com/repos/yvasiyarov/gorelic/issues/events{/number}","events_url":"https://api.github.com/repos/yvasiyarov/gorelic/events","assignees_url":"https://api.github.com/repos/yvasiyarov/gorelic/assignees{/user}","branches_url":"https://api.github.com/repos/yvasiyarov/gorelic/branches{/branch}","tags_url":"https://api.github.com/repos/yvasiyarov/gorelic/tags","blobs_url":"https://api.github.com/repos/yvasiyarov/gorelic/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/yvasiyarov/gorelic/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/yvasiyarov/gorelic/git/refs{/sha}","trees_url":"https://api.github.com/repos/yvasiyarov/gorelic/git/trees{/sha}","statuses_url":"https://api.github.com/repos/yvasiyarov/gorelic/statuses/{sha}","languages_url":"https://api.github.com/repos/yvasiyarov/gorelic/languages","stargazers_url":"https://api.github.com/repos/yvasiyarov/gorelic/stargazers","contributors_url":"https://api.github.com/repos/yvasiyarov/gorelic/contributors","subscribers_url":"https://api.github.com/repos/yvasiyarov/gorelic/subscribers","subscription_url":"https://api.github.com/repos/yvasiyarov/gorelic/subscription","commits_url":"https://api.github.com/repos/yvasiyarov/gorelic/commits{/sha}","git_commits_url":"https://api.github.com/repos/yvasiyarov/gorelic/git/commits{/sha}","comments_url":"https://api.github.com/repos/yvasiyarov/gorelic/comments{/number}","issue_comment_url":"https://api.github.com/repos/yvasiyarov/gorelic/issues/comments{/number}","contents_url":"https://api.github.com/repos/yvasiyarov/gorelic/contents/{+path}","compare_url":"https://api.github.com/repos/yvasiyarov/gorelic/compare/{base}...{head}","merges_url":"https://api.github.com/repos/yvasiyarov/gorelic/merges","archive_url":"https://api.github.com/repos/yvasiyarov/gorelic/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/yvasiyarov/gorelic/downloads","issues_url":"https://api.github.com/repos/yvasiyarov/gorelic/issues{/number}","pulls_url":"https://api.github.com/repos/yvasiyarov/gorelic/pulls{/number}","milestones_url":"https://api.github.com/repos/yvasiyarov/gorelic/milestones{/number}","notifications_url":"https://api.github.com/repos/yvasiyarov/gorelic/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/yvasiyarov/gorelic/labels{/name}","releases_url":"https://api.github.com/repos/yvasiyarov/gorelic/releases{/id}","deployments_url":"https://api.github.com/repos/yvasiyarov/gorelic/deployments","created_at":"2013-04-08T10:15:04Z","updated_at":"2017-12-11T09:38:26Z","pushed_at":"2016-06-16T10:50:35Z","git_url":"git://github.com/yvasiyarov/gorelic.git","ssh_url":"git@github.com:yvasiyarov/gorelic.git","clone_url":"https://github.com/yvasiyarov/gorelic.git","svn_url":"https://github.com/yvasiyarov/gorelic","homepage":null,"size":95,"stargazers_count":392,"watchers_count":392,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":59,"mirror_url":null,"archived":false,"open_issues_count":13,"license":{"key":"bsd-2-clause","name":"BSD 2-Clause \"Simplified\" License","spdx_id":"BSD-2-Clause","url":"https://api.github.com/licenses/bsd-2-clause"},"forks":59,"open_issues":13,"watchers":392,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"network_count":59,"subscribers_count":35}
+
+GET https://api.github.com/repos/yvasiyarov/newrelic_platform_go
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:51 GMT
+Etag: W/"ff9d761939614043ba1942066dc24cfd"
+Last-Modified: Fri, 24 Feb 2017 07:31:50 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8715:8645A7:5A7A5F77
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4753
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.054739
+X-Xss-Protection: 1; mode=block
+
+{"id":11311788,"name":"newrelic_platform_go","full_name":"yvasiyarov/newrelic_platform_go","owner":{"login":"yvasiyarov","id":889406,"avatar_url":"https://avatars3.githubusercontent.com/u/889406?v=4","gravatar_id":"","url":"https://api.github.com/users/yvasiyarov","html_url":"https://github.com/yvasiyarov","followers_url":"https://api.github.com/users/yvasiyarov/followers","following_url":"https://api.github.com/users/yvasiyarov/following{/other_user}","gists_url":"https://api.github.com/users/yvasiyarov/gists{/gist_id}","starred_url":"https://api.github.com/users/yvasiyarov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yvasiyarov/subscriptions","organizations_url":"https://api.github.com/users/yvasiyarov/orgs","repos_url":"https://api.github.com/users/yvasiyarov/repos","events_url":"https://api.github.com/users/yvasiyarov/events{/privacy}","received_events_url":"https://api.github.com/users/yvasiyarov/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/yvasiyarov/newrelic_platform_go","description":"Newrelic Platform SDK for Go(golang)","fork":false,"url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go","forks_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/forks","keys_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/keys{/key_id}","collaborators_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/teams","hooks_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/hooks","issue_events_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/issues/events{/number}","events_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/events","assignees_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/assignees{/user}","branches_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/branches{/branch}","tags_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/tags","blobs_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/git/refs{/sha}","trees_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/git/trees{/sha}","statuses_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/statuses/{sha}","languages_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/languages","stargazers_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/stargazers","contributors_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/contributors","subscribers_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/subscribers","subscription_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/subscription","commits_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/commits{/sha}","git_commits_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/git/commits{/sha}","comments_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/comments{/number}","issue_comment_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/issues/comments{/number}","contents_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/contents/{+path}","compare_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/compare/{base}...{head}","merges_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/merges","archive_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/downloads","issues_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/issues{/number}","pulls_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/pulls{/number}","milestones_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/milestones{/number}","notifications_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/labels{/name}","releases_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/releases{/id}","deployments_url":"https://api.github.com/repos/yvasiyarov/newrelic_platform_go/deployments","created_at":"2013-07-10T12:51:24Z","updated_at":"2017-02-24T07:31:50Z","pushed_at":"2016-06-01T14:19:58Z","git_url":"git://github.com/yvasiyarov/newrelic_platform_go.git","ssh_url":"git@github.com:yvasiyarov/newrelic_platform_go.git","clone_url":"https://github.com/yvasiyarov/newrelic_platform_go.git","svn_url":"https://github.com/yvasiyarov/newrelic_platform_go","homepage":null,"size":20,"stargazers_count":30,"watchers_count":30,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":20,"mirror_url":null,"archived":false,"open_issues_count":1,"license":{"key":"bsd-2-clause","name":"BSD 2-Clause \"Simplified\" License","spdx_id":"BSD-2-Clause","url":"https://api.github.com/licenses/bsd-2-clause"},"forks":20,"open_issues":1,"watchers":30,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true},"network_count":20,"subscribers_count":6}
+
+GET https://api.github.com/repos/go-check/check
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:51 GMT
+Etag: W/"c607e0376b30d410f5cba85cca986c69"
+Last-Modified: Mon, 05 Feb 2018 11:40:05 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8725:8645C6:5A7A5F77
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4752
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.046281
+X-Xss-Protection: 1; mode=block
+
+{"id":18316312,"name":"check","full_name":"go-check/check","owner":{"login":"go-check","id":6873461,"avatar_url":"https://avatars0.githubusercontent.com/u/6873461?v=4","gravatar_id":"","url":"https://api.github.com/users/go-check","html_url":"https://github.com/go-check","followers_url":"https://api.github.com/users/go-check/followers","following_url":"https://api.github.com/users/go-check/following{/other_user}","gists_url":"https://api.github.com/users/go-check/gists{/gist_id}","starred_url":"https://api.github.com/users/go-check/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/go-check/subscriptions","organizations_url":"https://api.github.com/users/go-check/orgs","repos_url":"https://api.github.com/users/go-check/repos","events_url":"https://api.github.com/users/go-check/events{/privacy}","received_events_url":"https://api.github.com/users/go-check/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/go-check/check","description":"Rich testing for the Go language","fork":false,"url":"https://api.github.com/repos/go-check/check","forks_url":"https://api.github.com/repos/go-check/check/forks","keys_url":"https://api.github.com/repos/go-check/check/keys{/key_id}","collaborators_url":"https://api.github.com/repos/go-check/check/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/go-check/check/teams","hooks_url":"https://api.github.com/repos/go-check/check/hooks","issue_events_url":"https://api.github.com/repos/go-check/check/issues/events{/number}","events_url":"https://api.github.com/repos/go-check/check/events","assignees_url":"https://api.github.com/repos/go-check/check/assignees{/user}","branches_url":"https://api.github.com/repos/go-check/check/branches{/branch}","tags_url":"https://api.github.com/repos/go-check/check/tags","blobs_url":"https://api.github.com/repos/go-check/check/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/go-check/check/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/go-check/check/git/refs{/sha}","trees_url":"https://api.github.com/repos/go-check/check/git/trees{/sha}","statuses_url":"https://api.github.com/repos/go-check/check/statuses/{sha}","languages_url":"https://api.github.com/repos/go-check/check/languages","stargazers_url":"https://api.github.com/repos/go-check/check/stargazers","contributors_url":"https://api.github.com/repos/go-check/check/contributors","subscribers_url":"https://api.github.com/repos/go-check/check/subscribers","subscription_url":"https://api.github.com/repos/go-check/check/subscription","commits_url":"https://api.github.com/repos/go-check/check/commits{/sha}","git_commits_url":"https://api.github.com/repos/go-check/check/git/commits{/sha}","comments_url":"https://api.github.com/repos/go-check/check/comments{/number}","issue_comment_url":"https://api.github.com/repos/go-check/check/issues/comments{/number}","contents_url":"https://api.github.com/repos/go-check/check/contents/{+path}","compare_url":"https://api.github.com/repos/go-check/check/compare/{base}...{head}","merges_url":"https://api.github.com/repos/go-check/check/merges","archive_url":"https://api.github.com/repos/go-check/check/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/go-check/check/downloads","issues_url":"https://api.github.com/repos/go-check/check/issues{/number}","pulls_url":"https://api.github.com/repos/go-check/check/pulls{/number}","milestones_url":"https://api.github.com/repos/go-check/check/milestones{/number}","notifications_url":"https://api.github.com/repos/go-check/check/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/go-check/check/labels{/name}","releases_url":"https://api.github.com/repos/go-check/check/releases{/id}","deployments_url":"https://api.github.com/repos/go-check/check/deployments","created_at":"2014-04-01T03:18:23Z","updated_at":"2018-02-05T11:40:05Z","pushed_at":"2018-01-16T22:28:01Z","git_url":"git://github.com/go-check/check.git","ssh_url":"git@github.com:go-check/check.git","clone_url":"https://github.com/go-check/check.git","svn_url":"https://github.com/go-check/check","homepage":null,"size":1158,"stargazers_count":353,"watchers_count":353,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":97,"mirror_url":null,"archived":false,"open_issues_count":47,"license":{"key":"bsd-2-clause","name":"BSD 2-Clause \"Simplified\" License","spdx_id":"BSD-2-Clause","url":"https://api.github.com/licenses/bsd-2-clause"},"forks":97,"open_issues":47,"watchers":353,"default_branch":"v1","permissions":{"admin":false,"push":false,"pull":true},"organization":{"login":"go-check","id":6873461,"avatar_url":"https://avatars0.githubusercontent.com/u/6873461?v=4","gravatar_id":"","url":"https://api.github.com/users/go-check","html_url":"https://github.com/go-check","followers_url":"https://api.github.com/users/go-check/followers","following_url":"https://api.github.com/users/go-check/following{/other_user}","gists_url":"https://api.github.com/users/go-check/gists{/gist_id}","starred_url":"https://api.github.com/users/go-check/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/go-check/subscriptions","organizations_url":"https://api.github.com/users/go-check/orgs","repos_url":"https://api.github.com/users/go-check/repos","events_url":"https://api.github.com/users/go-check/events{/privacy}","received_events_url":"https://api.github.com/users/go-check/received_events","type":"Organization","site_admin":false},"network_count":97,"subscribers_count":12}
+
+GET https://api.github.com/repos/go-check/check/commits?sha=64131543e7896d5bcc6bd5a76287eb75ea96c673&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:51 GMT
+Etag: W/"c0ab60e6c7d4ec406fb2c2f62c4f24ff"
+Last-Modified: Fri, 24 Oct 2014 13:38:53 GMT
+Link: <https://api.github.com/repositories/18316312/commits?sha=64131543e7896d5bcc6bd5a76287eb75ea96c673&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/18316312/commits?sha=64131543e7896d5bcc6bd5a76287eb75ea96c673&per_page=2&page=71>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A872E:8645D5:5A7A5F77
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4751
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.070071
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"64131543e7896d5bcc6bd5a76287eb75ea96c673","commit":{"author":{"name":"Gustavo Niemeyer","email":"gustavo@niemeyer.net","date":"2014-10-24T13:38:53Z"},"committer":{"name":"Gustavo Niemeyer","email":"gustavo@niemeyer.net","date":"2014-10-24T13:38:53Z"},"message":"Merge pull request #26 from aznashwan/upstream\n\nFix poor tempdir removal error message under Windows.","tree":{"sha":"fb782a9b8f8e0059d4677115ebce5a21da064a07","url":"https://api.github.com/repos/go-check/check/git/trees/fb782a9b8f8e0059d4677115ebce5a21da064a07"},"url":"https://api.github.com/repos/go-check/check/git/commits/64131543e7896d5bcc6bd5a76287eb75ea96c673","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/go-check/check/commits/64131543e7896d5bcc6bd5a76287eb75ea96c673","html_url":"https://github.com/go-check/check/commit/64131543e7896d5bcc6bd5a76287eb75ea96c673","comments_url":"https://api.github.com/repos/go-check/check/commits/64131543e7896d5bcc6bd5a76287eb75ea96c673/comments","author":{"login":"niemeyer","id":378683,"avatar_url":"https://avatars3.githubusercontent.com/u/378683?v=4","gravatar_id":"","url":"https://api.github.com/users/niemeyer","html_url":"https://github.com/niemeyer","followers_url":"https://api.github.com/users/niemeyer/followers","following_url":"https://api.github.com/users/niemeyer/following{/other_user}","gists_url":"https://api.github.com/users/niemeyer/gists{/gist_id}","starred_url":"https://api.github.com/users/niemeyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/niemeyer/subscriptions","organizations_url":"https://api.github.com/users/niemeyer/orgs","repos_url":"https://api.github.com/users/niemeyer/repos","events_url":"https://api.github.com/users/niemeyer/events{/privacy}","received_events_url":"https://api.github.com/users/niemeyer/received_events","type":"User","site_admin":false},"committer":{"login":"niemeyer","id":378683,"avatar_url":"https://avatars3.githubusercontent.com/u/378683?v=4","gravatar_id":"","url":"https://api.github.com/users/niemeyer","html_url":"https://github.com/niemeyer","followers_url":"https://api.github.com/users/niemeyer/followers","following_url":"https://api.github.com/users/niemeyer/following{/other_user}","gists_url":"https://api.github.com/users/niemeyer/gists{/gist_id}","starred_url":"https://api.github.com/users/niemeyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/niemeyer/subscriptions","organizations_url":"https://api.github.com/users/niemeyer/orgs","repos_url":"https://api.github.com/users/niemeyer/repos","events_url":"https://api.github.com/users/niemeyer/events{/privacy}","received_events_url":"https://api.github.com/users/niemeyer/received_events","type":"User","site_admin":false},"parents":[{"sha":"f74cd4712c294b0b898bc694214563d14caf3b76","url":"https://api.github.com/repos/go-check/check/commits/f74cd4712c294b0b898bc694214563d14caf3b76","html_url":"https://github.com/go-check/check/commit/f74cd4712c294b0b898bc694214563d14caf3b76"},{"sha":"5300ee662a3134b3746c03356d002c084cab958f","url":"https://api.github.com/repos/go-check/check/commits/5300ee662a3134b3746c03356d002c084cab958f","html_url":"https://github.com/go-check/check/commit/5300ee662a3134b3746c03356d002c084cab958f"}]},{"sha":"5300ee662a3134b3746c03356d002c084cab958f","commit":{"author":{"name":"aznashwan","email":"aznashwan@yahoo.com","date":"2014-10-23T17:08:15Z"},"committer":{"name":"aznashwan","email":"aznashwan@yahoo.com","date":"2014-10-23T17:08:15Z"},"message":"Fixed misleading tempdir removal message under Windows.","tree":{"sha":"fb782a9b8f8e0059d4677115ebce5a21da064a07","url":"https://api.github.com/repos/go-check/check/git/trees/fb782a9b8f8e0059d4677115ebce5a21da064a07"},"url":"https://api.github.com/repos/go-check/check/git/commits/5300ee662a3134b3746c03356d002c084cab958f","comment_count":1,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/go-check/check/commits/5300ee662a3134b3746c03356d002c084cab958f","html_url":"https://github.com/go-check/check/commit/5300ee662a3134b3746c03356d002c084cab958f","comments_url":"https://api.github.com/repos/go-check/check/commits/5300ee662a3134b3746c03356d002c084cab958f/comments","author":{"login":"aznashwan","id":6192535,"avatar_url":"https://avatars1.githubusercontent.com/u/6192535?v=4","gravatar_id":"","url":"https://api.github.com/users/aznashwan","html_url":"https://github.com/aznashwan","followers_url":"https://api.github.com/users/aznashwan/followers","following_url":"https://api.github.com/users/aznashwan/following{/other_user}","gists_url":"https://api.github.com/users/aznashwan/gists{/gist_id}","starred_url":"https://api.github.com/users/aznashwan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aznashwan/subscriptions","organizations_url":"https://api.github.com/users/aznashwan/orgs","repos_url":"https://api.github.com/users/aznashwan/repos","events_url":"https://api.github.com/users/aznashwan/events{/privacy}","received_events_url":"https://api.github.com/users/aznashwan/received_events","type":"User","site_admin":false},"committer":{"login":"aznashwan","id":6192535,"avatar_url":"https://avatars1.githubusercontent.com/u/6192535?v=4","gravatar_id":"","url":"https://api.github.com/users/aznashwan","html_url":"https://github.com/aznashwan","followers_url":"https://api.github.com/users/aznashwan/followers","following_url":"https://api.github.com/users/aznashwan/following{/other_user}","gists_url":"https://api.github.com/users/aznashwan/gists{/gist_id}","starred_url":"https://api.github.com/users/aznashwan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aznashwan/subscriptions","organizations_url":"https://api.github.com/users/aznashwan/orgs","repos_url":"https://api.github.com/users/aznashwan/repos","events_url":"https://api.github.com/users/aznashwan/events{/privacy}","received_events_url":"https://api.github.com/users/aznashwan/received_events","type":"User","site_admin":false},"parents":[{"sha":"f74cd4712c294b0b898bc694214563d14caf3b76","url":"https://api.github.com/repos/go-check/check/commits/f74cd4712c294b0b898bc694214563d14caf3b76","html_url":"https://github.com/go-check/check/commit/f74cd4712c294b0b898bc694214563d14caf3b76"}]}]
+
+GET https://api.github.com/repos/go-yaml/yaml/commits?sha=bef53efd0c76e49e6de55ead051f886bea7e9420&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Wed, 07 Feb 2018 02:07:51 GMT
+Etag: W/"82b865501babcb9ab687d777b6af52e9"
+Last-Modified: Fri, 16 Jan 2015 20:20:57 GMT
+Link: <https://api.github.com/repositories/17451182/commits?sha=bef53efd0c76e49e6de55ead051f886bea7e9420&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/17451182/commits?sha=bef53efd0c76e49e6de55ead051f886bea7e9420&per_page=2&page=80>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 8843:5313:4A8735:8645E7:5A7A5F77
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4750
+X-Ratelimit-Reset: 1517970618
+X-Runtime-Rack: 0.051182
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"bef53efd0c76e49e6de55ead051f886bea7e9420","commit":{"author":{"name":"Gustavo Niemeyer","email":"gustavo@niemeyer.net","date":"2015-01-16T20:20:57Z"},"committer":{"name":"Gustavo Niemeyer","email":"gustavo@niemeyer.net","date":"2015-01-16T20:20:57Z"},"message":"Add test ensuring [] decodes as zero-length slice.\n\nReported as #42 and previously fixed in 08859840.","tree":{"sha":"8683660cb1c42b04bee40570d63f1e4b1f2d1835","url":"https://api.github.com/repos/go-yaml/yaml/git/trees/8683660cb1c42b04bee40570d63f1e4b1f2d1835"},"url":"https://api.github.com/repos/go-yaml/yaml/git/commits/bef53efd0c76e49e6de55ead051f886bea7e9420","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/go-yaml/yaml/commits/bef53efd0c76e49e6de55ead051f886bea7e9420","html_url":"https://github.com/go-yaml/yaml/commit/bef53efd0c76e49e6de55ead051f886bea7e9420","comments_url":"https://api.github.com/repos/go-yaml/yaml/commits/bef53efd0c76e49e6de55ead051f886bea7e9420/comments","author":{"login":"niemeyer","id":378683,"avatar_url":"https://avatars3.githubusercontent.com/u/378683?v=4","gravatar_id":"","url":"https://api.github.com/users/niemeyer","html_url":"https://github.com/niemeyer","followers_url":"https://api.github.com/users/niemeyer/followers","following_url":"https://api.github.com/users/niemeyer/following{/other_user}","gists_url":"https://api.github.com/users/niemeyer/gists{/gist_id}","starred_url":"https://api.github.com/users/niemeyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/niemeyer/subscriptions","organizations_url":"https://api.github.com/users/niemeyer/orgs","repos_url":"https://api.github.com/users/niemeyer/repos","events_url":"https://api.github.com/users/niemeyer/events{/privacy}","received_events_url":"https://api.github.com/users/niemeyer/received_events","type":"User","site_admin":false},"committer":{"login":"niemeyer","id":378683,"avatar_url":"https://avatars3.githubusercontent.com/u/378683?v=4","gravatar_id":"","url":"https://api.github.com/users/niemeyer","html_url":"https://github.com/niemeyer","followers_url":"https://api.github.com/users/niemeyer/followers","following_url":"https://api.github.com/users/niemeyer/following{/other_user}","gists_url":"https://api.github.com/users/niemeyer/gists{/gist_id}","starred_url":"https://api.github.com/users/niemeyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/niemeyer/subscriptions","organizations_url":"https://api.github.com/users/niemeyer/orgs","repos_url":"https://api.github.com/users/niemeyer/repos","events_url":"https://api.github.com/users/niemeyer/events{/privacy}","received_events_url":"https://api.github.com/users/niemeyer/received_events","type":"User","site_admin":false},"parents":[{"sha":"1bf6a7ce154075e61134f8a68dd50902c3027a10","url":"https://api.github.com/repos/go-yaml/yaml/commits/1bf6a7ce154075e61134f8a68dd50902c3027a10","html_url":"https://github.com/go-yaml/yaml/commit/1bf6a7ce154075e61134f8a68dd50902c3027a10"}]},{"sha":"1bf6a7ce154075e61134f8a68dd50902c3027a10","commit":{"author":{"name":"Gustavo Niemeyer","email":"gustavo@niemeyer.net","date":"2015-01-16T19:58:22Z"},"committer":{"name":"Gustavo Niemeyer","email":"gustavo@niemeyer.net","date":"2015-01-16T19:58:22Z"},"message":"Do not call MarshalText on yaml.Marshaler.\n\nFixes #58.","tree":{"sha":"2db84d202a9e33d674db596b38eebf9f952f2034","url":"https://api.github.com/repos/go-yaml/yaml/git/trees/2db84d202a9e33d674db596b38eebf9f952f2034"},"url":"https://api.github.com/repos/go-yaml/yaml/git/commits/1bf6a7ce154075e61134f8a68dd50902c3027a10","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/go-yaml/yaml/commits/1bf6a7ce154075e61134f8a68dd50902c3027a10","html_url":"https://github.com/go-yaml/yaml/commit/1bf6a7ce154075e61134f8a68dd50902c3027a10","comments_url":"https://api.github.com/repos/go-yaml/yaml/commits/1bf6a7ce154075e61134f8a68dd50902c3027a10/comments","author":{"login":"niemeyer","id":378683,"avatar_url":"https://avatars3.githubusercontent.com/u/378683?v=4","gravatar_id":"","url":"https://api.github.com/users/niemeyer","html_url":"https://github.com/niemeyer","followers_url":"https://api.github.com/users/niemeyer/followers","following_url":"https://api.github.com/users/niemeyer/following{/other_user}","gists_url":"https://api.github.com/users/niemeyer/gists{/gist_id}","starred_url":"https://api.github.com/users/niemeyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/niemeyer/subscriptions","organizations_url":"https://api.github.com/users/niemeyer/orgs","repos_url":"https://api.github.com/users/niemeyer/repos","events_url":"https://api.github.com/users/niemeyer/events{/privacy}","received_events_url":"https://api.github.com/users/niemeyer/received_events","type":"User","site_admin":false},"committer":{"login":"niemeyer","id":378683,"avatar_url":"https://avatars3.githubusercontent.com/u/378683?v=4","gravatar_id":"","url":"https://api.github.com/users/niemeyer","html_url":"https://github.com/niemeyer","followers_url":"https://api.github.com/users/niemeyer/followers","following_url":"https://api.github.com/users/niemeyer/following{/other_user}","gists_url":"https://api.github.com/users/niemeyer/gists{/gist_id}","starred_url":"https://api.github.com/users/niemeyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/niemeyer/subscriptions","organizations_url":"https://api.github.com/users/niemeyer/orgs","repos_url":"https://api.github.com/users/niemeyer/repos","events_url":"https://api.github.com/users/niemeyer/events{/privacy}","received_events_url":"https://api.github.com/users/niemeyer/received_events","type":"User","site_admin":false},"parents":[{"sha":"71e7ede9d48a2e096f6d5d0516c763513a471bd1","url":"https://api.github.com/repos/go-yaml/yaml/commits/71e7ede9d48a2e096f6d5d0516c763513a471bd1","html_url":"https://github.com/go-yaml/yaml/commit/71e7ede9d48a2e096f6d5d0516c763513a471bd1"}]}]
+
+GET https://api.github.com/repos/golang/dep/contents/go.mod?ref=v0.4.0
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:48:33 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 824F:38CC:623C1B0:AB617CC:5A8BB6B1
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4783
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.036061
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/golang/dep/contents/Gopkg.lock?ref=v0.4.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:48:33 GMT
+Etag: W/"1779ee42072dcdb018f85ec43f6050b014e1652c"
+Last-Modified: Wed, 24 Jan 2018 04:59:21 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 824F:38CC:623C1C2:AB617E2:5A8BB6B1
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4782
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.050723
+X-Xss-Protection: 1; mode=block
+
+{"name":"Gopkg.lock","path":"Gopkg.lock","sha":"1779ee42072dcdb018f85ec43f6050b014e1652c","size":2411,"url":"https://api.github.com/repos/golang/dep/contents/Gopkg.lock?ref=v0.4.0","html_url":"https://github.com/golang/dep/blob/v0.4.0/Gopkg.lock","git_url":"https://api.github.com/repos/golang/dep/git/blobs/1779ee42072dcdb018f85ec43f6050b014e1652c","download_url":"https://raw.githubusercontent.com/golang/dep/v0.4.0/Gopkg.lock","type":"file","content":"IyBUaGlzIGZpbGUgaXMgYXV0b2dlbmVyYXRlZCwgZG8gbm90IGVkaXQ7IGNo\nYW5nZXMgbWF5IGJlIHVuZG9uZSBieSB0aGUgbmV4dCAnZGVwIGVuc3VyZScu\nCgoKW1twcm9qZWN0c11dCiAgYnJhbmNoID0gInBhcnNlLWNvbnN0cmFpbnRz\nLXdpdGgtZGFzaC1pbi1wcmUiCiAgbmFtZSA9ICJnaXRodWIuY29tL01hc3Rl\ncm1pbmRzL3NlbXZlciIKICBwYWNrYWdlcyA9IFsiLiJdCiAgcmV2aXNpb24g\nPSAiYTkzZTUxYjVhNTdlZjQxNmRhYzhiYjAyZDExNDA3YjZmNTVkODkyOSIK\nICBzb3VyY2UgPSAiaHR0cHM6Ly9naXRodWIuY29tL2Nhcm9seW52cy9zZW12\nZXIuZ2l0IgoKW1twcm9qZWN0c11dCiAgbmFtZSA9ICJnaXRodWIuY29tL01h\nc3Rlcm1pbmRzL3ZjcyIKICBwYWNrYWdlcyA9IFsiLiJdCiAgcmV2aXNpb24g\nPSAiMzA4NDY3N2MyYzE4ODg0MDc3N2JmZjMwMDU0ZjJiNTUzNzI5ZDMyOSIK\nICB2ZXJzaW9uID0gInYxLjExLjEiCgpbW3Byb2plY3RzXV0KICBicmFuY2gg\nPSAibWFzdGVyIgogIG5hbWUgPSAiZ2l0aHViLmNvbS9hcm1vbi9nby1yYWRp\neCIKICBwYWNrYWdlcyA9IFsiLiJdCiAgcmV2aXNpb24gPSAiNDIzOWI3NzA3\nOWM3YjVkMTI0M2I3YjQ3MzYzMDRjZThkZGI2ZjBmMiIKCltbcHJvamVjdHNd\nXQogIG5hbWUgPSAiZ2l0aHViLmNvbS9ib2x0ZGIvYm9sdCIKICBwYWNrYWdl\ncyA9IFsiLiJdCiAgcmV2aXNpb24gPSAiMmYxY2U3YTgzN2RjYjhkYTNlYzU5\nNWIxZGFjOWQwNjMyZjBmOTllOCIKICB2ZXJzaW9uID0gInYxLjMuMSIKCltb\ncHJvamVjdHNdXQogIGJyYW5jaCA9ICJ2MiIKICBuYW1lID0gImdpdGh1Yi5j\nb20vZ28teWFtbC95YW1sIgogIHBhY2thZ2VzID0gWyIuIl0KICByZXZpc2lv\nbiA9ICJjZDhiNTJmODI2OWUwZmViMjg2ZGZlZWYyOWY4ZmU0ZDViMzk3ZTBi\nIgoKW1twcm9qZWN0c11dCiAgYnJhbmNoID0gIm1hc3RlciIKICBuYW1lID0g\nImdpdGh1Yi5jb20vZ29sYW5nL3Byb3RvYnVmIgogIHBhY2thZ2VzID0gWyJw\ncm90byJdCiAgcmV2aXNpb24gPSAiNWFmZDA2ZjlkODFhODZkNmUzYmI3ZGM3\nMDJkNmJkMTQ4ZWEzZmYyMyIKCltbcHJvamVjdHNdXQogIG5hbWUgPSAiZ2l0\naHViLmNvbS9qbWFuazg4L251dHMiCiAgcGFja2FnZXMgPSBbIi4iXQogIHJl\ndmlzaW9uID0gIjhiMjgxNDVkZmZjODcxMDRlNjZkMDc0ZjYyZWE4MDgwZWRm\nYWQ3YzgiCiAgdmVyc2lvbiA9ICJ2MC4zLjAiCgpbW3Byb2plY3RzXV0KICBi\ncmFuY2ggPSAibWFzdGVyIgogIG5hbWUgPSAiZ2l0aHViLmNvbS9uaWdodGx5\nb25lL2xvY2tmaWxlIgogIHBhY2thZ2VzID0gWyIuIl0KICByZXZpc2lvbiA9\nICJlODNkYzVlN2JiYTA5NWU4ZDMyZmIyMTI0NzE0YmY0MWYyYTMwY2I1IgoK\nW1twcm9qZWN0c11dCiAgYnJhbmNoID0gIm1hc3RlciIKICBuYW1lID0gImdp\ndGh1Yi5jb20vcGVsbGV0aWVyL2dvLXRvbWwiCiAgcGFja2FnZXMgPSBbIi4i\nXQogIHJldmlzaW9uID0gImI4YjVlNzY5NjU3NDQ2NGIyZjliZjMwM2E3YjM3\nNzgxYmI1Mjg4OWYiCgpbW3Byb2plY3RzXV0KICBuYW1lID0gImdpdGh1Yi5j\nb20vcGtnL2Vycm9ycyIKICBwYWNrYWdlcyA9IFsiLiJdCiAgcmV2aXNpb24g\nPSAiNjQ1ZWYwMDQ1OWVkODRhMTE5MTk3YmZiOGQ4MjA1MDQyYzZkZjYzZCIK\nICB2ZXJzaW9uID0gInYwLjguMCIKCltbcHJvamVjdHNdXQogIGJyYW5jaCA9\nICJtYXN0ZXIiCiAgbmFtZSA9ICJnaXRodWIuY29tL3NkYm95ZXIvY29uc3Rl\neHQiCiAgcGFja2FnZXMgPSBbIi4iXQogIHJldmlzaW9uID0gIjgzNmExNDQ1\nNzM1MzNlYTRkYTRlNjkyOWMyMzVmZDM0OGFlZDFjODAiCgpbW3Byb2plY3Rz\nXV0KICBicmFuY2ggPSAibWFzdGVyIgogIG5hbWUgPSAiZ29sYW5nLm9yZy94\nL25ldCIKICBwYWNrYWdlcyA9IFsiY29udGV4dCJdCiAgcmV2aXNpb24gPSAi\nNjZhYWNlZjNkZDhhNjc2Njg2YzdhZTM3MTY5Nzk1ODFlOGIwM2M0NyIKCltb\ncHJvamVjdHNdXQogIGJyYW5jaCA9ICJtYXN0ZXIiCiAgbmFtZSA9ICJnb2xh\nbmcub3JnL3gvc3luYyIKICBwYWNrYWdlcyA9IFsiZXJyZ3JvdXAiXQogIHJl\ndmlzaW9uID0gImY1MmQxODExYTYyOTI3NTU5ZGU4NzcwOGM4OTEzYzE2NTBj\nZTRmMjYiCgpbW3Byb2plY3RzXV0KICBicmFuY2ggPSAibWFzdGVyIgogIG5h\nbWUgPSAiZ29sYW5nLm9yZy94L3N5cyIKICBwYWNrYWdlcyA9IFsidW5peCJd\nCiAgcmV2aXNpb24gPSAiYmIyNGE0N2E4OWVhYzZjMTIyN2ZiY2IyYWUzN2E4\nYjllZDMyMzM2NiIKCltzb2x2ZS1tZXRhXQogIGFuYWx5emVyLW5hbWUgPSAi\nZGVwIgogIGFuYWx5emVyLXZlcnNpb24gPSAxCiAgaW5wdXRzLWRpZ2VzdCA9\nICJlNzBkMjZiMzU5YWVkN2FmNjZmMzM5M2ZjOWQ0OTg1YmJjZjQ5OWMwYjVl\nZDNiNTY2MWE1OTEyYjRjNzFhMzJlIgogIHNvbHZlci1uYW1lID0gImdwcy1j\nZGNsIgogIHNvbHZlci12ZXJzaW9uID0gMQo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/golang/dep/contents/Gopkg.lock?ref=v0.4.0","git":"https://api.github.com/repos/golang/dep/git/blobs/1779ee42072dcdb018f85ec43f6050b014e1652c","html":"https://github.com/golang/dep/blob/v0.4.0/Gopkg.lock"}}
+
+GET https://raw.githubusercontent.com/golang/dep/v0.4.0/Gopkg.lock
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:48:33 GMT
+Etag: "1779ee42072dcdb018f85ec43f6050b014e1652c"
+Expires: Tue, 20 Feb 2018 05:53:33 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: f5829204bfc4423358b138ea18e9926319b07cbb
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: A004:23329:C94499:D13561:5A8BB6AF
+X-Served-By: cache-bos8225-BOS
+X-Timer: S1519105714.822405,VS0,VE54
+X-Xss-Protection: 1; mode=block
+
+# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
+
+
+[[projects]]
+  branch = "parse-constraints-with-dash-in-pre"
+  name = "github.com/Masterminds/semver"
+  packages = ["."]
+  revision = "a93e51b5a57ef416dac8bb02d11407b6f55d8929"
+  source = "https://github.com/carolynvs/semver.git"
+
+[[projects]]
+  name = "github.com/Masterminds/vcs"
+  packages = ["."]
+  revision = "3084677c2c188840777bff30054f2b553729d329"
+  version = "v1.11.1"
+
+[[projects]]
+  branch = "master"
+  name = "github.com/armon/go-radix"
+  packages = ["."]
+  revision = "4239b77079c7b5d1243b7b4736304ce8ddb6f0f2"
+
+[[projects]]
+  name = "github.com/boltdb/bolt"
+  packages = ["."]
+  revision = "2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8"
+  version = "v1.3.1"
+
+[[projects]]
+  branch = "v2"
+  name = "github.com/go-yaml/yaml"
+  packages = ["."]
+  revision = "cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b"
+
+[[projects]]
+  branch = "master"
+  name = "github.com/golang/protobuf"
+  packages = ["proto"]
+  revision = "5afd06f9d81a86d6e3bb7dc702d6bd148ea3ff23"
+
+[[projects]]
+  name = "github.com/jmank88/nuts"
+  packages = ["."]
+  revision = "8b28145dffc87104e66d074f62ea8080edfad7c8"
+  version = "v0.3.0"
+
+[[projects]]
+  branch = "master"
+  name = "github.com/nightlyone/lockfile"
+  packages = ["."]
+  revision = "e83dc5e7bba095e8d32fb2124714bf41f2a30cb5"
+
+[[projects]]
+  branch = "master"
+  name = "github.com/pelletier/go-toml"
+  packages = ["."]
+  revision = "b8b5e7696574464b2f9bf303a7b37781bb52889f"
+
+[[projects]]
+  name = "github.com/pkg/errors"
+  packages = ["."]
+  revision = "645ef00459ed84a119197bfb8d8205042c6df63d"
+  version = "v0.8.0"
+
+[[projects]]
+  branch = "master"
+  name = "github.com/sdboyer/constext"
+  packages = ["."]
+  revision = "836a144573533ea4da4e6929c235fd348aed1c80"
+
+[[projects]]
+  branch = "master"
+  name = "golang.org/x/net"
+  packages = ["context"]
+  revision = "66aacef3dd8a676686c7ae3716979581e8b03c47"
+
+[[projects]]
+  branch = "master"
+  name = "golang.org/x/sync"
+  packages = ["errgroup"]
+  revision = "f52d1811a62927559de87708c8913c1650ce4f26"
+
+[[projects]]
+  branch = "master"
+  name = "golang.org/x/sys"
+  packages = ["unix"]
+  revision = "bb24a47a89eac6c1227fbcb2ae37a8b9ed323366"
+
+[solve-meta]
+  analyzer-name = "dep"
+  analyzer-version = 1
+  inputs-digest = "e70d26b359aed7af66f3393fc9d4985bbcf499c0b5ed3b5661a5912b4c71a32e"
+  solver-name = "gps-cdcl"
+  solver-version = 1
+
+
+GET https://api.github.com/repos/docker/distribution/contents/go.mod?ref=85de3967aa93
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:48:33 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 824F:38CC:623C201:AB61805:5A8BB6B1
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4781
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.047282
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/docker/distribution/contents/Gopkg.lock?ref=85de3967aa93
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:48:34 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 824F:38CC:623C20E:AB6185D:5A8BB6B1
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4780
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.043996
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/docker/distribution/contents/GLOCKFILE?ref=85de3967aa93
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:48:34 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 824F:38CC:623C22A:AB61883:5A8BB6B2
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4779
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.044084
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/docker/distribution/contents/Godeps%2FGodeps.json?ref=85de3967aa93
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:48:34 GMT
+Etag: W/"dc643683d3fb512d0b67a4b23da5c81518665dd2"
+Last-Modified: Fri, 10 Apr 2015 20:54:53 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: 824F:38CC:623C237:AB6189F:5A8BB6B2
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4778
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.052313
+X-Xss-Protection: 1; mode=block
+
+{"name":"Godeps.json","path":"Godeps/Godeps.json","sha":"dc643683d3fb512d0b67a4b23da5c81518665dd2","size":3219,"url":"https://api.github.com/repos/docker/distribution/contents/Godeps/Godeps.json?ref=85de3967aa93","html_url":"https://github.com/docker/distribution/blob/85de3967aa93/Godeps/Godeps.json","git_url":"https://api.github.com/repos/docker/distribution/git/blobs/dc643683d3fb512d0b67a4b23da5c81518665dd2","download_url":"https://raw.githubusercontent.com/docker/distribution/85de3967aa93/Godeps/Godeps.json","type":"file","content":"ewoJIkltcG9ydFBhdGgiOiAiZ2l0aHViLmNvbS9kb2NrZXIvZGlzdHJpYnV0\naW9uIiwKCSJHb1ZlcnNpb24iOiAiZ28xLjQuMiIsCgkiUGFja2FnZXMiOiBb\nCgkJIi4vLi4uIgoJXSwKCSJEZXBzIjogWwoJCXsKCQkJIkltcG9ydFBhdGgi\nOiAiY29kZS5nb29nbGUuY29tL3AvZ28tdXVpZC91dWlkIiwKCQkJIkNvbW1l\nbnQiOiAibnVsbC0xNSIsCgkJCSJSZXYiOiAiMzViYzQyMDM3MzUwZjAwNzhl\nM2M5NzRjNmVhNjkwZjE5MjY2MDNhYiIKCQl9LAoJCXsKCQkJIkltcG9ydFBh\ndGgiOiAiZ2l0aHViLmNvbS9BZFJvbGwvZ29hbXovYXdzIiwKCQkJIlJldiI6\nICJkMzY2NGI3NmQ5MDUwOGNkZGE1YTZjOTIwNDJmMjZlYWI1ZGIzMTAzIgoJ\nCX0sCgkJewoJCQkiSW1wb3J0UGF0aCI6ICJnaXRodWIuY29tL0FkUm9sbC9n\nb2Ftei9jbG91ZGZyb250IiwKCQkJIlJldiI6ICJkMzY2NGI3NmQ5MDUwOGNk\nZGE1YTZjOTIwNDJmMjZlYWI1ZGIzMTAzIgoJCX0sCgkJewoJCQkiSW1wb3J0\nUGF0aCI6ICJnaXRodWIuY29tL0FkUm9sbC9nb2Ftei9zMyIsCgkJCSJSZXYi\nOiAiZDM2NjRiNzZkOTA1MDhjZGRhNWE2YzkyMDQyZjI2ZWFiNWRiMzEwMyIK\nCQl9LAoJCXsKCQkJIkltcG9ydFBhdGgiOiAiZ2l0aHViLmNvbS9NU09wZW5U\nZWNoL2F6dXJlLXNkay1mb3ItZ28vc3RvcmFnZSIsCgkJCSJDb21tZW50Ijog\nInYxLjItNDMtZ2Q5MDc1M2IiLAoJCQkiUmV2IjogImQ5MDc1M2JjYWQyZWQ3\nODJmY2VhZDczOTJkMWU4MzFkZjI5YWEyYmIiCgkJfSwKCQl7CgkJCSJJbXBv\ncnRQYXRoIjogImdpdGh1Yi5jb20vU2lydXBzZW4vbG9ncnVzIiwKCQkJIkNv\nbW1lbnQiOiAidjAuNy4zIiwKCQkJIlJldiI6ICI1NWViMTFkMjFkMmEzMWEz\nY2M5MzgzODI0MWQwNDgwMGY1MmU4MjNkIgoJCX0sCgkJewoJCQkiSW1wb3J0\nUGF0aCI6ICJnaXRodWIuY29tL2J1Z3NuYWcvYnVnc25hZy1nbyIsCgkJCSJD\nb21tZW50IjogInYxLjAuMi01LWdiMWQxNTMwIiwKCQkJIlJldiI6ICJiMWQx\nNTMwMjFmY2Q5MGNhM2YwODBkYjM2YmVjOTZkYzY5MGZiMjc0IgoJCX0sCgkJ\newoJCQkiSW1wb3J0UGF0aCI6ICJnaXRodWIuY29tL2J1Z3NuYWcvb3NleHQi\nLAoJCQkiUmV2IjogIjBkZDNmOTE4YjIxYmVjOTVhY2U5ZGM4NmM3ZTcwMjY2\nY2ZjNWM3MDIiCgkJfSwKCQl7CgkJCSJJbXBvcnRQYXRoIjogImdpdGh1Yi5j\nb20vYnVnc25hZy9wYW5pY3dyYXAiLAoJCQkiUmV2IjogImU1Zjk4NTQ4NjVi\nOTc3OGE0NTE2OWZjMjQ5ZTk5ZTMzOGQ0ZDZmMjciCgkJfSwKCQl7CgkJCSJJ\nbXBvcnRQYXRoIjogImdpdGh1Yi5jb20vY29kZWdhbmdzdGEvY2xpIiwKCQkJ\nIkNvbW1lbnQiOiAiMS4yLjAtNjYtZzYwODZkNzkiLAoJCQkiUmV2IjogIjYw\nODZkNzkyN2VjMzUzMTU5NjRkOWZlYTQ2ZGY2YzA0ZTZkNjk3YzEiCgkJfSwK\nCQl7CgkJCSJJbXBvcnRQYXRoIjogImdpdGh1Yi5jb20vZG9ja2VyL2RvY2tl\nci9wa2cvdGFyc3VtIiwKCQkJIkNvbW1lbnQiOiAidjEuNC4xLTg2My1nMTY1\nZWE1YyIsCgkJCSJSZXYiOiAiMTY1ZWE1YzE1OGNmZjNmYzQwZDQ3NmZmZTIz\nM2E1Y2NjMDNlN2Q2MSIKCQl9LAoJCXsKCQkJIkltcG9ydFBhdGgiOiAiZ2l0\naHViLmNvbS9kb2NrZXIvZG9ja2VyL3ZlbmRvci9zcmMvY29kZS5nb29nbGUu\nY29tL3AvZ28vc3JjL3BrZy9hcmNoaXZlL3RhciIsCgkJCSJDb21tZW50Ijog\nInYxLjQuMS04NjMtZzE2NWVhNWMiLAoJCQkiUmV2IjogIjE2NWVhNWMxNThj\nZmYzZmM0MGQ0NzZmZmUyMzNhNWNjYzAzZTdkNjEiCgkJfSwKCQl7CgkJCSJJ\nbXBvcnRQYXRoIjogImdpdGh1Yi5jb20vZG9ja2VyL2xpYnRydXN0IiwKCQkJ\nIlJldiI6ICJmYTU2NzA0NmQ5YjE0ZjZhYTc4ODg4MmE5NTBkNjk2NTFkMjMw\nYjIxIgoJCX0sCgkJewoJCQkiSW1wb3J0UGF0aCI6ICJnaXRodWIuY29tL2dh\ncnlidXJkL3JlZGlnby9pbnRlcm5hbCIsCgkJCSJSZXYiOiAiNTM1MTM4ZDdi\nY2Q3MTdkNjUzMWM3MDFlZjU5MzNkOThiMTg2NjI1NyIKCQl9LAoJCXsKCQkJ\nIkltcG9ydFBhdGgiOiAiZ2l0aHViLmNvbS9nYXJ5YnVyZC9yZWRpZ28vcmVk\naXMiLAoJCQkiUmV2IjogIjUzNTEzOGQ3YmNkNzE3ZDY1MzFjNzAxZWY1OTMz\nZDk4YjE4NjYyNTciCgkJfSwKCQl7CgkJCSJJbXBvcnRQYXRoIjogImdpdGh1\nYi5jb20vZ29yaWxsYS9jb250ZXh0IiwKCQkJIlJldiI6ICIxNGY1NTBmNTFh\nZjUyMTgwYzJlZWZlZDE1ZTVmZDE4ZDYzYzBhNjRhIgoJCX0sCgkJewoJCQki\nSW1wb3J0UGF0aCI6ICJnaXRodWIuY29tL2dvcmlsbGEvaGFuZGxlcnMiLAoJ\nCQkiUmV2IjogIjBlODRiN2Q4MTBjMTZhZWQ0MzIyMTdlMzMwMjA2YmUxNTZi\nYWZhZTAiCgkJfSwKCQl7CgkJCSJJbXBvcnRQYXRoIjogImdpdGh1Yi5jb20v\nZ29yaWxsYS9tdXgiLAoJCQkiUmV2IjogImU0NDRlNjljYmQyZTJlM2UwNzQ5\nYTJmM2M3MTdjZWM0OTE1NTJiYmYiCgkJfSwKCQl7CgkJCSJJbXBvcnRQYXRo\nIjogImdpdGh1Yi5jb20vamxoYXduL2dvLWNyeXB0byIsCgkJCSJSZXYiOiAi\nY2Q3MzhkZGUyMGYwYjM3ODI1MTYxODFiMDg2NmM5YmI5ZGI0NzQwMSIKCQl9\nLAoJCXsKCQkJIkltcG9ydFBhdGgiOiAiZ2l0aHViLmNvbS95dmFzaXlhcm92\nL2dvLW1ldHJpY3MiLAoJCQkiUmV2IjogIjU3YmNjZDFjY2Q0M2Y5NGJiMTdm\nZGQ4YmYzMDA3MDU5YjgwMmY4NWUiCgkJfSwKCQl7CgkJCSJJbXBvcnRQYXRo\nIjogImdpdGh1Yi5jb20veXZhc2l5YXJvdi9nb3JlbGljIiwKCQkJIkNvbW1l\nbnQiOiAidjAuMC42LTgtZ2E5YmJhNWIiLAoJCQkiUmV2IjogImE5YmJhNWI5\nYWI1MDhhMDg2ZjlhMTJiOGM1MWZhYjY4NDc4ZTIxMjgiCgkJfSwKCQl7CgkJ\nCSJJbXBvcnRQYXRoIjogImdpdGh1Yi5jb20veXZhc2l5YXJvdi9uZXdyZWxp\nY19wbGF0Zm9ybV9nbyIsCgkJCSJSZXYiOiAiYjIxZmRiZDQzNzBmMzcxN2Yz\nYmJkMmJmNDFjMjIzYmMyNzMwNjhlNiIKCQl9LAoJCXsKCQkJIkltcG9ydFBh\ndGgiOiAiZ29sYW5nLm9yZy94L25ldC9jb250ZXh0IiwKCQkJIlJldiI6ICIx\nZGZlNzkxNWRlYWYzZjgwYjk2MmMxNjNiOTE4ODY4ZDhhNmQ4OTc0IgoJCX0s\nCgkJewoJCQkiSW1wb3J0UGF0aCI6ICJnb3BrZy5pbi9jaGVjay52MSIsCgkJ\nCSJSZXYiOiAiNjQxMzE1NDNlNzg5NmQ1YmNjNmJkNWE3NjI4N2ViNzVlYTk2\nYzY3MyIKCQl9LAoJCXsKCQkJIkltcG9ydFBhdGgiOiAiZ29wa2cuaW4veWFt\nbC52MiIsCgkJCSJSZXYiOiAiYmVmNTNlZmQwYzc2ZTQ5ZTZkZTU1ZWFkMDUx\nZjg4NmJlYTdlOTQyMCIKCQl9CgldCn0K\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/docker/distribution/contents/Godeps/Godeps.json?ref=85de3967aa93","git":"https://api.github.com/repos/docker/distribution/git/blobs/dc643683d3fb512d0b67a4b23da5c81518665dd2","html":"https://github.com/docker/distribution/blob/85de3967aa93/Godeps/Godeps.json"}}
+
+GET https://raw.githubusercontent.com/docker/distribution/85de3967aa93/Godeps/Godeps.json
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:48:34 GMT
+Etag: "dc643683d3fb512d0b67a4b23da5c81518665dd2"
+Expires: Tue, 20 Feb 2018 05:53:34 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: a8ac4ddb4e3650e7a3a836785faddc3a21ed3258
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 8346:27E2:D574B3:E04811:5A8BB6B1
+X-Served-By: cache-bos8225-BOS
+X-Timer: S1519105714.176274,VS0,VE54
+X-Xss-Protection: 1; mode=block
+
+{
+	"ImportPath": "github.com/docker/distribution",
+	"GoVersion": "go1.4.2",
+	"Packages": [
+		"./..."
+	],
+	"Deps": [
+		{
+			"ImportPath": "code.google.com/p/go-uuid/uuid",
+			"Comment": "null-15",
+			"Rev": "35bc42037350f0078e3c974c6ea690f1926603ab"
+		},
+		{
+			"ImportPath": "github.com/AdRoll/goamz/aws",
+			"Rev": "d3664b76d90508cdda5a6c92042f26eab5db3103"
+		},
+		{
+			"ImportPath": "github.com/AdRoll/goamz/cloudfront",
+			"Rev": "d3664b76d90508cdda5a6c92042f26eab5db3103"
+		},
+		{
+			"ImportPath": "github.com/AdRoll/goamz/s3",
+			"Rev": "d3664b76d90508cdda5a6c92042f26eab5db3103"
+		},
+		{
+			"ImportPath": "github.com/MSOpenTech/azure-sdk-for-go/storage",
+			"Comment": "v1.2-43-gd90753b",
+			"Rev": "d90753bcad2ed782fcead7392d1e831df29aa2bb"
+		},
+		{
+			"ImportPath": "github.com/Sirupsen/logrus",
+			"Comment": "v0.7.3",
+			"Rev": "55eb11d21d2a31a3cc93838241d04800f52e823d"
+		},
+		{
+			"ImportPath": "github.com/bugsnag/bugsnag-go",
+			"Comment": "v1.0.2-5-gb1d1530",
+			"Rev": "b1d153021fcd90ca3f080db36bec96dc690fb274"
+		},
+		{
+			"ImportPath": "github.com/bugsnag/osext",
+			"Rev": "0dd3f918b21bec95ace9dc86c7e70266cfc5c702"
+		},
+		{
+			"ImportPath": "github.com/bugsnag/panicwrap",
+			"Rev": "e5f9854865b9778a45169fc249e99e338d4d6f27"
+		},
+		{
+			"ImportPath": "github.com/codegangsta/cli",
+			"Comment": "1.2.0-66-g6086d79",
+			"Rev": "6086d7927ec35315964d9fea46df6c04e6d697c1"
+		},
+		{
+			"ImportPath": "github.com/docker/docker/pkg/tarsum",
+			"Comment": "v1.4.1-863-g165ea5c",
+			"Rev": "165ea5c158cff3fc40d476ffe233a5ccc03e7d61"
+		},
+		{
+			"ImportPath": "github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar",
+			"Comment": "v1.4.1-863-g165ea5c",
+			"Rev": "165ea5c158cff3fc40d476ffe233a5ccc03e7d61"
+		},
+		{
+			"ImportPath": "github.com/docker/libtrust",
+			"Rev": "fa567046d9b14f6aa788882a950d69651d230b21"
+		},
+		{
+			"ImportPath": "github.com/garyburd/redigo/internal",
+			"Rev": "535138d7bcd717d6531c701ef5933d98b1866257"
+		},
+		{
+			"ImportPath": "github.com/garyburd/redigo/redis",
+			"Rev": "535138d7bcd717d6531c701ef5933d98b1866257"
+		},
+		{
+			"ImportPath": "github.com/gorilla/context",
+			"Rev": "14f550f51af52180c2eefed15e5fd18d63c0a64a"
+		},
+		{
+			"ImportPath": "github.com/gorilla/handlers",
+			"Rev": "0e84b7d810c16aed432217e330206be156bafae0"
+		},
+		{
+			"ImportPath": "github.com/gorilla/mux",
+			"Rev": "e444e69cbd2e2e3e0749a2f3c717cec491552bbf"
+		},
+		{
+			"ImportPath": "github.com/jlhawn/go-crypto",
+			"Rev": "cd738dde20f0b3782516181b0866c9bb9db47401"
+		},
+		{
+			"ImportPath": "github.com/yvasiyarov/go-metrics",
+			"Rev": "57bccd1ccd43f94bb17fdd8bf3007059b802f85e"
+		},
+		{
+			"ImportPath": "github.com/yvasiyarov/gorelic",
+			"Comment": "v0.0.6-8-ga9bba5b",
+			"Rev": "a9bba5b9ab508a086f9a12b8c51fab68478e2128"
+		},
+		{
+			"ImportPath": "github.com/yvasiyarov/newrelic_platform_go",
+			"Rev": "b21fdbd4370f3717f3bbd2bf41c223bc273068e6"
+		},
+		{
+			"ImportPath": "golang.org/x/net/context",
+			"Rev": "1dfe7915deaf3f80b962c163b918868d8a6d8974"
+		},
+		{
+			"ImportPath": "gopkg.in/check.v1",
+			"Rev": "64131543e7896d5bcc6bd5a76287eb75ea96c673"
+		},
+		{
+			"ImportPath": "gopkg.in/yaml.v2",
+			"Rev": "bef53efd0c76e49e6de55ead051f886bea7e9420"
+		}
+	]
+}
+
+
+GET https://api.github.com/repos/rsc/vgotest1
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:52 GMT
+Etag: W/"68b7f2d9f34b9a7951908784e865e5cc"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40733C1:B7122AE:5A8BB700
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4777
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.049724
+X-Xss-Protection: 1; mode=block
+
+{"id":122129067,"name":"vgotest1","full_name":"rsc/vgotest1","owner":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"private":true,"html_url":"https://github.com/rsc/vgotest1","description":"vgotest1","fork":false,"url":"https://api.github.com/repos/rsc/vgotest1","forks_url":"https://api.github.com/repos/rsc/vgotest1/forks","keys_url":"https://api.github.com/repos/rsc/vgotest1/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rsc/vgotest1/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rsc/vgotest1/teams","hooks_url":"https://api.github.com/repos/rsc/vgotest1/hooks","issue_events_url":"https://api.github.com/repos/rsc/vgotest1/issues/events{/number}","events_url":"https://api.github.com/repos/rsc/vgotest1/events","assignees_url":"https://api.github.com/repos/rsc/vgotest1/assignees{/user}","branches_url":"https://api.github.com/repos/rsc/vgotest1/branches{/branch}","tags_url":"https://api.github.com/repos/rsc/vgotest1/tags","blobs_url":"https://api.github.com/repos/rsc/vgotest1/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rsc/vgotest1/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rsc/vgotest1/git/refs{/sha}","trees_url":"https://api.github.com/repos/rsc/vgotest1/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rsc/vgotest1/statuses/{sha}","languages_url":"https://api.github.com/repos/rsc/vgotest1/languages","stargazers_url":"https://api.github.com/repos/rsc/vgotest1/stargazers","contributors_url":"https://api.github.com/repos/rsc/vgotest1/contributors","subscribers_url":"https://api.github.com/repos/rsc/vgotest1/subscribers","subscription_url":"https://api.github.com/repos/rsc/vgotest1/subscription","commits_url":"https://api.github.com/repos/rsc/vgotest1/commits{/sha}","git_commits_url":"https://api.github.com/repos/rsc/vgotest1/git/commits{/sha}","comments_url":"https://api.github.com/repos/rsc/vgotest1/comments{/number}","issue_comment_url":"https://api.github.com/repos/rsc/vgotest1/issues/comments{/number}","contents_url":"https://api.github.com/repos/rsc/vgotest1/contents/{+path}","compare_url":"https://api.github.com/repos/rsc/vgotest1/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rsc/vgotest1/merges","archive_url":"https://api.github.com/repos/rsc/vgotest1/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rsc/vgotest1/downloads","issues_url":"https://api.github.com/repos/rsc/vgotest1/issues{/number}","pulls_url":"https://api.github.com/repos/rsc/vgotest1/pulls{/number}","milestones_url":"https://api.github.com/repos/rsc/vgotest1/milestones{/number}","notifications_url":"https://api.github.com/repos/rsc/vgotest1/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rsc/vgotest1/labels{/name}","releases_url":"https://api.github.com/repos/rsc/vgotest1/releases{/id}","deployments_url":"https://api.github.com/repos/rsc/vgotest1/deployments","created_at":"2018-02-19T22:33:42Z","updated_at":"2018-02-19T22:34:01Z","pushed_at":"2018-02-20T02:18:10Z","git_url":"git://github.com/rsc/vgotest1.git","ssh_url":"git@github.com:rsc/vgotest1.git","clone_url":"https://github.com/rsc/vgotest1.git","svn_url":"https://github.com/rsc/vgotest1","homepage":null,"size":5,"stargazers_count":0,"watchers_count":0,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"bsd-3-clause","name":"BSD 3-Clause \"New\" or \"Revised\" License","spdx_id":"BSD-3-Clause","url":"https://api.github.com/licenses/bsd-3-clause"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true},"allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"network_count":0,"subscribers_count":1}
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v0.0.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:53 GMT
+Etag: W/"07e0bde0579b4eef57ad208c6a31abf9"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40733CA:B7122CB:5A8BB700
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4776
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.031042
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v0.0.0","url":"https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v0.0.0","object":{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","type":"commit","url":"https://api.github.com/repos/rsc/vgotest1/git/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128"}}
+
+GET https://api.github.com/repos/rsc/vgotest1/commits?sha=80d85c5d4d17598a0e9055e7c175a32b415d6128&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:53 GMT
+Etag: W/"a0bf5e2bcdfac238d5896ed1f44331e4"
+Last-Modified: Mon, 19 Feb 2018 23:10:06 GMT
+Link: <https://api.github.com/repositories/122129067/commits?sha=80d85c5d4d17598a0e9055e7c175a32b415d6128&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/122129067/commits?sha=80d85c5d4d17598a0e9055e7c175a32b415d6128&per_page=2&page=1>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40733D3:B7122E1:5A8BB701
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4775
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.035927
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:10:06Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:10:06Z"},"message":"add pkg/p.go","tree":{"sha":"bfe3c5c9c81e66347ab3fa320ad281acd3d1cfee","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/bfe3c5c9c81e66347ab3fa320ad281acd3d1cfee"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128","html_url":"https://github.com/rsc/vgotest1/commit/80d85c5d4d17598a0e9055e7c175a32b415d6128","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"1975be90145f99f2fed5cedad94dc100fff5c532","url":"https://api.github.com/repos/rsc/vgotest1/commits/1975be90145f99f2fed5cedad94dc100fff5c532","html_url":"https://github.com/rsc/vgotest1/commit/1975be90145f99f2fed5cedad94dc100fff5c532"}]},{"sha":"1975be90145f99f2fed5cedad94dc100fff5c532","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T22:21:09Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T22:21:09Z"},"message":"initial commit","tree":{"sha":"7753ad6be8f4075cfdf3469af08dd453df326a85","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/7753ad6be8f4075cfdf3469af08dd453df326a85"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/1975be90145f99f2fed5cedad94dc100fff5c532","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/1975be90145f99f2fed5cedad94dc100fff5c532","html_url":"https://github.com/rsc/vgotest1/commit/1975be90145f99f2fed5cedad94dc100fff5c532","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/1975be90145f99f2fed5cedad94dc100fff5c532/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[]}]
+
+GET https://api.github.com/repos/rsc/vgotest1/zipball/v0.0.0
+200 OK
+Access-Control-Allow-Origin: https://render.githubusercontent.com
+Content-Disposition: attachment; filename=rsc-vgotest1-mytag-0-g80d85c5d4d17598a0e9055e7c175a32b415d6128.zip
+Content-Length: 1994
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: application/zip
+Date: Tue, 20 Feb 2018 05:49:53 GMT
+Etag: "80d85c5d4d17598a0e9055e7c175a32b415d6128"
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: B912:47C6:C9203:14F8C6:5A8BB701
+X-Xss-Protection: 1; mode=block
+
+00000000  50 4b 03 04 0a 00 00 00  00 00 43 79 53 4c 00 00  |PK........CySL..|
+00000010  00 00 00 00 00 00 00 00  00 00 36 00 09 00 72 73  |..........6...rs|
+00000020  63 2d 76 67 6f 74 65 73  74 31 2d 38 30 64 38 35  |c-vgotest1-80d85|
+00000030  63 35 64 34 64 31 37 35  39 38 61 30 65 39 30 35  |c5d4d17598a0e905|
+00000040  35 65 37 63 31 37 35 61  33 32 62 34 31 35 64 36  |5e7c175a32b415d6|
+00000050  31 32 38 2f 55 54 05 00  01 4e 59 8b 5a 50 4b 03  |128/UT...NY.ZPK.|
+00000060  04 0a 00 00 00 08 00 43  79 53 4c 80 52 56 fa 0c  |.......CySL.RV..|
+00000070  03 00 00 c7 05 00 00 3d  00 09 00 72 73 63 2d 76  |.......=...rsc-v|
+00000080  67 6f 74 65 73 74 31 2d  38 30 64 38 35 63 35 64  |gotest1-80d85c5d|
+00000090  34 64 31 37 35 39 38 61  30 65 39 30 35 35 65 37  |4d17598a0e9055e7|
+000000a0  63 31 37 35 61 33 32 62  34 31 35 64 36 31 32 38  |c175a32b415d6128|
+000000b0  2f 4c 49 43 45 4e 53 45  55 54 05 00 01 4e 59 8b  |/LICENSEUT...NY.|
+000000c0  5a a5 52 41 6e db 30 10  bc f3 15 8b 9c 92 42 70  |Z.RAn.0.......Bp|
+000000d0  83 de da 9e 68 89 b6 09  c8 a2 4a 52 71 7d 54 24  |....h.....JRq}T$|
+000000e0  3a 26 60 89 81 48 27 c8  ef bb 64 9c d8 69 0b f4  |:&`..H'...d..i..|
+000000f0  d0 8b 4d 71 b9 b3 33 b3  93 bb c7 97 c9 3e ec 03  |..Mq..3......>..|
+00000100  5c 77 37 f0 e5 f6 f6 2b  e8 bd 81 a5 03 7a 0c 7b  |\w7....+.....z.{|
+00000110  37 f9 19 d0 c3 01 d2 13  0f 93 f1 66 7a 32 fd 8c  |7..........fz2..|
+00000120  10 69 7a eb c3 64 ef 8f  c1 ba 11 da b1 87 a3 37  |.iz..d.........7|
+00000130  60 47 f0 ee 38 75 26 dd  dc db b1 9d 5e 60 e7 a6  |`G..8u&.....^`..|
+00000140  c1 67 f0 6c c3 1e dc 94  fe dd 31 90 c1 f5 76 67  |.g.l......1...vg|
+00000150  bb 36 02 64 d0 4e 06 1e  cd 34 d8 10 4c 0f 8f 93  |.6.d.N...4..L...|
+00000160  7b b2 3d 1e c2 be 0d f8  63 10 e4 70 70 cf 76 7c  |{.=.....c..pp.v||
+00000170  80 ce 8d bd 8d 4d 3e 36  91 c1 84 6f 84 00 c0 27  |.....M>6...o...'|
+00000180  f8 48 ca 83 db bd b1 e9  5c 6f 60 38 fa 80 1a 42  |.H......\o`8...B|
+00000190  8b 2c 23 64 7b ef 9e 62  e9 64 01 19 5d b0 9d c9  |.,#d{..b.d..]...|
+000001a0  b0 66 3d 1c 10 29 02 5c  4e 1b fb df a8 e0 b8 ee  |.f=..).\N.......|
+000001b0  d0 da c1 4c b3 bf 33 c0  49 17 26 bc 31 40 75 fd  |...L..3.I.&.1@u.|
+000001c0  11 59 bd 93 20 ef 24 e0  7f 48 90 93 b0 de 75 c7  |.Y.. .$..H....u.|
+000001d0  c1 8c a1 7d db cd 67 b4  dd 61 65 82 a1 0d 66 b2  |...}..g..ae...f.|
+000001e0  ed c1 9f 2d 4e 7b c1 22  b9 a4 7e d2 53 19 9b da  |...-N{."..~.S...|
+000001f0  22 ea d8 0e 26 92 59 3a  f7 70 30 c0 c7 6e 86 6c  |"...&.Y:.p0..n.l|
+00000200  cf b5 e4 b7 0d 1e c5 8c  af 38 98 1f 1c f8 02 f7  |.........8......|
+00000210  26 86 03 79 3b 30 63 8f  b7 26 e6 00 09 0c 2e 18  |&..y;0c..&......|
+00000220  78 75 03 e3 d5 23 33 4c  17 ec b0 40 92 7e ef 76  |xu...#3L...@.~.v|
+00000230  e1 39 26 e3 94 19 f0 8f  a6 8b a1 c1 26 1b a3 34  |.9&.........&..4|
+00000240  c5 b8 8c af c1 f1 3e f1  26 7a c5 15 28 b1 d0 1b  |......>.&z..(...|
+00000250  2a 19 e0 b9 96 e2 8e 17  ac 80 f9 16 f4 8a 41 2e  |*.............A.|
+00000260  ea ad e4 cb 95 86 95 28  0b 26 15 d0 aa c0 db 4a  |.......(.&.....J|
+00000270  4b 3e 6f b4 90 8a 5c 51  85 9d 57 a9 40 ab 2d b0  |K>o...\Q..W.@.-.|
+00000280  9f b5 64 4a 81 90 c0 d7  75 c9 11 0c d1 25 ad 34  |..dJ....u....%.4|
+00000290  67 2a 03 5e e5 65 53 f0  6a 99 01 02 40 25 34 29  |g*.^.eS.j...@%4)|
+000002a0  f9 9a 6b 7c a6 45 96 86  fe d9 06 62 01 6b 26 f3  |..k|.E.....b.k&.|
+000002b0  15 7e d2 39 2f b9 de a6  79 0b ae ab 38 6b 21 24  |.~.9/...y...8k!$|
+000002c0  a1 50 53 a9 79 de 94 54  42 dd c8 5a 28 06 51 56  |.PS.y..TB..Z(.QV|
+000002d0  c1 55 5e 52 be 66 c5 0c  a7 e3 44 60 77 ac d2 a0  |.U^R.f....D`w...|
+000002e0  56 b4 2c 3f aa 24 62 53  31 19 a9 5f 4a 84 39 83  |V.,?.$bS1.._J.9.|
+000002f0  92 d3 79 c9 e2 a0 24 b2  e0 92 e5 3a aa 39 9f 72  |..y...$....:.9.r|
+00000300  34 0e e9 95 19 51 35 cb  39 1e d0 0b 86 5a a8 dc  |4....Q5.9....Z..|
+00000310  66 27 4c c5 7e 34 f8 08  8b 50 d0 35 5d a2 b4 eb  |f'L.~4...P.5]...|
+00000320  7f 38 82 2b c9 1b c9 d6  91 32 da a0 9a b9 d2 5c  |.8.+.....2.....\|
+00000330  37 9a c1 52 88 22 f9 ac  98 bc e3 39 53 df a1 14  |7..R.".....9S...|
+00000340  2a 99 d5 28 96 91 82 6a  9a 06 23 04 3a 85 65 3c  |*..(...j..#.:.e<|
+00000350  cf 1b c5 93 67 bc d2 4c  ca a6 d6 5c 54 37 b8 de  |....g..L...\T7..|
+00000360  0d ba 82 1c 29 b6 16 c9  5c 51 45 a9 98 11 26 e4  |....)...\QE...&.|
+00000370  36 82 46 0f 92 f7 19 6c  56 0c ef 65 f4 33 39 45  |6.F....lV..e.39E|
+00000380  a3 05 0a 1d cb f5 e5 33  9c 87 06 6a 72 d6 08 15  |.......3...jr...|
+00000390  5b 96 7c c9 aa 9c c5 aa  88 28 1b ae d8 0d ae 8a  |[.|......(......|
+000003a0  ab f8 80 a7 b1 b8 7c 9c  d9 24 c9 71 45 c8 8a a4  |......|..$.qE...|
+000003b0  e3 45 60 b3 b4 48 e0 0b  a0 c5 1d 8f b4 4f 8f 71  |.E`..H.......O.q|
+000003c0  f5 8a 9f 62 92 2c cb 57  27 bb 67 e4 17 50 4b 03  |...b.,.W'.g..PK.|
+000003d0  04 0a 00 00 00 08 00 43  79 53 4c cf 92 a4 53 40  |.......CySL...S@|
+000003e0  00 00 00 43 00 00 00 3f  00 09 00 72 73 63 2d 76  |...C...?...rsc-v|
+000003f0  67 6f 74 65 73 74 31 2d  38 30 64 38 35 63 35 64  |gotest1-80d85c5d|
+00000400  34 64 31 37 35 39 38 61  30 65 39 30 35 35 65 37  |4d17598a0e9055e7|
+00000410  63 31 37 35 61 33 32 62  34 31 35 64 36 31 32 38  |c175a32b415d6128|
+00000420  2f 52 45 41 44 4d 45 2e  6d 64 55 54 05 00 01 4e  |/README.mdUT...N|
+00000430  59 8b 5a 15 c8 b1 09 c0  30 0c 04 c0 de 53 7c 97  |Y.Z.....0....S|.|
+00000440  ce d3 78 81 40 de 96 20  58 46 92 33 7f 12 b8 ea  |..x.@.. XF.3....|
+00000450  9a 68 e0 73 22 19 09 e7  32 74 73 3c f4 50 9b bc  |.h.s"...2ts<.P..|
+00000460  30 ac 96 26 74 1e 81 69  29 3a 07 76 b0 ef 1b ff  |0..&t..i):.v....|
+00000470  d6 f2 02 50 4b 03 04 0a  00 00 00 00 00 43 79 53  |...PK........CyS|
+00000480  4c 00 00 00 00 00 00 00  00 00 00 00 00 3a 00 09  |L............:..|
+00000490  00 72 73 63 2d 76 67 6f  74 65 73 74 31 2d 38 30  |.rsc-vgotest1-80|
+000004a0  64 38 35 63 35 64 34 64  31 37 35 39 38 61 30 65  |d85c5d4d17598a0e|
+000004b0  39 30 35 35 65 37 63 31  37 35 61 33 32 62 34 31  |9055e7c175a32b41|
+000004c0  35 64 36 31 32 38 2f 70  6b 67 2f 55 54 05 00 01  |5d6128/pkg/UT...|
+000004d0  4e 59 8b 5a 50 4b 03 04  0a 00 00 00 00 00 43 79  |NY.ZPK........Cy|
+000004e0  53 4c 77 23 4a 34 16 00  00 00 16 00 00 00 3e 00  |SLw#J4........>.|
+000004f0  09 00 72 73 63 2d 76 67  6f 74 65 73 74 31 2d 38  |..rsc-vgotest1-8|
+00000500  30 64 38 35 63 35 64 34  64 31 37 35 39 38 61 30  |0d85c5d4d17598a0|
+00000510  65 39 30 35 35 65 37 63  31 37 35 61 33 32 62 34  |e9055e7c175a32b4|
+00000520  31 35 64 36 31 32 38 2f  70 6b 67 2f 70 2e 67 6f  |15d6128/pkg/p.go|
+00000530  55 54 05 00 01 4e 59 8b  5a 70 61 63 6b 61 67 65  |UT...NY.Zpackage|
+00000540  20 70 20 2f 2f 20 70 6b  67 2f 70 2e 67 6f 0a 50  | p // pkg/p.go.P|
+00000550  4b 01 02 00 00 0a 00 00  00 00 00 43 79 53 4c 00  |K..........CySL.|
+00000560  00 00 00 00 00 00 00 00  00 00 00 36 00 09 00 00  |...........6....|
+00000570  00 00 00 00 00 10 00 00  00 00 00 00 00 72 73 63  |.............rsc|
+00000580  2d 76 67 6f 74 65 73 74  31 2d 38 30 64 38 35 63  |-vgotest1-80d85c|
+00000590  35 64 34 64 31 37 35 39  38 61 30 65 39 30 35 35  |5d4d17598a0e9055|
+000005a0  65 37 63 31 37 35 61 33  32 62 34 31 35 64 36 31  |e7c175a32b415d61|
+000005b0  32 38 2f 55 54 05 00 01  4e 59 8b 5a 50 4b 01 02  |28/UT...NY.ZPK..|
+000005c0  00 00 0a 00 00 00 08 00  43 79 53 4c 80 52 56 fa  |........CySL.RV.|
+000005d0  0c 03 00 00 c7 05 00 00  3d 00 09 00 00 00 00 00  |........=.......|
+000005e0  01 00 00 00 00 00 5d 00  00 00 72 73 63 2d 76 67  |......]...rsc-vg|
+000005f0  6f 74 65 73 74 31 2d 38  30 64 38 35 63 35 64 34  |otest1-80d85c5d4|
+00000600  64 31 37 35 39 38 61 30  65 39 30 35 35 65 37 63  |d17598a0e9055e7c|
+00000610  31 37 35 61 33 32 62 34  31 35 64 36 31 32 38 2f  |175a32b415d6128/|
+00000620  4c 49 43 45 4e 53 45 55  54 05 00 01 4e 59 8b 5a  |LICENSEUT...NY.Z|
+00000630  50 4b 01 02 00 00 0a 00  00 00 08 00 43 79 53 4c  |PK..........CySL|
+00000640  cf 92 a4 53 40 00 00 00  43 00 00 00 3f 00 09 00  |...S@...C...?...|
+00000650  00 00 00 00 01 00 00 00  00 00 cd 03 00 00 72 73  |..............rs|
+00000660  63 2d 76 67 6f 74 65 73  74 31 2d 38 30 64 38 35  |c-vgotest1-80d85|
+00000670  63 35 64 34 64 31 37 35  39 38 61 30 65 39 30 35  |c5d4d17598a0e905|
+00000680  35 65 37 63 31 37 35 61  33 32 62 34 31 35 64 36  |5e7c175a32b415d6|
+00000690  31 32 38 2f 52 45 41 44  4d 45 2e 6d 64 55 54 05  |128/README.mdUT.|
+000006a0  00 01 4e 59 8b 5a 50 4b  01 02 00 00 0a 00 00 00  |..NY.ZPK........|
+000006b0  00 00 43 79 53 4c 00 00  00 00 00 00 00 00 00 00  |..CySL..........|
+000006c0  00 00 3a 00 09 00 00 00  00 00 00 00 10 00 00 00  |..:.............|
+000006d0  73 04 00 00 72 73 63 2d  76 67 6f 74 65 73 74 31  |s...rsc-vgotest1|
+000006e0  2d 38 30 64 38 35 63 35  64 34 64 31 37 35 39 38  |-80d85c5d4d17598|
+000006f0  61 30 65 39 30 35 35 65  37 63 31 37 35 61 33 32  |a0e9055e7c175a32|
+00000700  62 34 31 35 64 36 31 32  38 2f 70 6b 67 2f 55 54  |b415d6128/pkg/UT|
+00000710  05 00 01 4e 59 8b 5a 50  4b 01 02 00 00 0a 00 00  |...NY.ZPK.......|
+00000720  00 00 00 43 79 53 4c 77  23 4a 34 16 00 00 00 16  |...CySLw#J4.....|
+00000730  00 00 00 3e 00 09 00 00  00 00 00 01 00 00 00 00  |...>............|
+00000740  00 d4 04 00 00 72 73 63  2d 76 67 6f 74 65 73 74  |.....rsc-vgotest|
+00000750  31 2d 38 30 64 38 35 63  35 64 34 64 31 37 35 39  |1-80d85c5d4d1759|
+00000760  38 61 30 65 39 30 35 35  65 37 63 31 37 35 61 33  |8a0e9055e7c175a3|
+00000770  32 62 34 31 35 64 36 31  32 38 2f 70 6b 67 2f 70  |2b415d6128/pkg/p|
+00000780  2e 67 6f 55 54 05 00 01  4e 59 8b 5a 50 4b 05 06  |.goUT...NY.ZPK..|
+00000790  00 00 00 00 05 00 05 00  3d 02 00 00 4f 05 00 00  |........=...O...|
+000007a0  28 00 38 30 64 38 35 63  35 64 34 64 31 37 35 39  |(.80d85c5d4d1759|
+000007b0  38 61 30 65 39 30 35 35  65 37 63 31 37 35 61 33  |8a0e9055e7c175a3|
+000007c0  32 62 34 31 35 64 36 31  32 38                    |2b415d6128|
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v1.0.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:53 GMT
+Etag: W/"a76b6713557aa3be71b465475047b126"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073406:B712316:5A8BB701
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4774
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.030006
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v1.0.0","url":"https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v1.0.0","object":{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","type":"commit","url":"https://api.github.com/repos/rsc/vgotest1/git/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128"}}
+
+GET https://api.github.com/repos/rsc/vgotest1/zipball/v1.0.0
+200 OK
+Access-Control-Allow-Origin: https://render.githubusercontent.com
+Content-Disposition: attachment; filename=rsc-vgotest1-mytag-0-g80d85c5d4d17598a0e9055e7c175a32b415d6128.zip
+Content-Length: 1994
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: application/zip
+Date: Tue, 20 Feb 2018 05:49:53 GMT
+Etag: "80d85c5d4d17598a0e9055e7c175a32b415d6128"
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: B912:47C6:C9204:14F8C7:5A8BB701
+X-Xss-Protection: 1; mode=block
+
+00000000  50 4b 03 04 0a 00 00 00  00 00 43 79 53 4c 00 00  |PK........CySL..|
+00000010  00 00 00 00 00 00 00 00  00 00 36 00 09 00 72 73  |..........6...rs|
+00000020  63 2d 76 67 6f 74 65 73  74 31 2d 38 30 64 38 35  |c-vgotest1-80d85|
+00000030  63 35 64 34 64 31 37 35  39 38 61 30 65 39 30 35  |c5d4d17598a0e905|
+00000040  35 65 37 63 31 37 35 61  33 32 62 34 31 35 64 36  |5e7c175a32b415d6|
+00000050  31 32 38 2f 55 54 05 00  01 4e 59 8b 5a 50 4b 03  |128/UT...NY.ZPK.|
+00000060  04 0a 00 00 00 08 00 43  79 53 4c 80 52 56 fa 0c  |.......CySL.RV..|
+00000070  03 00 00 c7 05 00 00 3d  00 09 00 72 73 63 2d 76  |.......=...rsc-v|
+00000080  67 6f 74 65 73 74 31 2d  38 30 64 38 35 63 35 64  |gotest1-80d85c5d|
+00000090  34 64 31 37 35 39 38 61  30 65 39 30 35 35 65 37  |4d17598a0e9055e7|
+000000a0  63 31 37 35 61 33 32 62  34 31 35 64 36 31 32 38  |c175a32b415d6128|
+000000b0  2f 4c 49 43 45 4e 53 45  55 54 05 00 01 4e 59 8b  |/LICENSEUT...NY.|
+000000c0  5a a5 52 41 6e db 30 10  bc f3 15 8b 9c 92 42 70  |Z.RAn.0.......Bp|
+000000d0  83 de da 9e 68 89 b6 09  c8 a2 4a 52 71 7d 54 24  |....h.....JRq}T$|
+000000e0  3a 26 60 89 81 48 27 c8  ef bb 64 9c d8 69 0b f4  |:&`..H'...d..i..|
+000000f0  d0 8b 4d 71 b9 b3 33 b3  93 bb c7 97 c9 3e ec 03  |..Mq..3......>..|
+00000100  5c 77 37 f0 e5 f6 f6 2b  e8 bd 81 a5 03 7a 0c 7b  |\w7....+.....z.{|
+00000110  37 f9 19 d0 c3 01 d2 13  0f 93 f1 66 7a 32 fd 8c  |7..........fz2..|
+00000120  10 69 7a eb c3 64 ef 8f  c1 ba 11 da b1 87 a3 37  |.iz..d.........7|
+00000130  60 47 f0 ee 38 75 26 dd  dc db b1 9d 5e 60 e7 a6  |`G..8u&.....^`..|
+00000140  c1 67 f0 6c c3 1e dc 94  fe dd 31 90 c1 f5 76 67  |.g.l......1...vg|
+00000150  bb 36 02 64 d0 4e 06 1e  cd 34 d8 10 4c 0f 8f 93  |.6.d.N...4..L...|
+00000160  7b b2 3d 1e c2 be 0d f8  63 10 e4 70 70 cf 76 7c  |{.=.....c..pp.v||
+00000170  80 ce 8d bd 8d 4d 3e 36  91 c1 84 6f 84 00 c0 27  |.....M>6...o...'|
+00000180  f8 48 ca 83 db bd b1 e9  5c 6f 60 38 fa 80 1a 42  |.H......\o`8...B|
+00000190  8b 2c 23 64 7b ef 9e 62  e9 64 01 19 5d b0 9d c9  |.,#d{..b.d..]...|
+000001a0  b0 66 3d 1c 10 29 02 5c  4e 1b fb df a8 e0 b8 ee  |.f=..).\N.......|
+000001b0  d0 da c1 4c b3 bf 33 c0  49 17 26 bc 31 40 75 fd  |...L..3.I.&.1@u.|
+000001c0  11 59 bd 93 20 ef 24 e0  7f 48 90 93 b0 de 75 c7  |.Y.. .$..H....u.|
+000001d0  c1 8c a1 7d db cd 67 b4  dd 61 65 82 a1 0d 66 b2  |...}..g..ae...f.|
+000001e0  ed c1 9f 2d 4e 7b c1 22  b9 a4 7e d2 53 19 9b da  |...-N{."..~.S...|
+000001f0  22 ea d8 0e 26 92 59 3a  f7 70 30 c0 c7 6e 86 6c  |"...&.Y:.p0..n.l|
+00000200  cf b5 e4 b7 0d 1e c5 8c  af 38 98 1f 1c f8 02 f7  |.........8......|
+00000210  26 86 03 79 3b 30 63 8f  b7 26 e6 00 09 0c 2e 18  |&..y;0c..&......|
+00000220  78 75 03 e3 d5 23 33 4c  17 ec b0 40 92 7e ef 76  |xu...#3L...@.~.v|
+00000230  e1 39 26 e3 94 19 f0 8f  a6 8b a1 c1 26 1b a3 34  |.9&.........&..4|
+00000240  c5 b8 8c af c1 f1 3e f1  26 7a c5 15 28 b1 d0 1b  |......>.&z..(...|
+00000250  2a 19 e0 b9 96 e2 8e 17  ac 80 f9 16 f4 8a 41 2e  |*.............A.|
+00000260  ea ad e4 cb 95 86 95 28  0b 26 15 d0 aa c0 db 4a  |.......(.&.....J|
+00000270  4b 3e 6f b4 90 8a 5c 51  85 9d 57 a9 40 ab 2d b0  |K>o...\Q..W.@.-.|
+00000280  9f b5 64 4a 81 90 c0 d7  75 c9 11 0c d1 25 ad 34  |..dJ....u....%.4|
+00000290  67 2a 03 5e e5 65 53 f0  6a 99 01 02 40 25 34 29  |g*.^.eS.j...@%4)|
+000002a0  f9 9a 6b 7c a6 45 96 86  fe d9 06 62 01 6b 26 f3  |..k|.E.....b.k&.|
+000002b0  15 7e d2 39 2f b9 de a6  79 0b ae ab 38 6b 21 24  |.~.9/...y...8k!$|
+000002c0  a1 50 53 a9 79 de 94 54  42 dd c8 5a 28 06 51 56  |.PS.y..TB..Z(.QV|
+000002d0  c1 55 5e 52 be 66 c5 0c  a7 e3 44 60 77 ac d2 a0  |.U^R.f....D`w...|
+000002e0  56 b4 2c 3f aa 24 62 53  31 19 a9 5f 4a 84 39 83  |V.,?.$bS1.._J.9.|
+000002f0  92 d3 79 c9 e2 a0 24 b2  e0 92 e5 3a aa 39 9f 72  |..y...$....:.9.r|
+00000300  34 0e e9 95 19 51 35 cb  39 1e d0 0b 86 5a a8 dc  |4....Q5.9....Z..|
+00000310  66 27 4c c5 7e 34 f8 08  8b 50 d0 35 5d a2 b4 eb  |f'L.~4...P.5]...|
+00000320  7f 38 82 2b c9 1b c9 d6  91 32 da a0 9a b9 d2 5c  |.8.+.....2.....\|
+00000330  37 9a c1 52 88 22 f9 ac  98 bc e3 39 53 df a1 14  |7..R.".....9S...|
+00000340  2a 99 d5 28 96 91 82 6a  9a 06 23 04 3a 85 65 3c  |*..(...j..#.:.e<|
+00000350  cf 1b c5 93 67 bc d2 4c  ca a6 d6 5c 54 37 b8 de  |....g..L...\T7..|
+00000360  0d ba 82 1c 29 b6 16 c9  5c 51 45 a9 98 11 26 e4  |....)...\QE...&.|
+00000370  36 82 46 0f 92 f7 19 6c  56 0c ef 65 f4 33 39 45  |6.F....lV..e.39E|
+00000380  a3 05 0a 1d cb f5 e5 33  9c 87 06 6a 72 d6 08 15  |.......3...jr...|
+00000390  5b 96 7c c9 aa 9c c5 aa  88 28 1b ae d8 0d ae 8a  |[.|......(......|
+000003a0  ab f8 80 a7 b1 b8 7c 9c  d9 24 c9 71 45 c8 8a a4  |......|..$.qE...|
+000003b0  e3 45 60 b3 b4 48 e0 0b  a0 c5 1d 8f b4 4f 8f 71  |.E`..H.......O.q|
+000003c0  f5 8a 9f 62 92 2c cb 57  27 bb 67 e4 17 50 4b 03  |...b.,.W'.g..PK.|
+000003d0  04 0a 00 00 00 08 00 43  79 53 4c cf 92 a4 53 40  |.......CySL...S@|
+000003e0  00 00 00 43 00 00 00 3f  00 09 00 72 73 63 2d 76  |...C...?...rsc-v|
+000003f0  67 6f 74 65 73 74 31 2d  38 30 64 38 35 63 35 64  |gotest1-80d85c5d|
+00000400  34 64 31 37 35 39 38 61  30 65 39 30 35 35 65 37  |4d17598a0e9055e7|
+00000410  63 31 37 35 61 33 32 62  34 31 35 64 36 31 32 38  |c175a32b415d6128|
+00000420  2f 52 45 41 44 4d 45 2e  6d 64 55 54 05 00 01 4e  |/README.mdUT...N|
+00000430  59 8b 5a 15 c8 b1 09 c0  30 0c 04 c0 de 53 7c 97  |Y.Z.....0....S|.|
+00000440  ce d3 78 81 40 de 96 20  58 46 92 33 7f 12 b8 ea  |..x.@.. XF.3....|
+00000450  9a 68 e0 73 22 19 09 e7  32 74 73 3c f4 50 9b bc  |.h.s"...2ts<.P..|
+00000460  30 ac 96 26 74 1e 81 69  29 3a 07 76 b0 ef 1b ff  |0..&t..i):.v....|
+00000470  d6 f2 02 50 4b 03 04 0a  00 00 00 00 00 43 79 53  |...PK........CyS|
+00000480  4c 00 00 00 00 00 00 00  00 00 00 00 00 3a 00 09  |L............:..|
+00000490  00 72 73 63 2d 76 67 6f  74 65 73 74 31 2d 38 30  |.rsc-vgotest1-80|
+000004a0  64 38 35 63 35 64 34 64  31 37 35 39 38 61 30 65  |d85c5d4d17598a0e|
+000004b0  39 30 35 35 65 37 63 31  37 35 61 33 32 62 34 31  |9055e7c175a32b41|
+000004c0  35 64 36 31 32 38 2f 70  6b 67 2f 55 54 05 00 01  |5d6128/pkg/UT...|
+000004d0  4e 59 8b 5a 50 4b 03 04  0a 00 00 00 00 00 43 79  |NY.ZPK........Cy|
+000004e0  53 4c 77 23 4a 34 16 00  00 00 16 00 00 00 3e 00  |SLw#J4........>.|
+000004f0  09 00 72 73 63 2d 76 67  6f 74 65 73 74 31 2d 38  |..rsc-vgotest1-8|
+00000500  30 64 38 35 63 35 64 34  64 31 37 35 39 38 61 30  |0d85c5d4d17598a0|
+00000510  65 39 30 35 35 65 37 63  31 37 35 61 33 32 62 34  |e9055e7c175a32b4|
+00000520  31 35 64 36 31 32 38 2f  70 6b 67 2f 70 2e 67 6f  |15d6128/pkg/p.go|
+00000530  55 54 05 00 01 4e 59 8b  5a 70 61 63 6b 61 67 65  |UT...NY.Zpackage|
+00000540  20 70 20 2f 2f 20 70 6b  67 2f 70 2e 67 6f 0a 50  | p // pkg/p.go.P|
+00000550  4b 01 02 00 00 0a 00 00  00 00 00 43 79 53 4c 00  |K..........CySL.|
+00000560  00 00 00 00 00 00 00 00  00 00 00 36 00 09 00 00  |...........6....|
+00000570  00 00 00 00 00 10 00 00  00 00 00 00 00 72 73 63  |.............rsc|
+00000580  2d 76 67 6f 74 65 73 74  31 2d 38 30 64 38 35 63  |-vgotest1-80d85c|
+00000590  35 64 34 64 31 37 35 39  38 61 30 65 39 30 35 35  |5d4d17598a0e9055|
+000005a0  65 37 63 31 37 35 61 33  32 62 34 31 35 64 36 31  |e7c175a32b415d61|
+000005b0  32 38 2f 55 54 05 00 01  4e 59 8b 5a 50 4b 01 02  |28/UT...NY.ZPK..|
+000005c0  00 00 0a 00 00 00 08 00  43 79 53 4c 80 52 56 fa  |........CySL.RV.|
+000005d0  0c 03 00 00 c7 05 00 00  3d 00 09 00 00 00 00 00  |........=.......|
+000005e0  01 00 00 00 00 00 5d 00  00 00 72 73 63 2d 76 67  |......]...rsc-vg|
+000005f0  6f 74 65 73 74 31 2d 38  30 64 38 35 63 35 64 34  |otest1-80d85c5d4|
+00000600  64 31 37 35 39 38 61 30  65 39 30 35 35 65 37 63  |d17598a0e9055e7c|
+00000610  31 37 35 61 33 32 62 34  31 35 64 36 31 32 38 2f  |175a32b415d6128/|
+00000620  4c 49 43 45 4e 53 45 55  54 05 00 01 4e 59 8b 5a  |LICENSEUT...NY.Z|
+00000630  50 4b 01 02 00 00 0a 00  00 00 08 00 43 79 53 4c  |PK..........CySL|
+00000640  cf 92 a4 53 40 00 00 00  43 00 00 00 3f 00 09 00  |...S@...C...?...|
+00000650  00 00 00 00 01 00 00 00  00 00 cd 03 00 00 72 73  |..............rs|
+00000660  63 2d 76 67 6f 74 65 73  74 31 2d 38 30 64 38 35  |c-vgotest1-80d85|
+00000670  63 35 64 34 64 31 37 35  39 38 61 30 65 39 30 35  |c5d4d17598a0e905|
+00000680  35 65 37 63 31 37 35 61  33 32 62 34 31 35 64 36  |5e7c175a32b415d6|
+00000690  31 32 38 2f 52 45 41 44  4d 45 2e 6d 64 55 54 05  |128/README.mdUT.|
+000006a0  00 01 4e 59 8b 5a 50 4b  01 02 00 00 0a 00 00 00  |..NY.ZPK........|
+000006b0  00 00 43 79 53 4c 00 00  00 00 00 00 00 00 00 00  |..CySL..........|
+000006c0  00 00 3a 00 09 00 00 00  00 00 00 00 10 00 00 00  |..:.............|
+000006d0  73 04 00 00 72 73 63 2d  76 67 6f 74 65 73 74 31  |s...rsc-vgotest1|
+000006e0  2d 38 30 64 38 35 63 35  64 34 64 31 37 35 39 38  |-80d85c5d4d17598|
+000006f0  61 30 65 39 30 35 35 65  37 63 31 37 35 61 33 32  |a0e9055e7c175a32|
+00000700  62 34 31 35 64 36 31 32  38 2f 70 6b 67 2f 55 54  |b415d6128/pkg/UT|
+00000710  05 00 01 4e 59 8b 5a 50  4b 01 02 00 00 0a 00 00  |...NY.ZPK.......|
+00000720  00 00 00 43 79 53 4c 77  23 4a 34 16 00 00 00 16  |...CySLw#J4.....|
+00000730  00 00 00 3e 00 09 00 00  00 00 00 01 00 00 00 00  |...>............|
+00000740  00 d4 04 00 00 72 73 63  2d 76 67 6f 74 65 73 74  |.....rsc-vgotest|
+00000750  31 2d 38 30 64 38 35 63  35 64 34 64 31 37 35 39  |1-80d85c5d4d1759|
+00000760  38 61 30 65 39 30 35 35  65 37 63 31 37 35 61 33  |8a0e9055e7c175a3|
+00000770  32 62 34 31 35 64 36 31  32 38 2f 70 6b 67 2f 70  |2b415d6128/pkg/p|
+00000780  2e 67 6f 55 54 05 00 01  4e 59 8b 5a 50 4b 05 06  |.goUT...NY.ZPK..|
+00000790  00 00 00 00 05 00 05 00  3d 02 00 00 4f 05 00 00  |........=...O...|
+000007a0  28 00 38 30 64 38 35 63  35 64 34 64 31 37 35 39  |(.80d85c5d4d1759|
+000007b0  38 61 30 65 39 30 35 35  65 37 63 31 37 35 61 33  |8a0e9055e7c175a3|
+000007c0  32 62 34 31 35 64 36 31  32 38                    |2b415d6128|
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v2.0.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:53 GMT
+Etag: W/"1dd6113eb74e3327e5a0db29f705ee8e"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073414:B7123B0:5A8BB701
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4773
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.031582
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.0","url":"https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v2.0.0","object":{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","type":"commit","url":"https://api.github.com/repos/rsc/vgotest1/git/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128"}}
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.0
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:53 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:407341D:B7123DA:5A8BB701
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4772
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.033779
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/v2%2Fgo.mod?ref=v2.0.0
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:53 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073420:B7123F2:5A8BB701
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4771
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.037723
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/rsc/vgotest1/commits?sha=80d85&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:53 GMT
+Etag: W/"a0bf5e2bcdfac238d5896ed1f44331e4"
+Last-Modified: Mon, 19 Feb 2018 23:10:06 GMT
+Link: <https://api.github.com/repositories/122129067/commits?sha=80d85&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/122129067/commits?sha=80d85&per_page=2&page=1>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073425:B712407:5A8BB701
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4770
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.055193
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:10:06Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:10:06Z"},"message":"add pkg/p.go","tree":{"sha":"bfe3c5c9c81e66347ab3fa320ad281acd3d1cfee","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/bfe3c5c9c81e66347ab3fa320ad281acd3d1cfee"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128","html_url":"https://github.com/rsc/vgotest1/commit/80d85c5d4d17598a0e9055e7c175a32b415d6128","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"1975be90145f99f2fed5cedad94dc100fff5c532","url":"https://api.github.com/repos/rsc/vgotest1/commits/1975be90145f99f2fed5cedad94dc100fff5c532","html_url":"https://github.com/rsc/vgotest1/commit/1975be90145f99f2fed5cedad94dc100fff5c532"}]},{"sha":"1975be90145f99f2fed5cedad94dc100fff5c532","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T22:21:09Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T22:21:09Z"},"message":"initial commit","tree":{"sha":"7753ad6be8f4075cfdf3469af08dd453df326a85","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/7753ad6be8f4075cfdf3469af08dd453df326a85"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/1975be90145f99f2fed5cedad94dc100fff5c532","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/1975be90145f99f2fed5cedad94dc100fff5c532","html_url":"https://github.com/rsc/vgotest1/commit/1975be90145f99f2fed5cedad94dc100fff5c532","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/1975be90145f99f2fed5cedad94dc100fff5c532/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[]}]
+
+GET https://api.github.com/repos/rsc/vgotest1/zipball/80d85c5d4d17
+200 OK
+Access-Control-Allow-Origin: https://render.githubusercontent.com
+Content-Disposition: attachment; filename=rsc-vgotest1-mytag-0-g80d85c5d4d17598a0e9055e7c175a32b415d6128.zip
+Content-Length: 1994
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: application/zip
+Date: Tue, 20 Feb 2018 05:49:53 GMT
+Etag: "80d85c5d4d17598a0e9055e7c175a32b415d6128"
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: B912:47C6:C9205:14F8C8:5A8BB701
+X-Xss-Protection: 1; mode=block
+
+00000000  50 4b 03 04 0a 00 00 00  00 00 43 79 53 4c 00 00  |PK........CySL..|
+00000010  00 00 00 00 00 00 00 00  00 00 36 00 09 00 72 73  |..........6...rs|
+00000020  63 2d 76 67 6f 74 65 73  74 31 2d 38 30 64 38 35  |c-vgotest1-80d85|
+00000030  63 35 64 34 64 31 37 35  39 38 61 30 65 39 30 35  |c5d4d17598a0e905|
+00000040  35 65 37 63 31 37 35 61  33 32 62 34 31 35 64 36  |5e7c175a32b415d6|
+00000050  31 32 38 2f 55 54 05 00  01 4e 59 8b 5a 50 4b 03  |128/UT...NY.ZPK.|
+00000060  04 0a 00 00 00 08 00 43  79 53 4c 80 52 56 fa 0c  |.......CySL.RV..|
+00000070  03 00 00 c7 05 00 00 3d  00 09 00 72 73 63 2d 76  |.......=...rsc-v|
+00000080  67 6f 74 65 73 74 31 2d  38 30 64 38 35 63 35 64  |gotest1-80d85c5d|
+00000090  34 64 31 37 35 39 38 61  30 65 39 30 35 35 65 37  |4d17598a0e9055e7|
+000000a0  63 31 37 35 61 33 32 62  34 31 35 64 36 31 32 38  |c175a32b415d6128|
+000000b0  2f 4c 49 43 45 4e 53 45  55 54 05 00 01 4e 59 8b  |/LICENSEUT...NY.|
+000000c0  5a a5 52 41 6e db 30 10  bc f3 15 8b 9c 92 42 70  |Z.RAn.0.......Bp|
+000000d0  83 de da 9e 68 89 b6 09  c8 a2 4a 52 71 7d 54 24  |....h.....JRq}T$|
+000000e0  3a 26 60 89 81 48 27 c8  ef bb 64 9c d8 69 0b f4  |:&`..H'...d..i..|
+000000f0  d0 8b 4d 71 b9 b3 33 b3  93 bb c7 97 c9 3e ec 03  |..Mq..3......>..|
+00000100  5c 77 37 f0 e5 f6 f6 2b  e8 bd 81 a5 03 7a 0c 7b  |\w7....+.....z.{|
+00000110  37 f9 19 d0 c3 01 d2 13  0f 93 f1 66 7a 32 fd 8c  |7..........fz2..|
+00000120  10 69 7a eb c3 64 ef 8f  c1 ba 11 da b1 87 a3 37  |.iz..d.........7|
+00000130  60 47 f0 ee 38 75 26 dd  dc db b1 9d 5e 60 e7 a6  |`G..8u&.....^`..|
+00000140  c1 67 f0 6c c3 1e dc 94  fe dd 31 90 c1 f5 76 67  |.g.l......1...vg|
+00000150  bb 36 02 64 d0 4e 06 1e  cd 34 d8 10 4c 0f 8f 93  |.6.d.N...4..L...|
+00000160  7b b2 3d 1e c2 be 0d f8  63 10 e4 70 70 cf 76 7c  |{.=.....c..pp.v||
+00000170  80 ce 8d bd 8d 4d 3e 36  91 c1 84 6f 84 00 c0 27  |.....M>6...o...'|
+00000180  f8 48 ca 83 db bd b1 e9  5c 6f 60 38 fa 80 1a 42  |.H......\o`8...B|
+00000190  8b 2c 23 64 7b ef 9e 62  e9 64 01 19 5d b0 9d c9  |.,#d{..b.d..]...|
+000001a0  b0 66 3d 1c 10 29 02 5c  4e 1b fb df a8 e0 b8 ee  |.f=..).\N.......|
+000001b0  d0 da c1 4c b3 bf 33 c0  49 17 26 bc 31 40 75 fd  |...L..3.I.&.1@u.|
+000001c0  11 59 bd 93 20 ef 24 e0  7f 48 90 93 b0 de 75 c7  |.Y.. .$..H....u.|
+000001d0  c1 8c a1 7d db cd 67 b4  dd 61 65 82 a1 0d 66 b2  |...}..g..ae...f.|
+000001e0  ed c1 9f 2d 4e 7b c1 22  b9 a4 7e d2 53 19 9b da  |...-N{."..~.S...|
+000001f0  22 ea d8 0e 26 92 59 3a  f7 70 30 c0 c7 6e 86 6c  |"...&.Y:.p0..n.l|
+00000200  cf b5 e4 b7 0d 1e c5 8c  af 38 98 1f 1c f8 02 f7  |.........8......|
+00000210  26 86 03 79 3b 30 63 8f  b7 26 e6 00 09 0c 2e 18  |&..y;0c..&......|
+00000220  78 75 03 e3 d5 23 33 4c  17 ec b0 40 92 7e ef 76  |xu...#3L...@.~.v|
+00000230  e1 39 26 e3 94 19 f0 8f  a6 8b a1 c1 26 1b a3 34  |.9&.........&..4|
+00000240  c5 b8 8c af c1 f1 3e f1  26 7a c5 15 28 b1 d0 1b  |......>.&z..(...|
+00000250  2a 19 e0 b9 96 e2 8e 17  ac 80 f9 16 f4 8a 41 2e  |*.............A.|
+00000260  ea ad e4 cb 95 86 95 28  0b 26 15 d0 aa c0 db 4a  |.......(.&.....J|
+00000270  4b 3e 6f b4 90 8a 5c 51  85 9d 57 a9 40 ab 2d b0  |K>o...\Q..W.@.-.|
+00000280  9f b5 64 4a 81 90 c0 d7  75 c9 11 0c d1 25 ad 34  |..dJ....u....%.4|
+00000290  67 2a 03 5e e5 65 53 f0  6a 99 01 02 40 25 34 29  |g*.^.eS.j...@%4)|
+000002a0  f9 9a 6b 7c a6 45 96 86  fe d9 06 62 01 6b 26 f3  |..k|.E.....b.k&.|
+000002b0  15 7e d2 39 2f b9 de a6  79 0b ae ab 38 6b 21 24  |.~.9/...y...8k!$|
+000002c0  a1 50 53 a9 79 de 94 54  42 dd c8 5a 28 06 51 56  |.PS.y..TB..Z(.QV|
+000002d0  c1 55 5e 52 be 66 c5 0c  a7 e3 44 60 77 ac d2 a0  |.U^R.f....D`w...|
+000002e0  56 b4 2c 3f aa 24 62 53  31 19 a9 5f 4a 84 39 83  |V.,?.$bS1.._J.9.|
+000002f0  92 d3 79 c9 e2 a0 24 b2  e0 92 e5 3a aa 39 9f 72  |..y...$....:.9.r|
+00000300  34 0e e9 95 19 51 35 cb  39 1e d0 0b 86 5a a8 dc  |4....Q5.9....Z..|
+00000310  66 27 4c c5 7e 34 f8 08  8b 50 d0 35 5d a2 b4 eb  |f'L.~4...P.5]...|
+00000320  7f 38 82 2b c9 1b c9 d6  91 32 da a0 9a b9 d2 5c  |.8.+.....2.....\|
+00000330  37 9a c1 52 88 22 f9 ac  98 bc e3 39 53 df a1 14  |7..R.".....9S...|
+00000340  2a 99 d5 28 96 91 82 6a  9a 06 23 04 3a 85 65 3c  |*..(...j..#.:.e<|
+00000350  cf 1b c5 93 67 bc d2 4c  ca a6 d6 5c 54 37 b8 de  |....g..L...\T7..|
+00000360  0d ba 82 1c 29 b6 16 c9  5c 51 45 a9 98 11 26 e4  |....)...\QE...&.|
+00000370  36 82 46 0f 92 f7 19 6c  56 0c ef 65 f4 33 39 45  |6.F....lV..e.39E|
+00000380  a3 05 0a 1d cb f5 e5 33  9c 87 06 6a 72 d6 08 15  |.......3...jr...|
+00000390  5b 96 7c c9 aa 9c c5 aa  88 28 1b ae d8 0d ae 8a  |[.|......(......|
+000003a0  ab f8 80 a7 b1 b8 7c 9c  d9 24 c9 71 45 c8 8a a4  |......|..$.qE...|
+000003b0  e3 45 60 b3 b4 48 e0 0b  a0 c5 1d 8f b4 4f 8f 71  |.E`..H.......O.q|
+000003c0  f5 8a 9f 62 92 2c cb 57  27 bb 67 e4 17 50 4b 03  |...b.,.W'.g..PK.|
+000003d0  04 0a 00 00 00 08 00 43  79 53 4c cf 92 a4 53 40  |.......CySL...S@|
+000003e0  00 00 00 43 00 00 00 3f  00 09 00 72 73 63 2d 76  |...C...?...rsc-v|
+000003f0  67 6f 74 65 73 74 31 2d  38 30 64 38 35 63 35 64  |gotest1-80d85c5d|
+00000400  34 64 31 37 35 39 38 61  30 65 39 30 35 35 65 37  |4d17598a0e9055e7|
+00000410  63 31 37 35 61 33 32 62  34 31 35 64 36 31 32 38  |c175a32b415d6128|
+00000420  2f 52 45 41 44 4d 45 2e  6d 64 55 54 05 00 01 4e  |/README.mdUT...N|
+00000430  59 8b 5a 15 c8 b1 09 c0  30 0c 04 c0 de 53 7c 97  |Y.Z.....0....S|.|
+00000440  ce d3 78 81 40 de 96 20  58 46 92 33 7f 12 b8 ea  |..x.@.. XF.3....|
+00000450  9a 68 e0 73 22 19 09 e7  32 74 73 3c f4 50 9b bc  |.h.s"...2ts<.P..|
+00000460  30 ac 96 26 74 1e 81 69  29 3a 07 76 b0 ef 1b ff  |0..&t..i):.v....|
+00000470  d6 f2 02 50 4b 03 04 0a  00 00 00 00 00 43 79 53  |...PK........CyS|
+00000480  4c 00 00 00 00 00 00 00  00 00 00 00 00 3a 00 09  |L............:..|
+00000490  00 72 73 63 2d 76 67 6f  74 65 73 74 31 2d 38 30  |.rsc-vgotest1-80|
+000004a0  64 38 35 63 35 64 34 64  31 37 35 39 38 61 30 65  |d85c5d4d17598a0e|
+000004b0  39 30 35 35 65 37 63 31  37 35 61 33 32 62 34 31  |9055e7c175a32b41|
+000004c0  35 64 36 31 32 38 2f 70  6b 67 2f 55 54 05 00 01  |5d6128/pkg/UT...|
+000004d0  4e 59 8b 5a 50 4b 03 04  0a 00 00 00 00 00 43 79  |NY.ZPK........Cy|
+000004e0  53 4c 77 23 4a 34 16 00  00 00 16 00 00 00 3e 00  |SLw#J4........>.|
+000004f0  09 00 72 73 63 2d 76 67  6f 74 65 73 74 31 2d 38  |..rsc-vgotest1-8|
+00000500  30 64 38 35 63 35 64 34  64 31 37 35 39 38 61 30  |0d85c5d4d17598a0|
+00000510  65 39 30 35 35 65 37 63  31 37 35 61 33 32 62 34  |e9055e7c175a32b4|
+00000520  31 35 64 36 31 32 38 2f  70 6b 67 2f 70 2e 67 6f  |15d6128/pkg/p.go|
+00000530  55 54 05 00 01 4e 59 8b  5a 70 61 63 6b 61 67 65  |UT...NY.Zpackage|
+00000540  20 70 20 2f 2f 20 70 6b  67 2f 70 2e 67 6f 0a 50  | p // pkg/p.go.P|
+00000550  4b 01 02 00 00 0a 00 00  00 00 00 43 79 53 4c 00  |K..........CySL.|
+00000560  00 00 00 00 00 00 00 00  00 00 00 36 00 09 00 00  |...........6....|
+00000570  00 00 00 00 00 10 00 00  00 00 00 00 00 72 73 63  |.............rsc|
+00000580  2d 76 67 6f 74 65 73 74  31 2d 38 30 64 38 35 63  |-vgotest1-80d85c|
+00000590  35 64 34 64 31 37 35 39  38 61 30 65 39 30 35 35  |5d4d17598a0e9055|
+000005a0  65 37 63 31 37 35 61 33  32 62 34 31 35 64 36 31  |e7c175a32b415d61|
+000005b0  32 38 2f 55 54 05 00 01  4e 59 8b 5a 50 4b 01 02  |28/UT...NY.ZPK..|
+000005c0  00 00 0a 00 00 00 08 00  43 79 53 4c 80 52 56 fa  |........CySL.RV.|
+000005d0  0c 03 00 00 c7 05 00 00  3d 00 09 00 00 00 00 00  |........=.......|
+000005e0  01 00 00 00 00 00 5d 00  00 00 72 73 63 2d 76 67  |......]...rsc-vg|
+000005f0  6f 74 65 73 74 31 2d 38  30 64 38 35 63 35 64 34  |otest1-80d85c5d4|
+00000600  64 31 37 35 39 38 61 30  65 39 30 35 35 65 37 63  |d17598a0e9055e7c|
+00000610  31 37 35 61 33 32 62 34  31 35 64 36 31 32 38 2f  |175a32b415d6128/|
+00000620  4c 49 43 45 4e 53 45 55  54 05 00 01 4e 59 8b 5a  |LICENSEUT...NY.Z|
+00000630  50 4b 01 02 00 00 0a 00  00 00 08 00 43 79 53 4c  |PK..........CySL|
+00000640  cf 92 a4 53 40 00 00 00  43 00 00 00 3f 00 09 00  |...S@...C...?...|
+00000650  00 00 00 00 01 00 00 00  00 00 cd 03 00 00 72 73  |..............rs|
+00000660  63 2d 76 67 6f 74 65 73  74 31 2d 38 30 64 38 35  |c-vgotest1-80d85|
+00000670  63 35 64 34 64 31 37 35  39 38 61 30 65 39 30 35  |c5d4d17598a0e905|
+00000680  35 65 37 63 31 37 35 61  33 32 62 34 31 35 64 36  |5e7c175a32b415d6|
+00000690  31 32 38 2f 52 45 41 44  4d 45 2e 6d 64 55 54 05  |128/README.mdUT.|
+000006a0  00 01 4e 59 8b 5a 50 4b  01 02 00 00 0a 00 00 00  |..NY.ZPK........|
+000006b0  00 00 43 79 53 4c 00 00  00 00 00 00 00 00 00 00  |..CySL..........|
+000006c0  00 00 3a 00 09 00 00 00  00 00 00 00 10 00 00 00  |..:.............|
+000006d0  73 04 00 00 72 73 63 2d  76 67 6f 74 65 73 74 31  |s...rsc-vgotest1|
+000006e0  2d 38 30 64 38 35 63 35  64 34 64 31 37 35 39 38  |-80d85c5d4d17598|
+000006f0  61 30 65 39 30 35 35 65  37 63 31 37 35 61 33 32  |a0e9055e7c175a32|
+00000700  62 34 31 35 64 36 31 32  38 2f 70 6b 67 2f 55 54  |b415d6128/pkg/UT|
+00000710  05 00 01 4e 59 8b 5a 50  4b 01 02 00 00 0a 00 00  |...NY.ZPK.......|
+00000720  00 00 00 43 79 53 4c 77  23 4a 34 16 00 00 00 16  |...CySLw#J4.....|
+00000730  00 00 00 3e 00 09 00 00  00 00 00 01 00 00 00 00  |...>............|
+00000740  00 d4 04 00 00 72 73 63  2d 76 67 6f 74 65 73 74  |.....rsc-vgotest|
+00000750  31 2d 38 30 64 38 35 63  35 64 34 64 31 37 35 39  |1-80d85c5d4d1759|
+00000760  38 61 30 65 39 30 35 35  65 37 63 31 37 35 61 33  |8a0e9055e7c175a3|
+00000770  32 62 34 31 35 64 36 31  32 38 2f 70 6b 67 2f 70  |2b415d6128/pkg/p|
+00000780  2e 67 6f 55 54 05 00 01  4e 59 8b 5a 50 4b 05 06  |.goUT...NY.ZPK..|
+00000790  00 00 00 00 05 00 05 00  3d 02 00 00 4f 05 00 00  |........=...O...|
+000007a0  28 00 38 30 64 38 35 63  35 64 34 64 31 37 35 39  |(.80d85c5d4d1759|
+000007b0  38 61 30 65 39 30 35 35  65 37 63 31 37 35 61 33  |8a0e9055e7c175a3|
+000007c0  32 62 34 31 35 64 36 31  32 38                    |2b415d6128|
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/mytag
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:54 GMT
+Etag: W/"16a72e5271cb6b26c551e9834a1b9aca"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:407343A:B712439:5A8BB701
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4769
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.023626
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/mytag","url":"https://api.github.com/repos/rsc/vgotest1/git/refs/tags/mytag","object":{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","type":"commit","url":"https://api.github.com/repos/rsc/vgotest1/git/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128"}}
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=80d85c5d4d17
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:54 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:407343C:B712457:5A8BB702
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4768
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.042601
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/v2%2Fgo.mod?ref=80d85c5d4d17
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:54 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073440:B712468:5A8BB702
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4767
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.045215
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/v54321%2Fgo.mod?ref=80d85c5d4d17
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:54 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073445:B712479:5A8BB702
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4766
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.044597
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/submod/v1.0.0
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:54 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073452:B712499:5A8BB702
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4765
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.030263
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/git/refs/#get-a-reference"}
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/submod/v1.0.3
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:54 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073457:B7124AB:5A8BB702
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4764
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.032431
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/git/refs/#get-a-reference"}
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/submod/v1.0.4
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:54 GMT
+Etag: W/"d3da0a71d1e673e85d33fadcf833afb7"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:407345E:B7124BF:5A8BB702
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4763
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.029114
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/submod/v1.0.4","url":"https://api.github.com/repos/rsc/vgotest1/git/refs/tags/submod/v1.0.4","object":{"sha":"8afe2b2efed96e0880ecd2a69b98a53b8c2738b6","type":"commit","url":"https://api.github.com/repos/rsc/vgotest1/git/commits/8afe2b2efed96e0880ecd2a69b98a53b8c2738b6"}}
+
+GET https://api.github.com/repos/rsc/vgotest1/commits?sha=8afe2b2efed96e0880ecd2a69b98a53b8c2738b6&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:54 GMT
+Etag: W/"8d3d0ea95acddbf323ad3d273e896fad"
+Last-Modified: Mon, 19 Feb 2018 23:12:07 GMT
+Link: <https://api.github.com/repositories/122129067/commits?sha=8afe2b2efed96e0880ecd2a69b98a53b8c2738b6&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/122129067/commits?sha=8afe2b2efed96e0880ecd2a69b98a53b8c2738b6&per_page=2&page=3>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073463:B7124D1:5A8BB702
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4762
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.046621
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"8afe2b2efed96e0880ecd2a69b98a53b8c2738b6","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:12:07Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:12:07Z"},"message":"submod/go.mod","tree":{"sha":"b309fa374976fb0645b947eb876fe56d870ca6a7","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/b309fa374976fb0645b947eb876fe56d870ca6a7"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/8afe2b2efed96e0880ecd2a69b98a53b8c2738b6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/8afe2b2efed96e0880ecd2a69b98a53b8c2738b6","html_url":"https://github.com/rsc/vgotest1/commit/8afe2b2efed96e0880ecd2a69b98a53b8c2738b6","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/8afe2b2efed96e0880ecd2a69b98a53b8c2738b6/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"2e38a1a347ba4d9e9946ec0ce480710ff445c919","url":"https://api.github.com/repos/rsc/vgotest1/commits/2e38a1a347ba4d9e9946ec0ce480710ff445c919","html_url":"https://github.com/rsc/vgotest1/commit/2e38a1a347ba4d9e9946ec0ce480710ff445c919"}]},{"sha":"2e38a1a347ba4d9e9946ec0ce480710ff445c919","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:11:28Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:11:28Z"},"message":"submod/pkg/p.go","tree":{"sha":"57499a3c59d0470a9d5addb51b7091b97bed15e0","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/57499a3c59d0470a9d5addb51b7091b97bed15e0"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/2e38a1a347ba4d9e9946ec0ce480710ff445c919","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/2e38a1a347ba4d9e9946ec0ce480710ff445c919","html_url":"https://github.com/rsc/vgotest1/commit/2e38a1a347ba4d9e9946ec0ce480710ff445c919","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/2e38a1a347ba4d9e9946ec0ce480710ff445c919/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"5a115c66393dd8c4a5cc3215653850d7f5640d0e","url":"https://api.github.com/repos/rsc/vgotest1/commits/5a115c66393dd8c4a5cc3215653850d7f5640d0e","html_url":"https://github.com/rsc/vgotest1/commit/5a115c66393dd8c4a5cc3215653850d7f5640d0e"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/submod%2Fgo.mod?ref=submod%2Fv1.0.4
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:54 GMT
+Etag: W/"7b18d935f8e29404e71d87f205fb35d58f7f1ae8"
+Last-Modified: Mon, 19 Feb 2018 23:12:07 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073467:B7124E0:5A8BB702
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4761
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.053328
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"submod/go.mod","sha":"7b18d935f8e29404e71d87f205fb35d58f7f1ae8","size":53,"url":"https://api.github.com/repos/rsc/vgotest1/contents/submod/go.mod?ref=submod/v1.0.4","html_url":"https://github.com/rsc/vgotest1/blob/submod/v1.0.4/submod/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest1/git/blobs/7b18d935f8e29404e71d87f205fb35d58f7f1ae8","download_url":"https://raw.githubusercontent.com/rsc/vgotest1/submod/v1.0.4/submod/go.mod?token=AAGWXkfokVCKkt_mrphkf1v2m7D-UyoSks5ai7c-wA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3Znb3Rlc3QxL3N1Ym1vZCIgLy8gc3VibW9k\nL2dvLm1vZAo=\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest1/contents/submod/go.mod?ref=submod/v1.0.4","git":"https://api.github.com/repos/rsc/vgotest1/git/blobs/7b18d935f8e29404e71d87f205fb35d58f7f1ae8","html":"https://github.com/rsc/vgotest1/blob/submod/v1.0.4/submod/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest1/submod/v1.0.4/submod/go.mod?token=AAGWXkfokVCKkt_mrphkf1v2m7D-UyoSks5ai7c-wA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:54 GMT
+Etag: "7b18d935f8e29404e71d87f205fb35d58f7f1ae8"
+Expires: Tue, 20 Feb 2018 05:54:54 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 259086e6272bad11f559eb2b9f0739718301ffb5
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: B606:0C0B:C213C8:CD8E9B:5A8BB700
+X-Served-By: cache-bos8231-BOS
+X-Timer: S1519105795.792496,VS0,VE42
+X-Xss-Protection: 1; mode=block
+
+module "github.com/vgotest1/submod" // submod/go.mod
+
+
+GET https://api.github.com/repos/rsc/vgotest1/zipball/submod%2Fv1.0.4
+200 OK
+Access-Control-Allow-Origin: https://render.githubusercontent.com
+Content-Disposition: attachment; filename=rsc-vgotest1-submod-v1.0.4-0-g8afe2b2efed96e0880ecd2a69b98a53b8c2738b6.zip
+Content-Length: 3236
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: application/zip
+Date: Tue, 20 Feb 2018 05:49:54 GMT
+Etag: "8afe2b2efed96e0880ecd2a69b98a53b8c2738b6"
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: B912:47C6:C9206:14F8CA:5A8BB701
+X-Xss-Protection: 1; mode=block
+
+00000000  50 4b 03 04 0a 00 00 00  00 00 83 79 53 4c 00 00  |PK.........ySL..|
+00000010  00 00 00 00 00 00 00 00  00 00 36 00 09 00 72 73  |..........6...rs|
+00000020  63 2d 76 67 6f 74 65 73  74 31 2d 38 61 66 65 32  |c-vgotest1-8afe2|
+00000030  62 32 65 66 65 64 39 36  65 30 38 38 30 65 63 64  |b2efed96e0880ecd|
+00000040  32 61 36 39 62 39 38 61  35 33 62 38 63 32 37 33  |2a69b98a53b8c273|
+00000050  38 62 36 2f 55 54 05 00  01 c7 59 8b 5a 50 4b 03  |8b6/UT....Y.ZPK.|
+00000060  04 0a 00 00 00 08 00 83  79 53 4c 80 52 56 fa 0c  |........ySL.RV..|
+00000070  03 00 00 c7 05 00 00 3d  00 09 00 72 73 63 2d 76  |.......=...rsc-v|
+00000080  67 6f 74 65 73 74 31 2d  38 61 66 65 32 62 32 65  |gotest1-8afe2b2e|
+00000090  66 65 64 39 36 65 30 38  38 30 65 63 64 32 61 36  |fed96e0880ecd2a6|
+000000a0  39 62 39 38 61 35 33 62  38 63 32 37 33 38 62 36  |9b98a53b8c2738b6|
+000000b0  2f 4c 49 43 45 4e 53 45  55 54 05 00 01 c7 59 8b  |/LICENSEUT....Y.|
+000000c0  5a a5 52 41 6e db 30 10  bc f3 15 8b 9c 92 42 70  |Z.RAn.0.......Bp|
+000000d0  83 de da 9e 68 89 b6 09  c8 a2 4a 52 71 7d 54 24  |....h.....JRq}T$|
+000000e0  3a 26 60 89 81 48 27 c8  ef bb 64 9c d8 69 0b f4  |:&`..H'...d..i..|
+000000f0  d0 8b 4d 71 b9 b3 33 b3  93 bb c7 97 c9 3e ec 03  |..Mq..3......>..|
+00000100  5c 77 37 f0 e5 f6 f6 2b  e8 bd 81 a5 03 7a 0c 7b  |\w7....+.....z.{|
+00000110  37 f9 19 d0 c3 01 d2 13  0f 93 f1 66 7a 32 fd 8c  |7..........fz2..|
+00000120  10 69 7a eb c3 64 ef 8f  c1 ba 11 da b1 87 a3 37  |.iz..d.........7|
+00000130  60 47 f0 ee 38 75 26 dd  dc db b1 9d 5e 60 e7 a6  |`G..8u&.....^`..|
+00000140  c1 67 f0 6c c3 1e dc 94  fe dd 31 90 c1 f5 76 67  |.g.l......1...vg|
+00000150  bb 36 02 64 d0 4e 06 1e  cd 34 d8 10 4c 0f 8f 93  |.6.d.N...4..L...|
+00000160  7b b2 3d 1e c2 be 0d f8  63 10 e4 70 70 cf 76 7c  |{.=.....c..pp.v||
+00000170  80 ce 8d bd 8d 4d 3e 36  91 c1 84 6f 84 00 c0 27  |.....M>6...o...'|
+00000180  f8 48 ca 83 db bd b1 e9  5c 6f 60 38 fa 80 1a 42  |.H......\o`8...B|
+00000190  8b 2c 23 64 7b ef 9e 62  e9 64 01 19 5d b0 9d c9  |.,#d{..b.d..]...|
+000001a0  b0 66 3d 1c 10 29 02 5c  4e 1b fb df a8 e0 b8 ee  |.f=..).\N.......|
+000001b0  d0 da c1 4c b3 bf 33 c0  49 17 26 bc 31 40 75 fd  |...L..3.I.&.1@u.|
+000001c0  11 59 bd 93 20 ef 24 e0  7f 48 90 93 b0 de 75 c7  |.Y.. .$..H....u.|
+000001d0  c1 8c a1 7d db cd 67 b4  dd 61 65 82 a1 0d 66 b2  |...}..g..ae...f.|
+000001e0  ed c1 9f 2d 4e 7b c1 22  b9 a4 7e d2 53 19 9b da  |...-N{."..~.S...|
+000001f0  22 ea d8 0e 26 92 59 3a  f7 70 30 c0 c7 6e 86 6c  |"...&.Y:.p0..n.l|
+00000200  cf b5 e4 b7 0d 1e c5 8c  af 38 98 1f 1c f8 02 f7  |.........8......|
+00000210  26 86 03 79 3b 30 63 8f  b7 26 e6 00 09 0c 2e 18  |&..y;0c..&......|
+00000220  78 75 03 e3 d5 23 33 4c  17 ec b0 40 92 7e ef 76  |xu...#3L...@.~.v|
+00000230  e1 39 26 e3 94 19 f0 8f  a6 8b a1 c1 26 1b a3 34  |.9&.........&..4|
+00000240  c5 b8 8c af c1 f1 3e f1  26 7a c5 15 28 b1 d0 1b  |......>.&z..(...|
+00000250  2a 19 e0 b9 96 e2 8e 17  ac 80 f9 16 f4 8a 41 2e  |*.............A.|
+00000260  ea ad e4 cb 95 86 95 28  0b 26 15 d0 aa c0 db 4a  |.......(.&.....J|
+00000270  4b 3e 6f b4 90 8a 5c 51  85 9d 57 a9 40 ab 2d b0  |K>o...\Q..W.@.-.|
+00000280  9f b5 64 4a 81 90 c0 d7  75 c9 11 0c d1 25 ad 34  |..dJ....u....%.4|
+00000290  67 2a 03 5e e5 65 53 f0  6a 99 01 02 40 25 34 29  |g*.^.eS.j...@%4)|
+000002a0  f9 9a 6b 7c a6 45 96 86  fe d9 06 62 01 6b 26 f3  |..k|.E.....b.k&.|
+000002b0  15 7e d2 39 2f b9 de a6  79 0b ae ab 38 6b 21 24  |.~.9/...y...8k!$|
+000002c0  a1 50 53 a9 79 de 94 54  42 dd c8 5a 28 06 51 56  |.PS.y..TB..Z(.QV|
+000002d0  c1 55 5e 52 be 66 c5 0c  a7 e3 44 60 77 ac d2 a0  |.U^R.f....D`w...|
+000002e0  56 b4 2c 3f aa 24 62 53  31 19 a9 5f 4a 84 39 83  |V.,?.$bS1.._J.9.|
+000002f0  92 d3 79 c9 e2 a0 24 b2  e0 92 e5 3a aa 39 9f 72  |..y...$....:.9.r|
+00000300  34 0e e9 95 19 51 35 cb  39 1e d0 0b 86 5a a8 dc  |4....Q5.9....Z..|
+00000310  66 27 4c c5 7e 34 f8 08  8b 50 d0 35 5d a2 b4 eb  |f'L.~4...P.5]...|
+00000320  7f 38 82 2b c9 1b c9 d6  91 32 da a0 9a b9 d2 5c  |.8.+.....2.....\|
+00000330  37 9a c1 52 88 22 f9 ac  98 bc e3 39 53 df a1 14  |7..R.".....9S...|
+00000340  2a 99 d5 28 96 91 82 6a  9a 06 23 04 3a 85 65 3c  |*..(...j..#.:.e<|
+00000350  cf 1b c5 93 67 bc d2 4c  ca a6 d6 5c 54 37 b8 de  |....g..L...\T7..|
+00000360  0d ba 82 1c 29 b6 16 c9  5c 51 45 a9 98 11 26 e4  |....)...\QE...&.|
+00000370  36 82 46 0f 92 f7 19 6c  56 0c ef 65 f4 33 39 45  |6.F....lV..e.39E|
+00000380  a3 05 0a 1d cb f5 e5 33  9c 87 06 6a 72 d6 08 15  |.......3...jr...|
+00000390  5b 96 7c c9 aa 9c c5 aa  88 28 1b ae d8 0d ae 8a  |[.|......(......|
+000003a0  ab f8 80 a7 b1 b8 7c 9c  d9 24 c9 71 45 c8 8a a4  |......|..$.qE...|
+000003b0  e3 45 60 b3 b4 48 e0 0b  a0 c5 1d 8f b4 4f 8f 71  |.E`..H.......O.q|
+000003c0  f5 8a 9f 62 92 2c cb 57  27 bb 67 e4 17 50 4b 03  |...b.,.W'.g..PK.|
+000003d0  04 0a 00 00 00 08 00 83  79 53 4c cf 92 a4 53 40  |........ySL...S@|
+000003e0  00 00 00 43 00 00 00 3f  00 09 00 72 73 63 2d 76  |...C...?...rsc-v|
+000003f0  67 6f 74 65 73 74 31 2d  38 61 66 65 32 62 32 65  |gotest1-8afe2b2e|
+00000400  66 65 64 39 36 65 30 38  38 30 65 63 64 32 61 36  |fed96e0880ecd2a6|
+00000410  39 62 39 38 61 35 33 62  38 63 32 37 33 38 62 36  |9b98a53b8c2738b6|
+00000420  2f 52 45 41 44 4d 45 2e  6d 64 55 54 05 00 01 c7  |/README.mdUT....|
+00000430  59 8b 5a 15 c8 b1 09 c0  30 0c 04 c0 de 53 7c 97  |Y.Z.....0....S|.|
+00000440  ce d3 78 81 40 de 96 20  58 46 92 33 7f 12 b8 ea  |..x.@.. XF.3....|
+00000450  9a 68 e0 73 22 19 09 e7  32 74 73 3c f4 50 9b bc  |.h.s"...2ts<.P..|
+00000460  30 ac 96 26 74 1e 81 69  29 3a 07 76 b0 ef 1b ff  |0..&t..i):.v....|
+00000470  d6 f2 02 50 4b 03 04 0a  00 00 00 00 00 83 79 53  |...PK.........yS|
+00000480  4c 0b e6 89 a7 30 00 00  00 30 00 00 00 3c 00 09  |L....0...0...<..|
+00000490  00 72 73 63 2d 76 67 6f  74 65 73 74 31 2d 38 61  |.rsc-vgotest1-8a|
+000004a0  66 65 32 62 32 65 66 65  64 39 36 65 30 38 38 30  |fe2b2efed96e0880|
+000004b0  65 63 64 32 61 36 39 62  39 38 61 35 33 62 38 63  |ecd2a69b98a53b8c|
+000004c0  32 37 33 38 62 36 2f 67  6f 2e 6d 6f 64 55 54 05  |2738b6/go.modUT.|
+000004d0  00 01 c7 59 8b 5a 6d 6f  64 75 6c 65 20 22 67 69  |...Y.Zmodule "gi|
+000004e0  74 68 75 62 2e 63 6f 6d  2f 72 73 63 2f 76 67 6f  |thub.com/rsc/vgo|
+000004f0  74 65 73 74 31 22 20 2f  2f 20 72 6f 6f 74 20 67  |test1" // root g|
+00000500  6f 2e 6d 6f 64 0a 50 4b  03 04 0a 00 00 00 00 00  |o.mod.PK........|
+00000510  83 79 53 4c 00 00 00 00  00 00 00 00 00 00 00 00  |.ySL............|
+00000520  3a 00 09 00 72 73 63 2d  76 67 6f 74 65 73 74 31  |:...rsc-vgotest1|
+00000530  2d 38 61 66 65 32 62 32  65 66 65 64 39 36 65 30  |-8afe2b2efed96e0|
+00000540  38 38 30 65 63 64 32 61  36 39 62 39 38 61 35 33  |880ecd2a69b98a53|
+00000550  62 38 63 32 37 33 38 62  36 2f 70 6b 67 2f 55 54  |b8c2738b6/pkg/UT|
+00000560  05 00 01 c7 59 8b 5a 50  4b 03 04 0a 00 00 00 00  |....Y.ZPK.......|
+00000570  00 83 79 53 4c 77 23 4a  34 16 00 00 00 16 00 00  |..ySLw#J4.......|
+00000580  00 3e 00 09 00 72 73 63  2d 76 67 6f 74 65 73 74  |.>...rsc-vgotest|
+00000590  31 2d 38 61 66 65 32 62  32 65 66 65 64 39 36 65  |1-8afe2b2efed96e|
+000005a0  30 38 38 30 65 63 64 32  61 36 39 62 39 38 61 35  |0880ecd2a69b98a5|
+000005b0  33 62 38 63 32 37 33 38  62 36 2f 70 6b 67 2f 70  |3b8c2738b6/pkg/p|
+000005c0  2e 67 6f 55 54 05 00 01  c7 59 8b 5a 70 61 63 6b  |.goUT....Y.Zpack|
+000005d0  61 67 65 20 70 20 2f 2f  20 70 6b 67 2f 70 2e 67  |age p // pkg/p.g|
+000005e0  6f 0a 50 4b 03 04 0a 00  00 00 00 00 83 79 53 4c  |o.PK.........ySL|
+000005f0  00 00 00 00 00 00 00 00  00 00 00 00 3d 00 09 00  |............=...|
+00000600  72 73 63 2d 76 67 6f 74  65 73 74 31 2d 38 61 66  |rsc-vgotest1-8af|
+00000610  65 32 62 32 65 66 65 64  39 36 65 30 38 38 30 65  |e2b2efed96e0880e|
+00000620  63 64 32 61 36 39 62 39  38 61 35 33 62 38 63 32  |cd2a69b98a53b8c2|
+00000630  37 33 38 62 36 2f 73 75  62 6d 6f 64 2f 55 54 05  |738b6/submod/UT.|
+00000640  00 01 c7 59 8b 5a 50 4b  03 04 0a 00 00 00 08 00  |...Y.ZPK........|
+00000650  83 79 53 4c d2 a9 ae ae  31 00 00 00 35 00 00 00  |.ySL....1...5...|
+00000660  43 00 09 00 72 73 63 2d  76 67 6f 74 65 73 74 31  |C...rsc-vgotest1|
+00000670  2d 38 61 66 65 32 62 32  65 66 65 64 39 36 65 30  |-8afe2b2efed96e0|
+00000680  38 38 30 65 63 64 32 61  36 39 62 39 38 61 35 33  |880ecd2a69b98a53|
+00000690  62 38 63 32 37 33 38 62  36 2f 73 75 62 6d 6f 64  |b8c2738b6/submod|
+000006a0  2f 67 6f 2e 6d 6f 64 55  54 05 00 01 c7 59 8b 5a  |/go.modUT....Y.Z|
+000006b0  cb cd 4f 29 cd 49 55 50  4a cf 2c c9 28 4d d2 4b  |..O).IUPJ.,.(M.K|
+000006c0  ce cf d5 2f 4b cf 2f 49  2d 2e 31 d4 2f 2e 4d ca  |.../K./I-.1./.M.|
+000006d0  cd 4f 51 52 d0 d7 57 80  30 f5 d3 f3 f5 80 14 17  |.OQR..W.0.......|
+000006e0  00 50 4b 03 04 0a 00 00  00 00 00 83 79 53 4c 00  |.PK.........ySL.|
+000006f0  00 00 00 00 00 00 00 00  00 00 00 41 00 09 00 72  |...........A...r|
+00000700  73 63 2d 76 67 6f 74 65  73 74 31 2d 38 61 66 65  |sc-vgotest1-8afe|
+00000710  32 62 32 65 66 65 64 39  36 65 30 38 38 30 65 63  |2b2efed96e0880ec|
+00000720  64 32 61 36 39 62 39 38  61 35 33 62 38 63 32 37  |d2a69b98a53b8c27|
+00000730  33 38 62 36 2f 73 75 62  6d 6f 64 2f 70 6b 67 2f  |38b6/submod/pkg/|
+00000740  55 54 05 00 01 c7 59 8b  5a 50 4b 03 04 0a 00 00  |UT....Y.ZPK.....|
+00000750  00 00 00 83 79 53 4c 8c  55 c5 b7 1f 00 00 00 1f  |....ySL.U.......|
+00000760  00 00 00 45 00 09 00 72  73 63 2d 76 67 6f 74 65  |...E...rsc-vgote|
+00000770  73 74 31 2d 38 61 66 65  32 62 32 65 66 65 64 39  |st1-8afe2b2efed9|
+00000780  36 65 30 38 38 30 65 63  64 32 61 36 39 62 39 38  |6e0880ecd2a69b98|
+00000790  61 35 33 62 38 63 32 37  33 38 62 36 2f 73 75 62  |a53b8c2738b6/sub|
+000007a0  6d 6f 64 2f 70 6b 67 2f  70 2e 67 6f 55 54 05 00  |mod/pkg/p.goUT..|
+000007b0  01 c7 59 8b 5a 70 61 63  6b 61 67 65 20 70 6b 67  |..Y.Zpackage pkg|
+000007c0  20 2f 2f 20 73 75 62 6d  6f 64 2f 70 6b 67 2f 70  | // submod/pkg/p|
+000007d0  2e 67 6f 0a 50 4b 01 02  00 00 0a 00 00 00 00 00  |.go.PK..........|
+000007e0  83 79 53 4c 00 00 00 00  00 00 00 00 00 00 00 00  |.ySL............|
+000007f0  36 00 09 00 00 00 00 00  00 00 10 00 00 00 00 00  |6...............|
+00000800  00 00 72 73 63 2d 76 67  6f 74 65 73 74 31 2d 38  |..rsc-vgotest1-8|
+00000810  61 66 65 32 62 32 65 66  65 64 39 36 65 30 38 38  |afe2b2efed96e088|
+00000820  30 65 63 64 32 61 36 39  62 39 38 61 35 33 62 38  |0ecd2a69b98a53b8|
+00000830  63 32 37 33 38 62 36 2f  55 54 05 00 01 c7 59 8b  |c2738b6/UT....Y.|
+00000840  5a 50 4b 01 02 00 00 0a  00 00 00 08 00 83 79 53  |ZPK...........yS|
+00000850  4c 80 52 56 fa 0c 03 00  00 c7 05 00 00 3d 00 09  |L.RV.........=..|
+00000860  00 00 00 00 00 01 00 00  00 00 00 5d 00 00 00 72  |...........]...r|
+00000870  73 63 2d 76 67 6f 74 65  73 74 31 2d 38 61 66 65  |sc-vgotest1-8afe|
+00000880  32 62 32 65 66 65 64 39  36 65 30 38 38 30 65 63  |2b2efed96e0880ec|
+00000890  64 32 61 36 39 62 39 38  61 35 33 62 38 63 32 37  |d2a69b98a53b8c27|
+000008a0  33 38 62 36 2f 4c 49 43  45 4e 53 45 55 54 05 00  |38b6/LICENSEUT..|
+000008b0  01 c7 59 8b 5a 50 4b 01  02 00 00 0a 00 00 00 08  |..Y.ZPK.........|
+000008c0  00 83 79 53 4c cf 92 a4  53 40 00 00 00 43 00 00  |..ySL...S@...C..|
+000008d0  00 3f 00 09 00 00 00 00  00 01 00 00 00 00 00 cd  |.?..............|
+000008e0  03 00 00 72 73 63 2d 76  67 6f 74 65 73 74 31 2d  |...rsc-vgotest1-|
+000008f0  38 61 66 65 32 62 32 65  66 65 64 39 36 65 30 38  |8afe2b2efed96e08|
+00000900  38 30 65 63 64 32 61 36  39 62 39 38 61 35 33 62  |80ecd2a69b98a53b|
+00000910  38 63 32 37 33 38 62 36  2f 52 45 41 44 4d 45 2e  |8c2738b6/README.|
+00000920  6d 64 55 54 05 00 01 c7  59 8b 5a 50 4b 01 02 00  |mdUT....Y.ZPK...|
+00000930  00 0a 00 00 00 00 00 83  79 53 4c 0b e6 89 a7 30  |........ySL....0|
+00000940  00 00 00 30 00 00 00 3c  00 09 00 00 00 00 00 01  |...0...<........|
+00000950  00 00 00 00 00 73 04 00  00 72 73 63 2d 76 67 6f  |.....s...rsc-vgo|
+00000960  74 65 73 74 31 2d 38 61  66 65 32 62 32 65 66 65  |test1-8afe2b2efe|
+00000970  64 39 36 65 30 38 38 30  65 63 64 32 61 36 39 62  |d96e0880ecd2a69b|
+00000980  39 38 61 35 33 62 38 63  32 37 33 38 62 36 2f 67  |98a53b8c2738b6/g|
+00000990  6f 2e 6d 6f 64 55 54 05  00 01 c7 59 8b 5a 50 4b  |o.modUT....Y.ZPK|
+000009a0  01 02 00 00 0a 00 00 00  00 00 83 79 53 4c 00 00  |...........ySL..|
+000009b0  00 00 00 00 00 00 00 00  00 00 3a 00 09 00 00 00  |..........:.....|
+000009c0  00 00 00 00 10 00 00 00  06 05 00 00 72 73 63 2d  |............rsc-|
+000009d0  76 67 6f 74 65 73 74 31  2d 38 61 66 65 32 62 32  |vgotest1-8afe2b2|
+000009e0  65 66 65 64 39 36 65 30  38 38 30 65 63 64 32 61  |efed96e0880ecd2a|
+000009f0  36 39 62 39 38 61 35 33  62 38 63 32 37 33 38 62  |69b98a53b8c2738b|
+00000a00  36 2f 70 6b 67 2f 55 54  05 00 01 c7 59 8b 5a 50  |6/pkg/UT....Y.ZP|
+00000a10  4b 01 02 00 00 0a 00 00  00 00 00 83 79 53 4c 77  |K...........ySLw|
+00000a20  23 4a 34 16 00 00 00 16  00 00 00 3e 00 09 00 00  |#J4........>....|
+00000a30  00 00 00 01 00 00 00 00  00 67 05 00 00 72 73 63  |.........g...rsc|
+00000a40  2d 76 67 6f 74 65 73 74  31 2d 38 61 66 65 32 62  |-vgotest1-8afe2b|
+00000a50  32 65 66 65 64 39 36 65  30 38 38 30 65 63 64 32  |2efed96e0880ecd2|
+00000a60  61 36 39 62 39 38 61 35  33 62 38 63 32 37 33 38  |a69b98a53b8c2738|
+00000a70  62 36 2f 70 6b 67 2f 70  2e 67 6f 55 54 05 00 01  |b6/pkg/p.goUT...|
+00000a80  c7 59 8b 5a 50 4b 01 02  00 00 0a 00 00 00 00 00  |.Y.ZPK..........|
+00000a90  83 79 53 4c 00 00 00 00  00 00 00 00 00 00 00 00  |.ySL............|
+00000aa0  3d 00 09 00 00 00 00 00  00 00 10 00 00 00 e2 05  |=...............|
+00000ab0  00 00 72 73 63 2d 76 67  6f 74 65 73 74 31 2d 38  |..rsc-vgotest1-8|
+00000ac0  61 66 65 32 62 32 65 66  65 64 39 36 65 30 38 38  |afe2b2efed96e088|
+00000ad0  30 65 63 64 32 61 36 39  62 39 38 61 35 33 62 38  |0ecd2a69b98a53b8|
+00000ae0  63 32 37 33 38 62 36 2f  73 75 62 6d 6f 64 2f 55  |c2738b6/submod/U|
+00000af0  54 05 00 01 c7 59 8b 5a  50 4b 01 02 00 00 0a 00  |T....Y.ZPK......|
+00000b00  00 00 08 00 83 79 53 4c  d2 a9 ae ae 31 00 00 00  |.....ySL....1...|
+00000b10  35 00 00 00 43 00 09 00  00 00 00 00 01 00 00 00  |5...C...........|
+00000b20  00 00 46 06 00 00 72 73  63 2d 76 67 6f 74 65 73  |..F...rsc-vgotes|
+00000b30  74 31 2d 38 61 66 65 32  62 32 65 66 65 64 39 36  |t1-8afe2b2efed96|
+00000b40  65 30 38 38 30 65 63 64  32 61 36 39 62 39 38 61  |e0880ecd2a69b98a|
+00000b50  35 33 62 38 63 32 37 33  38 62 36 2f 73 75 62 6d  |53b8c2738b6/subm|
+00000b60  6f 64 2f 67 6f 2e 6d 6f  64 55 54 05 00 01 c7 59  |od/go.modUT....Y|
+00000b70  8b 5a 50 4b 01 02 00 00  0a 00 00 00 00 00 83 79  |.ZPK...........y|
+00000b80  53 4c 00 00 00 00 00 00  00 00 00 00 00 00 41 00  |SL............A.|
+00000b90  09 00 00 00 00 00 00 00  10 00 00 00 e1 06 00 00  |................|
+00000ba0  72 73 63 2d 76 67 6f 74  65 73 74 31 2d 38 61 66  |rsc-vgotest1-8af|
+00000bb0  65 32 62 32 65 66 65 64  39 36 65 30 38 38 30 65  |e2b2efed96e0880e|
+00000bc0  63 64 32 61 36 39 62 39  38 61 35 33 62 38 63 32  |cd2a69b98a53b8c2|
+00000bd0  37 33 38 62 36 2f 73 75  62 6d 6f 64 2f 70 6b 67  |738b6/submod/pkg|
+00000be0  2f 55 54 05 00 01 c7 59  8b 5a 50 4b 01 02 00 00  |/UT....Y.ZPK....|
+00000bf0  0a 00 00 00 00 00 83 79  53 4c 8c 55 c5 b7 1f 00  |.......ySL.U....|
+00000c00  00 00 1f 00 00 00 45 00  09 00 00 00 00 00 01 00  |......E.........|
+00000c10  00 00 00 00 49 07 00 00  72 73 63 2d 76 67 6f 74  |....I...rsc-vgot|
+00000c20  65 73 74 31 2d 38 61 66  65 32 62 32 65 66 65 64  |est1-8afe2b2efed|
+00000c30  39 36 65 30 38 38 30 65  63 64 32 61 36 39 62 39  |96e0880ecd2a69b9|
+00000c40  38 61 35 33 62 38 63 32  37 33 38 62 36 2f 73 75  |8a53b8c2738b6/su|
+00000c50  62 6d 6f 64 2f 70 6b 67  2f 70 2e 67 6f 55 54 05  |bmod/pkg/p.goUT.|
+00000c60  00 01 c7 59 8b 5a 50 4b  05 06 00 00 00 00 0a 00  |...Y.ZPK........|
+00000c70  0a 00 92 04 00 00 d4 07  00 00 28 00 38 61 66 65  |..........(.8afe|
+00000c80  32 62 32 65 66 65 64 39  36 65 30 38 38 30 65 63  |2b2efed96e0880ec|
+00000c90  64 32 61 36 39 62 39 38  61 35 33 62 38 63 32 37  |d2a69b98a53b8c27|
+00000ca0  33 38 62 36                                       |38b6|
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/LICENSE?ref=submod%2Fv1.0.4
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: W/"6a66aea5eafe0ca6a688840c47219556c552488e"
+Last-Modified: Mon, 19 Feb 2018 23:12:07 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073496:B712569:5A8BB702
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4760
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.041536
+X-Xss-Protection: 1; mode=block
+
+{"name":"LICENSE","path":"LICENSE","sha":"6a66aea5eafe0ca6a688840c47219556c552488e","size":1479,"url":"https://api.github.com/repos/rsc/vgotest1/contents/LICENSE?ref=submod/v1.0.4","html_url":"https://github.com/rsc/vgotest1/blob/submod/v1.0.4/LICENSE","git_url":"https://api.github.com/repos/rsc/vgotest1/git/blobs/6a66aea5eafe0ca6a688840c47219556c552488e","download_url":"https://raw.githubusercontent.com/rsc/vgotest1/submod/v1.0.4/LICENSE?token=AAGWXiZ-naZN_q1a5xiQ66gmdc_PgKZ8ks5ai7c_wA%3D%3D","type":"file","content":"Q29weXJpZ2h0IChjKSAyMDA5IFRoZSBHbyBBdXRob3JzLiBBbGwgcmlnaHRz\nIHJlc2VydmVkLgoKUmVkaXN0cmlidXRpb24gYW5kIHVzZSBpbiBzb3VyY2Ug\nYW5kIGJpbmFyeSBmb3Jtcywgd2l0aCBvciB3aXRob3V0Cm1vZGlmaWNhdGlv\nbiwgYXJlIHBlcm1pdHRlZCBwcm92aWRlZCB0aGF0IHRoZSBmb2xsb3dpbmcg\nY29uZGl0aW9ucyBhcmUKbWV0OgoKICAgKiBSZWRpc3RyaWJ1dGlvbnMgb2Yg\nc291cmNlIGNvZGUgbXVzdCByZXRhaW4gdGhlIGFib3ZlIGNvcHlyaWdodApu\nb3RpY2UsIHRoaXMgbGlzdCBvZiBjb25kaXRpb25zIGFuZCB0aGUgZm9sbG93\naW5nIGRpc2NsYWltZXIuCiAgICogUmVkaXN0cmlidXRpb25zIGluIGJpbmFy\neSBmb3JtIG11c3QgcmVwcm9kdWNlIHRoZSBhYm92ZQpjb3B5cmlnaHQgbm90\naWNlLCB0aGlzIGxpc3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZvbGxvd2lu\nZyBkaXNjbGFpbWVyCmluIHRoZSBkb2N1bWVudGF0aW9uIGFuZC9vciBvdGhl\nciBtYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0aGUKZGlzdHJpYnV0aW9uLgog\nICAqIE5laXRoZXIgdGhlIG5hbWUgb2YgR29vZ2xlIEluYy4gbm9yIHRoZSBu\nYW1lcyBvZiBpdHMKY29udHJpYnV0b3JzIG1heSBiZSB1c2VkIHRvIGVuZG9y\nc2Ugb3IgcHJvbW90ZSBwcm9kdWN0cyBkZXJpdmVkIGZyb20KdGhpcyBzb2Z0\nd2FyZSB3aXRob3V0IHNwZWNpZmljIHByaW9yIHdyaXR0ZW4gcGVybWlzc2lv\nbi4KClRISVMgU09GVFdBUkUgSVMgUFJPVklERUQgQlkgVEhFIENPUFlSSUdI\nVCBIT0xERVJTIEFORCBDT05UUklCVVRPUlMKIkFTIElTIiBBTkQgQU5ZIEVY\nUFJFU1MgT1IgSU1QTElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBO\nT1QKTElNSVRFRCBUTywgVEhFIElNUExJRUQgV0FSUkFOVElFUyBPRiBNRVJD\nSEFOVEFCSUxJVFkgQU5EIEZJVE5FU1MgRk9SCkEgUEFSVElDVUxBUiBQVVJQ\nT1NFIEFSRSBESVNDTEFJTUVELiBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQ09Q\nWVJJR0hUCk9XTkVSIE9SIENPTlRSSUJVVE9SUyBCRSBMSUFCTEUgRk9SIEFO\nWSBESVJFQ1QsIElORElSRUNULCBJTkNJREVOVEFMLApTUEVDSUFMLCBFWEVN\nUExBUlksIE9SIENPTlNFUVVFTlRJQUwgREFNQUdFUyAoSU5DTFVESU5HLCBC\nVVQgTk9UCkxJTUlURUQgVE8sIFBST0NVUkVNRU5UIE9GIFNVQlNUSVRVVEUg\nR09PRFMgT1IgU0VSVklDRVM7IExPU1MgT0YgVVNFLApEQVRBLCBPUiBQUk9G\nSVRTOyBPUiBCVVNJTkVTUyBJTlRFUlJVUFRJT04pIEhPV0VWRVIgQ0FVU0VE\nIEFORCBPTiBBTlkKVEhFT1JZIE9GIExJQUJJTElUWSwgV0hFVEhFUiBJTiBD\nT05UUkFDVCwgU1RSSUNUIExJQUJJTElUWSwgT1IgVE9SVAooSU5DTFVESU5H\nIE5FR0xJR0VOQ0UgT1IgT1RIRVJXSVNFKSBBUklTSU5HIElOIEFOWSBXQVkg\nT1VUIE9GIFRIRSBVU0UKT0YgVEhJUyBTT0ZUV0FSRSwgRVZFTiBJRiBBRFZJ\nU0VEIE9GIFRIRSBQT1NTSUJJTElUWSBPRiBTVUNIIERBTUFHRS4K\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest1/contents/LICENSE?ref=submod/v1.0.4","git":"https://api.github.com/repos/rsc/vgotest1/git/blobs/6a66aea5eafe0ca6a688840c47219556c552488e","html":"https://github.com/rsc/vgotest1/blob/submod/v1.0.4/LICENSE"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest1/submod/v1.0.4/LICENSE?token=AAGWXiZ-naZN_q1a5xiQ66gmdc_PgKZ8ks5ai7c_wA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: "6a66aea5eafe0ca6a688840c47219556c552488e"
+Expires: Tue, 20 Feb 2018 05:54:55 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: c27937e5aa238206a5d4259b7c4a49686b46fd24
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: B606:0C0B:C213D3:CD8F05:5A8BB702
+X-Served-By: cache-bos8231-BOS
+X-Timer: S1519105795.034626,VS0,VE51
+X-Xss-Protection: 1; mode=block
+
+Copyright (c) 2009 The Go Authors. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+   * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+   * Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following disclaimer
+in the documentation and/or other materials provided with the
+distribution.
+   * Neither the name of Google Inc. nor the names of its
+contributors may be used to endorse or promote products derived from
+this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v1.1.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: W/"d4a02758c2c3e2eaa2079a9005dd1474"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:407349C:B71258F:5A8BB703
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4759
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.036393
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v1.1.0","url":"https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v1.1.0","object":{"sha":"b769f2de407a4db81af9c5de0a06016d60d2ea09","type":"commit","url":"https://api.github.com/repos/rsc/vgotest1/git/commits/b769f2de407a4db81af9c5de0a06016d60d2ea09"}}
+
+GET https://api.github.com/repos/rsc/vgotest1/commits?sha=b769f2de407a4db81af9c5de0a06016d60d2ea09&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: W/"56ec8bec0b835ca451c419e8c2247722"
+Last-Modified: Mon, 19 Feb 2018 23:13:36 GMT
+Link: <https://api.github.com/repositories/122129067/commits?sha=b769f2de407a4db81af9c5de0a06016d60d2ea09&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/122129067/commits?sha=b769f2de407a4db81af9c5de0a06016d60d2ea09&per_page=2&page=4>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40734A8:B7125BA:5A8BB703
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4758
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.051274
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"b769f2de407a4db81af9c5de0a06016d60d2ea09","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:13:36Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:13:36Z"},"message":"go.mod: add require submod v1.0.5","tree":{"sha":"c65d517673b540fa51033c41a00abefb2848b1bd","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/c65d517673b540fa51033c41a00abefb2848b1bd"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/b769f2de407a4db81af9c5de0a06016d60d2ea09","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/b769f2de407a4db81af9c5de0a06016d60d2ea09","html_url":"https://github.com/rsc/vgotest1/commit/b769f2de407a4db81af9c5de0a06016d60d2ea09","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/b769f2de407a4db81af9c5de0a06016d60d2ea09/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"70fd92eaa4dacf82548d0c6099f5b853ae2c1fc8","url":"https://api.github.com/repos/rsc/vgotest1/commits/70fd92eaa4dacf82548d0c6099f5b853ae2c1fc8","html_url":"https://github.com/rsc/vgotest1/commit/70fd92eaa4dacf82548d0c6099f5b853ae2c1fc8"}]},{"sha":"70fd92eaa4dacf82548d0c6099f5b853ae2c1fc8","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:12:59Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:12:59Z"},"message":"submod/go.mod: add require vgotest1 v1.1.0","tree":{"sha":"b7173536a68bd6607f93751ed5307a2df0107458","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/b7173536a68bd6607f93751ed5307a2df0107458"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/70fd92eaa4dacf82548d0c6099f5b853ae2c1fc8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/70fd92eaa4dacf82548d0c6099f5b853ae2c1fc8","html_url":"https://github.com/rsc/vgotest1/commit/70fd92eaa4dacf82548d0c6099f5b853ae2c1fc8","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/70fd92eaa4dacf82548d0c6099f5b853ae2c1fc8/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"8afe2b2efed96e0880ecd2a69b98a53b8c2738b6","url":"https://api.github.com/repos/rsc/vgotest1/commits/8afe2b2efed96e0880ecd2a69b98a53b8c2738b6","html_url":"https://github.com/rsc/vgotest1/commit/8afe2b2efed96e0880ecd2a69b98a53b8c2738b6"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v1.1.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: W/"6118671333bb539ae2f829d688aeca23014a381b"
+Last-Modified: Mon, 19 Feb 2018 23:13:36 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40734AE:B7125D1:5A8BB703
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4757
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.045921
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"6118671333bb539ae2f829d688aeca23014a381b","size":96,"url":"https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v1.1.0","html_url":"https://github.com/rsc/vgotest1/blob/v1.1.0/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest1/git/blobs/6118671333bb539ae2f829d688aeca23014a381b","download_url":"https://raw.githubusercontent.com/rsc/vgotest1/v1.1.0/go.mod?token=AAGWXixoMJO9FHXBc0cfQ7ZYSepQ2sI4ks5ai7c_wA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0MSIgLy8gcm9vdCBnby5t\nb2QKcmVxdWlyZSAiZ2l0aHViLmNvbS9yc2MvdmdvdGVzdDEvc3VibW9kIiB2\nMS4wLjUK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v1.1.0","git":"https://api.github.com/repos/rsc/vgotest1/git/blobs/6118671333bb539ae2f829d688aeca23014a381b","html":"https://github.com/rsc/vgotest1/blob/v1.1.0/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest1/v1.1.0/go.mod?token=AAGWXixoMJO9FHXBc0cfQ7ZYSepQ2sI4ks5ai7c_wA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: "6118671333bb539ae2f829d688aeca23014a381b"
+Expires: Tue, 20 Feb 2018 05:54:55 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 95ce0bdced85028830f5a6329588d46fd995c5c1
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 5D3E:0C08:1F4824:219CF2:5A8BB702
+X-Served-By: cache-bos8231-BOS
+X-Timer: S1519105795.314597,VS0,VE58
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest1" // root go.mod
+require "github.com/rsc/vgotest1/submod" v1.0.5
+
+
+GET https://api.github.com/repos/rsc/vgotest1/zipball/v1.1.0
+200 OK
+Access-Control-Allow-Origin: https://render.githubusercontent.com
+Content-Disposition: attachment; filename=rsc-vgotest1-v1.1.0-0-gb769f2de407a4db81af9c5de0a06016d60d2ea09.zip
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: application/zip
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: "b769f2de407a4db81af9c5de0a06016d60d2ea09"
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: B912:47C6:C9209:14F8CC:5A8BB702
+X-Xss-Protection: 1; mode=block
+
+00000000  50 4b 03 04 0a 00 00 00  00 00 b2 79 53 4c 00 00  |PK.........ySL..|
+00000010  00 00 00 00 00 00 00 00  00 00 36 00 09 00 72 73  |..........6...rs|
+00000020  63 2d 76 67 6f 74 65 73  74 31 2d 62 37 36 39 66  |c-vgotest1-b769f|
+00000030  32 64 65 34 30 37 61 34  64 62 38 31 61 66 39 63  |2de407a4db81af9c|
+00000040  35 64 65 30 61 30 36 30  31 36 64 36 30 64 32 65  |5de0a06016d60d2e|
+00000050  61 30 39 2f 55 54 05 00  01 20 5a 8b 5a 50 4b 03  |a09/UT... Z.ZPK.|
+00000060  04 0a 00 00 00 08 00 b2  79 53 4c 80 52 56 fa 0c  |........ySL.RV..|
+00000070  03 00 00 c7 05 00 00 3d  00 09 00 72 73 63 2d 76  |.......=...rsc-v|
+00000080  67 6f 74 65 73 74 31 2d  62 37 36 39 66 32 64 65  |gotest1-b769f2de|
+00000090  34 30 37 61 34 64 62 38  31 61 66 39 63 35 64 65  |407a4db81af9c5de|
+000000a0  30 61 30 36 30 31 36 64  36 30 64 32 65 61 30 39  |0a06016d60d2ea09|
+000000b0  2f 4c 49 43 45 4e 53 45  55 54 05 00 01 20 5a 8b  |/LICENSEUT... Z.|
+000000c0  5a a5 52 41 6e db 30 10  bc f3 15 8b 9c 92 42 70  |Z.RAn.0.......Bp|
+000000d0  83 de da 9e 68 89 b6 09  c8 a2 4a 52 71 7d 54 24  |....h.....JRq}T$|
+000000e0  3a 26 60 89 81 48 27 c8  ef bb 64 9c d8 69 0b f4  |:&`..H'...d..i..|
+000000f0  d0 8b 4d 71 b9 b3 33 b3  93 bb c7 97 c9 3e ec 03  |..Mq..3......>..|
+00000100  5c 77 37 f0 e5 f6 f6 2b  e8 bd 81 a5 03 7a 0c 7b  |\w7....+.....z.{|
+00000110  37 f9 19 d0 c3 01 d2 13  0f 93 f1 66 7a 32 fd 8c  |7..........fz2..|
+00000120  10 69 7a eb c3 64 ef 8f  c1 ba 11 da b1 87 a3 37  |.iz..d.........7|
+00000130  60 47 f0 ee 38 75 26 dd  dc db b1 9d 5e 60 e7 a6  |`G..8u&.....^`..|
+00000140  c1 67 f0 6c c3 1e dc 94  fe dd 31 90 c1 f5 76 67  |.g.l......1...vg|
+00000150  bb 36 02 64 d0 4e 06 1e  cd 34 d8 10 4c 0f 8f 93  |.6.d.N...4..L...|
+00000160  7b b2 3d 1e c2 be 0d f8  63 10 e4 70 70 cf 76 7c  |{.=.....c..pp.v||
+00000170  80 ce 8d bd 8d 4d 3e 36  91 c1 84 6f 84 00 c0 27  |.....M>6...o...'|
+00000180  f8 48 ca 83 db bd b1 e9  5c 6f 60 38 fa 80 1a 42  |.H......\o`8...B|
+00000190  8b 2c 23 64 7b ef 9e 62  e9 64 01 19 5d b0 9d c9  |.,#d{..b.d..]...|
+000001a0  b0 66 3d 1c 10 29 02 5c  4e 1b fb df a8 e0 b8 ee  |.f=..).\N.......|
+000001b0  d0 da c1 4c b3 bf 33 c0  49 17 26 bc 31 40 75 fd  |...L..3.I.&.1@u.|
+000001c0  11 59 bd 93 20 ef 24 e0  7f 48 90 93 b0 de 75 c7  |.Y.. .$..H....u.|
+000001d0  c1 8c a1 7d db cd 67 b4  dd 61 65 82 a1 0d 66 b2  |...}..g..ae...f.|
+000001e0  ed c1 9f 2d 4e 7b c1 22  b9 a4 7e d2 53 19 9b da  |...-N{."..~.S...|
+000001f0  22 ea d8 0e 26 92 59 3a  f7 70 30 c0 c7 6e 86 6c  |"...&.Y:.p0..n.l|
+00000200  cf b5 e4 b7 0d 1e c5 8c  af 38 98 1f 1c f8 02 f7  |.........8......|
+00000210  26 86 03 79 3b 30 63 8f  b7 26 e6 00 09 0c 2e 18  |&..y;0c..&......|
+00000220  78 75 03 e3 d5 23 33 4c  17 ec b0 40 92 7e ef 76  |xu...#3L...@.~.v|
+00000230  e1 39 26 e3 94 19 f0 8f  a6 8b a1 c1 26 1b a3 34  |.9&.........&..4|
+00000240  c5 b8 8c af c1 f1 3e f1  26 7a c5 15 28 b1 d0 1b  |......>.&z..(...|
+00000250  2a 19 e0 b9 96 e2 8e 17  ac 80 f9 16 f4 8a 41 2e  |*.............A.|
+00000260  ea ad e4 cb 95 86 95 28  0b 26 15 d0 aa c0 db 4a  |.......(.&.....J|
+00000270  4b 3e 6f b4 90 8a 5c 51  85 9d 57 a9 40 ab 2d b0  |K>o...\Q..W.@.-.|
+00000280  9f b5 64 4a 81 90 c0 d7  75 c9 11 0c d1 25 ad 34  |..dJ....u....%.4|
+00000290  67 2a 03 5e e5 65 53 f0  6a 99 01 02 40 25 34 29  |g*.^.eS.j...@%4)|
+000002a0  f9 9a 6b 7c a6 45 96 86  fe d9 06 62 01 6b 26 f3  |..k|.E.....b.k&.|
+000002b0  15 7e d2 39 2f b9 de a6  79 0b ae ab 38 6b 21 24  |.~.9/...y...8k!$|
+000002c0  a1 50 53 a9 79 de 94 54  42 dd c8 5a 28 06 51 56  |.PS.y..TB..Z(.QV|
+000002d0  c1 55 5e 52 be 66 c5 0c  a7 e3 44 60 77 ac d2 a0  |.U^R.f....D`w...|
+000002e0  56 b4 2c 3f aa 24 62 53  31 19 a9 5f 4a 84 39 83  |V.,?.$bS1.._J.9.|
+000002f0  92 d3 79 c9 e2 a0 24 b2  e0 92 e5 3a aa 39 9f 72  |..y...$....:.9.r|
+00000300  34 0e e9 95 19 51 35 cb  39 1e d0 0b 86 5a a8 dc  |4....Q5.9....Z..|
+00000310  66 27 4c c5 7e 34 f8 08  8b 50 d0 35 5d a2 b4 eb  |f'L.~4...P.5]...|
+00000320  7f 38 82 2b c9 1b c9 d6  91 32 da a0 9a b9 d2 5c  |.8.+.....2.....\|
+00000330  37 9a c1 52 88 22 f9 ac  98 bc e3 39 53 df a1 14  |7..R.".....9S...|
+00000340  2a 99 d5 28 96 91 82 6a  9a 06 23 04 3a 85 65 3c  |*..(...j..#.:.e<|
+00000350  cf 1b c5 93 67 bc d2 4c  ca a6 d6 5c 54 37 b8 de  |....g..L...\T7..|
+00000360  0d ba 82 1c 29 b6 16 c9  5c 51 45 a9 98 11 26 e4  |....)...\QE...&.|
+00000370  36 82 46 0f 92 f7 19 6c  56 0c ef 65 f4 33 39 45  |6.F....lV..e.39E|
+00000380  a3 05 0a 1d cb f5 e5 33  9c 87 06 6a 72 d6 08 15  |.......3...jr...|
+00000390  5b 96 7c c9 aa 9c c5 aa  88 28 1b ae d8 0d ae 8a  |[.|......(......|
+000003a0  ab f8 80 a7 b1 b8 7c 9c  d9 24 c9 71 45 c8 8a a4  |......|..$.qE...|
+000003b0  e3 45 60 b3 b4 48 e0 0b  a0 c5 1d 8f b4 4f 8f 71  |.E`..H.......O.q|
+000003c0  f5 8a 9f 62 92 2c cb 57  27 bb 67 e4 17 50 4b 03  |...b.,.W'.g..PK.|
+000003d0  04 0a 00 00 00 08 00 b2  79 53 4c cf 92 a4 53 40  |........ySL...S@|
+000003e0  00 00 00 43 00 00 00 3f  00 09 00 72 73 63 2d 76  |...C...?...rsc-v|
+000003f0  67 6f 74 65 73 74 31 2d  62 37 36 39 66 32 64 65  |gotest1-b769f2de|
+00000400  34 30 37 61 34 64 62 38  31 61 66 39 63 35 64 65  |407a4db81af9c5de|
+00000410  30 61 30 36 30 31 36 64  36 30 64 32 65 61 30 39  |0a06016d60d2ea09|
+00000420  2f 52 45 41 44 4d 45 2e  6d 64 55 54 05 00 01 20  |/README.mdUT... |
+00000430  5a 8b 5a 15 c8 b1 09 c0  30 0c 04 c0 de 53 7c 97  |Z.Z.....0....S|.|
+00000440  ce d3 78 81 40 de 96 20  58 46 92 33 7f 12 b8 ea  |..x.@.. XF.3....|
+00000450  9a 68 e0 73 22 19 09 e7  32 74 73 3c f4 50 9b bc  |.h.s"...2ts<.P..|
+00000460  30 ac 96 26 74 1e 81 69  29 3a 07 76 b0 ef 1b ff  |0..&t..i):.v....|
+00000470  d6 f2 02 50 4b 03 04 0a  00 00 00 08 00 b2 79 53  |...PK.........yS|
+00000480  4c 75 6a f6 fe 47 00 00  00 60 00 00 00 3c 00 09  |Luj..G...`...<..|
+00000490  00 72 73 63 2d 76 67 6f  74 65 73 74 31 2d 62 37  |.rsc-vgotest1-b7|
+000004a0  36 39 66 32 64 65 34 30  37 61 34 64 62 38 31 61  |69f2de407a4db81a|
+000004b0  66 39 63 35 64 65 30 61  30 36 30 31 36 64 36 30  |f9c5de0a06016d60|
+000004c0  64 32 65 61 30 39 2f 67  6f 2e 6d 6f 64 55 54 05  |d2ea09/go.modUT.|
+000004d0  00 01 20 5a 8b 5a 75 cb  cd 0d 80 20 0c 06 d0 3b  |.. Z.Zu.... ...;|
+000004e0  53 34 0c d0 ca c1 85 f8  09 92 48 be 58 5a e6 d7  |S4........H.XZ..|
+000004f0  05 bc bf 37 51 fd 6e 14  fb b0 cb 33 17 4c d1 55  |...7Q.n....3.L.U|
+00000500  64 77 58 5b 96 22 89 90  02 46 1d 3c 51 83 b6 c7  |dwX[."...F.<Q...|
+00000510  87 fe 07 59 9e 3f 17 69  27 3e f8 0c 2f 50 4b 03  |...Y.?.i'>../PK.|
+00000520  04 0a 00 00 00 00 00 b2  79 53 4c 00 00 00 00 00  |........ySL.....|
+00000530  00 00 00 00 00 00 00 3a  00 09 00 72 73 63 2d 76  |.......:...rsc-v|
+00000540  67 6f 74 65 73 74 31 2d  62 37 36 39 66 32 64 65  |gotest1-b769f2de|
+00000550  34 30 37 61 34 64 62 38  31 61 66 39 63 35 64 65  |407a4db81af9c5de|
+00000560  30 61 30 36 30 31 36 64  36 30 64 32 65 61 30 39  |0a06016d60d2ea09|
+00000570  2f 70 6b 67 2f 55 54 05  00 01 20 5a 8b 5a 50 4b  |/pkg/UT... Z.ZPK|
+00000580  03 04 0a 00 00 00 00 00  b2 79 53 4c 77 23 4a 34  |.........ySLw#J4|
+00000590  16 00 00 00 16 00 00 00  3e 00 09 00 72 73 63 2d  |........>...rsc-|
+000005a0  76 67 6f 74 65 73 74 31  2d 62 37 36 39 66 32 64  |vgotest1-b769f2d|
+000005b0  65 34 30 37 61 34 64 62  38 31 61 66 39 63 35 64  |e407a4db81af9c5d|
+000005c0  65 30 61 30 36 30 31 36  64 36 30 64 32 65 61 30  |e0a06016d60d2ea0|
+000005d0  39 2f 70 6b 67 2f 70 2e  67 6f 55 54 05 00 01 20  |9/pkg/p.goUT... |
+000005e0  5a 8b 5a 70 61 63 6b 61  67 65 20 70 20 2f 2f 20  |Z.Zpackage p // |
+000005f0  70 6b 67 2f 70 2e 67 6f  0a 50 4b 03 04 0a 00 00  |pkg/p.go.PK.....|
+00000600  00 00 00 b2 79 53 4c 00  00 00 00 00 00 00 00 00  |....ySL.........|
+00000610  00 00 00 3d 00 09 00 72  73 63 2d 76 67 6f 74 65  |...=...rsc-vgote|
+00000620  73 74 31 2d 62 37 36 39  66 32 64 65 34 30 37 61  |st1-b769f2de407a|
+00000630  34 64 62 38 31 61 66 39  63 35 64 65 30 61 30 36  |4db81af9c5de0a06|
+00000640  30 31 36 64 36 30 64 32  65 61 30 39 2f 73 75 62  |016d60d2ea09/sub|
+00000650  6d 6f 64 2f 55 54 05 00  01 20 5a 8b 5a 50 4b 03  |mod/UT... Z.ZPK.|
+00000660  04 0a 00 00 00 08 00 b2  79 53 4c e4 31 54 a7 42  |........ySL.1T.B|
+00000670  00 00 00 5a 00 00 00 43  00 09 00 72 73 63 2d 76  |...Z...C...rsc-v|
+00000680  67 6f 74 65 73 74 31 2d  62 37 36 39 66 32 64 65  |gotest1-b769f2de|
+00000690  34 30 37 61 34 64 62 38  31 61 66 39 63 35 64 65  |407a4db81af9c5de|
+000006a0  30 61 30 36 30 31 36 64  36 30 64 32 65 61 30 39  |0a06016d60d2ea09|
+000006b0  2f 73 75 62 6d 6f 64 2f  67 6f 2e 6d 6f 64 55 54  |/submod/go.modUT|
+000006c0  05 00 01 20 5a 8b 5a cb  cd 4f 29 cd 49 55 50 4a  |... Z.Z..O).IUPJ|
+000006d0  cf 2c c9 28 4d d2 4b ce  cf d5 2f 4b cf 2f 49 2d  |.,.(M.K.../K./I-|
+000006e0  2e 31 d4 2f 2e 4d ca cd  4f 51 52 d0 d7 57 80 30  |.1./.M..OQR..W.0|
+000006f0  f5 d3 f3 f5 80 14 57 51  6a 61 69 66 11 76 5d 4a  |......WQjaif.v]J|
+00000700  0a 65 86 7a 86 7a 06 5c  00 50 4b 03 04 0a 00 00  |.e.z.z.\.PK.....|
+00000710  00 00 00 b2 79 53 4c 00  00 00 00 00 00 00 00 00  |....ySL.........|
+00000720  00 00 00 41 00 09 00 72  73 63 2d 76 67 6f 74 65  |...A...rsc-vgote|
+00000730  73 74 31 2d 62 37 36 39  66 32 64 65 34 30 37 61  |st1-b769f2de407a|
+00000740  34 64 62 38 31 61 66 39  63 35 64 65 30 61 30 36  |4db81af9c5de0a06|
+00000750  30 31 36 64 36 30 64 32  65 61 30 39 2f 73 75 62  |016d60d2ea09/sub|
+00000760  6d 6f 64 2f 70 6b 67 2f  55 54 05 00 01 20 5a 8b  |mod/pkg/UT... Z.|
+00000770  5a 50 4b 03 04 0a 00 00  00 00 00 b2 79 53 4c 8c  |ZPK.........ySL.|
+00000780  55 c5 b7 1f 00 00 00 1f  00 00 00 45 00 09 00 72  |U..........E...r|
+00000790  73 63 2d 76 67 6f 74 65  73 74 31 2d 62 37 36 39  |sc-vgotest1-b769|
+000007a0  66 32 64 65 34 30 37 61  34 64 62 38 31 61 66 39  |f2de407a4db81af9|
+000007b0  63 35 64 65 30 61 30 36  30 31 36 64 36 30 64 32  |c5de0a06016d60d2|
+000007c0  65 61 30 39 2f 73 75 62  6d 6f 64 2f 70 6b 67 2f  |ea09/submod/pkg/|
+000007d0  70 2e 67 6f 55 54 05 00  01 20 5a 8b 5a 70 61 63  |p.goUT... Z.Zpac|
+000007e0  6b 61 67 65 20 70 6b 67  20 2f 2f 20 73 75 62 6d  |kage pkg // subm|
+000007f0  6f 64 2f 70 6b 67 2f 70  2e 67 6f 0a 50 4b 01 02  |od/pkg/p.go.PK..|
+00000800  00 00 0a 00 00 00 00 00  b2 79 53 4c 00 00 00 00  |.........ySL....|
+00000810  00 00 00 00 00 00 00 00  36 00 09 00 00 00 00 00  |........6.......|
+00000820  00 00 10 00 00 00 00 00  00 00 72 73 63 2d 76 67  |..........rsc-vg|
+00000830  6f 74 65 73 74 31 2d 62  37 36 39 66 32 64 65 34  |otest1-b769f2de4|
+00000840  30 37 61 34 64 62 38 31  61 66 39 63 35 64 65 30  |07a4db81af9c5de0|
+00000850  61 30 36 30 31 36 64 36  30 64 32 65 61 30 39 2f  |a06016d60d2ea09/|
+00000860  55 54 05 00 01 20 5a 8b  5a 50 4b 01 02 00 00 0a  |UT... Z.ZPK.....|
+00000870  00 00 00 08 00 b2 79 53  4c 80 52 56 fa 0c 03 00  |......ySL.RV....|
+00000880  00 c7 05 00 00 3d 00 09  00 00 00 00 00 01 00 00  |.....=..........|
+00000890  00 00 00 5d 00 00 00 72  73 63 2d 76 67 6f 74 65  |...]...rsc-vgote|
+000008a0  73 74 31 2d 62 37 36 39  66 32 64 65 34 30 37 61  |st1-b769f2de407a|
+000008b0  34 64 62 38 31 61 66 39  63 35 64 65 30 61 30 36  |4db81af9c5de0a06|
+000008c0  30 31 36 64 36 30 64 32  65 61 30 39 2f 4c 49 43  |016d60d2ea09/LIC|
+000008d0  45 4e 53 45 55 54 05 00  01 20 5a 8b 5a 50 4b 01  |ENSEUT... Z.ZPK.|
+000008e0  02 00 00 0a 00 00 00 08  00 b2 79 53 4c cf 92 a4  |..........ySL...|
+000008f0  53 40 00 00 00 43 00 00  00 3f 00 09 00 00 00 00  |S@...C...?......|
+00000900  00 01 00 00 00 00 00 cd  03 00 00 72 73 63 2d 76  |...........rsc-v|
+00000910  67 6f 74 65 73 74 31 2d  62 37 36 39 66 32 64 65  |gotest1-b769f2de|
+00000920  34 30 37 61 34 64 62 38  31 61 66 39 63 35 64 65  |407a4db81af9c5de|
+00000930  30 61 30 36 30 31 36 64  36 30 64 32 65 61 30 39  |0a06016d60d2ea09|
+00000940  2f 52 45 41 44 4d 45 2e  6d 64 55 54 05 00 01 20  |/README.mdUT... |
+00000950  5a 8b 5a 50 4b 01 02 00  00 0a 00 00 00 08 00 b2  |Z.ZPK...........|
+00000960  79 53 4c 75 6a f6 fe 47  00 00 00 60 00 00 00 3c  |ySLuj..G...`...<|
+00000970  00 09 00 00 00 00 00 01  00 00 00 00 00 73 04 00  |.............s..|
+00000980  00 72 73 63 2d 76 67 6f  74 65 73 74 31 2d 62 37  |.rsc-vgotest1-b7|
+00000990  36 39 66 32 64 65 34 30  37 61 34 64 62 38 31 61  |69f2de407a4db81a|
+000009a0  66 39 63 35 64 65 30 61  30 36 30 31 36 64 36 30  |f9c5de0a06016d60|
+000009b0  64 32 65 61 30 39 2f 67  6f 2e 6d 6f 64 55 54 05  |d2ea09/go.modUT.|
+000009c0  00 01 20 5a 8b 5a 50 4b  01 02 00 00 0a 00 00 00  |.. Z.ZPK........|
+000009d0  00 00 b2 79 53 4c 00 00  00 00 00 00 00 00 00 00  |...ySL..........|
+000009e0  00 00 3a 00 09 00 00 00  00 00 00 00 10 00 00 00  |..:.............|
+000009f0  1d 05 00 00 72 73 63 2d  76 67 6f 74 65 73 74 31  |....rsc-vgotest1|
+00000a00  2d 62 37 36 39 66 32 64  65 34 30 37 61 34 64 62  |-b769f2de407a4db|
+00000a10  38 31 61 66 39 63 35 64  65 30 61 30 36 30 31 36  |81af9c5de0a06016|
+00000a20  64 36 30 64 32 65 61 30  39 2f 70 6b 67 2f 55 54  |d60d2ea09/pkg/UT|
+00000a30  05 00 01 20 5a 8b 5a 50  4b 01 02 00 00 0a 00 00  |... Z.ZPK.......|
+00000a40  00 00 00 b2 79 53 4c 77  23 4a 34 16 00 00 00 16  |....ySLw#J4.....|
+00000a50  00 00 00 3e 00 09 00 00  00 00 00 01 00 00 00 00  |...>............|
+00000a60  00 7e 05 00 00 72 73 63  2d 76 67 6f 74 65 73 74  |.~...rsc-vgotest|
+00000a70  31 2d 62 37 36 39 66 32  64 65 34 30 37 61 34 64  |1-b769f2de407a4d|
+00000a80  62 38 31 61 66 39 63 35  64 65 30 61 30 36 30 31  |b81af9c5de0a0601|
+00000a90  36 64 36 30 64 32 65 61  30 39 2f 70 6b 67 2f 70  |6d60d2ea09/pkg/p|
+00000aa0  2e 67 6f 55 54 05 00 01  20 5a 8b 5a 50 4b 01 02  |.goUT... Z.ZPK..|
+00000ab0  00 00 0a 00 00 00 00 00  b2 79 53 4c 00 00 00 00  |.........ySL....|
+00000ac0  00 00 00 00 00 00 00 00  3d 00 09 00 00 00 00 00  |........=.......|
+00000ad0  00 00 10 00 00 00 f9 05  00 00 72 73 63 2d 76 67  |..........rsc-vg|
+00000ae0  6f 74 65 73 74 31 2d 62  37 36 39 66 32 64 65 34  |otest1-b769f2de4|
+00000af0  30 37 61 34 64 62 38 31  61 66 39 63 35 64 65 30  |07a4db81af9c5de0|
+00000b00  61 30 36 30 31 36 64 36  30 64 32 65 61 30 39 2f  |a06016d60d2ea09/|
+00000b10  73 75 62 6d 6f 64 2f 55  54 05 00 01 20 5a 8b 5a  |submod/UT... Z.Z|
+00000b20  50 4b 01 02 00 00 0a 00  00 00 08 00 b2 79 53 4c  |PK...........ySL|
+00000b30  e4 31 54 a7 42 00 00 00  5a 00 00 00 43 00 09 00  |.1T.B...Z...C...|
+00000b40  00 00 00 00 01 00 00 00  00 00 5d 06 00 00 72 73  |..........]...rs|
+00000b50  63 2d 76 67 6f 74 65 73  74 31 2d 62 37 36 39 66  |c-vgotest1-b769f|
+00000b60  32 64 65 34 30 37 61 34  64 62 38 31 61 66 39 63  |2de407a4db81af9c|
+00000b70  35 64 65 30 61 30 36 30  31 36 64 36 30 64 32 65  |5de0a06016d60d2e|
+00000b80  61 30 39 2f 73 75 62 6d  6f 64 2f 67 6f 2e 6d 6f  |a09/submod/go.mo|
+00000b90  64 55 54 05 00 01 20 5a  8b 5a 50 4b 01 02 00 00  |dUT... Z.ZPK....|
+00000ba0  0a 00 00 00 00 00 b2 79  53 4c 00 00 00 00 00 00  |.......ySL......|
+00000bb0  00 00 00 00 00 00 41 00  09 00 00 00 00 00 00 00  |......A.........|
+00000bc0  10 00 00 00 09 07 00 00  72 73 63 2d 76 67 6f 74  |........rsc-vgot|
+00000bd0  65 73 74 31 2d 62 37 36  39 66 32 64 65 34 30 37  |est1-b769f2de407|
+00000be0  61 34 64 62 38 31 61 66  39 63 35 64 65 30 61 30  |a4db81af9c5de0a0|
+00000bf0  36 30 31 36 64 36 30 64  32 65 61 30 39 2f 73 75  |6016d60d2ea09/su|
+00000c00  62 6d 6f 64 2f 70 6b 67  2f 55 54 05 00 01 20 5a  |bmod/pkg/UT... Z|
+00000c10  8b 5a 50 4b 01 02 00 00  0a 00 00 00 00 00 b2 79  |.ZPK...........y|
+00000c20  53 4c 8c 55 c5 b7 1f 00  00 00 1f 00 00 00 45 00  |SL.U..........E.|
+00000c30  09 00 00 00 00 00 01 00  00 00 00 00 71 07 00 00  |............q...|
+00000c40  72 73 63 2d 76 67 6f 74  65 73 74 31 2d 62 37 36  |rsc-vgotest1-b76|
+00000c50  39 66 32 64 65 34 30 37  61 34 64 62 38 31 61 66  |9f2de407a4db81af|
+00000c60  39 63 35 64 65 30 61 30  36 30 31 36 64 36 30 64  |9c5de0a06016d60d|
+00000c70  32 65 61 30 39 2f 73 75  62 6d 6f 64 2f 70 6b 67  |2ea09/submod/pkg|
+00000c80  2f 70 2e 67 6f 55 54 05  00 01 20 5a 8b 5a 50 4b  |/p.goUT... Z.ZPK|
+00000c90  05 06 00 00 00 00 0a 00  0a 00 92 04 00 00 fc 07  |................|
+00000ca0  00 00 28 00 62 37 36 39  66 32 64 65 34 30 37 61  |..(.b769f2de407a|
+00000cb0  34 64 62 38 31 61 66 39  63 35 64 65 30 61 30 36  |4db81af9c5de0a06|
+00000cc0  30 31 36 64 36 30 64 32  65 61 30 39              |016d60d2ea09|
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v2.0.1
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: W/"21785e56e212489f28b251b7e3b52599"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40734CC:B712604:5A8BB703
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4756
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.029853
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.1","url":"https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v2.0.1","object":{"sha":"ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9","type":"commit","url":"https://api.github.com/repos/rsc/vgotest1/git/commits/ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9"}}
+
+GET https://api.github.com/repos/rsc/vgotest1/commits?sha=ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: W/"19af76e078c927db4c1525f73fa7ed5f"
+Last-Modified: Mon, 19 Feb 2018 23:14:23 GMT
+Link: <https://api.github.com/repositories/122129067/commits?sha=ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/122129067/commits?sha=ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9&per_page=2&page=2>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40734D5:B712633:5A8BB703
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4755
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.037261
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:14:23Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:14:23Z"},"message":"go.mod v2","tree":{"sha":"c49118385649d2ef3ca373c7ab77eb1496ed27bb","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/c49118385649d2ef3ca373c7ab77eb1496ed27bb"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9","html_url":"https://github.com/rsc/vgotest1/commit/ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128","html_url":"https://github.com/rsc/vgotest1/commit/80d85c5d4d17598a0e9055e7c175a32b415d6128"}]},{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:10:06Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:10:06Z"},"message":"add pkg/p.go","tree":{"sha":"bfe3c5c9c81e66347ab3fa320ad281acd3d1cfee","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/bfe3c5c9c81e66347ab3fa320ad281acd3d1cfee"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128","html_url":"https://github.com/rsc/vgotest1/commit/80d85c5d4d17598a0e9055e7c175a32b415d6128","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"1975be90145f99f2fed5cedad94dc100fff5c532","url":"https://api.github.com/repos/rsc/vgotest1/commits/1975be90145f99f2fed5cedad94dc100fff5c532","html_url":"https://github.com/rsc/vgotest1/commit/1975be90145f99f2fed5cedad94dc100fff5c532"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.1
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: W/"c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00"
+Last-Modified: Mon, 19 Feb 2018 23:14:23 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40734DC:B712646:5A8BB703
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4754
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.045867
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00","size":51,"url":"https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.1","html_url":"https://github.com/rsc/vgotest1/blob/v2.0.1/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest1/git/blobs/c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00","download_url":"https://raw.githubusercontent.com/rsc/vgotest1/v2.0.1/go.mod?token=AAGWXhBU1N9uU_Lo-RycMZgvShtPyI5Xks5ai7c_wA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0MS92MiIgLy8gcm9vdCBn\nby5tb2QK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.1","git":"https://api.github.com/repos/rsc/vgotest1/git/blobs/c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00","html":"https://github.com/rsc/vgotest1/blob/v2.0.1/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest1/v2.0.1/go.mod?token=AAGWXhBU1N9uU_Lo-RycMZgvShtPyI5Xks5ai7c_wA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: "c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00"
+Expires: Tue, 20 Feb 2018 05:54:55 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 09ff24c62c337e82934199a15f183739dd4c380c
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 385C:63CF:B33BA0:B96609:5A8BB702
+X-Served-By: cache-bos8231-BOS
+X-Timer: S1519105796.702608,VS0,VE53
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest1/v2" // root go.mod
+
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/v2%2Fgo.mod?ref=v2.0.1
+404 Not Found
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Server: GitHub.com
+Status: 404 Not Found
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40734EC:B712664:5A8BB703
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4753
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.041276
+X-Xss-Protection: 1; mode=block
+
+{"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-contents"}
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v2.0.3
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: W/"9909c8515ce174294d85e3e2b455d5ba"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40734F5:B712688:5A8BB703
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4752
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.029183
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.3","url":"https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v2.0.3","object":{"sha":"f18795870fb14388a21ef3ebc1d75911c8694f31","type":"commit","url":"https://api.github.com/repos/rsc/vgotest1/git/commits/f18795870fb14388a21ef3ebc1d75911c8694f31"}}
+
+GET https://api.github.com/repos/rsc/vgotest1/commits?sha=f18795870fb14388a21ef3ebc1d75911c8694f31&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:55 GMT
+Etag: W/"9a93cba8b629f7558bd53287d93a8e6f"
+Last-Modified: Mon, 19 Feb 2018 23:16:04 GMT
+Link: <https://api.github.com/repositories/122129067/commits?sha=f18795870fb14388a21ef3ebc1d75911c8694f31&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/122129067/commits?sha=f18795870fb14388a21ef3ebc1d75911c8694f31&per_page=2&page=3>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40734FA:B71269A:5A8BB703
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4751
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.050704
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"f18795870fb14388a21ef3ebc1d75911c8694f31","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:16:04Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:16:04Z"},"message":"v2/go.mod: bad go.mod (no version)","tree":{"sha":"889a6ddf76b7753b95ae67b6342886af0d9535f8","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/889a6ddf76b7753b95ae67b6342886af0d9535f8"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/f18795870fb14388a21ef3ebc1d75911c8694f31","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/f18795870fb14388a21ef3ebc1d75911c8694f31","html_url":"https://github.com/rsc/vgotest1/commit/f18795870fb14388a21ef3ebc1d75911c8694f31","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/f18795870fb14388a21ef3ebc1d75911c8694f31/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"f7b23352af1cd750b11e4673b20b24c2d239430a","url":"https://api.github.com/repos/rsc/vgotest1/commits/f7b23352af1cd750b11e4673b20b24c2d239430a","html_url":"https://github.com/rsc/vgotest1/commit/f7b23352af1cd750b11e4673b20b24c2d239430a"}]},{"sha":"f7b23352af1cd750b11e4673b20b24c2d239430a","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:15:11Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:15:11Z"},"message":"submod/pkg/p.go","tree":{"sha":"2b2281592abcbff7c896a057b29a7786cc794ce2","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/2b2281592abcbff7c896a057b29a7786cc794ce2"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/f7b23352af1cd750b11e4673b20b24c2d239430a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/f7b23352af1cd750b11e4673b20b24c2d239430a","html_url":"https://github.com/rsc/vgotest1/commit/f7b23352af1cd750b11e4673b20b24c2d239430a","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/f7b23352af1cd750b11e4673b20b24c2d239430a/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9","url":"https://api.github.com/repos/rsc/vgotest1/commits/ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9","html_url":"https://github.com/rsc/vgotest1/commit/ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.3
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: W/"c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00"
+Last-Modified: Mon, 19 Feb 2018 23:16:04 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073500:B7126AF:5A8BB703
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4750
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.050307
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00","size":51,"url":"https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.3","html_url":"https://github.com/rsc/vgotest1/blob/v2.0.3/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest1/git/blobs/c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00","download_url":"https://raw.githubusercontent.com/rsc/vgotest1/v2.0.3/go.mod?token=AAGWXt-fjNsTY-LP_pv5auGNkTjyB5Rtks5ai7dAwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0MS92MiIgLy8gcm9vdCBn\nby5tb2QK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.3","git":"https://api.github.com/repos/rsc/vgotest1/git/blobs/c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00","html":"https://github.com/rsc/vgotest1/blob/v2.0.3/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest1/v2.0.3/go.mod?token=AAGWXt-fjNsTY-LP_pv5auGNkTjyB5Rtks5ai7dAwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: "c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00"
+Expires: Tue, 20 Feb 2018 05:54:56 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: e3ae5ee5c475a8d60ff832260d54246a710606df
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: B606:0C0B:C213FD:CD8F12:5A8BB703
+X-Served-By: cache-bos8231-BOS
+X-Timer: S1519105796.048492,VS0,VE49
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest1/v2" // root go.mod
+
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/v2%2Fgo.mod?ref=v2.0.3
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: W/"673fb83f9c3cc1a9fb16c41e79aa2227a3cfa886"
+Last-Modified: Mon, 19 Feb 2018 23:16:04 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:407350E:B7126C5:5A8BB704
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4749
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.039236
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"673fb83f9c3cc1a9fb16c41e79aa2227a3cfa886","size":45,"url":"https://api.github.com/repos/rsc/vgotest1/contents/v2/go.mod?ref=v2.0.3","html_url":"https://github.com/rsc/vgotest1/blob/v2.0.3/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest1/git/blobs/673fb83f9c3cc1a9fb16c41e79aa2227a3cfa886","download_url":"https://raw.githubusercontent.com/rsc/vgotest1/v2.0.3/v2/go.mod?token=AAGWXtaqutzl7TwBq84r19Ezthh1JAczks5ai7dAwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0IiAvLyB2Mi9nby5tb2QK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest1/contents/v2/go.mod?ref=v2.0.3","git":"https://api.github.com/repos/rsc/vgotest1/git/blobs/673fb83f9c3cc1a9fb16c41e79aa2227a3cfa886","html":"https://github.com/rsc/vgotest1/blob/v2.0.3/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest1/v2.0.3/v2/go.mod?token=AAGWXtaqutzl7TwBq84r19Ezthh1JAczks5ai7dAwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: "673fb83f9c3cc1a9fb16c41e79aa2227a3cfa886"
+Expires: Tue, 20 Feb 2018 05:54:56 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: f440563c976d5a7d7eb1297927d23e2ce6644e51
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: F49A:1D784:95FED8:9D9643:5A8BB701
+X-Served-By: cache-bos8231-BOS
+X-Timer: S1519105796.172624,VS0,VE49
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest" // v2/go.mod
+
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v2.0.4
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: W/"8cf1a453ee291d1bb26d7612364b973d"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:407351C:B7126EE:5A8BB704
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4748
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.030399
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.4","url":"https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v2.0.4","object":{"sha":"1f863feb76bc7029b78b21c5375644838962f88d","type":"commit","url":"https://api.github.com/repos/rsc/vgotest1/git/commits/1f863feb76bc7029b78b21c5375644838962f88d"}}
+
+GET https://api.github.com/repos/rsc/vgotest1/commits?sha=1f863feb76bc7029b78b21c5375644838962f88d&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: W/"a015bfa76ed5e0fb945134b6685c4311"
+Last-Modified: Tue, 20 Feb 2018 00:03:38 GMT
+Link: <https://api.github.com/repositories/122129067/commits?sha=1f863feb76bc7029b78b21c5375644838962f88d&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/122129067/commits?sha=1f863feb76bc7029b78b21c5375644838962f88d&per_page=2&page=3>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073521:B712716:5A8BB704
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4747
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.040432
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"1f863feb76bc7029b78b21c5375644838962f88d","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:16:38Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-20T00:03:38Z"},"message":"v2/go.mod: fix","tree":{"sha":"1802e18e029c65abca5ccb29f92b218ff248c386","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/1802e18e029c65abca5ccb29f92b218ff248c386"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/1f863feb76bc7029b78b21c5375644838962f88d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/1f863feb76bc7029b78b21c5375644838962f88d","html_url":"https://github.com/rsc/vgotest1/commit/1f863feb76bc7029b78b21c5375644838962f88d","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/1f863feb76bc7029b78b21c5375644838962f88d/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"f18795870fb14388a21ef3ebc1d75911c8694f31","url":"https://api.github.com/repos/rsc/vgotest1/commits/f18795870fb14388a21ef3ebc1d75911c8694f31","html_url":"https://github.com/rsc/vgotest1/commit/f18795870fb14388a21ef3ebc1d75911c8694f31"}]},{"sha":"f18795870fb14388a21ef3ebc1d75911c8694f31","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:16:04Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:16:04Z"},"message":"v2/go.mod: bad go.mod (no version)","tree":{"sha":"889a6ddf76b7753b95ae67b6342886af0d9535f8","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/889a6ddf76b7753b95ae67b6342886af0d9535f8"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/f18795870fb14388a21ef3ebc1d75911c8694f31","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/f18795870fb14388a21ef3ebc1d75911c8694f31","html_url":"https://github.com/rsc/vgotest1/commit/f18795870fb14388a21ef3ebc1d75911c8694f31","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/f18795870fb14388a21ef3ebc1d75911c8694f31/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"f7b23352af1cd750b11e4673b20b24c2d239430a","url":"https://api.github.com/repos/rsc/vgotest1/commits/f7b23352af1cd750b11e4673b20b24c2d239430a","html_url":"https://github.com/rsc/vgotest1/commit/f7b23352af1cd750b11e4673b20b24c2d239430a"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.4
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: W/"c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00"
+Last-Modified: Tue, 20 Feb 2018 00:03:38 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073527:B71272B:5A8BB704
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4746
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.041192
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00","size":51,"url":"https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.4","html_url":"https://github.com/rsc/vgotest1/blob/v2.0.4/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest1/git/blobs/c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00","download_url":"https://raw.githubusercontent.com/rsc/vgotest1/v2.0.4/go.mod?token=AAGWXvMZ5Mnz-v_q0ZtnFsU2GWYlco4nks5ai7dAwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0MS92MiIgLy8gcm9vdCBn\nby5tb2QK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.4","git":"https://api.github.com/repos/rsc/vgotest1/git/blobs/c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00","html":"https://github.com/rsc/vgotest1/blob/v2.0.4/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest1/v2.0.4/go.mod?token=AAGWXvMZ5Mnz-v_q0ZtnFsU2GWYlco4nks5ai7dAwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: "c5135ab5466bf8bf64d7721aabbcaf91b3e2fb00"
+Expires: Tue, 20 Feb 2018 05:54:56 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 268739a7d64824d386c5ba3795f041fab427ebe9
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: A004:23329:C959C4:D1487E:5A8BB6F7
+X-Served-By: cache-bos8231-BOS
+X-Timer: S1519105796.418666,VS0,VE60
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest1/v2" // root go.mod
+
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/v2%2Fgo.mod?ref=v2.0.4
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: W/"8a3399c54de613e7878f36eb40d5b44475a58d73"
+Last-Modified: Tue, 20 Feb 2018 00:03:38 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073535:B712740:5A8BB704
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4745
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.043970
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"8a3399c54de613e7878f36eb40d5b44475a58d73","size":49,"url":"https://api.github.com/repos/rsc/vgotest1/contents/v2/go.mod?ref=v2.0.4","html_url":"https://github.com/rsc/vgotest1/blob/v2.0.4/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest1/git/blobs/8a3399c54de613e7878f36eb40d5b44475a58d73","download_url":"https://raw.githubusercontent.com/rsc/vgotest1/v2.0.4/v2/go.mod?token=AAGWXs8Wst0eSEhmv4n7EVyvQ9OdC4j-ks5ai7dAwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0MS92MiIgLy8gdjIvZ28u\nbW9kCg==\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest1/contents/v2/go.mod?ref=v2.0.4","git":"https://api.github.com/repos/rsc/vgotest1/git/blobs/8a3399c54de613e7878f36eb40d5b44475a58d73","html":"https://github.com/rsc/vgotest1/blob/v2.0.4/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest1/v2.0.4/v2/go.mod?token=AAGWXs8Wst0eSEhmv4n7EVyvQ9OdC4j-ks5ai7dAwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: "8a3399c54de613e7878f36eb40d5b44475a58d73"
+Expires: Tue, 20 Feb 2018 05:54:56 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 5cb0cc237bc7d49904840c12140a40ed96cba598
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 8346:27E2:D582F0:E05749:5A8BB703
+X-Served-By: cache-bos8231-BOS
+X-Timer: S1519105797.558609,VS0,VE45
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest1/v2" // v2/go.mod
+
+
+GET https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v2.0.5
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: W/"59ad865a61a4001c13f52534d21b36bd"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073548:B712766:5A8BB704
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4744
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.031131
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v2.0.5","url":"https://api.github.com/repos/rsc/vgotest1/git/refs/tags/v2.0.5","object":{"sha":"2f615117ce481c8efef46e0cc0b4b4dccfac8fea","type":"commit","url":"https://api.github.com/repos/rsc/vgotest1/git/commits/2f615117ce481c8efef46e0cc0b4b4dccfac8fea"}}
+
+GET https://api.github.com/repos/rsc/vgotest1/commits?sha=2f615117ce481c8efef46e0cc0b4b4dccfac8fea&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: W/"6abc1bc9daefb0c5ff4c3430199d4f2c"
+Last-Modified: Tue, 20 Feb 2018 00:03:59 GMT
+Link: <https://api.github.com/repositories/122129067/commits?sha=2f615117ce481c8efef46e0cc0b4b4dccfac8fea&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/122129067/commits?sha=2f615117ce481c8efef46e0cc0b4b4dccfac8fea&per_page=2&page=4>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073554:B71278D:5A8BB704
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4743
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.049563
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"2f615117ce481c8efef46e0cc0b4b4dccfac8fea","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:17:02Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-20T00:03:59Z"},"message":"go.mod: drop v2","tree":{"sha":"b5250c1045aa9f258a14edb3dc6daca33cc6cc1b","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/b5250c1045aa9f258a14edb3dc6daca33cc6cc1b"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/2f615117ce481c8efef46e0cc0b4b4dccfac8fea","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/2f615117ce481c8efef46e0cc0b4b4dccfac8fea","html_url":"https://github.com/rsc/vgotest1/commit/2f615117ce481c8efef46e0cc0b4b4dccfac8fea","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/2f615117ce481c8efef46e0cc0b4b4dccfac8fea/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"1f863feb76bc7029b78b21c5375644838962f88d","url":"https://api.github.com/repos/rsc/vgotest1/commits/1f863feb76bc7029b78b21c5375644838962f88d","html_url":"https://github.com/rsc/vgotest1/commit/1f863feb76bc7029b78b21c5375644838962f88d"}]},{"sha":"1f863feb76bc7029b78b21c5375644838962f88d","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:16:38Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-20T00:03:38Z"},"message":"v2/go.mod: fix","tree":{"sha":"1802e18e029c65abca5ccb29f92b218ff248c386","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/1802e18e029c65abca5ccb29f92b218ff248c386"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/1f863feb76bc7029b78b21c5375644838962f88d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/1f863feb76bc7029b78b21c5375644838962f88d","html_url":"https://github.com/rsc/vgotest1/commit/1f863feb76bc7029b78b21c5375644838962f88d","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/1f863feb76bc7029b78b21c5375644838962f88d/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"f18795870fb14388a21ef3ebc1d75911c8694f31","url":"https://api.github.com/repos/rsc/vgotest1/commits/f18795870fb14388a21ef3ebc1d75911c8694f31","html_url":"https://github.com/rsc/vgotest1/commit/f18795870fb14388a21ef3ebc1d75911c8694f31"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.5
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: W/"ac7a6d7c02c0d890a69a60d2f566b834befa551b"
+Last-Modified: Tue, 20 Feb 2018 00:03:59 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:407355A:B7127AB:5A8BB704
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4742
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.044341
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"ac7a6d7c02c0d890a69a60d2f566b834befa551b","size":48,"url":"https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.5","html_url":"https://github.com/rsc/vgotest1/blob/v2.0.5/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest1/git/blobs/ac7a6d7c02c0d890a69a60d2f566b834befa551b","download_url":"https://raw.githubusercontent.com/rsc/vgotest1/v2.0.5/go.mod?token=AAGWXgZOm6Kp0Qouq71GlVv1ntX6sk_Sks5ai7dAwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0MSIgLy8gcm9vdCBnby5t\nb2QK\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest1/contents/go.mod?ref=v2.0.5","git":"https://api.github.com/repos/rsc/vgotest1/git/blobs/ac7a6d7c02c0d890a69a60d2f566b834befa551b","html":"https://github.com/rsc/vgotest1/blob/v2.0.5/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest1/v2.0.5/go.mod?token=AAGWXgZOm6Kp0Qouq71GlVv1ntX6sk_Sks5ai7dAwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: "ac7a6d7c02c0d890a69a60d2f566b834befa551b"
+Expires: Tue, 20 Feb 2018 05:54:56 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: c30fbe7d6f76c3033827ee4fdb4129328c8a795f
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: B606:0C0B:C21414:CD8F4A:5A8BB704
+X-Served-By: cache-bos8231-BOS
+X-Timer: S1519105797.818999,VS0,VE52
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest1" // root go.mod
+
+
+GET https://api.github.com/repos/rsc/vgotest1/contents/v2%2Fgo.mod?ref=v2.0.5
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: W/"8a3399c54de613e7878f36eb40d5b44475a58d73"
+Last-Modified: Tue, 20 Feb 2018 00:03:59 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:407356D:B7127C9:5A8BB704
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4741
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.041282
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"v2/go.mod","sha":"8a3399c54de613e7878f36eb40d5b44475a58d73","size":49,"url":"https://api.github.com/repos/rsc/vgotest1/contents/v2/go.mod?ref=v2.0.5","html_url":"https://github.com/rsc/vgotest1/blob/v2.0.5/v2/go.mod","git_url":"https://api.github.com/repos/rsc/vgotest1/git/blobs/8a3399c54de613e7878f36eb40d5b44475a58d73","download_url":"https://raw.githubusercontent.com/rsc/vgotest1/v2.0.5/v2/go.mod?token=AAGWXsi4IhHtk6Jl_1D9VpDHUiXMjjK7ks5ai7dAwA%3D%3D","type":"file","content":"bW9kdWxlICJnaXRodWIuY29tL3JzYy92Z290ZXN0MS92MiIgLy8gdjIvZ28u\nbW9kCg==\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/vgotest1/contents/v2/go.mod?ref=v2.0.5","git":"https://api.github.com/repos/rsc/vgotest1/git/blobs/8a3399c54de613e7878f36eb40d5b44475a58d73","html":"https://github.com/rsc/vgotest1/blob/v2.0.5/v2/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/vgotest1/v2.0.5/v2/go.mod?token=AAGWXsi4IhHtk6Jl_1D9VpDHUiXMjjK7ks5ai7dAwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:56 GMT
+Etag: "8a3399c54de613e7878f36eb40d5b44475a58d73"
+Expires: Tue, 20 Feb 2018 05:54:56 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: 89c0e24590cfa0c88c7160910216b20ddbf20231
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: 667A:63D0:143840F:14E4953:5A8BB704
+X-Served-By: cache-bos8231-BOS
+X-Timer: S1519105797.944608,VS0,VE46
+X-Xss-Protection: 1; mode=block
+
+module "github.com/rsc/vgotest1/v2" // v2/go.mod
+
+
+GET https://go.googlesource.com/scratch/+log/0f302529858?format=JSON&n=2
+200 OK
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: private, max-age=7200, stale-while-revalidate=604800
+Content-Disposition: attachment
+Content-Type: application/json
+Date: Tue, 20 Feb 2018 05:49:57 GMT
+Expires: Tue, 20 Feb 2018 05:49:57 GMT
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+Vary: Accept-Encoding
+X-Content-Type-Options: nosniff
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+)]}'
+{
+  "log": [
+    {
+      "commit": "0f30252985809011f026b5a2d5cf456e021623da",
+      "tree": "b87d6445af4113b87630bf1c0c73b1db5a8c85de",
+      "parents": [
+        "9302c3df7e2cfc2ac83deaefcb6f5c13d0a48653"
+      ],
+      "author": {
+        "name": "Russ Cox",
+        "email": "rsc@golang.org",
+        "time": "Mon Feb 19 21:47:11 2018 -0500"
+      },
+      "committer": {
+        "name": "Russ Cox",
+        "email": "rsc@golang.org",
+        "time": "Mon Feb 19 21:47:20 2018 -0500"
+      },
+      "message": "rsc: test\n\nChange-Id: I08dcb375534b4459bea91db46d446d4bb856b432\n"
+    },
+    {
+      "commit": "9302c3df7e2cfc2ac83deaefcb6f5c13d0a48653",
+      "tree": "40046dfea690acd6c7c0472f7ac6c4696a20d812",
+      "parents": [
+        "b35133a336d0b8cd60fdde6b816e99e92d3893db"
+      ],
+      "author": {
+        "name": "Andrew Bonventre",
+        "email": "andybons@gmail.com",
+        "time": "Fri Feb 16 00:16:24 2018 +0000"
+      },
+      "committer": {
+        "name": "Andrew Bonventre",
+        "email": "andybons@golang.org",
+        "time": "Fri Feb 16 00:16:52 2018 +0000"
+      },
+      "message": "Update another-file.txt\n\nChange-Id: I13fbb7096ba640385122f3ea035c64b18f0daed2\nGitHub-Last-Rev: a19631487c83f65dfe81b425b90e54eac9d7fab6\nGitHub-Pull-Request: golang/scratch#23\nReviewed-on: https://go-review.googlesource.com/94604\nReviewed-by: Andrew Bonventre \u003candybons@golang.org\u003e\n"
+    }
+  ],
+  "next": "b35133a336d0b8cd60fdde6b816e99e92d3893db"
+}
+
+
+GET https://go.googlesource.com/scratch/+show/0f3025298580/go.mod?format=TEXT
+404 Not Found
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: no-cache, no-store, max-age=0, must-revalidate
+Content-Length: 1603
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:57 GMT
+Expires: Mon, 01 Jan 1990 00:00:00 GMT
+Pragma: no-cache
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+X-Content-Type-Options: nosniff
+X-Errorid: 404, EFERW-189,EFERW-176,GGSHSRWS-94,PS-169,BS-115,GGS-178,GFDF-157,GFDF-160,AHF-31,UPC-242,VF-133,AHF-31,VF-38,UPC-242,RF-50,AHF-31,UPC-242,UP-221,RP-151,MF-183,MS-143,DFDESF-278,GQF-70,GQF-59,GSF-26,MF-185,GGF-152,OGCWF-35,HMF-184,AF-220,AF-131,GFF-171,STSFSPSF-194,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,STSFSPSF-194,GFFGAF-247,AF-127,SCZFI-159,CWHF-113,CRF-96,CAF-131,SSF-25,GUUAF-142,MHF-112,EF-123,GAEF-72,GBLHCF-116,STSF-153,SF-65,EBF-68,TTLF-155,PLRHF-269,IIIHF-47,DF-170,DF-60,EUCDLF-106,GSI-95,RR-116
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width"><title>Error 404 (Not Found)!!1</title><style>*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{color:#222;text-align:unset;margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px;}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}pre{white-space:pre-wrap;}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}</style><div id="af-error-container"><a href=//www.google.com><span id=logo aria-label=Google></span></a><p><b>404.</b> <ins>That’s an error.</ins><p>The requested URL was not found on this server. <ins>That’s all we know.</ins></div>
+
+GET https://go.googlesource.com/scratch/+show/0f3025298580/Gopkg.lock?format=TEXT
+404 Not Found
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: no-cache, no-store, max-age=0, must-revalidate
+Content-Length: 1603
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:57 GMT
+Expires: Mon, 01 Jan 1990 00:00:00 GMT
+Pragma: no-cache
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+X-Content-Type-Options: nosniff
+X-Errorid: 404, EFERW-189,EFERW-176,GGSHSRWS-94,PS-169,BS-115,GGS-178,GFDF-157,GFDF-160,AHF-31,UPC-242,VF-133,AHF-31,VF-38,UPC-242,RF-50,AHF-31,UPC-242,UP-221,RP-151,MF-183,MS-143,DFDESF-278,GQF-70,GQF-59,GSF-26,MF-185,GGF-152,OGCWF-35,HMF-184,AF-220,AF-131,GFF-171,STSFSPSF-194,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,STSFSPSF-194,GFFGAF-247,AF-127,SCZFI-159,CWHF-113,CRF-96,CAF-131,SSF-25,GUUAF-142,MHF-112,EF-123,GAEF-72,GBLHCF-116,STSF-153,SF-65,EBF-68,TTLF-155,PLRHF-269,IIIHF-47,DF-170,DF-60,EUCDLF-106,GSI-95,RR-116
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width"><title>Error 404 (Not Found)!!1</title><style>*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{color:#222;text-align:unset;margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px;}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}pre{white-space:pre-wrap;}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}</style><div id="af-error-container"><a href=//www.google.com><span id=logo aria-label=Google></span></a><p><b>404.</b> <ins>That’s an error.</ins><p>The requested URL was not found on this server. <ins>That’s all we know.</ins></div>
+
+GET https://go.googlesource.com/scratch/+show/0f3025298580/GLOCKFILE?format=TEXT
+404 Not Found
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: no-cache, no-store, max-age=0, must-revalidate
+Content-Length: 1603
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:57 GMT
+Expires: Mon, 01 Jan 1990 00:00:00 GMT
+Pragma: no-cache
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+X-Content-Type-Options: nosniff
+X-Errorid: 404, EFERW-189,EFERW-176,GGSHSRWS-94,PS-169,BS-115,GGS-178,GFDF-157,GFDF-160,AHF-31,UPC-242,VF-133,AHF-31,VF-38,UPC-242,RF-50,AHF-31,UPC-242,UP-221,RP-151,MF-183,MS-143,DFDESF-278,GQF-70,GQF-59,GSF-26,MF-185,GGF-152,OGCWF-35,HMF-184,AF-220,AF-131,GFF-171,STSFSPSF-194,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,STSFSPSF-194,GFFGAF-247,AF-127,SCZFI-159,CWHF-113,CRF-96,CAF-131,SSF-25,GUUAF-142,MHF-112,EF-123,GAEF-72,GBLHCF-116,STSF-153,SF-65,EBF-68,TTLF-155,PLRHF-269,IIIHF-47,DF-170,DF-60,EUCDLF-106,GSI-95,RR-116
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width"><title>Error 404 (Not Found)!!1</title><style>*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{color:#222;text-align:unset;margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px;}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}pre{white-space:pre-wrap;}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}</style><div id="af-error-container"><a href=//www.google.com><span id=logo aria-label=Google></span></a><p><b>404.</b> <ins>That’s an error.</ins><p>The requested URL was not found on this server. <ins>That’s all we know.</ins></div>
+
+GET https://go.googlesource.com/scratch/+show/0f3025298580/Godeps/Godeps.json?format=TEXT
+404 Not Found
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: no-cache, no-store, max-age=0, must-revalidate
+Content-Length: 1603
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:57 GMT
+Expires: Mon, 01 Jan 1990 00:00:00 GMT
+Pragma: no-cache
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+X-Content-Type-Options: nosniff
+X-Errorid: 404, EFERW-189,EFERW-176,GGSHSRWS-94,PS-169,BS-115,GGS-178,GFDF-157,GFDF-160,AHF-31,UPC-242,VF-133,AHF-31,VF-38,UPC-242,RF-50,AHF-31,UPC-242,UP-221,RP-151,MF-183,MS-143,DFDESF-278,GQF-70,GQF-59,GSF-26,MF-185,GGF-152,OGCWF-35,HMF-184,AF-220,AF-131,GFF-171,STSFSPSF-194,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,STSFSPSF-194,GFFGAF-247,AF-127,SCZFI-159,CWHF-113,CRF-96,CAF-131,SSF-25,GUUAF-142,MHF-112,EF-123,GAEF-72,GBLHCF-116,STSF-153,SF-65,EBF-68,TTLF-155,PLRHF-269,IIIHF-47,DF-170,DF-60,EUCDLF-106,GSI-95,RR-116
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width"><title>Error 404 (Not Found)!!1</title><style>*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{color:#222;text-align:unset;margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px;}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}pre{white-space:pre-wrap;}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}</style><div id="af-error-container"><a href=//www.google.com><span id=logo aria-label=Google></span></a><p><b>404.</b> <ins>That’s an error.</ins><p>The requested URL was not found on this server. <ins>That’s all we know.</ins></div>
+
+GET https://go.googlesource.com/scratch/+show/0f3025298580/dependencies.tsv?format=TEXT
+404 Not Found
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: no-cache, no-store, max-age=0, must-revalidate
+Content-Length: 1603
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:57 GMT
+Expires: Mon, 01 Jan 1990 00:00:00 GMT
+Pragma: no-cache
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+X-Content-Type-Options: nosniff
+X-Errorid: 404, EFERW-189,EFERW-176,GGSHSRWS-94,PS-169,BS-115,GGS-178,GFDF-157,GFDF-160,AHF-31,UPC-242,VF-133,AHF-31,VF-38,UPC-242,RF-50,AHF-31,UPC-242,UP-221,RP-151,MF-183,MS-143,DFDESF-278,GQF-70,GQF-59,GSF-26,MF-185,GGF-152,OGCWF-35,HMF-184,AF-220,AF-131,GFF-171,STSFSPSF-194,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,STSFSPSF-194,GFFGAF-247,AF-127,SCZFI-159,CWHF-113,CRF-96,CAF-131,SSF-25,GUUAF-142,MHF-112,EF-123,GAEF-72,GBLHCF-116,STSF-153,SF-65,EBF-68,TTLF-155,PLRHF-269,IIIHF-47,DF-170,DF-60,EUCDLF-106,GSI-95,RR-116
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width"><title>Error 404 (Not Found)!!1</title><style>*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{color:#222;text-align:unset;margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px;}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}pre{white-space:pre-wrap;}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}</style><div id="af-error-container"><a href=//www.google.com><span id=logo aria-label=Google></span></a><p><b>404.</b> <ins>That’s an error.</ins><p>The requested URL was not found on this server. <ins>That’s all we know.</ins></div>
+
+GET https://go.googlesource.com/scratch/+show/0f3025298580/glide.lock?format=TEXT
+404 Not Found
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: no-cache, no-store, max-age=0, must-revalidate
+Content-Length: 1603
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:57 GMT
+Expires: Mon, 01 Jan 1990 00:00:00 GMT
+Pragma: no-cache
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+X-Content-Type-Options: nosniff
+X-Errorid: 404, EFERW-189,EFERW-176,GGSHSRWS-94,PS-169,BS-115,GGS-178,GFDF-157,GFDF-160,AHF-31,UPC-242,VF-133,AHF-31,VF-38,UPC-242,RF-50,AHF-31,UPC-242,UP-221,RP-151,MF-183,MS-143,DFDESF-278,GQF-70,GQF-59,GSF-26,MF-185,GGF-152,OGCWF-35,HMF-184,AF-220,AF-131,GFF-171,STSFSPSF-194,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,STSFSPSF-194,GFFGAF-247,AF-127,SCZFI-159,CWHF-113,CRF-96,CAF-131,SSF-25,GUUAF-142,MHF-112,EF-123,GAEF-72,GBLHCF-116,STSF-153,SF-65,EBF-68,TTLF-155,PLRHF-269,IIIHF-47,DF-170,DF-60,EUCDLF-106,GSI-95,RR-116
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width"><title>Error 404 (Not Found)!!1</title><style>*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{color:#222;text-align:unset;margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px;}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}pre{white-space:pre-wrap;}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}</style><div id="af-error-container"><a href=//www.google.com><span id=logo aria-label=Google></span></a><p><b>404.</b> <ins>That’s an error.</ins><p>The requested URL was not found on this server. <ins>That’s all we know.</ins></div>
+
+GET https://go.googlesource.com/scratch/+show/0f3025298580/vendor.conf?format=TEXT
+404 Not Found
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: no-cache, no-store, max-age=0, must-revalidate
+Content-Length: 1603
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:57 GMT
+Expires: Mon, 01 Jan 1990 00:00:00 GMT
+Pragma: no-cache
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+X-Content-Type-Options: nosniff
+X-Errorid: 404, EFERW-189,EFERW-176,GGSHSRWS-94,PS-169,BS-115,GGS-178,GFDF-157,GFDF-160,AHF-31,UPC-242,VF-133,AHF-31,VF-38,UPC-242,RF-50,AHF-31,UPC-242,UP-221,RP-151,MF-183,MS-143,DFDESF-278,GQF-70,GQF-59,GSF-26,MF-185,GGF-152,OGCWF-35,HMF-184,AF-220,AF-131,GFF-171,STSFSPSF-194,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,STSFSPSF-194,GFFGAF-247,AF-127,SCZFI-159,CWHF-113,CRF-96,CAF-131,SSF-25,GUUAF-142,MHF-112,EF-123,GAEF-72,GBLHCF-116,STSF-153,SF-65,EBF-68,TTLF-155,PLRHF-269,IIIHF-47,DF-170,DF-60,EUCDLF-106,GSI-95,RR-116
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width"><title>Error 404 (Not Found)!!1</title><style>*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{color:#222;text-align:unset;margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px;}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}pre{white-space:pre-wrap;}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}</style><div id="af-error-container"><a href=//www.google.com><span id=logo aria-label=Google></span></a><p><b>404.</b> <ins>That’s an error.</ins><p>The requested URL was not found on this server. <ins>That’s all we know.</ins></div>
+
+GET https://go.googlesource.com/scratch/+show/0f3025298580/vendor.yml?format=TEXT
+404 Not Found
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: no-cache, no-store, max-age=0, must-revalidate
+Content-Length: 1603
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:57 GMT
+Expires: Mon, 01 Jan 1990 00:00:00 GMT
+Pragma: no-cache
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+X-Content-Type-Options: nosniff
+X-Errorid: 404, EFERW-189,EFERW-176,GGSHSRWS-94,PS-169,BS-115,GGS-178,GFDF-157,GFDF-160,AHF-31,UPC-242,VF-133,AHF-31,VF-38,UPC-242,RF-50,AHF-31,UPC-242,UP-221,RP-151,MF-183,MS-143,DFDESF-278,GQF-70,GQF-59,GSF-26,MF-185,GGF-152,OGCWF-35,HMF-184,AF-220,AF-131,GFF-171,STSFSPSF-194,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,STSFSPSF-194,GFFGAF-247,AF-127,SCZFI-159,CWHF-113,CRF-96,CAF-131,SSF-25,GUUAF-142,MHF-112,EF-123,GAEF-72,GBLHCF-116,STSF-153,SF-65,EBF-68,TTLF-155,PLRHF-269,IIIHF-47,DF-170,DF-60,EUCDLF-106,GSI-95,RR-116
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width"><title>Error 404 (Not Found)!!1</title><style>*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{color:#222;text-align:unset;margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px;}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}pre{white-space:pre-wrap;}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}</style><div id="af-error-container"><a href=//www.google.com><span id=logo aria-label=Google></span></a><p><b>404.</b> <ins>That’s an error.</ins><p>The requested URL was not found on this server. <ins>That’s all we know.</ins></div>
+
+GET https://go.googlesource.com/scratch/+show/0f3025298580/vendor/manifest?format=TEXT
+404 Not Found
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: no-cache, no-store, max-age=0, must-revalidate
+Content-Length: 1603
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:57 GMT
+Expires: Mon, 01 Jan 1990 00:00:00 GMT
+Pragma: no-cache
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+X-Content-Type-Options: nosniff
+X-Errorid: 404, EFERW-189,EFERW-176,GGSHSRWS-94,PS-169,BS-115,GGS-178,GFDF-157,GFDF-160,AHF-31,UPC-242,VF-133,AHF-31,VF-38,UPC-242,RF-50,AHF-31,UPC-242,UP-221,RP-151,MF-183,MS-143,DFDESF-278,GQF-70,GQF-59,GSF-26,MF-185,GGF-152,OGCWF-35,HMF-184,AF-220,AF-131,GFF-171,STSFSPSF-194,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,STSFSPSF-194,GFFGAF-247,AF-127,SCZFI-159,CWHF-113,CRF-96,CAF-131,SSF-25,GUUAF-142,MHF-112,EF-123,GAEF-72,GBLHCF-116,STSF-153,SF-65,EBF-68,TTLF-155,PLRHF-269,IIIHF-47,DF-170,DF-60,EUCDLF-106,GSI-95,RR-116
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width"><title>Error 404 (Not Found)!!1</title><style>*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{color:#222;text-align:unset;margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px;}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}pre{white-space:pre-wrap;}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}</style><div id="af-error-container"><a href=//www.google.com><span id=logo aria-label=Google></span></a><p><b>404.</b> <ins>That’s an error.</ins><p>The requested URL was not found on this server. <ins>That’s all we know.</ins></div>
+
+GET https://go.googlesource.com/scratch/+show/0f3025298580/vendor/vendor.json?format=TEXT
+404 Not Found
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: no-cache, no-store, max-age=0, must-revalidate
+Content-Length: 1603
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:57 GMT
+Expires: Mon, 01 Jan 1990 00:00:00 GMT
+Pragma: no-cache
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+X-Content-Type-Options: nosniff
+X-Errorid: 404, EFERW-189,EFERW-176,GGSHSRWS-94,PS-169,BS-115,GGS-178,GFDF-157,GFDF-160,AHF-31,UPC-242,VF-133,AHF-31,VF-38,UPC-242,RF-50,AHF-31,UPC-242,UP-221,RP-151,MF-183,MS-143,DFDESF-278,GQF-70,GQF-59,GSF-26,MF-185,GGF-152,OGCWF-35,HMF-184,AF-220,AF-131,GFF-171,STSFSPSF-194,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,STSFSPSF-194,GFFGAF-247,AF-127,SCZFI-159,CWHF-113,CRF-96,CAF-131,SSF-25,GUUAF-142,MHF-112,EF-123,GAEF-72,GBLHCF-116,STSF-153,SF-65,EBF-68,TTLF-155,PLRHF-269,IIIHF-47,DF-170,DF-60,EUCDLF-106,GSI-95,RR-116
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width"><title>Error 404 (Not Found)!!1</title><style>*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{color:#222;text-align:unset;margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px;}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}pre{white-space:pre-wrap;}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}</style><div id="af-error-container"><a href=//www.google.com><span id=logo aria-label=Google></span></a><p><b>404.</b> <ins>That’s an error.</ins><p>The requested URL was not found on this server. <ins>That’s all we know.</ins></div>
+
+GET https://go.googlesource.com/scratch/+show/0f3025298580/cbro/go.mod?format=TEXT
+404 Not Found
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: no-cache, no-store, max-age=0, must-revalidate
+Content-Length: 1603
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:58 GMT
+Expires: Mon, 01 Jan 1990 00:00:00 GMT
+Pragma: no-cache
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+X-Content-Type-Options: nosniff
+X-Errorid: 404, EFERW-189,EFERW-176,GGSHSRWS-94,PS-169,BS-115,GGS-178,GFDF-157,GFDF-160,AHF-31,UPC-242,VF-133,AHF-31,VF-38,UPC-242,RF-50,AHF-31,UPC-242,UP-221,RP-151,MF-183,MS-143,DFDESF-278,GQF-70,GQF-59,GSF-26,MF-185,GGF-152,OGCWF-35,HMF-184,AF-220,AF-131,GFF-171,STSFSPSF-194,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,GFFFCW-294,STSFSPSF-194,GFFGAF-247,AF-127,SCZFI-159,CWHF-113,CRF-96,CAF-131,SSF-25,GUUAF-142,MHF-112,EF-123,GAEF-72,GBLHCF-116,STSF-153,SF-65,EBF-68,TTLF-155,PLRHF-269,IIIHF-47,DF-170,DF-60,EUCDLF-106,GSI-95,RR-116
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+<!DOCTYPE html><html lang=en><meta charset=utf-8><meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width"><title>Error 404 (Not Found)!!1</title><style>*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{color:#222;text-align:unset;margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px;}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}pre{white-space:pre-wrap;}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}</style><div id="af-error-container"><a href=//www.google.com><span id=logo aria-label=Google></span></a><p><b>404.</b> <ins>That’s an error.</ins><p>The requested URL was not found on this server. <ins>That’s all we know.</ins></div>
+
+GET https://rsc.io/quote?go-get=1
+200 OK
+Cache-Control: public, max-age=300
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:58 GMT
+Server: Google Frontend
+Vary: Accept-Encoding
+X-Cloud-Trace-Context: 5dfcc131b93065220be64525b9c20aa9;o=1
+
+<!DOCTYPE html>
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<meta name="go-import" content="rsc.io/quote git https://github.com/rsc/quote">
+<meta http-equiv="refresh" content="0; url=https://godoc.org/rsc.io/quote">
+</head>
+<body>
+Redirecting to docs at <a href="https://godoc.org/rsc.io/quote">godoc.org/rsc.io/quote</a>...
+</body>
+</html>
+
+
+GET https://api.github.com/repos/rsc/quote
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:58 GMT
+Etag: W/"98f92398879ad57f7cbde65bf9722584"
+Last-Modified: Tue, 13 Feb 2018 22:12:32 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: repo
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073626:B7127F3:5A8BB704
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4740
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.044781
+X-Xss-Protection: 1; mode=block
+
+{"id":121442681,"name":"quote","full_name":"rsc/quote","owner":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"private":true,"html_url":"https://github.com/rsc/quote","description":"Pithy sayings.","fork":false,"url":"https://api.github.com/repos/rsc/quote","forks_url":"https://api.github.com/repos/rsc/quote/forks","keys_url":"https://api.github.com/repos/rsc/quote/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rsc/quote/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rsc/quote/teams","hooks_url":"https://api.github.com/repos/rsc/quote/hooks","issue_events_url":"https://api.github.com/repos/rsc/quote/issues/events{/number}","events_url":"https://api.github.com/repos/rsc/quote/events","assignees_url":"https://api.github.com/repos/rsc/quote/assignees{/user}","branches_url":"https://api.github.com/repos/rsc/quote/branches{/branch}","tags_url":"https://api.github.com/repos/rsc/quote/tags","blobs_url":"https://api.github.com/repos/rsc/quote/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rsc/quote/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rsc/quote/git/refs{/sha}","trees_url":"https://api.github.com/repos/rsc/quote/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rsc/quote/statuses/{sha}","languages_url":"https://api.github.com/repos/rsc/quote/languages","stargazers_url":"https://api.github.com/repos/rsc/quote/stargazers","contributors_url":"https://api.github.com/repos/rsc/quote/contributors","subscribers_url":"https://api.github.com/repos/rsc/quote/subscribers","subscription_url":"https://api.github.com/repos/rsc/quote/subscription","commits_url":"https://api.github.com/repos/rsc/quote/commits{/sha}","git_commits_url":"https://api.github.com/repos/rsc/quote/git/commits{/sha}","comments_url":"https://api.github.com/repos/rsc/quote/comments{/number}","issue_comment_url":"https://api.github.com/repos/rsc/quote/issues/comments{/number}","contents_url":"https://api.github.com/repos/rsc/quote/contents/{+path}","compare_url":"https://api.github.com/repos/rsc/quote/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rsc/quote/merges","archive_url":"https://api.github.com/repos/rsc/quote/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rsc/quote/downloads","issues_url":"https://api.github.com/repos/rsc/quote/issues{/number}","pulls_url":"https://api.github.com/repos/rsc/quote/pulls{/number}","milestones_url":"https://api.github.com/repos/rsc/quote/milestones{/number}","notifications_url":"https://api.github.com/repos/rsc/quote/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rsc/quote/labels{/name}","releases_url":"https://api.github.com/repos/rsc/quote/releases{/id}","deployments_url":"https://api.github.com/repos/rsc/quote/deployments","created_at":"2018-02-13T22:12:10Z","updated_at":"2018-02-13T22:12:32Z","pushed_at":"2018-02-14T15:44:45Z","git_url":"git://github.com/rsc/quote.git","ssh_url":"git@github.com:rsc/quote.git","clone_url":"https://github.com/rsc/quote.git","svn_url":"https://github.com/rsc/quote","homepage":null,"size":5,"stargazers_count":0,"watchers_count":0,"language":"Go","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"bsd-3-clause","name":"BSD 3-Clause \"New\" or \"Revised\" License","spdx_id":"BSD-3-Clause","url":"https://api.github.com/licenses/bsd-3-clause"},"forks":2,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true},"allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"network_count":2,"subscribers_count":3}
+
+GET https://api.github.com/repos/rsc/quote/git/refs/tags/v1.0.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:58 GMT
+Etag: W/"cefa4bfc1fbb0d572ce0c8847d2f2dc3"
+Last-Modified: Tue, 13 Feb 2018 22:12:32 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073631:B712A43:5A8BB706
+X-Oauth-Scopes: repo
+X-Poll-Interval: 300
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4739
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.033251
+X-Xss-Protection: 1; mode=block
+
+{"ref":"refs/tags/v1.0.0","url":"https://api.github.com/repos/rsc/quote/git/refs/tags/v1.0.0","object":{"sha":"f488df80bcdbd3e5bafdc24ad7d1e79e83edd7e6","type":"commit","url":"https://api.github.com/repos/rsc/quote/git/commits/f488df80bcdbd3e5bafdc24ad7d1e79e83edd7e6"}}
+
+GET https://api.github.com/repos/rsc/quote/commits?sha=f488df80bcdbd3e5bafdc24ad7d1e79e83edd7e6&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:58 GMT
+Etag: W/"42f9b231861a8eb4dabab959e6007ef5"
+Last-Modified: Wed, 14 Feb 2018 00:45:20 GMT
+Link: <https://api.github.com/repositories/121442681/commits?sha=f488df80bcdbd3e5bafdc24ad7d1e79e83edd7e6&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/121442681/commits?sha=f488df80bcdbd3e5bafdc24ad7d1e79e83edd7e6&per_page=2&page=2>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073637:B712A55:5A8BB706
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4738
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.044540
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"f488df80bcdbd3e5bafdc24ad7d1e79e83edd7e6","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-14T00:45:20Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-14T00:45:20Z"},"message":"quote: add Hello","tree":{"sha":"f7f8094dfdbe4952063ae8c89e927ebc8cda1663","url":"https://api.github.com/repos/rsc/quote/git/trees/f7f8094dfdbe4952063ae8c89e927ebc8cda1663"},"url":"https://api.github.com/repos/rsc/quote/git/commits/f488df80bcdbd3e5bafdc24ad7d1e79e83edd7e6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/quote/commits/f488df80bcdbd3e5bafdc24ad7d1e79e83edd7e6","html_url":"https://github.com/rsc/quote/commit/f488df80bcdbd3e5bafdc24ad7d1e79e83edd7e6","comments_url":"https://api.github.com/repos/rsc/quote/commits/f488df80bcdbd3e5bafdc24ad7d1e79e83edd7e6/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"cdae8504d186f3f2744f259ca2fe50c5bc74309c","url":"https://api.github.com/repos/rsc/quote/commits/cdae8504d186f3f2744f259ca2fe50c5bc74309c","html_url":"https://github.com/rsc/quote/commit/cdae8504d186f3f2744f259ca2fe50c5bc74309c"}]},{"sha":"cdae8504d186f3f2744f259ca2fe50c5bc74309c","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-13T21:55:00Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-13T21:55:00Z"},"message":"quote: add README.md","tree":{"sha":"1d50d5749cc2d4fb53a30162189cd106b8369801","url":"https://api.github.com/repos/rsc/quote/git/trees/1d50d5749cc2d4fb53a30162189cd106b8369801"},"url":"https://api.github.com/repos/rsc/quote/git/commits/cdae8504d186f3f2744f259ca2fe50c5bc74309c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/quote/commits/cdae8504d186f3f2744f259ca2fe50c5bc74309c","html_url":"https://github.com/rsc/quote/commit/cdae8504d186f3f2744f259ca2fe50c5bc74309c","comments_url":"https://api.github.com/repos/rsc/quote/commits/cdae8504d186f3f2744f259ca2fe50c5bc74309c/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"14568922d1af040ecd211db15eadfcf12ded3176","url":"https://api.github.com/repos/rsc/quote/commits/14568922d1af040ecd211db15eadfcf12ded3176","html_url":"https://github.com/rsc/quote/commit/14568922d1af040ecd211db15eadfcf12ded3176"}]}]
+
+GET https://api.github.com/repos/rsc/quote/contents/go.mod?ref=v1.0.0
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:58 GMT
+Etag: W/"918b577a4034a500817a2f824a808df4bb9c254c"
+Last-Modified: Wed, 14 Feb 2018 00:45:20 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073642:B712A78:5A8BB706
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4737
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.050665
+X-Xss-Protection: 1; mode=block
+
+{"name":"go.mod","path":"go.mod","sha":"918b577a4034a500817a2f824a808df4bb9c254c","size":22,"url":"https://api.github.com/repos/rsc/quote/contents/go.mod?ref=v1.0.0","html_url":"https://github.com/rsc/quote/blob/v1.0.0/go.mod","git_url":"https://api.github.com/repos/rsc/quote/git/blobs/918b577a4034a500817a2f824a808df4bb9c254c","download_url":"https://raw.githubusercontent.com/rsc/quote/v1.0.0/go.mod?token=AAGWXipel_jORJDJUJn2b_iNaL917qZ6ks5ai7dCwA%3D%3D","type":"file","content":"bW9kdWxlICJyc2MuaW8vcXVvdGUiCg==\n","encoding":"base64","_links":{"self":"https://api.github.com/repos/rsc/quote/contents/go.mod?ref=v1.0.0","git":"https://api.github.com/repos/rsc/quote/git/blobs/918b577a4034a500817a2f824a808df4bb9c254c","html":"https://github.com/rsc/quote/blob/v1.0.0/go.mod"}}
+
+GET https://raw.githubusercontent.com/rsc/quote/v1.0.0/go.mod?token=AAGWXipel_jORJDJUJn2b_iNaL917qZ6ks5ai7dCwA%3D%3D
+200 OK
+Accept-Ranges: bytes
+Access-Control-Allow-Origin: *
+Cache-Control: max-age=300
+Connection: keep-alive
+Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
+Content-Type: text/plain; charset=utf-8
+Date: Tue, 20 Feb 2018 05:49:59 GMT
+Etag: "918b577a4034a500817a2f824a808df4bb9c254c"
+Expires: Tue, 20 Feb 2018 05:54:59 GMT
+Source-Age: 0
+Strict-Transport-Security: max-age=31536000
+Vary: Authorization,Accept-Encoding
+Via: 1.1 varnish
+X-Cache: MISS
+X-Cache-Hits: 0
+X-Content-Type-Options: nosniff
+X-Fastly-Request-Id: f8dc96d797cabdc854b1abc7f4eb9e2368393c49
+X-Frame-Options: deny
+X-Geo-Block-List: 
+X-Github-Request-Id: F11A:3A5C:AFE53C:B9140A:5A8BB703
+X-Served-By: cache-bos8231-BOS
+X-Timer: S1519105799.812718,VS0,VE747
+X-Xss-Protection: 1; mode=block
+
+module "rsc.io/quote"
+
+
+GET https://swtch.com/testmod?go-get=1
+200 OK
+Accept-Ranges: bytes
+Cache-Control: public, max-age=300
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:50:00 GMT
+Etag: 14778b692de1ba1daf9abff9bb8b17c0
+Last-Modified: Tue, 20 Feb 2018 04:04:27 GMT
+Server: Google Frontend
+Vary: Accept-Encoding
+X-Cloud-Trace-Context: 74a9b15f3a8b735dad028eabe3efa3f3
+
+<!DOCTYPE html>
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<meta name="go-import" content="swtch.com/testmod mod https://swtch.com/testmodproxy">
+</head>
+<body>
+Nothing to see here.
+</body>
+</html>
+
+
+GET https://swtch.com/testmodproxy/swtch.com/testmod/@v/v1.0.0.info
+200 OK
+Accept-Ranges: bytes
+Cache-Control: public, max-age=300
+Content-Length: 91
+Content-Type: application/octet-stream
+Date: Tue, 20 Feb 2018 05:50:01 GMT
+Etag: ad7630097cd8fdaee5a08e3878b83af8
+Last-Modified: Tue, 20 Feb 2018 04:03:07 GMT
+Server: Google Frontend
+X-Cloud-Trace-Context: 6ad3762b52d4f5a0162c4688a0c2c420
+
+{"Name": "v1.0.0", "Short": "v1.0.0", "Version": "v1.0.0", "Time": "1972-07-18T12:34:56Z"}
+
+
+GET https://swtch.com/testmodproxy/swtch.com/testmod/@v/v1.0.0.mod
+200 OK
+Accept-Ranges: bytes
+Cache-Control: public, max-age=300
+Content-Length: 27
+Content-Type: application/octet-stream
+Date: Tue, 20 Feb 2018 05:50:01 GMT
+Etag: d000bc5ca8264e1d04fe01874e18df0b
+Last-Modified: Tue, 20 Feb 2018 04:04:38 GMT
+Server: Google Frontend
+X-Cloud-Trace-Context: 3ec2f39a98fece3c856b18c7f96390fb
+
+module "swtch.com/testmod"
+
+
+GET https://golang.org/x/text?go-get=1
+200 OK
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: private
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:50:01 GMT
+Server: Google Frontend
+Vary: Accept-Encoding
+X-Cloud-Trace-Context: 72201b76cdecc743350c5d63ea308e03
+
+<!DOCTYPE html>
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<meta name="go-import" content="golang.org/x/text git https://go.googlesource.com/text">
+<meta name="go-source" content="golang.org/x/text https://github.com/golang/text/ https://github.com/golang/text/tree/master{/dir} https://github.com/golang/text/blob/master{/dir}/{file}#L{line}">
+<meta http-equiv="refresh" content="0; url=https://godoc.org/golang.org/x/text">
+</head>
+<body>
+Nothing to see here; <a href="https://godoc.org/golang.org/x/text">move along</a>.
+</body>
+</html>
+
+
+GET https://go.googlesource.com/text/+log/4e4a3210bb?format=JSON&n=2
+200 OK
+Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"
+Cache-Control: private, max-age=7200, stale-while-revalidate=604800
+Content-Disposition: attachment
+Content-Type: application/json
+Date: Tue, 20 Feb 2018 05:50:01 GMT
+Expires: Tue, 20 Feb 2018 05:50:01 GMT
+Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
+Vary: Accept-Encoding
+X-Content-Type-Options: nosniff
+X-Frame-Options: SAMEORIGIN
+X-Xss-Protection: 1; mode=block
+
+)]}'
+{
+  "log": [
+    {
+      "commit": "4e4a3210bb54bb31f6ab2cdca2edcc0b50c420c1",
+      "tree": "bf9d880ef7e58f54525fe3c522117edceb27633e",
+      "parents": [
+        "e19ae1496984b1c655b8044a65c0300a3c878dd3"
+      ],
+      "author": {
+        "name": "Nigel Tao",
+        "email": "nigeltao@golang.org",
+        "time": "Sun Feb 04 14:07:25 2018 +1100"
+      },
+      "committer": {
+        "name": "Nigel Tao",
+        "email": "nigeltao@golang.org",
+        "time": "Thu Feb 08 04:12:48 2018 +0000"
+      },
+      "message": "all: link to the \"state of x/text\" video\n\nChange-Id: I1eedba96d30ee1587da6408b55b0a7f5b8c1463a\nReviewed-on: https://go-review.googlesource.com/91835\nReviewed-by: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\n"
+    },
+    {
+      "commit": "e19ae1496984b1c655b8044a65c0300a3c878dd3",
+      "tree": "15f3357714dcbcc270e1d9088ac8098d70322bea",
+      "parents": [
+        "eb22672bea55af56d225d4e35405f4d2e9f062a0"
+      ],
+      "author": {
+        "name": "Brad Fitzpatrick",
+        "email": "bradfitz@golang.org",
+        "time": "Sun Dec 24 20:31:28 2017 +0000"
+      },
+      "committer": {
+        "name": "Brad Fitzpatrick",
+        "email": "bradfitz@golang.org",
+        "time": "Wed Dec 27 01:22:46 2017 +0000"
+      },
+      "message": "currency: fix format in example\n\nFixes golang/go#23233\n\nChange-Id: Ie89140502cc966acedea4abbaf66214b90ce570a\nReviewed-on: https://go-review.googlesource.com/85398\nReviewed-by: Marcel van Lohuizen \u003cmpvl@golang.org\u003e\nRun-TryBot: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\nTryBot-Result: Gobot Gobot \u003cgobot@golang.org\u003e\n"
+    }
+  ],
+  "next": "eb22672bea55af56d225d4e35405f4d2e9f062a0"
+}
+
+
+GET https://api.github.com/repos/rsc/vgotest1/tags
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:50:02 GMT
+Etag: W/"055853cba4d688ff1a9346d20481dd0b"
+Last-Modified: Mon, 19 Feb 2018 22:34:01 GMT
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:407387A:B712A92:5A8BB706
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4736
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.039902
+X-Xss-Protection: 1; mode=block
+
+[{"name":"v2.0.6","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v2.0.6","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v2.0.6","commit":{"sha":"a01a0aef06cbd571294fc5451788cd4eadbfd651","url":"https://api.github.com/repos/rsc/vgotest1/commits/a01a0aef06cbd571294fc5451788cd4eadbfd651"}},{"name":"v2.0.5","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v2.0.5","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v2.0.5","commit":{"sha":"2f615117ce481c8efef46e0cc0b4b4dccfac8fea","url":"https://api.github.com/repos/rsc/vgotest1/commits/2f615117ce481c8efef46e0cc0b4b4dccfac8fea"}},{"name":"v2.0.4","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v2.0.4","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v2.0.4","commit":{"sha":"1f863feb76bc7029b78b21c5375644838962f88d","url":"https://api.github.com/repos/rsc/vgotest1/commits/1f863feb76bc7029b78b21c5375644838962f88d"}},{"name":"v2.0.3","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v2.0.3","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v2.0.3","commit":{"sha":"f18795870fb14388a21ef3ebc1d75911c8694f31","url":"https://api.github.com/repos/rsc/vgotest1/commits/f18795870fb14388a21ef3ebc1d75911c8694f31"}},{"name":"v2.0.2","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v2.0.2","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v2.0.2","commit":{"sha":"f7b23352af1cd750b11e4673b20b24c2d239430a","url":"https://api.github.com/repos/rsc/vgotest1/commits/f7b23352af1cd750b11e4673b20b24c2d239430a"}},{"name":"v2.0.1","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v2.0.1","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v2.0.1","commit":{"sha":"ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9","url":"https://api.github.com/repos/rsc/vgotest1/commits/ea65f87c8f52c15ea68f3bdd9925ef17e20d91e9"}},{"name":"v2.0.0","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v2.0.0","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v2.0.0","commit":{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128"}},{"name":"v1.1.0","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v1.1.0","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v1.1.0","commit":{"sha":"b769f2de407a4db81af9c5de0a06016d60d2ea09","url":"https://api.github.com/repos/rsc/vgotest1/commits/b769f2de407a4db81af9c5de0a06016d60d2ea09"}},{"name":"v1.0.3","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v1.0.3","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v1.0.3","commit":{"sha":"8afe2b2efed96e0880ecd2a69b98a53b8c2738b6","url":"https://api.github.com/repos/rsc/vgotest1/commits/8afe2b2efed96e0880ecd2a69b98a53b8c2738b6"}},{"name":"v1.0.2","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v1.0.2","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v1.0.2","commit":{"sha":"2e38a1a347ba4d9e9946ec0ce480710ff445c919","url":"https://api.github.com/repos/rsc/vgotest1/commits/2e38a1a347ba4d9e9946ec0ce480710ff445c919"}},{"name":"v1.0.1","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v1.0.1","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v1.0.1","commit":{"sha":"5a115c66393dd8c4a5cc3215653850d7f5640d0e","url":"https://api.github.com/repos/rsc/vgotest1/commits/5a115c66393dd8c4a5cc3215653850d7f5640d0e"}},{"name":"v1.0.0","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v1.0.0","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v1.0.0","commit":{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128"}},{"name":"v0.0.1","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v0.0.1","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v0.0.1","commit":{"sha":"5a115c66393dd8c4a5cc3215653850d7f5640d0e","url":"https://api.github.com/repos/rsc/vgotest1/commits/5a115c66393dd8c4a5cc3215653850d7f5640d0e"}},{"name":"v0.0.0","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/v0.0.0","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/v0.0.0","commit":{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128"}},{"name":"submod/v1.0.5","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/submod/v1.0.5","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/submod/v1.0.5","commit":{"sha":"70fd92eaa4dacf82548d0c6099f5b853ae2c1fc8","url":"https://api.github.com/repos/rsc/vgotest1/commits/70fd92eaa4dacf82548d0c6099f5b853ae2c1fc8"}},{"name":"submod/v1.0.4","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/submod/v1.0.4","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/submod/v1.0.4","commit":{"sha":"8afe2b2efed96e0880ecd2a69b98a53b8c2738b6","url":"https://api.github.com/repos/rsc/vgotest1/commits/8afe2b2efed96e0880ecd2a69b98a53b8c2738b6"}},{"name":"mytag","zipball_url":"https://api.github.com/repos/rsc/vgotest1/zipball/mytag","tarball_url":"https://api.github.com/repos/rsc/vgotest1/tarball/mytag","commit":{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128"}}]
+
+GET https://swtch.com/testmodproxy/swtch.com/testmod/@v/list
+200 OK
+Accept-Ranges: bytes
+Cache-Control: public, max-age=300
+Content-Length: 66
+Content-Type: application/octet-stream
+Date: Tue, 20 Feb 2018 05:50:02 GMT
+Etag: 3ac1a3cf1e79fd918bb6015a38313e13
+Last-Modified: Tue, 20 Feb 2018 04:14:37 GMT
+Server: Google Frontend
+X-Cloud-Trace-Context: 9b5f3ec1ba3358918c4476d1aad4914b
+
+v1.0.0 1972-07-18T12:34:56Z
+v1.1.1 2001-04-23T23:45:07Z
+cats dogs
+
+
+GET https://api.github.com/repos/rsc/vgotest1/commits?sha=&until=2018-01-20T00%3A00%3A00Z&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Length: 2
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:50:02 GMT
+Etag: "16ba471165103eb9bf2971b848baa70e"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:40738C1:B7130E0:5A8BB70A
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4735
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.055980
+X-Xss-Protection: 1; mode=block
+
+[]
+
+GET https://api.github.com/repos/rsc/vgotest1/commits?sha=&until=2018-02-20T00%3A00%3A00Z&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:50:02 GMT
+Etag: W/"e141f57e28f2b33605fa550dfb0491f4"
+Last-Modified: Mon, 19 Feb 2018 22:32:37 GMT
+Link: <https://api.github.com/repositories/122129067/commits?sha=&until=2018-02-20T00%3A00%3A00Z&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/122129067/commits?sha=&until=2018-02-20T00%3A00%3A00Z&per_page=2&page=3>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:4073909:B7131D7:5A8BB70A
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4734
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.060513
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"a08abb797a6764035a9314ed5f1d757e0224f3bf","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T22:32:37Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T22:32:37Z"},"message":"say v2 in root go.mod","tree":{"sha":"a3bddcec233a9fc277da04bbed6e638d8d7dbbd1","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/a3bddcec233a9fc277da04bbed6e638d8d7dbbd1"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/a08abb797a6764035a9314ed5f1d757e0224f3bf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/a08abb797a6764035a9314ed5f1d757e0224f3bf","html_url":"https://github.com/rsc/vgotest1/commit/a08abb797a6764035a9314ed5f1d757e0224f3bf","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/a08abb797a6764035a9314ed5f1d757e0224f3bf/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"dc00e24135c2e3c3e5b5f470cc307db5fb713788","url":"https://api.github.com/repos/rsc/vgotest1/commits/dc00e24135c2e3c3e5b5f470cc307db5fb713788","html_url":"https://github.com/rsc/vgotest1/commit/dc00e24135c2e3c3e5b5f470cc307db5fb713788"}]},{"sha":"dc00e24135c2e3c3e5b5f470cc307db5fb713788","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T22:31:34Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T22:31:34Z"},"message":"add v2/go.mod","tree":{"sha":"361a5d2660bda59633e4a0265e37f356e5b50181","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/361a5d2660bda59633e4a0265e37f356e5b50181"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/dc00e24135c2e3c3e5b5f470cc307db5fb713788","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/dc00e24135c2e3c3e5b5f470cc307db5fb713788","html_url":"https://github.com/rsc/vgotest1/commit/dc00e24135c2e3c3e5b5f470cc307db5fb713788","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/dc00e24135c2e3c3e5b5f470cc307db5fb713788/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"8bece3f8e8d628e3068eec84131fa89873702a10","url":"https://api.github.com/repos/rsc/vgotest1/commits/8bece3f8e8d628e3068eec84131fa89873702a10","html_url":"https://github.com/rsc/vgotest1/commit/8bece3f8e8d628e3068eec84131fa89873702a10"}]}]
+
+GET https://api.github.com/repos/rsc/vgotest1/commits?sha=mybranch&until=2018-02-20T00%3A00%3A00Z&per_page=2
+200 OK
+Access-Control-Allow-Origin: *
+Access-Control-Expose-Headers: ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
+Cache-Control: private, max-age=60, s-maxage=60
+Content-Security-Policy: default-src 'none'
+Content-Type: application/json; charset=utf-8
+Date: Tue, 20 Feb 2018 05:50:02 GMT
+Etag: W/"a0bf5e2bcdfac238d5896ed1f44331e4"
+Last-Modified: Mon, 19 Feb 2018 23:10:06 GMT
+Link: <https://api.github.com/repositories/122129067/commits?sha=mybranch&until=2018-02-20T00%3A00%3A00Z&per_page=2&page=2>; rel="next", <https://api.github.com/repositories/122129067/commits?sha=mybranch&until=2018-02-20T00%3A00%3A00Z&per_page=2&page=1>; rel="last"
+Server: GitHub.com
+Status: 200 OK
+Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
+Vary: Accept, Authorization, Cookie, X-GitHub-OTP
+X-Accepted-Oauth-Scopes: 
+X-Content-Type-Options: nosniff
+X-Frame-Options: deny
+X-Github-Media-Type: github.v3; format=json
+X-Github-Request-Id: B37A:38D1:407391B:B713221:5A8BB70A
+X-Oauth-Scopes: repo
+X-Ratelimit-Limit: 5000
+X-Ratelimit-Remaining: 4733
+X-Ratelimit-Reset: 1519108989
+X-Runtime-Rack: 0.075033
+X-Xss-Protection: 1; mode=block
+
+[{"sha":"80d85c5d4d17598a0e9055e7c175a32b415d6128","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:10:06Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T23:10:06Z"},"message":"add pkg/p.go","tree":{"sha":"bfe3c5c9c81e66347ab3fa320ad281acd3d1cfee","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/bfe3c5c9c81e66347ab3fa320ad281acd3d1cfee"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128","html_url":"https://github.com/rsc/vgotest1/commit/80d85c5d4d17598a0e9055e7c175a32b415d6128","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/80d85c5d4d17598a0e9055e7c175a32b415d6128/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[{"sha":"1975be90145f99f2fed5cedad94dc100fff5c532","url":"https://api.github.com/repos/rsc/vgotest1/commits/1975be90145f99f2fed5cedad94dc100fff5c532","html_url":"https://github.com/rsc/vgotest1/commit/1975be90145f99f2fed5cedad94dc100fff5c532"}]},{"sha":"1975be90145f99f2fed5cedad94dc100fff5c532","commit":{"author":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T22:21:09Z"},"committer":{"name":"Russ Cox","email":"rsc@golang.org","date":"2018-02-19T22:21:09Z"},"message":"initial commit","tree":{"sha":"7753ad6be8f4075cfdf3469af08dd453df326a85","url":"https://api.github.com/repos/rsc/vgotest1/git/trees/7753ad6be8f4075cfdf3469af08dd453df326a85"},"url":"https://api.github.com/repos/rsc/vgotest1/git/commits/1975be90145f99f2fed5cedad94dc100fff5c532","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/rsc/vgotest1/commits/1975be90145f99f2fed5cedad94dc100fff5c532","html_url":"https://github.com/rsc/vgotest1/commit/1975be90145f99f2fed5cedad94dc100fff5c532","comments_url":"https://api.github.com/repos/rsc/vgotest1/commits/1975be90145f99f2fed5cedad94dc100fff5c532/comments","author":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"committer":{"login":"rsc","id":104030,"avatar_url":"https://avatars1.githubusercontent.com/u/104030?v=4","gravatar_id":"","url":"https://api.github.com/users/rsc","html_url":"https://github.com/rsc","followers_url":"https://api.github.com/users/rsc/followers","following_url":"https://api.github.com/users/rsc/following{/other_user}","gists_url":"https://api.github.com/users/rsc/gists{/gist_id}","starred_url":"https://api.github.com/users/rsc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rsc/subscriptions","organizations_url":"https://api.github.com/users/rsc/orgs","repos_url":"https://api.github.com/users/rsc/repos","events_url":"https://api.github.com/users/rsc/events{/privacy}","received_events_url":"https://api.github.com/users/rsc/received_events","type":"User","site_admin":false},"parents":[]}]
+
+GET https://swtch.com/testmodproxy/swtch.com/testmod/@t/20000101000000
+404 Not Found
+Cache-Control: private
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:50:03 GMT
+Server: Google Frontend
+Vary: Accept-Encoding
+X-Cloud-Trace-Context: 3f6d732be859fb7b1c141a98734cef35
+
+Sorry, but this page does not exist.
+
+
+GET https://swtch.com/testmodproxy/swtch.com/testmod/@t/30000101000000
+404 Not Found
+Cache-Control: private
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:50:03 GMT
+Server: Google Frontend
+Vary: Accept-Encoding
+X-Cloud-Trace-Context: f8be8cc4ed7f0a711f06512e068da85b
+
+Sorry, but this page does not exist.
+
+
+GET https://swtch.com/testmodproxy/swtch.com/testmod/@t/30000101000000/branch
+404 Not Found
+Cache-Control: private
+Content-Type: text/html; charset=utf-8
+Date: Tue, 20 Feb 2018 05:50:03 GMT
+Server: Google Frontend
+Vary: Accept-Encoding
+X-Cloud-Trace-Context: b356b2ca3c9fb7825bd0ae99affe4e98
+
+Sorry, but this page does not exist.
+
+