diff --git a/README.md b/README.md
index cd09cf40733..cc2fa343acf 100644
--- a/README.md
+++ b/README.md
@@ -180,6 +180,7 @@ registry:yourrepo/yourimage:tag pull image directly from a registry (no
#### Non Default:
- cargo-auditable-binary
+- rekor
### Excluding file paths
@@ -644,3 +645,12 @@ The following checks were performed on each of these signatures:
```
Consumers of your image can now trust that the SBOM associated with your image is correct and from a trusted source.
+
+## Discovery of SBOMs on Rekor (experimental)
+Syft can search the Rekor transparency log for SBOM attestations of binaries it finds while scanning and incorporate the results into the SBOMs it produces. This allows the use of SBOMs produced at build time (such as by a trusted builder), to augment binary metadata in the resultant SBOM.
+
+The rekor-cataloger searches Rekor by hash for binaries and performs verification to ensure that the SBOMs and attestations have not been tampered with. It verifies the log entry has been signed by Rekor's public key, the certificate associated with the log entry chains back to the Fulcio root certificate, the log entry timestamp lies in the period of validity of the certificate, and other verifications. In the SBOM that Syft produces, the information is represented as an external document reference containing the URI and hash of the SBOM.
+
+This is an experimental feature. It uses external sources, a functionality that is new to Syft. The use of trusted builders to produce SBOMs has not yet been fully established, and more consideration of what external sources to trust is necessary. Currently, Syft accepts any SBOM attestation that has a valid certificate issued by Fulcio.
+
+To enable the rekor-cataloger, use the flag ``` --catalogers rekor ```.
diff --git a/go.mod b/go.mod
index 25cab7e0341..6bf5a4ddb75 100644
--- a/go.mod
+++ b/go.mod
@@ -55,6 +55,7 @@ require (
github.com/anchore/go-logger v0.0.0-20220728155337-03b66a5207d8
github.com/anchore/stereoscope v0.0.0-20221006201143-d24c9d626b33
github.com/docker/docker v20.10.17+incompatible
+ github.com/go-openapi/runtime v0.24.2
github.com/google/go-containerregistry v0.11.0
github.com/in-toto/in-toto-golang v0.4.1-0.20221018183522-731d0640b65f
github.com/knqyf263/go-rpmdb v0.0.0-20220629110411-9a3bd2ebb923
@@ -152,7 +153,6 @@ require (
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.20.0 // indirect
github.com/go-openapi/loads v0.21.2 // indirect
- github.com/go-openapi/runtime v0.24.2 // indirect
github.com/go-openapi/spec v0.20.7 // indirect
github.com/go-openapi/strfmt v0.21.3 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
diff --git a/syft/artifact/relationship.go b/syft/artifact/relationship.go
index 4c2fadfab02..617b238b23e 100644
--- a/syft/artifact/relationship.go
+++ b/syft/artifact/relationship.go
@@ -21,6 +21,9 @@ const (
// DependencyOfRelationship is a proxy for the SPDX 2.2.1 DEPENDENCY_OF relationship.
DependencyOfRelationship RelationshipType = "dependency-of"
+
+ // DescribedByRelationship is a proxy for the SPDX 2.2.1 DESCRIBED_BY relationship.
+ DescribedByRelationship RelationshipType = "described-by"
)
type RelationshipType string
diff --git a/syft/formats/spdx22json/model/doc_element_id.go b/syft/formats/spdx22json/model/doc_element_id.go
new file mode 100644
index 00000000000..73f9c670575
--- /dev/null
+++ b/syft/formats/spdx22json/model/doc_element_id.go
@@ -0,0 +1,12 @@
+package model
+
+import "github.com/anchore/syft/syft/formats/common/spdxhelpers"
+
+// DocElementID represents the identifier string portion of an SPDX document
+// identifier. It should be to used to reference any other SPDX document.
+// DocElementIDs should NOT contain the 'DOCUMENTREF-' portion.
+type DocElementID string
+
+func (d DocElementID) String() string {
+ return "DocumentRef-" + spdxhelpers.SanitizeElementID(string(d))
+}
diff --git a/syft/formats/spdx22json/model/external_document_ref.go b/syft/formats/spdx22json/model/external_document_ref.go
index 10e1d9ec3b1..70dff9f4968 100644
--- a/syft/formats/spdx22json/model/external_document_ref.go
+++ b/syft/formats/spdx22json/model/external_document_ref.go
@@ -4,6 +4,6 @@ type ExternalDocumentRef struct {
// externalDocumentId is a string containing letters, numbers, ., - and/or + which uniquely identifies an external document within this document.
ExternalDocumentID string `json:"externalDocumentId"`
Checksum Checksum `json:"checksum"`
- // SPDX ID for SpdxDocument. A propoerty containing an SPDX document.
+ // SPDX ID for SpdxDocument. A property containing an SPDX document.
SpdxDocument string `json:"spdxDocument"`
}
diff --git a/syft/formats/spdx22json/to_format_model.go b/syft/formats/spdx22json/to_format_model.go
index 44a865a4969..639662c1330 100644
--- a/syft/formats/spdx22json/to_format_model.go
+++ b/syft/formats/spdx22json/to_format_model.go
@@ -1,6 +1,7 @@
package spdx22json
import (
+ "errors"
"fmt"
"sort"
"strings"
@@ -15,6 +16,7 @@ import (
"github.com/anchore/syft/syft/formats/common/util"
"github.com/anchore/syft/syft/formats/spdx22json/model"
"github.com/anchore/syft/syft/pkg"
+ "github.com/anchore/syft/syft/rekor"
"github.com/anchore/syft/syft/sbom"
"github.com/anchore/syft/syft/source"
)
@@ -40,14 +42,55 @@ func toFormatModel(s sbom.SBOM) *model.Document {
},
LicenseListVersion: spdxlicense.Version,
},
- DataLicense: "CC0-1.0",
- DocumentNamespace: namespace,
- Packages: toPackages(s.Artifacts.PackageCatalog, relationships),
- Files: toFiles(s),
- Relationships: toRelationships(relationships),
+ DataLicense: "CC0-1.0",
+ ExternalDocumentRefs: toExternalDocumentRefs(s.Relationships),
+ DocumentNamespace: namespace,
+ Packages: toPackages(s.Artifacts.PackageCatalog, relationships),
+ Files: toFiles(s),
+ Relationships: toRelationships(relationships),
}
}
+// isValidExternalRelationshipDocument returns if rel contains an ExternalRef and if it to_format_model know how to handle it.
+// An error is returned if rel contains an ExternalRef, but the rel cannot be handled
+func isValidExternalRelationshipDocument(rel artifact.Relationship) (bool, error) {
+ if _, ok := rel.From.(rekor.ExternalRef); ok {
+ return false, errors.New("syft cannot handle an ExternalRef in the FROM field of a relationship")
+ }
+ if externalRef, ok := rel.To.(rekor.ExternalRef); ok {
+ relationshipType := artifact.DescribedByRelationship
+ if rel.Type == relationshipType && toChecksumAlgorithm(externalRef.SpdxRef.Alg) == "SHA1" {
+ return true, nil
+ }
+ return false, fmt.Errorf("syft cannot handle an ExternalRef with relationship type: %v", relationshipType)
+ }
+ return false, nil
+}
+
+func toExternalDocumentRefs(relationships []artifact.Relationship) []model.ExternalDocumentRef {
+ externalDocRefs := []model.ExternalDocumentRef{}
+ for _, rel := range relationships {
+ valid, err := isValidExternalRelationshipDocument(rel)
+ if err != nil {
+ log.Warnf("dropping relationship %v: %w", rel, err)
+ continue
+ }
+ if valid {
+ externalRef := rel.To.(rekor.ExternalRef)
+ externalDocRef := model.ExternalDocumentRef{
+ ExternalDocumentID: model.DocElementID(rel.To.ID()).String(),
+ Checksum: model.Checksum{
+ Algorithm: toChecksumAlgorithm(externalRef.SpdxRef.Alg),
+ ChecksumValue: externalRef.SpdxRef.Checksum,
+ },
+ SpdxDocument: externalRef.SpdxRef.URI,
+ }
+ externalDocRefs = append(externalDocRefs, externalDocRef)
+ }
+ }
+ return externalDocRefs
+}
+
func toPackages(catalog *pkg.Catalog, relationships []artifact.Relationship) []model.Package {
packages := make([]model.Package, 0)
@@ -238,21 +281,34 @@ func toFileTypes(metadata *source.FileMetadata) (ty []string) {
return ty
}
-func toRelationships(relationships []artifact.Relationship) (result []model.Relationship) {
+func toRelationships(relationships []artifact.Relationship) []model.Relationship {
+ result := []model.Relationship{}
for _, r := range relationships {
exists, relationshipType, comment := lookupRelationship(r.Type)
-
if !exists {
log.Warnf("unable to convert relationship from SPDX 2.2 JSON, dropping: %+v", r)
continue
}
- result = append(result, model.Relationship{
- SpdxElementID: model.ElementID(r.From.ID()).String(),
- RelationshipType: relationshipType,
- RelatedSpdxElement: model.ElementID(r.To.ID()).String(),
- Comment: comment,
- })
+ rel := model.Relationship{
+ SpdxElementID: model.ElementID(r.From.ID()).String(),
+ RelationshipType: relationshipType,
+ Comment: comment,
+ }
+
+ // if this relationship contains an external document ref, we need to use DocElementID instead of ElementID
+ valid, err := isValidExternalRelationshipDocument(r)
+ if err != nil {
+ log.Warnf("dropping relationship %v: %w", rel, err)
+ continue
+ }
+ if valid {
+ rel.RelatedSpdxElement = model.DocElementID(r.To.ID()).String()
+ } else {
+ rel.RelatedSpdxElement = model.ElementID(r.To.ID()).String()
+ }
+
+ result = append(result, rel)
}
return result
}
@@ -263,6 +319,10 @@ func lookupRelationship(ty artifact.RelationshipType) (bool, spdxhelpers.Relatio
return true, spdxhelpers.ContainsRelationship, ""
case artifact.OwnershipByFileOverlapRelationship:
return true, spdxhelpers.OtherRelationship, fmt.Sprintf("%s: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by", ty)
+ case artifact.DependencyOfRelationship:
+ return true, spdxhelpers.DependencyOfRelationship, ""
+ case artifact.DescribedByRelationship:
+ return true, spdxhelpers.DescribedByRelationship, ""
}
return false, "", ""
}
diff --git a/syft/formats/spdx22json/to_format_model_test.go b/syft/formats/spdx22json/to_format_model_test.go
index 254274a386c..eed99233bcc 100644
--- a/syft/formats/spdx22json/to_format_model_test.go
+++ b/syft/formats/spdx22json/to_format_model_test.go
@@ -12,9 +12,284 @@ import (
"github.com/anchore/syft/syft/formats/common/spdxhelpers"
"github.com/anchore/syft/syft/formats/spdx22json/model"
"github.com/anchore/syft/syft/pkg"
+ "github.com/anchore/syft/syft/rekor"
+ "github.com/anchore/syft/syft/sbom"
"github.com/anchore/syft/syft/source"
)
+func Test_toRelationships(t *testing.T) {
+
+ package1 := pkg.Package{Name: "Hello World Package 1"}
+ package1.SetID()
+ package2 := pkg.Package{Name: "Hello World Package 2"}
+ package2.SetID()
+ externalRef1 := rekor.NewExternalRef("HelloWorld", "www.example.com", "SHA1", "bogushash")
+ coordinates := source.Coordinates{
+ RealPath: "foobar path",
+ }
+
+ tests := []struct {
+ name string
+ relationships []artifact.Relationship
+ result []model.Relationship
+ }{
+ {
+ name: "no relationships",
+ result: []model.Relationship{},
+ },
+ {
+ name: "single external reference relationship",
+ relationships: []artifact.Relationship{
+ {
+ From: coordinates,
+ Type: artifact.DescribedByRelationship,
+ To: externalRef1,
+ },
+ },
+ result: []model.Relationship{
+ {
+ SpdxElementID: fmt.Sprint("SPDXRef-", coordinates.ID()),
+ RelationshipType: spdxhelpers.DescribedByRelationship,
+ RelatedSpdxElement: fmt.Sprint("DocumentRef-", externalRef1.ID()),
+ },
+ },
+ },
+ {
+ name: "single non external reference relationship",
+ relationships: []artifact.Relationship{
+ {
+ From: package1,
+ Type: artifact.ContainsRelationship,
+ To: package2,
+ },
+ },
+ result: []model.Relationship{
+ {
+ SpdxElementID: fmt.Sprint("SPDXRef-", package1.ID()),
+ RelationshipType: spdxhelpers.ContainsRelationship,
+ RelatedSpdxElement: fmt.Sprint("SPDXRef-", package2.ID()),
+ },
+ },
+ },
+ {
+ name: "external reference relationship does not have type DESCRIBED-BY",
+ relationships: []artifact.Relationship{
+ {
+ From: coordinates,
+ Type: artifact.ContainsRelationship,
+ To: externalRef1,
+ },
+ },
+ result: []model.Relationship{},
+ },
+ {
+ name: "relationship contains ExternalRef in FROM field",
+ relationships: []artifact.Relationship{
+ {
+ From: externalRef1,
+ Type: artifact.ContainsRelationship,
+ To: externalRef1,
+ },
+ },
+ result: []model.Relationship{},
+ },
+ {
+ name: "spdx22json cannot handle this relationship type",
+ relationships: []artifact.Relationship{
+ {
+ From: package1,
+ Type: artifact.RuntimeDependencyOfRelationship,
+ To: package2,
+ },
+ },
+ result: []model.Relationship{},
+ },
+ {
+ name: "both normal and external reference relationships",
+ relationships: []artifact.Relationship{
+ {
+ From: package1,
+ Type: artifact.DependencyOfRelationship,
+ To: package2,
+ },
+ {
+ From: coordinates,
+ Type: artifact.DescribedByRelationship,
+ To: externalRef1,
+ },
+ },
+ result: []model.Relationship{
+ {
+ SpdxElementID: fmt.Sprint("SPDXRef-", package1.ID()),
+ RelationshipType: spdxhelpers.DependencyOfRelationship,
+ RelatedSpdxElement: fmt.Sprint("SPDXRef-", package2.ID()),
+ },
+ {
+ SpdxElementID: fmt.Sprint("SPDXRef-", coordinates.ID()),
+ RelationshipType: spdxhelpers.DescribedByRelationship,
+ RelatedSpdxElement: fmt.Sprint("DocumentRef-", externalRef1.ID()),
+ },
+ },
+ },
+ }
+
+ for _, test := range tests {
+ t.Run(test.name, func(t *testing.T) {
+ assert.Equal(t, test.result, toRelationships(test.relationships))
+ })
+ }
+}
+
+func Test_toExternalDocumentRefs(t *testing.T) {
+
+ package1 := pkg.Package{Name: "Hello World Package 1"}
+ package2 := pkg.Package{Name: "Hello World Package 2"}
+ externalRef1 := rekor.NewExternalRef("HelloWorld", "www.example.com", "SHA1", "bogushash")
+ externalRef2 := rekor.NewExternalRef("Test", "www.test.com", "sha1", "testhash")
+ externalRef3 := rekor.NewExternalRef("Test", "test uri", "sha256", "sha256 test hash")
+
+ tests := []struct {
+ name string
+ relationships []artifact.Relationship
+ expected []model.ExternalDocumentRef
+ exactMatch []model.ExternalDocumentRef // check equality of list, not of elements
+ }{
+ {
+ name: "no relationships",
+ exactMatch: []model.ExternalDocumentRef{},
+ },
+ {
+ name: "one external relationships",
+ relationships: []artifact.Relationship{
+ {
+ From: package1,
+ To: externalRef1,
+ Type: artifact.DescribedByRelationship,
+ },
+ },
+ expected: []model.ExternalDocumentRef{
+ {
+ ExternalDocumentID: model.DocElementID(externalRef1.ID()).String(),
+ Checksum: model.Checksum{Algorithm: "SHA1", ChecksumValue: "bogushash"},
+ SpdxDocument: externalRef1.SpdxRef.URI,
+ },
+ },
+ },
+ {
+ name: "Both external relationships and non external relationships",
+ relationships: []artifact.Relationship{
+ {
+ From: package1,
+ To: package2,
+ Type: artifact.ContainsRelationship,
+ },
+ {
+ From: package1,
+ To: externalRef1,
+ Type: artifact.DescribedByRelationship,
+ },
+ },
+ expected: []model.ExternalDocumentRef{
+ {
+ ExternalDocumentID: model.DocElementID(externalRef1.ID()).String(),
+ Checksum: model.Checksum{Algorithm: "SHA1", ChecksumValue: "bogushash"},
+ SpdxDocument: externalRef1.SpdxRef.URI,
+ },
+ },
+ },
+ {
+ name: "Lowercase checksum algorithm",
+ relationships: []artifact.Relationship{
+ {
+ From: package1,
+ To: externalRef2,
+ Type: artifact.DescribedByRelationship,
+ },
+ },
+ expected: []model.ExternalDocumentRef{
+ {
+ ExternalDocumentID: model.DocElementID(externalRef2.ID()).String(),
+ Checksum: model.Checksum{Algorithm: "SHA1", ChecksumValue: "testhash"},
+ SpdxDocument: externalRef2.SpdxRef.URI,
+ },
+ },
+ },
+ {
+ name: "non sha1 checksum algorithm (sha1 required per spdx spec)",
+ relationships: []artifact.Relationship{
+ {
+ From: package1,
+ To: externalRef3,
+ Type: artifact.DescribedByRelationship,
+ },
+ },
+ expected: []model.ExternalDocumentRef{},
+ },
+ }
+
+ for _, test := range tests {
+ t.Run(test.name, func(t *testing.T) {
+ if test.exactMatch != nil {
+ assert.Equal(t, test.exactMatch, toExternalDocumentRefs(test.relationships))
+ }
+ assert.ElementsMatch(t, test.expected, toExternalDocumentRefs(test.relationships))
+
+ })
+ }
+}
+
+func Test_toFiles(t *testing.T) {
+ coordinates1 := source.Coordinates{RealPath: "hi there"}
+ coordinates2 := source.Coordinates{RealPath: "goodbye"}
+
+ tests := []struct {
+ name string
+ inputSbom sbom.SBOM
+ expectedFiles []model.File
+ }{
+ {
+ name: "files are created just from relationships",
+ inputSbom: sbom.SBOM{
+ Relationships: []artifact.Relationship{
+ {
+ From: coordinates1,
+ To: coordinates2,
+ },
+ },
+ },
+ expectedFiles: []model.File{
+ {
+ Item: model.Item{
+ Element: model.Element{SPDXID: model.ElementID(coordinates1.ID()).String()},
+ LicenseConcluded: "NOASSERTION",
+ },
+ FileName: "hi there",
+ },
+ {
+ Item: model.Item{
+ Element: model.Element{SPDXID: model.ElementID(coordinates2.ID()).String()},
+ LicenseConcluded: "NOASSERTION",
+ },
+ FileName: "goodbye",
+ },
+ },
+ },
+ }
+
+ for _, test := range tests {
+ t.Run(test.name, func(t *testing.T) {
+ res := toFiles(test.inputSbom)
+ if len(res) != len(test.expectedFiles) {
+ assert.FailNowf(t, "", "unexpected number of files returned, expected %v, found %v", len(test.expectedFiles), len(res))
+ } else {
+ for _, file := range test.expectedFiles {
+ assert.Contains(t, res, file)
+ }
+ }
+ })
+ }
+}
+
func Test_toFileTypes(t *testing.T) {
tests := []struct {
diff --git a/syft/pkg/cataloger/cataloger.go b/syft/pkg/cataloger/cataloger.go
index dd704695f4a..95de64534cf 100644
--- a/syft/pkg/cataloger/cataloger.go
+++ b/syft/pkg/cataloger/cataloger.go
@@ -23,6 +23,7 @@ import (
"github.com/anchore/syft/syft/pkg/cataloger/php"
"github.com/anchore/syft/syft/pkg/cataloger/portage"
"github.com/anchore/syft/syft/pkg/cataloger/python"
+ "github.com/anchore/syft/syft/pkg/cataloger/rekor"
"github.com/anchore/syft/syft/pkg/cataloger/rpm"
"github.com/anchore/syft/syft/pkg/cataloger/ruby"
"github.com/anchore/syft/syft/pkg/cataloger/rust"
@@ -104,6 +105,7 @@ func AllCatalogers(cfg Config) []pkg.Cataloger {
cpp.NewConanCataloger(),
portage.NewPortageCataloger(),
haskell.NewHackageCataloger(),
+ rekor.NewRekorCataloger(),
}, cfg.Catalogers)
}
diff --git a/syft/pkg/cataloger/rekor/rekor_cataloger.go b/syft/pkg/cataloger/rekor/rekor_cataloger.go
new file mode 100644
index 00000000000..272a4289489
--- /dev/null
+++ b/syft/pkg/cataloger/rekor/rekor_cataloger.go
@@ -0,0 +1,55 @@
+package rekor
+
+import (
+ "fmt"
+
+ "github.com/anchore/syft/internal"
+ "github.com/anchore/syft/internal/log"
+ "github.com/anchore/syft/syft/artifact"
+ "github.com/anchore/syft/syft/pkg"
+ rekorLib "github.com/anchore/syft/syft/rekor"
+ "github.com/anchore/syft/syft/source"
+)
+
+// rekor-cataloger searches the Rekor transparency log for SBOMS of executable files
+// found sboms are represented as external reference relationships
+
+const catalogerName = "rekor-cataloger"
+
+type Cataloger struct{}
+
+func NewRekorCataloger() *Cataloger {
+ return &Cataloger{}
+}
+
+func (c *Cataloger) Name() string {
+ return catalogerName
+}
+
+func (c *Cataloger) UsesExternalSources() bool {
+ return true
+}
+
+func (c *Cataloger) Catalog(resolver source.FileResolver) ([]pkg.Package, []artifact.Relationship, error) {
+ var catalogedRels []artifact.Relationship
+ locations, err := resolver.FilesByMIMEType(internal.ExecutableMIMETypeSet.List()...)
+ if err != nil {
+ return nil, nil, fmt.Errorf("failed to find binaries by mime types: %w", err)
+ }
+
+ client, err := rekorLib.NewClient()
+ if err != nil {
+ return nil, nil, fmt.Errorf("unable to get client: %w", err)
+ }
+
+ for _, location := range locations {
+ rels, err := rekorLib.CreateRekorSbomRels(resolver, location, client)
+ if err != nil {
+ log.Debugf("Rekor cataloger failed to create relationships: %w", err)
+ continue
+ }
+ catalogedRels = append(catalogedRels, rels...)
+ }
+
+ return nil, catalogedRels, nil
+}
diff --git a/syft/rekor/query.go b/syft/rekor/query.go
new file mode 100644
index 00000000000..233ae5a6832
--- /dev/null
+++ b/syft/rekor/query.go
@@ -0,0 +1,211 @@
+package rekor
+
+import (
+ "context"
+ "crypto/sha1" //nolint:gosec // sha1 needed for checksums in spdx format
+ "crypto/sha256"
+ "encoding/hex"
+ "errors"
+ "fmt"
+ "io"
+ "net/http"
+
+ "github.com/sigstore/cosign/pkg/cosign"
+ "github.com/sigstore/rekor/pkg/generated/client"
+ "github.com/sigstore/rekor/pkg/generated/client/entries"
+ "github.com/sigstore/rekor/pkg/generated/client/index"
+ "github.com/sigstore/rekor/pkg/generated/models"
+
+ "github.com/anchore/syft/internal/log"
+ "github.com/anchore/syft/syft/source"
+)
+
+// getSbom attempts to retrieve the SBOM from the URI.
+//
+// Precondition: client is not nil and validateAttestation has been called on att
+//
+// Postcondition: if no error, the returned byte list is not empty
+func getSbom(att *InTotoAttestation, client *http.Client) (*[]byte, error) {
+ if len(att.Predicate.Sboms) > 1 {
+ log.Info("attestation found on Rekor with multiple SBOMS, which is not currently supported. Proceeding with the first SBOM.")
+ }
+ uri := att.Predicate.Sboms[0].URI
+ if uri == "" {
+ return nil, errors.New("uri of sbom is empty")
+ }
+
+ resp, err := client.Get(uri)
+ if err != nil {
+ return nil, fmt.Errorf("error making http request: %w", err)
+ }
+
+ bytes, err := io.ReadAll(resp.Body)
+ defer resp.Body.Close()
+ if err != nil {
+ return nil, fmt.Errorf("error reading http response: %w", err)
+ }
+
+ if len(bytes) == 0 {
+ return nil, fmt.Errorf("retrieved sbom is empty")
+ }
+ return &bytes, nil
+}
+
+// getUuids returns the uuids of the Rekor entries associated with an sha256 hash
+//
+// Precondition: client is not nil
+func getUuids(sha256 string, client *client.Rekor) ([]string, error) {
+ if !sha256Check.MatchString(sha256) {
+ return nil, fmt.Errorf("invalid sha256 hash %v", sha256)
+ }
+
+ query := &models.SearchIndex{Hash: sha256}
+ params := index.NewSearchIndexParams().WithQuery(query)
+
+ res, err := client.Index.SearchIndex(params)
+ if err != nil {
+ return nil, err
+ }
+ return res.Payload, nil
+}
+
+// Precondition: client is not nil
+//
+// Postcondition: Rekor's signature over the entry is valid and the inclusion proof that Rekor provides us is valid
+func getAndVerifyRekorEntry(uuid string, client *client.Rekor) (*models.LogEntryAnon, error) {
+ params := entries.NewGetLogEntryByUUIDParams().WithEntryUUID(uuid)
+ res, err := client.Entries.GetLogEntryByUUID(params)
+ if err != nil {
+ return nil, err
+ }
+
+ logEntry := res.Payload
+ if len(logEntry) == 0 {
+ return nil, fmt.Errorf("retrieved rekor entry has no logEntryAnons")
+ }
+ if len(logEntry) > 1 {
+ return nil, fmt.Errorf("retrieved rekor entry has more than one logEntry")
+ }
+
+ // logEntry is a map from uuids to logEntryAnons
+ var logEntryAnon *models.LogEntryAnon
+ for _, val := range logEntry {
+ //nolint:gosec,exportloopref
+ logEntryAnon = &val // only one iteration of loop; no aliasing occurs
+ }
+
+ if logEntryAnon.LogIndex == nil {
+ return nil, fmt.Errorf("retrieved rekor entry has no log index")
+ }
+ logIndex := *logEntryAnon.LogIndex
+ log.Debugf("rekor entry %v was retrieved", logIndex)
+
+ ctx := context.Background()
+ if err = cosign.VerifyTLogEntry(ctx, client, logEntryAnon); err != nil {
+ return nil, fmt.Errorf("could not prove that the log entry is on rekor: %w", err)
+ }
+
+ return logEntryAnon, nil
+}
+
+// Precondition: client and its fields are not nil.
+//
+// Postcondition: if no error is returned, the returned struct and its fields are not nil
+func getAndVerifySbomFromUUID(uuid string, client *Client) (*sbomWithMetadata, error) {
+ logEntryAnon, err := getAndVerifyRekorEntry(uuid, client.rekorClient)
+ if err != nil {
+ return nil, fmt.Errorf("error retrieving rekor entry by uuid %v: \n\t\t%w", uuid, err)
+ }
+
+ logIndex := *logEntryAnon.LogIndex
+
+ if err = verify(client.rekorClient, logEntryAnon); err != nil {
+ return nil, fmt.Errorf("rekor log entry %v could not be verified: \n\t\t%w", logIndex, err)
+ }
+
+ log.Debugf("verification of rekor entry %v complete", logIndex)
+
+ att, err := parseAndValidateAttestation(logEntryAnon)
+ if err != nil {
+ return nil, fmt.Errorf("error parsing or validating attestation associated with rekor entry %v: %w", logIndex, err)
+ }
+
+ sbomBytes, err := getSbom(att, client.httpClient)
+ if err != nil {
+ return nil, fmt.Errorf("error retrieving sbom from rekor entry %v: %w", logIndex, err)
+ }
+
+ log.Debugf("SBOM (%v bytes) retrieved", len(*sbomBytes))
+
+ if err = verifySbomHash(att, sbomBytes); err != nil {
+ return nil, fmt.Errorf("could not verify retrieved sbom (from rekor entry %v): %w", logIndex, err)
+ }
+
+ sbomSha1 := sha1.Sum(*sbomBytes) //nolint:gosec // sha1 needed for checksums in spdx format
+ decodedHash := hex.EncodeToString(sbomSha1[:])
+
+ sbom, err := parseSbom(sbomBytes)
+ if err != nil {
+ return nil, fmt.Errorf("error parsing sbom from rekor entry %v: %w", logIndex, err)
+ }
+
+ sbomWrapped := &sbomWithMetadata{
+ executableSha256: att.Subject[0].Digest["sha256"],
+ sha1: decodedHash,
+ rekorEntry: uuid,
+ spdx: sbom,
+ }
+
+ return sbomWrapped, nil
+}
+
+// getAndVerifySbomsFromHash retrieves Rekor entries associated with an sha256 hash and verifies the entries and the sboms
+//
+// Precondition: client and its fields are not nil
+func getAndVerifySbomsFromHash(sha256 string, client *Client) ([]*sbomWithMetadata, error) {
+ uuids, err := getUuids(sha256, client.rekorClient)
+ if err != nil {
+ return nil, fmt.Errorf("error getting uuids on rekor associated with hash \"%v\": %w", sha256, err)
+ }
+
+ var sboms []*sbomWithMetadata
+ for _, uuid := range uuids {
+ sbom, err := getAndVerifySbomFromUUID(uuid, client)
+ if err != nil {
+ log.Debug(err)
+ continue
+ }
+ if sha256 != sbom.executableSha256 {
+ log.Warn("rekor returned a different entry than was asked for")
+ continue
+ }
+ sboms = append(sboms, sbom)
+ }
+
+ return sboms, nil
+}
+
+func getAndVerifySbomsFromResolver(resolver source.FileResolver, location source.Location, client *Client) ([]*sbomWithMetadata, error) {
+ closer, err := resolver.FileContentsByLocation(location)
+ if err != nil {
+ return nil, fmt.Errorf("error getting reader from resolver: %w", err)
+ }
+ defer closer.Close()
+
+ bytes, err := io.ReadAll(closer)
+ if err != nil {
+ return nil, fmt.Errorf("error reading bytes from file reader: %w", err)
+ }
+
+ sha256 := sha256.Sum256(bytes)
+ decodedHash := hex.EncodeToString(sha256[:])
+
+ log.Debugf("rekor is being queried for location %v and SHA256 %v", location.RealPath, decodedHash)
+
+ sboms, err := getAndVerifySbomsFromHash(decodedHash, client)
+ if err != nil {
+ return nil, fmt.Errorf("error searching rekor in location %v: %w", location.RealPath, err)
+ }
+
+ return sboms, nil
+}
diff --git a/syft/rekor/query_test.go b/syft/rekor/query_test.go
new file mode 100644
index 00000000000..a40e0c936bf
--- /dev/null
+++ b/syft/rekor/query_test.go
@@ -0,0 +1,76 @@
+package rekor
+
+import (
+ "net/http"
+ "testing"
+
+ "github.com/sigstore/rekor/pkg/generated/client"
+ "github.com/stretchr/testify/assert"
+)
+
+func Test_getAndVerifySbomFromUuid(t *testing.T) {
+ tests := []testCase{
+ {
+ name: "attestation hash does not match hash in rekor entry body",
+ uuidsToLogEntryFile: map[string]string{
+ "172326f41e80038d7c3da99a08b07d375e51995123287cfb2b4be76139176faf": "test-fixtures/log-entries/log-entry-3.json",
+ },
+ expectedErr: "the attestation hash could not be verified",
+ },
+ {
+ name: "modified certificate",
+ uuidsToLogEntryFile: map[string]string{
+ "8f434346648f6b96df89dda901c5176b10a6d83961dd3c1ac88b59b2dc327aa4": "test-fixtures/log-entries/log-entry-4.json",
+ },
+ expectedErr: "could not prove that the log entry is on rekor",
+ },
+ {
+ name: "sbom could not be retrieved",
+ uuidsToLogEntryFile: map[string]string{
+ "c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4": "test-fixtures/log-entries/log-entry-1.json",
+ },
+ httpClient: &http.Client{
+ Transport: roundTripperMock{sbomFile: "this-file-does-not-exist"},
+ },
+ expectedErr: "error retrieving sbom from rekor",
+ },
+ {
+ name: "hash of sbom does not match sbom hash in attestation",
+ uuidsToLogEntryFile: map[string]string{
+ "c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4": "test-fixtures/log-entries/log-entry-1.json",
+ },
+ httpClient: &http.Client{
+ Transport: roundTripperMock{sbomFile: "test-fixtures/sboms/sbom-2.txt"},
+ },
+ expectedErr: "could not verify retrieved sbom",
+ },
+ {
+ name: "log entry payload is nil",
+ uuidsToLogEntryFile: map[string]string{
+ "c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4": returnNilPayload,
+ },
+ httpClient: &http.Client{
+ Transport: roundTripperMock{sbomFile: "test-fixtures/sboms/sbom-1.txt"},
+ },
+ expectedErr: "retrieved rekor entry has no logEntryAnons",
+ },
+ }
+
+ for _, test := range tests {
+ t.Run(test.name, func(t *testing.T) {
+
+ client := &Client{
+ rekorClient: &client.Rekor{Entries: &rekorClientMock{test: test}},
+ httpClient: test.httpClient,
+ }
+
+ var uuid string
+ for k := range test.uuidsToLogEntryFile {
+ uuid = k
+ }
+
+ _, err := getAndVerifySbomFromUUID(uuid, client)
+ assert.ErrorContains(t, err, test.expectedErr)
+ })
+ }
+}
diff --git a/syft/rekor/rekor.go b/syft/rekor/rekor.go
new file mode 100644
index 00000000000..76459871d08
--- /dev/null
+++ b/syft/rekor/rekor.go
@@ -0,0 +1,123 @@
+package rekor
+
+import (
+ "errors"
+ "fmt"
+ "net/http"
+
+ "github.com/sigstore/cosign/cmd/cosign/cli/rekor"
+ "github.com/sigstore/rekor/pkg/generated/client"
+ "github.com/spdx/tools-golang/spdx"
+
+ "github.com/anchore/syft/internal/log"
+ "github.com/anchore/syft/syft/artifact"
+ "github.com/anchore/syft/syft/source"
+)
+
+const (
+ DefaultRekorAddr = "https://rekor.sigstore.dev"
+ InfoForUser = `
+ [EXPERIMENTAL FEATURE: Rekor-cataloger]
+
+ This SBOM contains a relationship that references an external document. This
+ document is not present in the cataloged image or directory; rather it has
+ been found by searching the Rekor transparency log (https://www.sigstore.dev/).
+
+ Trusting this external document relationship requires trusting several entities:
+ - the user or CI/CD action that uploaded an entry to Rekor
+ - Rekor transparency log
+ - Fulcio CA
+
+ The Rekor entry(s) that were used to create the external document relationship(s)
+ are listed below by UUID. See https://github.com/sigstore/rekor for
+ information on how to query Rekor.
+ `
+)
+
+type Client struct {
+ rekorClient *client.Rekor
+ httpClient *http.Client
+}
+
+type ExternalRef struct {
+ SpdxRef spdx.ExternalDocumentRef2_2
+}
+
+// NewClient returns a client to use the rekor library
+func NewClient() (*Client, error) {
+ rekorClient, err := rekor.NewClient(DefaultRekorAddr)
+ if err != nil {
+ return nil, errors.New("error creating rekor client")
+ }
+
+ return &Client{
+ rekorClient: rekorClient,
+ httpClient: &http.Client{},
+ }, nil
+}
+
+func (r ExternalRef) ID() artifact.ID {
+ id, err := artifact.IDByHash(r.SpdxRef.Checksum)
+ if err != nil {
+ // TODO: what to do in this case?
+ log.Warnf("unable to get fingerprint of ExternalRef %+v: %+v", r, err)
+ return ""
+ }
+ return id
+}
+
+func NewExternalRef(docRef string, uri string, alg spdx.ChecksumAlgorithm, hash string) ExternalRef {
+ return ExternalRef{
+ SpdxRef: spdx.ExternalDocumentRef2_2{
+ DocumentRefID: docRef, // docRef is how to identify this ref internally within the SBOM
+ URI: uri,
+ Alg: string(alg),
+ Checksum: hash, // hash of the external document
+ },
+ }
+}
+
+func warnInfoForUser(uuids []string) {
+ s := fmt.Sprintf("%s\t%v\n", InfoForUser, uuids)
+ log.Warn(s)
+}
+
+// CreateRekorSbomRels searches Rekor by the hash of the file in the given location and creates external reference relationships
+// for any sboms that are found and verified
+func CreateRekorSbomRels(resolver source.FileResolver, location source.Location, client *Client) ([]artifact.Relationship, error) {
+ sboms, err := getAndVerifySbomsFromResolver(resolver, location, client)
+ if err != nil {
+ return nil, err
+ }
+
+ var usedRekorEntries []string
+ var rels []artifact.Relationship
+ for _, sbomWithDigest := range sboms {
+ sbom := sbomWithDigest.spdx
+ if sbom.CreationInfo == nil {
+ log.Warnf("SPDX SBOM found on rekor for file in location %v, but its Creation Info section is empty. Ignoring SBOM", location.RealPath)
+ continue
+ }
+ namespace := sbom.CreationInfo.DocumentNamespace
+ docRef := sbom.CreationInfo.DocumentName
+ if namespace == "" {
+ log.Warnf("SPDX SBOM found on rekor for file in location %v, but its namespace is empty. Ignoring SBOM.", location.RealPath)
+ continue
+ }
+
+ externalRef := NewExternalRef(docRef, namespace, spdx.SHA1, sbomWithDigest.sha1)
+ rel := &artifact.Relationship{
+ From: location.Coordinates,
+ To: externalRef,
+ Type: artifact.DescribedByRelationship,
+ }
+ rels = append(rels, *rel)
+ usedRekorEntries = append(usedRekorEntries, sbomWithDigest.rekorEntry)
+ log.Debug("relationship created for SBOM found on rekor")
+ }
+ if len(rels) > 0 {
+ warnInfoForUser(usedRekorEntries)
+ }
+
+ return rels, nil
+}
diff --git a/syft/rekor/rekor_test.go b/syft/rekor/rekor_test.go
new file mode 100644
index 00000000000..350a4b0a631
--- /dev/null
+++ b/syft/rekor/rekor_test.go
@@ -0,0 +1,222 @@
+package rekor
+
+import (
+ "bytes"
+ "encoding/json"
+ "errors"
+ "fmt"
+ "io"
+ "net/http"
+ "os"
+ "testing"
+
+ "github.com/go-openapi/runtime"
+ "github.com/sigstore/rekor/pkg/generated/client"
+ "github.com/sigstore/rekor/pkg/generated/client/entries"
+ "github.com/sigstore/rekor/pkg/generated/client/index"
+ "github.com/sigstore/rekor/pkg/generated/models"
+ "github.com/sirupsen/logrus"
+ "github.com/sirupsen/logrus/hooks/test"
+ "github.com/spdx/tools-golang/spdx"
+ "github.com/stretchr/testify/assert"
+
+ "github.com/anchore/syft/internal/log"
+ "github.com/anchore/syft/syft/artifact"
+ "github.com/anchore/syft/syft/source"
+)
+
+type testCase struct {
+ name string
+ inputFilePath string // resolver and location are created from this
+ expectedOutput []artifact.Relationship
+ uuidsToLogEntryFile map[string]string // tells the rekorClient mock what uuids and what log entries to return
+ httpClient *http.Client
+ expectedErr string
+ expectedLog string
+}
+
+func Test_CreateRekorSbomRels(t *testing.T) {
+ defaultTc := &http.Client{
+ Transport: roundTripperMock{sbomFile: "test-fixtures/sboms/sbom-1.txt"},
+ }
+
+ testLogger, hook := test.NewNullLogger()
+ log.Log = testLogger
+
+ tests := []testCase{
+ {
+ name: "one sbom entry, one non-sbom entry",
+ inputFilePath: "test-fixtures/files-to-hash/file-to-hash-1.txt",
+ expectedOutput: []artifact.Relationship{
+ {
+ From: source.NewLocation("test-fixtures/files-to-hash/file-to-hash-1.txt").Coordinates,
+ To: NewExternalRef(
+ "SBOM-SPDX-ba96f4cc-d9e3-4c83-a1db-ec5456b6a9ce",
+ "http://www.example.com/binary.spdx",
+ spdx.SHA1,
+ "eb141a8a026322e2ff6a1ec851af5268dfe59b20",
+ ),
+ Type: artifact.DescribedByRelationship,
+ },
+ },
+ uuidsToLogEntryFile: map[string]string{
+ "8c3b99433eda340aa739dbc5759c032b120991ac239359773cad9d64a03a3e8f": "test-fixtures/log-entries/log-entry-6.json",
+ "88aa67ce4f4a3fa3e8da8adb4e4799b53372f078459639e571e5583e2685c304": "test-fixtures/log-entries/log-entry-2.json",
+ },
+ },
+ {
+ name: "rekor returns attestation with different subject sha than was asked",
+ inputFilePath: "test-fixtures/files-to-hash/file-to-hash-1.txt",
+ uuidsToLogEntryFile: map[string]string{
+ "09f4d6138d167fc246dc69badb11b9a931395e7ca00fb38a1889d287f9d4110e": "test-fixtures/log-entries/log-entry-5.json",
+ },
+ httpClient: &http.Client{
+ Transport: roundTripperMock{sbomFile: "test-fixtures/sboms/sbom-3.txt"},
+ },
+ expectedLog: "rekor returned a different entry than was asked for",
+ },
+ {
+ name: "sbom namespace is nil",
+ inputFilePath: "test-fixtures/files-to-hash/file-to-hash-2.txt",
+ uuidsToLogEntryFile: map[string]string{
+ "4090e1dde58ba2a7997e1e7f66d85970fc3eba77ab65c17cd75c55c447cb43db": "test-fixtures/log-entries/log-entry-7.json",
+ },
+ httpClient: &http.Client{
+ Transport: roundTripperMock{sbomFile: "test-fixtures/sboms/sbom-3.txt"},
+ },
+ expectedLog: "SPDX SBOM found on rekor for file in location test-fixtures/files-to-hash/file-to-hash-2.txt, but its namespace is empty. Ignoring SBOM.",
+ },
+ {
+ name: "file to hash is a folder",
+ inputFilePath: "test-fixtures/",
+ expectedErr: "error reading bytes from file reader",
+ },
+ }
+
+ for _, test := range tests {
+ t.Run(test.name, func(t *testing.T) {
+ // set up mocks
+ rekorClientMock := &rekorClientMock{test: test}
+ rekorMock := &client.Rekor{
+ Entries: rekorClientMock,
+ Index: rekorClientMock,
+ }
+
+ var httpClient *http.Client
+ if test.httpClient == nil {
+ httpClient = defaultTc
+ } else {
+ httpClient = test.httpClient
+ }
+
+ client := &Client{
+ rekorClient: rekorMock,
+ httpClient: httpClient,
+ }
+
+ resolver := source.NewMockResolverForPaths(test.inputFilePath)
+ location := source.NewLocation(test.inputFilePath)
+
+ rels, err := CreateRekorSbomRels(resolver, location, client)
+
+ assert.Equal(t, test.expectedOutput, rels)
+ if test.expectedErr == "" {
+ assert.NoError(t, err)
+ } else {
+ assert.ErrorContains(t, err, test.expectedErr)
+ }
+ if test.expectedLog != "" && !logContains(hook.AllEntries(), test.expectedLog) {
+ msg := fmt.Sprintf("the expected log message \"%v\" was not logged.\nThe last log message was \"%v\"", test.expectedLog, hook.LastEntry().Message)
+ assert.FailNow(t, msg)
+ }
+ })
+ }
+}
+
+/*
+***************
+
+ Functions and types to complete the interfaces in client.Rekor. Most are unimplemented.
+
+****************
+*/
+
+const returnNilPayload = "return nil payload"
+
+type rekorClientMock struct {
+ test testCase
+}
+
+type roundTripperMock struct {
+ sbomFile string
+}
+
+func (rt roundTripperMock) RoundTrip(req *http.Request) (*http.Response, error) {
+ sbomBytes, err := os.ReadFile(rt.sbomFile)
+ if err != nil {
+ return nil, err
+ }
+ return &http.Response{
+ StatusCode: 200,
+ Body: io.NopCloser(bytes.NewReader(sbomBytes)),
+ }, nil
+}
+
+func (r *rekorClientMock) CreateLogEntry(params *entries.CreateLogEntryParams, opts ...entries.ClientOption) (*entries.CreateLogEntryCreated, error) {
+ return nil, errors.New("Unimplemented")
+}
+
+func (r *rekorClientMock) GetLogEntryByIndex(params *entries.GetLogEntryByIndexParams, opts ...entries.ClientOption) (*entries.GetLogEntryByIndexOK, error) {
+ return nil, errors.New("Unimplemented")
+}
+
+func (r *rekorClientMock) SearchLogQuery(params *entries.SearchLogQueryParams, opts ...entries.ClientOption) (*entries.SearchLogQueryOK, error) {
+ return nil, errors.New("Unimplemented")
+}
+
+func (r *rekorClientMock) SetTransport(transport runtime.ClientTransport) {}
+
+func (r *rekorClientMock) GetLogEntryByUUID(params *entries.GetLogEntryByUUIDParams, opts ...entries.ClientOption) (*entries.GetLogEntryByUUIDOK, error) {
+ uuid := params.EntryUUID
+
+ filePath, ok := r.test.uuidsToLogEntryFile[uuid]
+ if !ok {
+ return nil, errors.New("no test data file exists for uuid %v")
+ }
+
+ if filePath == returnNilPayload {
+ return &entries.GetLogEntryByUUIDOK{
+ Payload: nil,
+ }, nil
+ }
+
+ entry := &models.LogEntry{}
+ bytes, err := os.ReadFile(filePath)
+ if err != nil {
+ return nil, fmt.Errorf("error reading test data from file %v: \n%w", filePath, err)
+ }
+ if err = json.Unmarshal(bytes, entry); err != nil {
+ return nil, fmt.Errorf("error unmarshaling json test data from file %v: \n%w", filePath, err)
+ }
+
+ return &entries.GetLogEntryByUUIDOK{Payload: *entry}, nil
+}
+
+// SearchIndex ignores input hash; just returns uuids in test case
+func (r *rekorClientMock) SearchIndex(params *index.SearchIndexParams, opts ...index.ClientOption) (*index.SearchIndexOK, error) {
+ var uuids []string
+ for uuid := range r.test.uuidsToLogEntryFile {
+ uuids = append(uuids, uuid)
+ }
+
+ return &index.SearchIndexOK{Payload: uuids}, nil
+}
+
+func logContains(log []*logrus.Entry, s string) bool {
+ for _, entry := range log {
+ if entry.Message == s {
+ return true
+ }
+ }
+ return false
+}
diff --git a/syft/rekor/test-fixtures/attestations/attestation-1.json b/syft/rekor/test-fixtures/attestations/attestation-1.json
new file mode 100644
index 00000000000..68f05717078
--- /dev/null
+++ b/syft/rekor/test-fixtures/attestations/attestation-1.json
@@ -0,0 +1,21 @@
+{
+ "_type": "https://in-toto.io/Statement/v0.1",
+ "predicateType": "google.com/sbom",
+ "predicate": {
+ "sboms": [
+ {
+ "format": "SPDX",
+ "digest": {
+ "sha256": "02948ad50464ee57fe237b09054c45b1bff6c7d18729eea1eb740d89d9563209"
+ },
+ "uri": "https://github.com/lumjjb/sample-golang-prov/releases/download/v1.3/binary.spdx"
+ }
+ ],
+ "build-metadata": {
+ "artifact-source-repo": "https://github.com/lumjjb/sample-golang-prov",
+ "artifact-source-repo-commit": "c8cb5f292c77064aeabb488ea4f5e483a5073076",
+ "attestation-generator-repo": "https://github.com/lumjjb/slsa-github-generator-go",
+ "attestation-generator-repo-commit": "6948f4c67f6bca55657fe1fb3630b55b1714ef2d"
+ }
+ }
+}
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/attestations/attestation-2.json b/syft/rekor/test-fixtures/attestations/attestation-2.json
new file mode 100644
index 00000000000..ba3d9e248c4
--- /dev/null
+++ b/syft/rekor/test-fixtures/attestations/attestation-2.json
@@ -0,0 +1,21 @@
+{
+ "_type": "https://in-toto.io/Statement/v0.1"
+ "predicateType": "google.com/sbom",
+ "predicate": {
+ "sboms": [
+ {
+ "format": "SPDX",
+ "digest": {
+ "sha256": "02948ad50464ee57fe237b09054c45b1bff6c7d18729eea1eb740d89d9563209"
+ },
+ "uri": "https://github.com/lumjjb/sample-golang-prov/releases/download/v1.3/binary.spdx"
+ }
+ ],
+ "build-metadata": {
+ "artifact-source-repo": "https://github.com/lumjjb/sample-golang-prov",
+ "artifact-source-repo-commit": "c8cb5f292c77064aeabb488ea4f5e483a5073076",
+ "attestation-generator-repo": "https://github.com/lumjjb/slsa-github-generator-go",
+ "attestation-generator-repo-commit": "6948f4c67f6bca55657fe1fb3630b55b1714ef2d"
+ }
+ }
+}
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/attestations/attestation-3.json b/syft/rekor/test-fixtures/attestations/attestation-3.json
new file mode 100644
index 00000000000..e850c161c3a
--- /dev/null
+++ b/syft/rekor/test-fixtures/attestations/attestation-3.json
@@ -0,0 +1,31 @@
+{
+ "_type": "https://in-toto.io/Statement/v0.1",
+ "predicateType": "google.com/sbom",
+ "subject": [
+ {
+ "name": "binary-linux-amd64",
+ "digest": {
+ "sha256": "f2e59e0e82c6a1b2c18ceea1dcb739f680f50ad588759217fc564b6aa5234791"
+ }
+ },
+ {
+ }
+ ],
+ "predicate": {
+ "sboms": [
+ {
+ "format": "SPDX",
+ "digest": {
+ "sha256": "02948ad50464ee57fe237b09054c45b1bff6c7d18729eea1eb740d89d9563209"
+ },
+ "uri": "https://github.com/lumjjb/sample-golang-prov/releases/download/v1.3/binary.spdx"
+ }
+ ],
+ "build-metadata": {
+ "artifact-source-repo": "https://github.com/lumjjb/sample-golang-prov",
+ "artifact-source-repo-commit": "c8cb5f292c77064aeabb488ea4f5e483a5073076",
+ "attestation-generator-repo": "https://github.com/lumjjb/slsa-github-generator-go",
+ "attestation-generator-repo-commit": "6948f4c67f6bca55657fe1fb3630b55b1714ef2d"
+ }
+ }
+}
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/attestations/attestation-4.json b/syft/rekor/test-fixtures/attestations/attestation-4.json
new file mode 100644
index 00000000000..5062e999158
--- /dev/null
+++ b/syft/rekor/test-fixtures/attestations/attestation-4.json
@@ -0,0 +1,12 @@
+{
+ "_type": "https://in-toto.io/Statement/v0.1",
+ "predicateType": "google.com/sbom",
+ "subject": [
+ {
+ "name": "binary-linux-amd64",
+ "digest": {
+ "sha256": "f2e59e0e82c6a1b2c18ceea1dcb739f680f50ad588759217fc564b6aa5234791"
+ }
+ }
+ ]
+ }
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/attestations/attestation-5.json b/syft/rekor/test-fixtures/attestations/attestation-5.json
new file mode 100644
index 00000000000..9ce67cceff2
--- /dev/null
+++ b/syft/rekor/test-fixtures/attestations/attestation-5.json
@@ -0,0 +1,12 @@
+{
+ "_type": "https://in-toto.io/Statement/v0.1",
+ "predicateType": "foobar pred type",
+ "subject": [
+ {
+ "name": "binary-linux-amd64",
+ "digest": {
+ "sha256": "f2e59e0e82c6a1b2c18ceea1dcb739f680f50ad588759217fc564b6aa5234791"
+ }
+ }
+ ]
+ }
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/attestations/attestation-6.json b/syft/rekor/test-fixtures/attestations/attestation-6.json
new file mode 100644
index 00000000000..cb1fcf563d0
--- /dev/null
+++ b/syft/rekor/test-fixtures/attestations/attestation-6.json
@@ -0,0 +1,12 @@
+{
+ "_type": "https://in-toto.io/Statement/v0.1",
+ "predicateType": "google.com/sbom",
+ "subject": [
+ {
+ "name": "binary-linux-amd64",
+ "digest": {
+ "sha257": "f2e59e0e82c6a1b2c18ceea1dcb739f680f50ad588759217fc564b6aa5234791"
+ }
+ }
+ ]
+ }
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/files-to-hash/file-to-hash-1.txt b/syft/rekor/test-fixtures/files-to-hash/file-to-hash-1.txt
new file mode 100644
index 00000000000..5e1c309dae7
--- /dev/null
+++ b/syft/rekor/test-fixtures/files-to-hash/file-to-hash-1.txt
@@ -0,0 +1 @@
+Hello World
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/files-to-hash/file-to-hash-2.txt b/syft/rekor/test-fixtures/files-to-hash/file-to-hash-2.txt
new file mode 100644
index 00000000000..ad2649aadb8
--- /dev/null
+++ b/syft/rekor/test-fixtures/files-to-hash/file-to-hash-2.txt
@@ -0,0 +1 @@
+hi there
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/log-entries/log-entry-1.json b/syft/rekor/test-fixtures/log-entries/log-entry-1.json
new file mode 100644
index 00000000000..c2dd2844582
--- /dev/null
+++ b/syft/rekor/test-fixtures/log-entries/log-entry-1.json
@@ -0,0 +1,43 @@
+{
+ "c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4": {
+ "attestation": {
+ "data": "eyJfdHlwZSI6Imh0dHBzOi8vaW4tdG90by5pby9TdGF0ZW1lbnQvdjAuMSIsInByZWRpY2F0ZVR5cGUiOiJodHRwOi8vbHVtampiL3Nib20tZG9jdW1lbnRzIiwic3ViamVjdCI6W3sibmFtZSI6ImJpbmFyeS1saW51eC1hbWQ2NCIsImRpZ2VzdCI6eyJzaGEyNTYiOiJmMmU1OWUwZTgyYzZhMWIyYzE4Y2VlYTFkY2I3MzlmNjgwZjUwYWQ1ODg3NTkyMTdmYzU2NGI2YWE1MjM0NzkxIn19XSwicHJlZGljYXRlIjp7InNib21zIjpbeyJmb3JtYXQiOiJTUERYIiwiZGlnZXN0Ijp7InNoYTI1NiI6IjAyOTQ4YWQ1MDQ2NGVlNTdmZTIzN2IwOTA1NGM0NWIxYmZmNmM3ZDE4NzI5ZWVhMWViNzQwZDg5ZDk1NjMyMDkifSwidXJpIjoiaHR0cHM6Ly9naXRodWIuY29tL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvcmVsZWFzZXMvZG93bmxvYWQvdjEuMy9iaW5hcnkuc3BkeCJ9XSwiYnVpbGQtbWV0YWRhdGEiOnsiYXJ0aWZhY3Qtc291cmNlLXJlcG8iOiJodHRwczovL2dpdGh1Yi5jb20vbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdiIsImFydGlmYWN0LXNvdXJjZS1yZXBvLWNvbW1pdCI6ImM4Y2I1ZjI5MmM3NzA2NGFlYWJiNDg4ZWE0ZjVlNDgzYTUwNzMwNzYiLCJhdHRlc3RhdGlvbi1nZW5lcmF0b3ItcmVwbyI6Imh0dHBzOi8vZ2l0aHViLmNvbS9sdW1qamIvc2xzYS1naXRodWItZ2VuZXJhdG9yLWdvIiwiYXR0ZXN0YXRpb24tZ2VuZXJhdG9yLXJlcG8tY29tbWl0IjoiNjk0OGY0YzY3ZjZiY2E1NTY1N2ZlMWZiMzYzMGI1NWIxNzE0ZWYyZCJ9fX0="
+ },
+ "body": "eyJhcGlWZXJzaW9uIjoiMC4wLjEiLCJraW5kIjoiaW50b3RvIiwic3BlYyI6eyJjb250ZW50Ijp7Imhhc2giOnsiYWxnb3JpdGhtIjoic2hhMjU2IiwidmFsdWUiOiI2ZTY5MmRmNzZjZDEyZWNkZTY1YzQ0MjFiNGRkM2JiZDg4NjVjYTQ1ZjJiNmY3YjgzZGY4ZWFmYTFmMDhiZjIyIn0sInBheWxvYWRIYXNoIjp7ImFsZ29yaXRobSI6InNoYTI1NiIsInZhbHVlIjoiMzIzYWUxNGIyZGY1Y2Q5NGY5ZmU4MzJiMjVhOWJlMTRmNWNmZDZjZTRjNzZlZGQ5ODY5NGI4ZTIwZDUxZTk2MyJ9fSwicHVibGljS2V5IjoiTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVUlNSRU5EUVhOeFowRjNTVUpCWjBsVVpXaEhOeXRVV1RrdllUbFZaalJhSzJOcmEzZEJTRTFOUlhwQlMwSm5aM0ZvYTJwUFVGRlJSRUY2UVhFS1RWSlZkMFYzV1VSV1VWRkxSWGQ0ZW1GWFpIcGtSemw1V2xNMWExcFlXWGhGVkVGUVFtZE9Wa0pCVFZSRFNFNXdXak5PTUdJelNteE5RalJZUkZSSmVRcE5SRmw1VDBSRk5VMUVWWGROYkc5WVJGUkplVTFFV1hsUFJFVTFUVlJWZDAxV2IzZEJSRUphVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVDa0YzUlVoQk1FbEJRa0ZxV2psS1dUTTFhRXBPZEd4eWJXaHRNMGc1WlcxWWRXSjVUQzl5Y1V4UU9GUk9lRm8xVkZaMk0zVmthME5FYVVGQlFrZEROMGdLY2tOV1dFOTJMMVpKV0N0RGFtWnpTRzFzVXpsaE5EbEJaalI1VG1KaWRXcG5aMGd6VFVsSlFqaDZRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRalJCZHdwRmQxbEVWbEl3YkVKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDAxM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXUkNaMDVXU0ZFMFJVWm5VVlY2YzJwRENtNXJNMnRZVEdaUFVVaFdaelo2YjFWS2QwdDJkRUpuZDBoM1dVUldVakJxUWtKbmQwWnZRVlZYVFVGbFdEVkdSbkJYWVhCbGMzbFJiMXBOYVRCRGNrWUtlR1p2ZDJkWk9FZEJNVlZrUlZGRlFpOTNVMEpvUkVOQ1oxbGFMMkZJVWpCalNFMDJUSGs1Ym1GWVVtOWtWMGwxV1RJNWRFd3llREZpVjNCeFdXazVlZ3BpU0U1b1RGZGtjR1JIYURGWmFURnVXbGMxYkdOdFJqQmlNMGwwV2pJNGRreHRaSEJrUjJneFdXazVNMkl6U25KYWJYaDJaRE5OZG1NeWVIcFpWRTVtQ2xsdVZuQmlSMUpzWTJrMU5XSlhlRUZPYW1zd1QwZFpNRmw2V1ROYWFscHBXVEpGTVU1VVdURk9NbHBzVFZkYWFVMTZXWHBOUjBreFRsZEplRTU2UlRBS1dsZFplVnBFUVRWQ1oyOXlRbWRGUlVGWlR5OU5RVVZDUWtOMGIyUklVbmRqZW05MlRETlNkbUV5Vm5WTWJVWnFaRWRzZG1KdVRYVmFNbXd3WVVoV2FRcGtXRTVzWTIxT2RtSnVVbXhpYmxGMVdUSTVkRTFEWTBkRGFYTkhRVkZSUW1jM09IZEJVVlZGUjFkNE1XSlhjSEZaYVRsNldWY3hkMkpIVlhSYU1qbHpDbGxYTlc1TVdFSjVZak5aZDBWbldVdExkMWxDUWtGSFJIWjZRVUpCWjFGRlkwaFdlbUZFUVdOQ1oyOXlRbWRGUlVGWlR5OU5RVVZIUWtFMWVWcFhXbm9LVEROU2FGb3pUWFprYWtWMVRYcEJaVUpuYjNKQ1owVkZRVmxQTDAxQlJVVkNRa0pVVkVaT1FrbEhaSFpKU0Vwc1lrZFdhR015Vm5sTlJGbEhRMmx6UndwQlVWRkNaemM0ZDBGUlRVVkxSMDAwV1RKSk1WcHFTVFZOYlUwelRucEJNazVIUm14WlYwcHBUa1JuTkZwWFJUQmFhbFpzVGtSbmVsbFVWWGRPZWsxM0NrNTZXWGREWjFsSlMyOWFTWHBxTUVWQmQwMUVZVUZCZDFwUlNYaEJTVFZpTkN0TWFXOXplQzlHT1Uxa1lsWTBTV1kzT0hOYVRsTTRVVWRXTDNKcWVEY0tOM0pIVVZSM1NUTjRhblI0YTNOWWFtNTNaMlJ1TnpKc1ZXVklNMWxuU1hkSGIwOHhSbE5qTTJNM05sWjRMMUUzTW1SQmFIUXpLeTl6TDBOalF6QkZSUXB3U0ZaWU0wVkJWbFJ1TWxWbVdGTXJiV0UwSzB3MVFuRkhOa3d4UVVNd2F3b3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0ifX0=",
+ "integratedTime": 1656443102,
+ "logID": "c0d23d6ad406973f9559f3ba2d1ca01f84147d8ffc5b8445c224f98b9591801d",
+ "logIndex": 2790629,
+ "verification": {
+ "inclusionProof": {
+ "hashes": [
+ "21753488ffb355349d778e6b0bc7b751275c616ea5142b976b83a4cb936ed3c5",
+ "1b979d3888a4556b8f0226a8676341b670530dbfc157332019169ad052f415f4",
+ "93ff9c4780fc71521487b5edcb8dba423cf1e390cf91458073245eb15e48d7aa",
+ "bc1876ca19fe5a81bcf4e355b66dcf5ca0b96d6bc9829222e419e6fa15b22803",
+ "dc776b1c4245f696980e4ba409e14773b76de74b5ce7c952743f2c53102aef3f",
+ "061e423c1efd6a7f0b716ba3fb1e5e920f7bd8063aceebe4be66c319401cd922",
+ "ceb123c9d9b8cc69268fc19d5fb8756b75d3d7ebd5d7287fa17054658a3994fa",
+ "ac2c8a398924b8e66f6a0e7deb43087b7595767172e96e57ca645d54ef16971e",
+ "46801bd92535dc316e387080cb7951aa46706de8b0a50d292d7e9792a4638f59",
+ "53dbd77e427b0272da3c9d7189873a2c346274f956bb95d6bd04b2e37f0e220c",
+ "5a0677890af1a3e99d0b52d4efb25c02b244b34e434ac1fa4066d9c9cf835f39",
+ "c068fe8ff12f57fc6ce1afd81adb1a17461cf5622501c1da503c13f60e89a2b2",
+ "2084473eea3dcf03207389596c2f3fd77f82d41d30d4ba7f0de167555dbbe9a2",
+ "1824bcb91e9cffea6debca685462ef07690a2a7490c0efe0230831c5dc26a06a",
+ "d319a19d47c2583b77d361378779aeb73b3f3b4870dca0589a92f3189bbe785c",
+ "736805ad34a35ca42825641b33fa98ee87a42a637d431f84e467a89448a9447e",
+ "d5cbab8313d19cbfc84d2f5f5267563d059a06b45f82ff5553a52a028db4f188",
+ "2c12d5d5e616efae26ee7ceec4efd3872ff6ddfc7179ceb39fa250ca360b1d98",
+ "ebad72fac3bc745ef56c7ac7c7f6e5203b531189838bfde8035047c5a90370e3",
+ "806e7153f439cdb4558d7ac89defb0e17aa9742e888cb660774b94b5399c3322",
+ "efb36cfc54705d8cd921a621a9389ffa03956b15d68bfabadac2b4853852079b"
+ ],
+ "logIndex": 2790629,
+ "rootHash": "f31c8a0d6eac139ac596a9e391313a9dad76dd97d1c85cc845f74bfd9e2bc372",
+ "treeSize": 3089647
+ },
+ "signedEntryTimestamp": "MEQCIB6CQS7AgkXVN8WjeVfPWvfq5dpHzkGY6j5A9F6P2s+8AiBJxl1XlHRYRuDpCqIHj5bVZAkTQPVEYG/r5nDIxJTNaQ=="
+ }
+ }
+ }
+
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/log-entries/log-entry-2.json b/syft/rekor/test-fixtures/log-entries/log-entry-2.json
new file mode 100644
index 00000000000..a33db5201aa
--- /dev/null
+++ b/syft/rekor/test-fixtures/log-entries/log-entry-2.json
@@ -0,0 +1,42 @@
+{
+ "88aa67ce4f4a3fa3e8da8adb4e4799b53372f078459639e571e5583e2685c304": {
+ "attestation": {
+ "data": "eyJfdHlwZSI6Imh0dHBzOi8vaW4tdG90by5pby9TdGF0ZW1lbnQvdjAuMSIsInByZWRpY2F0ZVR5cGUiOiJodHRwczovL3Nsc2EuZGV2L3Byb3ZlbmFuY2UvdjAuMiIsInN1YmplY3QiOlt7Im5hbWUiOiJiaW5hcnktbGludXgtYW1kNjQiLCJkaWdlc3QiOnsic2hhMjU2IjoiZjJlNTllMGU4MmM2YTFiMmMxOGNlZWExZGNiNzM5ZjY4MGY1MGFkNTg4NzU5MjE3ZmM1NjRiNmFhNTIzNDc5MSJ9fV0sInByZWRpY2F0ZSI6eyJidWlsZGVyIjp7ImlkIjoiaHR0cHM6Ly9naXRodWIuY29tL2x1bWpqYi9zbHNhLWdpdGh1Yi1nZW5lcmF0b3ItZ28vLmdpdGh1Yi93b3JrZmxvd3Mvc2xzYTNfYnVpbGRlci55bWxANjk0OGY0YzY3ZjZiY2E1NTY1N2ZlMWZiMzYzMGI1NWIxNzE0ZWYyZCJ9LCJidWlsZFR5cGUiOiJodHRwczovL2dpdGh1Yi5jb20vc2xzYS1mcmFtZXdvcmsvc2xzYS1naXRodWItZ2VuZXJhdG9yLWdvQHYxIiwiaW52b2NhdGlvbiI6eyJjb25maWdTb3VyY2UiOnsidXJpIjoiZ2l0K2h0dHBzOi8vZ2l0aHViLmNvbS9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92QHJlZnMvdGFncy92MS4zIiwiZGlnZXN0Ijp7InNoYTEiOiJjOGNiNWYyOTJjNzcwNjRhZWFiYjQ4OGVhNGY1ZTQ4M2E1MDczMDc2In0sImVudHJ5UG9pbnQiOiIuZ2l0aHViL3dvcmtmbG93cy9zbHNhLWdvcmVsZWFzZXIueWFtbCJ9LCJwYXJhbWV0ZXJzIjp7fSwiZW52aXJvbm1lbnQiOnsiYXJjaCI6Ilg2NCIsImdpdGh1Yl9hY3RvciI6Im1kZWljYXMiLCJnaXRodWJfYWN0b3JfaWQiOiI2MDg1NTEyMyIsImdpdGh1Yl9iYXNlX3JlZiI6IiIsImdpdGh1Yl9ldmVudF9uYW1lIjoicHVzaCIsImdpdGh1Yl9ldmVudF9wYXlsb2FkIjp7ImFmdGVyIjoiYzhjYjVmMjkyYzc3MDY0YWVhYmI0ODhlYTRmNWU0ODNhNTA3MzA3NiIsImJhc2VfcmVmIjoicmVmcy9oZWFkcy90ZXN0LWFjdGlvbnMiLCJiZWZvcmUiOiIwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwIiwiY29tbWl0cyI6W10sImNvbXBhcmUiOiJodHRwczovL2dpdGh1Yi5jb20vbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi9jb21wYXJlL3YxLjMiLCJjcmVhdGVkIjp0cnVlLCJkZWxldGVkIjpmYWxzZSwiZm9yY2VkIjpmYWxzZSwiaGVhZF9jb21taXQiOnsiYXV0aG9yIjp7ImVtYWlsIjoibWRlaWNhc0Bnb29nbGUuY29tIiwibmFtZSI6Ik1hcmNvIERlaWNhcyIsInVzZXJuYW1lIjoibWRlaWNhcyJ9LCJjb21taXR0ZXIiOnsiZW1haWwiOiJtZGVpY2FzQGdvb2dsZS5jb20iLCJuYW1lIjoiTWFyY28gRGVpY2FzIiwidXNlcm5hbWUiOiJtZGVpY2FzIn0sImRpc3RpbmN0Ijp0cnVlLCJpZCI6ImM4Y2I1ZjI5MmM3NzA2NGFlYWJiNDg4ZWE0ZjVlNDgzYTUwNzMwNzYiLCJtZXNzYWdlIjoidXBkYXRlIHNsc2EgYnVpbGRlciBoYXNoIiwidGltZXN0YW1wIjoiMjAyMi0wNi0yOFQxNDo0MTo0Ny0wNDowMCIsInRyZWVfaWQiOiIzOGY1NTZjYmNkOGFhYjIxYzExMGZjOTBkNWQ1ZTQ1ZTcwMTYxZDRiIiwidXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvY29tbWl0L2M4Y2I1ZjI5MmM3NzA2NGFlYWJiNDg4ZWE0ZjVlNDgzYTUwNzMwNzYifSwicHVzaGVyIjp7ImVtYWlsIjoiNjA4NTUxMjMrbWRlaWNhc0B1c2Vycy5ub3JlcGx5LmdpdGh1Yi5jb20iLCJuYW1lIjoibWRlaWNhcyJ9LCJyZWYiOiJyZWZzL3RhZ3MvdjEuMyIsInJlcG9zaXRvcnkiOnsiYWxsb3dfZm9ya2luZyI6dHJ1ZSwiYXJjaGl2ZV91cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3Yve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImFyY2hpdmVkIjpmYWxzZSwiYXNzaWduZWVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi9hc3NpZ25lZXN7L3VzZXJ9IiwiYmxvYnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L2dpdC9ibG9ic3svc2hhfSIsImJyYW5jaGVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi9icmFuY2hlc3svYnJhbmNofSIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92LmdpdCIsImNvbGxhYm9yYXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L2NvbGxhYm9yYXRvcnN7L2NvbGxhYm9yYXRvcn0iLCJjb21tZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvY29tbWVudHN7L251bWJlcn0iLCJjb21taXRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi9jb21taXRzey9zaGF9IiwiY29tcGFyZV91cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvY29udGVudHMveytwYXRofSIsImNvbnRyaWJ1dG9yc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvY29udHJpYnV0b3JzIiwiY3JlYXRlZF9hdCI6MTY1MTA5MDAyNSwiZGVmYXVsdF9icmFuY2giOiJtYWluIiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L2RlcGxveW1lbnRzIiwiZGVzY3JpcHRpb24iOm51bGwsImRpc2FibGVkIjpmYWxzZSwiZG93bmxvYWRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi9kb3dubG9hZHMiLCJldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L2V2ZW50cyIsImZvcmsiOmZhbHNlLCJmb3JrcyI6MSwiZm9ya3NfY291bnQiOjEsImZvcmtzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi9mb3JrcyIsImZ1bGxfbmFtZSI6Imx1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YiLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvZ2l0L2NvbW1pdHN7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvZ2l0L3JlZnN7L3NoYX0iLCJnaXRfdGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfdXJsIjoiZ2l0Oi8vZ2l0aHViLmNvbS9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92LmdpdCIsImhhc19kb3dubG9hZHMiOnRydWUsImhhc19pc3N1ZXMiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhvbWVwYWdlIjpudWxsLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvaG9va3MiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92IiwiaWQiOjQ4NjMzNTkwMSwiaXNfdGVtcGxhdGUiOmZhbHNlLCJpc3N1ZV9jb21tZW50X3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJpc3N1ZV9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L2lzc3Vlcy9ldmVudHN7L251bWJlcn0iLCJpc3N1ZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L2lzc3Vlc3svbnVtYmVyfSIsImtleXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L2tleXN7L2tleV9pZH0iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L2xhYmVsc3svbmFtZX0iLCJsYW5ndWFnZSI6IkdvIiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi9sYW5ndWFnZXMiLCJsaWNlbnNlIjpudWxsLCJtYXN0ZXJfYnJhbmNoIjoibWFpbiIsIm1lcmdlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvbWVyZ2VzIiwibWlsZXN0b25lc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvbWlsZXN0b25lc3svbnVtYmVyfSIsIm1pcnJvcl91cmwiOm51bGwsIm5hbWUiOiJzYW1wbGUtZ29sYW5nLXByb3YiLCJub2RlX2lkIjoiUl9rZ0RPSFB6bG5RIiwibm90aWZpY2F0aW9uc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3Yvbm90aWZpY2F0aW9uc3s/c2luY2UsYWxsLHBhcnRpY2lwYXRpbmd9Iiwib3Blbl9pc3N1ZXMiOjAsIm9wZW5faXNzdWVzX2NvdW50IjowLCJvd25lciI6eyJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzLmdpdGh1YnVzZXJjb250ZW50LmNvbS91LzMwNjAxMDI/dj00IiwiZW1haWwiOiJsdW1qamJAZ21haWwuY29tIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvbHVtampiL2V2ZW50c3svcHJpdmFjeX0iLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9sdW1qamIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvbHVtampiL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2x1bWpqYi9naXN0c3svZ2lzdF9pZH0iLCJncmF2YXRhcl9pZCI6IiIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2x1bWpqYiIsImlkIjozMDYwMTAyLCJsb2dpbiI6Imx1bWpqYiIsIm5hbWUiOiJsdW1qamIiLCJub2RlX2lkIjoiTURRNlZYTmxjak13TmpBeE1EST0iLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvbHVtampiL29yZ3MiLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9sdW1qamIvcmVjZWl2ZWRfZXZlbnRzIiwicmVwb3NfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9sdW1qamIvcmVwb3MiLCJzaXRlX2FkbWluIjpmYWxzZSwic3RhcnJlZF91cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2x1bWpqYi9zdGFycmVkey9vd25lcn17L3JlcG99Iiwic3Vic2NyaXB0aW9uc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2x1bWpqYi9zdWJzY3JpcHRpb25zIiwidHlwZSI6IlVzZXIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2x1bWpqYiJ9LCJwcml2YXRlIjpmYWxzZSwicHVsbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L3B1bGxzey9udW1iZXJ9IiwicHVzaGVkX2F0IjoxNjU2NDQyNzg3LCJyZWxlYXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvcmVsZWFzZXN7L2lkfSIsInNpemUiOjYzLCJzc2hfdXJsIjoiZ2l0QGdpdGh1Yi5jb206bHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi5naXQiLCJzdGFyZ2F6ZXJzIjowLCJzdGFyZ2F6ZXJzX2NvdW50IjowLCJzdGFyZ2F6ZXJzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi9zdGFyZ2F6ZXJzIiwic3RhdHVzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L3N0YXR1c2VzL3tzaGF9Iiwic3Vic2NyaWJlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi9zdWJzY3JpcHRpb24iLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YiLCJ0YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdi90YWdzIiwidGVhbXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L3RlYW1zIiwidG9waWNzIjpbXSwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92L2dpdC90cmVlc3svc2hhfSIsInVwZGF0ZWRfYXQiOiIyMDIyLTA0LTI3VDIwOjA4OjQ3WiIsInVybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92IiwidmlzaWJpbGl0eSI6InB1YmxpYyIsIndhdGNoZXJzIjowLCJ3YXRjaGVyc19jb3VudCI6MCwid2ViX2NvbW1pdF9zaWdub2ZmX3JlcXVpcmVkIjpmYWxzZX0sInNlbmRlciI6eyJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzLmdpdGh1YnVzZXJjb250ZW50LmNvbS91LzYwODU1MTIzP3Y9NCIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL21kZWljYXMvZXZlbnRzey9wcml2YWN5fSIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL21kZWljYXMvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvbWRlaWNhcy9mb2xsb3dpbmd7L290aGVyX3VzZXJ9IiwiZ2lzdHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9tZGVpY2FzL2dpc3Rzey9naXN0X2lkfSIsImdyYXZhdGFyX2lkIjoiIiwiaHRtbF91cmwiOiJodHRwczovL2dpdGh1Yi5jb20vbWRlaWNhcyIsImlkIjo2MDg1NTEyMywibG9naW4iOiJtZGVpY2FzIiwibm9kZV9pZCI6Ik1EUTZWWE5sY2pZd09EVTFNVEl6Iiwib3JnYW5pemF0aW9uc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL21kZWljYXMvb3JncyIsInJlY2VpdmVkX2V2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL21kZWljYXMvcmVjZWl2ZWRfZXZlbnRzIiwicmVwb3NfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9tZGVpY2FzL3JlcG9zIiwic2l0ZV9hZG1pbiI6ZmFsc2UsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9tZGVpY2FzL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvbWRlaWNhcy9zdWJzY3JpcHRpb25zIiwidHlwZSI6IlVzZXIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL21kZWljYXMifX0sImdpdGh1Yl9oZWFkX3JlZiI6IiIsImdpdGh1Yl9yZWYiOiJyZWZzL3RhZ3MvdjEuMyIsImdpdGh1Yl9yZWZfdHlwZSI6InRhZyIsImdpdGh1Yl9yZXBvc2l0b3J5X2lkIjoiNDg2MzM1OTAxIiwiZ2l0aHViX3JlcG9zaXRvcnlfb3duZXIiOiJsdW1qamIiLCJnaXRodWJfcmVwb3NpdG9yeV9vd25lcl9pZCI6IjMwNjAxMDIiLCJnaXRodWJfcnVuX2F0dGVtcHQiOiIxIiwiZ2l0aHViX3J1bl9pZCI6IjI1Nzg0OTUyNjQiLCJnaXRodWJfcnVuX251bWJlciI6Ijc5IiwiZ2l0aHViX3NoYTEiOiJjOGNiNWYyOTJjNzcwNjRhZWFiYjQ4OGVhNGY1ZTQ4M2E1MDczMDc2Iiwib3MiOiJ1YnVudHUyMCJ9fSwiYnVpbGRDb25maWciOnsidmVyc2lvbiI6MSwic3RlcHMiOlt7ImNvbW1hbmQiOlsiL29wdC9ob3N0ZWR0b29sY2FjaGUvZ28vMS4xOC4zL3g2NC9iaW4vZ28iLCJtb2QiLCJ2ZW5kb3IiXSwiZW52IjpudWxsLCJ3b3JraW5nRGlyIjoiLiJ9LHsiY29tbWFuZCI6WyIvb3B0L2hvc3RlZHRvb2xjYWNoZS9nby8xLjE4LjMveDY0L2Jpbi9nbyIsImJ1aWxkIiwiLW1vZD12ZW5kb3IiLCItdHJpbXBhdGgiLCItdGFncz1uZXRnbyIsIi1vIiwiYmluYXJ5LWxpbnV4LWFtZDY0Il0sImVudiI6WyJHT09TPWxpbnV4IiwiR09BUkNIPWFtZDY0IiwiR08xMTFNT0RVTEU9b24iLCJDR09fRU5BQkxFRD0wIl0sIndvcmtpbmdEaXIiOiIuIn1dfSwibWV0YWRhdGEiOnsiYnVpbGRJbnZvY2F0aW9uSUQiOiIyNTc4NDk1MjY0LTEiLCJjb21wbGV0ZW5lc3MiOnsicGFyYW1ldGVycyI6dHJ1ZSwiZW52aXJvbm1lbnQiOmZhbHNlLCJtYXRlcmlhbHMiOmZhbHNlfSwicmVwcm9kdWNpYmxlIjpmYWxzZX0sIm1hdGVyaWFscyI6W3sidXJpIjoiZ2l0K2h0dHBzOi8vZ2l0aHViLmNvbS9sdW1qamIvc2FtcGxlLWdvbGFuZy1wcm92QHJlZnMvdGFncy92MS4zIiwiZGlnZXN0Ijp7InNoYTEiOiJjOGNiNWYyOTJjNzcwNjRhZWFiYjQ4OGVhNGY1ZTQ4M2E1MDczMDc2In19LHsidXJpIjoiaHR0cHM6Ly9naXRodWIuY29tL2FjdGlvbnMvdmlydHVhbC1lbnZpcm9ubWVudHMvcmVsZWFzZXMvdGFnL3VidW50dTIwLzIwMjIwNjI2LjEifV19fQ=="
+ },
+ "body": "eyJhcGlWZXJzaW9uIjoiMC4wLjEiLCJraW5kIjoiaW50b3RvIiwic3BlYyI6eyJjb250ZW50Ijp7Imhhc2giOnsiYWxnb3JpdGhtIjoic2hhMjU2IiwidmFsdWUiOiJjNjBlZDkxODUwYmY2MTdhZWYwNDY1MDEzMWUwM2M5YjI1OTBkMzJlZWUzNTliZTMzNDA0Mzk5YTVhM2QxMjJkIn0sInBheWxvYWRIYXNoIjp7ImFsZ29yaXRobSI6InNoYTI1NiIsInZhbHVlIjoiYzBmNWJhZDA2ZGIzNDMwNTcxMDQzYzQ5OGFmOWVlNjE4MjUwYWM3MmYyZmQwNzhjZDU3M2U4MTdlYmU1Zjc3NSJ9fSwicHVibGljS2V5IjoiTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVUlNWRU5EUVhOeFowRjNTVUpCWjBsVVdGSkVPRTF0Ym1JMVpsWkROMFJEVDNaWE4xaFVha3BZU2xSQlMwSm5aM0ZvYTJwUFVGRlJSRUY2UVhFS1RWSlZkMFYzV1VSV1VWRkxSWGQ0ZW1GWFpIcGtSemw1V2xNMWExcFlXWGhGVkVGUVFtZE9Wa0pCVFZSRFNFNXdXak5PTUdJelNteE5RalJZUkZSSmVRcE5SRmw1VDBSRk5VMUVVVEJOUm05WVJGUkplVTFFV1hsUFJFVTFUVlJSZWs5V2IzZEJSRUphVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVDa0YzUlVoQk1FbEJRazFGYlRobU5FWndXRTVhY0VGM1JHdFVjelF3TURkNVpFbDVaSGhpWmxaeVJXZzFlR2xxYWtsTFRITXlNbXBuVms5dVVYQjVhaXNLY1RkNVNTOTJNWE5QVW5CU2NtcFpiMnhCVERGc1ZUaEVXbWhEUWxCS1YycG5aMGd6VFVsSlFqaDZRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRalJCZHdwRmQxbEVWbEl3YkVKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDAxM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXUkNaMDVXU0ZFMFJVWm5VVlZTU1UxMkNqQXlXRmh2VEhwQlZFeERVRTFWY0VoM1VHNWtiMjlKZDBoM1dVUldVakJxUWtKbmQwWnZRVlZYVFVGbFdEVkdSbkJYWVhCbGMzbFJiMXBOYVRCRGNrWUtlR1p2ZDJkWk9FZEJNVlZrUlZGRlFpOTNVMEpvUkVOQ1oxbGFMMkZJVWpCalNFMDJUSGs1Ym1GWVVtOWtWMGwxV1RJNWRFd3llREZpVjNCeFdXazVlZ3BpU0U1b1RGZGtjR1JIYURGWmFURnVXbGMxYkdOdFJqQmlNMGwwV2pJNGRreHRaSEJrUjJneFdXazVNMkl6U25KYWJYaDJaRE5OZG1NeWVIcFpWRTVtQ2xsdVZuQmlSMUpzWTJrMU5XSlhlRUZPYW1zd1QwZFpNRmw2V1ROYWFscHBXVEpGTVU1VVdURk9NbHBzVFZkYWFVMTZXWHBOUjBreFRsZEplRTU2UlRBS1dsZFplVnBFUVdWQ1oyOXlRbWRGUlVGWlR5OU5RVVZGUWtKQ1ZGUkdUa0pKUjJSMlNVaEtiR0pIVm1oak1sWjVUVUpKUjBOcGMwZEJVVkZDWnpjNGR3cEJVVWxGUWtoQ01XTXlaM2RPWjFsTFMzZFpRa0pCUjBSMmVrRkNRWGRSYjFsNmFHcFphbFp0VFdwcmVWbDZZek5OUkZrd1dWZFdhRmx0U1RCUFJHaHNDbGxVVW0xT1YxVXdUMFJPYUU1VVFUTk5la0V6VG1wQmJrSm5iM0pDWjBWRlFWbFBMMDFCUlVaQ1FteHpaRmN4Y1dGdFNYWmpNa1owWTBkNGJFeFhaSFlLWWtkR2RWcDVNWGRqYlRreVRVSjNSME5wYzBkQlVWRkNaemM0ZDBGUldVVkVia3BzV201TmRtUkhSbTVqZVRreVRWTTBlazFFYTBkRGFYTkhRVkZSUWdwbk56aDNRVkZGUlVzeWFEQmtTRUo2VDJrNGRtUkhPWEphVnpSMVdWZE9NR0ZYT1hWamVUVnVZVmhTYjJSWFNqRmpNbFo1V1RJNWRXUkhWblZrUXpWcUNtSXlNSGREWjFsSlMyOWFTWHBxTUVWQmQwMUVZVkZCZDFwblNYaEJUbEJoVGtkeVNVRnRXbHByWmxOUk5YWkJlRFU1UlZRMkwxTjFZWGQ0VVM5a09XSUtaRnA1YmxkVVRGcHhkM28zWTBWS1NtOW1UM1JwVm5VclNWZE5Ra2xCU1hoQlRYbGhaM2czV1ZGaWNYcFRUMkprTlVwMWVHMWlTVTFRWlRWRlN6QjFNUW8wYlRkMFVrWXhhV2gwWTFkR2IxZFdOemMzYkZwS1NtcHJTMXBFU21SamExWjNQVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89In19",
+ "integratedTime": 1656443081,
+ "logID": "c0d23d6ad406973f9559f3ba2d1ca01f84147d8ffc5b8445c224f98b9591801d",
+ "logIndex": 2790625,
+ "verification": {
+ "inclusionProof": {
+ "hashes": [
+ "4e62b639a18da938ca4248846fe5fb084763851ecae2f32c1629ae7c63823911",
+ "d858d33daeda54c30afa9e34f20c182d6ac5c1660aabb9a9921ecabb20cfdc9a",
+ "6a66db62e43bb48df301505427c12346ac1e57faa5d3d65711a9ae0948b431e7",
+ "bc1876ca19fe5a81bcf4e355b66dcf5ca0b96d6bc9829222e419e6fa15b22803",
+ "dc776b1c4245f696980e4ba409e14773b76de74b5ce7c952743f2c53102aef3f",
+ "061e423c1efd6a7f0b716ba3fb1e5e920f7bd8063aceebe4be66c319401cd922",
+ "ceb123c9d9b8cc69268fc19d5fb8756b75d3d7ebd5d7287fa17054658a3994fa",
+ "ac2c8a398924b8e66f6a0e7deb43087b7595767172e96e57ca645d54ef16971e",
+ "46801bd92535dc316e387080cb7951aa46706de8b0a50d292d7e9792a4638f59",
+ "53dbd77e427b0272da3c9d7189873a2c346274f956bb95d6bd04b2e37f0e220c",
+ "5a0677890af1a3e99d0b52d4efb25c02b244b34e434ac1fa4066d9c9cf835f39",
+ "c068fe8ff12f57fc6ce1afd81adb1a17461cf5622501c1da503c13f60e89a2b2",
+ "2084473eea3dcf03207389596c2f3fd77f82d41d30d4ba7f0de167555dbbe9a2",
+ "1824bcb91e9cffea6debca685462ef07690a2a7490c0efe0230831c5dc26a06a",
+ "d319a19d47c2583b77d361378779aeb73b3f3b4870dca0589a92f3189bbe785c",
+ "736805ad34a35ca42825641b33fa98ee87a42a637d431f84e467a89448a9447e",
+ "d5cbab8313d19cbfc84d2f5f5267563d059a06b45f82ff5553a52a028db4f188",
+ "2c12d5d5e616efae26ee7ceec4efd3872ff6ddfc7179ceb39fa250ca360b1d98",
+ "ebad72fac3bc745ef56c7ac7c7f6e5203b531189838bfde8035047c5a90370e3",
+ "806e7153f439cdb4558d7ac89defb0e17aa9742e888cb660774b94b5399c3322",
+ "efb36cfc54705d8cd921a621a9389ffa03956b15d68bfabadac2b4853852079b"
+ ],
+ "logIndex": 2790625,
+ "rootHash": "f31c8a0d6eac139ac596a9e391313a9dad76dd97d1c85cc845f74bfd9e2bc372",
+ "treeSize": 3089647
+ },
+ "signedEntryTimestamp": "MEUCIBNIjRMmy+wdFJ/gGQihy498aWTbRIAK7Q7K1vqt1ZAzAiEA0TnXKeptmcYNS6TuyW/XnH/WYpa05pTQtnt6P/7Rauk="
+ }
+ }
+ }
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/log-entries/log-entry-3.json b/syft/rekor/test-fixtures/log-entries/log-entry-3.json
new file mode 100644
index 00000000000..0be85edc28b
--- /dev/null
+++ b/syft/rekor/test-fixtures/log-entries/log-entry-3.json
@@ -0,0 +1,43 @@
+{
+ "172326f41e80038d7c3da99a08b07d375e51995123287cfb2b4be76139176faf": {
+ "attestation": {
+ "data": "ewogICJfdHlwZSI6ICJodHRwczovL2luLXRvdG8uaW8vU3RhdGVtZW50L3YwLjEiLAogICJwcmVkaWNhdGVUeXBlIjogImh0dHA6Ly9sdW1qamIvc2JvbS1kb2N1bWVudHMiLAogICJzdWJqZWN0IjogWwogICAgewogICAgICAibmFtZSI6ICJiaW5hcnktbGludXgtYW1kNjQiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiZjJlNTllMGU4MmM2YTFiMmMxOGNlZWExZGNiNzM5ZjY4MGY1MGFkNTg4NzU5MjE3ZmM1NjRiNmFhNTIzNDc5MSIKICAgICAgfQogICAgfQogIF0sCiAgInByZWRpY2F0ZSI6IHsKICAgICJzYm9tcyI6IFsKICAgICAgewogICAgICAgICJmb3JtYXQiOiAiU1BEWCIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiMDI5NDhhZDUwNDY0ZWU1N2ZlMjM3YjA5MDU0YzQ1YjFiZmY2YzdkMTg3MjllZWExZWI3NDBkODlkOTU2MzIwOSIKICAgICAgICB9LAogICAgICAgICJ1cmkiOiAiaHR0cHM6Ly9iYWQtZG93bmxvYWQtbG9jYXRpb24uY29tIgogICAgICB9CiAgICBdLAogICAgImJ1aWxkLW1ldGFkYXRhIjogewogICAgICAiYXJ0aWZhY3Qtc291cmNlLXJlcG8iOiAiaHR0cHM6Ly9naXRodWIuY29tL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YiLAogICAgICAiYXJ0aWZhY3Qtc291cmNlLXJlcG8tY29tbWl0IjogImM4Y2I1ZjI5MmM3NzA2NGFlYWJiNDg4ZWE0ZjVlNDgzYTUwNzMwNzYiLAogICAgICAiYXR0ZXN0YXRpb24tZ2VuZXJhdG9yLXJlcG8iOiAiaHR0cHM6Ly9naXRodWIuY29tL2x1bWpqYi9zbHNhLWdpdGh1Yi1nZW5lcmF0b3ItZ28iLAogICAgICAiYXR0ZXN0YXRpb24tZ2VuZXJhdG9yLXJlcG8tY29tbWl0IjogIjY5NDhmNGM2N2Y2YmNhNTU2NTdmZTFmYjM2MzBiNTViMTcxNGVmMmQiCiAgICB9CiAgfQp9Cg=="
+ },
+ "body": "eyJhcGlWZXJzaW9uIjoiMC4wLjEiLCJraW5kIjoiaW50b3RvIiwic3BlYyI6eyJjb250ZW50Ijp7Imhhc2giOnsiYWxnb3JpdGhtIjoic2hhMjU2IiwidmFsdWUiOiI2ZTY5MmRmNzZjZDEyZWNkZTY1YzQ0MjFiNGRkM2JiZDg4NjVjYTQ1ZjJiNmY3YjgzZGY4ZWFmYTFmMDhiZjIyIn0sInBheWxvYWRIYXNoIjp7ImFsZ29yaXRobSI6InNoYTI1NiIsInZhbHVlIjoiMzIzYWUxNGIyZGY1Y2Q5NGY5ZmU4MzJiMjVhOWJlMTRmNWNmZDZjZTRjNzZlZGQ5ODY5NGI4ZTIwZDUxZTk2MyJ9fSwicHVibGljS2V5IjoiTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVUlNSRU5EUVhOeFowRjNTVUpCWjBsVVpXaEhOeXRVV1RrdllUbFZaalJhSzJOcmEzZEJTRTFOUlhwQlMwSm5aM0ZvYTJwUFVGRlJSRUY2UVhFS1RWSlZkMFYzV1VSV1VWRkxSWGQ0ZW1GWFpIcGtSemw1V2xNMWExcFlXWGhGVkVGUVFtZE9Wa0pCVFZSRFNFNXdXak5PTUdJelNteE5RalJZUkZSSmVRcE5SRmw1VDBSRk5VMUVWWGROYkc5WVJGUkplVTFFV1hsUFJFVTFUVlJWZDAxV2IzZEJSRUphVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVDa0YzUlVoQk1FbEJRa0ZxV2psS1dUTTFhRXBPZEd4eWJXaHRNMGc1WlcxWWRXSjVUQzl5Y1V4UU9GUk9lRm8xVkZaMk0zVmthME5FYVVGQlFrZEROMGdLY2tOV1dFOTJMMVpKV0N0RGFtWnpTRzFzVXpsaE5EbEJaalI1VG1KaWRXcG5aMGd6VFVsSlFqaDZRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRalJCZHdwRmQxbEVWbEl3YkVKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDAxM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXUkNaMDVXU0ZFMFJVWm5VVlY2YzJwRENtNXJNMnRZVEdaUFVVaFdaelo2YjFWS2QwdDJkRUpuZDBoM1dVUldVakJxUWtKbmQwWnZRVlZYVFVGbFdEVkdSbkJYWVhCbGMzbFJiMXBOYVRCRGNrWUtlR1p2ZDJkWk9FZEJNVlZrUlZGRlFpOTNVMEpvUkVOQ1oxbGFMMkZJVWpCalNFMDJUSGs1Ym1GWVVtOWtWMGwxV1RJNWRFd3llREZpVjNCeFdXazVlZ3BpU0U1b1RGZGtjR1JIYURGWmFURnVXbGMxYkdOdFJqQmlNMGwwV2pJNGRreHRaSEJrUjJneFdXazVNMkl6U25KYWJYaDJaRE5OZG1NeWVIcFpWRTVtQ2xsdVZuQmlSMUpzWTJrMU5XSlhlRUZPYW1zd1QwZFpNRmw2V1ROYWFscHBXVEpGTVU1VVdURk9NbHBzVFZkYWFVMTZXWHBOUjBreFRsZEplRTU2UlRBS1dsZFplVnBFUVRWQ1oyOXlRbWRGUlVGWlR5OU5RVVZDUWtOMGIyUklVbmRqZW05MlRETlNkbUV5Vm5WTWJVWnFaRWRzZG1KdVRYVmFNbXd3WVVoV2FRcGtXRTVzWTIxT2RtSnVVbXhpYmxGMVdUSTVkRTFEWTBkRGFYTkhRVkZSUW1jM09IZEJVVlZGUjFkNE1XSlhjSEZaYVRsNldWY3hkMkpIVlhSYU1qbHpDbGxYTlc1TVdFSjVZak5aZDBWbldVdExkMWxDUWtGSFJIWjZRVUpCWjFGRlkwaFdlbUZFUVdOQ1oyOXlRbWRGUlVGWlR5OU5RVVZIUWtFMWVWcFhXbm9LVEROU2FGb3pUWFprYWtWMVRYcEJaVUpuYjNKQ1owVkZRVmxQTDAxQlJVVkNRa0pVVkVaT1FrbEhaSFpKU0Vwc1lrZFdhR015Vm5sTlJGbEhRMmx6UndwQlVWRkNaemM0ZDBGUlRVVkxSMDAwV1RKSk1WcHFTVFZOYlUwelRucEJNazVIUm14WlYwcHBUa1JuTkZwWFJUQmFhbFpzVGtSbmVsbFVWWGRPZWsxM0NrNTZXWGREWjFsSlMyOWFTWHBxTUVWQmQwMUVZVUZCZDFwUlNYaEJTVFZpTkN0TWFXOXplQzlHT1Uxa1lsWTBTV1kzT0hOYVRsTTRVVWRXTDNKcWVEY0tOM0pIVVZSM1NUTjRhblI0YTNOWWFtNTNaMlJ1TnpKc1ZXVklNMWxuU1hkSGIwOHhSbE5qTTJNM05sWjRMMUUzTW1SQmFIUXpLeTl6TDBOalF6QkZSUXB3U0ZaWU0wVkJWbFJ1TWxWbVdGTXJiV0UwSzB3MVFuRkhOa3d4UVVNd2F3b3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0ifX0=",
+ "integratedTime": 1656443102,
+ "logID": "c0d23d6ad406973f9559f3ba2d1ca01f84147d8ffc5b8445c224f98b9591801d",
+ "logIndex": 2790629,
+ "verification": {
+ "inclusionProof": {
+ "hashes": [
+ "21753488ffb355349d778e6b0bc7b751275c616ea5142b976b83a4cb936ed3c5",
+ "1b979d3888a4556b8f0226a8676341b670530dbfc157332019169ad052f415f4",
+ "93ff9c4780fc71521487b5edcb8dba423cf1e390cf91458073245eb15e48d7aa",
+ "bc1876ca19fe5a81bcf4e355b66dcf5ca0b96d6bc9829222e419e6fa15b22803",
+ "dc776b1c4245f696980e4ba409e14773b76de74b5ce7c952743f2c53102aef3f",
+ "061e423c1efd6a7f0b716ba3fb1e5e920f7bd8063aceebe4be66c319401cd922",
+ "ceb123c9d9b8cc69268fc19d5fb8756b75d3d7ebd5d7287fa17054658a3994fa",
+ "ac2c8a398924b8e66f6a0e7deb43087b7595767172e96e57ca645d54ef16971e",
+ "46801bd92535dc316e387080cb7951aa46706de8b0a50d292d7e9792a4638f59",
+ "53dbd77e427b0272da3c9d7189873a2c346274f956bb95d6bd04b2e37f0e220c",
+ "5a0677890af1a3e99d0b52d4efb25c02b244b34e434ac1fa4066d9c9cf835f39",
+ "c068fe8ff12f57fc6ce1afd81adb1a17461cf5622501c1da503c13f60e89a2b2",
+ "2084473eea3dcf03207389596c2f3fd77f82d41d30d4ba7f0de167555dbbe9a2",
+ "1824bcb91e9cffea6debca685462ef07690a2a7490c0efe0230831c5dc26a06a",
+ "d319a19d47c2583b77d361378779aeb73b3f3b4870dca0589a92f3189bbe785c",
+ "736805ad34a35ca42825641b33fa98ee87a42a637d431f84e467a89448a9447e",
+ "d5cbab8313d19cbfc84d2f5f5267563d059a06b45f82ff5553a52a028db4f188",
+ "2c12d5d5e616efae26ee7ceec4efd3872ff6ddfc7179ceb39fa250ca360b1d98",
+ "ebad72fac3bc745ef56c7ac7c7f6e5203b531189838bfde8035047c5a90370e3",
+ "806e7153f439cdb4558d7ac89defb0e17aa9742e888cb660774b94b5399c3322",
+ "efb36cfc54705d8cd921a621a9389ffa03956b15d68bfabadac2b4853852079b"
+ ],
+ "logIndex": 2790629,
+ "rootHash": "f31c8a0d6eac139ac596a9e391313a9dad76dd97d1c85cc845f74bfd9e2bc372",
+ "treeSize": 3089647
+ },
+ "signedEntryTimestamp": "MEQCIB6CQS7AgkXVN8WjeVfPWvfq5dpHzkGY6j5A9F6P2s+8AiBJxl1XlHRYRuDpCqIHj5bVZAkTQPVEYG/r5nDIxJTNaQ=="
+ }
+ }
+ }
+
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/log-entries/log-entry-4.json b/syft/rekor/test-fixtures/log-entries/log-entry-4.json
new file mode 100644
index 00000000000..db54f72c104
--- /dev/null
+++ b/syft/rekor/test-fixtures/log-entries/log-entry-4.json
@@ -0,0 +1,43 @@
+{
+ "6a7df97b2480512e52ab182ae4527905f4286219e7470390c07925011ca2bad6": {
+ "attestation": {
+ "data": "eyJfdHlwZSI6Imh0dHBzOi8vaW4tdG90by5pby9TdGF0ZW1lbnQvdjAuMSIsInByZWRpY2F0ZVR5cGUiOiJodHRwOi8vbHVtampiL3Nib20tZG9jdW1lbnRzIiwic3ViamVjdCI6W3sibmFtZSI6ImJpbmFyeS1saW51eC1hbWQ2NCIsImRpZ2VzdCI6eyJzaGEyNTYiOiJmMmU1OWUwZTgyYzZhMWIyYzE4Y2VlYTFkY2I3MzlmNjgwZjUwYWQ1ODg3NTkyMTdmYzU2NGI2YWE1MjM0NzkxIn19XSwicHJlZGljYXRlIjp7InNib21zIjpbeyJmb3JtYXQiOiJTUERYIiwiZGlnZXN0Ijp7InNoYTI1NiI6IjAyOTQ4YWQ1MDQ2NGVlNTdmZTIzN2IwOTA1NGM0NWIxYmZmNmM3ZDE4NzI5ZWVhMWViNzQwZDg5ZDk1NjMyMDkifSwidXJpIjoiaHR0cHM6Ly9naXRodWIuY29tL2x1bWpqYi9zYW1wbGUtZ29sYW5nLXByb3YvcmVsZWFzZXMvZG93bmxvYWQvdjEuMy9iaW5hcnkuc3BkeCJ9XSwiYnVpbGQtbWV0YWRhdGEiOnsiYXJ0aWZhY3Qtc291cmNlLXJlcG8iOiJodHRwczovL2dpdGh1Yi5jb20vbHVtampiL3NhbXBsZS1nb2xhbmctcHJvdiIsImFydGlmYWN0LXNvdXJjZS1yZXBvLWNvbW1pdCI6ImM4Y2I1ZjI5MmM3NzA2NGFlYWJiNDg4ZWE0ZjVlNDgzYTUwNzMwNzYiLCJhdHRlc3RhdGlvbi1nZW5lcmF0b3ItcmVwbyI6Imh0dHBzOi8vZ2l0aHViLmNvbS9sdW1qamIvc2xzYS1naXRodWItZ2VuZXJhdG9yLWdvIiwiYXR0ZXN0YXRpb24tZ2VuZXJhdG9yLXJlcG8tY29tbWl0IjoiNjk0OGY0YzY3ZjZiY2E1NTY1N2ZlMWZiMzYzMGI1NWIxNzE0ZWYyZCJ9fX0="
+ },
+ "body": "ewogICJhcGlWZXJzaW9uIjogIjAuMC4xIiwKICAia2luZCI6ICJpbnRvdG8iLAogICJzcGVjIjogewogICAgImNvbnRlbnQiOiB7CiAgICAgICJoYXNoIjogewogICAgICAgICJhbGdvcml0aG0iOiAic2hhMjU2IiwKICAgICAgICAidmFsdWUiOiAiNmU2OTJkZjc2Y2QxMmVjZGU2NWM0NDIxYjRkZDNiYmQ4ODY1Y2E0NWYyYjZmN2I4M2RmOGVhZmExZjA4YmYyMiIKICAgICAgfSwKICAgICAgInBheWxvYWRIYXNoIjogewogICAgICAgICJhbGdvcml0aG0iOiAic2hhMjU2IiwKICAgICAgICAidmFsdWUiOiAiMzIzYWUxNGIyZGY1Y2Q5NGY5ZmU4MzJiMjVhOWJlMTRmNWNmZDZjZTRjNzZlZGQ5ODY5NGI4ZTIwZDUxZTk2MyIKICAgICAgfQogICAgfSwKICAgICJwdWJsaWNLZXkiOiAiTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVUnhla05EUVhCUFowRjNTVUpCWjBsb1FVMWpaMWR2ZFVKWFpFOW9la295VlRCdE1sbFZOV2hETkRVdlVITlJTa3N4VmsweGVtSTFMelZ0TkdVS1RVRXdSME5UY1VkVFNXSXpSRkZGUWtKUlZVRk5SMjk0UTFSQlNFSm5UbFpDUVZsVVFVUkZTazFCWTBkQk1WVkZRMmQzUVUxUmEzZENkMWxFVmxGUlRBcEVRVUY0UlZSQlVFSm5UbFpDUVUxTlEwZGFhR0V5Vm1wYVdFb3dUVk5GZDBoM1dVcExiMXBKYUhaalRrRlJhMEpHYUVwdFdWZDBiRmt5Vm5sa1JVSnVDbUpYUm5CaVF6VnFZakl3ZUVWVVFWQkNaMDVXUWtGTlRVTkhXbWhoTWxacVdsaEtNRTFDTkZoRVZFbDVUVVJuZDAxNlFYaE5hbFV4VG14dldFUlVUWGtLVFVSbmQwMTZRWGhOYWxVeFRteHZkMVo2UlVwTlFXTkhRVEZWUlVKb1RVRk5VV3QzUW5kWlJGWlJVVXRFUVVGNFExUkJTRUpuVGxaQ1FYTk5RVVJGVWdwTlFUaEhRVEZWUlVGM2QwbGFiVVp5V2xkT2JHTnVVWGhKVkVGbVFtZHJjV2hyYVVjNWR6QkNRMUZGVjBWdFdtaGhNbFpxV2xoS01GRkhaSFJaVjJ4ekNreHRUblppVkVORFFWTkpkMFJSV1VwTGIxcEphSFpqVGtGUlJVSkNVVUZFWjJkRlVFRkVRME5CVVc5RFoyZEZRa0ZNYm5GWFVEaG1XalIwTmxkTVRXVUtZa0l5V25oVGNta3pPVU0xVVhGcldFSTJOWE1yTTIwd1EydG1OSEZJYm1WbVdqaEJiRlZZVXpZeFdWRmxUV3hsWkZrMWMzQnBlRGRhVEVvMllUWnBlQXBEYlV4RVEzTkVVVU5WVTNKdk9YVmhhRzFOWlhGR2VsSTNja3hyWnpoc1VGTnNOSEZFUjFsdVJHTjZXVzFsU2sxUEx5OU1aMnhuZFhGV1ZYbDJNRGhqQ21aUlJqRnhiRXRzZGpSTU1uQlNLMVpUSzFsVWRVbDFZVTFpUTFZNVIydEROazQwZVVWQlJTdFdiemxYYlhsV0t6ZEVRbEJIWWxsYVIycHBObE5DWm5VS2VuaE1ielJCVEZWNE1EbHBPV1JSZVVsTmQwRktUbmxTYXpodUwwdHpOMFpRYzJSeWN6azVXbWR5TWt0VFJFZHlaRzlHYURZM1oySlJUMDFJY0V4RmJRbzNWa0pwYjBsNFIzVnVkWGxKWmtKQ1RTdFpXRU5rYlVnclFuTjZZVmR3ZUhGdWRua3dSR1ZFWXpRdlltZHZZeXRsWXpsRGNGUlRiSGxOVFROaGRDdE1DbTkxWkU1a2FtTkRRWGRGUVVGaFRsQk5SVEIzU0ZGWlJGWlNNRTlDUWxsRlJrTkJTRVUwTVhGTmVDOXRNbWx4ZEVrM1dVdE1SblV4YTFveGNVMUNPRWNLUVRGVlpFbDNVVmxOUW1GQlJrTkJTRVUwTVhGTmVDOXRNbWx4ZEVrM1dVdE1SblV4YTFveGNVMUJjMGRCTVZWa1JWRlJSVTFCUzBOQlJFRk9RbWRyY1Fwb2EybEhPWGN3UWtGUlZVWkJRVTlEUVZGRlFWUllNVkUzWkV4Q1ZYQkdNelYzT1RRellYZHJZbkF4Y3pablVIVkJNVTUyU0VWS1Vqa3dVWFF6VG5wbENtcFBSR1ZMU1RjeldtOVNjME42UWxsUVZtUk9SbXBvZUVkeU1XNHlVekV3V1V0bU9HYzJSbFZ0UzJRM1UwaExRVlF4UnpOeFVHOXJaMVV4UTFGQlMzb0taM3BRVGl0UFoxUmhUVE5TY2s1M05HOUNXV28yWTBzNGEyMVhZbHBaY0VKNmQwZ3djMlJVUW5JMmNWTXJTVlJaZFVaVmRYSTBhV2N2U25CbmVUUTNkUXBYYUZKSVVqUjVlRlpwVFdVeEwyOUxWR2MzT0ZOeGRVaEtObTU0YVRWQlQzTXdZbHBvUkROWVNsUlFhWGxCWjBGVFFWWTRaVVY1YjBOcVZWTkRZMlJCQ2pOS2QxVm5ZMjlMTUdNemIySTJVV1pGVjJONk5VVnpkalZDT0VNNWRqWklValV2VjBsbmFFNDVkSGxhUXpCeFJ6VkVVR2hvTmtGdU9WSmpZbkYxUWs4S2FUaEVlVkZ6Y2tOTE4yWTViMmx4ZW0wdmVVZEpZVkY0UW1ONGNXUnNiRnBCT0VOaU9VTjBVak4zUFQwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPSIKICB9Cn0KCg==",
+ "integratedTime": 1656443102,
+ "logID": "c0d23d6ad406973f9559f3ba2d1ca01f84147d8ffc5b8445c224f98b9591801d",
+ "logIndex": 2790629,
+ "verification": {
+ "inclusionProof": {
+ "hashes": [
+ "21753488ffb355349d778e6b0bc7b751275c616ea5142b976b83a4cb936ed3c5",
+ "1b979d3888a4556b8f0226a8676341b670530dbfc157332019169ad052f415f4",
+ "93ff9c4780fc71521487b5edcb8dba423cf1e390cf91458073245eb15e48d7aa",
+ "bc1876ca19fe5a81bcf4e355b66dcf5ca0b96d6bc9829222e419e6fa15b22803",
+ "dc776b1c4245f696980e4ba409e14773b76de74b5ce7c952743f2c53102aef3f",
+ "061e423c1efd6a7f0b716ba3fb1e5e920f7bd8063aceebe4be66c319401cd922",
+ "ceb123c9d9b8cc69268fc19d5fb8756b75d3d7ebd5d7287fa17054658a3994fa",
+ "ac2c8a398924b8e66f6a0e7deb43087b7595767172e96e57ca645d54ef16971e",
+ "46801bd92535dc316e387080cb7951aa46706de8b0a50d292d7e9792a4638f59",
+ "53dbd77e427b0272da3c9d7189873a2c346274f956bb95d6bd04b2e37f0e220c",
+ "5a0677890af1a3e99d0b52d4efb25c02b244b34e434ac1fa4066d9c9cf835f39",
+ "c068fe8ff12f57fc6ce1afd81adb1a17461cf5622501c1da503c13f60e89a2b2",
+ "2084473eea3dcf03207389596c2f3fd77f82d41d30d4ba7f0de167555dbbe9a2",
+ "1824bcb91e9cffea6debca685462ef07690a2a7490c0efe0230831c5dc26a06a",
+ "d319a19d47c2583b77d361378779aeb73b3f3b4870dca0589a92f3189bbe785c",
+ "736805ad34a35ca42825641b33fa98ee87a42a637d431f84e467a89448a9447e",
+ "d5cbab8313d19cbfc84d2f5f5267563d059a06b45f82ff5553a52a028db4f188",
+ "2c12d5d5e616efae26ee7ceec4efd3872ff6ddfc7179ceb39fa250ca360b1d98",
+ "ebad72fac3bc745ef56c7ac7c7f6e5203b531189838bfde8035047c5a90370e3",
+ "806e7153f439cdb4558d7ac89defb0e17aa9742e888cb660774b94b5399c3322",
+ "efb36cfc54705d8cd921a621a9389ffa03956b15d68bfabadac2b4853852079b"
+ ],
+ "logIndex": 2790629,
+ "rootHash": "f31c8a0d6eac139ac596a9e391313a9dad76dd97d1c85cc845f74bfd9e2bc372",
+ "treeSize": 3089647
+ },
+ "signedEntryTimestamp": "MEQCIB6CQS7AgkXVN8WjeVfPWvfq5dpHzkGY6j5A9F6P2s+8AiBJxl1XlHRYRuDpCqIHj5bVZAkTQPVEYG/r5nDIxJTNaQ=="
+ }
+ }
+ }
+
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/log-entries/log-entry-5.json b/syft/rekor/test-fixtures/log-entries/log-entry-5.json
new file mode 100644
index 00000000000..6970861d2f1
--- /dev/null
+++ b/syft/rekor/test-fixtures/log-entries/log-entry-5.json
@@ -0,0 +1,36 @@
+{
+ "09f4d6138d167fc246dc69badb11b9a931395e7ca00fb38a1889d287f9d4110e": {
+ "attestation": {
+ "data": "eyJfdHlwZSI6Imh0dHBzOi8vaW4tdG90by5pby9TdGF0ZW1lbnQvdjAuMSIsInByZWRpY2F0ZVR5cGUiOiJodHRwOi8vbHVtampiL3Nib20tZG9jdW1lbnRzIiwic3ViamVjdCI6W3sibmFtZSI6ImJpbmFyeS1uYW1lIiwiZGlnZXN0Ijp7InNoYTI1NiI6ImI5ODZmZTE5NGYwZTZlYmI2MGFkYTg4OThjZDFkMzEyZjE3NTg4YzllZmNmZjc0M2QxYjQwOTE2MGZkOGU2NGYifX1dLCJwcmVkaWNhdGUiOnsic2JvbXMiOlt7ImZvcm1hdCI6IlNQRFgiLCJkaWdlc3QiOnsic2hhMjU2IjoiNzc0MTk2YjU5MmJlOWViMjRjNDBmMjczOTBiMDgzMTExYjg0MWNkM2RjYWQ4MDg5Y2I3YjllMzE3NGU4NDYwNSJ9LCJ1cmkiOiJhcnRpZmFjdCBkb3dubG9hZCB1cmkifV0sImJ1aWxkLW1ldGFkYXRhIjp7ImFydGlmYWN0LXNvdXJjZS1yZXBvIjoidGVzdC9tYXJjbyIsImFydGlmYWN0LXNvdXJjZS1yZXBvLWNvbW1pdCI6Im5vdCBmcm9tIGdpdGh1YiIsImF0dGVzdGF0aW9uLWdlbmVyYXRvci1yZXBvIjoibm90IGZyb20gd29ya2Zsb3ciLCJhdHRlc3RhdGlvbi1nZW5lcmF0b3ItcmVwby1jb21taXQiOiJub3QgZnJvbSB3b3JrZmxvdyJ9fX0="
+ },
+ "body": "eyJhcGlWZXJzaW9uIjoiMC4wLjEiLCJraW5kIjoiaW50b3RvIiwic3BlYyI6eyJjb250ZW50Ijp7Imhhc2giOnsiYWxnb3JpdGhtIjoic2hhMjU2IiwidmFsdWUiOiIyNDZmZWY3OTM0NTA3YzQ1MTUwMDBmOWZmMDlkMzMwNWIwNWYzZjBmM2ZkYmMzNzRlOTFjOTk2ZWY4MjcyNWIyIn0sInBheWxvYWRIYXNoIjp7ImFsZ29yaXRobSI6InNoYTI1NiIsInZhbHVlIjoiMGNlMTc0Y2IxNzNiN2FmMTA0ZmM2ZjYyOTUzYjFjMGMxOTZmMTcyYzhlODNjZGM0MzhiNzU4NDNlZGZjZDNlZiJ9fSwicHVibGljS2V5IjoiTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTkZla05EUVZwdFowRjNTVUpCWjBsVlFVdHZUbXh1VjJsaWR6WkZOV2wyWTBWQ2RtVkxkQzlzWkRKdmQwTm5XVWxMYjFwSmVtb3dSVUYzVFhjS1MycEZWazFDVFVkQk1WVkZRMmhOVFdNeWJHNWpNMUoyWTIxVmRWcEhWakpOVWtWM1JIZFpSRlpSVVVSRmQyaDZZVmRrZW1SSE9YbGFWRUZsUm5jd2VRcE5ha0UwVFVSTmVFNXFVVFJOZWs1aFJuY3dlVTFxUVRSTlJFMTRUbXBWTkUxNlNtRk5RVUYzVjFSQlZFSm5ZM0ZvYTJwUFVGRkpRa0puWjNGb2EycFBDbEJSVFVKQ2QwNURRVUZTZUVsWmRVbExUWFk0ZWxGa2IxcEljVlJLUmxCaVZ6aFlNMjEzVFN0U1lXc3phV05sT1RGNWFFVmlUVUZZTTBsc1dFMHpWRFlLY2pSWE4zRklZakoyVEU0NVVFTk9UMHRyWVdoMWQxRldiR2xZUm05d1ZWcHZORWhIVFVsSVJFMUJORWRCTVZWa1JIZEZRaTkzVVVWQmQwbElaMFJCVkFwQ1owNVdTRk5WUlVSRVFVdENaMmR5UW1kRlJrSlJZMFJCZWtGTlFtZE9Wa2hTVFVKQlpqaEZRV3BCUVUxQ01FZEJNVlZrUkdkUlYwSkNVMEZSTld4cUNtMWxSVEJITDNoSVN6SkdZblppUjJsU1pGbFVOR3BCWmtKblRsWklVMDFGUjBSQlYyZENVbGwzUWpWbWExVlhiRnB4YkRaNlNrTm9hM2xNVVV0eldFWUtLMnBCWjBKblRsWklVa1ZDUVdZNFJVWnFRVlZuVWtwMFdrZFdjRmt5Um5wUlIyUjJZakprYzFwVE5XcGlNakIzVEVGWlMwdDNXVUpDUVVkRWRucEJRZ3BCVVZGbFlVaFNNR05JVFRaTWVUbHVZVmhTYjJSWFNYVlpNamwwVERKNGRsb3liSFZNTWpsb1pGaFNiMDFCYjBkRFEzRkhVMDAwT1VKQlRVUkJNbWRCQ2sxSFZVTk5VVU5xYUVoR01GbGxkekJhWjJWNWVUWnhZbFJ4WWpkMGNTOVNUazE2WW1oaldHaG1lbFJ2V2tNMFltSTVLek5tZVRCUU5TdHNOSGhzYkVzS1EwbExaME5SUlVOTlFVNVdVVTV5YUhNMWExbEhWSEpNVUhoekt5OVJhWFJLZFVkeFRtOXVlRzVOYUVrd1kxQk1la3hHYm1oWmFHcFhWSEZOYTNKMVJ3cDBUMmhXVkRNd1FteDNQVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89In19",
+ "integratedTime": 1659545314,
+ "logID": "c0d23d6ad406973f9559f3ba2d1ca01f84147d8ffc5b8445c224f98b9591801d",
+ "logIndex": 3100772,
+ "verification": {
+ "inclusionProof": {
+ "hashes": [
+ "6bd10368c0e8203f5fec532c1207c2576e980fc1fe2681b40d09d0061c62c594",
+ "105dee0a5810146e1b496b96269d52530d2ceeca2bccc61b774de7a29c9a6d51",
+ "98ab8b89caf3d7cb9c4c8f0b290d2b6b7e1342778d36c6d36827f5e1cf1cddf6",
+ "90836addf19adb786309321e57a0880d7452d7da679d32ed2e490ea872eb85e1",
+ "e282b7764a2a6413eb52a04f398079f1496160a72ce33970d0df74495140df21",
+ "90c1a026648b59409dd8d50f6d1951bf607f9fa406bd947dfeaabe0f2ce2fdcb",
+ "478d2d8c878c8ee33b003f711d8ca1ad7322eb9cb7b1bf0dabfb76e8ff75710c",
+ "f06c801b1fe5cbe5c83f295e9602e171a4f9456d9fa389a0922c68549ea78d22",
+ "be550466660c3004f7fa1e06d8195a4d5ffdd4a9bd01167d562528db3cc04422",
+ "74f9a2f24c76d1ced3a175cdf0b9a79b1d3ba855f085d02c5e60a05cc0c8b970",
+ "860efc785c66773fe35db221860cfb482dfe0a6bfe602aaade78149084c9ab86",
+ "39da4af7f0fbe095e6bc78c146ad59c70881d3fcb22e90c7675dee5e6736bc76",
+ "806e7153f439cdb4558d7ac89defb0e17aa9742e888cb660774b94b5399c3322",
+ "efb36cfc54705d8cd921a621a9389ffa03956b15d68bfabadac2b4853852079b"
+ ],
+ "logIndex": 3100772,
+ "rootHash": "5946ba2f7cf6d77a60b931b4321cadee2700655538c9ee160ec104fe4d5a9aea",
+ "treeSize": 3100790
+ },
+ "signedEntryTimestamp": "MEUCIFPRHjTLUBu/lhVQYkBb0epmrXTIzDckT8KXgyVVprSYAiEA0Fp01wCAKKmy/4DhTLCfoXvsPYdPaihq100waHts5OI="
+ }
+ }
+ }
+
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/log-entries/log-entry-6.json b/syft/rekor/test-fixtures/log-entries/log-entry-6.json
new file mode 100644
index 00000000000..a914a7c7ea3
--- /dev/null
+++ b/syft/rekor/test-fixtures/log-entries/log-entry-6.json
@@ -0,0 +1,34 @@
+{
+ "8c3b99433eda340aa739dbc5759c032b120991ac239359773cad9d64a03a3e8f": {
+ "attestation": {
+ "data": "eyJfdHlwZSI6Imh0dHBzOi8vaW4tdG90by5pby9TdGF0ZW1lbnQvdjAuMSIsInByZWRpY2F0ZVR5cGUiOiJodHRwOi8vbHVtampiL3Nib20tZG9jdW1lbnRzIiwic3ViamVjdCI6W3sibmFtZSI6ImJpbmFyeS1uYW1lIiwiZGlnZXN0Ijp7InNoYTI1NiI6ImE1OTFhNmQ0MGJmNDIwNDA0YTAxMTczM2NmYjdiMTkwZDYyYzY1YmYwYmNkYTMyYjU3YjI3N2Q5YWQ5ZjE0NmUifX1dLCJwcmVkaWNhdGUiOnsic2JvbXMiOlt7ImZvcm1hdCI6IlNQRFgiLCJkaWdlc3QiOnsic2hhMjU2IjoiMDI5NDhhZDUwNDY0ZWU1N2ZlMjM3YjA5MDU0YzQ1YjFiZmY2YzdkMTg3MjllZWExZWI3NDBkODlkOTU2MzIwOSJ9LCJ1cmkiOiJhcnRpZmFjdCBkb3dubG9hZCB1cmkifV0sImJ1aWxkLW1ldGFkYXRhIjp7ImFydGlmYWN0LXNvdXJjZS1yZXBvIjoidGVzdC9tYXJjbyIsImFydGlmYWN0LXNvdXJjZS1yZXBvLWNvbW1pdCI6Im5vdCBmcm9tIGdpdGh1YiIsImF0dGVzdGF0aW9uLWdlbmVyYXRvci1yZXBvIjoibm90IGZyb20gd29ya2Zsb3ciLCJhdHRlc3RhdGlvbi1nZW5lcmF0b3ItcmVwby1jb21taXQiOiJub3QgZnJvbSB3b3JrZmxvdyJ9fX0="
+ },
+ "body": "eyJhcGlWZXJzaW9uIjoiMC4wLjEiLCJraW5kIjoiaW50b3RvIiwic3BlYyI6eyJjb250ZW50Ijp7Imhhc2giOnsiYWxnb3JpdGhtIjoic2hhMjU2IiwidmFsdWUiOiJjYWExZTExZWIzZGNhZGM3OTE4YTY4NThlNTY1N2FmMjYxMDkyNDdlMzU3MzExNmZjNDA1MTI0MzViODBiOTZhIn0sInBheWxvYWRIYXNoIjp7ImFsZ29yaXRobSI6InNoYTI1NiIsInZhbHVlIjoiMmQzYzk3MTY4OTQ2NDY5MzE0OTk3MTZkOGZmNTZiMTJlZjA2M2EzYmY5NjIxOGRjOGM5NWJmYmZkYjA2OTQwNiJ9fSwicHVibGljS2V5IjoiTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTkZha05EUVZwcFowRjNTVUpCWjBsVVIyZDFhbGRsT1cxMU5XSlVVRUZ1SzI5b1lVcG9kM1pRZEVSQlMwSm5aM0ZvYTJwUFVGRlJSRUY2UVhFS1RWSlZkMFYzV1VSV1VWRkxSWGQ0ZW1GWFpIcGtSemw1V2xNMWExcFlXWGhGVkVGUVFtZE9Wa0pCVFZSRFNFNXdXak5PTUdJelNteE5RalJZUkZSSmVRcE5SR2Q0VFVSRk1FNUVVWGRQUm05WVJGUkplVTFFWjNoTlJFVXdUbFJSZDA0eGIzZEJSRUphVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVDa0YzUlVoQk1FbEJRa0pRVG01NFFtdHZaV0psV1RZelJrVTBjR3hSVFV0RmJFTlBabVV3TVVscVMyTkNXU3RqV21OcUwxQkdOamxWVWxsM2NuaExaemtLVDJJNVkxRjJRVTVCVUdsUVNtRlZWV0V4VEhGV1puaHVRVlJFV1hoWmNXcG5ZMWwzWjJOTmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQloyVkJUVUpOUndwQk1WVmtTbEZSVFUxQmIwZERRM05IUVZGVlJrSjNUVVJOUVhkSFFURlZaRVYzUlVJdmQxRkRUVUZCZDBoUldVUldVakJQUWtKWlJVWk1VazkwWkRJMUNsUklPRk5QV2tkV2JXVjZUMHM1VUZjMWVITnpUVUk0UjBFeFZXUkpkMUZaVFVKaFFVWkdha0ZJYkN0U1VtRldiWEZZY2sxclMwZFVTWFJCY1hoaldEWUtUVU5CUjBFeFZXUkZVVVZDTDNkUlYwMUNVMEpGYlRGcldsZHNhbGxZVGtGYU1qbDJXako0YkV4dFRuWmlWRUZ6UW1kdmNrSm5SVVZCV1U4dlRVRkZRZ3BDUWpWdlpFaFNkMk42YjNaTU1tUndaRWRvTVZscE5XcGlNakIyWWtjNWJtRlhOSFppTWtZeFpFZG5kME5uV1VsTGIxcEplbW93UlVGM1RVUmhRVUYzQ2xwUlNYaEJURUZ5U2tGcmN6SXlZMEZsTkVsemQwOVlRbkZwTWxscloyTkRTbkZ6WXk4MlMzVkRkMW8wVVRocmFUTlFTa3BaZFVsWUwyaEZZVFJST1ZVS1p6bFZjMU4zU1hkVWVETTVPVXRTWVZOd1dqWmFjMWx0V25SQ1JHMTRVVXRQWXk5SFpHOHhkVGMxYm1aR1FtcE9hbU5xUkhGbU9WQndkRWN6VGsxUmVncFNXRU5TY2xWVFFnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0ifX0=",
+ "integratedTime": 1660142649,
+ "logID": "c0d23d6ad406973f9559f3ba2d1ca01f84147d8ffc5b8445c224f98b9591801d",
+ "logIndex": 3161124,
+ "verification": {
+ "inclusionProof": {
+ "hashes": [
+ "ddbd93a0ca390863df314d1dcb9d2cb74097c97bf427dcad712d9439a984d09c",
+ "60d9f3b3d99d819961bf3b5b6a158510dbe5e83f13e49e1529023774a530f259",
+ "5b9a444ddbf9b8d1ae277ca82b031e399d46882d94c6042fe4595fc4a3e4cf80",
+ "789e603167bee8e83f2ebb1876c900b0896d3516f61f27d6f4b97b2603d2751a",
+ "bcb89fb5d93446a4cc5847e61c38c80f8d20e44e84883affdeda221e0a8e2e8c",
+ "aeb6f24862a17e298e478e136c43ad5818b9ead53b6464fb851c62b71d8ae043",
+ "5b374d4606c68547ed514473a5872c7192d670557b99dbc187f20d58adb89493",
+ "efcc811a35edaf4125e86c5f88a7041775a121708ca0312430fef017d243ae93",
+ "caa77d1439354e3c31e6944fd24334a33aa693c36539c5f47423f9dbe3ffe2dc",
+ "7200276683567a34d3ea3206d179dcc6084b3066bd27ee571b8d7dafd7833657",
+ "9f77eaf14363b05272ce8f41139b4b93e5132dc27d18225a9b825de5e7ec79eb",
+ "6d494b237648126525b08f975c736a55d1f7a64472fcc2782bbc16733c608d7b",
+ "efb36cfc54705d8cd921a621a9389ffa03956b15d68bfabadac2b4853852079b"
+ ],
+ "logIndex": 3161124,
+ "rootHash": "809361c8dc1a8fb949614df1a0ce4e48478ec9826e5b526eef06828d2dd7f446",
+ "treeSize": 3161188
+ },
+ "signedEntryTimestamp": "MEUCIFBEt/PJ91TZchmFfifWltQWKmdNcJ2syv+vz2Ymq0rPAiEAzYLqX+79Hs0umLilQXyQiL2fGDWbNQDbSor46AasDQM="
+ }
+ }
+ }
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/log-entries/log-entry-7.json b/syft/rekor/test-fixtures/log-entries/log-entry-7.json
new file mode 100644
index 00000000000..57526483de6
--- /dev/null
+++ b/syft/rekor/test-fixtures/log-entries/log-entry-7.json
@@ -0,0 +1,34 @@
+{
+ "4090e1dde58ba2a7997e1e7f66d85970fc3eba77ab65c17cd75c55c447cb43db": {
+ "attestation": {
+ "data": "eyJfdHlwZSI6Imh0dHBzOi8vaW4tdG90by5pby9TdGF0ZW1lbnQvdjAuMSIsInByZWRpY2F0ZVR5cGUiOiJodHRwOi8vbHVtampiL3Nib20tZG9jdW1lbnRzIiwic3ViamVjdCI6W3sibmFtZSI6ImJpbmFyeS1uYW1lIiwiZGlnZXN0Ijp7InNoYTI1NiI6IjQ4ZjAzM2FiMDdjMjFlMjlhMDI4NDJhYmU5MDdmZjNlZjkyYzVlMjRhOThlY2MxNDc0MWY1YjcyNTdkZDRkMTAifX1dLCJwcmVkaWNhdGUiOnsic2JvbXMiOlt7ImZvcm1hdCI6IlNQRFgiLCJkaWdlc3QiOnsic2hhMjU2IjoiNzc0MTk2YjU5MmJlOWViMjRjNDBmMjczOTBiMDgzMTExYjg0MWNkM2RjYWQ4MDg5Y2I3YjllMzE3NGU4NDYwNSJ9LCJ1cmkiOiJhcnRpZmFjdCBkb3dubG9hZCB1cmkifV0sImJ1aWxkLW1ldGFkYXRhIjp7ImFydGlmYWN0LXNvdXJjZS1yZXBvIjoidGVzdC9tYXJjbyIsImFydGlmYWN0LXNvdXJjZS1yZXBvLWNvbW1pdCI6Im5vdCBmcm9tIGdpdGh1YiIsImF0dGVzdGF0aW9uLWdlbmVyYXRvci1yZXBvIjoibm90IGZyb20gd29ya2Zsb3ciLCJhdHRlc3RhdGlvbi1nZW5lcmF0b3ItcmVwby1jb21taXQiOiJub3QgZnJvbSB3b3JrZmxvdyJ9fX0="
+ },
+ "body": "eyJhcGlWZXJzaW9uIjoiMC4wLjEiLCJraW5kIjoiaW50b3RvIiwic3BlYyI6eyJjb250ZW50Ijp7Imhhc2giOnsiYWxnb3JpdGhtIjoic2hhMjU2IiwidmFsdWUiOiIxNjY3OTc0YTRjMDU1ZmNmOGVkMzgyYWE3MGZhMTA2ODMxY2E0ZjllNWVjNzA3MzNlOGI4MmVkOWU3ZmQ4MzRmIn0sInBheWxvYWRIYXNoIjp7ImFsZ29yaXRobSI6InNoYTI1NiIsInZhbHVlIjoiYzU5MTUwOTRiMzQ4MmJiNThjY2VlMWIyNWNkYzEyOTg2NjY4MDcxODVkZjM3NjcwZmJjODc3NDQyYTE1NjI5MyJ9fSwicHVibGljS2V5IjoiTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTkZla05EUVZwdFowRjNTVUpCWjBsVlFVNTRRV2sxWjJKWlNsRXJPRzl2T0UxQ2NXWXdURkp3VEVGVmQwTm5XVWxMYjFwSmVtb3dSVUYzVFhjS1MycEZWazFDVFVkQk1WVkZRMmhOVFdNeWJHNWpNMUoyWTIxVmRWcEhWakpOVWtWM1JIZFpSRlpSVVVSRmQyaDZZVmRrZW1SSE9YbGFWRUZsUm5jd2VRcE5ha0UwVFZSQmVFNVVSVEZOVkd4aFJuY3dlVTFxUVRSTlZFRjRUbFJKTVUxVWFHRk5RVUYzVjFSQlZFSm5ZM0ZvYTJwUFVGRkpRa0puWjNGb2EycFBDbEJSVFVKQ2QwNURRVUZVY0hsMU1XczVXamRvTjBFNFQyTnNNblpYVFdGclVIbFpiSEl5WTBVd1ZEQjRWVmRKZG5ndlkxYzBWalZwVDFWbldVSkRXVzhLYlc1cVZHZDZTRkl3WjBaNFlWbHpaRWRWVUZoeGEzQnhTVWRGWkhKT1psSnZORWhIVFVsSVJFMUJORWRCTVZWa1JIZEZRaTkzVVVWQmQwbElaMFJCVkFwQ1owNVdTRk5WUlVSRVFVdENaMmR5UW1kRlJrSlJZMFJCZWtGTlFtZE9Wa2hTVFVKQlpqaEZRV3BCUVUxQ01FZEJNVlZrUkdkUlYwSkNWSHBOY1c1WUNtbGhNRU5aZVc0dmRETnpRVTFtVDFGME5FSkdSR3BCWmtKblRsWklVMDFGUjBSQlYyZENVbGwzUWpWbWExVlhiRnB4YkRaNlNrTm9hM2xNVVV0eldFWUtLMnBCWjBKblRsWklVa1ZDUVdZNFJVWnFRVlZuVWtwMFdrZFdjRmt5Um5wUlIyUjJZakprYzFwVE5XcGlNakIzVEVGWlMwdDNXVUpDUVVkRWRucEJRZ3BCVVZGbFlVaFNNR05JVFRaTWVUbHVZVmhTYjJSWFNYVlpNamwwVERKNGRsb3liSFZNTWpsb1pGaFNiMDFCYjBkRFEzRkhVMDAwT1VKQlRVUkJNbWRCQ2sxSFZVTk5Sa2huU2xVNWRscHFTVWRJZG5VNFJtbFZTV1pHYUZKaVNFTm5NbHBzVlN0d2NIVm5RWFZUV25GR1lXVTVjbmxMZGxsT2JHNVllRVpNUWxNS1pGbE9hMnAzU1hoQlVHZ3hieTlEYzB0eFoyMHJSVFpqYVdKWFoxVjJXRE4zYzFSdlNIUk5SMWhDWTI5NFNYSjZlSFphWmpWRU5YcENlVWc1U1hGblpBcFJXazV4TVdsWFpYQlJQVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89In19",
+ "integratedTime": 1660144519,
+ "logID": "c0d23d6ad406973f9559f3ba2d1ca01f84147d8ffc5b8445c224f98b9591801d",
+ "logIndex": 3161308,
+ "verification": {
+ "inclusionProof": {
+ "hashes": [
+ "747476ca615535a3a247b63422ef0983a9e10aa0fe9a85dca357d9cd0ea186a0",
+ "e811068b746626dd52a17f7f88818769ecfaf15cb99a151a42a3e02f479964d6",
+ "31d2da60dc9d620280d1419bb200ed7bcf5090daabb40f674fc251a379fa2926",
+ "c32f9055205b2671dbd2a78586414d1f582d6e0af98be28584be0d774c6d7429",
+ "a39c7eb28a4292551ac481ea720972126890b2fa2208e1e882daf7dd361a1088",
+ "892372e2900218d36268b08f2f3802cd70089c7041fd312c095ac53c7f29a8d8",
+ "aa876df22f4be8e0b0358f249b4e645abcc09826126a733f58f738d1baad666d",
+ "efcc811a35edaf4125e86c5f88a7041775a121708ca0312430fef017d243ae93",
+ "caa77d1439354e3c31e6944fd24334a33aa693c36539c5f47423f9dbe3ffe2dc",
+ "7200276683567a34d3ea3206d179dcc6084b3066bd27ee571b8d7dafd7833657",
+ "9f77eaf14363b05272ce8f41139b4b93e5132dc27d18225a9b825de5e7ec79eb",
+ "6d494b237648126525b08f975c736a55d1f7a64472fcc2782bbc16733c608d7b",
+ "efb36cfc54705d8cd921a621a9389ffa03956b15d68bfabadac2b4853852079b"
+ ],
+ "logIndex": 3161308,
+ "rootHash": "356fc7301eb496073d1d787bf2d5ec4644e8f4edcbbc163ff9517bac23c3c130",
+ "treeSize": 3161311
+ },
+ "signedEntryTimestamp": "MEUCIQDbt4RHStpCT59zVgculEslrN9hP6RupkcekfmcDd/WKQIgMFTIHfHY+KnpgxHccBJeci2o4AfQCv7HLUluoBQjux8="
+ }
+ }
+ }
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/sboms/sbom-1.txt b/syft/rekor/test-fixtures/sboms/sbom-1.txt
new file mode 100644
index 00000000000..2e0f5b016bf
--- /dev/null
+++ b/syft/rekor/test-fixtures/sboms/sbom-1.txt
@@ -0,0 +1,13015 @@
+SPDXVersion: SPDX-2.2
+DataLicense: CC0-1.0
+SPDXID: SPDXRef-DOCUMENT
+DocumentName: SBOM-SPDX-ba96f4cc-d9e3-4c83-a1db-ec5456b6a9ce
+DocumentNamespace: http://www.example.com/binary.spdx
+Creator: Organization: Kubernetes Release Engineering
+Creator: Tool: sigs.k8s.io/bom/pkg/spdx
+Created: 2022-06-28T19:03:39Z
+
+
+##### Package: sample-golang-prov
+
+PackageName: sample-golang-prov
+SPDXID: SPDXRef-Package-sample-golang-prov
+PackageDownloadLocation: NONE
+FilesAnalyzed: true
+PackageVerificationCode: d8a63543cdced3d00fa41450eeb2eb2ffad83fdc
+PackageLicenseConcluded: Apache-2.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: NOASSERTION
+
+FileName: .github/workflows/slsa-goreleaser.yaml
+SPDXID: SPDXRef-File-sample-golang-prov-.github-workflows-slsa-goreleaser.yaml
+FileChecksum: SHA1: 9ea64e62cd78d9138ec233a74ac45c75bdd0c408
+FileChecksum: SHA256: 527c33d3567080f4f34d04cc38eecae94adda2f4cb3627a0e0c020064498c07e
+FileChecksum: SHA512: 546246ff3e6659bdd7135cca23375eab579c63c889091521012fe4fac406e57f6d60d939d38781fd447b1bbe4aa7131a90b15f1cc72534b2f6b378c95a91dcc4
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-.github-workflows-slsa-goreleaser.yaml
+FileName: .gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-.gitignore
+FileChecksum: SHA1: 7f8d991950ba797166d60b878c5e0a1f132ddee1
+FileChecksum: SHA256: e45f8e0c321ccdb7eef37f15681d987e6aa8eb2a5df79975056503c19b75bde1
+FileChecksum: SHA512: dad9d1e73b2c366018116d60b27d6802af92917aa5ad8e580553b9c3e667e2e9703271df82fedd3e58db748e5059f4562fa910dfefb26a479ab4082b396cfc31
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-.gitignore
+FileName: go.mod
+SPDXID: SPDXRef-File-sample-golang-prov-go.mod
+FileChecksum: SHA1: d5d7b7d8ae8fa3b89be0dcc06b5d50be2d9014d8
+FileChecksum: SHA256: b3bedce4fd47c311a354fd0af3c6ef49fee38e7d80d398135cbb1acfb6c88ffc
+FileChecksum: SHA512: d0a537519fdf15a04de9b05d889ae8f09294161d1bb53a9b93ebe0ff9242984eb008feead37d2108d4b11aefa1b0c3d87b53375acb75be25803da4f4aa612657
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-go.mod
+FileName: .slsa-goreleaser.yml
+SPDXID: SPDXRef-File-sample-golang-prov-.slsa-goreleaser.yml
+FileChecksum: SHA1: 68ce46fe19642b57075f9541750eb0b1c4e64ac6
+FileChecksum: SHA256: ff930ad1c73ec70d88ccbaaa2b7f10508cb23ae8d24f3346c2b573937c8c3f3f
+FileChecksum: SHA512: 3f27cf21757de47b981926b7179ccfff5c21c0a0a0200ca7e1de62de7258c21ec2bbcd2f2e334e3399e2239c6d899581f9b997ac35dda266b0777ead5c7bfb7c
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-.slsa-goreleaser.yml
+FileName: go.sum
+SPDXID: SPDXRef-File-sample-golang-prov-go.sum
+FileChecksum: SHA1: 303a5db03b5abe217ba7d366289ba66837b80332
+FileChecksum: SHA256: efd74e73612aea2a14c5c0b110cd0bb3206ea8f878b33a2c969be168928c3b1e
+FileChecksum: SHA512: e4ae084114229c415960ce6a4a77849d971692aac0c7bdaf3247f12f15dbb930205b771123653d033dc2b29c17b76d7cc14ef93d0b24da5fb75ae8d04d3d37ff
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-go.sum
+FileName: main.go
+SPDXID: SPDXRef-File-sample-golang-prov-main.go
+FileChecksum: SHA1: 6afe48233dc53adc1c09f53bc914864ed6b4b1d4
+FileChecksum: SHA256: f6dfc40fd2dced705a2b460073ca2ad7d59937a2bc89021e064483d3d4a0b37b
+FileChecksum: SHA512: 70579b6e35e1dedac75c5bcdbf886144cb7bcde0f65da7df20fa5dabc07374cdf69fe2c96397c30da7ed7107ecdbf05686340e5a5f622494b761e97066663203
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-main.go
+FileName: vendor/github.com/containers/ocicrypt/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-.travis.yml
+FileChecksum: SHA1: d72ef4d79d6d7ddbef7782d6e8ff5c0e15d13b77
+FileChecksum: SHA256: faba47a2c5eefbf373f388848eb1df9038c05bdd5cfd95a3e8ed7fa03fd67b13
+FileChecksum: SHA512: 00d3abdbc17a376530bd598859c34a2f8091328cb779226db178840841cf8a907fbca0cd0f712967028fa99cf5998cb8bd99e5c6079e1385e9ca5a82a3652327
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-.travis.yml
+FileName: vendor/github.com/containers/ocicrypt/ADOPTERS.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-ADOPTERS.md
+FileChecksum: SHA1: 16b34dd5d33056c1cf329cf21668a2a338aeb4c3
+FileChecksum: SHA256: 2ae0d93b23f9c7c37dbc7fc19eeac407f79817b9c5f30c62de7a8e2faa18391a
+FileChecksum: SHA512: 5b073c5df4fc1124eebfecbef67c98ff1d168db320fd63491b405fda6e7c4dcf749e8b18a62fc1050c4e70977eec8897fb25b55930ca1835f7b9e51cb43bc608
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-ADOPTERS.md
+FileName: README.md
+SPDXID: SPDXRef-File-sample-golang-prov-README.md
+FileChecksum: SHA1: 00bbb7d9afa65ce3bdf2f35908c0da2771ea2153
+FileChecksum: SHA256: 9dc3dfbbb50093593e5f14c41803f0d3377d5b9f05d643eb42116d3a545a2911
+FileChecksum: SHA512: cad1f57c99458adcb16faefad42ffd3d2495f2905918772300854cb2dd3b8081684b03e9f9e314989671e36b78da61e7927e2f0aa605ee9d3c4e8bbc73461293
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-README.md
+FileName: vendor/github.com/containers/ocicrypt/MAINTAINERS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-MAINTAINERS
+FileChecksum: SHA1: 4317ff02ed9437f7b570f554aee7abccd429630f
+FileChecksum: SHA256: ea75759674d99622cee95c0f830c3a4052d236e4325ba8c3b0c5b2c6d75f1507
+FileChecksum: SHA512: e1863d6af1b9412d844ad66e32462c958dc32e0ff2537d7afafaed8e1da89d6ee659c6bacf10809c4484021c886882b90b02e32f5329ae0167b6398533560a82
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-MAINTAINERS
+FileName: vendor/github.com/containers/ocicrypt/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-LICENSE
+FileChecksum: SHA1: 3037fadf4c833d13c87fcd0b2f932de187edf676
+FileChecksum: SHA256: 716a8b80635c394681e652823e1e42e411ad2d254e1f202403422d74f4b0b106
+FileChecksum: SHA512: 5cb85ce7cb72b66c8bd7911ab48169722751278ba5c09c4d0061cac69a702e48de97c319d82b57a78a4c3e87a3adc2597214741f26838f35ea3dd1393b42c831
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-LICENSE
+FileName: vendor/github.com/containers/ocicrypt/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-Makefile
+FileChecksum: SHA1: 46af4d4c8adab2bf4edc04def8e2a58a6f1d9ce5
+FileChecksum: SHA256: e301a534d70ea5f2541ffec6d37806c333ea46d3d8632550d154dc1078dac96d
+FileChecksum: SHA512: 2a96efdc9524f43a1ebb233a61465be00dc18ac01ac2e5a71e3c7ea3be980e8ee77a98ffa7820c76305531aa3aa67853e1dbcdc03fc88162e352db2fcf8bb3e9
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-Makefile
+FileName: vendor/github.com/containers/ocicrypt/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-README.md
+FileChecksum: SHA1: a1672c59b0d6ce8b9c97034c49d0ac5da540ca79
+FileChecksum: SHA256: 829eb1bbbf1dac9949d8c2c1e5e8f037326306e762bba1788dc5f204ab809896
+FileChecksum: SHA512: 6c9b7172716728f9bc9cfad2da0916c44660e351937d1c6e29aa8011e82df811b4e96442c5ea52d7ecc38b0afcd926e73bfa44fc6786f0d3378a259a41f3ebdc
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-README.md
+FileName: vendor/github.com/containers/ocicrypt/SECURITY.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-SECURITY.md
+FileChecksum: SHA1: c48faf8a8ab4c8ac439c8dd4b347f3d31a9f7a81
+FileChecksum: SHA256: 92456ff28a4972c2382cb727506e6be5bf74c7723f829b628621671ec6031cd4
+FileChecksum: SHA512: 2d23b840f366bf48ca2ced0824240dc1ce219ec34bbbf307a47a5e1e14767c95d0c58d9b396cda999a7dda71ef72d3968a46a939e585e7e000f317e2f57bfb11
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-SECURITY.md
+FileName: vendor/github.com/containers/ocicrypt/CODE-OF-CONDUCT.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-CODE-OF-CONDUCT.md
+FileChecksum: SHA1: 25b13074f95f8d50ea7e1c8a829342053ddd9612
+FileChecksum: SHA256: 87719f30720aebb6b88e84c5229970c706b2a91258a978d2cc496806f4ef3ac7
+FileChecksum: SHA512: 296316b4a69206822e3975020b5e843a865275257a832949bd23615a78355d37e3bd7bc3fafff543c99100631fd22da3a122627077a87e92299fba7e2b4bfdac
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-CODE-OF-CONDUCT.md
+FileName: vendor/github.com/containers/ocicrypt/config/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-config.go
+FileChecksum: SHA1: faeaef66894ebc9ea7a33bce0cdaddae18c6140c
+FileChecksum: SHA256: e91cd8ad61c51852616e5fd255e81240854d45ab30154d2b82132f0114090de0
+FileChecksum: SHA512: be1c95d4c0a40c587cecd0cdacfdb2f771671ece1cab28d638ea10ca5a3bf89fddeba929b6d5701e83379e4ef66079c5086025c8924353f23532ee640da7e005
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-config.go
+FileName: vendor/github.com/containers/ocicrypt/config/constructors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-constructors.go
+FileChecksum: SHA1: 8c20635693634c308027773226f4e26bd22a7fbc
+FileChecksum: SHA256: 8513a2a19b7ed3d9caf801c7102a8520315ebaf3625ebde309d3d3daf12f1f30
+FileChecksum: SHA512: 4067a6d42c13c0095304bf8501f040fdb199b68e2842d2940eccc16f807f7f8341d4b56d8540603aa1ca2ef6699e903cd80d0f30b3a31e8e5dba1eb029e1e83d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-constructors.go
+FileName: vendor/github.com/containers/ocicrypt/blockcipher/blockcipher_aes_ctr.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipherC95aesC95ctr.go
+FileChecksum: SHA1: d2369cc700c81ed56fae2f0c2b236e7b0b318afa
+FileChecksum: SHA256: 75ddbc90a95f234115f061d164905df7721a360a72641f8f1dcb17b4f6d8ee34
+FileChecksum: SHA512: 842d223b0cccc683ce371a28851c16bfc87a669bc420a843f460bc16fe9fdd318adb9c4be5e02e25b65b9bea60b36b61557d8b9396e9787ce3e990478721103d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipherC95aesC95ctr.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/common.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-common.go
+FileChecksum: SHA1: 27074a63fab53216555d163558e40e8a298c6367
+FileChecksum: SHA256: 4b916f4cdeaf75f844f0b2e5dba2939d1a17ba86a5c300026d0e047ef09cee70
+FileChecksum: SHA512: 771f6b0339aceabd68f5fa5fe1e95b94d5c710ef396921c660f63bab6ba732cbe20deaaec30e86a9d622e4ccc00d1a13dcb394ba888bd9c339df8d767e0654b3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-common.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/pkcs11helpers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpers.go
+FileChecksum: SHA1: 123b472833f442164ab4fe5aaf4e361c61cabcfe
+FileChecksum: SHA256: 05de27d7259925d147c352bb07fc09d713a6c07db437fbfdbbddaf25ea8e286b
+FileChecksum: SHA512: 39de44f48d5a23e2f8ee74a351dcc985cb532d023172a57c9d399a38515520dc8711ca517330eec01303b1e77a8fe4e467cc9af8952434c5b7785291700a6d81
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpers.go
+FileName: vendor/github.com/containers/ocicrypt/blockcipher/blockcipher.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipher.go
+FileChecksum: SHA1: d73ba71e45cedd9cdb632809d37d31221dfe7ef9
+FileChecksum: SHA256: fb321db2c4ce04c2d5ba61fb7cfe32729f217b2ef5c5bea5feb1e5c7e52df5f9
+FileChecksum: SHA512: cdfe880f354781db29a00918bc0d05813c88589f7ca932fbeb9532a06e8c473631de274e44ad64b0cc76965fd50398575b25f46fc2ba3efdbfd4481a01101439
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipher.go
+FileName: vendor/github.com/containers/ocicrypt/config/keyprovider-config/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-keyprovider-config-config.go
+FileChecksum: SHA1: 8e8dc783e756b9ae8e1135bf12d4f1cc998c38d3
+FileChecksum: SHA256: 4c8e5eded1a4d22f861df68513bfe3051e9079011c53a90ec2622e75fbeb5db8
+FileChecksum: SHA512: 64024fe814f47f11eb0ba1c9eee763982009c75ea0eff83e6735f9f6fb2a883a552e2bb5e99a0e76f98ef9dceef20c63964b6637b1cf9f8760ffc1ed5cb2e763
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-keyprovider-config-config.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/utils.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-utils.go
+FileChecksum: SHA1: f22f963b8bcbeb5795a1e5f472dea78cbf1ccc0e
+FileChecksum: SHA256: 02c44207337764cf8e54ff1df159410a3a5361361481838ab3d318bf4fb1c885
+FileChecksum: SHA512: c158afbc7f88efaeaa415b98fd316f32a61289d789977e896c66b64c89bf045698c4ad2a8d4e1db90d6a6d19bfdae886fbc38ccdd74a7936fbb232d92372cedd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-utils.go
+FileName: vendor/github.com/containers/ocicrypt/encryption.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-encryption.go
+FileChecksum: SHA1: cfbc50f4215ebdbd2bb19b16bf5e283719f6da22
+FileChecksum: SHA256: d843def5810a29fbe266ae604de08fcb78c1324e217f98472c014ac4c4175462
+FileChecksum: SHA512: 013fd23f6761de58d912a91af10679bf9a273f691b5df8d5fc673a62d1cd9fe423b9fb912ac67ad530864c0a3e4a981ba75f21a8d21c7a3840e96adb714083b8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-encryption.go
+FileName: vendor/github.com/containers/ocicrypt/gpg.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpg.go
+FileChecksum: SHA1: e2ea1663683cf8a0eee5fb8f955a5821808d6523
+FileChecksum: SHA256: dfe9b0b4f55b6f8f29f99e254d2b8b6cb0e2d4610b8be6f9926858a3ac09c889
+FileChecksum: SHA512: 55a876f2d175eb9d0d5d10f5946ff15888eb729c7c58219a51f157eabd08230c5b67b57350f53e26c315752def47f9bf87c677520391e1a99efc6c34a0119ee0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpg.go
+FileName: vendor/github.com/containers/ocicrypt/gpgvault.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpgvault.go
+FileChecksum: SHA1: 6b7c66df7321ff9a6f35971f35ee393cf40cb365
+FileChecksum: SHA256: 3220495eb2790f2e38f246a8b4c2d167362f4ae1ac7a0db583330c7c0a8c9581
+FileChecksum: SHA512: 01aeb2e650ae7d86a824749d504cf18460f233acd9c318875ba242419befdd7a9eb9e051431147791cf204fb3442a4722c480be7ef8de67f6ed4abbdbcfa2244
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpgvault.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/jwe/keywrapper_jwe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-jwe-keywrapperC95jwe.go
+FileChecksum: SHA1: 4db32f41ca9af98156ef9d2ee3ffb34668e6c162
+FileChecksum: SHA256: 4b363bcfd9c36c77b0a80efbf3d9e61518622f5e0e6d232cf458f2a5a8ac1582
+FileChecksum: SHA512: ad8a465b4144e2ca1b8615bc3493492f7ef901a82127bf1cb3cef5ecc57331c40db4d4d4666fc4b4172be464b167dd7261dc04d7c6ebc24283dc010c658ed1d0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-jwe-keywrapperC95jwe.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/pkcs11helpers_nocgo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpersC95nocgo.go
+FileChecksum: SHA1: 7b57cf7c61d29b5bfc2a9bd2b1ad0e847cc343dd
+FileChecksum: SHA256: 3ab3a5e308a64ec2394042f12a32271237a186d48f7f434f63d87bad386b57f6
+FileChecksum: SHA512: cc21325aab99fe817b1e6ad4af44cd65d753c8708b0afb889245d77b41189499d6e95db941228ce152c8185170a671d4c5a5bb2cb7046c36194e99f4eaea68b6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpersC95nocgo.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/pgp/keywrapper_gpg.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pgp-keywrapperC95gpg.go
+FileChecksum: SHA1: bc47d42e55688b3dc79275bde0071de496b62503
+FileChecksum: SHA256: 71a9ad901cbb4178b2a4cc2d3f331cef9224e14d2bdfbc8710f28ef4e70b708b
+FileChecksum: SHA512: 4990b4ccf8d6cee0f00705645234283c1873d67c24929e23451c7a24d20d6f67f2cbf8c4c738eb231894a43fdd194f3977218b4338a170a283b8e6e15fab5196
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pgp-keywrapperC95gpg.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/keyprovider/keyprovider.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keyprovider-keyprovider.go
+FileChecksum: SHA1: 3343d332d6d0a1768df4919f0a4cb49329882d3c
+FileChecksum: SHA256: 321e758559ebb4eb19c98d628718b751b3c1396dbf6308c58c26106e56cf9b28
+FileChecksum: SHA512: a52b72185006db8609b17e48fc876302cc7fb76356f35c864843f36f7a9c583888724cefda06e3ad809f6ded49727f188755f363129aec535651c849c75cf7e7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keyprovider-keyprovider.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/keywrap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keywrap.go
+FileChecksum: SHA1: 64a568dba08f2c67ec41da5c3c3d30529aad9eaa
+FileChecksum: SHA256: 542921a562d1ee6400509a0b9bb884f95a47bcc6007443bf5dfa9a16fcde6c99
+FileChecksum: SHA512: b80c58402f9a470dd2b8d22285d0665ee11ee2f3454e5898c5c1887a38c556f6a3b51f9496bae52508631aa7ad72461cdcf8036df14cba404031e75c2a88816c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keywrap.go
+FileName: vendor/github.com/containers/ocicrypt/reader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-reader.go
+FileChecksum: SHA1: 42d31b563178905f0cdbfb475cd61a81a322ab71
+FileChecksum: SHA256: bd51a0e1c9d6b20823ccf11ec24feb03541c1b5f8f9968e27e5ae1a139f3bf9d
+FileChecksum: SHA512: 8e64d316eb4a38575e45af7d3934606b6789f3955bc0f3301f308a1e85364e5228f521401bab39a54469fb646c72e7f99e164d19304da3ce14a8a4a28d889866
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-reader.go
+FileName: vendor/github.com/containers/ocicrypt/utils/delayedreader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-delayedreader.go
+FileChecksum: SHA1: ea37a39bb5545d5f43a07fd249dd7f081671c6f7
+FileChecksum: SHA256: f65248b41e61ff23e3a92cb0d472931fa1d9684011cd5e30f9cedde8f269c702
+FileChecksum: SHA512: a878f22ea299779b258942162cd0dfd04c38e832dd5ffffe5e4f703b0e66825f222e2ff9cad4d1faef98230397489c245345dd16b0271f10c75bf1c5d8896e1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-delayedreader.go
+FileName: vendor/github.com/containers/ocicrypt/utils/ioutils.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-ioutils.go
+FileChecksum: SHA1: 9cfa71de0cf528d8456f0f4f058109afc5776313
+FileChecksum: SHA256: 14bf259fb1cc2e9b53a27388bb27b6c83c1d1b7c18c0ebfce5f449704ff0f45d
+FileChecksum: SHA512: 74518d61008c148f2351ed28c4649eb62e86b1f7751923157cef4386f3d5370ec23a279d46da1588f534467caa9527dffc33f997c7bd46bd1c8252cbb7f6058b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-ioutils.go
+FileName: vendor/github.com/containers/ocicrypt/utils/keyprovider/keyprovider.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.pb.go
+FileChecksum: SHA1: 9e0402a4a8162ae4447f858798130c5b6a0cdbdc
+FileChecksum: SHA256: 99bc016c216318648d7dcb8f2691992e4561d6d1a7e1ae5a63cffe28eb731311
+FileChecksum: SHA512: 5c0b0a72f20749c84ba2a2b4b10ce2ccac099ffd7a392383ac1782f4ac6632098450a2f820e3800085ece3ce3ac4e0e7ab65cc1732f47a7da0df60d26cf58c59
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.pb.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/pkcs11/keywrapper_pkcs11.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs11-keywrapperC95pkcs11.go
+FileChecksum: SHA1: e81ac6e98710f0969c347252ec96a952ebcf86cc
+FileChecksum: SHA256: feb8cb3205c5c35bb9da009a6f04bff044366e739741c6aa9e57c4de2159bf20
+FileChecksum: SHA512: e27ad5e89e9b02b463f3eccb5f7892b6b85b93a39b888f6a76103161ecede426247f421edbf69560f5699cba111217b9bae94e5e653cb89ac7182add2deea10c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs11-keywrapperC95pkcs11.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/pkcs7/keywrapper_pkcs7.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs7-keywrapperC95pkcs7.go
+FileChecksum: SHA1: ee82236a3c9afa98d5dbc695876b865af1cc7410
+FileChecksum: SHA256: 9070997b42303e7222f07f042130059ac260e61301db0d65e0ff6392a4e66dbf
+FileChecksum: SHA512: acebf347f1ef1a0080a662dffc83a2063e52958fd90c9e9ad73163e0f96aa3a89fbca9c674b3fda44d772afd75e3d02c778db1086740ee4a9d96a7044ffa88b6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs7-keywrapperC95pkcs7.go
+FileName: vendor/github.com/containers/ocicrypt/utils/testing.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-testing.go
+FileChecksum: SHA1: c2343afe5c03915bd31cdf148963a08dc1704d19
+FileChecksum: SHA256: 8f44948fee7ec302f3510b4ade78f1ea5a936b6008fff9fcf82a7f1fa009441d
+FileChecksum: SHA512: 6b97b86fef24a8ee4913eaa07ad45eb769cf5e5ce61bcbffd46fa96b265c8a2ed91f81a3d47c7e500111533ee2b9f4c12a28592d8a8518ad41d058906d969a9e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-testing.go
+FileName: vendor/github.com/containers/ocicrypt/utils/utils.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-utils.go
+FileChecksum: SHA1: 6a5cfddfba670aa6c93d83300d1fe71de40652f6
+FileChecksum: SHA256: 806f61a58059a6505689cc8ffcd6d6c7fe763c0d0975dd2bcedb57cf1ac7a193
+FileChecksum: SHA512: 0323ab5ddd9360f74c225dc55d15da9003e889fd4ac9cca6bf6bf1eb714ff7bc31ccb0c0050175ad636beae3c51b8b307a09ea88dbdd1fa8f1aedbb8ed803885
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-utils.go
+FileName: vendor/github.com/golang/protobuf/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-CONTRIBUTORS
+FileName: vendor/github.com/containers/ocicrypt/utils/keyprovider/keyprovider.proto
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.proto
+FileChecksum: SHA1: a27e176a0d14b6688de88732c9f9d05676651e86
+FileChecksum: SHA256: b3118037f208abdd4a1486fd960604807b7190ae22237470c47a3dcc1d1b6a34
+FileChecksum: SHA512: 77fb2c202af0a1c897bc8e6597893e29e5e69ab1793e377b45e4a1475f4d8eff7f2abcf98fb4cadfa02a50274c85956f788e94ab8f48c274fda39e2e70280ce3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.proto
+FileName: vendor/github.com/golang/protobuf/proto/buffer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-buffer.go
+FileChecksum: SHA1: ea0b9ac1c1d2578b4728424ba7505e526292c118
+FileChecksum: SHA256: 5f6340e812b1bca5ac6f24fd5032452e46f2c25836dc56cee8f42aadebf9aa23
+FileChecksum: SHA512: 377d2a9e2a72897bbac36ccadc569270b871d5d814eeba52f7b89a634e2c57124cc291f7a83dd19480338b8aca1317b7a0de959369b735f13755c949f8ed8efd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-buffer.go
+FileName: vendor/github.com/golang/protobuf/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-AUTHORS
+FileName: vendor/github.com/golang/protobuf/proto/defaults.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-defaults.go
+FileChecksum: SHA1: 978faa6eec58c8902b8e69ddb2be2c6b795d9360
+FileChecksum: SHA256: 251521ac58026d24363e9dece3e4d49462e4fd9b28dbcd5884db569ad0f010bf
+FileChecksum: SHA512: 8584968a235f7b8940325c09bb1b1e0fb8aae8349cf4ff6f5ae0cae33fda53970b255082264115fe61b6410db8c1fa9fa0a3fd102cbaebd11709b6639b9b5ad5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-defaults.go
+FileName: vendor/github.com/golang/protobuf/proto/deprecated.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-deprecated.go
+FileChecksum: SHA1: 4cdf5affb2939ff51645b845f05b60f71ae5ee40
+FileChecksum: SHA256: bb03db1eb256939fd1053904d67e3e66d582e04c1fb01d0ec19d501f97209cda
+FileChecksum: SHA512: eb7893fdd28636cb08c9d6cb7769ec79d6ebf48abf526c7a8a86126ca90d27764383ad5b7cec1042c5def374d4fc82f6e66a700e9dbc4007a6c12353cd56fcda
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-deprecated.go
+FileName: vendor/github.com/golang/protobuf/proto/extensions.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-extensions.go
+FileChecksum: SHA1: 9d40e79c4234ec13e856f4f02e16718cc88f7a34
+FileChecksum: SHA256: a01ebf831d94b2adfe24fd8110bc3737d96125aafa64d61553fec7dc7a4587dc
+FileChecksum: SHA512: 64802dfddc90bdebae11f87713c68806228ca3bf5f8c73a39ac2622e9027ba17aad4f5faa806483ff2cb23054e019b7780d2046fb5d5bcce2b8c7cbb20cf5fa0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-extensions.go
+FileName: vendor/github.com/golang/protobuf/proto/properties.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-properties.go
+FileChecksum: SHA1: f9cde0df7f5d7894ccfd4606ed9e5e8ee977d612
+FileChecksum: SHA256: 53bb7d73904452555dbb612b0e9d23df349716962bcc7c99715ca950cc455029
+FileChecksum: SHA512: 4f3f2d0a7e7257d710eda7d83bb7b6fae3049bf52e9596bb709ca4f73d685209b8ce1c2392bb574bd7524d2ab1aa95aa2930a834518d127421587fb495e26966
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-properties.go
+FileName: vendor/github.com/golang/protobuf/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-LICENSE
+FileChecksum: SHA1: aa9b240f558caed367795f667629ccbca28f20b2
+FileChecksum: SHA256: 8778a9fc1eaffb03ab873caae251df2d224f6b5502be8777d3cd573a4dd43903
+FileChecksum: SHA512: e4c458763cc5f8eaaa6d1e6f6924caa95bdfbe6811d85e4d0bd721acf8d3917ed082621b9de58156b6b86b3f9ceb970a404a03db24a3f59c076fdf5b1992b77e
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-LICENSE
+FileName: vendor/github.com/golang/protobuf/proto/registry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-registry.go
+FileChecksum: SHA1: a9ed3c8331a4e5a0a4aca7bcc459a8bce91dc888
+FileChecksum: SHA256: 0ac07db753e5e1fd930340cc5211373e5d9a33f43d3c79cd8e82dccf594f8c4e
+FileChecksum: SHA512: 8d1c052a82362214feaa975c9b9e00623d6f966f0f9b83e1e9dc89e0e2cbd83ccc4fea2a10f8039511f1a8f1e6e94d837241bc03d0c3203f03b7501adb522735
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-registry.go
+FileName: vendor/github.com/golang/protobuf/proto/discard.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-discard.go
+FileChecksum: SHA1: cf6cd9f636ebb9567b16316e6e4dec4a61f2064d
+FileChecksum: SHA256: 9b6a5c7a3dc614c20e9d7d1447327d5339ddbf8b4ebeccca86b4e9e02fe5dbce
+FileChecksum: SHA512: 6f90408caa31fac518d30c0ec71754f6a70827e0a831c74044d26004b31a45de68f0fa7b5e4108e5b926d49a055f43b99cf4f3ed6671acdbcfde7d58ed7ccb9b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-discard.go
+FileName: vendor/github.com/golang/protobuf/proto/text_decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95decode.go
+FileChecksum: SHA1: 1c5ca32f3707fc3d930df5aec8c755b77ffb13f8
+FileChecksum: SHA256: d9828602dedfad903f012d12355e410203b4ae7ce756dfb975edf1f90b3cde61
+FileChecksum: SHA512: de131e2f09ae6ff53ec24538f161c44ae2f5cb80c568672beeb76f28c8da2c9c42cee0e29cea447bfa548d33ff5c2761f3efc85c52182c037cb73800aa5c49d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95decode.go
+FileName: vendor/github.com/golang/protobuf/proto/text_encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95encode.go
+FileChecksum: SHA1: 1a7dd2434c8b0d773b5673143351553e9e4470ac
+FileChecksum: SHA256: 5bb2d39e94cc6bfa40db9903d4890e8d7ec0c09264189887dd4c84844779401d
+FileChecksum: SHA512: 623f9360796416b59c912dea2c93b42c6ba8e5d29525df93b8e57a49ca3852dcd05bdf96f6337bb429d6ff2c84c8021512da14f2a0fd9f32fca2ca7623bfe8ff
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95encode.go
+FileName: vendor/github.com/golang/protobuf/proto/wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wrappers.go
+FileChecksum: SHA1: 503a6b0f0ec6bed67a6cbc36d388a30e4788e0f6
+FileChecksum: SHA256: a4800c509be41c80a54ec37bb186102294be6a2821dfe8415c5cf197e1463cae
+FileChecksum: SHA512: da2269b47207e5eaf59bde5083df1803ba41a0d9477600122eb4bfe7fc69d078573a10a40116ca10a131ba707ac136bee321ecc5acd8349f1f2d8b8b92a1bd9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wrappers.go
+FileName: vendor/github.com/golang/protobuf/proto/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-proto.go
+FileChecksum: SHA1: c9507d18a1d823a9a5267ef2889606f0e111095a
+FileChecksum: SHA256: 214e3d31330c72178866b3cec863ec98409024dd167951dd83eadcfa32796e59
+FileChecksum: SHA512: f438e0ce3c45ed0e9dc6a86f91f5734e249f10c193c3303d1423d81fc103c4383473657dd76814d1b9329bc44007f6cef5206467b0fc78c8559f58796519fa8c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-proto.go
+FileName: vendor/github.com/golang/protobuf/proto/wire.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wire.go
+FileChecksum: SHA1: 3bd653d3a6d517dfc8bb75a1aa023bca6b3fb112
+FileChecksum: SHA256: 84e9dff5c3cf0eddf5f5050c61c94d863cea3f7b2ae81270d0790959f0ca2581
+FileChecksum: SHA512: 608ce5ae521f9b7771f98dfaf27255138eda77bc99efff890cda58ec9862ecc3de89f7b4f04e6c66c45888126ecd4d52f40f6eba7c361d3d785df7dd552c1772
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wire.go
+FileName: vendor/github.com/golang/protobuf/ptypes/any/any.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any-any.pb.go
+FileChecksum: SHA1: 130bb00f00b2e93b305543305e8813c745c22d20
+FileChecksum: SHA256: 2fedeec37abcbc819fe4aac48a6c8902042a7ebf7236769a3a3c6ccec58003bd
+FileChecksum: SHA512: 781f51d0d7398233fbc84fb50004a29ba82ce631893ffec07877725544cd3828410515780083752eca9f5ed6d511c4c8341eb98d97e43815f6a556540ea9cc27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any-any.pb.go
+FileName: vendor/github.com/golang/protobuf/ptypes/duration/duration.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration-duration.pb.go
+FileChecksum: SHA1: 1fccba693e77289d68bf9206045351832739737d
+FileChecksum: SHA256: 21c030e1ede121830e10b0c42659f99eaba2f60487f04a84d29a9ea9cf22f503
+FileChecksum: SHA512: 088ea6498a68f491d1f157febfd889b261c940afa8d2e0c3cba4429d93de561a86d1ff4fb437d538923f88f995f109e7f0f0a51f1f2fad313c39fe27f1d6b2e8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration-duration.pb.go
+FileName: vendor/github.com/golang/protobuf/ptypes/any.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any.go
+FileChecksum: SHA1: da8ccabc29ea1048e61ce906def01d4870d32e34
+FileChecksum: SHA256: 75da4293ce1a9a0d0eb66e00a22804dd4e31d9eaa30ac99737891d32ff5f8de4
+FileChecksum: SHA512: cf6a2d464800d3b32e3e9c62a52a636b931541ef73c6df628c43d3834b55e44b0ab4d3c46ffcc047d6b3d94c9a777850bc19207a584e40da9d219ac15e61e280
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any.go
+FileName: vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp-timestamp.pb.go
+FileChecksum: SHA1: ee7ffc7e8ef8393008dc94ea26b2cd20c9a3bf00
+FileChecksum: SHA256: 694c11bfdc59e16bb641b7b465eede253da82f5c94bae1cea206caef8beac799
+FileChecksum: SHA512: 4b12a210c5f83b89657288a0a02c26385c5973f1fb27ce0a23cf7d41782eba44265ccbd9c17662824cd0e953030fe858f6bfc995f01257524795bfc127643c9f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp-timestamp.pb.go
+FileName: vendor/github.com/golang/protobuf/ptypes/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-doc.go
+FileChecksum: SHA1: 2211fe3750c2e90ba97b56a5632cbd90971157b4
+FileChecksum: SHA256: b5ed50b15ee577d30f374b878156069b4b1740578cfcf70686aa72624e81e4b7
+FileChecksum: SHA512: 28582e94b4fb13e418767b3b05bf1ac5d86da582c1a82f8513ad4af041c4ba083b78aaea3aa978a709d6024deab07d048c8da8f020b8ec58632697c8346fccac
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-doc.go
+FileName: vendor/github.com/google/uuid/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-.travis.yml
+FileChecksum: SHA1: 8c54f64e891af563d05b2be0f8cceefe46fa64d5
+FileChecksum: SHA256: 85c5ee4d345b1ee66b7c71ba3d323068a5530c2310e04c6341415106ceece25b
+FileChecksum: SHA512: 49b2de69c1d64e18a0d3db42bf46731a18736d07cc54a1d2f08eccff33cf69046a00c70a2fc3e83556739e3c39a69ca87f334078c68852539bc0c15833ccc8cf
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-.travis.yml
+FileName: vendor/github.com/google/uuid/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTING.md
+FileChecksum: SHA1: df682ac899830dcfebaf35f3daf73748e59fdd4c
+FileChecksum: SHA256: 3437b41dde90c94f4d66c9125940d7fc9ad371fd183d894a8ab0228497ea4539
+FileChecksum: SHA512: 367f728ef776c96483916f8e4f872e22b9eb5a3593ec8aa58511736a7fb0c7b2122f8e625ff0049885d1a3ee8aafc45fb40c75c47f6365e6c30f0a6418c00477
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTING.md
+FileName: vendor/github.com/golang/protobuf/ptypes/timestamp.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp.go
+FileChecksum: SHA1: 8d096352a6dffd30439841656584f961bf848fb3
+FileChecksum: SHA256: 562835118f4562a7ef1631a81fca7fa7dea68b5ea6eff9b33e2dbdfe7d1a4b64
+FileChecksum: SHA512: 69c99ee68045dc5ff33d5516b247a5c6ebd92eccc8a0890a01e66816d1dc74cfad28bbd36ddeabb118f277cb004c3d64820b312261ec47e7fb0071d9f383404d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp.go
+FileName: vendor/github.com/google/uuid/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-LICENSE
+FileChecksum: SHA1: 08021ae73f58f423dd6e7b525e81cf2520f7619e
+FileChecksum: SHA256: 0a8d61ed3cbfd5312326e8126c31ce9c627a283adc99131b56896d29ada04b2d
+FileChecksum: SHA512: 804d2c26af857d3506a29185eb3e367eec60fb66881b946c0847ed8c171072ead4f18744efbbfb99d2c4a5e19551dc2c22af28badd824e3c71eec66a9eac50dc
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-LICENSE
+FileName: vendor/github.com/google/uuid/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTORS
+FileChecksum: SHA1: 837bb54dfe0f73cacc6b3dba8fa5da0b3b56f11c
+FileChecksum: SHA256: d69e90a1901a669b3cc34dc07e99d60c8627d73c88dd374de488fec4fefd7118
+FileChecksum: SHA512: ac46299e8fd1135e71753d9d6672847647c654c65753a7c5a0fce2f4ac48045192ee66c9ef4333b9682c2f218177bacf38843a5026d94d131d3dd29339e1965e
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTORS
+FileName: vendor/github.com/golang/protobuf/ptypes/duration.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration.go
+FileChecksum: SHA1: d6c062570d0be12f63d989f87d6c3a24a6fc5902
+FileChecksum: SHA256: fc0c0495c43250537f8434a328ae670dd49fa01d498d5d64bb307182660d8217
+FileChecksum: SHA512: 1422ab46289d459bf26983779cf3f039b1fb10eb24e21a470d7109e2cd3725eb199c6fdc5635708f777a803389ce0ccb767c79ea896f0a5f105bf10b4eb16456
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration.go
+FileName: vendor/github.com/google/uuid/dce.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-dce.go
+FileChecksum: SHA1: 02a2efb3ec5b3058950288fa6d31aa6dd4e8726c
+FileChecksum: SHA256: 6a4b89e7f6165a673e76f00bebaabf8d0d7eb4356a672c6cb771d95a45fb2695
+FileChecksum: SHA512: 5d89fd52d285bf9b7cadb5f7224a469ceacfd186663ea95a2012baaae815add9303fc964a214bf556be6e39e0b57f7475efbc5eb5af3d777ab2c2dde530da2f6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-dce.go
+FileName: vendor/github.com/google/uuid/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-doc.go
+FileChecksum: SHA1: a1e6141b5d5301f2f073ec0175793ad43a046e44
+FileChecksum: SHA256: 0b286e2af61ede9f58d2455781ea254284c477b7fce2447aab3203992cc51f9f
+FileChecksum: SHA512: fe64650d7ed4de494025305acf9a2b6c26cbe70924c59ee1f87de6acc7e188c57c0d95305f5ca985dd510aa932f642da5604c559377a5905c34364f87603c0a6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-doc.go
+FileName: vendor/github.com/google/uuid/marshal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-marshal.go
+FileChecksum: SHA1: 7bab98ce43e2b7ba5214f01e58235a05691fa051
+FileChecksum: SHA256: 933eb226d049268e17809fd37f777c650b9ec8cb3fa988534b792610a64dcc43
+FileChecksum: SHA512: 56938af349d49cfbd68bdc4b85a0892baa01ad6687e88bbae011e3e362cf93a46d4d94fce0bb06e43f4b9d944789faff313466abdc19c163241a7300a1e9274f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-marshal.go
+FileName: vendor/github.com/google/uuid/node.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-node.go
+FileChecksum: SHA1: f343ad00cf81aed9a78e8587f56713569e0ebecc
+FileChecksum: SHA256: 73a93d192ca24078e0f93b8c1675e13adb442421252d3974d697b0821c4832cf
+FileChecksum: SHA512: 3101410cf72e011963521420318536c49e2ea781391b6d9f8baf41a10b41d5f241cac6327be8b4e9e0a97042c283f8d038dc13ddde87c12cae5ba251b85f839a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-node.go
+FileName: vendor/github.com/google/uuid/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-README.md
+FileChecksum: SHA1: 48f4c5dc2dd87d803f7a4d03cfd6169817e2b986
+FileChecksum: SHA256: d6b7f5ba069addf3c353be5ee5db15aef27547da87db9e3cf9e28dfc090fb586
+FileChecksum: SHA512: 9f622b4051120356b432bc5254002227d6117fffa8b302c07e120bdf6e0f82fedf606d628e10a3a98d35ec83a71384b3385815776a7a13bcfe30c32d353ad3a0
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-README.md
+FileName: vendor/github.com/google/uuid/node_net.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95net.go
+FileChecksum: SHA1: 19b6df35b3997e9b9bc936af5da9a5255f22fb90
+FileChecksum: SHA256: 78e274b465de8da8690f4ab06281f41025b142c1d093e337fda1d6726b35662b
+FileChecksum: SHA512: b60180b021fae82a2c0865be28672a5e8043a6a20e7a375a56a29f9a1074869aff6d57ddf921ff6a329f0affb2a4acbfe30f16a71f921fce7e0f55353a203114
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95net.go
+FileName: vendor/github.com/google/uuid/null.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-null.go
+FileChecksum: SHA1: c544e7f850ec645541d090031023a8163af51c0d
+FileChecksum: SHA256: 791638f42d54fcf07ac752df6b2df92593f7da308f944465e2cda443dc3346cf
+FileChecksum: SHA512: e277c09969d136bfe29b086ba2b6bba3814779b6d591f0e4f810ca1cd1c7f70823848e9ece51c776f5e979dfdec8754c80c40785fc983d856d5ac28b33c2c5c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-null.go
+FileName: vendor/github.com/google/uuid/hash.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-hash.go
+FileChecksum: SHA1: f86842458f6e93cdba9f223c120efebcce4bbc5c
+FileChecksum: SHA256: a9af4e955bfa0854a9e4c949a09efead471dd1504ce4c2a336cc7a88365da6c6
+FileChecksum: SHA512: 0a9dd5625e9c5ebae62c839a6b5c6b82a8156c02cadc8b93ba70698158dfefcd6af778c8ed5c4053564235d7225261fdb813e36b74e37d9d75df7373bb974c54
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-hash.go
+FileName: vendor/github.com/google/uuid/time.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-time.go
+FileChecksum: SHA1: f5ad87aaae45c7f2dbc5fba2f3b1f8c503c85969
+FileChecksum: SHA256: 057f98f779afbc6d293330f7aa0aa5fcd09541ff008f93060bf644e6fb7df510
+FileChecksum: SHA512: bf1b20dbdd43fe04eeb221a1b078b962f129e1205e5cfd33bff9f4bd03df36d651efd67af44593de7e0f4b32a5467e8b2080212959656ab53126456ed9075250
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-time.go
+FileName: vendor/github.com/google/uuid/util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-util.go
+FileChecksum: SHA1: 24f078505eb1d75e062d1806d871139299a4e2e3
+FileChecksum: SHA256: 755f50afafb13dd89ae6177da7eb6dc31ae650ece2f9ba52821021e9f8de044e
+FileChecksum: SHA512: f61300c91e1ac0614992f11f3b0fc787f85724d2af7f453ba999c4e42cb352157d93817a24a103649a5b4fdab5c61e5b5836873180b69d196f89e410f19ba960
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-util.go
+FileName: vendor/github.com/google/uuid/uuid.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-uuid.go
+FileChecksum: SHA1: e3ee7e32073212db9dcd0a88b71a8f79393f8ac9
+FileChecksum: SHA256: f6e767f1b9e3e5946f600afccc01c0e40f1d494171f2f9d8659a2e15daf3d79e
+FileChecksum: SHA512: b40aac37f3eacb0013874145d78f0affe9f39f38bb4f4b427b40831f7f184b9068d66625cc3b7c7f42aebae0c51248c1b35e44cc1a4a91eee7c038b39e27f901
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-uuid.go
+FileName: vendor/github.com/google/uuid/node_js.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95js.go
+FileChecksum: SHA1: 35e59077bdaea8efef3a3d3d8c87bf950eda6229
+FileChecksum: SHA256: dfefab9417556736eb833e7fcbf3bfbecf1d9e8db589e1d914a87ad98c261af0
+FileChecksum: SHA512: 8d5f8ea27df5b32978a7befcbebdeb89cc02d7760aa2bda74099851b577b5974d15af3c77e76c953ac6942c7073050138ea136cc770036d184f0a93c1638d5af
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95js.go
+FileName: vendor/github.com/google/uuid/version4.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version4.go
+FileChecksum: SHA1: 398a22020d88426d44723f058bd00c1bad2c9ac7
+FileChecksum: SHA256: f252aeb4028659d83cbf7b037d4524f7c9b76cde1fdca1f6f7de310dab6f4dcd
+FileChecksum: SHA512: 969049c2cfbde93e8c049cf6e743441427ab94308b4fda5a473f4ce4b24d293b2256119522860c3c64bf1152e62f7851d615563608fd1674acb8648043d49199
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version4.go
+FileName: vendor/github.com/kardianos/service/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.gitignore
+FileChecksum: SHA1: da39a3ee5e6b4b0d3255bfef95601890afd80709
+FileChecksum: SHA256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+FileChecksum: SHA512: cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.gitignore
+FileName: vendor/github.com/google/uuid/sql.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-sql.go
+FileChecksum: SHA1: 7ca24525c43ce49d0fdc536449ff6389fe6c1561
+FileChecksum: SHA256: 29281b11e8f97f1ddf73d087854cb401ba42a87c4f59ce45fc69763a4d927f2f
+FileChecksum: SHA512: c53a8cfb884a4c850cb973f20ba43e1d5da2dfbda662aabfe33b68caf814bd9ec764107aa12265fbaf2c982c5af1532f027b73f34af1c9310dff938df85e5466
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-sql.go
+FileName: vendor/github.com/kardianos/service/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.travis.yml
+FileChecksum: SHA1: 8b0931e4b5baff5f380015071cdd650d422ac651
+FileChecksum: SHA256: 47bd70148e7a91a1516547235a35e2228de3ac1953e5caf77f63230907431781
+FileChecksum: SHA512: 2da8b4c597e03daf23ab5ddd5f07350a68a318e6657636cb25d63bd8901f84d3b2b67ea774dd5c6402ba58c0df69f431f8a14d25d682a3e4a7ffb268ffeb16d5
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.travis.yml
+FileName: vendor/github.com/kardianos/service/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-LICENSE
+FileChecksum: SHA1: 728bf1c4bf9a93f534c1c18d0a10f7758e032a4b
+FileChecksum: SHA256: fd7885854c9ebd89997ab499a7bf5083c1681e58b6d7cb40a458906d5392d78a
+FileChecksum: SHA512: eff0493e6b84f8359b8709e7696b3e200b93dd5e2a9004d2ae4f1ed037af539ba37ca51c7c97f4d1c0e58acc63f10dcef1aaaac7b229816d1df322bb577796be
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Zlib
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-LICENSE
+FileName: vendor/github.com/kardianos/service/appveyor.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-appveyor.yml
+FileChecksum: SHA1: bf2524f2ecf9f77fa414064f5336383dd2f77c3a
+FileChecksum: SHA256: c1fa01ba2606a6a47d9b7e2e53577b793a7eb5c0de5dbdd5f949f63092befa35
+FileChecksum: SHA512: 75123b94294e3ab9e639fc56b620b7140fabf9fc80121d44d7e67d8aece25725562e0e7018932d4422a347cd7b86edb7aabc3160fc41048c5c1864c3a14430a7
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-appveyor.yml
+FileName: vendor/github.com/kardianos/service/console.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-console.go
+FileChecksum: SHA1: 504a5d927902ccf78b158c86a39f59d0df65e50e
+FileChecksum: SHA256: a59a8418b440df8e8be65e735d0efcd0307dc1f8258b35ac27c652234b0b4a34
+FileChecksum: SHA512: 918eca1fff1d08c2de67d424a1496196bbcc6a69601015ba95be5f637dadc75c7bd42896a90ce25cbd31648da4ce067eef4332db791c9b2dd4eb6b2691c345cd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-console.go
+FileName: vendor/github.com/kardianos/service/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-README.md
+FileChecksum: SHA1: e06fe8fca0d5c33213fec540f8913d19da35e037
+FileChecksum: SHA256: d9e7582607fe3ba768d7d44cfcb40116a11a1f8e1441c60cbd54ae774a49fd6b
+FileChecksum: SHA512: 601bc1fe6f0f978aadfd188976754e08fb9c66bc657aa77b7048270e5204b79d672e510ff3cf57155cc8b279040fdc309e421f89c26fdd5aee368c97984a2a12
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-README.md
+FileName: vendor/github.com/kardianos/service/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-service.go
+FileChecksum: SHA1: 4591c0fd02adf14f4701c02c5b033493052bbe67
+FileChecksum: SHA256: eec771ec704ed1ab7035bb4379663e1e5911499cd4aab19bf5c70d90f26d50a7
+FileChecksum: SHA512: e180c04f8bdf48235bfae5c0aa2e48bf0f9d8f8d4166241dcd6a75d5078d534fdc78de18d622fddc130e3ba7beceae2f819480e79d0677e3572e03ff6b22730b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-service.go
+FileName: vendor/github.com/google/uuid/version1.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version1.go
+FileChecksum: SHA1: 48b1fecbc25201fa0c3c65a3f2ec91ce3e3613de
+FileChecksum: SHA256: 38a2c229a2aad4bb72d45529304f210b1f31e8ef60bbd2605690a10f0d8a8242
+FileChecksum: SHA512: 1a8ac9f55cc4acb96f1a94c02048fb52c4b11ea493904a43c8022497ab5d91aecd4228357a810e539235b9cf7da48f63539e161c12d6ab1b775e57707e96e797
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version1.go
+FileName: vendor/github.com/kardianos/service/service_aix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95aix.go
+FileChecksum: SHA1: 8d3be74cd45fe2c430839cd994699e0d812a88ab
+FileChecksum: SHA256: 9e14d817f3b7d96e424f04970c5c36d30d707a32940ec771aba9732ae1ebc98a
+FileChecksum: SHA512: 363c81395c15660d6a23919dd1091f6c8e5b29a896a2693fc05c42fe2e76b025d5a00a83e4f9d85de7ba08e3b85b298c0a8eedeb8d307fed24826bcbe49a3cdd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95aix.go
+FileName: vendor/github.com/kardianos/service/service_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95darwin.go
+FileChecksum: SHA1: 96e747f63f36b55aa4c65c385d75b492b0f4ecd8
+FileChecksum: SHA256: 5ba2c5b4c6ebd7ed011f75d84a0a758aec4cc613d286a0bd32c12b0bbdaf069f
+FileChecksum: SHA512: b422a8d92298d2c68c137ca04de3d2b90982dee4da02b88d2e50f7ee522c9b82b035b2fe96038150d00a5f7c7ac86ad50135a4b09933bfce241a1d109d15aa62
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95darwin.go
+FileName: vendor/github.com/kardianos/service/linux-test-su.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-linux-test-su.sh
+FileChecksum: SHA1: 0cd4cfffebe9a8c085e22c08d3b5c2fadf190db0
+FileChecksum: SHA256: ea99f0ffdf9bf6af5953fbba314ace974763e6629ebc9f4431d428c689a7914c
+FileChecksum: SHA512: c0a0a2b8588b93ca21903be8e798eccd15799b83bcc65e319625ad12d18510ac9b9fda68e57ffe1254076d03f883f5ab0dff0fd9ea59b0d02256565a644dad6a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-linux-test-su.sh
+FileName: vendor/github.com/kardianos/service/service_go1.8.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95go1.8.go
+FileChecksum: SHA1: 34bb27985319a8876c9dd287bd4fd957e5b88aa5
+FileChecksum: SHA256: c047704cf57738ba6bbdfa411bb3459b623c9836bcfc27f183548462be599298
+FileChecksum: SHA512: aeaf184c2649e11b64d61543b74e9f951130e884f5c88daea347fe646192fda4268cd27827d20702771240268f7a0420b9f55e4281b37bc6ee0907995fba528e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95go1.8.go
+FileName: vendor/github.com/kardianos/service/service_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95linux.go
+FileChecksum: SHA1: bf53af9461981bc55ccbc71f7379b60323719766
+FileChecksum: SHA256: 6912314837ae69e2c4357bfd14bc9f277da539b772af315982d7a3dd0b4ff260
+FileChecksum: SHA512: 06bd33d95564b14fc6348ead604facfa913f656235e90a8d91519289ac61539deb4db649d46e3dd94bc85f6364b2224ade6192b64a93cba9cff25cd111efde12
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95linux.go
+FileName: vendor/github.com/kardianos/service/service_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95solaris.go
+FileChecksum: SHA1: cb7a35bc25cb6fac283e39680e04a47f4ad5d99c
+FileChecksum: SHA256: 5f733f10125433683b7d9a0f33d61c361e9caeaff801cc4e0023712a4a78ca86
+FileChecksum: SHA512: f9e001f2fbfd6e64b64f642fb88dec5dcfccbf533057c8878492b9ccb986bdb23e71c46d5df1de8a2114facd405314cb200af490c807ac3fec8d8a25e30cb4dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95solaris.go
+FileName: vendor/github.com/kardianos/service/service_systemd_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95systemdC95linux.go
+FileChecksum: SHA1: ea70202f2d4ada9ef45c58fffae113f8e371bcc5
+FileChecksum: SHA256: 7a59d41516b617a0ccce88ed8fe15f7b7419ef82097bcc778802757d85b90c3d
+FileChecksum: SHA512: 899548bf5d9ba62621253d5788905fe0b5886017b6f24c30ddde5b63ebbea308a04ad19a16606a7b0102f9ef0f8715689c98be766d9a21dc6839e9644e767efb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95systemdC95linux.go
+FileName: vendor/github.com/kardianos/service/service_openrc_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95openrcC95linux.go
+FileChecksum: SHA1: c9261e92f6e9b3e716c881be6803a4bbeb5ecbe6
+FileChecksum: SHA256: 8343477910a5c6bc2de5c4aa9de6d28b231b5bfd9f4151836424344f2eeb32b5
+FileChecksum: SHA512: 75c8868bb7c303df389c3788079e11b0428c2d204aee43340b71679ec63da1ebff6f33caf598d5b5c7bd7f27ad852393c0a9759241c7f577b6600233f1e94845
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95openrcC95linux.go
+FileName: vendor/github.com/kardianos/service/service_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95unix.go
+FileChecksum: SHA1: 00e041b1529aee9215a7d984bd12ea2e7a9ee50a
+FileChecksum: SHA256: ddebc0bbb46a3b5408189c42d870b606b72e19fc35ad75512e00377a32a94608
+FileChecksum: SHA512: 0ae34f1daaa78ea01ac89d60012c1ac9310e8d6fcc7f58d0fafa5114efad7f23cb165b7e16a5830de75539cc7bf11161a5cfcc5a64fbbc3e3cac6d5071592272
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95unix.go
+FileName: vendor/github.com/kardianos/service/service_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95freebsd.go
+FileChecksum: SHA1: 1e8c19e904e843878ba1d8f517971f7333404b4c
+FileChecksum: SHA256: bba85965281abe3a17860c1a882d68d318f7c6da19b6c75e127c444eac4c218f
+FileChecksum: SHA512: 0dabe589d7b9b3bec4692c20ec5b9441e67d299343e0196585d8bb6d7ec6fdcbe4cd1f6e906407570f675171f1f3d0dfbb1aa28f842399573b64d8e45a8607be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95freebsd.go
+FileName: vendor/github.com/kardianos/service/service_upstart_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95upstartC95linux.go
+FileChecksum: SHA1: fbc1933187966e38f001d10dc412d7b8f9875e7c
+FileChecksum: SHA256: 4be54b492921308609a25f5ba7bc1a7d3b88bd1fc769b3e8a933f4dd995abe1b
+FileChecksum: SHA512: 61b11c63c46af0f7c9c95b14288f2d684e18cbb8eb2c4ff73c6371382e4f294aa78eb35a16bca2a1fa9944b205473fabd71939b53348c45396177e692469bda3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95upstartC95linux.go
+FileName: vendor/github.com/kardianos/service/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-version.go
+FileChecksum: SHA1: 3191af147f5121a9e550ce28b71f721236a2e456
+FileChecksum: SHA256: 14438b943cf5a2c0480cadda4678159c3f88e1d6f5d6c485d483d65895079a0a
+FileChecksum: SHA512: 02e7eab4e37eb73a89eef78fc2a1932ebd324bf161870ecbd8aca8e7061e8aef23396e66a8adef3ae9de19ae8264c46dc82de40157dbb9611d1660d11f19b6a8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-version.go
+FileName: vendor/github.com/kardianos/service/service_sysv_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95sysvC95linux.go
+FileChecksum: SHA1: 669f5e38f19b1daad70c0c5ff21553871bf4c563
+FileChecksum: SHA256: b750feff7b3cdca0526ec7c6a24eb14d611d78e1ca5f5cbd56b9ff2ceab46fb0
+FileChecksum: SHA512: 4d1d5397d9661784a583da4ad502c987bad8a082f9067b49819c0f896efa7d1e0d5a1c3c56117a459b64febaf98c9f833e666b29bdbbf3512d8749c4858da171
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95sysvC95linux.go
+FileName: vendor/github.com/kardianos/service/service_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95windows.go
+FileChecksum: SHA1: 96baa7b74273b75916694621a41e7fdf47b3186c
+FileChecksum: SHA256: 05e5d9cdc9fb717ef797f596fe2404c101141605b2006b890ba95a9071b57b42
+FileChecksum: SHA512: 5fe48a91b6ed2f4e1d0661f175838a67d68d92e9a0e937c64a6f8b30bd294d057a619eaf4bcdb296962869c542756d6b4a644afb3615f6ceabe2e75ebf5730bd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95windows.go
+FileName: vendor/github.com/miekg/pkcs11/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-LICENSE
+FileChecksum: SHA1: a347f428584b1ae13a669c007351ba7885597d59
+FileChecksum: SHA256: 8e069cdd54eff0e36fc8d9aa5d945b3f00a0ea349c8ef2c7f4b88f6e2be75fe8
+FileChecksum: SHA512: 0fd41878d6fe4e7d3efacdf35347ad35904c77f5ee0e69954d12593ae0dd527387ba01d8372925296a21d99e107bcd2280d3e8f7245c6e8939258d642d6c119f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-LICENSE
+FileName: vendor/github.com/miekg/pkcs11/Makefile.release
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-Makefile.release
+FileChecksum: SHA1: 95bf12fe1ab4b3a3e766d49c8e37d7e6cbaa71a7
+FileChecksum: SHA256: eb39e09c0871e29e0e700f8a6383eade3895845b46d2c4defb057fcf68ae9d57
+FileChecksum: SHA512: 47a40f1113077de151102bd91cf8ae133322d237208407d00c767745dee34b9d4030b9da0b503f0a1e058412dfb986f0f5a5a307cbdcbb0c6c596dfee3d2c23d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-Makefile.release
+FileName: vendor/github.com/miekg/pkcs11/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-.gitignore
+FileChecksum: SHA1: 0ee5775bbb41a26d35e4fc5186ebfe45c2c87f2c
+FileChecksum: SHA256: f3d04d16281b3dd79db526d73a81aebd43d56727f5b2a8becf38e0c8b155d590
+FileChecksum: SHA512: 3aa8de2db628249780b051cd813ae0fd6f9128bf911d7b17b915a3e05c8b6c9e5308966ff2f9381f4f6de676dbdcc56f7b83d2ec78fc8219e74253361ec03040
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-.gitignore
+FileName: vendor/github.com/miekg/pkcs11/error.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-error.go
+FileChecksum: SHA1: 581a1f4d7e1b5b644cf022d7e855a468ad6c5eb4
+FileChecksum: SHA256: 3026f9696c3782a8961dbc422c92813b6842f7b920f1c992626c242d57fd905e
+FileChecksum: SHA512: 9e81098acaab0a066083c5b4582f085442f58c1bc53acfb279b834437b246008c6fbe184ec5ceff7b5ce8dd38141233dd0d9227c0a960941258dbc3827165b8c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-error.go
+FileName: vendor/github.com/miekg/pkcs11/hsm.db
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-hsm.db
+FileChecksum: SHA1: 4e37be923b0de60c164255916f7b4815ca23649b
+FileChecksum: SHA256: 1c00b9cab55f6280e4e647832d151bc88eff131a9e65d260a1865b16c2c24ac3
+FileChecksum: SHA512: e7668495d87d550ac48df43dc195557389d8d2af08e922fcb17c366c8289be12258863fbd92f4868415cb562e4657fa66ef3a74a462a92fbaef03eea1463bbc7
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-hsm.db
+FileName: vendor/github.com/miekg/pkcs11/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-README.md
+FileChecksum: SHA1: abfa39f613655955e038f0da6b62f4fc7917dd25
+FileChecksum: SHA256: 18d83db0f6af32ca6627b9f0c808c391ce6b27a30e93d4b4a6d73b16dd75f96c
+FileChecksum: SHA512: 276edba6a2f95ad0b2d9eac6b27fc526b21fa2b2827eb60d7869e03690ee6ab1386d7656f96c57d4f3ca0e731eb8e463cd86a00d06482395bd84d0a4b66b21bb
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-README.md
+FileName: vendor/github.com/miekg/pkcs11/params.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-params.go
+FileChecksum: SHA1: abd5f730853917ee6209b84b1f94368d74b64d0d
+FileChecksum: SHA256: 9d47d2c17e9f740494ac53d6591e09d323d2a55161ef64dbd269d1e19f613571
+FileChecksum: SHA512: 52966a48d18cd398fb0518891a3d8523a5d719b266e73b7e52bac5e2beebb70bebba51c664c210e26523441d7994e316708888c69721c62b1fd75922d20d4b1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-params.go
+FileName: vendor/github.com/miekg/pkcs11/pkcs11.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.go
+FileChecksum: SHA1: 1a51fd12420e17446872b3a938c110739bb5712b
+FileChecksum: SHA256: 5526f04171876c4a5cbe8e0791cbbd91ec0680581a19c1e1b8e45383b17b93b5
+FileChecksum: SHA512: c856b2faf1e82473e67e7d1a35488449fed00337f509e8b4c221cc487f56f8ccda28be4af2aee278fe9b45e811d96e7aec2120efc819b79d1641c202b4263779
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.go
+FileName: vendor/github.com/miekg/pkcs11/pkcs11f.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11f.h
+FileChecksum: SHA1: e75b76f6c0ee7e686f07525e929b665993fdfff2
+FileChecksum: SHA256: a85adad038bfc9dad9c71377f3ed3b049ba2ac9b3f37198a372f211d210c6057
+FileChecksum: SHA512: a6bbf3910deb122d7be88ae1af98d25cd66cccccd957cbcc02c740ba59e7d2eeb23f9558477219e69197ab1ecce9a90724244891b13bfed875b1032c8ab96b3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11f.h
+FileName: vendor/github.com/miekg/pkcs11/pkcs11go.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11go.h
+FileChecksum: SHA1: a8da4cbcb916178f303c49f968c84783ac4513e8
+FileChecksum: SHA256: 264876981b3074540b8d198cdc2f0a8d9cedd663ad699e6832c535ca92c77504
+FileChecksum: SHA512: 8e40243b0ab36da639b3c61fadb83ab3bd7d1cb1e3bfbb5b1683be0edf9237638b6b3acdd7c06fb5c20ca1b0d14e7f91f4deaaac325028472d36bbdb6d997c28
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11go.h
+FileName: vendor/github.com/miekg/pkcs11/pkcs11.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.h
+FileChecksum: SHA1: 1b03c80c5e68f2f82c580843906df41ed5c6886f
+FileChecksum: SHA256: 8bb7aa1aeaa328b6a39913070d6f3d2bdeb9f2c92baf27f714fbb4cbefdf4054
+FileChecksum: SHA512: 1e7ccac2daf67a297c9d4917064049afd0070a8c76dc7a4599d260ad1d6005093be597a3f87038c56438184fa2b30c6d5ae0ba54c95d183c96660a12bb0deaf1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.h
+FileName: vendor/github.com/miekg/pkcs11/softhsm.conf
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm.conf
+FileChecksum: SHA1: 11f89d095e74484220035d687c7f7894b01334cf
+FileChecksum: SHA256: af9d74f91e4404e144204e8ebb8fccb00451f70c2dddf0174f2344a80afa2a40
+FileChecksum: SHA512: d9ccc14e369830b5176ac595adc7091dcc80b154e00616647e99693e2d96216d6902f47f206a56d3cae5e672b1cab22b6af8b1660dd1a88606577e2603927ebb
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm.conf
+FileName: vendor/github.com/miekg/pkcs11/softhsm2.conf
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm2.conf
+FileChecksum: SHA1: a23faa170dbc2c50a28915202f7e4f1c178a9550
+FileChecksum: SHA256: 6e97a1bb0d055eed57919beb47298305a82b03090871f05d7b7efd841e4b810b
+FileChecksum: SHA512: 2fbfa86f6d07b76041126403928483f08dfcde8c185589b57c4fe6cc4da2e2ba4247322664f4966aed29d2ac030a5666dcad62c9adbdfefe671523f516a74eb0
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm2.conf
+FileName: vendor/github.com/miekg/pkcs11/release.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-release.go
+FileChecksum: SHA1: ff634917fd425790553669082f35b5f79f8bbcf3
+FileChecksum: SHA256: 8a5eec111db252bea24056303e21ed670ad1928d6e9073feb2f3522521e942dd
+FileChecksum: SHA512: c6acb4235cfbdb03e48e371966cdd891e3337d2d2605ecc847e9a92c281c90ebe309e042935b3ecfb4eb95858147db5273d589ea2d8886c0de9f2d6f02daa6e6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-release.go
+FileName: vendor/github.com/miekg/pkcs11/vendor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-vendor.go
+FileChecksum: SHA1: b421c29a9c77c1733d321a79ba378b3ad1c24652
+FileChecksum: SHA256: 19e6daf7231cbb0c2536a809f53ddeccf841a4094fe16665fd5e24ab278b033a
+FileChecksum: SHA512: 1992e13aac1ce0441040de360fea620915f5d4123cc75856d206ecdbc15ba44fd87a4836955a8e53cb6fa829b65a0fe5f7c7663b00bcf5641bbacdfb6ab13e06
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-vendor.go
+FileName: vendor/github.com/miekg/pkcs11/zconst.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-zconst.go
+FileChecksum: SHA1: ad2b5f71c2603774370877722c3f8dadc6108f40
+FileChecksum: SHA256: 50bd66b68ea070cc23fdce25a01cda62a042f374ef5e81b7730eabadb03c6295
+FileChecksum: SHA512: 195e43679ee17c09e49914825b8a74193ed00cd6be1d131112fbfd8b9c0d4b3ef5d69f7b0e168c55dd99437c4e26b8c3507ee311fcf9e0c6103e14e6adef37c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-zconst.go
+FileName: vendor/github.com/miekg/pkcs11/pkcs11t.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11t.h
+FileChecksum: SHA1: 4605fe2f58315a7384d60e6c99815504e6d586fa
+FileChecksum: SHA256: c7c9b49add3f53d77ebcd0e23b37bbd63388f610b02e68d185bc37f4b37c344e
+FileChecksum: SHA512: 042bdf604b0555c677627a96288612ab6e5040b73a76c3fd744362b1261c014767cd7aa00597168cf0a703c8f2551f5ba8fe8938a13a2b5787ac0700d36daf61
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11t.h
+FileName: vendor/github.com/opencontainers/go-digest/.pullapprove.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.pullapprove.yml
+FileChecksum: SHA1: e5b82139c0590739b59e052e4d35804dca51c671
+FileChecksum: SHA256: fa428cea557dd43923fb5f8338c49109e8f320bfc4d62d4d7dedee75889ca59e
+FileChecksum: SHA512: 89cba5b2dc3240fe3e8f25139860fb96f48291c93e5b02bf4f5d12141453da8f7c649544c0a15ccfc0db8a5fd7deac6d802fc2284acd148006e022e82c007b77
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.pullapprove.yml
+FileName: vendor/github.com/opencontainers/go-digest/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.travis.yml
+FileChecksum: SHA1: 649ec88efe5da849a24952bc46d387a86ef5ca44
+FileChecksum: SHA256: 2ad656e0e1ebbf6e2fe44cf2041b1b52f6f32d2c7fa8fc7db4aedd80596ade22
+FileChecksum: SHA512: 46e6866af864e3f5df646ef035d977fe654c2b3614b30854546443ca4f5e06ce5da66fd6f59e28b91cf71fc8cf83b60d543cf479300d17cc2bdd9fef1365ec5b
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.travis.yml
+FileName: vendor/github.com/miekg/pkcs11/types.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-types.go
+FileChecksum: SHA1: 60905ec0e6e8c1ee71d994015c782d0f95f7848c
+FileChecksum: SHA256: b8b02829c01f19cc3244773da445f05c19ab13e1a76272a48d42f891a2230f6f
+FileChecksum: SHA512: f9757e8e4999f11382b5f613c81f5b58bce85304bb3048855a52edb80bf63465f813667f5ffedae5a62cbc599a78a3a623963ae263beab48003ca78334c2444c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-types.go
+FileName: vendor/github.com/opencontainers/go-digest/.mailmap
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.mailmap
+FileChecksum: SHA1: 7464174afba16efde500e0b4d5ced8e375858a7a
+FileChecksum: SHA256: cfd835322593a5a80928b33a999801d7c3ec982f18c11b30a126b95f294b268e
+FileChecksum: SHA512: d48a262f6147ba6c43a4c3a9adfc9d8c41b6c79d67485d7947d020ce106390aa20206e2d4fc125040c9cfc4974e88ec324fdc6bcec6a8af0593db8f8820ba1fc
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.mailmap
+FileName: vendor/github.com/opencontainers/go-digest/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE
+FileChecksum: SHA1: 93ac97c9679b68518f1fd7de627ce2f77f44082d
+FileChecksum: SHA256: aceb55133c41c50c2e170c5918e301fe74f592d0f28724bf2f7a7bfdcff1fc5f
+FileChecksum: SHA512: 6e87e801e4f5fb306f4a3eb4b8611b11e32bc882b61aa2e65d6cd4bd626dd2240c671459adab98336bc69f7dae099d6d46dc97e7430d926f11a6227f769893df
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE
+FileName: vendor/github.com/opencontainers/go-digest/MAINTAINERS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-MAINTAINERS
+FileChecksum: SHA1: 10c0540aa14e761af81bbe9a12d9bd20ea7c236c
+FileChecksum: SHA256: 5a0a021201181cf76ea2e4da630ee132cd38d9773f9c85ca8aff900722b6224e
+FileChecksum: SHA512: 23493b4ffe006a61631ad8edb429e87e46f3d1b97bb9a0e9079de06eaa1893e0082ac84d5cbdb2d1c6c58769d92b4e326b3c5e21f8d283a568b25c827f7e1f0a
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-MAINTAINERS
+FileName: vendor/github.com/opencontainers/go-digest/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-README.md
+FileChecksum: SHA1: 6dc19e11efda1a1c3e889aa25ff70d11e6d7e495
+FileChecksum: SHA256: cde5e79ad3a2c65cd30a5df53b0f990480ab632e9305065a8162ea204d7e297b
+FileChecksum: SHA512: 802b5511184a92addb889724e8331130b3a34284bfadebe9bedbc40cb20bcda1e1d3a1b489eb030bbe997368bc85ea17c1929185ce750694fa0493183d7830de
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-README.md
+FileName: vendor/github.com/opencontainers/go-digest/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-CONTRIBUTING.md
+FileChecksum: SHA1: 83f0b7ac2d336b0244a51bbeca029de831329ff1
+FileChecksum: SHA256: fb512f2ece90b27f3ad91b418c5c5be33a81411e8308b43a83f9e6347742fe08
+FileChecksum: SHA512: 5e9f5e9c42a605519133cbd2ba91f7131870370a7afb1470c24393a39a01199ec71f9702173950594b8aa453d824bb4bfe2f6492b2e3cfe4c33f1742456a922c
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-CONTRIBUTING.md
+FileName: vendor/github.com/opencontainers/go-digest/algorithm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-algorithm.go
+FileChecksum: SHA1: 89f16c46a4c90553f276a637d48bf388dc4cc768
+FileChecksum: SHA256: 08686864344716dad0e1b8192c53113768cf1d226947fa6d562600cdcd5f947f
+FileChecksum: SHA512: c2fa821294ef290e4c07bdf07886acf1e9714c5734456c996e5184a8eb7c995fe3a436258a3967a8a9a1d87f1e3000934d95f0e291e941f66d646fac0584a924
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-algorithm.go
+FileName: vendor/github.com/opencontainers/go-digest/digest.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digest.go
+FileChecksum: SHA1: dcdf7bdd6269697ef6e3920861c7c0a2259b080f
+FileChecksum: SHA256: 95c0eeccc1f159c4086480a10900d622ec8319dc3890e679cd6079e98f55e35d
+FileChecksum: SHA512: 5e5b10e81a1fbc16309beafa5118820bd08dd61f7129fe18e7806a204794e9379d227d3eee721ced90320bd268597bb64449a363a91a0e29273ec920bf7a551e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digest.go
+FileName: vendor/github.com/opencontainers/go-digest/digester.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digester.go
+FileChecksum: SHA1: 4cc769375b8a7f84c8be5935e5b61925fadd087a
+FileChecksum: SHA256: 5c4574e0855ada2e71e4672700485807b4f507c2c8a9f79c700969fbea4915e9
+FileChecksum: SHA512: 1c91fde49a23101e1dc1ae1e0834eef7283795e97da29d3cb3cd3438d32c2c10779cd87f872f19a7e6cecb55d25e68d8f8832bc82936a5bc543afe12fec9d61b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digester.go
+FileName: vendor/github.com/opencontainers/go-digest/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-doc.go
+FileChecksum: SHA1: 15e32f78c0b8aad4943c5d30aa41b6123acd786e
+FileChecksum: SHA256: 7628099ea90a7c9f9fa2ee462c62dfcb9d6eb47a55f10ab53638bafc0c866f2a
+FileChecksum: SHA512: e6bcb90cd09e62b889673945f4384fd3fa7f4c4c1886ad3a259141d8a2426820fd64d94481d6e2b0e8f3e6a2df7deadb3d8d85a40392710b85074efaecb2b13e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-doc.go
+FileName: vendor/github.com/opencontainers/go-digest/LICENSE.docs
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE.docs
+FileChecksum: SHA1: 979fd7d5c67073b265d96f584aac3de1c419b8e2
+FileChecksum: SHA256: a1d1adec3ba691ef6e377a78bbe9e9e2501f2f4a1723d08857da1ac6564e4fed
+FileChecksum: SHA512: 0de1f757b8c3ca45d267da63f95e058ece029e9ce727ee33b89c8eda98e356a0e9b928d7316825c30fdc2746c864ff3fb81c224b6c8da7ae5fd11bfb2d8e7878
+FileType: OTHER
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: CC-BY-SA-4.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE.docs
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/annotations.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-annotations.go
+FileChecksum: SHA1: f3aee2f4608633ae2196b692e22e481ba6b8ee75
+FileChecksum: SHA256: 7e15968153a0b6cd1362f6c32496e4c8b401f0265337331476cfcddf22ebdac4
+FileChecksum: SHA512: a6cebe370b7510521a104e39e599e9d67b9b469b6ca8c582c9955d24ff6840d73646bc333c7e75fbbff090cd6579db3e2022c472a10c512b8a31a29557427f9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-annotations.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-config.go
+FileChecksum: SHA1: 9e374abb32ae7c8493adf962d425726f95313a38
+FileChecksum: SHA256: 53a0c247505e9288242594b9b205ad4edeb728d96b9d500c377e42700ae25745
+FileChecksum: SHA512: 6dd55b1b5ea833243445bcb7ba3df7fe9e6f52e72045afaf935a3497db9e685c925b72359b5ea7a13d1285af869582d4f535929b3db8688457e09bd48f990389
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-config.go
+FileName: vendor/github.com/opencontainers/image-spec/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-LICENSE
+FileChecksum: SHA1: 298850a6cdb155f54cfa44641df70b36228ed031
+FileChecksum: SHA256: b0a3f39513927db306adabea11d14c23f079d4febcea241d123a68d1a0d45418
+FileChecksum: SHA512: 01379f3c8874dce084fb767d58563b6f1e15801e4849969002ae26a0c64dfa1dc01211be808a47f928296bb73a32d071d475e3610c37d01ea7a8b4e4dd7112cc
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-LICENSE
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/index.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-index.go
+FileChecksum: SHA1: 58301da2fe1b34da9413ebf6dde9f97b0e38a159
+FileChecksum: SHA256: 7cfabd03a310dd40c39d1a876d31a49286d72a9f11df132c75dab348dbc94889
+FileChecksum: SHA512: 8aad81a4e89d2c847a4c3b03c5fd4ae15125db5be136f997a7986bf88e47b31a4e1dc2ac73297fc98aff7c9016007a9ac91bb307055336c3b71ca10b154fa644
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-index.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/layout.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-layout.go
+FileChecksum: SHA1: d6dfc4880b07ea6a1703114ca7bf05a8c129fad8
+FileChecksum: SHA256: 8c0a1f3079a5c97c647df76ddc86a39e9df260e58a5ad7dab6e3fef11a051f84
+FileChecksum: SHA512: ea82e1a5d1671d2aa15ee816ab0e51d2ee92c638d24818f5d916b5082e73a3b75e590acce415baf86e82cfe965e55c7fc5b02cc46061a0bc0fe907448cc0c8fc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-layout.go
+FileName: vendor/github.com/opencontainers/go-digest/verifiers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-verifiers.go
+FileChecksum: SHA1: 53da9ea45795d03d78fb8affd5b890d68d0c81c6
+FileChecksum: SHA256: 34322216519ca4b78afdbf629e6536cf27bc7eb40adf5d1e1c1f77da5cbf38d1
+FileChecksum: SHA512: b5573a558ef6a03a914744a2476ab8c95a52bc68e3d75d0ef52d23c2d29aab50f2765c86c7aaaf90f6ab0045647cb3edaa33bad6c9ccf64cf85c757b7547c196
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-verifiers.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/manifest.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-manifest.go
+FileChecksum: SHA1: daefd51fb9efa604ee0656887b44ed461aeffb1e
+FileChecksum: SHA256: ae938729e5b9d4a21712a3b621d94e3284681ffd2d98d0f5b86b1b89e7b458be
+FileChecksum: SHA512: 17fd7822adaec30cef389933fe3eb22bfc006f38159fe67cf142f80b06a97f2ceb3452214292b6ff6e50b561f4abc655f12be8aba007d16019bcc88a2c5c1c64
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-manifest.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/mediatype.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-mediatype.go
+FileChecksum: SHA1: c75bd53f5ecb998fa44e55fcfd9d8bb28d9c3a0b
+FileChecksum: SHA256: eb43e04d3adc97e3eb604d4ade6615a6835d5881b6c1dfa4622781b77a95cf38
+FileChecksum: SHA512: 7bc2297740ed616282b91d886654820707ebc94636a2eb128e8ce41f8e4719e7710006f433e4094a79abb26592143a094c8cb8b14c2d7886289567feebd50633
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-mediatype.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-version.go
+FileChecksum: SHA1: 01866d3b0e116f1c987567d785da434532d59131
+FileChecksum: SHA256: b11ae6d0ea79c955b23831f856647a1af6a9fc9b40f2a2dec9daa467afd97c4e
+FileChecksum: SHA512: 6f859b8af60362bc07857de8eaf872d7c95df52fc20fe0f373ed15828b326878c660e08ad90d4e15d0c202f55437eed71f3a7db516136f3e413b08113275b964
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-version.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/versioned.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-versioned.go
+FileChecksum: SHA1: 5eca66943d6b2f3307b0817ad4f2e02c8ee9ed80
+FileChecksum: SHA256: f77b6fc9f0f79877adcb66f0b2d175df1c5690664db60db8920c812e91b422fa
+FileChecksum: SHA512: 453d441e1fd590b1602f39b3099cfb773a177e048bda59ac238f61418c00c20e2f8f4ddb4e1480dcb3fa0d1313bb2c7e44e46e4daee41d71eb720d7836466533
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-versioned.go
+FileName: vendor/github.com/pkg/errors/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.gitignore
+FileChecksum: SHA1: d9a6d2ae7e2add88179e429f787e6a5b2c7b1133
+FileChecksum: SHA256: cb568f716e3315bcebfc75bbc274b56577c2734ec3da6729ffac15919f416240
+FileChecksum: SHA512: 2bb81143328929299fc309960108c9fb7ea45410e0f1904cd30e8ecff02f75c531997facb35cec5be600a9fb635e9fad24fc81abb12a5d0e97289a99124bf4cd
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.gitignore
+FileName: vendor/github.com/pkg/errors/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.travis.yml
+FileChecksum: SHA1: 90856f3c6dd6cfebe6faf3d1970d3b7678c0e3e1
+FileChecksum: SHA256: 94b59f3214367453c739d213f2147c342397bce8d2933f275dd0f964848fc564
+FileChecksum: SHA512: 802b5888cb767863d1f30805b1e22ccb7fac222bf6d9a00c8238ed078f992397e8c4310f746082fdf9b6e303b287ae760e0d03947478f067c5f696d2cd8e2458
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.travis.yml
+FileName: vendor/github.com/pkg/errors/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-LICENSE
+FileChecksum: SHA1: 9c1bedc0d42f24c24a1bd266f3ce101a4b0579fc
+FileChecksum: SHA256: 8d427fd87bc9579ea368fde3d49f9ca22eac857f91a9dec7e3004bdfab7dee86
+FileChecksum: SHA512: 76bed8bcf00ae10c0611bcc4c3a569b991382ae58d8203fc462d0105064979dba584269e7a7a84b18aca0b6a07ace91c05ecbb42ce64cd3c887f8f498f5d9bac
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-2-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-LICENSE
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/descriptor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-descriptor.go
+FileChecksum: SHA1: 5710b08942cf528a4a963d21a8a69a7c6d507977
+FileChecksum: SHA256: fdc32dd83b9912adb1f534e89a1e6c46164fc0bff4aca9162bc386b6ec0e1b3b
+FileChecksum: SHA512: 1ac09198e72fb66b4f2fd367c151f4587f6980fa406e5edece5aa4ac6707ab24329f49abb5bfd150adfc129f057915672fd86b0164a10986a8787c57ba9d597a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-descriptor.go
+FileName: vendor/github.com/pkg/errors/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-README.md
+FileChecksum: SHA1: b653bbbcec0e9c4d6b9db4e338d688ad618d4af7
+FileChecksum: SHA256: 05f05fab4a6768d101da9f87b3ab341a1ef02576eb1d14ca39965658b0ac088a
+FileChecksum: SHA512: 68c936de7803f85d7c0c89413f46f4c82c1e5d16fe0fb0015d9955e3c05d4fdd7432d5a60c326cf175702dab3361a58525f0f725ff81d762af02cea34899d632
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-README.md
+FileName: vendor/github.com/pkg/errors/appveyor.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-appveyor.yml
+FileChecksum: SHA1: ec0c79adcfaa68d65dbb62cfb67c5ee5fdfcc8cb
+FileChecksum: SHA256: 96ff26845daa1898b920e87d9773d851ba9ead739da89149b56cf37dec7e647f
+FileChecksum: SHA512: 48baec84da66a723eb9d2ac5b07cc1e0b1f100bbdee9cf0cf2cd995f7e6f2372bad016058b42e0d48a51c564974138769bc294b0b8b851c0786e27ff4c2b18d0
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-appveyor.yml
+FileName: vendor/github.com/pkg/errors/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-errors.go
+FileChecksum: SHA1: b29987acb2f9aea4f2407ef877f71553173825ff
+FileChecksum: SHA256: 1b60ba5bcb417f0060d1c1fbcedaa1a702020499094ce8134f8b45a58c0ebbff
+FileChecksum: SHA512: d2311f1e9d275150c221f0bc3300b55c79a1338dbd380404562b74f755a378c47574be49e8dc8f3453261ea5156967d26b2ebd6cf78cefddac5a603f82bb1019
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-errors.go
+FileName: vendor/github.com/pkg/errors/go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-go113.go
+FileChecksum: SHA1: 1e08ef88a6199f8299330103663af1d10b6c917f
+FileChecksum: SHA256: 376074468c446254f347c884cd0c8137aae395a7a30fabb06ad19f211ba04d47
+FileChecksum: SHA512: 2d6ef8c11132242f50e76c9cd1d6bdba85fabc0743020322310fd60c5082acd8661101422d8448cd4359d5145893f489c33868e6c987c6d15d02e812e76c4a0f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-go113.go
+FileName: vendor/github.com/sirupsen/logrus/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.gitignore
+FileChecksum: SHA1: 63d53f0681bd8d9e47191fd302719af3208a5ec1
+FileChecksum: SHA256: 17aacf0ba3e8284058560b936a77f5dff0ffa8104815523bf14c2f5af719be9f
+FileChecksum: SHA512: 9ca4639d8819cdbefdc8c8355eb61b85111b8d7910ded78cb8f932c7ba5ba680676805693803888fa30dbb63f54516acf28a70cd1936c4eadba3cd97027a9da3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.gitignore
+FileName: vendor/github.com/pkg/errors/stack.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-stack.go
+FileChecksum: SHA1: e5e9ee8d35b9a3a82b0be971dfebcd87c47e14cc
+FileChecksum: SHA256: ee30b2b9525acc7749abb992f150e6d5673c63c1ef8c30620ec70eed11abec35
+FileChecksum: SHA512: cb0c693e9068abc0dc4c1ee2bfff7b9c3fb1619efab49b1d2704f0178dd1d6f642de819aec6ad12c648e6f2aa94033d53a4e4896da7606fe7c122b2c91ed7455
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-stack.go
+FileName: vendor/github.com/pkg/errors/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-Makefile
+FileChecksum: SHA1: 1bea061d36366e37bb529178d93a40d5feb70b63
+FileChecksum: SHA256: 5cf1acb1821fb8cf033e95c135e14b42fdd0e2feaa30ebeb351fec4e3d2db621
+FileChecksum: SHA512: 4f72dea88618cbb654660755d429b1f9e81702b2ef2bcc8de0d8e9aa6ef76be2202fd9823d0bdb9f6e42361bd830a01d3ac88f4bfc62772fc3c4bd440a0cdaab
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-Makefile
+FileName: vendor/github.com/sirupsen/logrus/CHANGELOG.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-CHANGELOG.md
+FileChecksum: SHA1: c4bee55732818ab7eb6014214332431d8a3bdeaa
+FileChecksum: SHA256: 0db9c7981268925ad3b47d40bb99784b49b3a3aad50e59cc7d6fe40276f3aa29
+FileChecksum: SHA512: 18aa49a116725940ca37336ba11fb14e16915027b04f6ec5ecdfb5e9f93a5af5a0512d9185eccc4608d19153fff357b9fad019e297a5d8368462e39f6542d16f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-CHANGELOG.md
+FileName: vendor/github.com/sirupsen/logrus/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-LICENSE
+FileChecksum: SHA1: a1c7852c717fed2c9a0284ed112ea66013230da6
+FileChecksum: SHA256: 51a0c9ec7f8b7634181b8d4c03e5b5d204ac21d6e72f46c313973424664b2e6b
+FileChecksum: SHA512: d77d69b38af0b61d4ec0cc68842682e17c2bd1cf92f1784a9406f5075fcc4038f17ea99db5813da0582590e7486544c25ee6a09b508e87cf8b3a13291a0e6f63
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-LICENSE
+FileName: vendor/github.com/sirupsen/logrus/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.travis.yml
+FileChecksum: SHA1: ccb8cd85966d8178bb786e0d2fc7147398e456d5
+FileChecksum: SHA256: 3ae07eace04482a941a7a4dd69930f9b13af96d740b52b9411c496a0ea47ff96
+FileChecksum: SHA512: 729769a95af8d142308c28c3e6730dfa31b4b9c268fbcd656bbcea678a9a1a9bad7b6bf955a56dc2cba9f3aa2ca091eb20bac58f3b528061132285f811647864
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.travis.yml
+FileName: vendor/github.com/sirupsen/logrus/alt_exit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-altC95exit.go
+FileChecksum: SHA1: f5c33ecddb830c33c20b0f308786e02fbb6bfceb
+FileChecksum: SHA256: c844abfe101bece1754d8160b573c8b029ea9fdd2c0aace86fad7a0667005fda
+FileChecksum: SHA512: c0ce5955a93f8b6b227acdf44187ffb8df1a657925dccbc984745ec324deede5b64714dcf1a069f9e012fdeef3a9655366d34348390ceb87e2cb8b3b2eb7bd53
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-altC95exit.go
+FileName: vendor/github.com/sirupsen/logrus/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-README.md
+FileChecksum: SHA1: a46adda13be793cd3cf86a64735d836be5e9ec1c
+FileChecksum: SHA256: 3352462fb180bd23e721bd11fc842aef4c6ac42c3269d1155b20af15ad463136
+FileChecksum: SHA512: 44cec056c3090526c676df5ca4b4b46a5bedd2608c9cedb5f58ddd4b738a3e6fd364eb3b0930e44c02d45c0b813e0a6e300ad09ad13ffd5a268606deecbde484
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-README.md
+FileName: vendor/github.com/sirupsen/logrus/.golangci.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.golangci.yml
+FileChecksum: SHA1: 3e9daa2dca055e5ac7939f75e4bc2f8677d617e5
+FileChecksum: SHA256: 44af0386239e14a06aecedb1a0ac247fa88fcdb3b65b6e74becaa5219dd13cf7
+FileChecksum: SHA512: b026dd9a036717af0b9cb1221c3e308628a5963fe6bdf78d0ce761973786a8a1e85a2b4919e456c207a720f9a5554e600b7ebbce1bb9393f1c29ed36b0c45ab8
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.golangci.yml
+FileName: vendor/github.com/sirupsen/logrus/buffer_pool.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-bufferC95pool.go
+FileChecksum: SHA1: 1798c2370772df6408e4894055fd674cbf85ecdb
+FileChecksum: SHA256: 025641277148cfd7fc8e479c73f2b486f8b98ec6d3b449e98e2db0aed28247b9
+FileChecksum: SHA512: cc1549e3aac2f36c57382a538b4303f2be05e44a16423c94f0815ec9c3f270b30a3da81a07a8612cf5a0477ee56452b5df7f75ebc14cd6af729aa0a84c9a69c2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-bufferC95pool.go
+FileName: vendor/github.com/sirupsen/logrus/appveyor.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-appveyor.yml
+FileChecksum: SHA1: a4fc79b1cedfa65375761c9f83b8263b3194a954
+FileChecksum: SHA256: 9164dad38a262f17c041c92744dbdd6b312430de1568c302f18d1eeac8c906cb
+FileChecksum: SHA512: 8e6e162a29feff3a2854f712c886175d29282208032b570c8938d4f46d01885947d3ad039ee6b697ef154a7d82ca57a077e1a0b082a42fa19e4efa86b4362d29
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-appveyor.yml
+FileName: vendor/github.com/sirupsen/logrus/exported.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-exported.go
+FileChecksum: SHA1: e838092d920533c2e836a39104b99f3154a0fea7
+FileChecksum: SHA256: 5525c2eea1b6c070b961e638fc5fdfb30ad1a33ec246d21ea73d5b46255d6406
+FileChecksum: SHA512: a0493c3d5743a0cadcdc2db001fc4ae7252cac9a22c163157bcb00626b175b8337bda0dd265f51cf8a554b2e66756787d9ead59239dd43f87a10574cf949096b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-exported.go
+FileName: vendor/github.com/sirupsen/logrus/entry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-entry.go
+FileChecksum: SHA1: 994ae192bacb84b5e485647749d988730ca9f7dc
+FileChecksum: SHA256: ec9b5edd0bf9be078386886f998577bbb5883042ff66b249436b8a682d5caaa2
+FileChecksum: SHA512: 0df0a4884e9a2154e892845f7ad95afa840022214b6b8184fdcfd8f49a4aec57630752455a404dc5ac73cef9663f03be9c15588080b05008c9dc5b3ac3b5d9ae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-entry.go
+FileName: vendor/github.com/sirupsen/logrus/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-doc.go
+FileChecksum: SHA1: 21508af92661078357c4f0a7608010e6f7cc8277
+FileChecksum: SHA256: 0efb7629301960d88e1e9e32e7b69391c21e9639d21b276872f0cf69051d11a5
+FileChecksum: SHA512: 6bd55dc9d98550a334dcd086a79247969c2e2c4c9fa82f4d374fa37b3960d4182278eba88ecac5bee1c3dc52800ea8ed068ca016194c7f4d2a5e1dfebdfdc1df
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-doc.go
+FileName: vendor/github.com/sirupsen/logrus/json_formatter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-jsonC95formatter.go
+FileChecksum: SHA1: 3e8bfd827a58d001de4eeae08f11be6253557975
+FileChecksum: SHA256: bdbdb3c9b1c47763986fbb226a410b008425d5cbd4a9042af750674edffd5cfd
+FileChecksum: SHA512: a3d0ca04c0c14b9d0d70f8969f98236bc676893486e884202431b288f28b485fb4a881488a819a0c1df5848e678f2ad9d035faa103f6f66fcef0069266ec7f1c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-jsonC95formatter.go
+FileName: vendor/github.com/sirupsen/logrus/logger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logger.go
+FileChecksum: SHA1: a65085b6f8ab3fb38c4e240a62f93099a66bbbcd
+FileChecksum: SHA256: 526975220bd2960cfbedc7f87d1666a53e774f920809cfbdb906727d9e1722e8
+FileChecksum: SHA512: 6f8d7bcd0fd6216d29da18f719b7c4f932c14f5b3ff9067f496e877204b06a7d56407d0e7b4917e451618269605d178b5dcbcd516f004b3c21c298f3f75d7146
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logger.go
+FileName: vendor/github.com/sirupsen/logrus/formatter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-formatter.go
+FileChecksum: SHA1: 0a0c7633c4d3fe70d6d305751f30c7549c0b3a71
+FileChecksum: SHA256: a5946d1302067a39ee0420ebdd28edc361846ffbbd9d19b812ca4e53426eb3bd
+FileChecksum: SHA512: 34a126d6fcb144d6baa42a06bb9e56af5aa205e82dd062f8b70011687c577e75e9bbabf672ffb06a55da4675bab949ad8626aaf2f9c7fed7ab9331c4f1bce376
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-formatter.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95appengine.go
+FileChecksum: SHA1: 4f73206a20a3e4aef48255ea1e934253628d036f
+FileChecksum: SHA256: 0bec9217c0bb3f0f6643827edbe15bd912e9d3946678df59d54f7c9565dfa82e
+FileChecksum: SHA512: 732c7eefd605e92c7135402b516b17548cf884bbf524762a7b9bcc83c3c24460e77d6e527d2a3aef01703360a3b514756e6d40f02997d87afbb06d57501bcfd9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95appengine.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95bsd.go
+FileChecksum: SHA1: 0c5da713b350950e8ed8e217a3ae93a669c661fe
+FileChecksum: SHA256: ca5bce79fff97e9a6a95d629d15d53d86fb94f84110448f8912e373c2a67cbde
+FileChecksum: SHA512: 9209f080958b4db66893156a766cd2c2b81d4d1db8856a815dbd02cebf29957f71face542398495482015dc9228391bb21e0f1a43224414fd228091809ef4e74
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95bsd.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_js.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95js.go
+FileChecksum: SHA1: 6da5924b3b74e6130a8be1046b6a61ccfedf1f2e
+FileChecksum: SHA256: fe970ae667524e284789c2032df6812ad852fb786c470921be8a47afe7afa4ac
+FileChecksum: SHA512: 8fc91268b37035d284824346b3a141be05d2fddf0d0b2263556d60dfe407e45fd4254930325ff8d5ff978d68d80fa615c1d90c1774e63ecc92db3573cd99006b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95js.go
+FileName: vendor/github.com/sirupsen/logrus/hooks.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-hooks.go
+FileChecksum: SHA1: f025e85ebe123cb29b44b8eec6489536d8e70b6c
+FileChecksum: SHA256: b9dd224299b4e20e061671e68841af34cfece45e37563d4d8e7a664e1b787e48
+FileChecksum: SHA512: 3f3f572f0059d15d41eafdd52470291d2d56e50f7b4f70432f24a69c8299dbcbb9a8c2433a32025bc09f94490d7511f336cd637f4783de5de3cd91e0ffdde6b9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-hooks.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95notappengine.go
+FileChecksum: SHA1: d4bf099b091140cdbe12cd1338dd10dd3e3d1139
+FileChecksum: SHA256: 7a9c6f07aff2ab6bafc003ce9ec2619a383ec8bbbdfc80fa38697a29ee149fce
+FileChecksum: SHA512: f8e89f1903148606e21b50bd9e9a7ba9da232145209ba21284882495b40454d2b981927414400db2e6bdb4d9f0bb0f20507d32ccec8869b56e7e3c83ce1938f4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95notappengine.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95solaris.go
+FileChecksum: SHA1: 8bd00754724417e04dbf336e6788ea9b85b2413d
+FileChecksum: SHA256: a0a7bfb25bcf1fe899a01dce35fba617234396ca891f57320fa75b2147bc5aff
+FileChecksum: SHA512: 0d393d1ca403cd53702ca379f46635bc62030249de3f6de444a81509843102eb76e46c2b1dbfacb5f054eb6236f6a235b9b58879173509b613b35da0c192a1b4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95solaris.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95unix.go
+FileChecksum: SHA1: f6bd2dcd684618bd9cf82ff457a8be685fca2912
+FileChecksum: SHA256: 6044db944b735956eaa1e6ef259e0ec121d6372c1e8c6a256c13ac23e3947ff9
+FileChecksum: SHA512: 63148c555da610b28473bde845a77fb16859b982f41988ab05580e9bffc7952c8c51cac7a5129db8ad53be8c0783b797f8d76bc056a6d7b0ea11389267fb5a85
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95unix.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95noC95terminal.go
+FileChecksum: SHA1: 4e32d48c5a8926c48bede2d6af991e5660794998
+FileChecksum: SHA256: 3dc42eb54664ce50d5e3fbfd0766905158dabb671354ef8312bf4f3c73d5039c
+FileChecksum: SHA512: 659b7df5f26111e36c696cef08fa0d2ce062be8b2eecf63559d0d9219367052d2c57026491e2750d3dc89f5a5fcc3ad2c72e12a70be42402c9343c4e754d0dd8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95noC95terminal.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95windows.go
+FileChecksum: SHA1: a9bf6769e6941fd300c35c032cf4b1e833f4b608
+FileChecksum: SHA256: 40e3f73720d0104d8cca8406add50747f6ffebfb7b1bb36646f7454bb167acd9
+FileChecksum: SHA512: 8a8ec49c138920c8d9e05befb11b34fc2816079a93c96001ff4e3fd25e97db1cab096d2b77630755573037766e7181a0a618c503bdb920fce85e75df872b4270
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95windows.go
+FileName: vendor/github.com/sirupsen/logrus/writer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-writer.go
+FileChecksum: SHA1: fe5e0d6169e45feac121ac7576c9120243ab0a1e
+FileChecksum: SHA256: 1ea944a55a76dbb05d6917134403c0e9fcc4931edfc773151e60bcb27abf318e
+FileChecksum: SHA512: ade099b171f9595f2b4ea08d9a5e5dd03a13d17be78deb768c4d8e33f3641e933276ac3f340e41ca406597e05cd564482f19558d18d4b7794dc579c09f3d8d9b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-writer.go
+FileName: vendor/github.com/sirupsen/logrus/text_formatter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-textC95formatter.go
+FileChecksum: SHA1: 0e5886c9910d65ad692fb4df5773c12cd2fac952
+FileChecksum: SHA256: 7cc9998ef28bc62887bc60810e6719ebefc3dc794b394de582d8e43ee44bb66f
+FileChecksum: SHA512: 614e88c73865cb2a6cd3bf45a2d673c182470b0e138233356ab1c956274e5dcd4fdf9259277d455a4582bd8f73c5273d99d5cfb167e8a1dcd431e268d6701207
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-textC95formatter.go
+FileName: vendor/github.com/sirupsen/logrus/logrus.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logrus.go
+FileChecksum: SHA1: 7aa9f7cc798a998dbc8a78decf743e6f1bfee5be
+FileChecksum: SHA256: ad71f316ed190a3dcdd32b53efcaaff06201b37ef6c7527df31a4aa687f1c2a9
+FileChecksum: SHA512: 9c41dad8caf6a3aaf098a54e69d8e334ba05b0ffee5746b628f19d38eee960323a3f7844b6be428f91181ed227e39a809b4fdbcf2eb4fcb416939701bff244dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logrus.go
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-LICENSE
+FileChecksum: SHA1: c5c8a68f4b80929b3e66f054f37bb9e16078847f
+FileChecksum: SHA256: 7d5450cb2d142651b8afa315b5f238efc805dad827d91ba367d8516bc9d49e7a
+FileChecksum: SHA512: 07bdeb77b6ebe1f18ba5285d98a05ac53502a82837118e194d81384bbb9c1a8e7bb7ba627df288c770e9e97599e24a5135e45546cbf493330773c6b9921ff5b6
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-LICENSE
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-Makefile
+FileChecksum: SHA1: a7c19d0a6ed12301a6dd346104a498896808b493
+FileChecksum: SHA256: a1790b6e225a5dde1923fdad6426d151a7f5de55cf3747e642fe0f5384c847db
+FileChecksum: SHA512: 84a35b707a13f4e3397a0d7a85c4dc15d474e726bce8cb332e46789a432eaf712a0ae73cda6254597966d2ee39c2616169e6d99abb88de30534e2ecf34e145a5
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-Makefile
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.gitignore
+FileChecksum: SHA1: 75c3a89aef7deddaafb5390c854e1a3482da2a45
+FileChecksum: SHA256: b7a6a14ad1dc469be49266f5d86d40ee6c439468ad409a0bc04238564c34aff2
+FileChecksum: SHA512: eaa0987fdcdc5458c3dfd4484611946a0718ab25b4ac03b17b4bc34abb6da9bc73d24743ce9ef951a9af36247fcdfa6edb803937c0e2e9c1940fbe0757367a34
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.gitignore
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/pkcs11uri.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-pkcs11uri.go
+FileChecksum: SHA1: 6e99e8cd75c36800282a6a3bfdcfa842c6c90788
+FileChecksum: SHA256: 03db485fcc9477ec4b9234e559d1047de70eef43717a214bd8638cf84defb145
+FileChecksum: SHA512: 76c7480f435941d73ceab602247c41509985122d5204c2381dff63bac9cefb5bbbeb12de4ca26342063fc26812f08c1092124e58623c1f5c11fb7787b17cdd48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-pkcs11uri.go
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-README.md
+FileChecksum: SHA1: 26e5edd5524ac76f5c8a1fd16360939d87c0a64f
+FileChecksum: SHA256: 7609f3b964ddaa0e3a6177597aade028ba7e538ddf17de3c0a76a9085aa85e17
+FileChecksum: SHA512: 4447ed750b836a0fed0b8c1d8c727f2bb258e6d477cfd2541ba3c8a145b7cc118b63d0efaf66615abaa7ee7994ff5a0716fa0bbcd0e686582a213b4657b23655
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-README.md
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.travis.yml
+FileChecksum: SHA1: a7070f5e49c4591f3622274d66e80553b1579a8f
+FileChecksum: SHA256: 7fc8710839667fca38cbd90d71832a89eb3c02bf0c29baf9d315dc00a322768f
+FileChecksum: SHA512: 6b2a1fb9dc48dc47ec7c54061398aeeb17ca2892e7cb6195830332a2854d058222c18a3d96605617d0ad9c70bca97421cf9d7489045a201d0940e989c7b42249
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.travis.yml
+FileName: vendor/go.mozilla.org/pkcs7/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-LICENSE
+FileChecksum: SHA1: f9bbe972432aebdebf3469c89434273ba88ec9c7
+FileChecksum: SHA256: d01c6d371866b3c7a1a7e20994d88d2ce83f22974ec6d3596a6125b44495813d
+FileChecksum: SHA512: c0d06fefd468d2e9d29fc61476d6b174c4b319ee001d070d923f51caa80fcabbdaebe6628b7b709d5af0213d83190586851bf504c534d1f1ae2a0de13b06765f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-LICENSE
+FileName: vendor/go.mozilla.org/pkcs7/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.travis.yml
+FileChecksum: SHA1: bf60a79cb1f25cdd02ce8db52c04071e877394b9
+FileChecksum: SHA256: 95819a958d3104a44efa1b0e21ffbca546cbeb6884d841860d51f23a0cf225c3
+FileChecksum: SHA512: 0b45d65a0a49664d9102986288a63d022bf53b7bee6e8ee3ab520b8e78cd3f04da677f5fbe6b127fc1d37955a2acceac97191b681ef4e4e44b78a2c383861e1d
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.travis.yml
+FileName: vendor/go.mozilla.org/pkcs7/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-Makefile
+FileChecksum: SHA1: 631f26758e7c77de249a4ad609f2374783dc7320
+FileChecksum: SHA256: fc096f6b7c4574984455e87af978ae0ca1af3b3795832a2a5ed7c24cffd618ed
+FileChecksum: SHA512: c4457defffad9921ee4e466eea1c414e2e1552f21824450be8961f6f2680b899643ef95caa4348004735d7feca137deeff25984666c113dc836996be143e44a2
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-Makefile
+FileName: vendor/go.mozilla.org/pkcs7/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.gitignore
+FileChecksum: SHA1: d9a6d2ae7e2add88179e429f787e6a5b2c7b1133
+FileChecksum: SHA256: cb568f716e3315bcebfc75bbc274b56577c2734ec3da6729ffac15919f416240
+FileChecksum: SHA512: 2bb81143328929299fc309960108c9fb7ea45410e0f1904cd30e8ecff02f75c531997facb35cec5be600a9fb635e9fad24fc81abb12a5d0e97289a99124bf4cd
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.gitignore
+FileName: vendor/go.mozilla.org/pkcs7/decrypt.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-decrypt.go
+FileChecksum: SHA1: cbb08792a3b5652edb90b569add86fcf95fb90a6
+FileChecksum: SHA256: 03a2e45e4daf5c42c9f1c4afffdbfa25fe27700fdf07b1908d3a776c27b66cdb
+FileChecksum: SHA512: 57448159d63a2c831a3eca8a90a96d87bd274f3a749f84d7bb725489ed375ef28bb26bc66cad1bdf62e208a7634f5aa9b25d4dab405d587861c3e6aaac6f7497
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-decrypt.go
+FileName: vendor/go.mozilla.org/pkcs7/encrypt.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-encrypt.go
+FileChecksum: SHA1: 7f6dd7e6b8f48cae047c531bbdb48cab91e7b85b
+FileChecksum: SHA256: 43b7b5c46abcd40bd407857cd1f60f0aa096ca7093ab302f6aa4f7fc38bb34e8
+FileChecksum: SHA512: f91757e7fb119b9d1a1464281afaa6597a84e0a877ce290965b4f7cea87a3dc9044913e248f58b1d81477873cc064e3eb9acc6545571b04551c12d9a07f1e21a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-encrypt.go
+FileName: vendor/go.mozilla.org/pkcs7/ber.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-ber.go
+FileChecksum: SHA1: b3fc5f1b8b3b0de0003e14fa417130c26f7bf1b9
+FileChecksum: SHA256: 7107213988d88889cbd0bfb382673f1515f96489ef4dcfb63d5db2ed6bcf5191
+FileChecksum: SHA512: 922c301e3055ca54001c75df97dc53b89b8149922f2045d7dc4447c066d2701b3e4a3e685e0603ad5adb1f50eb92a3203f873739b1eebcbb4cd7659d759f962e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-ber.go
+FileName: vendor/go.mozilla.org/pkcs7/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-README.md
+FileChecksum: SHA1: f94caf6cb30e432bc9aa4ace42dbcf53dd3a5374
+FileChecksum: SHA256: 641aa728069ed09dfbac88486df380bef78102e4fb174d086d5bd988ed1b656d
+FileChecksum: SHA512: ad23c168b0db5d9f973cb7dc64f61031a0a3ecb847d3b32ac097d7d51aa5883d3704eab7f9637f3337345896ba14639095ceaca32a6cc82584d05a3afeb5258b
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-README.md
+FileName: vendor/go.mozilla.org/pkcs7/pkcs7.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-pkcs7.go
+FileChecksum: SHA1: 5d9f2af894207ffaa2e37490a76271b64a68704e
+FileChecksum: SHA256: fb7c6c0467df1a2c9a383c110ae97be14c0a7984facd436b9f178e5967ca6b8c
+FileChecksum: SHA512: 3a988e0da812b26263628a9193283f1fafbc15d519fc82c069edff1bdb4f928c5fc1d1be73d65b99ad4936cf797971edb9281e5a4c2d03378af3618cf01b70e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-pkcs7.go
+FileName: vendor/go.mozilla.org/pkcs7/verify.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-verify.go
+FileChecksum: SHA1: ee30155af4ce0586ff4eef8bea2a6293f49957dc
+FileChecksum: SHA256: aef2cde1fce5df73ea97dae057efce191814b3f27af1373611bed57b9cd1012e
+FileChecksum: SHA512: 1f1c5cee9b8501e7f26940994fb6ede6638e9ea882f340bd77b857d357cedf4c766a830470d823963d05265707f05b9356505f9ff60b275051a8469aad83a695
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-verify.go
+FileName: vendor/golang.org/x/crypto/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-CONTRIBUTORS
+FileChecksum: SHA1: 39097573c311def5445e4dccaf3189987465bc83
+FileChecksum: SHA256: fa714cb1012a065fbe08b174eb1f5604327bd24d42dab2c461878ce36f68d0c9
+FileChecksum: SHA512: 36fcb4e290cf69db05fec038f7939a7bb888d458c4d814cb368f207210359c921e2bc563720d8add09039fc2ffbe3bacb96e4b80c248f643d0ac4808d8e4a718
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-CONTRIBUTORS
+FileName: vendor/golang.org/x/crypto/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-AUTHORS
+FileChecksum: SHA1: 5d22291302558cc1dfe4729c69bac627252d3c10
+FileChecksum: SHA256: 5aa3167c44245f0b12b27195d85c6a8c8e067cfdd511059daa4d7b3c5b232129
+FileChecksum: SHA512: d9bfd664efaa0ec0cb4c3c4e5b850aa374692c1abcac7e818b8c9fe32c431200b6042639feed3c6a32d7ab1caf94e7a50a9ec21f3423e759b25ae89e0aa439e0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-AUTHORS
+FileName: vendor/golang.org/x/crypto/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-LICENSE
+FileName: vendor/golang.org/x/crypto/cast5/cast5.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-cast5-cast5.go
+FileChecksum: SHA1: 51902a52a64f0b7761e1d7c24ffafbd942ed6ba7
+FileChecksum: SHA256: 312586863f68f63c149768b01f66152f1504b0aeca910be621ff88e4f8d5967b
+FileChecksum: SHA512: 5301ea7243a8f5b2a66b7ea6fa5685d292260dc934f10dc476d8891a262039a0e50fc857ea314c3d3bc5e69f1489fee23142808c254221d6d2192a1a08d5cbaa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-cast5-cast5.go
+FileName: vendor/golang.org/x/crypto/ed25519/ed25519.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519.go
+FileChecksum: SHA1: ac948efc967d26ab1c4bdb05dd0ccd006fed29c4
+FileChecksum: SHA256: aa9b474690af7a9bd62d495d4ae9fd282e994c93d4029887a7f0fd7802c28355
+FileChecksum: SHA512: e2e2d253f3dcef827842078d0bdc5185cbe77c62b74c8d4cd57aa86c9fd75a8840de92db75609e16c04ad6a417b5195e515aedcc4a96654bf6577665724876d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519.go
+FileName: vendor/golang.org/x/crypto/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-PATENTS
+FileName: vendor/golang.org/x/crypto/ed25519/internal/edwards25519/const.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-const.go
+FileChecksum: SHA1: 99640d64c4de9616eedfe0af7acb3018e04d1631
+FileChecksum: SHA256: bb43c357b9bc26c3f8f010e5dffcb69590683b627642f0ca03933e4598145b6e
+FileChecksum: SHA512: 84ebe778c0b479259e2b08f068477eb18c7cd38f9f164b0e0b07c734ff24fb12b0720dea40621d66c18ed0172c05719eea5732b640e67399db918fce40235bc0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-const.go
+FileName: vendor/golang.org/x/crypto/ed25519/ed25519_go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519C95go113.go
+FileChecksum: SHA1: 9bc812e5b2912889cec403f319042752c643c304
+FileChecksum: SHA256: 33071b7e257dc7e94e06226a912deda63aa405e267647c991b72d638d65d1399
+FileChecksum: SHA512: 2725d4c1764bfe5796e34db6182e9a8e8cf7464a4e8164d535b228e587146adf02a56062f81e992143c3ec9f05d7c18a1a54c47fff01f6aa97885593118b5fe7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519C95go113.go
+FileName: vendor/go.mozilla.org/pkcs7/sign.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-sign.go
+FileChecksum: SHA1: 165b4c0d6beab554c84b4a7879012f4728fd31b6
+FileChecksum: SHA256: 4b86b4f636d9bd7f5a606de79503de10c4d570d5461d4b85419feb15786fe6d8
+FileChecksum: SHA512: 2d0f9b7db2345211bc3f43e3152ce30b6f2c1b12e9cb86a54336713968591f8a49ae3c0e4c9a8eeb7a4565a9454871cd604b3977c221dbbf212a8ef7c6938a1f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-sign.go
+FileName: vendor/golang.org/x/crypto/openpgp/armor/armor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-armor.go
+FileChecksum: SHA1: a9ffb3e8447cb1cf417781556abf8dd2a04640be
+FileChecksum: SHA256: 800c6c937ee7b83711a9ebe90d037da9a8b959f58aaec74851cc435c461b6441
+FileChecksum: SHA512: 357d8d46083fa055068846c87caee9fe3d7cc5a70eebc6d51f1348646bb4943e01e3d5efbff5680a8777c89e63005517c276b7b181d788cb8f93f65138751528
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-armor.go
+FileName: vendor/golang.org/x/crypto/openpgp/armor/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-encode.go
+FileChecksum: SHA1: 7ef4d772364ea2ecb8ec6f4a747abc84a3bbb079
+FileChecksum: SHA256: 6f7bb3548e1ddb3d54f33e943f76dc0fb66512d2552690e73855ab02f7b6a211
+FileChecksum: SHA512: 8a5206fc742cc5a114fe00ae197db368be8b6c6e7f6c29721a7a927313935169cdfdd894fc91548651b1ec72ef35b172a4993889c8f1e8ec25d7bf8ebac60f23
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-encode.go
+FileName: vendor/golang.org/x/crypto/openpgp/canonical_text.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-canonicalC95text.go
+FileChecksum: SHA1: 4670f9c34b3bcb4eb4ffe9029171cd248e246a0a
+FileChecksum: SHA256: c48b8565ba789d501946a4ce16e002c71828d801d448b9ee52963444d6561256
+FileChecksum: SHA512: 7ab541c282c73401695ece087aa2e894239e26da0a1bb759ed3ed3272d54d0fcb5bb5d8d3a9dd0e3c02288156a3841058052910261124ee295ec22a6a7f48096
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-canonicalC95text.go
+FileName: vendor/golang.org/x/crypto/openpgp/errors/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-errors-errors.go
+FileChecksum: SHA1: c626944c49808b5a726ccb4d769a152388c12bf5
+FileChecksum: SHA256: e933622a292a5cbaa33abf7d06e18bd41bc2eb1b122fa71f2b246853a3ae34f1
+FileChecksum: SHA512: 3ec86d2a1d6521ab6bd8c106a1b961c04bf6ab0c94af5412edf2e654c7122c4460231fb83b35537d7304171316f77cd4d98eb9e104624e145fa59a2460e4a0d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-errors-errors.go
+FileName: vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-edwards25519.go
+FileChecksum: SHA1: 22c193b2c324956a2d3eee7157701ac4548cb696
+FileChecksum: SHA256: 4048a7f45ef3c255bb496754f214ada75183d25a0141a44ec42341b4683cde5d
+FileChecksum: SHA512: b6befb19c77aa7f7faaa9d715b12f6a128d430d4202e1ad72b73e8f45aad664ed220a275d504209e909dd12f9d3787d3f11bdf50da79c017d1d28a4011c4bef7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-edwards25519.go
+FileName: vendor/golang.org/x/crypto/openpgp/keys.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-keys.go
+FileChecksum: SHA1: b67e3f4e92bdfa6ac4f161069ea5705f02d8caf0
+FileChecksum: SHA256: 7284df9aac2dcf9e03207b137e063f79d258e9aa0201601b74e2bd95bbd6651b
+FileChecksum: SHA512: 52d9a8ad5c8d2144a4af066c02f4a4562d843c4d1e91287704a007a40bb777156b9d2a7401680dba57f17c00dad0f5e59363fa526698dfaf4bfd4ca572bce30e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-keys.go
+FileName: vendor/golang.org/x/crypto/openpgp/elgamal/elgamal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-elgamal-elgamal.go
+FileChecksum: SHA1: 80697dd53a7eee3e1dbaa2e52a2863454f9dcf89
+FileChecksum: SHA256: b662e2579287836440d3f532319da5a964c9a0bb978fda52d79f4a0afd1a69c8
+FileChecksum: SHA512: dcf1313623defc6d4cf6b7f5249a216d482fc28ed967c7d6b5ece408ef19dbaaefadf27e6e4e7958d98f0dde9ebf027ac0c3928cb46f7fdce5f00e50e9b2cf8b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-elgamal-elgamal.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/compressed.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-compressed.go
+FileChecksum: SHA1: 4076e5ef78569372ab59b557351c127079c6284d
+FileChecksum: SHA256: 6b12cf1b46ca789a6e673a83524d41bd25bd270d7e5abdc6447f039f3ae4851f
+FileChecksum: SHA512: 94622902d0534be49e12e2cf2233e6489fe1abaf36d1bb211b1899e6b15b4c9ac403397384f57b89e4c28c776eb34134a2b1c62990d0e5f12e033372bbbc7e63
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-compressed.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/encrypted_key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-encryptedC95key.go
+FileChecksum: SHA1: fca6486e79d6d9ed8d10ab07761f603a3ac5bf79
+FileChecksum: SHA256: 3dd5f997da0652e8ab5716eb46cf88efcddc8784afa1adb7f346f9df8e37edc9
+FileChecksum: SHA512: f4d8190d72ed3eec65dcb2842f445f27c751dd607851d85399fbdde0cbfa3c598afeaa5721019125480c967de461a04faed964084f55ce978c412c0cea007217
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-encryptedC95key.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/literal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-literal.go
+FileChecksum: SHA1: 7938cf49a2bc3f896195c4493089546e6f1f26d4
+FileChecksum: SHA256: 0f761a9a1e5c4925951c73e2862464bab54611032733bd1d30825cddcbcefd0c
+FileChecksum: SHA512: 1e39268f71648f02b8e54c5e4df868c259907b4ff2429867800249cfad43952afc1b174bebb6818db670e47228fc5162ea3190e86f29771f85e19ec63e8f8c20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-literal.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/ocfb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-ocfb.go
+FileChecksum: SHA1: c28570d30724cc238918a62ff1416d803b1ce178
+FileChecksum: SHA256: 97f83c5a3d76122baf10694abd6800ad5de280b484bd4e9b1766061ad72269cb
+FileChecksum: SHA512: 3738747eea4c76a3374d29e7c26fc4b237ef5a95cb7ab39811a67c74c692831cb867839b7b187a913821797ba3536bb0c317b973b459573a76fbd5f9ab985f58
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-ocfb.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/one_pass_signature.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-oneC95passC95signature.go
+FileChecksum: SHA1: 6bd89ac6d7c2b2201a1ead8a1846c01e9a78f69f
+FileChecksum: SHA256: 7c5d8c831c1800ea0c617bfb1fd7333e1178ca89796ad091e0d69afd524f400e
+FileChecksum: SHA512: ba52d25bde52fe8ef03dc2e6c461b36952347fe0e03aadebcb53e6cf2525519df5b5add4cb07429336553fee7f752ef5e23ba781ab1bb8f82b2206a54de1f919
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-oneC95passC95signature.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-config.go
+FileChecksum: SHA1: f86d4202fb375cbbbe6d628824496b72851ed810
+FileChecksum: SHA256: f28901e97565f83eb11c59e11ebdc4eef614e280a84330a2339e85643f3e9264
+FileChecksum: SHA512: f2c0ef16785e80740c4e3a5d804b5361b0327d83d0f3466dd0d80da0589d5ef5b9454acb614771dd9f7208ebc2910459c5f58ea3b43c0bd1be01519a6c87085e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-config.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/opaque.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-opaque.go
+FileChecksum: SHA1: e3ec0c73dba0ac5840bc2356b013378019a54bcb
+FileChecksum: SHA256: e12656d74de94b5aabc100d07f010528009ff3079c62b98ebca49c4bfa4cff07
+FileChecksum: SHA512: 0918779778f438913daa578b9ba56eb7e8cb94f3a9b9d57f4a6ca0c899de4638f7259271d85bb90319fc151cda0ca676226d8012ffa95f22be983fbcf06de720
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-opaque.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/packet.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-packet.go
+FileChecksum: SHA1: 43dcae18dd0ff66e0bae7a8df004661a02457625
+FileChecksum: SHA256: 4a027f57d30dc67de306269615a210576079a28143602de2ec99704ac8e8bbbc
+FileChecksum: SHA512: 844361d6f9eb06f83dc29bd73550bef6a94b9ab79723177e9735791d7a2d6785fc063968b919796e35e3a0a985b0b98c75a69ff7c91d99c0862b26d38bef91af
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-packet.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/public_key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95key.go
+FileChecksum: SHA1: 806778131d8b35b8779c3f4aa84720a15560155d
+FileChecksum: SHA256: a7c919b8247fb7764acc332f1216f42e581296c85fbddcda4945c6b2d58cb328
+FileChecksum: SHA512: 545b29c65419ede763298deb23b146c9ebc49aa39d34e650e218f4bbc7f956bed36eb9aafccc92ae4187f57df8a55772b94ff0d5c8f6485c1a801d2183f4600b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95key.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/private_key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-privateC95key.go
+FileChecksum: SHA1: 9ce506410bbcaf580aedb735b5204d711ff80c78
+FileChecksum: SHA256: c7d59b49fa74005a8bfab0468fde898d5b6708fe032e4667b6d34de2553a05f3
+FileChecksum: SHA512: d52e33c81049624d4e9d62383df67905b0c51c6f62d3f73899a1c32a7dc5c5bb3e1e8bba1a1fbf8f028811d86418e9ebcd63b9721a398d5310702acc7bbd6c25
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-privateC95key.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/signature.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signature.go
+FileChecksum: SHA1: 93a18724e9fe096734180cdb053773f8cba6a06e
+FileChecksum: SHA256: cdb85a4a756fb11dce00be3b7aa190b6a91ca243d3e602f3789a9e1e9ac32705
+FileChecksum: SHA512: aee1d37f56a16e33bc5d5eb76b11ae0499046e93405f062f33bdefa35f2f58c4bb961f9b364bf4f70573ca6d4c063a1c1703332456f5e622e80c90b0a40ee0e2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signature.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/signature_v3.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signatureC95v3.go
+FileChecksum: SHA1: ac016519e74ff889a2f7df5308ad6b5bccd89c0a
+FileChecksum: SHA256: 920edfef739614e07aca0a86de0d242387347fde08701edaae8a44dd76ad3ff8
+FileChecksum: SHA512: ccd36da5f45ca2c275f49c1fc02c6f3951273fda60cb9d3c8638aeb0f5909ca666f097935ab02bb95898545b1167840bb2bf7a250d4824c84aa6e5747768cba2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signatureC95v3.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/reader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-reader.go
+FileChecksum: SHA1: 7cd9b191f6843b5ab33f5b791958122190bb40c4
+FileChecksum: SHA256: e9213e087e18d62a7662f26264800b8c810a07a4da659add0ee39a2b29ed4e17
+FileChecksum: SHA512: 7ecdef36be0e6f0ca372940f6327ecee763dc95a8517bcad62ad35a35f805a5f16b281d0cafc52a4c6ced6101142957931fee3d798610a964b0d48a7e8e62928
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-reader.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/symmetrically_encrypted.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricallyC95encrypted.go
+FileChecksum: SHA1: 83d66b680a02130a59491824da2ecb0f121f7162
+FileChecksum: SHA256: 3910f8faf31d923e0c72ca07f5ff6d8d1dfd09da3333221d885d7bc9b4aa7e67
+FileChecksum: SHA512: e744bd0e64a99f28937bb62a7d8961bd42a93817e746394270110376f0f2ce8211bed3838d4d31e738268a24ee341160a87a3b90fee4d511a4fe2a9d481bfc42
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricallyC95encrypted.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/userattribute.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userattribute.go
+FileChecksum: SHA1: effdfbe967aa2cb84e172db7899fcc772da6a2ee
+FileChecksum: SHA256: 47d0b2012f95fd9a5fa6e0ab79cd5c79b20e1af38b33c5ab5dbc6ced06d32a73
+FileChecksum: SHA512: 9b832d4190215350f3fa0a6ceebf6863b90a9fa6b8be647e0e6bbbe7e9a128be5fbc06c114aad0cdb909fde0a4fdfc30246edda83127096b7b47d7185f4fa6cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userattribute.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/public_key_v3.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95keyC95v3.go
+FileChecksum: SHA1: abbbcd46b670ad1b83e8e82a80e4c4ae6bec2b87
+FileChecksum: SHA256: b545509c88e300281ceb5b0184a3fa7c511b2b8467803c51467de3b4f12e9f70
+FileChecksum: SHA512: 9398c276424ea699c16c4a9046dfb4485ee61d802203b043e88554502d1349958754f1f0ecb48cd4c3c5a9221fc955d3b4a49692829e53d3b6e1ed1b46ba7471
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95keyC95v3.go
+FileName: vendor/golang.org/x/crypto/openpgp/read.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-read.go
+FileChecksum: SHA1: eabba8fb1e284b67d2c51afc616bfbaf05b9f3bb
+FileChecksum: SHA256: 6166723640f66a9a3df7e15ace96774d8dfbc2d8af0539dbf250e514a84735ba
+FileChecksum: SHA512: 768ae48578cb05949da092bd0ecedaec7d9169a5f3f4006cb03b96b79317d12dc6bb6725cb21b3fa50fb661682882ab930ab8461b6571d0fd04a9e367f6a3880
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-read.go
+FileName: vendor/golang.org/x/crypto/openpgp/s2k/s2k.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-s2k-s2k.go
+FileChecksum: SHA1: c41568ca16a8d2d9ec119ef842f97ea9d4fad034
+FileChecksum: SHA256: 4943ca0edf20ba1fbf4ff00edbe396a2bc52ab9825811b855293ec22717b70f8
+FileChecksum: SHA512: 6c147c5e8e8c56b684b1b976967337b2e8007b6e286afb31a3909e86abff688dac0403e4b99f17c54c4f66291b9b1b13b61a666098905c29a8aece93b7520fff
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-s2k-s2k.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/symmetric_key_encrypted.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricC95keyC95encrypted.go
+FileChecksum: SHA1: 86d8934f9dcb4359a3f7e93a359e951f7feaeae6
+FileChecksum: SHA256: 0c70f19586b963c517c9d2b65a9606fa2228769108253bff64c7c37c2b097f93
+FileChecksum: SHA512: 3215d5c4129d320ba730b9886b05d914b3aaba6a7bd3fb662809f784e6ea01018c9f53af0071ddae0cb92b1bae589ac72c3b8f3c832f987fb686b90d303d9d13
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricC95keyC95encrypted.go
+FileName: vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-pbkdf2-pbkdf2.go
+FileChecksum: SHA1: b92a74f493010c9a22bdd7f9378ab9d631d8a0a2
+FileChecksum: SHA256: 4c0c8127838d579ad26b8ba838ede9507100c927f287be2020837a5200a580ef
+FileChecksum: SHA512: f043630ba52b79b50289767ecd0b0c57adeca5a08d05879f94efd4d1a2b326fd377e7f82da4f32f4f2d6480e0b9853faca03ec74398840c37a6ba5bdc5bdaddd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-pbkdf2-pbkdf2.go
+FileName: vendor/golang.org/x/net/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-AUTHORS
+FileName: vendor/golang.org/x/net/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-CONTRIBUTORS
+FileName: vendor/golang.org/x/crypto/openpgp/packet/userid.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userid.go
+FileChecksum: SHA1: 8d1e5899bc750ca307c9c5b23b4e63121e6a85ed
+FileChecksum: SHA256: f50b3b5760f300933970059244f9fd7df2ee5367bb1be554a3119883d3a4f0dc
+FileChecksum: SHA512: 85abf9b0a4727a468be0bb06c048ee5b62fb9959b3f52fee35a406898bb4dd0782d0fc8d70c37a148d728905239f097b7d8bcf17b3b5c07e49e15aaa6c0a02b5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userid.go
+FileName: vendor/golang.org/x/net/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-PATENTS
+FileName: vendor/golang.org/x/net/http/httpguts/guts.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-guts.go
+FileChecksum: SHA1: eed0bcebe2b1a4acb6af88efdf60dab34addbfb5
+FileChecksum: SHA256: 3da54270a625540809f2f767e54e18acf27199aca64b6cf16d6d3fa3999de959
+FileChecksum: SHA512: 07963aa49ece13d8e6c597bcefcd7d864cf7707b4d98e3c30b1899274023284d7df931f4d4803d699e7a0b875837398db61ba14a997a1562e6364adebed78ed9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-guts.go
+FileName: vendor/golang.org/x/net/http/httpguts/httplex.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-httplex.go
+FileChecksum: SHA1: 06ab581c06900fc22c90c725d6add0f17eb17cfd
+FileChecksum: SHA256: 69d333915bc3920ac755dbfdcc41e4e02be86066182fb42728246055ab2e1e17
+FileChecksum: SHA512: 3442ab91ae9e99c1a47a64fc4853ec99fd9dbb3d1e4b507184046a91bd9a43098ff4360aa43afb50f35536c9f75c8aded5c26a052bd66abe85a981d260f97e33
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-httplex.go
+FileName: vendor/golang.org/x/crypto/openpgp/write.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-write.go
+FileChecksum: SHA1: b69cafa9099066929eeb986aa149a5e165d40442
+FileChecksum: SHA256: ca4cfe70108bedd04cbb5d5adcf545a177943c674fa5c3ae1d65661a36733b07
+FileChecksum: SHA512: 065f7e1a849bce7974f4490452b0d11ed510257a9710ede49128b5db9867ecaf8725eaa003bb861acf2ee0d6a5f406ffa1e3fb1b96c05a331486c7a14267f1ea
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-write.go
+FileName: vendor/golang.org/x/net/http2/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-.gitignore
+FileChecksum: SHA1: 1ea64956e082663debd74a48d8f0a050986e7275
+FileChecksum: SHA256: a72adf98822b3f9f99b5781137976efb8de250ebbfbcfc7a8851a6822553d234
+FileChecksum: SHA512: 76391f87e8c2b5b67d5598bc1ccfb72876266bc5ad9531a292df992712976201bfc610b700d1c24b646af015d9fba31446c82c50015ee1073fa97f0c9c744afb
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-.gitignore
+FileName: vendor/golang.org/x/net/http2/Dockerfile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Dockerfile
+FileChecksum: SHA1: 4ca3356dc859db2312f29891ea99b86086b552eb
+FileChecksum: SHA256: c2a55bb6810f72be5aaced7936d156de33c409a1c921272824812852095b4bd3
+FileChecksum: SHA512: de2c6d9f907e62cbd42dbdde75ebf31749596167db3fd92763ea48433cc010543b59acacd8fd6db9fcbbf398cf9b48f04454d29eabe12195e4a0ddbc292e4f4c
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Dockerfile
+FileName: vendor/golang.org/x/net/http2/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Makefile
+FileChecksum: SHA1: 652ffd0b441890bd6cb87a159abbe04a7256635d
+FileChecksum: SHA256: 925e0f245c830c772d05524352d1d9f1c6d55381612e8d4cab9e49f6082694fc
+FileChecksum: SHA512: 7afc8d64f10d1b8f43d254aa3667011f0e3ef3e898f480b633e43b6d10e45779f0a2cc65bc9c398c14f8ed80aaf386f8ce5e0eda6a43988727647c8114c6c703
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Makefile
+FileName: vendor/golang.org/x/net/http2/README
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-README
+FileChecksum: SHA1: 2c544115b3f1dae0480dbe42d3b9894c644cee4b
+FileChecksum: SHA256: 7a98a2563ec46e679eeb9b9099f4f247ea8aa8e27d49ea05eb07d88c66acbf87
+FileChecksum: SHA512: 286c0b844929ca77dcb592268312252f354dc73fb4416e47a9d5f76b218b4af4b3648ce7e92c694b4b4cd0cd4255e001deafa7b83136117f42598af045662730
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-README
+FileName: vendor/golang.org/x/net/http2/ciphers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-ciphers.go
+FileChecksum: SHA1: 8ce7b9f42771a0b547cf23f218c2c573422d0bed
+FileChecksum: SHA256: 623262af28491cd81b3570936cd06757f629d2ae4fb6ef087af6762f30d7a5eb
+FileChecksum: SHA512: bacca49bcd8e9599fdcd9d217676472a7407b29af4dff0f930d664b009e045d3783ffd6a0133cef1bb6dc40fcef35983ee06e4e54df51219b401ff9a670d514b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-ciphers.go
+FileName: vendor/golang.org/x/net/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-LICENSE
+FileName: vendor/golang.org/x/net/http2/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-errors.go
+FileChecksum: SHA1: 7061fdb5c5446f199270383b87c1013378ebab72
+FileChecksum: SHA256: c74bcce836409ea3f783e4f5b7e3a23192972fa88c1b5d3e88b0118c45911037
+FileChecksum: SHA512: 339c973aae9fbd8e8e009e1d6e5443457d070018935315cf331949b3f9967caf86bbcd344aa45d2e4858c0e360b3a25fe9869183f673e3a7ed44062c5afb9d5e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-errors.go
+FileName: vendor/golang.org/x/net/http2/flow.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-flow.go
+FileChecksum: SHA1: 522fd7f9eaec7d341c980e0726ff034b779b2755
+FileChecksum: SHA256: aa0a7f938a02a08e8ac6605d8f89bda5fa64a26fffd9f4e10f23f1afef1825e7
+FileChecksum: SHA512: 632a1a820395728ce193ae7a23b35b8273ef02eff9fd2dc3218bfa839cb6cc77c3a16fa52b91b428813ec543487934681b5b633e97f91fd07b757b1e01b5c99d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-flow.go
+FileName: vendor/golang.org/x/net/http2/client_conn_pool.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-clientC95connC95pool.go
+FileChecksum: SHA1: 017dcc783638f3af946011786b85718e72b5adea
+FileChecksum: SHA256: 752a294167c6d77f4c708b4122d25e21783cb83f401f6d54bec640a8cfba0429
+FileChecksum: SHA512: a028770c6c4e7964c42c36ad0d9b12d0858f004063840f4931357c75259f1b495b23440351136ee6f23ab5a7a07c7d1809c5da83f3dd75706352fd9c8eca2044
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-clientC95connC95pool.go
+FileName: vendor/golang.org/x/net/http2/go111.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-go111.go
+FileChecksum: SHA1: 38c71df4a41f6602e6ec558576ac6423bee8f15e
+FileChecksum: SHA256: 55a7ad1f6c87dabc157f7f257d8d75585eef6ad5c082ff9f8fd0391ede05dc4c
+FileChecksum: SHA512: 60c07dafe938ba132c6780db39e1bf3fc4b6136f6a94c9cc1b7c6af9000c79a6fd3dd298efe07258073e43c43e43232787d0bbf5f2aa86248eca82e464893fe5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-go111.go
+FileName: vendor/golang.org/x/net/http2/gotrack.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-gotrack.go
+FileChecksum: SHA1: a136a54c1673c1f71054d716348e738773ce8e87
+FileChecksum: SHA256: 514d31bfafe0d9a232cc40ae162c4c9377ef30bf2d2f5e08a862f3708cd6c24d
+FileChecksum: SHA512: cbdf956933c21ddf76ef2978e8b3c3bb97aadcf21954e5bd00e650f4af6194c580b127fa681a769e1c0e430ff74aa09f2a041d2ba0954e36a01411c89330d361
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-gotrack.go
+FileName: vendor/golang.org/x/net/http2/headermap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-headermap.go
+FileChecksum: SHA1: 58c054478f698b6226b1123cc372630551505dfa
+FileChecksum: SHA256: 0f6ccc202ddf3a792bfe4249c96f0173a46cf836b42e04ec21d21eb1f9b9f9b7
+FileChecksum: SHA512: 9d489c8b037510aca777e00e1e1cd50c47a91797360ce91f91aad83f568c317e953128353296d1ac5cb76ab3173a68a4d41b3130b445c0af0382ea676591e3e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-headermap.go
+FileName: vendor/golang.org/x/net/http2/databuffer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-databuffer.go
+FileChecksum: SHA1: 82eaa69189e144f89232aa4b78af88ba8aac2d1f
+FileChecksum: SHA256: f8f23817fab3cd6441c421da177467fbe25de01bf536d7c270f0d5b267a5b8c0
+FileChecksum: SHA512: de76e4339c3ae1ed935aa6bfbf8aa52020541864d08d751bd7968ac8ca27aeff56b7ad07a2f54a65c7fd5ca8605b48146d8497b2dbc6bbef039fc2e1aabe4839
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-databuffer.go
+FileName: vendor/golang.org/x/net/http2/frame.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-frame.go
+FileChecksum: SHA1: 400f5be50195d4727fa72f2c44ed61d86c48887c
+FileChecksum: SHA256: 059c13ee56a9ceaed8c625e6b3f29aeeaa57fef56108af7e2990a0748cbae043
+FileChecksum: SHA512: 0e76df8ec942fcad7de997fd80ce8886b25595e7ee5896c9e37b8f1749b2b43d97d2f9eacff4f3c9729b53054fe9b74598e6c183b5023f41460e55b94b454a75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-frame.go
+FileName: vendor/golang.org/x/net/http2/hpack/hpack.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-hpack.go
+FileChecksum: SHA1: b0218a113e97572ccd1961cf80836fa0faecf2fd
+FileChecksum: SHA256: 0ae3cacd0c128bec9a7123eb970b97ac2327158dcbbb72494128d368919488bb
+FileChecksum: SHA512: 038bb2f5f638a611412c52074fabbb6b9d9429f691c48fc291842a60c341147c1cb81b355c6c348d92f04767b67310f06fdd66cc61306c27de25570660e9f656
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-hpack.go
+FileName: vendor/golang.org/x/net/http2/hpack/huffman.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-huffman.go
+FileChecksum: SHA1: a5d373ed8122cf251bbe226b3a4d6b08c1d096df
+FileChecksum: SHA256: b7c2153bc04adfa916dffd294ad959594ea16ccdc290ae033a539d6782173691
+FileChecksum: SHA512: a5dd1d1548da507dc770695206374aa61636527df1b402454ed8a5bf5248ffa7771669bbd07976709092cb8d3fb199248ec587e77d9a862a68a68e9a6e414362
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-huffman.go
+FileName: vendor/golang.org/x/net/http2/hpack/tables.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-tables.go
+FileChecksum: SHA1: 1af5ce9a3f55ee57a7e150e2f4532ab2809b7f55
+FileChecksum: SHA256: eb3a07b0659478e4bdc1cc5dc8f1c77ed6a00abcfb32b38815d0f52ea55d0eee
+FileChecksum: SHA512: cbb08948e3551512a3358a0e80255a84c565516e1eace5dff72accbc8a4843403d0ea08eaa9930e1fac177bfc2520291130c10a5e608e4babb6f733bbb98a98c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-tables.go
+FileName: vendor/golang.org/x/net/http2/hpack/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-encode.go
+FileChecksum: SHA1: f15b268afb1a92cc6928cac8b39c1ef5bc33ef74
+FileChecksum: SHA256: deba418211ef037d0e974d003378a0a55785e9e7cf464b4ba54663cc7cfaa7f3
+FileChecksum: SHA512: 06923579441ca70e495767a7c6a8c10986b69eba0d4242aeddcc3ade4105a8a761e707b4e64b358e68e72480dfc770fb00f52e059df8bef812ec3240024e93e9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-encode.go
+FileName: vendor/golang.org/x/net/http2/pipe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-pipe.go
+FileChecksum: SHA1: 92aaf1dd8ca9dd503ce8fe631402c57874717e20
+FileChecksum: SHA256: 68ba000fdad3187e3e8e6ead91776dc347356910254bdd06b2f8b4b4ae76f4c8
+FileChecksum: SHA512: f0bd1c77b83ee2e556f5dc3974dbb403b88df137631129e57ef2451e2082c1e491f8660da33b72c3ed22dbb4e8adb45c0ad9d85e059a0efb426788f667535a1f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-pipe.go
+FileName: vendor/golang.org/x/net/http2/not_go111.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-notC95go111.go
+FileChecksum: SHA1: 0b6e74c63314cd07640924431b55f66f43557b3f
+FileChecksum: SHA256: 7422599aaa9352f3cff5b0a594f3e92d1eebce634fbd5991777a44129c5ead2c
+FileChecksum: SHA512: 9a3124964f393da46acb934885f3174828b46f84af649529940f145472056a55a5fbee7906465539ff1ffdc4755e85d30dafe543c10ca1f0c99596be5d988a83
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-notC95go111.go
+FileName: vendor/golang.org/x/net/http2/server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-server.go
+FileChecksum: SHA1: 47b9a56a61b5ebbeeba103b7c9c74a86646be428
+FileChecksum: SHA256: 805ac4adbc200059b98e0e2e9b2986b1842c77de5069be91871e5892fe8d7a1d
+FileChecksum: SHA512: e9a470c57abf9577569e5ca860ea86e6acb015a894afd07c8b1032763f4a0ece9165ad6db690f3f4d77d7cdfe438433c56b895fef846aa60db61b016e8ed799c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-server.go
+FileName: vendor/golang.org/x/net/http2/http2.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-http2.go
+FileChecksum: SHA1: 30a215fdfa2048cdf28e2bbb734959f1ca9aad18
+FileChecksum: SHA256: 8719bbe9c6fac158e257d1ee706a9e22209ff7157a1ac03be1ab69c7cfec0c55
+FileChecksum: SHA512: ff8864c4306f9e6b33c7e7d6e09500550304bed4f74ceb8d904247f9a981ee41d02756e80d54c7e387a3cd9823735baf61922b4fc90195d3087a91789c3c2330
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-http2.go
+FileName: vendor/golang.org/x/net/http2/transport.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-transport.go
+FileChecksum: SHA1: 125b46f0d07064a52f5f853cd5a4644411110146
+FileChecksum: SHA256: 8a42eb2cbcc645ab8e7c08085741de2ad13fce849bfa8aa1e6bb981c3e319349
+FileChecksum: SHA512: b7e369c20e304dea727328dbd0fb699e4d0054884df5073007457f6712f62b88fddbea9409ccdc8f251ace52314d92df8b3729e12373be783a8d8c35c10312c2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-transport.go
+FileName: vendor/golang.org/x/net/http2/writesched.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writesched.go
+FileChecksum: SHA1: 13a080d244f90aa8afdf39c03d111294abf51d7d
+FileChecksum: SHA256: b446c4f03a8d24adc042a81dd69a93e86957e81b29cf87f600bb658129d7726e
+FileChecksum: SHA512: a16035be98573f3b9829315d38075ff4f3c969d7b68ce15d95562694df848b22652e1dcb8783f62c56e208a8573eef9a55aac8f96fc28d923a4e51f95a007717
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writesched.go
+FileName: vendor/golang.org/x/net/http2/writesched_priority.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95priority.go
+FileChecksum: SHA1: ae2bc8359cbf7fe7f76b3a71d128410ebf0e83dd
+FileChecksum: SHA256: dff6403a13f80060fa056670c89066894f0abcc522892545cfaec23ded6da521
+FileChecksum: SHA512: 65849d2783d6f55627b906616d1b6828682f5c23c9b24caa7c53d644d660a7c6756a2350d58760d3974ac66a75866d04191dbe0f85d33fd364cb1477ae306ca0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95priority.go
+FileName: vendor/golang.org/x/net/http2/write.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-write.go
+FileChecksum: SHA1: f42559510f3cc4aeee0b292d6fb84cb99200ca97
+FileChecksum: SHA256: 46d324974f35f53bdc41bd14ff5f068670f2d36dad137edebaf951070de1a405
+FileChecksum: SHA512: 1ed126cf1ed92e3bc50d6f13558d133d6cd4c30e2ef861fc5c89ed2085848fc7436bd6955b2679abc68ff23c974d2fe33d7e0d2da4087b8b20a3f1640a6a0e44
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-write.go
+FileName: vendor/golang.org/x/net/http2/writesched_random.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95random.go
+FileChecksum: SHA1: d843790415cb8a46891e545e3f5d5188bb653072
+FileChecksum: SHA256: aa16f68e60e1cb3ff47974df8fb065fd5190b1a7cb9cde28f3b53d26161000b1
+FileChecksum: SHA512: afca5dafa7cd9003b7501d79b07186ef5154a43154388bb9676b0698e502de2f56d0d8ed51813e488feaa5db6690f7c1d6b2f6670dc11c25da31b366f73f2fe4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95random.go
+FileName: vendor/golang.org/x/net/idna/punycode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-punycode.go
+FileChecksum: SHA1: b251f6a167b2b55ba0f86ff27555198ae574a3dd
+FileChecksum: SHA256: 4298b84216d79efc0c29c9fb26a7bf1898d1e7f06fb2b9a8f64d08b5be70e695
+FileChecksum: SHA512: c17f423bb215dc41f3abfcad542437e311602770e9eea5cde51472f927df98489535b783c28272520594e7b3fc0b4ba8c4df54e19eb7feec979d24f905d89334
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-punycode.go
+FileName: vendor/golang.org/x/net/idna/idna9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna9.0.0.go
+FileChecksum: SHA1: f7590a4ae8568da638ccc163171af66f58580cd6
+FileChecksum: SHA256: 16a464dbf3e41a911fc6866b69c6ce8f6e8b1cc5b077ee87675d948b5e20b93f
+FileChecksum: SHA512: 0391df726a926a28f92a99809d89845c6e4ff1099baae98b9b2c9928ade6c5de7ec2b5d448dbdb529054e6f96e92ce65c77cf877916a9e5bfd784fef2de8e0c6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna9.0.0.go
+FileName: vendor/golang.org/x/net/idna/idna10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna10.0.0.go
+FileChecksum: SHA1: 5dc93bdfc638f6dd1a0b3eb33232c0062cd2fa44
+FileChecksum: SHA256: 60bbefe8441d129e62e2eb8954988c787a7a5655f123e7ff3a0c9f65ba70ef05
+FileChecksum: SHA512: 33dcd2b76f66d3420303bc8017ecea6c99b41f6c21ca0ac32d4194caef752a405f5948bff88ea6411f1db661a63b44076b8fd513fa62481dc214cf8a932eeab1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna10.0.0.go
+FileName: vendor/golang.org/x/net/idna/tables12.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables12.0.0.go
+FileChecksum: SHA1: d7359d9405bc0b5080a6d2b1dc9f9fa652abc45f
+FileChecksum: SHA256: c2998fefbbff7db2c250b006535ba722bf1dab8a6ce8d987347ca5a1e02cd981
+FileChecksum: SHA512: fa310d9b3fe73ab7a938d30e2c8b696210451f0274b793bea3deb31b6e29fce5dac2e1d89ac30824b7aa8319f35337fab317e8085a6d4dee6b7f4cc4c241d694
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables12.0.0.go
+FileName: vendor/golang.org/x/net/idna/tables10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables10.0.0.go
+FileChecksum: SHA1: b35bccb17b44b5bd8c55cf2189fa3636d9b7d752
+FileChecksum: SHA256: c46b0609736495d9403a67ad9f3d380be71d142dcb8d3840661690233bce7550
+FileChecksum: SHA512: 281893337977d14175c30ccd1ae5b236c566d7a52ac36704aa28b8b60a378841baa5a760b776740925342de80f2cbdcdd9b6767e1fb08b1a27f35d87f706b77a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables10.0.0.go
+FileName: vendor/golang.org/x/net/idna/tables11.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables11.0.0.go
+FileChecksum: SHA1: 2abd56b991be793b7f3382e07cc01bbd20a9ff72
+FileChecksum: SHA256: fb998a062bf64409b9cfb1631ec804a53523ace55d2bed660967c4d01a201b1d
+FileChecksum: SHA512: 2eb2d57006bc4bb2811dd4769004d2a272e87713bfc673315cd72270dac89a5501508936810656614a0293555a9fb79904f6b4c00d19ebeb435aa9cfec9edf72
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables11.0.0.go
+FileName: vendor/golang.org/x/net/idna/trie.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trie.go
+FileChecksum: SHA1: c122387f6f6f830a00a6b1ba252b3a864bcd9176
+FileChecksum: SHA256: db499ff94fdfabf656639225228255546ac04aa38b01509e8636920cb4aefee3
+FileChecksum: SHA512: f78ee19828f312eaeee926ada17ef78deffe42da25826f1b5d835530053a13fc47c291f96ffadaa0fb184824472a1e07ed220bf6f44d813dc9e76b68ec41d6ba
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trie.go
+FileName: vendor/golang.org/x/net/idna/trieval.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trieval.go
+FileChecksum: SHA1: 419fd865a327e419b473234f41bd6cd4622214b8
+FileChecksum: SHA256: 253e9b9d680a5de1d85c21007186fdad531c43452c3a3bd6d0392ca15c2dc1f0
+FileChecksum: SHA512: 5f326b2b4f7370b5213123e71b528bfc1ed91cf2858bb6d0185b33ef345b0e715c62f64fcc4b1052e38830cb052d73f9afcfcd2f8d024c8d8abfcb5092f5a6e6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trieval.go
+FileName: vendor/golang.org/x/net/internal/timeseries/timeseries.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-internal-timeseries-timeseries.go
+FileChecksum: SHA1: 06dc4705c9d34847aad9154dea2cdd8dcb1ad899
+FileChecksum: SHA256: fb2a98dacbeb1a456b79bf48d4c90ec1f213fad4cbafd87564326b61e5d909ce
+FileChecksum: SHA512: 937aff2ec8f0d0eec5671218459601adb1baf9853bdc38e4bfc5c03ef8cdd0d9cb5a33bafdf95a213e4b38e17b2bb552a22dcf54fe9ba465ffbfd0b1c3fc0cc2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-internal-timeseries-timeseries.go
+FileName: vendor/golang.org/x/net/idna/tables9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables9.0.0.go
+FileChecksum: SHA1: 8e084363857457c96d34fdfaddc2a70928340f5b
+FileChecksum: SHA256: 9ae2a2ef005a5c60dfd69348ecddccc42b2a281bea19916e77422b32d0756a2a
+FileChecksum: SHA512: b129a922ab31dcb7285a1d55f065b1a7ab9112a2344e791be24307c1bd8137e15c92c4ee65fc3c4ecb69bde6c5f52b7f3d16d9eee9301bdca43dd39ec2c40ab3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables9.0.0.go
+FileName: vendor/golang.org/x/net/trace/events.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-events.go
+FileChecksum: SHA1: 812dab524673b759cc3a87fb407ba4ee0f470ab1
+FileChecksum: SHA256: e5be6d11a7e445104a76048266bae0abd77a33a5b97d37409261be7fe1648e42
+FileChecksum: SHA512: 8c8302018f4b17e415548784f5e0b7aab189f2ff2b3da50df1bce6a050c71f3b05b9b28125c257e8fc518cc622a07d73c22049e96816a0617e158ebf0815b8f0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-events.go
+FileName: vendor/golang.org/x/net/idna/tables13.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables13.0.0.go
+FileChecksum: SHA1: c54ef40f4885210d0ede5d7b3b88fba56e9cbdf1
+FileChecksum: SHA256: 951230ece06a088133318ef85d38bd1436b23d6e7330863effd85d2c73866b49
+FileChecksum: SHA512: a9043209a6185bd218a655709941f2e8d7ef5c03cb2d8e5576dc4268c05d912910f82ac1f8ffd88068c87a534c639425777626d66d27d85d3598576c2bccfe4a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables13.0.0.go
+FileName: vendor/golang.org/x/sys/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-AUTHORS
+FileName: vendor/golang.org/x/net/trace/trace.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-trace.go
+FileChecksum: SHA1: 42b5018dcaee5c896ce12387591942c41555159d
+FileChecksum: SHA256: 3bd9564c4f8901211baf0fc33f58535554a4f0fbde1ec71b4994b33ae77b6468
+FileChecksum: SHA512: 670e03d6f683636a63fcaf4da8c033e98f26b9358a471e7c78c21c667fa6077f2aa2dcccb21910b4a161d6bc4009eb2fb0f25a4f40640c6bbb4d1e3a46293ce7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-trace.go
+FileName: vendor/golang.org/x/sys/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-CONTRIBUTORS
+FileName: vendor/golang.org/x/net/trace/histogram.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-histogram.go
+FileChecksum: SHA1: 4868124ea638ce5460acf749d21ba5c67bfd23da
+FileChecksum: SHA256: 0d7d8f7d0ad414202bad733834b03620a8701277116c09606f8773ddde6277b0
+FileChecksum: SHA512: 3031d59b709f2a543f474a04977e82ef103e21c8cf6b35e9c3c3eed62e16e416df6854dad24360a437569710751740d6839cbc7661c44cb1b02969e560de8ef0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-histogram.go
+FileName: vendor/golang.org/x/sys/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-LICENSE
+FileName: vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-internal-unsafeheader-unsafeheader.go
+FileChecksum: SHA1: 057e624278df89fd26d58fb5104653033541a28e
+FileChecksum: SHA256: 8ab6b296b610d187578596c01c09ff0613d78d07a0d891d5e17aa5da375b6948
+FileChecksum: SHA512: 4d468eb82b8d50e0178fa87d9141ddd2c8372382b6f7961725c335194784bf5d545dd9a69709c379b92c18b92f94fa2173fda795e5ab661654ca1e9a71481605
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-internal-unsafeheader-unsafeheader.go
+FileName: vendor/golang.org/x/sys/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-PATENTS
+FileName: vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95amd64.s
+FileChecksum: SHA1: c5661d8fed6cf5a4075e7a84e1beb2d70bda4422
+FileChecksum: SHA256: ffcd45494479e8704e6c76c0cb14163e4a1945d74f227689050942bd539b776c
+FileChecksum: SHA512: c85cf8eb6a250b67dee2844edf5b8a63597a3e106deb8e47b18608f7543d01566fe952f0bdcc5fc367b957b8ec59b52e3602c867fb675e92dc23b81f75a2ec3e
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95amd64.s
+FileName: vendor/golang.org/x/sys/plan9/asm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asm.s
+FileChecksum: SHA1: 6741e5b924b0941335c05b65966b52f10ab91bb0
+FileChecksum: SHA256: 1a3a3cf8d418ac9c4093d175f6c5b12997d0bd6902a5467d3f79e3abe7e60d78
+FileChecksum: SHA512: e3a5541aaf3bc09d65e2ecc32ba5b2a8256d74f9cc52e7ef2bb0b50878991a5709d4c3b545b54617c2dcb94bce1ccb460c0e1fab9407001e2addcb2d87854b59
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asm.s
+FileName: vendor/golang.org/x/sys/plan9/const_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-constC95plan9.go
+FileChecksum: SHA1: 5877f9ce718c9dcec91bfa244a175f20e0350057
+FileChecksum: SHA256: 622cb24770d3e8e007f200782210eafb4e711caf49fae8c3a7d9f8bbee312e4d
+FileChecksum: SHA512: ca1c3cb948500ca0f7c165cb7033fe15d6c18516bd96fdc86ed6a4169576b54e5a753c764d2cc5779a61037955c6d9041fe054b648acd0aa3ecacd7dcb1b42e8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-constC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/asm_plan9_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95386.s
+FileChecksum: SHA1: 4f66ae0fe99c1570069c53dcb177e45db5a70a1f
+FileChecksum: SHA256: 24a9c10414fc834ec763576fba475148243e4253f2a94f8001ee370148628db5
+FileChecksum: SHA512: a9ec63c9f91b2f809ae3b87122cd77324aaa4cb2aaa21ac0a3fa35b4e5fc662c9198bda983e0d8ee0b3c02fd676bc111796b5b0455e921fe250eb8a42a390711
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95386.s
+FileName: vendor/golang.org/x/sys/plan9/env_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-envC95plan9.go
+FileChecksum: SHA1: 553adc7c25fb8dd11a71dbe853ff35c66bd54ce7
+FileChecksum: SHA256: 73d0fcf4f3d1a36028d3448e105961749f3e2e672288ce295aac942d851c3546
+FileChecksum: SHA512: bb65c51665267e96d2d4c176c8b08da94acc2a241df961088d08d6a6e4482458d4d1c5efa151c3776b8fc3a2079f5a8fc904c5e3ef30c2b240370310c1e167fb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-envC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/errors_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-errorsC95plan9.go
+FileChecksum: SHA1: a6e875d6c72b6b7bebe312b6f92f7b58ccb84d8d
+FileChecksum: SHA256: f7cf2a2692a72eb8df570f98351fbd478306686cb3f3efce1e6921fdeda3f5d8
+FileChecksum: SHA512: c5458dce70374efa9d57f8c28aca1ef5ac21e4d1cbe9ad8526424dc49a271dbb124f40d5e538f09b9de22182ea818a2f3839310ec74fdc2c26ec327e915055e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-errorsC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/mkall.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkall.sh
+FileChecksum: SHA1: f69a74840722fe81283600522a65c2124e085eab
+FileChecksum: SHA256: 4c00a754aef7a86bbff33d75cecdcc5543ddabd1b81a4d0bb1f6de47e04fb928
+FileChecksum: SHA512: a4e746470a02f5bc7fb4b6fb26e8b90d74bd21f75dd184260530ea49f063b8b8fdc65b20dec90c41548543a459a01ec017938b4ad1d318e4affee7b9222ca6cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkall.sh
+FileName: vendor/golang.org/x/sys/plan9/asm_plan9_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95arm.s
+FileChecksum: SHA1: 001243e5e73686f04c3f45eaf31003d60d235875
+FileChecksum: SHA256: 134d070fb08d17dcf9d99ddf49d0292b1aa068fe3458112070e0e7374d28bca2
+FileChecksum: SHA512: 97eb19a95f0bc5ad9588f72f0fe5215f4599f5c1b885cfd4d1e05b2152b6e3300191362ab94e8dd5fcfdf0b80be201dc5db89b41f187750e83d1a11896627ae3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95arm.s
+FileName: vendor/golang.org/x/sys/plan9/dir_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-dirC95plan9.go
+FileChecksum: SHA1: 1897d02f4930719170d62a0962a96ce14646617d
+FileChecksum: SHA256: 8a085a885566456c46be6b63945569f3ade74c8043052010e63b50bfca22e428
+FileChecksum: SHA512: d7ef006dda681139763b46905d428f78257358de895174b7caba29fe0dcf232abb9d659ef310e6847c75321716abde368897da765413b05d0b790292ef7d8729
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-dirC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mksysnumC95plan9.sh
+FileChecksum: SHA1: 4fafe8918e221305ea72a414dadb4b997838f078
+FileChecksum: SHA256: 0b8858af1df4540706ecf1094957f239bee92085f9560f0337eafa634702c161
+FileChecksum: SHA512: 40ed7b8ef25e37e6bc591211b96139c6faa44508425fc3d2c41e5c659b9e831711321164742604009915d0b9d8e5329ce07d792da577d5781d70ff9b3047a6db
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mksysnumC95plan9.sh
+FileName: vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95go15C95plan9.go
+FileChecksum: SHA1: 8e44f764a3a9b32beec402c9782f5f56d2ac83d9
+FileChecksum: SHA256: 65e3b7bac0f25e4ca7b09169112ab6f3a7e33b0618a3e2bf821fb4eef716a56a
+FileChecksum: SHA512: fc14dcc10e904f991c92113809d02e84b71deaa67004dc3398a2e831e48275e9750729523dd43330256efa5ebc58e7b7e9f5f776cb4e4b108e61badc8479edb8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95go15C95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/pwd_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95plan9.go
+FileChecksum: SHA1: 2ec8e8ce176fb7fb6b6b97c60297a4eef1e391fc
+FileChecksum: SHA256: 39e129982aad81d8bbd2d30750750aa9173287c8b1de7e2a31b223af62f1b831
+FileChecksum: SHA512: d6648bfe81da9dedba23b5f8c921ccececf337f55cd84aa0e6cbc18d487eaa57b14781a0f7c32e4c38fc01b95a66edabd755f3da4a580a903e5105c7bca4fb35
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/race.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race.go
+FileChecksum: SHA1: 0f280b2389ed89f3ad7000f94e1ecf993826e7f4
+FileChecksum: SHA256: 2f40075973ff11d41a94f9e0e10d8f7ac5103a61809999cebe8ea61f158fcb10
+FileChecksum: SHA512: bbb24d67fc6b5c19c1a51ab71599948796b08fb6e4dbf9e6efc9cc6b567f5e7420bac302af69d0082c5daaa991a20f4092778d055c066a09728607d9499833b8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race.go
+FileName: vendor/golang.org/x/sys/plan9/race0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race0.go
+FileChecksum: SHA1: fb1ff086cb8a0c4bc18cbfcf2c43b69abfd56bc5
+FileChecksum: SHA256: 64d666eb5ebcbeaf368fa4952dbd6ae9c16f9f89ff8ca6031187d1514036f5dd
+FileChecksum: SHA512: 9429141860155ba131096b9d2762da9c214f080779d45db163ad6a1ab6d38c4caf7715f8e1b70a5d68bc50ab192d576e49568fd5616ef6e32354623117c22a4b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race0.go
+FileName: vendor/golang.org/x/sys/plan9/str.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-str.go
+FileChecksum: SHA1: 95821ea5de37a2826a5b07c5f1adb570f1c110c1
+FileChecksum: SHA256: 25431414c2ef9fa2a0ec028bccbecf4035ff273d1d36e32b7837539d60774c76
+FileChecksum: SHA512: e2cebe32e836b6a60332b8ca370263dc48998bb951d31d96b2cad06425f4ba93b15a45cc213ac6ee7c60153d3176f54a944e560cc23cc028da94791fdf2933a4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-str.go
+FileName: vendor/golang.org/x/sys/plan9/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscall.go
+FileChecksum: SHA1: dc4fc266aa7d7e4d63b5870ab3f3aa99cd6f085b
+FileChecksum: SHA256: 07bdce86c2a977c490bd3064063878ef033252d00b664b3f1ad941688c6e7ea9
+FileChecksum: SHA512: fa8da0ccadf13ed2550fed0c8f407648f546dc94abe8d80e3c9557edf2d9eadc039112f5b41b54d65aa49c104969dcd5737a582ffa59e5e88b40bc4df64e4a9a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscall.go
+FileName: vendor/golang.org/x/sys/plan9/mkerrors.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkerrors.sh
+FileChecksum: SHA1: 82cd68406765bd3ec9ad9b8763022be65f177bb3
+FileChecksum: SHA256: 22ea3cecb0d7cb824c2c65816bb002695f90c11f45802e5832f9879aae2f8fb2
+FileChecksum: SHA512: 6eb982a7b834a679e1f9d90ccf6136b6abffb57efdda06814fcacbe77eda9b8f379d87343dabde998a67214823cbba8aaa50f7cd48483185c5beca5600160c9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkerrors.sh
+FileName: vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95386.go
+FileChecksum: SHA1: c9843fd28624a6a3ebc697b51bbbe25eb961acfd
+FileChecksum: SHA256: 84eaee9e25215636dc8b46b58cad8115978e8ab80235d51f53e78dc0c141d133
+FileChecksum: SHA512: ae1d35aaaca9606fb5cf76ea32b5d718fc821fa1f160eb6cf1c6896923087e0ff25cb22c92c8172225a9c1ca55b7aecd9b4ab20c17098a995faa815f185edc37
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95386.go
+FileName: vendor/golang.org/x/sys/plan9/syscall_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscallC95plan9.go
+FileChecksum: SHA1: aebfbd4fb965a6e7b6502e78c9f1cdac5044778d
+FileChecksum: SHA256: b096a4bda0e9a205f844ff7aa363d5cc59662947a490e02c0eadaa5a34edc958
+FileChecksum: SHA512: a7208093ca56c411131323a594074dcfd2ac6e01d90d59bcba9d8de5550be773e80cdfaabe0976bf0314b05ba69a370bc99f8d7a8f65e6df01bca758435e05fc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscallC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/zsyscall_plan9_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95arm.go
+FileChecksum: SHA1: a2b7e8694786c50f13359ce7f4173b1797e1c182
+FileChecksum: SHA256: 1516341b06fcfdcd08c8d9d28c38d1d8feb6ca6232a78183b93677329f409e63
+FileChecksum: SHA512: 5752d56b5e6445d0c5573c4d9431afb1020953645c9885680f33dd95916434edebffb0bde02f0b897f9a38354239d1af658c4add7011687aadd441a498a1b5d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95arm.go
+FileName: vendor/golang.org/x/sys/plan9/zsysnum_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsysnumC95plan9.go
+FileChecksum: SHA1: e33394760648d7915325fabc87f7216095b38dbb
+FileChecksum: SHA256: 6b9027a1b9a0e5029f819bbed060b8771742c5f946b4163ef1080531ee4366c6
+FileChecksum: SHA512: 845a5f24c89142087fb344a7a2d5867d9edb2e8ec6bb4577419cbd247803dec7564df3e61930222befe741b7584a8b79bcc68aa7549ab37a96d1fecf13f68cf1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsysnumC95plan9.go
+FileName: vendor/golang.org/x/sys/unix/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-.gitignore
+FileChecksum: SHA1: 466625d6cbff0e18c8c02446914e9381e67f9345
+FileChecksum: SHA256: cc0a4a6efa79e7f971f329717482d436e7f02657d0409c07fb476d698eee8d11
+FileChecksum: SHA512: 84a1ec75ad298e814d3e8155cceec8c556fb6c22445cfe05adb12423b2813166d2850a1ae585c73b33f9c67784709d36e8bffd79656cde51b0f4b899cc348621
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-.gitignore
+FileName: vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95amd64.go
+FileChecksum: SHA1: 4c0b2a9c6a605cfd4826eb5c406ba94103362d79
+FileChecksum: SHA256: 798187308d8e7168a4b28daecef0bfe06ca26335676968a7bfc17bb307802197
+FileChecksum: SHA512: b373c9c362b7384b0490e6387c6e9523539601fe9c9d6eb9a2edcad2299201a9d57d70280762922506d7d68b473067c3e5eeed0c3b5645ce6a4f25c0c251f3d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95amd64.go
+FileName: vendor/golang.org/x/sys/unix/aliases.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-aliases.go
+FileChecksum: SHA1: d91b62bc1f21a3330e2d2ffb77749fc798d28d88
+FileChecksum: SHA256: 3269423037681f1aa129d3bc3f2f8e05029fbc98f2929f458ae4053c235b6db5
+FileChecksum: SHA512: 5d187e1e69d8afc39625f48cfd9774fd78fe7233332c68e3d0d6acf3a0a75a512a77b99d12afc9b82b4c993bd35cde7d4e3edfbe1143037996d74cf5e1310643
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-aliases.go
+FileName: vendor/golang.org/x/sys/unix/asm_aix_ppc64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95aixC95ppc64.s
+FileChecksum: SHA1: e7dd3214c7d5fab522cf7eddb40a873e9305a88c
+FileChecksum: SHA256: 66100017b30cfc7016424be7dc6dd0cf15aa1b0e0e60c10950a248125d02aff9
+FileChecksum: SHA512: 33e377c6a016b5f9d52162212db21f7965d772b7da91a78d6299d1695ce4ff39f744991a6b060d6ca74d42b54329c757f8927c0cef328d32efc991033a53f50f
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95aixC95ppc64.s
+FileName: vendor/golang.org/x/sys/unix/affinity_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-affinityC95linux.go
+FileChecksum: SHA1: 7116fffcb11f2ed2f7a54004e5d221934b657974
+FileChecksum: SHA256: fec0be0ae3217f48c812af387e8763f915ed129745f9d12711a95eeba505e1be
+FileChecksum: SHA512: a3f1e7f2448fbf5cc3c6b520fbcf31af913a30c1545bf61d5f16622ad03d0872571ed422d159c4421050871d47e4b1b5152bfee89212f717ec7fab03b98357b6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-affinityC95linux.go
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95amd64.s
+FileChecksum: SHA1: 686226c59c386791da5c159f7bf926e5442f3f3e
+FileChecksum: SHA256: 9a6fc9dcad8e20d8cecba8178b0abf0414973f1185851059850aa242b8cec71b
+FileChecksum: SHA512: 5e8a0268df75d414480f0aebc658c767dab328ed8eb091b3ecd28118a48d8750a6db46650cd7df2e2b44baa3ffa96e348a1a015edea37539456542d0d8816157
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm.s
+FileChecksum: SHA1: dac4f61b5738c1109b23cc836fd9de21a14346ed
+FileChecksum: SHA256: acefd0716a37ebc470d58959f1c4903a306bdd65ec4d98601d1fed767bbf03c8
+FileChecksum: SHA512: 237e954104a8470d7d74b47460df60bd708f2d11f20b623d64c5cd899e125835138c6f30363144cd597ea0a1e87dad2c93eff2cbdaf923922c428061c1469b55
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm64.s
+FileChecksum: SHA1: 98089ad4a8a17d94cb2313f447a4c157d379c468
+FileChecksum: SHA256: d98badbb1b206f4382580feebedf17fb4e6269934e462f803daf3c356441cccf
+FileChecksum: SHA512: 40f90b1c81f96a6dc64f03a80a77bef647e853f08c3940789dd0bde40faff0f8852ddd053b22e2c6716826d6dcb50d9fed24a7254cf61008287ba24989a0dfb4
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-README.md
+FileChecksum: SHA1: 05c613b0be6a188f488161e6cd88e01c82ca026a
+FileChecksum: SHA256: fb134960fe62676a76aab5538a653883f32c44462e089601ad00abbd4d4584e9
+FileChecksum: SHA512: d75f19d3749cb17984a6924a4b0d9a2ca1a3ed80c33f56545497504331bbc65a9f2829c329de3e2b2a09b2f44f64db7dabcd62fc5dbafb49821a3638f861c1e4
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-README.md
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95386.s
+FileChecksum: SHA1: 1dbfbe845702b9fdada1fb26940290e3a697595f
+FileChecksum: SHA256: ce491feae6c6aa10aab9d9642820eca964a7ff1fbe4f0bf950efbe7a0b109bdc
+FileChecksum: SHA512: 140b0ac593479351f1abe0414df0d7b7495e28b92a7bac9377b506ca2bbac1464e7bc613cc0d5941377bc8b8fdc1d539f9c1e32aaf495b7730e7ee945f33165a
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95amd64.s
+FileChecksum: SHA1: 50ba10feb412a2d045576d734fc481724b022d51
+FileChecksum: SHA256: 100655ab37c9d3939c01b0fb94f11d4d742ac69290542290906c8fea8db9d4f5
+FileChecksum: SHA512: a261bccdd8447ac0455624a133421afd57d9546bee0e74a74b0b95bb6f7963e9932d1c527d77a51314ea959fe83788246f838fec55fb0bf2ba962d1a5a0b13bb
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95386.s
+FileChecksum: SHA1: b45996d69c5281c27ed2034ccde3052287a35869
+FileChecksum: SHA256: b6307618eed73febf9e0784358b42846b690595be195babd86460b67faffc30f
+FileChecksum: SHA512: 3fc3fbcdc8babc0e891ddf4ac704025f4a118f91e9e604762bb7c2e705e63116be44e77c70c5e7675eaa098d5d617c5eb9e96b909fa83f7b7eb67a31d562c2c1
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm.s
+FileChecksum: SHA1: 5293317f3c2d155f51738ba6ba5a20ec16b94864
+FileChecksum: SHA256: ba6f5c549a842f53b21dbddb619dd4cfa2ccb176e1e0a5fecd88f4ddf2ae8597
+FileChecksum: SHA512: a1de27fcbeb4794201fedb8754fd8fd2116eacac5c2d5b4c3d64e8c76cf063092c82a55362401cc8c182966d5a170745cf2a1cd99ca8c40e8480be444e38efae
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm64.s
+FileChecksum: SHA1: 8168947d9eebad40c5358ba6fced5219b9213acc
+FileChecksum: SHA256: 36063775a63c943a8c241979d4400ce7ce28fa78b67ccebb3a2f9e3b126510a3
+FileChecksum: SHA512: ecb4b76e2c05c1b6f7625515ab790235337270e8683fbd466ccd8f7bc174e8c7baeb7d80bceddc68461673f3be3dd91342fd256b25b720388c8ae83a735d348e
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95386.s
+FileChecksum: SHA1: 44ea1a107b1e1c67499731e1732660685ec88ed8
+FileChecksum: SHA256: 9fd2fb1c754bb5863ce3e420338da73643e32a6cf2ab63d56d639adfd37118fa
+FileChecksum: SHA512: 3173f88f9a1c3747d12e331f53fbdcd0d2c2085c37d964c06f24f2c3a04716edc359ef7ed94af0593bbdce19de2c9cb7c4404f01bb348a4e5ba181adbd83bbe5
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95amd64.s
+FileChecksum: SHA1: a5a1aa91c033a7c5a53e261fee92bbd3fa5d92b7
+FileChecksum: SHA256: a1336d7bb725fdad6925e130223f1a2d5ccdf1b8bde25136d7f51dd7ea96289d
+FileChecksum: SHA512: 89c626729df183da32b55d479b78cd0e784ad56ab3c9b44d84b0aebfe217b40adfb335352c5a7fb85cae93055a1913313735af7bb675adfbb3d7c5ad8cfa38fc
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm.s
+FileChecksum: SHA1: 664d40f936300d5d6c5cfcc0b0089ba4db4ef929
+FileChecksum: SHA256: 4c55960910a04d66d508302591fdf66abcbe809b3e474b6b06d9af02e1da7857
+FileChecksum: SHA512: 5fb1aed5fbfcba963a73dd15a0a5d5912a55bbe7e8c60373ac77cb7f0baf3806c35ed4025036c53e52b37c66656ace51ee7b80da2d29c910fe251d1751e299b6
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm64.s
+FileChecksum: SHA1: 2cb513189cf04e2abbd265dd94a4999dac53b736
+FileChecksum: SHA256: edadacd7e25e1973b4a05bdd6b2433660f3395b130ddb5465f248c8467dae78b
+FileChecksum: SHA512: 0b7cd720871241ae3b99eeb2c5fe826ba129c8144d2062d9d058d115105c8f337855afcbcffe7a5a7408e1bd6e1507f06843bf9810de919be507339116cc8b60
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95dragonflyC95amd64.s
+FileChecksum: SHA1: 66fc58ee2ad0dea03b3ac814994e6d457fa4e76e
+FileChecksum: SHA256: d2b89705b6cf95e2421f06ce22214595ebf3204a9159875e567e86e70a1ad4bd
+FileChecksum: SHA512: de2b19a2c1f21e3b6f5ac8403a20e50774450c7aeed15e6e467a0a74524d39ddab614aa2f0eefc0631ef6329e00a7cce35dba902ea720c38410bb35cd5a905f3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95dragonflyC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95ppc64x.s
+FileChecksum: SHA1: e2cc486af7995be96b610298c5439a5ce8dbc051
+FileChecksum: SHA256: 692dc54cd00b2daaf14b98a1359219fb839e06b07f3a2a953fba4d1586ef2ec0
+FileChecksum: SHA512: 0adedadfd46bb0f24593e18078e4bb33b9360ea2ba15f57ac734d63dfb946dfdac1f1b061b729c2ac770931dcf6224a45ca0516b963aa4246d732d429cdc1c4a
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95ppc64x.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_riscv64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95riscv64.s
+FileChecksum: SHA1: e9fb08c73a895d935ca219e69214b0670c2aee8a
+FileChecksum: SHA256: 7d058d9777bd8d25b43d2563c9ec25f11e60748be36b8b927fefc60e747f5eb0
+FileChecksum: SHA512: 0c450e1a86afdd93e441094cbb57a3f5fd3d59bbf44b4a7f45d7edaddf032b8ff182704bdb8c8f5c4f8a4d86a2a78831fb5f2404483b79040107ecadbb23efa0
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95riscv64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_s390x.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95s390x.s
+FileChecksum: SHA1: 56b027383c86a63e57787d10f1622bc28b654af8
+FileChecksum: SHA256: 67e5f2e490f4bf38afa32dab1e1ab28b3bfb80dbf550c35c9b34e67e04b00c34
+FileChecksum: SHA512: 275b602da6b459dd8f375dcd42a525d1faeff4421818d8b830de351fc74a10811f899bbb8da3dc234208cc9a205787ac9b59be810ee095d9e119542623ae8406
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95s390x.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_mipsx.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mipsx.s
+FileChecksum: SHA1: e320cd7c4daf4c2aa73243a1a6cbb117f70628a6
+FileChecksum: SHA256: c6617962cf1d39217a7e0ebf48ef6242ced71b8cac1327137a817d2b34c3f252
+FileChecksum: SHA512: 52f51e0b80ff561728808bfc3af77a6a87bb3f07ff8d69a069ecae3e5e46bc887ba01636216bd6fa7c15613d2adcba1eea084c238b1b877b7ae7f34edfb1a17b
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mipsx.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95amd64.s
+FileChecksum: SHA1: 7864e69c2cd2a341755b083cfc601fa73423f3ee
+FileChecksum: SHA256: 6b98a13e8375e2c216f49ff3a1d659a91c8cabbef6630653975482c96ae5a15a
+FileChecksum: SHA512: bedf0161dced3abf2529067ed57dadc079fbb1e3d8301b77c792856390d20ea7e4959da80ef8774fd3c160411d8b3c0f317b746e03f156666dd1170f3eee97be
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm.s
+FileChecksum: SHA1: 1a7c6e7d11211628c797fdb2514276d1d33b5c9a
+FileChecksum: SHA256: b7afbb9e79c7bf18533ecfba4a5a262ecdd751a27112d4c8067a0ddaf9fd97a6
+FileChecksum: SHA512: c5c2f1b412f987a4684eaa61803a81c6dcde49751073536aa78594c4530480528ec103df9d39d5c3b463ea646b2a5ee326337aeeb89e2f419ff4a5b2f687d29f
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm64.s
+FileChecksum: SHA1: dff193650ebbc4f472c8b6d4b6161c268c51adb3
+FileChecksum: SHA256: fe2e87297af6da7cfb2a990f15073ecd7563ebe9bb44301bee4fc800b13a5bea
+FileChecksum: SHA512: 193d4f2d6c6ec30a51a305e386d61cef14c82c5f5301da2fee2e5e94b1bc5067aa2607e0975181be3652ca63e2157688962d8fd93f1e2007cd25074905c22a93
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_mips64x.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mips64x.s
+FileChecksum: SHA1: 377dd3ab702b89d470fe7e97843e14e63ee6f201
+FileChecksum: SHA256: c86781934de4281b7dd79f20a133f9664750a70ec1c59f9d8e74b65b70acff14
+FileChecksum: SHA512: 3a4f7ed3386cf7c6af8d666337392f6ee9da67eb20e0692ea4d39bb327b9ab34fba17876b79adf36e96bff5198afa51a3e7196d5c32b2fea143e6ae4b95559d2
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mips64x.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95386.s
+FileChecksum: SHA1: 554e5a917252eda65b98a91d36293cd25e1ac5e5
+FileChecksum: SHA256: f8967caefbcff155928a71bce857c7937c680930180ac640bb2033a291b2854f
+FileChecksum: SHA512: 38743746d21587f17a68589673dcc55a84b261d9043aba05cad7b680fd81382b9a923abdfdb29876799b1243a72ceffbd6486a674c8aa86182a63fdf09c2641b
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95amd64.s
+FileChecksum: SHA1: 48db23caac7b3fbfa807fa13b8b20acbc0752720
+FileChecksum: SHA256: 288b33840bde55db9eadb8ff6af0010a12dfb8da67e16ba0a1cec603d021c5fc
+FileChecksum: SHA512: 783633a8aed0c46cd6ff44ceccd6a4801b55e33cd1e3c71ce11ae056528f91c0e8a827ca0ba9dd266abe143d74a1ca3e0699c6b225f77e3edcaaf4085b357a0d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm.s
+FileChecksum: SHA1: 3bd2292c1d3d01faa7bdd58bd2816b6a765aa1b2
+FileChecksum: SHA256: 859b752e57f3b760bab69342dcfc7494ca32a6c3c984f6c6785c5a57d1c4776d
+FileChecksum: SHA512: 7c4f3d0cee9f87817fbd201bfea3db444aec1230295119be90adee35f457fe4aff8e97bc7d28f54a8d77fb049e586b75c41eb0fd3337f097587a58516d715285
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm64.s
+FileChecksum: SHA1: 2502dadd50ae95bf728d03661a6d7afa00a3019a
+FileChecksum: SHA256: cd9eda8690af6451a801782a1fa1d269804f774e1fcb4cfdc02d15a490d456b2
+FileChecksum: SHA512: 5a11f8a4ee89cb95041f6d6cbaa9c335a522205934dd26b8c0645c174374c09f7003743c4819b061740918914c56a8707b62d8d92adaf063f7b77bc7e4f914d5
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95mips64.s
+FileChecksum: SHA1: 28b381a45b3448196e614692129975ef65097be7
+FileChecksum: SHA256: 6e7a254ed87d7c291631d04b42bf77e81e0697bc6ee45ce7e4e8c9e51c4e4843
+FileChecksum: SHA512: fc81d8f904c5f22a8178549535414dcaa41c516fe185b308e767ccf1174bb34a99a8d70fa06b28afc87fb51394e34df65166b8cae694890ed93c143c4c56a8cc
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95mips64.s
+FileName: vendor/golang.org/x/sys/unix/asm_solaris_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95solarisC95amd64.s
+FileChecksum: SHA1: fe531542ae657ce252b3870202e2fb5c1ff0a7d2
+FileChecksum: SHA256: 937fb73ab93f5d603d81b77a6c8f264a04b721c97fdc75d7dc258d38b1af8354
+FileChecksum: SHA512: 76f55b61f4439c5dc747190ad7cee3d72878bcbe5c8f507a37895bf966107e000d68216c670c9f54462a477257e2f3224e74edae0f775448e5c8f427032db444
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95solarisC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95386.s
+FileChecksum: SHA1: 4015a8ffa409c8b3036b3db4af9ff294a0a3e920
+FileChecksum: SHA256: 1a0edd13e6b566965004fb17fd9ed7c3d320a985b93ce2caba1716fd4db95cde
+FileChecksum: SHA512: f6a9538a211252e840e3422160dfcce117cff516b8e8a42147b82c5935ceac3bbb079ea3e1f2b05cd1d56279d67d0d709ad81a7907289f54752f0ae6a3e9dfab
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95386.s
+FileName: vendor/golang.org/x/sys/unix/constants.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-constants.go
+FileChecksum: SHA1: 488679a5c3e2d6b8e98c8710355020321578841e
+FileChecksum: SHA256: a7034e2ae43d6530b8ec28e07d645b918dc747448a1625547c45ae5542cf4f3f
+FileChecksum: SHA512: 910423ce3ffad1d3fe25a5907c120bf2231e0f0500b40ba262fcfb6488dbfbafe46a5f9e083a7fbc55dc94be7e119b7c7b08297617832c27b5f360b972736935
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-constants.go
+FileName: vendor/golang.org/x/sys/unix/dev_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc.go
+FileChecksum: SHA1: 864041bd66883c983cd767eb076212dfd39144e0
+FileChecksum: SHA256: c2923a64bf5bb8c49da291d2f655972d563245d668b7032ea7e09e15e685916f
+FileChecksum: SHA512: bfbc7acc18e5b73f0f5947b5434d31dae2619a95d240f4e4d79687e50c00b8deb47e11e005666a6893e83e5a45074ba86ab6c8ed3470431e19b32acf3b7a50b3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/dev_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc64.go
+FileChecksum: SHA1: bedfee4ecbe9550c9866db2a0d7fea69d60fca5c
+FileChecksum: SHA256: 43fdf5e18ae1da43c73807edff6bfd7d8a75b4af05ba7d7796f49c2c06a4eafc
+FileChecksum: SHA512: 3affcaeaf0a2a3423b6367fa12af8270185ee846b68856b6a8b8a9fe641ca4e19b488d24f95f51f5d023f0505c8582c5dbb26517e39478ace40b05bde51f0b90
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/dev_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95darwin.go
+FileChecksum: SHA1: cd4a999a8357d9cf0bbb8f4c665fbe6379ab0fa7
+FileChecksum: SHA256: 9a0bc8af77b4325bb10b651e00b8f7974cc972d0e5456a370f2c46a56181ada7
+FileChecksum: SHA512: 5748c674bfbc75703ced4b252fa484bd6312d9ea08a0a281f0d0121734827e3cf4a34719e12d40bb10438e3b1a041a7d7b19782d4dc992dc1e7ef07bf6594bdc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95darwin.go
+FileName: vendor/golang.org/x/sys/unix/dev_dragonfly.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95dragonfly.go
+FileChecksum: SHA1: 9788045054bc0ec340d269be047c1467e4f48616
+FileChecksum: SHA256: 125802ffd01c98daddf86bd57960f51f7dadccb15b530c48e6a24f4f1c697fba
+FileChecksum: SHA512: 8ac6dcbc79ab55f00fad358f122c2c7f1d1d157b1a2f527b6d175c22e0388300a1b3d4a368aeff34b8d7e8faaf7cc76c9cc1fc13d97b9ea3ccd99c44f20adbf4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95dragonfly.go
+FileName: vendor/golang.org/x/sys/unix/dev_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95freebsd.go
+FileChecksum: SHA1: ea636a28a95cd1b7bf4fe338c120f1f3ef51b299
+FileChecksum: SHA256: c246eb43233fd2e714c85e84407a084da2823d5a64e61313fd393d34589ef0f3
+FileChecksum: SHA512: 62ececb28ae9b9d57b5d510f5ac0bc254b16ff436c92a098c1d8380d8d6e122130f05b51d1face6a6c02bf722c7461eae74fa6ee78c7cf8685cc780ceab1333f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95freebsd.go
+FileName: vendor/golang.org/x/sys/unix/bluetooth_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-bluetoothC95linux.go
+FileChecksum: SHA1: e6adec1a04e7fd15b0c1afb6c8a8b333a2bf1a01
+FileChecksum: SHA256: 72ce84a68d3647cd34f04e9040861333ac9e9f9ac5b00008d41514c79da664d8
+FileChecksum: SHA512: 649e804c162bfee6207623f09e5cafba94d8062c13b3b66ccfabe971512476fae423f08cb25305968a73913069b8f580afded984b04e9f96c0926042886cc4f0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-bluetoothC95linux.go
+FileName: vendor/golang.org/x/sys/unix/dev_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95linux.go
+FileChecksum: SHA1: 4b604c9aa4a3334b2fc4d4977247f008d62b46b8
+FileChecksum: SHA256: eec381cf025f58965728544dae5df9394d6bebc7e68572e429814c87ee6dd284
+FileChecksum: SHA512: 85e147440039d6456a218f2e886b1d951bc8d90c1c4e8a3e9870a1c6fbd9b9f3bda0efa8fda2b3d5d8f48afa2a80d510de5ca02c5ae096707699d508f078bac9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95linux.go
+FileName: vendor/golang.org/x/sys/unix/dev_netbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95netbsd.go
+FileChecksum: SHA1: fbc9ab1bf67ba7a547bac2f1542f30969106a76d
+FileChecksum: SHA256: f712a720bab3f9598c897c45e389c6666998899b963c05892fc2e12179cf1ca4
+FileChecksum: SHA512: 2b5830179b1cf525f8f702186b5dcec38cf775777e2338fa271a33a75fd78498d3f8279fd6f62b00c3754eed0336ba220e74b533569441c90bcadf8d998650a4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95netbsd.go
+FileName: vendor/golang.org/x/sys/unix/cap_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-capC95freebsd.go
+FileChecksum: SHA1: 312049493c0fb7a251301ce5c53f3306fe05202d
+FileChecksum: SHA256: fae1a8af18386a11fb86bdb212bd64198fe63209524919d5ddbe560d582a4003
+FileChecksum: SHA512: 408ab4af29905031e7e0bd31f61c68dda5a262cc2d2fdacc6cfb96b03a017cbc290db2fd0a086bf85861229af843e3b8d9a939cb3f44549393e3aa1e542b2ddd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-capC95freebsd.go
+FileName: vendor/golang.org/x/sys/unix/dev_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95openbsd.go
+FileChecksum: SHA1: 70c3c3e2720b74b1072d7e96501b7f279d7eefe8
+FileChecksum: SHA256: bc0456ed97d8bb58bed6b4b70959e04215d3393596d92b33a7aa515238349dd1
+FileChecksum: SHA512: 858fe6d4c81635457675042a54ed69a415094ffb70974c7cd31ad741f1b6f4cbf78140cc1592eb09c406c85801abbc517b791681aceafbade2e186ebb9b3b290
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/endian_little.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95little.go
+FileChecksum: SHA1: 1c73462db0dea25adf65f14cf5d57c178b85ee91
+FileChecksum: SHA256: 880f6589ca1150f3f281817b446a5473bf718863b3619f258ad79fc3dd036fa7
+FileChecksum: SHA512: 98d7c98db033ee8e42b563c15ed2d4992cf5d842d01b95750a4f7b97e1fda0e44b0b0f2c31bc7322bf8cce16de9bd0f938243f0bc12ffd30a9f32a82c5ff4ef1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95little.go
+FileName: vendor/golang.org/x/sys/unix/endian_big.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95big.go
+FileChecksum: SHA1: d86f194d3c9531711743554571d073d75935130c
+FileChecksum: SHA256: 51cdb1eca0b1ef6ab38cc580a74cbc0b2dedda8fde570e204b2158bedd5df611
+FileChecksum: SHA512: 8c9f21d9d67658903e465f331a0d597ca861c4e52ec77a92a26b6102990399531c0cc1f37edbc544c8135b50a998527e84b5f813e7582a94925b90450313b910
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95big.go
+FileName: vendor/golang.org/x/sys/unix/dirent.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-dirent.go
+FileChecksum: SHA1: 2e115bdf3a5b332c1f112f7863b12edc8b1c79a0
+FileChecksum: SHA256: 026f8a6b47789a6958299b183c8d045fefe7ba08e91879a2e3bbbba9f6812521
+FileChecksum: SHA512: c320b56c895790a7b1ef56e7a14f5648490a18c817245847d180e9b99cd391ad72dec55655995adbe2f4f284ebf3254a733ea91867602df982e916000cbdce03
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-dirent.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95amd64.go
+FileChecksum: SHA1: a74696c1140fee1b7ec3f20c4ee880653e5041de
+FileChecksum: SHA256: 6ae8df82b37d768c3ce9370e460a6d85491c9843479b1ebff22387b6ab00d45a
+FileChecksum: SHA512: bdfd54e4360f04641b1bbe382178a7fdc5f729cc78f4c14c5f8d893b3b0c93e04646edcec83a58470e1e855195c17445565a9fa33c5cfde00a507333acb5c116
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95386.go
+FileChecksum: SHA1: 7c10ef6c8b16f70b1c58a276f7abd99a242e1c16
+FileChecksum: SHA256: 9b3c5ee7d1b4da62d0c18cfa39539fbf4e9e46ce454e1fa69c2e5ae901ec3b52
+FileChecksum: SHA512: e6b1e406f2200a8280605e2c2ee924305728901127a69b9b966bbdf43a85201071fa73ced16b80dd02732de5348ac0dc7661019211e348e0ed6a40cb8183da9b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm.go
+FileChecksum: SHA1: 5043163c236e404d606225d67087a16a1ca62e80
+FileChecksum: SHA256: 06b313cc0ecad484868d8d940a6a2b50ae5bc122f2907fa5cd9bba44e27382fb
+FileChecksum: SHA512: 3e449ee45e8411ad4d8e549c38408d631896bb70c66b293e2298849f39bccd8b5ae97d6a59c2af8543c7bc0c3f0902fe2fcf54d6adb38934b16e9c35c1b322b5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm64.go
+FileChecksum: SHA1: 0b19117f6fb831fe33b872b31fc5b9bdae3a3ef0
+FileChecksum: SHA256: 69089e460230321aba299ef9447728f82d91e46328628b3a0280e6f9f2745ada
+FileChecksum: SHA512: 7c4d5fd7e1d557fb10bcc7110343759607024d0270d8ad3739efdd6929c8f41ffa12fdc1691cef1fe1a0ca4b30fc553244aef9c0c21b17eb25a0a4228856f432
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/fcntl.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntl.go
+FileChecksum: SHA1: 85dcffcee808efb9117f2d373a924c3d6dbf5ab9
+FileChecksum: SHA256: 17d765179cdd928346e0588df0f0bb8163e04a2cb1afe894f7dd265e443eb942
+FileChecksum: SHA512: 5fb8143af476555ec64d44ec94770957706933c05e0e760a4652e47cd97e7bc3112d4ed9b630035146fb7356d7a64edeb10f571921f6e813f07742b1794a87bf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntl.go
+FileName: vendor/golang.org/x/sys/unix/fcntl_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95darwin.go
+FileChecksum: SHA1: c7d05583cc7fc0b28952b2d05902e5980dae9642
+FileChecksum: SHA256: fb6aa54ed72a392548bcd7c79a10ce16e9ed70da90492ef13346e2419fa52d3f
+FileChecksum: SHA512: b6708aa340898e5508cc92c06ab0afcfcc661f5e95e219302f0254feb2af468538c05d6a62b9291816a15099ddc09ceb3240fe86356a292232a0881959d19e4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95darwin.go
+FileName: vendor/golang.org/x/sys/unix/env_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-envC95unix.go
+FileChecksum: SHA1: 062cc384f267bd047e8c7949987a0d31b039d089
+FileChecksum: SHA256: 37e409c6745f3634ec41dc174c31fe7948c1250cb9bba2586552883a94d3bc41
+FileChecksum: SHA512: c65c55b73066a695f7cef70e26985ebe01aaa5cdd99226d041f749096f4826505621d4c84cd3e8d7d7c88a17323213461b16b7f85f649f2719d3eedecec15283
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-envC95unix.go
+FileName: vendor/golang.org/x/sys/unix/gccgo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgo.go
+FileChecksum: SHA1: 7e2e3c26705ba8a9d2635f5d4dd3d12bd95cdb03
+FileChecksum: SHA256: 08ebc8019575b659b5cce7af260d0ab79916b3c4de7fd7173421e742b9b67e92
+FileChecksum: SHA512: 1b3531632543500453a10dceb760da3073da7a061ba383d0c8dacc78f30e834b02398018b75dbfbe071af7c983b89d156034502ab580e606ebbba892f4e0fc51
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgo.go
+FileName: vendor/golang.org/x/sys/unix/gccgo_c.c
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95c.c
+FileChecksum: SHA1: 600010f70458d92ee02e382f6880efb8c933e736
+FileChecksum: SHA256: 1ecb71560c25f0a21e90418cd520c00c1005d7dbab5d230930d0e39b3461d152
+FileChecksum: SHA512: df7f7e136bad393990887b4ff7a25433af076f65447143c054ff7a72099492359300fcc4ffd111befd66e9475f29b8739f9b086fdfec99ca153a8cc7d391ac17
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95c.c
+FileName: vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95linuxC95amd64.go
+FileChecksum: SHA1: bcc18e2e7e587c9a052bdaf0952e1cd7249fa761
+FileChecksum: SHA256: 743d504a2e0b8f36ffb9618c184b518c6bf45302f9b01a9d5b269bd22d7aba10
+FileChecksum: SHA512: c882d98584d8f6ddc8bccea0973b10fc94cb1b02ce1d6df693a58be7df3e73b9ace4998a43a1c5ca6024f37dc83d7688bff6ba652cbf3ec72d210a3192e1e609
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95linuxC9532bit.go
+FileChecksum: SHA1: 143d7af8b5837669c7967cd2fec0c37fef2bb391
+FileChecksum: SHA256: 147c4e14a524b135bff3af48f9fc9899f9b7ec55cde60ab0b3b1002ef4b04c78
+FileChecksum: SHA512: 3568e0437a3d77ee554d6084d9fbf5749c57410ca35a07918527eb21afa9ded326bc641619ab6e2424450b8e0ba8ee98622f0b90aeb6c3331de6ee92deb3a664
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95linuxC9532bit.go
+FileName: vendor/golang.org/x/sys/unix/mkall.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkall.sh
+FileChecksum: SHA1: 86b8bf970c1a04a3c8aaf12ebedcda097e18c419
+FileChecksum: SHA256: 87a49acc20f0ea3fe5e464b682021721ca01704da5ccffd25888cd7cadc26cdb
+FileChecksum: SHA512: 4030530337aec68ff7fcf46988803369539870496a3389f9ec1ea35f4701ded815c89c272228c92b69abc23d4c33bac91cef9d9a4456b0437ac74ed289dd0b46
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkall.sh
+FileName: vendor/golang.org/x/sys/unix/mkerrors.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkerrors.sh
+FileChecksum: SHA1: c34252e675cdfd15755d9da840337d0d68565177
+FileChecksum: SHA256: aadb07913935798907d5e39526c2469e5c1b9d90b58e1b9f2f233df21a92f94a
+FileChecksum: SHA512: 9280e776bb5491101dac3957beee52ef9f29506039a40f7eb2437d75251ced2c8989a33e2317400cb0919dcdba8cebf7acb161d251ee8ac396bfe0bb54187382
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkerrors.sh
+FileName: vendor/golang.org/x/sys/unix/pagesize_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pagesizeC95unix.go
+FileChecksum: SHA1: c39350d8dfa1674c95b56e4a9dcabb4aa8651123
+FileChecksum: SHA256: dd0516d9bcec4a46829ecf9b5899d7ae1c4dcc0b6de27933ba8dc9278c7856cf
+FileChecksum: SHA512: 9b44c77945dcfe59397ffdf178ae33796d3d4a53a3277aa5cb95b8af2cc7ba0013a6022d4f6e484abf8bb0bb9111f2c85e9e0c4fe281ca02e7111324ccc81292
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pagesizeC95unix.go
+FileName: vendor/golang.org/x/sys/unix/ioctl.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ioctl.go
+FileChecksum: SHA1: f4893a56fe78e2b5e7bcc9fa12e85ad4ab703a55
+FileChecksum: SHA256: fa4b064d1e21c6eedeea55e0ce5431d749cfabab24934fc925af8f14458ec981
+FileChecksum: SHA512: 3cf0c4c2f6f2d4568ce6fef49eb27bdd217ee70f0b39665dc309892a1efe6abdcf39526c6cfcd0712ae85d05801b49610d7219426376c7de700c91662631b2db
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ioctl.go
+FileName: vendor/golang.org/x/sys/unix/fdset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fdset.go
+FileChecksum: SHA1: 44ad1c1a7faafe90c70df362bbd955a6553370b0
+FileChecksum: SHA256: 61a524d60d6052a4bf751740e8a4f8833b0621dfd34573f1d62b9e3fb137df36
+FileChecksum: SHA512: c9519a86ae50dccd50830fe5e06703986577a63941cf3cf6bbadf5add0549e01a629ccae898c002d9f17e7690612b1d280efb54598819d4b813b07e5de3f0ba8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fdset.go
+FileName: vendor/golang.org/x/sys/unix/race.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race.go
+FileChecksum: SHA1: 548e56645c396aaf011239e1cdb7bcdaf35da091
+FileChecksum: SHA256: 2b7d22204270835d550741a4d1e143d7fcaf7b624070eaf0bc3db43af02db178
+FileChecksum: SHA512: f01ab3068bddda475a0870774bfae1000dd68cc7d3d08fa66c918680004081183751941060d12ff5d8bc98b352dc49444bfb9301eb3c62c42c3e51a68c6487c5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race.go
+FileName: vendor/golang.org/x/sys/unix/race0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race0.go
+FileChecksum: SHA1: 38e01c2e50e5d654eebddc9b92daf4c35ec13fc8
+FileChecksum: SHA256: 32e481eb1663a60e308c7b8273f034cd210cd152ecd085d8e6f0469e59cf9d30
+FileChecksum: SHA512: f9be19097328c04f8f942fa3f293090beaadb56bf63bd5d2c6535b39fb96bc0e1abe26e7437f7705a729c8b9bd6293f2f6b0d5c52ccb2fd829ec19f90b32e180
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race0.go
+FileName: vendor/golang.org/x/sys/unix/readdirent_getdents.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdents.go
+FileChecksum: SHA1: 3e59386ab2bbf38a364e6387569a0022aad7a1d1
+FileChecksum: SHA256: 076c92911fad7fa2ff9442726354b43bd5bf1a749a99e98c9db83ff4c4cfc7f5
+FileChecksum: SHA512: 5e8883d769242d85438e0885235ebb32ab4930d2ee8c2b95e14c418f8449bb7d3bdafd7113cce3b113fd81021db50b32349079d67144719a02f942e81b801667
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdents.go
+FileName: vendor/golang.org/x/sys/unix/readdirent_getdirentries.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdirentries.go
+FileChecksum: SHA1: 0855d62fe1c20bd4dcd206ff44bd0e09e403e9dc
+FileChecksum: SHA256: 974b03c0069a93097e71ccb20cd947db188e833dc4aa2e5d7e51a6c2b6c88207
+FileChecksum: SHA512: 4df0b88e9ee30dc4782dba494338800c24ea133f720929ce062c4e281f1b18e66dfbbe21e243c2a893c7596751bb42a40cf05cbd5be613ef0d49ad30c30ceffe
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdirentries.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95dragonfly.go
+FileChecksum: SHA1: d4e62ac1337a081b85927ce2a1a47742c8b68ad9
+FileChecksum: SHA256: ca6c99e3061644a02a28d20b6b8e6eb4aa50490511528a6b34cf7070f0f44e2c
+FileChecksum: SHA512: 92231bc7ab38194b0bf08a240664d0e2bb377d344ab112922ef70c7616cedb203890a2fd2f757ea41fb1d421904c89b45fa12f78f150186c4b330969b6247c92
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95dragonfly.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95linux.go
+FileChecksum: SHA1: e0ffe46052b8d3d0f4467528480611baa1e01488
+FileChecksum: SHA256: 861f08abbe14e70dbd6c87e4fe88e1fddbfb856f7ae1347dea13bc1db4a729d3
+FileChecksum: SHA512: ac286b2635d26fa44b3c0b13629b31c1417c60c60eb50ed572b6a2be6fbbe834f45e0cd60da7b1e8b2cb8a18bf94809a79a2bea176de1ab997d31a51c6a1c2e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95linux.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unixC95other.go
+FileChecksum: SHA1: 344b8a93ffc00e8e712908cb1a7897055c2804a2
+FileChecksum: SHA256: cc726ed96443897e790197d345780ae253a84a4f99e3f8ead8526e4c2411c757
+FileChecksum: SHA512: 802d4699399b7856fec851dfb36249da2f1dc33c47f96f00fe3b67c78abd4bfaf8c2a5b4914afe14cd06944b41312d66a5606a886b71000f951d5e4555341c72
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unixC95other.go
+FileName: vendor/golang.org/x/sys/unix/str.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-str.go
+FileChecksum: SHA1: 763bd167bfa68c5fb498767be32872ef4908b9d8
+FileChecksum: SHA256: dc743a40166ce093b6051af2e8e2e53d51c519dd19bfaa671418cfc15613733a
+FileChecksum: SHA512: df503f3d02a14467d33658949db720b0cdb2d09628cb87845527601592236eb5647272725e7416cc3fde7d4d635b9401197589a08f123b80d1d4352a8919886a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-str.go
+FileName: vendor/golang.org/x/sys/unix/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscall.go
+FileChecksum: SHA1: 16d9ff6da3a560c96897a317cbdf0cbe6bb35977
+FileChecksum: SHA256: ef58ebd440d9e8d9e21bd48892e0efa2129f8da903a876ee64376f6a1f0782b0
+FileChecksum: SHA512: 26c72880f00aec994d5543db60384313f8c119c019518d91e000f7dff241c23cfb3097282621cdb5de39d908bbb0b9b53a7db85de444a772af0baec128e73bbd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscall.go
+FileName: vendor/golang.org/x/sys/unix/pledge_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pledgeC95openbsd.go
+FileChecksum: SHA1: e4eec60aac54c23a52a360faf8bf577e93dbae94
+FileChecksum: SHA256: 24a7d5dda838995f3423b131dc6d23c35e6377f6351141437e0e52655623734c
+FileChecksum: SHA512: 581f9d5187c46c280541e0852850950153a0f49d00f825d32e21af754a3984ae174305bcf659ae6e92ba31ee5ea920861c4e7163e5c0ed4eb3f6f9c1bf2fac27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pledgeC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc.go
+FileChecksum: SHA1: 3a111fd8546adb98eaf4f76993a3eb7842823442
+FileChecksum: SHA256: 8b11c4d356fa50c8492661d2e6724d7abc72733bf72c6c9f91e6ec760a4ede56
+FileChecksum: SHA512: c84fd208f74675017b7555e972f5e6b8307a56f55f8034f7cd782f56168202dc9bf09ca26519c030dcb0af653e270887e8f0aab1aebc0b1ef14e35824a16d128
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc64.go
+FileChecksum: SHA1: c65f97e9443e8c33f2a77e4a51489096bcae6ef9
+FileChecksum: SHA256: 7217223ab97c825fb2c1ce77ec96528166999b8dcf5ef88a3a678bdf05809bc8
+FileChecksum: SHA512: a3d816f84d52b68109711921e0305e9f125afacae86436e4358e9f8cc9542e8ec24c1e18e3f62a2aa208467617ef507081f19b902039914124bbdc84cbe0163a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unix.go
+FileChecksum: SHA1: 632179e929b7a86a2c74543c3dff4c17a6019ebd
+FileChecksum: SHA256: a9e9828680bea53c9ac39a1eec400ee2fc320aea0ca4d12991eba833341f55a3
+FileChecksum: SHA512: e5ef8f610a3d7c55b45525f6c0efcae268dfe72f8785a92bbfb4553cc15deb79f374320a3d88a2f4e99b6bade95b28852fa5818a140899c04ca5396a9b9f9c0a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unix.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin.1_12.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9512.go
+FileChecksum: SHA1: 605061cad60b6cefb7aeff7ee0ee24f4229b8742
+FileChecksum: SHA256: 8810e189d0f76fd6635f777440c8ab0779427b8084d9946972ca95a55bdd31a9
+FileChecksum: SHA512: 3a8e578aca55b4d78b0059c304d412d989294c33f4d8fb825bb5b5aa9cd57f8dc22bc19b4daf1d1fd66bc1042d44d1f4d56b30c6ef7e200037e10d0858e13e95
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9512.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9513.go
+FileChecksum: SHA1: 67375179b5ca72289da188ec3f37c32216ca29a6
+FileChecksum: SHA256: 9e14f7b3fa5ab532da36e9a5650a98b29b1ef6b5882232d462f8a994a5f08f10
+FileChecksum: SHA512: 4d52fade0adcdc4f71c4a41c1dc78e43084920631ec282d08f57b34e640f4f85b09dfcd2c9d8c4ae5c34f5d7e6a9f087e5784ed7d85cc141caf79d214b6e55ce
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/syscall_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95bsd.go
+FileChecksum: SHA1: a7555d60c1794132836520c1139c2b7797002158
+FileChecksum: SHA256: d233b5059c0c0d1a677bec9602a4fbf11024507b439b4b4a14f8923ada2ce436
+FileChecksum: SHA512: 995ef08967ea6da00c68613747928fa9be15603004de642e69953bf30729a44c9f03ab05304ef2cbf483e539d2176498baedc4101e89980873a0e775c0b5e2a2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95bsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_aix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aix.go
+FileChecksum: SHA1: 11ecf33be76789c29f5a431c4870dbc08a684e40
+FileChecksum: SHA256: 2d180618f5d4cd489c64240d61c414bd36aca0e60feef1d2aaa9a198051f76ad
+FileChecksum: SHA512: ac83bad7b017b7d5751f72d8d9bd1e35c80ed3717a4c2af52d4a8a57ded6b0b8468caeaf2e6fed5a52fa87eb69104934b3ceaf82c6f97eac454fe395aa37c27d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aix.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95386.go
+FileChecksum: SHA1: 83412cb04bd541c9345f6b7ae4d16091ea863612
+FileChecksum: SHA256: d9e94b4e92803ad2bdab4fa100c1f68154fbbe817d020a9a8b05c307e97bd52e
+FileChecksum: SHA512: 8dc3f0df7bb908eece901cf6bff6b130895e1f1f15ac635449407a4895bde9ddbd09092a6ae533de74ddc94f7f05f4ad2e97f00ef520c65e0d0a2d62150a59ec
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95amd64.go
+FileChecksum: SHA1: 9f1d464e20ddad6c1e50d8c5ed9d6486279b1f08
+FileChecksum: SHA256: 2a5273df240ddc84fcfddaf1c0cc376d4afd2e39ebbeb0d9207f5ceb59c38e10
+FileChecksum: SHA512: ffb02de24a9a2953d78a65a008f88e47f2140ebb592eaaa477760aaa263d69f65290c1bd21c1c2e4d09a92ae9360f457b919f20042630922cabee3b1e32ad169
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm.go
+FileChecksum: SHA1: b9c611ccf6314c92cc6fe5a08c8b9f80ce535355
+FileChecksum: SHA256: 434f62b018bdaee93dc7b21c9a1e914e316af5207e8242f987e2c7824cbd9a9b
+FileChecksum: SHA512: 1b296f64e3cf288714a5cde2aa53f3615408c63be74a05a88abb8e5f192d7c97a7e0184e1c5a9da76c45e33517752fa64c5dc662c2460b67ef0748856a425971
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm64.go
+FileChecksum: SHA1: 963b6429afcf8e22e67f0231ee7e62af90c5207b
+FileChecksum: SHA256: 6581e2c480f58f5f736c03d32b9816c613ca758c107437868ac4e0732353e14f
+FileChecksum: SHA512: 40461d164da2f69831cc60a46e8295137746d343d69bc268d6d608bf0eca23ef82c2d63df96aba2526fbf35a2a1a2ae4699d2c094999e4b79ca8bbd0d7897ab0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95libSystem.go
+FileChecksum: SHA1: 30376a7bd4afe33a19dadc2a2053a50983959798
+FileChecksum: SHA256: 4193284440dca25ea755489ad186d69b956661efca75c5503d2d73ea118eb179
+FileChecksum: SHA512: 77095cdca4366d8a2913cd6326b1ee8d1afc8e61e3df638f95df6e51c6e2b7fbdd3616c11ae717c8fc87a0348bd73e08c275c7b89e88d5f53ec257b1892a9b6d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95libSystem.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.go
+FileChecksum: SHA1: 353d1ee8a7bc333f72e9bedaed84622cde0f693a
+FileChecksum: SHA256: 7f91530645d67bd70c6679ebbd1cb3899ee9488779a5d24ad9b4b2849b2bf6c6
+FileChecksum: SHA512: ee19caf962cd524454a0b357048b1eaed8eb6916128112891b88514c6b63caed2b1e1f0d80eb9d4b28e0c07d3b626c16912458b1c547b4eac620ca6a90a68470
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.go
+FileName: vendor/golang.org/x/sys/unix/syscall_dragonfly.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonfly.go
+FileChecksum: SHA1: 13fd8b447d15b753da502b6c96183b1c527dd394
+FileChecksum: SHA256: cda6d3d6ee134a5f40360597eb2987e6805e4343f236f108c431234ed708d07b
+FileChecksum: SHA512: 242fcbe88ecf7b35ffeff8ce8096f27879fb17b5ae862ba52f988ddad4b6f9a9f19fb675928161d9e891a5be2f0c9122dbca71934fafd636fbb2bf972d678aac
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonfly.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95386.go
+FileChecksum: SHA1: 465dbb548e941e9eb36115f01ce4d7de5059daf3
+FileChecksum: SHA256: 706a82892440836f15cc9d930666e617487c8cf332716abf33df00fec46986f9
+FileChecksum: SHA512: 556b14853bebca620a84ed12c1ed3df419e6bfcea6e069f2a2aa6bd4a525e411446c3d43a9a54f6f816c4c116d880e6702bc3a55622b85d309cb2b57b52bebb5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsd.go
+FileChecksum: SHA1: 17d5ac14aef8e966b5ce451b88ea4aa4907a616a
+FileChecksum: SHA256: 1299975fe5ca72d7b7cbd4222ebd7b84a1b317660655e14515b022110fd3926b
+FileChecksum: SHA512: fae61a1547b1ef3fd35ce02cc2eec79a14c1ba47a1b4f7659e2e2efcf08ca9a3b3214bd6cef66264971ab06d69c890953b125c424ee8306782fcc78829ecc424
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95amd64.go
+FileChecksum: SHA1: 018774ab38aed91ff4df385dc97d134122603036
+FileChecksum: SHA256: 9d38b8e300ae1f28420f842d969f2d4e742fe315bdf87e892e2923cafed20159
+FileChecksum: SHA512: 4f31766250ca53f1fcaf69838552078dc08739fdd89b0cd95d5c620fad3811daf1c941d63a2c703c4dd8b219e8eddf0616d285a62da3c4a9dda54f61cf568843
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm.go
+FileChecksum: SHA1: d112fcf6979ab863d9df25912c26c1847796039c
+FileChecksum: SHA256: 9da72e5fcd95c4bfe37ec06348185b69ca28c9cd313f0da6b3f1e29a701003da
+FileChecksum: SHA512: 4ea9766653f33109057202a46a6c84d096b36c26a739ec67b3e0f861e32a828f0ac7e37abf3677f8b7826990d2b0476944eb77ebffdf5ba45fa6299c54bf3f53
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonflyC95amd64.go
+FileChecksum: SHA1: 977100fd35b913471fa892144dca3ff8a626005a
+FileChecksum: SHA256: 9eef1978aa056c3270d4074c486616003a12cd031e0ac29033ff7b19d63a2f91
+FileChecksum: SHA512: e06f595994a73e8ae3b22e844a8aec6574758ec83e47a662cde3708ad092fa5f91fafff6db63a3f7c518b0cbad641c95b3a0b21d2d43371933b7ac62b54dc348
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linux.go
+FileChecksum: SHA1: 7f45467c1f02374431d5c4ed929e8fdd0b5f64b8
+FileChecksum: SHA256: 1897f2d9b61469afdd16bc3cf86c3bf193abdcdde8e5a309ca01273ad9e573c7
+FileChecksum: SHA512: 73e9155f995c43342e12fb8dcf75f2ae7f0be2a465aed2f1316c3c5f33047ee7aae16763a4ea3b90d2a38abadad3fb289b338bcf0cde1329677dba0931c1de0a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linux.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm64.go
+FileChecksum: SHA1: 0d12794a00065ed02003b4b5ae989c62fde4ea16
+FileChecksum: SHA256: 278d66e92a4bf6bc043bdedd2944fec7785b67052aee42faa208b14a1ff4142a
+FileChecksum: SHA512: 1734944947325fc6f22efc86ab70fc44ef46f1107cc46370138d1ecabb3b8bee8ddc136244cc83c49436dcf09f5e24951a6654b90ee4fd120a0fe10ad45d0d20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95386.go
+FileChecksum: SHA1: 816025695ee1e06d3285cfa3ba3ef92e6388e2e7
+FileChecksum: SHA256: 3b2cd008271268c08b80f9677f432834c6cd18f2dc894dda3162350c72623db2
+FileChecksum: SHA512: 2bd1e29752f18817cd7c019457ba13bc322b0d47be747d9f2457a0e702fa082772ca7291e914744995c99e034ec571731a3527fa125ee10a9c5032d2866e4493
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_illumos.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95illumos.go
+FileChecksum: SHA1: 19363a4031f2bb5aa616e6459413aafb1ad99351
+FileChecksum: SHA256: 9077b00dc15f875721082d8a66f315a2a00169bec761193d259b07c68a1f1c13
+FileChecksum: SHA512: bcad2468a12715922d3be20eea62758ef02e449cfb8f9f3cc56d319a7240401b748cd2de42cb2aacca16a84b26f7b69a417d848a7d2aa1352e57b5049b3f956d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95illumos.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64.go
+FileChecksum: SHA1: 24eeaf5b1891e8a1333e13921b0664a815a49d2d
+FileChecksum: SHA256: a8761ecafe777e240bdf133ead9b3d5d1dc742e30e9d166137cd561b036cfcfe
+FileChecksum: SHA512: 0e189265c8e76cd5fcf65ae09237e5bb35785293e150fcf90167ed7de26655a0fc0614e0814c4b381a1a3bbd68d985465576ee0b093ec2023d4b1e7aa716d53b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64C95gc.go
+FileChecksum: SHA1: 8fbbd078955bfb52e3f77c75efe1fae22245e3ab
+FileChecksum: SHA256: acfa996df65a4678554d600f33b633b33dc1e97ebc236b36c5baa106dad23ab3
+FileChecksum: SHA512: 0d791b0392affba5ce837d115ecfc1c9321a6dd322e4c99cc674e1714101f773cffadc5d3c15c504f95670a697d7e19d50a703f2c081992f56cf72c3323cb63e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64C95gc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm.go
+FileChecksum: SHA1: ffc411ad15da183e0fe5e89580fa7f2d6bbe82dd
+FileChecksum: SHA256: ec8dec6e289b27e9f43c466c0cf9bbbccffe576eb6b17751c3ee0519c52db221
+FileChecksum: SHA512: b4795759048f5ae02e292d3541420f10d43247053ebdc67f43973f54d14394f3c0cb1080108ea4538c0ff079a44150257d066e309dd00b3e22c82b0b012dbc4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95386.go
+FileChecksum: SHA1: ebde61dcb6a2b92c34050040769d3fe80f56750b
+FileChecksum: SHA256: a38e03535d1027588168652ce2e86fff9f96bbc9889cc617a1d93768350578e8
+FileChecksum: SHA512: 5d9f08e996488fe8877853c4b53788df82f0df16f5a415dc74f1c50fb7a8d8e284e56da07b4d53e2aa408b292c09db0d5db51f1f6345c164d2ddbb7d6a6e602d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gc.go
+FileChecksum: SHA1: e5be85106fc5e2d5a201aba7f93173c46b0923d4
+FileChecksum: SHA256: ac6983bdbf3fad175a5b562b1c9937be5a84c79acd002ae0f4640df34cc6c39a
+FileChecksum: SHA512: 4b18bf091bf3bdc55ba2f75f85609698c26359419dfa06432717181a718924121e4a2a4754be9ba7d58f9b6d86e9b820ad22708d26d6016bd9ee7fbe14a08874
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95386.go
+FileChecksum: SHA1: c5e6d9cdabaeb20506c1820a8b07825fd1bf26e3
+FileChecksum: SHA256: 2911ddba99bc64de127a935f11800346f1c2c985d6f32dee903fa31204efc614
+FileChecksum: SHA512: b96681d76ed468cf00e738ac94c656be95f6ae2eba3c105ecbca55f8b87de7c48e4a8ae95005ac73c4d9b273a40fa318468c1e2ad1a3b0aee13eb1bdaa81a4bf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95arm.go
+FileChecksum: SHA1: d2284a850d9096be0e1072cde10880c365f645aa
+FileChecksum: SHA256: 260633a1233cbfc7920b046ae90f8efda6a380c16e85703c199e4b3b4306c40f
+FileChecksum: SHA512: 2759d06ae46344af271767098b2eb265471f73895baf6ed1412114d1ad88d695e7be25af964f4ccddbf444740f2133c3ca01e35f52516400cb57f7fa30db2939
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mips64x.go
+FileChecksum: SHA1: a38d5166612f9cad3cd6165d5193aa4667c4a3f5
+FileChecksum: SHA256: fb5a8f58a63b25b23ac03f97a3fc4ec6eaa9ffa771ce7745eb7251dd0ad7cf48
+FileChecksum: SHA512: d3ecb9415f366f9f6181fd42a38ff41cd8d24595582263d3caa999acb583cf01f3b3729f0d0f3e65a459842265e5a9a0c1d21214b5531ecb56f7fde6c064c2d5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mips64x.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm64.go
+FileChecksum: SHA1: 520877115dcc25c41b09cd36bd6631f09194ad0e
+FileChecksum: SHA256: 0f763ae504ea6daf5915f32123c6b5ad11d646176d1b9d937665d1e0046d2348
+FileChecksum: SHA512: a22a2b889bbb159f5a9fec4a1673e1db0f023b776f4a36b82623829f17da174c595e01c24ed59204e1bdbb004e064758a63bf795fc30f7267c62a167be804885
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95ppc64x.go
+FileChecksum: SHA1: 8fd42a5a75d4dfac3855c9d31a8ef7bc1a6cf8e2
+FileChecksum: SHA256: 8eda89fbf80ea0667250f75d600f469b88c4560803f58aede2294eaaca5ec580
+FileChecksum: SHA512: 8e2164f3662df3727533128673719b7bf83d9238deb799dd6940409f69c4b1c593be3f03fd26b266ca413298012a26f2987032bf2b5e2f098f85bbc8c32c3ae1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95ppc64x.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mipsx.go
+FileChecksum: SHA1: a7320ddac5d4a38bae5b2085df8eba1669bbf193
+FileChecksum: SHA256: 1daddeb97550f382ba85a307e7f9e84e647eb3db54d0f73ff7b10ef2ee76ac59
+FileChecksum: SHA512: 126996c58c30b2654de4be24d0a01da2911ee803a0215656700d9ff4dabff767b26c85fe4dbb6a0c00d9bf5a04f11bdf5f51046b57ed159b7e003cebf327a04d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mipsx.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95riscv64.go
+FileChecksum: SHA1: 760604fcfd1a68a754e50eea97a550bfa3b81173
+FileChecksum: SHA256: e01dd7cd984665a9dddd690c3557dbe5abc650672293ef8b608cce70323623e2
+FileChecksum: SHA512: 6b2cc4bcfa354f92213af3fd55e2d2d58cfcf32a28d5d758f10c8cd9b8a481cb3470373b458fad3f95bcf9b8e236d915a8faf6c45c5448a4bcea9e25c7b8ef82
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95s390x.go
+FileChecksum: SHA1: 3c0ff99ee5b117744365d525728efb705b5e7a29
+FileChecksum: SHA256: 764dc058e7faa432462210702228ef8552fa2b629131d72d113a755a7f3a4b02
+FileChecksum: SHA512: 094005a637ccb2ad74b8724a15f6cfa4320debb38915ba89630e1861e896a59df0471e525c2197aa55cbab2d80b8e5dca4c0358aba82d514600b39af89dd4858
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95arm.go
+FileChecksum: SHA1: 64b80869dd4f709810ddae83a08101c32619e687
+FileChecksum: SHA256: b87ea23218096c788148a27eb61dcdd5cc675bc4ed5896687a2c7c60e1016c29
+FileChecksum: SHA512: 2378a84e51f5164995bc6126317d1a142b8ab2546a517243d3c87b443e09736ce5a519789e44ff628b68872ca0f83c3c5e55240254ff61df795d3c94978e6072
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95386.go
+FileChecksum: SHA1: d166e26e009ea3985d7b23a4b550ff201aad0cab
+FileChecksum: SHA256: ffc1bbc48e74fe2325c69f1bea951dd9b112e1879e8fd4d3d889a96b1d8bc974
+FileChecksum: SHA512: 03a993811deb8621850b7a981f382fddf3fbbbe3f861ed525e80cf3a1125b06f5ba79dcab641f8a596178717429a98c0f767e72b26a9f928e8e3d06de62ca916
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsd.go
+FileChecksum: SHA1: 58198d34a98ab6d9ad6b0f2f320d334ebb8ea68a
+FileChecksum: SHA256: 1a278b55bd122b48ff874cc4e544cd263f73a1c11b26c3892785469741ce8f4b
+FileChecksum: SHA512: 1e7de4d68cbb2afd15366cb073f6f2f384eaffdbee8f8950053d0256843b67ddc8b731adeb8064010e34d5a2161dc4becda0fa2640dc68af8e36247c2efecc5e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95amd64.go
+FileChecksum: SHA1: cf1e6d9bf14d67755796ce409fc0208d14337eda
+FileChecksum: SHA256: 04ff6110b1b9c4bfcc54db9e260b9c7d0e9ad5026c5e73a0c75a5a41d0004f74
+FileChecksum: SHA512: 7ad0d8a6258af0a38c54a3c2ea40c24b4f57913b66b05ca62b80990b3c712145da9f9f57de7374ab3bc4b1264921521d2e7232af2b802b555b3927adfe88724f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm64.go
+FileChecksum: SHA1: 4b73255deabdc3f2e00773cb310a02ada37b89b8
+FileChecksum: SHA256: 8407debf792390edf14e6cc52fb8604fbf1c65129bd3ffae4c7afba6a790aafa
+FileChecksum: SHA512: 1dc862e6c9b9771e60a86e83469cfe59f5328c20107bb18d968972471036944449f59de26ec3759471c8d98634c6ad10a4edc71008ce615395cd699fc9ae3a2d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95sparc64.go
+FileChecksum: SHA1: 54a3c66552917d5693115d09f8a3717c8467edae
+FileChecksum: SHA256: 8d12230a44b6c6e9f5da4ebbd91bedc38166cfad566cfbbb65abe727b6bb541d
+FileChecksum: SHA512: d75340b0db406bf8166c7bf4ce58ee561ac7faa59c7b5b9a938e5932d25aed82da51f4c5d64af6256e0b73098cc755e928bb255e4a0436660322b47cb2109c29
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95386.go
+FileChecksum: SHA1: 5f84dbd1377a720cbd38db045076d34cdea49427
+FileChecksum: SHA256: 7337cc3535052788228a2e9d73f489d36e67df1dbc95823489cf714e05b8086b
+FileChecksum: SHA512: 646111293cabdcb40f5ac48e696c8a381cb6801831896b422613678cf13fd081824a0009a061e74471de16fbcfe7c6acc79d464a222c33242aec4f75663e8751
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm.go
+FileChecksum: SHA1: 0a5b69e30483e4b360522fe4dd84f60630e7a943
+FileChecksum: SHA256: 98a1dc68f38a4629b99973a7c9675a8a58744a5a9b672ea6d3acdc0b277487f2
+FileChecksum: SHA512: 7e9678704cdc64626e0250ec6eed77bafb0bde98465781acfafcb93f4661ffe74576bc84b57f8bd2ee3cf4970854497346186d5dd7cf41c1f1374ed9358a4ece
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95amd64.go
+FileChecksum: SHA1: 0aefc30e1c9fecf5a1fdc896000a305737128a8a
+FileChecksum: SHA256: ba3cb3e3bb137312575149617c1e0f7e593ac2a31edb2b749897306df1b1a9a4
+FileChecksum: SHA512: 15a1c3cd44660815b9cae833b791950ee94965e7bc3047dfc5341a0559c99874dc47e0ebe88f361fe23885c6549a8401bd422cd68121dca07ba2e045c0523bb6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm.go
+FileChecksum: SHA1: 95819d1fc2bbc6d322c458079ce0bf95b1b35a1f
+FileChecksum: SHA256: 80496e2f494a31d8777f1f00a109b353b82830bd7532391c8f603c4e515bfff9
+FileChecksum: SHA512: 03e2dff0a09a523c211ea918c1297c411cce549697d4c119bde1a02da31be38e9d9a5075bf544be97bd07517b1c6b9d2db1d95a7662a8ad4b78aae5b2fea147f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm64.go
+FileChecksum: SHA1: 0dde57be71a47e184694e7458617e924bee28896
+FileChecksum: SHA256: b8a8c5142a4ba81447d0e1ccd5695983c773976339cc24a05edc8deb0e677dfb
+FileChecksum: SHA512: fae90df60bc153dd7f69a6c22220ad349f26b98a41ee0063cb6ea2ab6cbd8a0456151b49dc2b971cbb3d5e0d7d4507c89f52a52a73d6d16b37a2d80370410d31
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95mips64.go
+FileChecksum: SHA1: 8c3f2d3d9353f4dd75bead3c20b8dd3df0374b0a
+FileChecksum: SHA256: 3c60d607fa618e7dbee11c16b264c588c0350333959426cc5e83a495eb46021a
+FileChecksum: SHA512: 59b82811a15613d4be25980b71e9985edf135bcca930b4b3a83f0eb509d65bfd894eafeaf0101b1431a9d24a1e7aa20e1a82fd50ea88ffb7c852bbc46c863075
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solarisC95amd64.go
+FileChecksum: SHA1: fa72f7eb25b79e543f2773d3fde389d1576a1635
+FileChecksum: SHA256: d7852e853d2ef21097ab8793ab070d74625f0f6d53e4caed0ab3eb7276aec779
+FileChecksum: SHA512: 02fece9496abeff07778b18f8ca30aadc964c558b438ff732345cc049c6debb4d35672ab57bbf021682c1d01d2aa4f292a2b1da099590954be4f08cdf248ae3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsd.go
+FileChecksum: SHA1: 4940770ca4f4973d71b0a409e5fbc1f2f8ce8c8d
+FileChecksum: SHA256: 17b426c5e69641bce461a321418f297e66cc0d3267538d8ada92beea8a54a0c2
+FileChecksum: SHA512: 5a30fc8573e4411ac3c5f874775b8203caa8a552cbcb6d6628ada17209c27fb6f7216914323cc735e0e342fc979b8ca57921d7a07288fb199191388cdc6f3030
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_unix_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gc.go
+FileChecksum: SHA1: e59f40732c5f5640f6313a4710be78c783672797
+FileChecksum: SHA256: 8d9b9aeacc89999be53bd922b54c2095d3dfb21ca2b03c40a912b778dd1fa582
+FileChecksum: SHA512: 69ffebc5271376be519f35348d1062486e4fb64e22091d1a04e59661ada472509e6b48bc9bf7603ca964326a89cca0d08d3a3352c96209a6121f8dfc034be0b9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solaris.go
+FileChecksum: SHA1: 374224cb8e3d6ba29e2ee1d848843da00cd73877
+FileChecksum: SHA256: 1494e217d5082f928662361f564ca3e0759106c48f347834f18692081e998abc
+FileChecksum: SHA512: dbd8dddf9bad2aee4fc2feb6126aa1c48bf58a3980ecf54ad77ea7389b12d78e9d58166c0c952fe1a26f4f20b059db3be2838782edc580b4ef68031f87f9eb80
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solaris.go
+FileName: vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gcC95ppc64x.go
+FileChecksum: SHA1: 87d86d4d9a28030192e6c842af755d9d27f00517
+FileChecksum: SHA256: 01555b4b42af846b43b12f880f1885b76225c4b8cfdf23d1a15c1b242bd8d613
+FileChecksum: SHA512: 9097d418ac8db447faf3c0a90d64faaa91f160a83ac12158115844cc8949d68fb4baf88aaf806bbd407c13c4f37ab0b1a887bcd7889aee544c8b44f64cb5817d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gcC95ppc64x.go
+FileName: vendor/golang.org/x/sys/unix/timestruct.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-timestruct.go
+FileChecksum: SHA1: 7c4795823e32dec99f175bce1705ef03fb9ec612
+FileChecksum: SHA256: c66825e94bff118443361c76775cd3427c707d435ad70cc75269d29cbe409d9c
+FileChecksum: SHA512: 9ad1dee2e64b78d3bb6114401b6d83973235e6ebffca0d0079d5058e97526fb2978074beccdcbf7655e3ad14ca82be9d5afe88a344cca3a8d50503a97b1f53dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-timestruct.go
+FileName: vendor/golang.org/x/sys/unix/xattr_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-xattrC95bsd.go
+FileChecksum: SHA1: 7d8a5f00e8c963d60d397834ed7e84ee5e2b1e73
+FileChecksum: SHA256: ab64bc91c5768c35b52f04ad5040befaac5da6353253ec1069e7da06430649e2
+FileChecksum: SHA512: f4ae6016b0ef8d8ee5e7ef3637dbeb2ad61ff522c1d11fa0dab1ad99bfeacb1ba737b3447c49ba88a02c6dda52ebde5b6a11b9cb5e43bd5a453e03e06d57804a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-xattrC95bsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unix.go
+FileChecksum: SHA1: 50ae21fa513544e83610319c91669405b69d883c
+FileChecksum: SHA256: 7a04af13866e63ae81d390ff0f3a9fed83ce94f7efde538e0962e3542abe7a5b
+FileChecksum: SHA512: 0b2ca336b531390fb2b73080dec57fef021b757f345b25b4115fe012ba726ba008ef594e2033e4c0a715edcd4dda044c6d2d179ba7bf84c6c02ba5d9f0ac5225
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unix.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc64.go
+FileChecksum: SHA1: cffc00ed232c6cc9442cb64d0c819f318b51db94
+FileChecksum: SHA256: d0de1a36136e7669a5671e6621cc6448a48e953ee03eabb7b2a8bb2bdaa0d852
+FileChecksum: SHA512: 9f0454624e2e26890d1509c524331aa6c33b33e66fc52fdb1bb524defad8e1aed234e5f0b0eb693b92e75593e3c1fb26683f64ebd460124971ec26c241ce0e3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/unveil_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-unveilC95openbsd.go
+FileChecksum: SHA1: 391a0e9d583279380458e846cdc0e731592814e0
+FileChecksum: SHA256: e3c34fddb424af5d9e25558671914cfa3b592b42fef42f94ee8f1ec1cd586770
+FileChecksum: SHA512: ed71235b9668c29d71af838dbd89fbc02670e9bfa2f52d13f2ab4c04897b3f20ab01067a0d3953be766ce93bec1a6eb4af6a25b875ddd4e2ba6c828fd4bf3086
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-unveilC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95amd64.go
+FileChecksum: SHA1: dd06523f4301a8f283b1308a258f60a6ad08d956
+FileChecksum: SHA256: 041f33845813ddca0080daa57a58fffe10b43d5a0637f9567bc0547780a9483d
+FileChecksum: SHA512: 6117340ba93cf481a676ea5917720c11c40004683be6f050037cbb0aa08c0d523b700cadd2e7cf7bb19b136c02e21ca537bd2bbc1e9cf612eadf653baed259c5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95386.go
+FileChecksum: SHA1: 9bdb074c5488e2acd30b92c92a98b79881c74ec6
+FileChecksum: SHA256: dce27f4c80e8379c62d6ed94b3b6fb158b706e1247a784c4b5a810403d806d4e
+FileChecksum: SHA512: fce11d1c45488dfccf2908436563a44c2f9bbead381000ab1c60b5fb65a6a16c3274b8400ae8dfa11de940de0c2939838d00c008ba82d0f0d948e7a8961b08a0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc.go
+FileChecksum: SHA1: b5ac1a8eef0daff19e118cc6a9ec0faa5265778b
+FileChecksum: SHA256: 6af9ab5b66801d9aef539f4d4bd6ea043da344d39cc100307e44f59278a53fa8
+FileChecksum: SHA512: 00bca41bcb5c86fdf5baae83d661d8bd75d4e277a043d7940e0efad11171346f0793076751368cf46263eaf1624d5a11a2f3ae8d067932c697c2a5a6a8c328cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm64.go
+FileChecksum: SHA1: 60b2ad1625e40e73fbefab755efbe7263df06a65
+FileChecksum: SHA256: 033e24b7f69de1994c5b8d27eb77e58ee22862431a689282506ece8d3400b30b
+FileChecksum: SHA512: 8649ef02eaab211dec22c54e9cf58f62f38d8d81b7393a22b0c30c7eb4cedbfa38ce5eb4e2b190f3970e20c87b6a4e70b918cc369ba50e2afe63e80a19f108f6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95dragonflyC95amd64.go
+FileChecksum: SHA1: 7a780c2ea8a193b8f9366de260b26aeb6413819d
+FileChecksum: SHA256: abc38443f1763edaf06a5e74377a0d0fe3a7c8cab09e02d4480fb837fc2b7bdb
+FileChecksum: SHA512: 5c729984453080a52bff54720adeb9aafcf976f0dcf21e91aab69a1b1d4a1c7b58f8de8aac05faf1c339541f032b76e14fd869c300cd1098f8db2aba8bebc2f9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm.go
+FileChecksum: SHA1: 73d2aa36295cc8b0e4503dafcc13a662df14b47e
+FileChecksum: SHA256: 3cf62e25dfc6f0af3e80b8e61a6baf01b12cd31791f0abaa05bf4a0c44310b37
+FileChecksum: SHA512: c6ccc6678446567ddd590e312cf9d948ff34aa467b2677ed5e22fcee1abcefef99b7a9e0db2397d0a462f3ae72014c83cf43109b2ee411dc47a38947bd7bff58
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm.go
+FileChecksum: SHA1: ad012f47fcfa94efbba8e6c827812da8275247c8
+FileChecksum: SHA256: 6022aab01ddb54639c302116b592e0502de44d816ab912e9736fd81b89ca503a
+FileChecksum: SHA512: f1fefcb03ae59f705c5e8e2799214daae265899e3bfe0d0de5a4f50ebe57bd6bd437f564087d2a5721157b2f34428d0694c6051cc1a11d48a3874c87f73fd1eb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95amd64.go
+FileChecksum: SHA1: e99bf29575b8fe6cc44621e8ba6e94194867d80a
+FileChecksum: SHA256: c2286d4de65abf28f2a1a87ea2e451fe30a53afc27d4ecaeec306a38e9615e04
+FileChecksum: SHA512: e57f956499b817dabcb2afef8abece6f704021678d20c927b1897f384f223f9e9b13ef968706589cd216c43a1c5e6da1fb9488d076682eafc3707c12cf9e837e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95386.go
+FileChecksum: SHA1: ea9ae8fd61032cfbefce65f36eff54a1d6bacfc5
+FileChecksum: SHA256: db34ce504c3c0e21ca290370d263bb31051cd64300b160b6e310709892064bd8
+FileChecksum: SHA512: 8b3081c0250e8576a74baf4719c2a78f73ed4a21ca600e9165132f7ce76fa6754e9e08a763889ab7eb012ad3b764481d9afbfc20c58f17138a07ee88ff14fc8e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm64.go
+FileChecksum: SHA1: f3cc6ec25874055518358739e1a164dc679f8232
+FileChecksum: SHA256: f3ae277cdbc4df7a3c0b7f0ad3e9ebf71be66979ab470fa25e421faa029b5dee
+FileChecksum: SHA512: 4576b9d17f15c81419cf19995bcc2a798784a9674c2a2666b3b49b8346cb15abacdccb3f7011d3f3a7d071969ababa84ba87359a2fbcee1d375b97cef4b8d80c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linux.go
+FileChecksum: SHA1: 7d18d39a7cc06031930698c679a6b074ca09cf71
+FileChecksum: SHA256: 8f0b2b3dd6f87b11cf6283a7482893b2e8320345f3199683ae6c55a039303bf2
+FileChecksum: SHA512: 67f780fb3d6a633f2020bcf329b6fbbe890257cbf27e659d5f9b8e711d66df35b298ad84bb34858390e2afe2f2678d03cf0e0c09c0f67a274dd7a03915515750
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95386.go
+FileChecksum: SHA1: 2e6ca7ec5f39137ce94b49509bc1e53c9b1d6260
+FileChecksum: SHA256: 8498a7444e3ff14e1adc77a8b87a8652ad6dea8549a01d5e9d9ff3a0734479a8
+FileChecksum: SHA512: 8bf052b94f03a694250c0d13f3c8ad4a8976de7b7db9cd1d95dec50f86df5afd85ca000143940f9015a576cc1615bea73cfce7db7d568ff9fbe03affd45d4cfd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm64.go
+FileChecksum: SHA1: 84cef2e3d6e381a12fc3eb1aa6ca26c0fe1ee7db
+FileChecksum: SHA256: ad24c38656cb121dabeca47b11bd49b1839ecf733b938c1ef4013132cf319c13
+FileChecksum: SHA512: 33b6b035b89987888e0848e06b6c77ce0e3de5a36f7044059c50e17a86bff6a387d1c22170491898641dff53ba9364aeed359f088aa7816ff94366e9d05f8385
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95amd64.go
+FileChecksum: SHA1: aebf4df26c24fa42cd4e7642861e0d93536b593d
+FileChecksum: SHA256: b6a1a4b6e3906da688e71f3d1c70b3d1d2067f02ca3e6db029bf86e3274bf07d
+FileChecksum: SHA512: d82503c1c49d6229b9d0148283e563f1618f331aa0c250265e27308a32565e2fa38ebf2b3c035ad23d5fb3af3870c5afe73e8e7492fc08749fb5848a2aa436de
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm.go
+FileChecksum: SHA1: 631fcba71d3dc469caa9769b0336fdd436c23dca
+FileChecksum: SHA256: c9d389393fb7f2ca8678fe6697a55fac75d25ce6ba7617c5f4dc074a37df3cf5
+FileChecksum: SHA512: 052f433b3464e249d393eb38316f0ab07449f93f396d4208ea6ee2bdf832d1e9f5f292f6296bdb7733333b0a92b3848c7c59d738219084a0522e3401dfdef4fc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64le.go
+FileChecksum: SHA1: 21617ea93b03fc54b730c57a7db2df87f82b697f
+FileChecksum: SHA256: 325b673e4b5c6a47bd416faf519b6bafe05878133c2cd154c46e6e4a1dbdc303
+FileChecksum: SHA512: c63bc8cf8e4c7ba36da3b2c7d12b336881a7bc9705c88d0a10a2388c6d12f9d13d2664d722599c4e82f6a94306e7e5ec768211888d71b98752c3830600e1d52a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips.go
+FileChecksum: SHA1: bc47a96d361e468d016157bef0df5d39478f6dcb
+FileChecksum: SHA256: 794ee5333f6ccf7be048f47171a94442eba006601a51f345c7c49e0b0f68cf74
+FileChecksum: SHA512: dab39e9e300ae3629b1a9e23ab1a2e35d64489655485088e9d646665a7a26be5e1d7a1e98a160b9f3a29182521a9c5db86cd418bdc5af2f7fb778d312b0158a0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64.go
+FileChecksum: SHA1: 7233b6b3787ec4cae67f62c044b573a83302ac6c
+FileChecksum: SHA256: 27ee26bcad3b27d43ae67c0b7a303b0ff7b620d683c0b39e34287d877f735b2d
+FileChecksum: SHA512: 0654f6455867a3895fcb98f25f9e6cbaf46fc828c96726c791b5008b29ceebaf898d6d2ab35787a36af27cfb7d7f0db7271b5245cf116c81596bb25ca27c9b81
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mipsle.go
+FileChecksum: SHA1: edb072f90db736d66aa5a7517a92d569a24a90c1
+FileChecksum: SHA256: 7ccebd83c92022ebffb29e38d0ea7a59c1216faedc7180b4ed70db764723af42
+FileChecksum: SHA512: e81cb195e3addab6486e5a38c976441c497b5d3689c35c1fa88e3439e74611f088dce663a8e200d46545d817c4dcac1d3440e6256b1ba01d1cd85c6b6601c42f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64.go
+FileChecksum: SHA1: 6d9579a47ae55d0b678c07a4f01eba80e36ddb9b
+FileChecksum: SHA256: fd6d487ed6b7606a27c80617063dd833397387ab928c55dfc1a9937d8b57a31c
+FileChecksum: SHA512: 3750ae119558478646e728785234a0e0787a2ad1c00824988e1179bd9b87cdc7600c0fe124a74df223f965f629a8a52db5e7f22020d48e2189f82ae6e0911905
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95riscv64.go
+FileChecksum: SHA1: d59f589e6a484ec8489a11bf087cf7a9d67282aa
+FileChecksum: SHA256: de7a45aa5a5f82568d5eeae7d78e3e3dbe8a66af60e64abc5014c9cc576fa043
+FileChecksum: SHA512: 11c72838965d701e571e51281e1ad3de27bc24bc59ab841de7c4a928c6a2e0d56ff8f7a0f98e983f28c44328fb647cd46668ed2bd9efe173e4e6c21672babf8f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95s390x.go
+FileChecksum: SHA1: c4ec87c6dd1ef670548522d53a7a7b4cf816f4ca
+FileChecksum: SHA256: 4d3e088f4ad187d462bf1f88fce494e98afbfc5871b845d6d235479beef660cf
+FileChecksum: SHA512: 7cc1d6d168904c6b3c8e911ec2b521a1569e0a5f22ccab00aefac08a1b909b001396a38a73e0bbc2bde9354495e4085ced56660f7070403f4d66c71703acf4d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64le.go
+FileChecksum: SHA1: 29212df10ecb3072c21b390087ce74bfbc44a6b9
+FileChecksum: SHA256: bb91c01b2126f9c24dd1557f431b3a5d7ffdcb8afade150138e4b969413bd5e8
+FileChecksum: SHA512: d5aece3bbc35cdefed93030032c7f55b938a9787678915009a4b0cb98d1a3c31e14033dbefb38ca64e6f7b1c3f2ee00b404c3052a3be74626fe6815252009358
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95386.go
+FileChecksum: SHA1: 1127a7e9db20ad9d862bb3cd62c80168cddf2f7c
+FileChecksum: SHA256: d139f1c5fde823ff53163bb5ac837715c932687c2fad25291180308e763938d2
+FileChecksum: SHA512: 5a4fe435eba7264f14a0bf816a52c2ad3758202bce5de658cbb25002b82db05bfb95d1ce0aeb68ff71e7ef0e37028376946c7125e5b2ec156231174a6cbb09e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95amd64.go
+FileChecksum: SHA1: 6b0871f3e428703ae3f09b2dbfdfd0ded9ef495f
+FileChecksum: SHA256: 796b6834ebce385f2f267dc86a4cef5e6cd2622ab638b14961b029724d7147ac
+FileChecksum: SHA512: 404cb1e9146ab7e73d3814c513c6255e7e796150cdc408bd1e145531ae8e4522fcb9c1facc2f2731aed2f340da28e0a8990902578e22e61ba56847ca43915d59
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm.go
+FileChecksum: SHA1: 4d678f7fa83ff32fc99b05122c24ba4bfe8db316
+FileChecksum: SHA256: 35af9d2dc0ad32c163767af0343e49112bcd4f7d3053e880e6a14854a293a501
+FileChecksum: SHA512: ed26d52823c78f113894dc2766d9e39badd226a6aee801e89fde25c11bc1750fa71fd4a166e890aa2def5034bc30db44b54173e3e0c0c8d03af71871b66d3c31
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95sparc64.go
+FileChecksum: SHA1: ec03b2ab15964ab1e227b874e7d4f0187ed6ba6d
+FileChecksum: SHA256: 36439cd6742f4328fe52feebb5aa96f3108e75027fb5d4cf1c791720e28509d3
+FileChecksum: SHA512: 4a34857daea030f1ed95aedb747174639f6000c930ae8a56044a6b556c58de198cecd15983efa186dae76f5a8788e80c28c2bd0a52549eef1759e0accc5a2ca6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95amd64.go
+FileChecksum: SHA1: 1c1288982a40946d06f97cf51abc156dcdfdedd6
+FileChecksum: SHA256: af061ec89d09afe4ce29532ebf0aeb57a653bc435fcc5b727803c7287ee3bdce
+FileChecksum: SHA512: 6559093104d3a5666ba66e2ccd3ab7f3d6cbfe7c2707ccda131f5f9d6054fc32acdd6d165e95d761c4f615e795ffba2ffb9c475541160d881ff960d12f8e19b4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm64.go
+FileChecksum: SHA1: ca1eab4b7c42ff3cdefde0ca8a0d96912d5fd235
+FileChecksum: SHA256: 6f951b07880f193d7d612ffe724db3503658ce539bba21d852873898eea96f8b
+FileChecksum: SHA512: 1608e30cf3ccfccc79d1c2f959e7135bd45dd948c4755eee180e80d97591ba32536b27c43cedebcbf6197fb033e9e1562cda7fe81a1c9092ca8e9c2ea87b79c8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95386.go
+FileChecksum: SHA1: 5d8d0490817405d99f27f727a4fe67e2da868c12
+FileChecksum: SHA256: c3f9d4a1b0314c67519577234453d522870a6458f8870e452e06fc5df7a260f9
+FileChecksum: SHA512: 2e4daead058eb4b2e60872f55589b5bec86adf64afd0db137e15a8d3b43a5d2d157211754738d2067b159409a47214544e1847c926c18c44af63807c37a3b413
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm64.go
+FileChecksum: SHA1: be407749522a5e1d8dbc44d55c88e66b0349d294
+FileChecksum: SHA256: e48771110b7875bd99a876cd9f23f3ef0a582388dda9c8853164a03ed8759ffa
+FileChecksum: SHA512: 1f030e759773fc9b98a8dc7e4997c167793605352b85549e3b610a8f262495cefc8b7b41fa171d1682f421090921b48a5e98a6d278cf8a74cc2a4c7790220351
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm.go
+FileChecksum: SHA1: a09b53c18974c9331e6ded6e794cc16bc57fdccd
+FileChecksum: SHA256: 1ca1c7ba821079c9dc20c5d0d4f944c0ab317059d56fed71a9236ce9e489135a
+FileChecksum: SHA512: dbf66e757e91fcbd00db6abea62895168db0494a4945b98d94371b5cd345ba488eff1491155bbd8ab520b802fcdbb73b931348d30cd9f892f9217e174fdba451
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95solarisC95amd64.go
+FileChecksum: SHA1: eff9cd5af4a0b493bc8ccf956a5ba3a904b21669
+FileChecksum: SHA256: c827f19894dda3766724498fb9cce0ac68256d032d6fd91cd2e599cc05870701
+FileChecksum: SHA512: 8f898eb1e3c45fc3736f4c03cb5636c11f67fee39d710c73f9968d9e58a6a47390747213907831dbd4b033ceca397ebfe3d870e4d9a3492d1561d35d531e8ee1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95armnnC95linux.go
+FileChecksum: SHA1: 01711f63d7b6b43d70fda371ad0c7235079b9f8e
+FileChecksum: SHA256: 7d3fbfc769af2b1cc05b45491d209900872150976008a1f0e1edecf89f774d82
+FileChecksum: SHA512: 3e5e3196a3d495d78a90ef7311a89abcf8f372194725ebff7c8d9f01b0c8001eb6f7f0c58cf349dc02b03962e1019194e79fd8a83fe44486ad2ddc04cd8d8310
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95armnnC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95linuxC95arm64.go
+FileChecksum: SHA1: d426ee2cd50047f351f64fd9cf0bc86c1647b1a2
+FileChecksum: SHA256: 731e8904fff8c05b1b90219bdf8e463411bb8de8cb2a94228332ea60974f2c95
+FileChecksum: SHA512: 2bb816ea236b9a38505484d624f0e397a1f7f375a70d81ac961feef543c687703f34649e95d489b5bc999b6510d53c69430ca2e5511b8c85cfdb15434a001b29
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnC95linux.go
+FileChecksum: SHA1: 650ba3d33c894ed562d9dbce8aa6b74cda2f4306
+FileChecksum: SHA256: 4d160349cad85abceeb8768a93a03fb15b2c00a0c0467ad2fc30038ea6e10b8d
+FileChecksum: SHA512: fc1e265ced1ea4bfd36ac75c07779e3ffc4be6e401f0d5f5716a158f6cfca990c5b2f5e30b754eea3dfac3f88136f87321936e1cf0efdc756c109dff133a1538
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95mips64.go
+FileChecksum: SHA1: 3368bd9aec803607f45878624d86cbe976b370d5
+FileChecksum: SHA256: 8cd0ea2ea5573c303ffd322beba50e6c66183069fd5d580113cc10adf0a60408
+FileChecksum: SHA512: 82f9ba2dab1edfaffacf3e9a8f888a062084ab97683e666a4a99c7db75f6e97b5adcbc770454dbb4170a89f13045bbb777fdbc8c52b5496ed3232dc25b6710d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_x86_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95x86C95linux.go
+FileChecksum: SHA1: 1edc32cc84cd4fcce1fef3c0cd50fcb76c5523bf
+FileChecksum: SHA256: 650347c4f5479953b14f52388e61c528031210fc831116b7fba46fc1d6bcb9a5
+FileChecksum: SHA512: dcdfe8542a7fcd2da21a8651fc4e4a72da540ce99bf424c3e30a72a04a25a27038347816a9c2d2949a095784d7ee25b7f8fc333db3b4c00e051dd2bd5bb49d42
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95x86C95linux.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc.go
+FileChecksum: SHA1: 8cd11e8a20101cd0aa2d5b57bb8a74941df64361
+FileChecksum: SHA256: fc0f89b78849924fba83d2dd684d430e5b8ba1788a14d9a691b064c68d80a268
+FileChecksum: SHA512: 300887ac6f82491d872134ec7033ac6f08272ad2bec73a8b4de6fb435d8281be8cabe2995a6a5b1b16a60c02216adaad0ab81233d94829c68d0daf952d543a2d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64.go
+FileChecksum: SHA1: 2f0589ac4ab989070ddbcb76a34db4df07a4bc5d
+FileChecksum: SHA256: 33afd55b417f08aa08e9994e9eef36184ba9505c4b55a1b5f8fae0ea77161784
+FileChecksum: SHA512: 62167730af269466bf8e7f8ab80c7290ffa7cc7fb97419b0df9b0ba884b6dbfda4cd62f779099c8bfc597160b1df108e56d9a80e6f49411bfd65d0757b16f323
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnleC95linux.go
+FileChecksum: SHA1: 3af854105d96155b843b970c82890e1b01fca773
+FileChecksum: SHA256: dd2357dcc25d87fa8c859763fe25132f2e8efb32c13ba391d8d360c0d493fd04
+FileChecksum: SHA512: 69cb886941cdce0ea5e786dba2d0b400eff6d3777b502ac1a39d32da49f4b541e4a339b8ab50d50ba01158313588fc6303ab5e0c006b832528dadfa75b99032d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnleC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.go
+FileChecksum: SHA1: 21ac44cb71ed4763fbe597854a4f2796f4c94558
+FileChecksum: SHA256: 0293c22f49f3d0f40c82cd5bfd6cce65958d47b34b44d658616e20e77f51d124
+FileChecksum: SHA512: 2ef864fd0e353d227fb636dfd87497d518162d238290f058c04e505e490c1bfd4e5ca7c1cb1ce6ccdfddc4f56f19263e91d1b7ef91f0a2a68c4b36f0eb756c75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.s
+FileChecksum: SHA1: 2ec0d08891fc6066245a55e430c344b9dd5fef81
+FileChecksum: SHA256: 0aabd07db08bf8ff83c6154fe98c79a35d1b0160b2390e9039ee1400ad860f5d
+FileChecksum: SHA512: ca62cbdc60180e7fa9112fb9182a4fd49a131112903f9dfa6cf59c71b478bc00864dc8924faf0ada56ceefd06f641c8bcccc2a941edcde4bf151509bf16551bd
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gc.go
+FileChecksum: SHA1: eddbb9145c579dc9e5f2f0a6640c45ebe6de1f11
+FileChecksum: SHA256: bd29391b79c5a3b3ece0f9827e48323bbbfd9dd2c1a9bfaab0e93a1e6119526e
+FileChecksum: SHA512: 45ca00f38f1b5629d68ac7c5cb54d8995c45eb40afc575f885fe1b605ff52828b11e0a8a2be34c39e0bd2ef48ac6a4e26599db1b5f253aa58a5c1be935ade809
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gc.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.s
+FileChecksum: SHA1: 040c9f21bf298373c6471ce7fdf78ba165f51ca8
+FileChecksum: SHA256: 8dab384cf81a77db48943209cd6f420744bd5e78ac3cf5bd0fa6bc9307e406c1
+FileChecksum: SHA512: 9bfb30e1675c83c51221e48ffdeb0efccbd0610e43dc7a9607643ffadde249135feb6806893dab242b063d05fe3b7d13d947022f0585ff5f532e1953896794e6
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.go
+FileChecksum: SHA1: 72ac17a21168eaf5b6619a6262368219da9cb176
+FileChecksum: SHA256: 60e9da25ae12f0b220554a993b965ad15e8c1415936f89ca2b6add3a831de98d
+FileChecksum: SHA512: 848c199e2bf4e25a0025a1820df0abeca81ceedb052f424b6d6f8d19f6d0c955f6056b460a66228c485bbe04fa0ca547123dd3080ea9f72af880abbd50b93573
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gccgo.go
+FileChecksum: SHA1: 67de6af8237ed1375854f09c463509fe223e29b4
+FileChecksum: SHA256: ec315284c437b19512264894baf9ce1c7c64340a9bc053cefe0089563710bfc9
+FileChecksum: SHA512: 13174b1fc01e6fbbd6bef8516a2e45568741ad794a708ad466219610b32a12975e12ed87e95dbd3078946bcf361e982ef9ea4641ce0b2dc61248c821b7b03a32
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gccgo.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.s
+FileChecksum: SHA1: 2d4291c3127806a10653c467d41e7ac83491b0ef
+FileChecksum: SHA256: 489454dfc0a7553e905c03d3871ca6f6638e0fdc3ac5d107e00beef26882445c
+FileChecksum: SHA512: 64fefcbc98b01b0b93852b5c8408cf7064e3feb87749401e4d56fb2679a37df7627b47c3228797bae4449039f488275acb90aef42bf6243eb32066556b0d955b
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.go
+FileChecksum: SHA1: 2a0b1a520acdad3b72e8d2dd1fede7aed265b93e
+FileChecksum: SHA256: 3c3c9c5bad4b854de451a6b7099f384cacb5181701efc0d64f8d9ae86b638417
+FileChecksum: SHA512: 72b2d1661b6711829ca4c5c58fb0a28a446db9762b2e519162860c9cb70fdd5c26991a4afab637f4475a7a538d5d503a3b5dfc6669702c54ba5f43f924730bf2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.go
+FileChecksum: SHA1: f1f06c2534a6a072a2aaf2fdb2f51c834f9909ee
+FileChecksum: SHA256: 447ee31f3ab0bd61f6cff6a3ba7dd4e9da7e381ee1206ed5881a4138c352fea2
+FileChecksum: SHA512: 542d10971d8a6836b6315d79a6dd006e9763f91443135781b33d27095a7521a648b9be0bea0b63e05ef692f5cec576c50ed3ad70869ec5b442e805d02f28f7e7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.s
+FileChecksum: SHA1: ad0a6f96e045167e3ac971943c4bdf818253c1df
+FileChecksum: SHA256: 8594dec602f0474279d4e2243c079f3c791bcd2a878a58e78d31c82f9663b41f
+FileChecksum: SHA512: f2d3c62ec6f881b832d4fee333f8fc46c7726cca15b34c8d1494710b55f85b18b33a7db7911152b1207138ede1b9a09057d203f76b5b8a60f472934db192d6a3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.s
+FileChecksum: SHA1: 07c20d3926175b7b53f6dcaff7728b3b470db02c
+FileChecksum: SHA256: d0378c26818b831c4e80123c812332f9ee31e40098cc5a769d52ccba5b54616a
+FileChecksum: SHA512: 5d7331ae95a6af20fee77ca3274a2b5848f3d41f977bf11388f1dabd6eb420da36eb8fce1ff8e27bcc8a8e73e186cb2516824810a378c08bd8ed708888dd3f50
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.go
+FileChecksum: SHA1: a08f2e5d7ad98bf4f03c9c6d060b3cb155aad695
+FileChecksum: SHA256: b5baaca448c93aac0ad351720097330592b06ac11c96ce62f46225b66e60d04a
+FileChecksum: SHA512: f7368ad6339184d319e6693630f2cfa7415031f7d63da7b238d8ce6be78d594c87a573015268292a357d6c82378f82f15efddf8389d24418fb80a8827711ef13
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.s
+FileChecksum: SHA1: d918b53a9ebf922696c54cfebfe796dd59707592
+FileChecksum: SHA256: 69c73094b3c89fab57120634baff58c81d3734443bf58034841a7dbc2ba38fbf
+FileChecksum: SHA512: ed5cc6b805285f3dc3437a410b739da17157afaeb76dc8e7f78d6ca1c4bed67b2bbb5852a11456fad57b0129db0baa065a2013c93a654daacf466ab63534c1fa
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.s
+FileChecksum: SHA1: 76f5f1eebd22a7e5af15de0b3373d8407c82b650
+FileChecksum: SHA256: aabe9c06e74674ef8cba4529feeb2c4641d089e7fe6b32b28ec31afd3f8d3cfd
+FileChecksum: SHA512: b6698740571f38161f9de2a0e73e3838558af750746831e2dca47f6e28efafb8df3efe373ea34770e5794657627c2f82be0f3c99d98c3db0b763b2c05d111806
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.go
+FileChecksum: SHA1: 45a77a0f82ba447456f45f06219fd0d6c99bf93e
+FileChecksum: SHA256: 358cc3fce35d633ecf6c34abab0e8e450644f6236052be3afc25d6cd05874ac1
+FileChecksum: SHA512: 41baf2db1a6464553196569da605bba1a6215edf060b2294ea669c5bfd4763f21cf64c27873e3c540d8802047f90f6fd47cd1822d034444746e41f7fa28daf07
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.s
+FileChecksum: SHA1: 923e633dbcd60b1fefb26f2723c1d6228780db52
+FileChecksum: SHA256: f9b22c197a913e4d36b1cd81a34ee0e289905d061ead48235d996d765babb53a
+FileChecksum: SHA512: 7f557134d8ff753851561c4bdea3edeabcd9414e659f0b23bf529f465a820f4f07c7314996a7cb8776e8b6dddaf2f576e5a936faaac0543fc2c96faa96471aa4
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95dragonflyC95amd64.go
+FileChecksum: SHA1: eae1ead8826e314f0db5b677e576165b1dada52f
+FileChecksum: SHA256: 99e5e1bfed9acca550fc11257823c0cbc0584e2cb4f42b8d28a7fa154ed2d697
+FileChecksum: SHA512: d6c6229a6f52644f978c131f5b990bd0d0b79fa9071177f62f26074679ccc477f372e9fb25f7f3a69c0621d58bd11a253495e674240f0473685b2bf29ca13b73
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.go
+FileChecksum: SHA1: f12b4e5b8f519082856be9f61bf74bc9160d3018
+FileChecksum: SHA256: 7e20ad6e277fab0873fae8d18dc8044bbcfc1888cc099988258ce24c95ea14b0
+FileChecksum: SHA512: 1ae818943d08905e612db532d78f99561059c2e6f34d8fa3eb9c4ee2d6f212fc3ce88ba4295ed60576a9d63ad5d59ec602b7e3452c2d2e2fbbb6490a0a04f083
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.go
+FileChecksum: SHA1: 0e706b9d899205233824de7b8da282be89337045
+FileChecksum: SHA256: b5c30a1deb80d28c125907f847b79b47b68a93e7e0c27cf0fa09278ecfcb7c7a
+FileChecksum: SHA512: b022492bdf175acc9e2c1193e77e41c93a827fcda4583a06704a0e7893f75cf9a594bfed2d1b05226ddea641c6afaacedd1283cd59a3400ea60d1b31b810cd1b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95amd64.go
+FileChecksum: SHA1: f89f4ffd134223aa46c8925e3f7ee2fe1218af05
+FileChecksum: SHA256: b70ca41bebc47498ff56b51dc741b868ac394c2fafe46fb032dd0ef324512d00
+FileChecksum: SHA512: 148f0ae3dde5332b61840b5c45591d70d82bac9f49a394d9e9d6c1439e615fc041c6e1ea368e49c5060d26478f8ac894ba9d803772619e6e65ce45ebb15e4532
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm.go
+FileChecksum: SHA1: 63eeb99e5ddc9dac0c45e77773df94d5402627d0
+FileChecksum: SHA256: 799ef6d19b021a40a998a9183bcbce04b7e0636cb89a9ec486ea567e146afeca
+FileChecksum: SHA512: 3e5c3860342f7f729eb71c8a3ffc48a040c351a81ed467badf2bef3e191dd9eaaabfc1a1f80aa7f9196ecb458e386f7dc19486158f3643f8faa1e858001008d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95illumosC95amd64.go
+FileChecksum: SHA1: 435348c2eebe9d0a845a13d57e417ac8f67e27db
+FileChecksum: SHA256: b23fa55f31c26d94d05e9d4083780696c36b77e0b03cf797c48d96e2d137c26b
+FileChecksum: SHA512: 61fdb2325b79657a1b1d81b4ddfcb31a29911b464cf8123b9a6e9daddf507dd141a474b9ff0be7a7e6e07b733373c06311387efe2785b89b0f1a072f1a3d9459
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95illumosC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95386.go
+FileChecksum: SHA1: dcde63a6f1695d623d8ea61a64811dced919c1de
+FileChecksum: SHA256: fa85949e2bf38264ee048cae3e2c2d3dea8901ed152a8d1b63336bb628cb7918
+FileChecksum: SHA512: e63c6311ac2460c0b328ccb4ba510996e205007f5d4760c0a044b40e05a2ceedbf3db4125efd91aac7bb9c6a80b2b6250d9ec54d8a19617d705867e63690925d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linux.go
+FileChecksum: SHA1: 1061bcd544b819bc08706f94c562e72b0adbae91
+FileChecksum: SHA256: cffb3f534e57d936d9f9ead18f56b3fbec15b8e1ba57f61cf1545e51fbb8c956
+FileChecksum: SHA512: dd0e5bf05cabe3d6aec9a7eb7a772dfb7b6b79789b1ccd554baa98c55ee8ead33520d3c5af79cf51e3c94652d8f7152554a5c1a88ac86cd8115d8d149fd4f618
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95386.go
+FileChecksum: SHA1: 18a34a1ec99a1a49bac8d18345065fad3cb4da56
+FileChecksum: SHA256: 4830c34f311d8bbddb8f3eec95a05313af338bcb9a7c5feac1ebb4c20db14bd0
+FileChecksum: SHA512: 89813b0622d9a5961bab1c1b543fab8dcab13fd47522e424a2e4850dc4c13010ef26234b8e8c21af746880dc55d6185bf528f95c367a5cfc54b352e9fca77a1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95amd64.go
+FileChecksum: SHA1: 786413c46d4b1e274c066f2669a531f898a89125
+FileChecksum: SHA256: 0c12cc54d6043f9cd27ce23a0e0f199fa65ba5f0a1d4f1327b785425c6d48173
+FileChecksum: SHA512: 7b185fda6794ef00632372a5d204c79d1ee14997a3f2fba357fb297ad360fb937c333be15dc2d0721c6d4d1b7ed89a13cad05a23ab3f72d8f80af307f235abb9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm64.go
+FileChecksum: SHA1: 189ef111e671156e59a79fd10d832f2b13b616e5
+FileChecksum: SHA256: 102525c0b60b93e1b86bee458ae000a334d989e2d5ff2bf82f350a110f4ba147
+FileChecksum: SHA512: bd994318800e4ae4dd2552fb03decf16a09093b159404b46e9555b22a399ff9e044662cc2415b51d9cbc4428e1e88b62f3a260587bed81a932ef90cb7327537d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips.go
+FileChecksum: SHA1: 1a91a27ae4e964266438de7c763e6f2b2949a9b1
+FileChecksum: SHA256: f19bcbe3adc42861655f994690e5bdad1e658cdc54d51d208f64e49e2a7b3b79
+FileChecksum: SHA512: eec58ed9f7814ec5125ada6054de7929a90cce0a88abee14c86d9f9c1421ddee57dbfab79bd199a9d0a69f9cb8150ad9072091d6606e4d6404546156034baa50
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64.go
+FileChecksum: SHA1: 7fca732b3b4cd058d693bea99a63e45e83397e04
+FileChecksum: SHA256: 37ae15d57a979e0e25bf18572bd8a5f588e4f397e1939eb730b8455e5f34040f
+FileChecksum: SHA512: baca13a2c0a6f082a3947e25dbfb4d8ba91dc043833c014f1f7bde6897a7d2835fb445c21c6a686c8e4a1aacd3509b0f99fc31c4bf21e08f6d931ebadced18c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm.go
+FileChecksum: SHA1: 72a35e682604240c37978d83ac8a4767c8e21dcf
+FileChecksum: SHA256: efe850325343fb8e40b02decc0c0e63d25fe44101f3808b6b273a86de34d3885
+FileChecksum: SHA512: 84103e52d5768c11cce608a4cf943dd778de9010d0f9b907b54ec5bdb758a6151c05c46927b203b4a57aefcf7dfc1d043c3689e806f12c52516c7ab1f29f9953
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mipsle.go
+FileChecksum: SHA1: 415312cd9371f0787449025a753d44cc0a7c74d5
+FileChecksum: SHA256: 4df6a9e0f43920b200b645275101e32b7964215f4f08160a509562ef6e09fac4
+FileChecksum: SHA512: 47fad464ed54b62ea983da3626c21eaf58641ad4c3700c5588bd89cc197cc84c8f513e13417d7116e8a084aa1ab0f39ca66837123d000b972839ccbc08c30f98
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64.go
+FileChecksum: SHA1: 16ec31c9eb3aa6bb6d3974db10f1b3934c7ea0a4
+FileChecksum: SHA256: 479d84be1743402139366dd9172185dad098cb3622f6fc77c11dc1287364e74e
+FileChecksum: SHA512: e57bb27a326b197b9f11603caaa647a74542627827fc29ac488d3eedd3a7ec64bd6f430b4958eb22f09e4d25bbd0421e68f670e03d0f403f000fbf7ba3cb3747
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64le.go
+FileChecksum: SHA1: 193626421a354d5af959dc57a9a761d259162aca
+FileChecksum: SHA256: 714328e04a8d2ca9b1c23e36c68705f77bea69b20b6f8c3d0d09045a0599a084
+FileChecksum: SHA512: 76537611f8a0a41d11cc2b939c582d9500ee481ee988a0c7430cf8755c9ce095df7d65a22a33c77af69dd55c3cc5a64c420d9d6f01c3db8c2d8a46990aae3c63
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm64.go
+FileChecksum: SHA1: d8789afa88a48e8fd0f749b6e8213c3448574fc9
+FileChecksum: SHA256: 1889062aae445715f70dbf1cb539c5b21119c4d2239f42f3cc80227d680402a2
+FileChecksum: SHA512: b36ba428ce61b38e6b71ffabd566be37c1f9c6bc8273e31a611365d9ce5b32bc7de663a385a4b6c37f7d971fbe12c61baf34f91e21f8fbf62696531b265e127a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95riscv64.go
+FileChecksum: SHA1: ef179f13fe7e9a93f788d259fc725854fcf5baa2
+FileChecksum: SHA256: 020b58e6a4e58f3eef044f70d016fafe807447382ca3507c88245300706aceea
+FileChecksum: SHA512: 1354fb3d13a6066c95ac3b51f3b5bbc71b573b53d9d8c4207be4547ed3e4bab0d43bb9e00c949f44a2e579e93534b13b2e3ef450174663770c326a060b55bd85
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95s390x.go
+FileChecksum: SHA1: 09d4e640cc7b9e069b9fb7cddeec4dc0a963ac19
+FileChecksum: SHA256: f1a4140ec3f777f51354977d732082cf215cc34bdc759a7fe717d79eb182b686
+FileChecksum: SHA512: c97b8e071c69e26618d74c7a0efb69b644591791daa45c044cbc2c18fda4ba55dacce92425ea2e366d95630cf58f9ca7bbc47dc37af623d78bcc3c5275b6f71d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64le.go
+FileChecksum: SHA1: 2452188f33c061a5488fbd4be3017a88daabf45d
+FileChecksum: SHA256: d6fe287ed5f95bf18b1b668fc81eb1c785acae522290847f0b741475986d3133
+FileChecksum: SHA512: 8610ea4f2e03e92a96b2fad48239b0556fc4e464982e0fb30794bbd9c6fdff2045d47047092952d8b1137a191f569fcb8b4a3546e97f955e93fef15e9790d7ff
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95amd64.go
+FileChecksum: SHA1: 99b9114d303aeac83d53be7736c64d3e22068b75
+FileChecksum: SHA256: a2438e5186211dbe9f1b1f31069a9cc34f8868042549c3eb546c0a89e2cadf64
+FileChecksum: SHA512: a0d14c29e9702e178b20218625b198d707396bd1fb2a0e86e29e0e10c3095afedee4b1c127a27899da25fefa838a427e6e2e240539c951392adde7e788cb4362
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95386.go
+FileChecksum: SHA1: e22009550d97ee0cd36b2c16aa18ad25dec42267
+FileChecksum: SHA256: d450e32217e9b0bda189d50bc70727f9f751d208e22b7d2e4ff5c68c2b65fb18
+FileChecksum: SHA512: 59761595bf1029a929a2758fbafb7aca55f9cc9b7013893af763e67dd43b184200cb7ecba0a8bf125c0c641646c756f9d42cd9bf879ce72908501206fca1acc2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm64.go
+FileChecksum: SHA1: 7a40bde5c03f75368592d83905d9d4d72708bd64
+FileChecksum: SHA256: 106801910bda1bebada81cd8d7cc238677e075582d0a602d344dbae846810193
+FileChecksum: SHA512: 5be61e448a145784557864d9c322af1c039a7b80399b20e836487e17e5289fec65d14c25f7ed4becff69becf758eb52fd74f8ef422f26da803f0759f872a6529
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95sparc64.go
+FileChecksum: SHA1: e1b34c694dd1941279e6109be319ce8d1cf40b74
+FileChecksum: SHA256: 306048ffaa9c1c235c0f1e1abb75d8724eadf58b375f7ade52199631b0f3550a
+FileChecksum: SHA512: e3f512f4174f7a187514bc7d04e11398da5cf413a4dca30d2b0949f0401b2bae4923c46427fefa70c4daade1c376076eac662544f32e95b5afd5664c24f07615
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95amd64.go
+FileChecksum: SHA1: f811154e66e3788af66b9bedf258c1bfd1385190
+FileChecksum: SHA256: 0f0adeda090d405ac1e24cf953ec72bd3397cb9f7bc48623e9e63cf72c01b61a
+FileChecksum: SHA512: 312f01da189183a7febf0b80b727a025c9936b259b6fa9eda1f41efa1d58c94a26c0c8ae89a648d17474816e6d972ce4339f52d1dc526a86d37ff25847c14f8d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm.go
+FileChecksum: SHA1: 818a2e005bc0e1c4fc19f9c12772328a353a0f3a
+FileChecksum: SHA256: 3f6079e4ea3c96073e388e23c326d45d215e988c122837c254668d1e51c5d0fc
+FileChecksum: SHA512: 3c3043e93ce1a8e3d7cea74678fba0e435771bd92a660f68f6076bc77d3e968b6d7ebcdb881a04c4c0ffed9510c40a2f056e77e7d842ddf684fc4360bd59c829
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm.go
+FileChecksum: SHA1: 666523a1a17e8124969078b33eda0065575d40a7
+FileChecksum: SHA256: 79efef2cfae2cdcf27d684c3c1735e7e55b98174fa32625506fdba4e7e718744
+FileChecksum: SHA512: f8b02ea65a47b72cb5811ea2f10b743918d3613f25c84a54e47860672ad690851cbd8cfecd059e357923cda1bd79d58df4ee1a7eb4da9c8640526c3803bba358
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95386.go
+FileChecksum: SHA1: 343be679a50df63b635280c43307080d91af6ca9
+FileChecksum: SHA256: e5dc95300ffc17ff740685f705cc6aecc6976c405302752a7bb580936e7ec32f
+FileChecksum: SHA512: c7d492db84fbd8c248c869adddf764598d5c3c7c19ed0ea14554f6aabe4debe75a07901754113c97b5057c334f22b68d08b1a5815a6832c43a8ea0989c5749fb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95mips64.go
+FileChecksum: SHA1: e0760d18f7e71a1eaa83f95a59480c2686a09c98
+FileChecksum: SHA256: f482de03157d37366aab4ce27fc9136e977641c717a584a3dff0a2e2482360a9
+FileChecksum: SHA512: f6e35931cc01c86dc344f27c79176b2f425c1e0e1803fb89f38737536e912ac9c91a24b9da5b9610d09494cfab6df4790e8e0ac53d3137d82ff61236fc2622c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95solarisC95amd64.go
+FileChecksum: SHA1: 9eb263c8280c99daeb01a170e272920a684f4729
+FileChecksum: SHA256: de99c60d356b29beec0c57d9f54403615e5b58d3b3000ed28d94121451e1a1f7
+FileChecksum: SHA512: 3ef680d7774158cf1511373a5be8bb7d3dd9b1f4592e43927a3a414cc4f3167802b940e8e64afc0cfda8b2b2227ec250a814fb9ad92f86ccbcdc95f582390a89
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm64.go
+FileChecksum: SHA1: d528fad7c171ee26db041eb992e6d98a469f6117
+FileChecksum: SHA256: 045c1e97da08190638a56e3df9f8030eb5e397065bb1db6e0e9055724f71691f
+FileChecksum: SHA512: 22d085a6b300c28771b8b7f1536bb7e5e66d4674cf5aad4cae3e8bc1961abeee0b7c20c6020fd3114eb7f29e5de37c03c4d3430db88c26ad13423fb441072a3d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95386.go
+FileChecksum: SHA1: 818c652b157bf36ef2a1e1f9bd31aeff4132a51a
+FileChecksum: SHA256: 3cc3f1f0481a864007681638ed376d0736664d738a57570d368f64d3f6b6f71b
+FileChecksum: SHA512: 43acd5e6a2db385a55ba9d286dba9237130cc38e2e6ac1649dd84cd1eb32ec0d9306dd9e021b09157854766d21e869a3ffe4a14bfec49ea412b3c68597b331a9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm64.go
+FileChecksum: SHA1: 0c0344ef849499f76f530744a3dfd1e407fde751
+FileChecksum: SHA256: 56cce95a55b36e0f687abad2a1648f60e99446c4977dcb641e6afc18cc7b7322
+FileChecksum: SHA512: e04cec25145bb61324ca59ffce025afea7ceac7397111f5faaed5abe86b25fe025519de461875093f2e569a6be3ec71cee03c2ecf7bb0b475482ab829d891796
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm.go
+FileChecksum: SHA1: 0751863563b1a3b2879c8b42ed476e9f2058e856
+FileChecksum: SHA256: b2ce330e243d78a0ad325e2388b384bb9e8455fc195db114bd87bae4d789a039
+FileChecksum: SHA512: 0084e2abaae98fc1c6eabd72bd04294a9e92fc38491fca47e8386759efe8b6ccbc8950277995055b341c647ea43562911fc55e00f5ee17921f412cf8d24b3073
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95386.go
+FileChecksum: SHA1: 472c2e80265d05706966b17347e43ed672ca1e21
+FileChecksum: SHA256: f7a304bd0a8f625e41fb7088656b6d1a86fb78470376bc4d26dc1b6fffbf7503
+FileChecksum: SHA512: 50a65c9448b775b8308ef1c577b4e74f1c5064884f2a3225f8b1e26f40958b22a0158e9d53c6830bdf03b428105ab7371fae23971d096b2fe8d2a563c934998b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95amd64.go
+FileChecksum: SHA1: 124d555d56d8b59d1d50f2a473b6add91186104e
+FileChecksum: SHA256: c64d9a193d6d7c2146a9994587a92c40b59ba5eeb2b054c24ed2b2b2d260d026
+FileChecksum: SHA512: 06bb46986c8729e3348ad039753f7a99d5acb8b8f19c76db0b6b2b62827ff42aeee47168a52e3d853703ae168bd1c800173f827bde42a533e32be938e7066e2c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm.go
+FileChecksum: SHA1: 2b41bea835e624ccbd6ced7de18eeb6434cf578d
+FileChecksum: SHA256: 06b1fc59b8040e318a937f04be697c6a568d6904805a033312c54e019a19089c
+FileChecksum: SHA512: a4a1a4359cd504699367c30edd6095c3d37b0fe7cba928065da4b79196101e914324aef12418122742a9f69638f604edc23d029f2ff46aed37110dd6b875d89a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm64.go
+FileChecksum: SHA1: 300f73224dcd0bff5da5af42d8f21eb4e0ef5fe3
+FileChecksum: SHA256: 83d29a5c317a302c76bed1ddb3cdcb402351b7dc6fe7395623840b139915a981
+FileChecksum: SHA512: 0980664b36371dcf9768edef2ebaad02a7da7d9ccb0abb744729875a04df8fbea7ab9cd355543fb22b3d10d25f2d0dfd8fce9c9426864c17152f57b5daefa1b9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95amd64.go
+FileChecksum: SHA1: 6ff1462ca4c7385f14153e723a9b3c4eb1452605
+FileChecksum: SHA256: f5dc0249266adb96775f31a3472dca6281e63e92dc2c531c9247ba28ad6d50f3
+FileChecksum: SHA512: eea817ab4f22c31f0ff52944dcdc41b6200a72f8a4c8120058be1be8bf9209236daac32cd8deffabb2e74d3f8f76784d8bb41b3d323bdb896f2fc435e82fed47
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95dragonflyC95amd64.go
+FileChecksum: SHA1: e924534669c09c582f442638fca7c9a5beb3dd97
+FileChecksum: SHA256: 45dbc3773b1ac344fed1b3f9b8403f04668790afb2b6b85427db6038d2bf4632
+FileChecksum: SHA512: e98d10edad35f93444969d123f1d9e9dd8df90e8319fa857611d430f4611365eb35f86faf7a5d10af994aae2679b8d6916996a810a5fd36d772d1ca322fb05d5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95386.go
+FileChecksum: SHA1: eccb9f6ebcce2cd1b7ad266207fa9325944ddaef
+FileChecksum: SHA256: 6eebff45d6862e3b93ba35ee2de3865e9ee790c493798935abe7f62d2979a4a7
+FileChecksum: SHA512: d9d121ace410845a76359e8dc9df7772e1c2d717e1a8677e516047568f34e4a29af21177790a3e5775d91bf5e9306730984a54fd60310d56ad1671c3f6548211
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95amd64.go
+FileChecksum: SHA1: ab3f064fdad9c9877d94fa3dd7b6fdb07f2214b0
+FileChecksum: SHA256: 98816fec33552ec235329da5117040c4b73ed00a1b69346b22377fb944457395
+FileChecksum: SHA512: 3b45d36d014097defc3b6387e4a0a7cb25d8a859e78eadad7da6f4f245d4d90b01aed0abd29251864eb87b8abc1084c694e9b865655f276b3f2ac26abf613562
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95mips64.go
+FileChecksum: SHA1: 4b29277fa74466e9341a225f884ba8d2e2fe202c
+FileChecksum: SHA256: a28dc7784a23edb7fb26bf012b69019577265fce7fb09358df365cd356bceaaf
+FileChecksum: SHA512: 4bae9836e717194a32402c0a501a77cd1c93bd564f752a68caf0f5927512d51f23c21944c2ebbf23af9389b929348195c1529b6247a8eae0579c06a3d3ee8706
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95386.go
+FileChecksum: SHA1: 8be1e024de70e261f5a7c40c9eb3c5ef50a7802e
+FileChecksum: SHA256: 5dade50135eefd685032e0efec9a912f1cb23579de221fe93c43ba54a437c58a
+FileChecksum: SHA512: dfd738c50044802e594a066707a0229a8868d368b395b8ad94eae302c9c2fbbd11eaee5fc83ba61f812b29f103b2f319c1bf10dfa77362b0db99364e9c5791fa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95amd64.go
+FileChecksum: SHA1: d54904f289bb17be343047c0b3c0bad582fcbde2
+FileChecksum: SHA256: 1b2dec6d0801803018684fee4bbb45048d6f7c4b0ca2010bf00c108db068b138
+FileChecksum: SHA512: a82d946540b22c59958fe35c194864bf22995a92a87b5dc6667a092ebc8a3af00b2df0ff0186fa5fb4a0280e891271c835094f149a369469a8fc779ac0e7f30b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm.go
+FileChecksum: SHA1: 8ba8d9bde6fb8ff95852c6ecc7313b4d983b8b96
+FileChecksum: SHA256: db85858547cc8b87fe22b8351398487902bc83d532ed3fe1bc2fc193596809c0
+FileChecksum: SHA512: 914e5c79833518014bd08d87109abfe19db93339a518bac686146ddbdec64d6b5bbcd866c0147cce91eff960e1d9b6ae4f60123e0e6e19ed6a4871973dc87e9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm64.go
+FileChecksum: SHA1: efb92a04d63a684c9c19fa50c56819ff4f9e89ec
+FileChecksum: SHA256: 6f62083cfef586ed0830046c557670016a57f78dafbff2bb36dbf23177e209f5
+FileChecksum: SHA512: 91a77012328a108f2a072b061cdda1a374f389749018c0baf9f8314681ccec0228c7ed2c171f1a4ad3cf605b353dc3cd2bcf11ecec796c5f741a232d9477bae1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips.go
+FileChecksum: SHA1: 90916485ddd768a335d8e4590f638fe1a9263ca6
+FileChecksum: SHA256: ee499a655529250123abb4a168ff999719ffe92a94f23e67a64ed0f620f775ab
+FileChecksum: SHA512: ec45b2aaea2490b979f97f157a961cf124453d3dba2dddfb407de511c5061912e603ad2dd77f10e90d6766894f033f9e9f6580903e46b83470133e5832316f06
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm64.go
+FileChecksum: SHA1: ca1b5b0576f8735b4c35db40f72138d60e3dad24
+FileChecksum: SHA256: 3f2ad505826c380f3f55570670c8e397f8fc5ea4102e40b617ce74c43fbdf153
+FileChecksum: SHA512: 6911037bcfe408c4e9c787eeba2017f7ca55f37705361cc1a9169c4e454b915846c9b45fc8fea9e409aa4f1782a5cfd771c0f2ce7bd2ae868a5d7cbe566633c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64le.go
+FileChecksum: SHA1: 2c929d0ca480fe85d0b8b9fba077158b7c0acae8
+FileChecksum: SHA256: 7f5ab8c5b2777db5261531712984ac1f2c97f5fa1cb7d685cc604f1f8cc852b0
+FileChecksum: SHA512: 84721a6c32c9cf5ef3ddba5f6eecc70cecea8772e007e83002cf23187d14631a0b4f98ee53c73aef6971da908acbd22cfc03242a6cb0b8cd1c3f897913ad9017
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mipsle.go
+FileChecksum: SHA1: 0c8ba443f4759263fc169c701c1be21b8350cf97
+FileChecksum: SHA256: 22aba05d26d1eab025a087c715097e2b2013913b43cc3ef17a85d3e0fe89a423
+FileChecksum: SHA512: 2f6a89172dac515ab599b7d46f2e7c72d279030bdb01dea6b05fd52f9fdb4bfc6bc3016de66cbb6afad6d8596bcca6b9fba3afbbfcd866e2ff9168202c1f4bd5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm.go
+FileChecksum: SHA1: d17a0b0538b892a76c34af99bfb5a1d6382edcc5
+FileChecksum: SHA256: 94bdaf0b8a0bde810486fc943905a950deb4ea3d8fd61c7e0f7b4cf4cfc2bddf
+FileChecksum: SHA512: cad616d7ce3538a21bcbd3d17ba9e2af3a1a8e9fb1fa18cc0c48141a44e6c8f67665e0f53bb4fa3b1e34da3605b82550f3dc4592634ae3bf91869064454ccbd3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64le.go
+FileChecksum: SHA1: 60b1afb771cb591a44f68503f97fbdc4b4771a11
+FileChecksum: SHA256: d7a97aea487cbd43e4b7fbe65cbd5c6793bd4362ad827f54bee2a4d54fc4329f
+FileChecksum: SHA512: 71187cb6c7e69d928b15dac77b45148845c6bdea421bc086860530bdb591ce9809149c9a2399b930e947e82c48a272a5e5c5c266d7e838e8298a8b29b7f046dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64.go
+FileChecksum: SHA1: 918ee527e6e276279f7db97fdc704cfc07fbea60
+FileChecksum: SHA256: 269a3c49f92e7c3bf6786fd556b3335bfbb8db5f2f96a2aada5eceaa4a7efb23
+FileChecksum: SHA512: 8ca525d736fdbb9486f9d85d1b4a3a199e8dec225504fe9711a3cfd2d3584e70eb8d04b629e02244fe6d25547fd247479ed900c7daed4330bc4a327b209e46f3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95riscv64.go
+FileChecksum: SHA1: 9bbee584d3e791499c09b18a05afe152e3cfb86e
+FileChecksum: SHA256: 5f7cd30d93dd099251b59610fc406bea8c08287a76b2ea0e94053edde1d56dee
+FileChecksum: SHA512: 96f8ff6614a106f9cd1d5b084f779451161a02bee654aeac5464dacb5ab78510fa20d1a574732a65da92028730c1ba660ee7dc13014ab82eef82213f6592b180
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95s390x.go
+FileChecksum: SHA1: 35b8d175bd1e2cfb65f1a8da65eb4d5d2f214deb
+FileChecksum: SHA256: 0fa03737497b03bdbce90e893e36909fc94f62f4034bb11b6726bf2d06c635df
+FileChecksum: SHA512: ebef3b34ff0f63fbef04c4ce5f0673eda3c28480f760de3f6a42e46d57f112e97d13f9c5b8af8adc1ff39e90f5744e2773554fa9c2b7ec781e73211cb00c3966
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95386.go
+FileChecksum: SHA1: 1cab17054ad8e5a1e0c37210ec59937cdb28972a
+FileChecksum: SHA256: 2dcdc268848d468653e4aa384280f819af4960a85f8b17deec510160a1d156db
+FileChecksum: SHA512: 776473aeb433e8981c646d675fcec2d3cf0ec9b5d9d15ee0e733afae80203b560d50e6943e5345dda7e433c0660bcf647ab1ecbe8413bcd197ca5910c2e2b939
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64.go
+FileChecksum: SHA1: 5d10e670c588cfecfd9f69e6ac55150320bc666b
+FileChecksum: SHA256: fccf5e98076d676bd41c6937134794d8be76e41251abe6013f3a420b389468ff
+FileChecksum: SHA512: c1b11cfa1bd8523a2cc2bcca7e81773b084e442edd12acc9a4a4199328c648b1f2f988a275a8a671ec82c86b06b5fbf214d2122ca22906ee3ea2e87e8e81b03f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm.go
+FileChecksum: SHA1: 8c7b26184d2d7bd1848bc1cd588356abf0b897f1
+FileChecksum: SHA256: 21960dc0e4addd676c8f2bc5eac521495dafaae8a3ef9378b7e58b13412e8061
+FileChecksum: SHA512: 01e57d0635a2cc9d67eed985633ad71b8811d87b0f7072980a9896759788195b4ec17ccb32804b56a1704a0bbce3334e80ae76722798c928c3f23c74fb8c5988
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm64.go
+FileChecksum: SHA1: e6fd6074bf3ecbc94beaf706f3e1a2bb29bdbd6c
+FileChecksum: SHA256: 835abd953bdd9e638a1eb8a362ad6e93458fd9aab7cf965dfa662883afb4b8b4
+FileChecksum: SHA512: 880fa4f720066f53902ac2dd23c36cfbf8b2f63809036e3e302d0f27da5ed5e738a978fbce5aa612fe5cdd4c20f6e77917a1c7e32b5cd8844b538a3425deec05
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95386.go
+FileChecksum: SHA1: 098df6d27e28b25369eaabc8936d2d8be115d9f9
+FileChecksum: SHA256: 1f1a9c78ea3aa86d00c14150ea1d1d5c7f81f4a7bd04b507eca647c216ffb4b8
+FileChecksum: SHA512: 5b4ddcc46d5526c984dcf230b5747c4bd34999ff17fbb5080becd54a4832c2190a951c95d8defda0c0d0b23cc318e3ace7bdd28e51347dd879c74c3b7bffdb98
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95amd64.go
+FileChecksum: SHA1: c78488eb9ea39bfb970437a442735aab471d64f6
+FileChecksum: SHA256: c509db8feb0ada3b098d571d4010baf1e6141368e96de8beadf0f6a486f754fa
+FileChecksum: SHA512: 04e692cb9268cee2608af8b02ee328ed34f7747d69a67bf372d5354d2bf9a9576f9968ef59098b4b7239b41fd3e913cbd4ee5ce2da121616c5dec4f8182cb65c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95sparc64.go
+FileChecksum: SHA1: 2f25f42738542f788e3b18fa47dea18dbdeeb688
+FileChecksum: SHA256: 6942e33df06c3cc0c6b0738e46f78c72cda665b7a179f945f382f0cfb9f6ec0a
+FileChecksum: SHA512: b7e5a2dbbe3e5677852e44deb5645f8dbd31fa73c659463cfbb89e091d6b942d8d6832cae43f83c5391bdd14f544c8ce549949975c7298869592b616e3ca2cab
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm64.go
+FileChecksum: SHA1: 21e5904b41c15dc1099ec51c25efc9b61bef58b0
+FileChecksum: SHA256: 3dbae5a96a107a885f62afd1fe1815d2fad0a1b8d3400450e9a480a34f7e47b1
+FileChecksum: SHA512: 0beb360bb3fc4e53fabd116087b7b330e97d997276b3a72dc14bf822f33aa70a15d8118ae1048da3ebf903a5d97772981369422b714686d2810e42e315c8fa57
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95mips64.go
+FileChecksum: SHA1: 4cea0e06f377a36060c8f4c40869ede353b6bca3
+FileChecksum: SHA256: 14d86fafb9ed8e7626435d62ddc66f966a736cd5b455a8fe9199590316fbdbd6
+FileChecksum: SHA512: f4d634b78608b8387738a096a3364cd1d74260775a9f3081e2a99400e9426772ef039956dd0c4daebd93fe979dd78c1b5951cb56ba507f221050696ec3239415
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95amd64.go
+FileChecksum: SHA1: 8b323c4962db6d4e41ba04c703699c66daaf1311
+FileChecksum: SHA256: f80c40f86ae780847739af6cf588e139f689b4c0c247b8573134a25c14f47f75
+FileChecksum: SHA512: 8f811a5c1ac884fae5d7457e1e2bb8aad1d445d586464b26b03029ded4495bd3f8b683d5aa4d9d331f1a64bdc4af2b3f462a05bf31fb3f34780719666a8a912b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm.go
+FileChecksum: SHA1: bbd02d0e44699a332a190a0cd61c4d5a864c0571
+FileChecksum: SHA256: f20e8f2aee152b5254b72589af04ab7588d45421ed2f7a38f24cc19c7393d940
+FileChecksum: SHA512: 4c5f683020d255017006278ba38ebf95f13b076261b72cef77afc5e8cde379db742a72b9966661152d8133f76ce66188438100561d1f493845bd12a8d8737af2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc64.go
+FileChecksum: SHA1: cff7775ad1cd329b84fa9bd4f3816871f0dece22
+FileChecksum: SHA256: 4e7e907cfffaab9d21307bc28931db4f86faac1d94fb60c5fc67cedcf6b32188
+FileChecksum: SHA512: 833201210ae61173186858aabf114b5ddb2f8bf994e232bf863e7f96d87f027e47910a5c7ed026d1d12089010dc69999aef6d424a56b1fcf5b496ecf86fe68c2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95386.go
+FileChecksum: SHA1: 6b32d5bc32be9011688c33266dc01b1a62ceb77d
+FileChecksum: SHA256: 1155eff7d3f7dd13525d7bee749929fcd6a468d4a943fab735108f3fd6ef7235
+FileChecksum: SHA512: de121c034a2542323e1fc0006a2ac4cd8e70a6a2efd8aba30d3af12249762d9946e62aacf884a185a73fdcfb02bb05454ea36e90abef31165e82b2705484990c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95amd64.go
+FileChecksum: SHA1: 59d9c553dc50d11385a87ba2d7c5de7ae7d5056f
+FileChecksum: SHA256: b568cced4c6926705129a0971582d73c56dac5fa91f6781fc15e74be8b29e03a
+FileChecksum: SHA512: 7ccd91c148bc3a5e82e320a6aeb599594f1dcc4c1580ffea236a8cd602d61a80788bad1fa7b752d4d9abc600eec9a6dac04c79a5c2c664d62d94836c846cd876
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc.go
+FileChecksum: SHA1: f5b42804ad702b89b6994df1e2216b769891ec8d
+FileChecksum: SHA256: bc74b31a0e1c7dddf9cf46f7b693f06a311f0f66a369cef663a80628687c6af8
+FileChecksum: SHA512: ce9c43c2e545890789bea0f9184bd5ffe5ad9096a30beb951c021fd2e1cc3971fa10d18373633de42fb57eadc187a28612974d4419fd33bab59f4a0eea126418
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm64.go
+FileChecksum: SHA1: c17c69b6cb5eef1cb6e49e723fcaf2a77322b4fa
+FileChecksum: SHA256: 9e80dff9394d452ded0a9bc7495e073591f9eeda8ab0188bb1a814c56cb0f5ae
+FileChecksum: SHA512: 60b00c31671c4253be812b7dd5baea5cecdb0b04f3afaf505600506ed4f9a4bde0685f78f1d2622c8fb2df0cdea2808f1457e912517a2d3ae34fd29d0fb65523
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95dragonflyC95amd64.go
+FileChecksum: SHA1: 9ab1d61a40c20891de620e46c8f2d5c1795a58bb
+FileChecksum: SHA256: 889d895d36a004558666fe17d843ac0fd37eabc21a03ae7a0dec270072c6f5ca
+FileChecksum: SHA512: f99006ceaba4b9879ff43b00338b9e1d5d1d6d82cfd0b12f51a0ccd758b6c81a53620ff57ad0f1a907daa3a25d4c9d3940881270424180bd4fb8d900c6035d2e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95386.go
+FileChecksum: SHA1: 172ec5cc7f21b7235172307f1c59cfdada94eaae
+FileChecksum: SHA256: c9778ec3de7fe95b7ad5d0a82320b19f33bb2f838c45cb364f022eb4f00b9693
+FileChecksum: SHA512: d4cf2b7c186d4047357be7b4aa28eea6548f69599dfb81ac5e951d2278f6508d755267721660ca5e517eff2d16e8be1c68f3437e74c93b03291e5592340aa5be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95amd64.go
+FileChecksum: SHA1: 5dddf94acdaf1c6f48c155d06ef09b269e8d03e5
+FileChecksum: SHA256: 008491deded8566470f104ed688fc1e4205d623961960c739351633b36449436
+FileChecksum: SHA512: 63e9359e89b65d8111da0a5361cc1f0c853d183c19bfb35ba453fd03618901532c915b446bc3067b9c8cb815730a1e0c320143adbb0340f0a5cdcb0e7924b9c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm.go
+FileChecksum: SHA1: 29b910bc321f3e81ce4dbd304fdb09b6e4922aa0
+FileChecksum: SHA256: 13afea08247561d9fae004d0bea5356840aa2563b83f79c1c10caea63683e019
+FileChecksum: SHA512: 823977c427e3f2ab87ba79163e083e39df94131e86a3623ea169e737ba7cb37c8ff1b6145d0472d7fd799e9286e0f09da90127157f2b38841c9405604044764a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm.go
+FileName: compiled-binary
+SPDXID: SPDXRef-File-sample-golang-prov-compiled-binary
+FileChecksum: SHA1: 074fc192c2a7da0012b3904d40e1c6f845162361
+FileChecksum: SHA256: f2e59e0e82c6a1b2c18ceea1dcb739f680f50ad588759217fc564b6aa5234791
+FileChecksum: SHA512: 421e6441e9515d200e88c2469eaeb21b86618d0f00102dd6f46a64b7e42e46e11500d744c834d3434f14df81ae0c109588dfae397ce2a9b632a6053331d1b96c
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-compiled-binary
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm64.go
+FileChecksum: SHA1: b91d42073f1c4494b9ed2c3d97f8b0c2b885269b
+FileChecksum: SHA256: f05eb0491d138356ea9d0a369f626f22bcabde57708ffc05250cd367038daf4f
+FileChecksum: SHA512: 23a12b0170f2d37a54aa154953532a4681336bde1313c645cd910dc310b493f1109a321cccebbf36162d1b8a745231f49b7874ab3d58c5e08d4f3e8cbf36d59d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95amd64.go
+FileChecksum: SHA1: a2c693c986ae30a5ee5c858a8caa90085fe38c07
+FileChecksum: SHA256: ba47e2f26caf5a47a21a592e0261d29ad9b70cc47447556699840fc8fbe4507e
+FileChecksum: SHA512: afff850a452dbb444710f47e5891cdf6ce8a5b7a2d394f0c4a7d4cac8788a70d2b10261c5eb03beaa911b2c07df0a198a115916eb0ca5988fbf2385debb35fda
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm.go
+FileChecksum: SHA1: 21e8e2d7c41a3e3c532f61bebf0790f648cc3f73
+FileChecksum: SHA256: ec0740b7eb251a94571085f9bd27b058bac89f7e13162ef3ca763827c68e9d14
+FileChecksum: SHA512: d6b7cd6ef5bddb99a8b566597edd5e6c48533a1c291f6b4def065c29fec211ea8c9ab9143bb7b0328ca5f61642fba3c3f63f3834d53e79be20308acd510c572c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm.go
+FileChecksum: SHA1: 8d0163014e2a4f07916b0ec368855a2da6334f42
+FileChecksum: SHA256: 2e1ac6e0709af6bb1856c43def0c7ac874fae3660cc001d3861f8a460716783d
+FileChecksum: SHA512: 13885e0686341b4ca8a3a4c3f11edb9fb8a63cf93536a05d26b53c6eab64eeac537a57ba892130520eb77dc14f7ad286dacaf2ce9a186e1d96569399868e5ffe
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95386.go
+FileChecksum: SHA1: 7f4dfb45e2483b92e400e113f748dac71991e59a
+FileChecksum: SHA256: 1d82d80f71c55fcc81db5327f0499a8dcfb35e3490439ac4a9caa37f65bb4544
+FileChecksum: SHA512: 521bb5ea47b85270df12f1ffd882b91d6f3f32e9aa9d7ccb75663557d85e5e7ee153470941bd4f5ed525b3e4726f43b28dadc6d22100ef0ab508fac418a20395
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips.go
+FileChecksum: SHA1: a81a79d55237d064573bc337a698794c183b258a
+FileChecksum: SHA256: 7324c1ad72a926e786c16f19ae87a984b3173d2da5776e63fb34a87f294c8a38
+FileChecksum: SHA512: ef239af16f4bbbbb254a7fefcfb23eea0147ede62d44f5432a61d7cc658f1972731c5823f6381bd2b6dfe6f757d331d186521e42c3b4b35b7301363aeb49c2f1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64.go
+FileChecksum: SHA1: 38141c74c6522a9d463db67269c9bb1e02f8cca3
+FileChecksum: SHA256: 5c482ba65790ae6554c15dbb40b2074309baf92035fef0a74078933887da4f1f
+FileChecksum: SHA512: c8d1c33c0cc866df16641c10251eb20d4d7457ec2396642f1b37ac433312842d290dda9624a25619339f27bbbefd378bdc3d5d4cddc760c1b0c4914e45995d4d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64le.go
+FileChecksum: SHA1: 74a029fdb6587c1781638c75eb8b6e251eb0f945
+FileChecksum: SHA256: e828893d451d57d4f5bf37beac209b598aeab87eff09e54fe5ff59ef6017bc2c
+FileChecksum: SHA512: be0b123e1f5841cfe0d0b577cc0b7de2aa9fea8a2f6e37cc26750df574ffb280b69ce8bcc6536371508eac822c3af3a8a23b407978d50b1ef0f0fd6954d04276
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mipsle.go
+FileChecksum: SHA1: 88ef96b4e14029987c9b173b4c97af7173a5165e
+FileChecksum: SHA256: 3046528bc28298a78a1a66ce81ce5ea9a688cec5306d0481ab3fdbce708c30c7
+FileChecksum: SHA512: 3598b475153cbe06f4220a37f9c5c76839a6988b35c04140080eb4c317d740b2d321b388d9a36ceb16a8569864fa849c9f8da5508aca3482f0b0629d3983a06e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linux.go
+FileChecksum: SHA1: e14448f519b7daa7bae2c7f99ceee6d1a06ca65c
+FileChecksum: SHA256: c9c66b5bfe81ff224622664a6b2aa5b9f6e3f82b8348114f9aee2e8e4eee5c09
+FileChecksum: SHA512: 9b2adab03fe0d3ec639af271430713dbb8d87b5bd5043b59292d5a64d589b7a4c6d5104eb681d41a8b0da00a8531de4f8bd7b79d3558f84a1e9ef8e71e00da95
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linux.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95riscv64.go
+FileChecksum: SHA1: 6cc3e7fc7a7bde961fa7cbb7b852bc1cf5a820ce
+FileChecksum: SHA256: f87ee01a240cf74186bc4743a60e8b9fa7d862a897c030e4aceaff78b7b0d55b
+FileChecksum: SHA512: ceee5f748415fbcccb41be4dc81cdd3f05be768fb39b6b183141bbbbf89ba4071bb120753c238c90fa0870aa230d9e7ca678c1bf2827a3ae1e5ea19fdb6d5714
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64le.go
+FileChecksum: SHA1: c742e9ddb2af7f8ebdc872411e30a90177206451
+FileChecksum: SHA256: 3b3ee4ddc752429c67e4c0468e0ae6e31e06ca2b84ae45196cd184d624bcaafa
+FileChecksum: SHA512: 470ea3b54226c0dac4821c05c8c0074647ceb743455d815a5133f5fa24a5b6b4caef215473a05123123a93e1b340adced40f7ea2e89c009c76a661207f8b38df
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm64.go
+FileChecksum: SHA1: bd271db971ce053cafac8eec83775548a8c9f866
+FileChecksum: SHA256: ec69ae56b49b483d66d14b044768a687bb4981c923d42bd27667c0c1262f891c
+FileChecksum: SHA512: ebda9f8b1e9650ce829090eef2c435dfb225b5fdf132bf3d5378062da8f7c11e84a4294e55b1071ac7a39dbb78f51ec314f71c9e6dd3744fa34a1f479b4d801c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95s390x.go
+FileChecksum: SHA1: 39f1a5b8a62cedb7d7b0e0da66d12598fd4ddc12
+FileChecksum: SHA256: d8c743c0c98c33b5cfbb0b5bb68e34efcb98e2b95a5319a913910a73dbe5abb8
+FileChecksum: SHA512: 73186c459b8976d84df950832a36a7e387cfd510c67cd97ea951809c61e5b252ce98febefe57a9dae40ff084149ad43b2ba7a6eeb3f7202054dee28d3387d016
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64.go
+FileChecksum: SHA1: 5e970e4e9b61a4e8cf52fe9f9b4225f3cebd5596
+FileChecksum: SHA256: d777a30b79b93d039b2d0b60e5c4dba00b33e539b913d20b5cda2bd9323bdc24
+FileChecksum: SHA512: 8376d9c7a17a842eaf140d9f248ea025e8a1d486d6269d47dc492764812bf5d69a938504fc56952c752a281777b12dd40d23e65960a2bec6cccdba2e79dd40e4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm.go
+FileChecksum: SHA1: 39502738063b1298f3fabc90d91f9af0bfa9b58d
+FileChecksum: SHA256: 685f5b25a6cf22910c12f77ae0c5cd1a5987e441c1657cb42c96d75bfd87b6ff
+FileChecksum: SHA512: 3515889343c3ebf86718fb488365e1f1661b7561c5bc04d20ca99ee3b7a2bca60ab09f975b5d1b8e4cc959752580753b6093b1dde09ac1769d9f1440fe70bf4b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm64.go
+FileChecksum: SHA1: c20cfdd2dc23d417a8ce7f2b5d089c407b5c9a3e
+FileChecksum: SHA256: 3ca94263554f7353cc1f3bb9c20e4f2de38972bde9ec7dfb81006042526a3383
+FileChecksum: SHA512: 79cb17ca47fb3e67f30fb781269c6cc0b9f56ebdbb7efa67b4387972e41ca4db892b71e8f94aff4010ce61476c0924de915b68417ae336058122ffe9671a0fb9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95sparc64.go
+FileChecksum: SHA1: 93b366fc127f505165117096baf0c148e79bce05
+FileChecksum: SHA256: d323f58715e92de00c2401fce23062e5d2e43b900f6c17ab1b47d701b91933c2
+FileChecksum: SHA512: 03efbe0dcb06b282750d6a9f4d376ad491e3737b5003535ee4fa441176982e72caf3831c2e6fc62d08c0ffa7ea21799ad5a09e28c768d96bf9fadad1c2238e00
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95386.go
+FileChecksum: SHA1: ff9f8a46d0e45358dd6aa0af26f8c14369174617
+FileChecksum: SHA256: f17a0d21e5db9acc785fbc700a0395759ba2398888d50a53472a24d6824ec848
+FileChecksum: SHA512: 756aac25166d250ae306065f9adeb3262b14cc5a08f115a68407433a28ca7b50f11b92ddce9ad4d49688ebd06f9c85bc1a428e68802d887f8cb9374e60037a3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95386.go
+FileChecksum: SHA1: 884102a7c78cb8bb8bc62bacb70a4c3bd2a9d997
+FileChecksum: SHA256: 7f151028967e43b0736cd5cbf28ccb8141431d9d0071d43fb34e0a9cf70158cb
+FileChecksum: SHA512: a1687ccb713f380c71e02ad4219fc34f73bdec1cbe044254aa6ed44b390edd439ba7155212a47a6f525f4b4e2512fc7eae6104294b89fe2ded35160f0afb7791
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm.go
+FileChecksum: SHA1: 6cedbfd732796198d442a2ff491902c2e06669c3
+FileChecksum: SHA256: 618422436f8659da0da2f792ca8b3779aefd783966ec53fda0af7ef8e837b448
+FileChecksum: SHA512: b44ddf78a2c3abff77dbfdf6b1833418f21eb4eed899e59967fd46e12d611c49e7e11765be5eeafa7b761a0fccefdc3170e9cd7fff734fd9138f582794df0b13
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95mips64.go
+FileChecksum: SHA1: fc40bbe59d57725eecc8a7c081df6de1d0efe4a6
+FileChecksum: SHA256: b5d168705bc232fe495366dfccce9e3dc1624a56b75b75942c76ec4340ce87a3
+FileChecksum: SHA512: 411901801daf4a5c73a88358882bf55827f315f91e831f23f8efe01cd903428a5f0d7a00d4a00ade229bcfbc1d4c3f3ed31e0a76b4776f673f171e88b9909bca
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95solarisC95amd64.go
+FileChecksum: SHA1: be19ebcd56b93eee5aa92535e4ab5abf448e8eb5
+FileChecksum: SHA256: a6f6c2ae70bec39293ead4bb0982353bc4d82430b82a97370c1f754a61b73b34
+FileChecksum: SHA512: 67a3f92796ac5f2972c546ea0502e2fd3e45a8c46874ef39a0d449838be0d7e56e2c93cb6a0708919cafbe26652bf9d34c1e1875a2598bbe33ebe9646bbf8dd4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/windows/aliases.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-aliases.go
+FileChecksum: SHA1: e5e5e00f78a3f22c5076f87b3aa0306f51ec4785
+FileChecksum: SHA256: 1ed908469d018fc34605124b47418422091f4aae525cd91561a9d94787934050
+FileChecksum: SHA512: 733c3e3700085069940389a4f4eca3c74f76c93f8540c6dada43d55adc4f08efddbdac0a98c37a540130b5aae88c610e3a53258ba433099ae1b2a412972283b1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-aliases.go
+FileName: vendor/golang.org/x/sys/windows/dll_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-dllC95windows.go
+FileChecksum: SHA1: 6fae96457cb1b1da6df04935b40aa1400bdea532
+FileChecksum: SHA256: 7e3312a47a7835c1a3eb37126c2ad0a59508e897f9a6e2ffc8daafe9d422bb90
+FileChecksum: SHA512: 4a5bb066a9f4986122928103e8dda9386538e2cfdd8283cc615d795cc4f6deac635a750c4099a8dfeb3964a328a8a9e7b6c1bc4df5d9f22cc847ebfa8d96ec79
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-dllC95windows.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95amd64.go
+FileChecksum: SHA1: 210b2e9a8b384b2a975a8521094177eec8b29cc6
+FileChecksum: SHA256: 65c69808ea92ef8510915c2856c237f8eefae71e60326feefb97addefafb007e
+FileChecksum: SHA512: a857c06f6bd7fdfa13e4d77d6ac037b0dfa67bb6900c61c6311bfdb413a0aabde2bb9fc9fb0bb5d16482bd781e13a4699d898477045441e06051a81fa042722e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm64.go
+FileChecksum: SHA1: 28ad918b6302cc60569d0c5a4c1f88d7d1af1600
+FileChecksum: SHA256: 90cffdb84cfd9fd2a1cbbe4d4c3c5b6b3d680c3ab83345d11b09bf6896600b45
+FileChecksum: SHA512: c3c98b54fdf99d2fd698de47d1d719e02f317d246f8d8882a5667d9630dc559ff84a38db8f53c237e1e913d51fdf45e55466bc62a6ee2b4b33a1fc46d9863ee4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/windows/env_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-envC95windows.go
+FileChecksum: SHA1: f8502f233ac1815792399474070acb52f99c1086
+FileChecksum: SHA256: 69a9e0a6f465c88b24699ea8b6f587c679895ff2d34ff5a6a85c4635192f0a89
+FileChecksum: SHA512: 32fa02e38d450fc0af1c4cea70153b0a24dc07cd09687059a89ff8b9ec22cd8014c51f852dd6ec9cb1f95a6d15d55248c1bab4c47342d05a8a3723672d8328e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-envC95windows.go
+FileName: vendor/golang.org/x/sys/windows/eventlog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-eventlog.go
+FileChecksum: SHA1: 3ce2b39fa9a823de73c2a2129e6c0620023aaa01
+FileChecksum: SHA256: 36e6102d274d20dbb5f740376453bb6ab13e02c86e2be706857a07a236b5682e
+FileChecksum: SHA512: 020521f8d914f1731912f6560de4296bb2916a73e44a2f04b760a15f034d2ba8819c501bef307a01939bc2acab4bbebaf1ad14dee3d9e517f88109a7994f440d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-eventlog.go
+FileName: vendor/golang.org/x/sys/windows/exec_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-execC95windows.go
+FileChecksum: SHA1: dcae2b3a07bd1b6744d1f7093b9775fdc2d33ad6
+FileChecksum: SHA256: fd58dc33d892badcfd5238722dbaa3b71b0d5e3ffa7a23b36015037530d56146
+FileChecksum: SHA512: f7dda2b3f43f8f3076b3596fd198d706deb546f0bf58a883b9d6c9c8f7b42cbb54089d407a238ef07633b68df32aac20e4329690288e3b1a9b7046c386cd28da
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-execC95windows.go
+FileName: vendor/golang.org/x/sys/windows/memory_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-memoryC95windows.go
+FileChecksum: SHA1: 1a42b4f8cbc56b1bd0ba5b4e7b9529d25298cb97
+FileChecksum: SHA256: 82907ddb3340e172e94dabf6ef67c7ebad86a6ab64b6e7f120316342306125e3
+FileChecksum: SHA512: 612314881ae9a6654228dccf99d977dfac606491b2c5b08acf07837f52f2efe189c3aaaa661748405547af5569acca5acac5a1c760761b66fbb54a4a7686f32c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-memoryC95windows.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95amd64.go
+FileChecksum: SHA1: 63cff8a88677412bd8d49bc02ac31be0b31d3d15
+FileChecksum: SHA256: 2fd474c806420a79486659d6d788708abf1984ec9d02db2e3286975f3cecb60f
+FileChecksum: SHA512: a5644356ce3c74b4b7f2c20a23de9bfcf1dd97768123f5e3da26d73c18110b52349046f4e45a3c67560dbfa5fee9f0a531b90967712478edb832802764dfd7c1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/windows/empty.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-empty.s
+FileChecksum: SHA1: 11cbc3d132fe501a67234bf084d6246520e24fba
+FileChecksum: SHA256: 5975f1c94dad8747a68ec8f25132a881c75767037383d6ccf7f71482027df255
+FileChecksum: SHA512: f7dba19418cea0624a375d32fd0990343adb2c0860ba9fe8e85218a36c918a8e1d28247d8e266ce0698db9d9d601d3fbd2207d25b6004a3ecc7d7fdf01e0ff0d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-empty.s
+FileName: vendor/golang.org/x/sys/windows/mksyscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mksyscall.go
+FileChecksum: SHA1: 38bd26aea2ce77a9a7c25120435aaa7936faea4a
+FileChecksum: SHA256: 75e3e06901fe36bbfbbf63c7ae085cc90e2db6a0181042e852e4f31c31471574
+FileChecksum: SHA512: a939cefe546be202e4db4436f47470ee34a8aceba904cae3c1b70137bca07bb7ac02e6a1377de7d093f070a8c80390081d148605c1f21f9a695fb1d8b8e5f7fd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mksyscall.go
+FileName: vendor/golang.org/x/sys/windows/race.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race.go
+FileChecksum: SHA1: 9e762e679b01380bea7131da343b5b30cf4f52a8
+FileChecksum: SHA256: 42c5afa9e5a630f46ed19d1f86ed902e0d6502413b42cf641d7ef703c0c2db6a
+FileChecksum: SHA512: 508830765ec8efbff9717bcb3af2d677816a58136ef661fb681b9daa26be1bdded07f7de19db4d57b556c0601be463471b45da20856214e5c5f8a3e954e75f77
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race.go
+FileName: vendor/golang.org/x/sys/windows/race0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race0.go
+FileChecksum: SHA1: ebda10ca4665e783dcce5eca71e69849a76d10f3
+FileChecksum: SHA256: f483ad20eef4aedcabc598060fa414eab96f19e3391d1d65d9aec420d64ffd9d
+FileChecksum: SHA512: bd5d88414ac86160cb5a33bc5a912696ef91e0469e79d1f38f67a2b070775c1bc93b5d3fd2bdcd961d37a788929c842d786901857847399c5b297af47961cfd7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race0.go
+FileName: vendor/golang.org/x/sys/windows/registry/key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-key.go
+FileChecksum: SHA1: cf78f212f4748f573d0805a8f3c7101d0f7af23e
+FileChecksum: SHA256: 1175aabee8d434d7df9215187c0f6abe247aef5bd66d8f6dc1aec9d033543f47
+FileChecksum: SHA512: a2da7de5b14ec54c6cc009c8ac1d716a5a879fcefe8a10dba9551a0c18186f074687b8bd496259d085c6253e1031d90bf2be3e37753916761f3b2a0afe14ba5d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-key.go
+FileName: vendor/golang.org/x/sys/windows/registry/mksyscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-mksyscall.go
+FileChecksum: SHA1: de70a6826e91ed83de7c7845f9afbf54a13c9afd
+FileChecksum: SHA256: 461d175a0c8f4b059283e7a805d51045cff1b222d7850c5fd710c2cfd36fd328
+FileChecksum: SHA512: f8c5f7f7f6e28e7df1bcdb3024e39f635148a933a3bc2c9e56f07975f414a55b83737c26f2a87cdd254286ea8830c4d0c6f3f117bb0bf808a271f1c21a580af4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-mksyscall.go
+FileName: vendor/golang.org/x/sys/windows/registry/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-syscall.go
+FileChecksum: SHA1: 10d163b3c86f81db37c567eb6f233bee6552015d
+FileChecksum: SHA256: cff387d9d893472d8a44a41b0caf0d899dfd6f473754e88993bfbe055bba322a
+FileChecksum: SHA512: bfc182e3c4b2c7574d23ff94c9ee85af54605ebf259c07dd3322c68010660d9e8f1fe886d7aad4703f3f67917363c956723031df7587de0ada5e50236e93c9eb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-syscall.go
+FileName: vendor/golang.org/x/sys/windows/mkerrors.bash
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkerrors.bash
+FileChecksum: SHA1: 0fda141880bde8e04f5c7174646d80dd03e0ec97
+FileChecksum: SHA256: 804b6eb1e92950f9581554dbc9ac86bd6e8ee9230d5cec1610c8990b2ec7cf0c
+FileChecksum: SHA512: 3e969d77ed2d8f0a49035123a00b4c3c53b5a7b547a0ec8feab567f69e76836e81173d6c7d17ad4283b4ca0a1921d14b55c38656d03fcaed7b12959e21931bfa
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkerrors.bash
+FileName: vendor/golang.org/x/sys/windows/security_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-securityC95windows.go
+FileChecksum: SHA1: f0a5e1e876a7b0f1bcfb4eec9a016a3adb3e3db1
+FileChecksum: SHA256: fd0e4b53729aa5e757ec26b823eb5046465cc044bb352332a631af67d4d6e6c1
+FileChecksum: SHA512: 5cb450cd409a8dab7f18b79466100bef950729b6790635677691fe3c22b8cc7759a029559ec54d607b39248ab5b1d693e2087a7e507dce84f813257a19251695
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-securityC95windows.go
+FileName: vendor/golang.org/x/sys/windows/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-service.go
+FileChecksum: SHA1: e90c1c1e935a66eb14a7aa0cbc053a6fd097b28f
+FileChecksum: SHA256: 11f1923bc1304d7be713395a6eba87fb421725947a1f5ce291e2c04dd9e2eebb
+FileChecksum: SHA512: 9528b651f68d46ea68ab071a33f1c3a967d51f514d5237de2258c705a3ee5b5f01c1e817df94d2e98d5a2643fe55b749e295b31fc20cf350247d61a1f8bc0869
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-service.go
+FileName: vendor/golang.org/x/sys/windows/registry/value.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-value.go
+FileChecksum: SHA1: a3c78d4cda98c90d151739a9aefb8d1645e0c406
+FileChecksum: SHA256: a4a711683eb91f48f9c4d2aeafabd0ca406e0ae20fe4394721a71fb15817e1e6
+FileChecksum: SHA512: 7551cbfd196ce9989c864803c28d0f6048cfb6c8e41d20ca3769b72faf00bb7bf798e7fc6e01693b820848346983f9b4bf0bff110c969504d4e6d4caf3b33940
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-value.go
+FileName: vendor/golang.org/x/sys/windows/mkknownfolderids.bash
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkknownfolderids.bash
+FileChecksum: SHA1: 47befa9cca71a351a3d2f10d930793103af1089a
+FileChecksum: SHA256: 3b7f6ac42ae1e73aa8d06d4f89f18b91916f153b030e9c01e15d41959b6b5fc6
+FileChecksum: SHA512: a3fdf99010bdb0931ee52f90d88d3b3a956594ea450fd6a455ce9847fe0956867eac1a871869bd396ecc683864bc0347b9d22bb3880175e21e8b9b4f0b1d6475
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkknownfolderids.bash
+FileName: vendor/golang.org/x/sys/windows/svc/event.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-event.go
+FileChecksum: SHA1: 9ed79510a8d9de2e66462790935e49baa9a90c75
+FileChecksum: SHA256: 6922816cb0ed1cd9450b83326f2c2dca91c1776b0b593bcdba74330e70dd0e57
+FileChecksum: SHA512: 628c1797b88d86e148db27342580435d9b3069a7c64c5b94bb3752010fe6d308817f07341a031eac5d519465bccc687eb6bb7f36db48aad022f75a136461851e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-event.go
+FileName: vendor/golang.org/x/sys/windows/str.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-str.go
+FileChecksum: SHA1: e0412c7ae5a8a37dee649eb5334848c9634f13bd
+FileChecksum: SHA256: a979ea38da92c56dc17baa7fce72bb82ac4353867d47c5240cee4404bf356875
+FileChecksum: SHA512: 06fb0133dc58c397cbf06696d976600fa9a257d5d90560f9a38dd9b24dd22d4fe21821ced69c8e631e4f9990c38b78ebdc182f2b69af595e11c8227ae8db87bd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-str.go
+FileName: vendor/golang.org/x/sys/windows/svc/eventlog/log.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-log.go
+FileChecksum: SHA1: a169ef7205085cbb970a49593cecf898f5c5db3d
+FileChecksum: SHA256: 43c2f4dd4a8853ced566d5ded602b083d6ae7f0a1dea9cdab4a453f4b9046f7c
+FileChecksum: SHA512: 44774b635e4c186ac8ebd243d30228a677e450d5af266fad9d57819ac0721ff3f9b1fc4d02b3d6442d5b635713d497d6f901443f1431632c40d32886e85298d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-log.go
+FileName: vendor/golang.org/x/sys/windows/svc/eventlog/install.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-install.go
+FileChecksum: SHA1: ea782aa61b886dbd85aa3e8a20796be94a124ae7
+FileChecksum: SHA256: 5ee399b7a87feb954aa54ec30af1168f407a4c8aa451fb6ed9e6dcfcdb75b59d
+FileChecksum: SHA512: fdd9c64209e395c1641fe662edd12ea7094e8ba07f0d1d9792344e84a84a25e6fb62af6f3ef80f3ad48ffd658cea0a5415123871f0855f55e3ebb335f41da56e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-install.go
+FileName: vendor/golang.org/x/sys/windows/svc/go12.c
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.c
+FileChecksum: SHA1: 4ca2262628c61e2027ed83fa2a5f402552a4e5ac
+FileChecksum: SHA256: 1b2da90d219fa20c82bdaf50bfbad2d21b7240a23db88df850ca7b6e672e92db
+FileChecksum: SHA512: dd89e733d1b863d5dd94b7a6f03d130e5e5f9956e50b9627f5bb6f9e8446223765bfe81362a53aa43b7933481c2a612dfaa74d73dc188330c441068aca7c55d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.c
+FileName: vendor/golang.org/x/sys/windows/svc/go12.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.go
+FileChecksum: SHA1: db2a0fd8ae766bf14f1fa2d308f35f9e5aaf60ec
+FileChecksum: SHA256: eb75915c6f6e3abf638720b452bdad4caab5aab30119ae65753459bd7aed85c9
+FileChecksum: SHA512: 116a549447201518d297df58a2b1d45539eb695548d0d651be4daf8ef615cff8798d23053e38bd7e81eabd40ef34faa0389fa6d48ece917dcd83a46b9ef451e8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.go
+FileName: vendor/golang.org/x/sys/windows/registry/zsyscall_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-zsyscallC95windows.go
+FileChecksum: SHA1: 6958a3cf13e80de899d3df5ce102d1babc448be6
+FileChecksum: SHA256: 465f93935dc8f41633e71546c7166d922780a780d265d06e5144084c9249733b
+FileChecksum: SHA512: 74dc96da1a83246e5dba93605797cd868440a38f230ed5d41754285b440a46652dd664b93dbc6a36a331c7978617d964c3d8b6c9d7ba9e78bdefa596ff0a31fa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-zsyscallC95windows.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/mgr.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-mgr.go
+FileChecksum: SHA1: c442007ade3672ba5b673d0ba785b7824dfd9be9
+FileChecksum: SHA256: a166966550645f5162b9b095c897b5109d5292726e24889a13dd4e7959b2d424
+FileChecksum: SHA512: 9ef35b4839326b035fc4fa7eaac775847946d854b8f6ab5e281f13086419efd4e1598bae2c122e99cf74bd5f487cd69972a01df3bac2872bd9ad1d7bdde76206
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-mgr.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/recovery.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-recovery.go
+FileChecksum: SHA1: 4f79f7b2e07044b810f1383c9c1acff111042bcf
+FileChecksum: SHA256: 407faccbb472bb63079da2ccdd7be81f18767cc1174f22f8881b963cc1b54eee
+FileChecksum: SHA512: 81659bc38b5b2671961afd26670b98e70cf79160ccbccc2eb2e708b7752646713df2c9b5e95260c6affd59e8cf3312209a8a36d22ded4e5fbb34721f330a94aa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-recovery.go
+FileName: vendor/golang.org/x/sys/windows/svc/go13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go13.go
+FileChecksum: SHA1: 58f4bd5b4011db2d8d58c5e10a503ebb711b76f6
+FileChecksum: SHA256: 75cab8f19c90b33574f64f59d7a926425648e38ef178362be7f5df1752ec92f9
+FileChecksum: SHA512: c0099c640a4af284f691f06ed13f7f5607ed120fa2146783e4d054f77ab4a751bd371d4a8bbcce8b92fc46c8b9a9c1320b5a0a2b14774024a5c1751335ce34a4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go13.go
+FileName: vendor/golang.org/x/sys/windows/setupapierrors_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-setupapierrorsC95windows.go
+FileChecksum: SHA1: 436a97d64a058dcf82cdf856d4c763093b80d7c3
+FileChecksum: SHA256: 725a91556b9733aced0d776a95a00ed0d91d7ef6c2c2c137235fa1b62225cabf
+FileChecksum: SHA512: fcfdc58d0b48c4eaff23407b8334a7e27a4b2599a50fbe4c881a9b29ffa58faad7e3101186172032c3c0b80084cee49aae0a9c9904f94f4caaa5d59729df5d86
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-setupapierrorsC95windows.go
+FileName: vendor/golang.org/x/sys/windows/svc/security.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-security.go
+FileChecksum: SHA1: 4da5215624b4998619adb9fda4c0318c9781741d
+FileChecksum: SHA256: cfeb4e898d7ea9dd539da578e9e03d9911e39b2f093656a852193fd0f05f22f5
+FileChecksum: SHA512: ffc8354ba603ab64b6106df1ce3137b3e39e57e455391d5829a29c7219bba338fd54df5ecad60f195109e3c63618a667be826ffa37644e25f8b71105fb851c36
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-security.go
+FileName: vendor/golang.org/x/sys/windows/svc/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-service.go
+FileChecksum: SHA1: 9b63efc826f731182c67aea57a542934967a7d97
+FileChecksum: SHA256: eb513ede8a0a994ae003b87adc5cb64a7623020166a3db1028d61296fa2d9ac1
+FileChecksum: SHA512: f014d7c595cf94abfe6b144d945133ecd19fdb3a61b856270e76777b837893ed2d1165b1351cef371d92455fcd4f2ce197d254dacace4ddb389f243f9afddea0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-service.go
+FileName: vendor/golang.org/x/sys/windows/svc/sys_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95386.s
+FileChecksum: SHA1: e85c364bf90fe6b73176008fbcc8926a6d06e589
+FileChecksum: SHA256: 60ef09de8cf9672f6e2fca6b526a0b36c863eb9ee11dd1f4c95462e3d664caed
+FileChecksum: SHA512: 729613883871db97f01a956e654c553c4393626038b2c5beb8e079b701a96ae917850d4854517f631c25c0a91dcab137631a98a6ac5d12bab928b6d231dbabac
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95386.s
+FileName: vendor/golang.org/x/sys/windows/svc/sys_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95amd64.s
+FileChecksum: SHA1: 59fb11f442c2dee6e99eefed36ef182ad203820d
+FileChecksum: SHA256: e7fd25a47e1e85709b1b340f15839937ffd9a1dd7ed03f67be35af0a14eb71de
+FileChecksum: SHA512: 6be61c1b142323bbff107d81510e527ea418fb482e79980ef9c394c95caefd74b9ee1f81690a7fd0beab2ae5b943e1c42ea9dd0d1142485acf1beb8ee3853cac
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95amd64.s
+FileName: vendor/golang.org/x/sys/windows/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscall.go
+FileChecksum: SHA1: 1f71ffcb90c5372bc5af1e63a148f8a51027dbf8
+FileChecksum: SHA256: 870a4e27224aa6f110058b4b7756ef315ec0dc96060892f9d2a6fb49c3d72d82
+FileChecksum: SHA512: 0f2ea786c93d784906ccc31d0d9afad3a9ef81e2682bf9d490472a58bec942cbaaabe087f5e4fbc7e08fc309d37e6e96710a5c9cfcc6254a5682046028cc6a64
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscall.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-config.go
+FileChecksum: SHA1: 4eee8a3c979271d17733e6841d6352e25ce9b0b8
+FileChecksum: SHA256: 0362e7b9f59a7380410cf29b7e1f4ace8616357da42e82a1fab02851522e0124
+FileChecksum: SHA512: cf38d765f8b43e5e8f1e8bd64acc5782742540cb7840c651a8738f285acbadda22aca6bdc3b3713097736e1f146cea585cf7a52dc445850034843692079f9edd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-config.go
+FileName: vendor/golang.org/x/sys/windows/syscall_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscallC95windows.go
+FileChecksum: SHA1: eb681f3652c4349ede05708c0aeab32edcf07919
+FileChecksum: SHA256: ca562e567f5a493ed4617dbfe804db2e229c5ab4bb261415163984b84a8fcac4
+FileChecksum: SHA512: 2c99d1d804af01e0eda414080212cabc03e10bdcfcbb7f042add6ed2d058df3b57c5528e657d52169d9028e680dad9f86d019fd0e461927e2c5eee31bac80219
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscallC95windows.go
+FileName: vendor/golang.org/x/sys/windows/types_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windows.go
+FileChecksum: SHA1: 8b834b9e974377a4725a1d42843f3ca4bc7e0e38
+FileChecksum: SHA256: fe170ab50efa1aaa307bf3e1d41d66bb6f57f02c33b8212bf5bf8755583dbebb
+FileChecksum: SHA512: 6e536127f1a6f840c5e4d7a82e2cb4d4e53223fd7112037ff2cf5bf562634b2dff221c2b8b5d1aa2d536a714592a65f4b69acb0b05e25ffb66720d444bfed62f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windows.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-service.go
+FileChecksum: SHA1: a126682d154fffdcadffa7faad68f232babb1493
+FileChecksum: SHA256: ddaae837e153a587ae70589add91cfb75c5cb251468238302bedad50a375c9ec
+FileChecksum: SHA512: 24a9674c942e0132ba0cd25174e807caf5c8488e153ce814845d81a5a44b2c18d31996ccab2bdf47dc49b9d6f65d2494f8c4c9c6cb05ab2f7441b211bae5e760
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-service.go
+FileName: vendor/golang.org/x/sys/windows/svc/sys_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95arm.s
+FileChecksum: SHA1: bf05c7141ea16a0cab13e6b4c5c47a4f36839796
+FileChecksum: SHA256: 9ec3d8a5463f4e35021e7f51d53e28615324c2dba126cf5412710c8a56b8ba7c
+FileChecksum: SHA512: bdda832369951173b674ded432497b29b243609709597e2b39e8af39ccccbe881afeaa39a8ebc3c286668682079012761c925497029c1d3c03deaa31c360884d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95arm.s
+FileName: vendor/golang.org/x/sys/windows/types_windows_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95arm.go
+FileChecksum: SHA1: 3c107dc5bf98770e232e68957082f4edacbbe4f1
+FileChecksum: SHA256: e4dade4b688c7dea2a0d89a819d6917f3ab7be2514e462d7eb2fc2052cdc625c
+FileChecksum: SHA512: cdb23cc75756d71090099bb11ebfcd6423c7cd3964162e364ebd6b632414d57f4ec2d80cbcdc5328f94ddd284f6070a7aec6b44dbb9c34bba8c125e79e526210
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95arm.go
+FileName: vendor/golang.org/x/sys/windows/zknownfolderids_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zknownfolderidsC95windows.go
+FileChecksum: SHA1: aac1a33e936a6f37039017ff09f3aecf75041bca
+FileChecksum: SHA256: 3815bbaa8adf5400041954decc56e8889eb56eb20bfc30053e7799703af0fc95
+FileChecksum: SHA512: 5f00ea49d6052e8173c685b0d951119839098b75ab78ef2aed78196755d3007b6a25dd5a79407a019b5dc9ce1e76c297e6a4c99ce7ca30d26818522b48f55023
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zknownfolderidsC95windows.go
+FileName: vendor/golang.org/x/sys/windows/types_windows_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95amd64.go
+FileChecksum: SHA1: 60d993369512552dfba790c5ab90571fd4285323
+FileChecksum: SHA256: c375406875cabc6447a9a8ca917eccab2227ea33a17ac3ed02a3a8fca0af8ce1
+FileChecksum: SHA512: ad7c80879c4e21a29d1c8a44f59238f419fdcd5fa4dd02bac0ef034e20dd3c664ae51240fee1e1555155fadb1eb80c1a366336e638ecd47b7e3a4df3df5b802e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95amd64.go
+FileName: vendor/golang.org/x/term/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-AUTHORS
+FileName: vendor/golang.org/x/term/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTING.md
+FileChecksum: SHA1: 9b74d788ee920c4a230b46d3e74714da15462d0e
+FileChecksum: SHA256: 6f509e4bff3be1f056f1d8d5224c5e8eefd61fdf62c57fb1d0c8c6ce369e56e4
+FileChecksum: SHA512: aa9b1028732a658cc51c8ca77378fad73fd5de89cec067aed8cc39ce12075ab4a85f1e7490b2ce5b81b5c1b95e00ed435ff7ffa19356fa8c4ff1719ef4be67a1
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTING.md
+FileName: vendor/golang.org/x/term/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTORS
+FileName: vendor/golang.org/x/sys/windows/types_windows_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95386.go
+FileChecksum: SHA1: 0f929877d2068f4b5b41baa9e9c5e95350c08c8f
+FileChecksum: SHA256: 02d259fd40882f68a35913b0c1d3320054804d92a4a7a4e6b86b1816c1b90258
+FileChecksum: SHA512: 43baa3e300126538e0f25e4acf893ecec028d50f0629b4df682185e6be3d32fa2900adb547eb391986156d6524d6de4e6836653431e8b21da2289c19206a7c0b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95386.go
+FileName: vendor/golang.org/x/term/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-PATENTS
+FileName: vendor/golang.org/x/sys/windows/zsyscall_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zsyscallC95windows.go
+FileChecksum: SHA1: 7ce5e950790e6963f32ba915a007c059f4cc72b8
+FileChecksum: SHA256: a9214631fbb4075a950f2ad58595573c9413ad9316a5cf1b04f076546244a289
+FileChecksum: SHA512: 8e886b071ca87c7ac1ac43af3ef9ccf194275a41c009ad4fb424c70508984d096814b42871b195902f4451f92bac27275d26dae477de078c958fb2f997aa5cfa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zsyscallC95windows.go
+FileName: vendor/golang.org/x/term/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-README.md
+FileChecksum: SHA1: 80e42defd262b25d2231ec2f16f5e0d8dab245ac
+FileChecksum: SHA256: dc6056ecb2f38bbecf042329bb70f3798834411bd8851bcf9434876f9b7e1c49
+FileChecksum: SHA512: 965619fb7ac342a5107e02bba0fab5bf5489eb5862d984dcfa1b48b50a3835cd340a430ade4d184a51d53c3647ac647422f7e39ba10df32d937f0c9fe29cbe57
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-README.md
+FileName: vendor/golang.org/x/term/term.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-term.go
+FileChecksum: SHA1: 1b645878fc30cc576a74d815ce42d1477c8c2713
+FileChecksum: SHA256: f5c204ae48e92fbc77604dc5e47448fccae46f92ed7297784be76a76f9bfe2b2
+FileChecksum: SHA512: 5cb55ce1b44151e034245d6b70d0167a1b16ba113f38352cea19d46b25510c2c345500766a2bd5f19c45b287a18a19a44d5051029b04188ecd389d11bc6d9f85
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-term.go
+FileName: vendor/golang.org/x/term/term_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95plan9.go
+FileChecksum: SHA1: d701d03fd7adfafc43fa7cbae4051e2ed128f7a0
+FileChecksum: SHA256: d2317483f1077eaab2f6a33c1b31704cb072fbdad75b5bca67aac8f0a8dd175e
+FileChecksum: SHA512: 3cd4a7f57c795eff18565e623159a4f28eb636c01257298ede53535499f16fb83b45b6d77a6c154763b06022c0156c03a4f3e81500d9204f5c83f3a020575635
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95plan9.go
+FileName: vendor/golang.org/x/term/term_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95solaris.go
+FileChecksum: SHA1: bcb179176cae96143cc740425d281648828341d3
+FileChecksum: SHA256: 1766d8547f1aed10b595b463e801aad012f976576de2ab39c6e8634a65bb7d8a
+FileChecksum: SHA512: b7131816a27922e79310cce16f570d6b6da87f459806a942dae949528fa8599c54f2aed44bf767af22c42b361fd1ed91121a52c2da942ca73a29aa87ac9ac6b0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95solaris.go
+FileName: vendor/golang.org/x/term/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-LICENSE
+FileName: vendor/golang.org/x/term/term_unix_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95bsd.go
+FileChecksum: SHA1: 70a2d632541f61fd028a406b78d032feddfeb8e0
+FileChecksum: SHA256: 8c4aec715810b3ca0880a43b6fc2ec3adadb009e0f0379c05fcfce963f818457
+FileChecksum: SHA512: a097ff3cf5ddd77f53a8e6d0818e0f663ded778c3e681d4890cca7bd1975e99f144969f68a62afcc569f9c00551ae7ef1ce41c687d6437a774c968ac6e3705e2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95bsd.go
+FileName: vendor/golang.org/x/term/term_unix_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95linux.go
+FileChecksum: SHA1: 6f221a088fd57e795ec49d9630a5878704580548
+FileChecksum: SHA256: 1b97cc798b7ffe742de08f1478ed0138b003287299b894b34010c2fa3edbfee5
+FileChecksum: SHA512: 1123b92621c05e37fecd43d7fbf9c55e2b72990eaa8abf3e3fad055d84be6ce9e90e4e1019d4f0f6d65d9d21ba264cb92aef1f21ce077eda748a9ad82ad8682a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95linux.go
+FileName: vendor/golang.org/x/term/term_unix_zos.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95zos.go
+FileChecksum: SHA1: 9e1922a35001441a9fb84da147c9aee212bc3d4d
+FileChecksum: SHA256: ff5557e699c9fdd35d48cc9f396abc5947a269f68c7052ceedc49d6d55d08c33
+FileChecksum: SHA512: 3bd241e6aa0c4df850439f53308ddecaa5feb2a1a7345880d024d2218d41f83ff216593a8b16344966bf5969b79e6d8f86b9e92729d6b1f21ae1c758a8461ee5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95zos.go
+FileName: vendor/golang.org/x/term/term_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unix.go
+FileChecksum: SHA1: a8bc1dbf078b349ec575f420593ec5e2b50591f2
+FileChecksum: SHA256: be81eb889875801a27c1b038de4d021762ba30be7d274503b9bb2b15bfed1f42
+FileChecksum: SHA512: e463ce9934e3e05ce794acba63c6d7cd60df71a2880af51881e451b038a2605380ea47114d94b63ce0e1a3899da086b500037265f87002623fdbff6b63ca0b37
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unix.go
+FileName: vendor/golang.org/x/term/term_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95windows.go
+FileChecksum: SHA1: 9f4518b934cc971e0a13d0ebc9200f55e970fa98
+FileChecksum: SHA256: e1d8fbef7e3e5c93700cd15cacd44bed66aaea51b72e70da3eb50655e7018f20
+FileChecksum: SHA512: 327862807243386e79a6530292ce8566b174e0cbb17226cf97003e1dfdb160a3330cb53a318067d5db22552ed2c91231abe59aa917ce4eafcc18397adb8d20ba
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95windows.go
+FileName: vendor/golang.org/x/term/term_unix_aix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95aix.go
+FileChecksum: SHA1: 6f221a088fd57e795ec49d9630a5878704580548
+FileChecksum: SHA256: 1b97cc798b7ffe742de08f1478ed0138b003287299b894b34010c2fa3edbfee5
+FileChecksum: SHA512: 1123b92621c05e37fecd43d7fbf9c55e2b72990eaa8abf3e3fad055d84be6ce9e90e4e1019d4f0f6d65d9d21ba264cb92aef1f21ce077eda748a9ad82ad8682a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95aix.go
+FileName: vendor/golang.org/x/term/terminal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-terminal.go
+FileChecksum: SHA1: 5c6d03311df4df1d16255a94a1cd593ac541a07b
+FileChecksum: SHA256: 83876d06e519d375e298b9b9b72fa5996402925b521ab6f5e364d00d49786352
+FileChecksum: SHA512: 4e6ec4c993bbd2d5606ec512fcc476803a76ae74fe45d5a98bb0a7fd30720f39ad3039228c22e256fc96d97df9a32a625098a7c750d5cf0c063634bdadc4f118
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-terminal.go
+FileName: vendor/golang.org/x/text/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-CONTRIBUTORS
+FileName: vendor/golang.org/x/term/term_unsupported.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unsupported.go
+FileChecksum: SHA1: 3e3f12dcd55a87b2099ae01bf97907a15ce2a66f
+FileChecksum: SHA256: ee08bec9a60fee72932ff6ad0987cc3e7fc833b85dcb4b387d635df9da881ccb
+FileChecksum: SHA512: 3a122c6d484f055246938c2260866b9c10874837d28d43f89abe07a6a8c111f8804edcf38102ff44fba9819c939ede22bf83f93c939f885b1eebf3a20747dc56
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unsupported.go
+FileName: vendor/golang.org/x/text/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-LICENSE
+FileName: vendor/golang.org/x/sys/windows/zerrors_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zerrorsC95windows.go
+FileChecksum: SHA1: fe933b6c458b02a0b25865a6e8401e412b3d160a
+FileChecksum: SHA256: 7e8a3410b5b555b95f5fe31a52c32aff856bbd8ec3980ede5eb6195aa1e428e8
+FileChecksum: SHA512: 1cb80aff565572116c595f383f8670a41e395724562689c05a3d48772fac09e8419f98b1213fde82171506b0ce2976cc7f65445dcc5911bd6ed1220d47bb6645
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zerrorsC95windows.go
+FileName: vendor/golang.org/x/text/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-AUTHORS
+FileName: vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule10.0.0.go
+FileChecksum: SHA1: a0c100c5fb2f44b5ef9c7a3fb1f1a8a14dab6045
+FileChecksum: SHA256: 2d8bf3b869ce1cd76417e6bb02d54bb26fe6e170485ff7519bebaefb8dc0210e
+FileChecksum: SHA512: 5407df8d83243e450694ed43f1fe98d1b4e53ac1cad12df9bec09b2909a560f5394153beaa5929dfca34d9eb18d3218c1545b1f1fa26b0582517903ee3df28f2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule10.0.0.go
+FileName: vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule9.0.0.go
+FileChecksum: SHA1: 4a0fb3c739c72bd34771fc112e6863ca4fd48100
+FileChecksum: SHA256: f77822027a5728e6cd742a132ad29afc33b37c42ad30d791f9ec906988a680b8
+FileChecksum: SHA512: 2347c3235ec858f963321150cb5a05fe9a2e6d46b39ad42f1e3affd22f93132573fcb5d7bc2832d9c8c952a4580d2e9a60d1c2a58c18879a2a1b9ecfa5118b03
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule9.0.0.go
+FileName: vendor/golang.org/x/text/transform/transform.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-transform-transform.go
+FileChecksum: SHA1: b64b143bd0de4a866b18bc4cfd29b50ffc86af74
+FileChecksum: SHA256: 7716301e210f42b764ec78f4adffb05075f1d5103446a40b8a38043f5a7abd88
+FileChecksum: SHA512: 7574d7534190c3b3bd9554bf46c83da9adf98497553e64bed832eaefa38b8199648c5bb66d205193cc0000fc1298d6cc8e66b2ab43188f51c192d98257d550e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-transform-transform.go
+FileName: vendor/golang.org/x/text/unicode/bidi/bidi.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bidi.go
+FileChecksum: SHA1: cb8318cb564d15624b007e2e209c1c7c3a46e445
+FileChecksum: SHA256: f1c6f1e2261041560e30747c9a1c25313f7dff9fcd5772a6c261915aa70f00a2
+FileChecksum: SHA512: a0365b33af605a091637b98bfeca210192e43776cb65dd4aa61c1a9a3768e6bdd870030c37385374c5f176c32459d057d883bc68370a56c9ae8511939bff556b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bidi.go
+FileName: vendor/golang.org/x/text/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-PATENTS
+FileName: vendor/golang.org/x/text/secure/bidirule/bidirule.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule.go
+FileChecksum: SHA1: 061c4e451018f5b19bb91d334a3e73ed510b6b27
+FileChecksum: SHA256: 93ef75e5b5e4db48b975d5cea783612062377761c918e658a612adb3b7753f21
+FileChecksum: SHA512: 8107275865c2f018390ea6a21689a30a4ed64c0283bbcbfa3544eace2295d3be1b8ff86244cbe6dd2b4e29cea4eb0d06ba1f399a5a06063dae935ce4c109c89e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule.go
+FileName: vendor/golang.org/x/text/unicode/bidi/bracket.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bracket.go
+FileChecksum: SHA1: 02c68165f0fd75bcae96a4a45152271e985841ce
+FileChecksum: SHA256: 5caa24f9c4e04a54d18875468f976b4b7c09c8700e88286f2fd96828f134107e
+FileChecksum: SHA512: 50742ff084a9ca2b9ec94d70fccf47d348d6e6dd62d26d77315f4657d23473b028edca47141002f3b7bec353cb28a13380445f7f8d6a684ec0791c3d6a5316fb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bracket.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables10.0.0.go
+FileChecksum: SHA1: 7946c00270b6dfe6c225b2589603a1b6272967cc
+FileChecksum: SHA256: 503f1dac71a22a001f19b122b7251e505e76a10a9e64779a904cbde4aeca5f14
+FileChecksum: SHA512: 56204285dc7fa380bf4fd0c62257cdcf59b108cc3ff7f2e6705e59a8d3d2f8852a62747ea7332b03c903f1a53a564370b9c465bc312248bb41e6488c2f019b3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables10.0.0.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables11.0.0.go
+FileChecksum: SHA1: b29fd4bd1e1cb3fb0bf4c8c97d24dc08eb1c564a
+FileChecksum: SHA256: aa1183dd484b9634964a047433eb2bb75c089702f90fe84a397c230b5900f62a
+FileChecksum: SHA512: d39ddf4e8cae5d038311924cbc4e16af937732f16022092923412153185ebb48a33da78cd51d285cedf3c91f6f24bdb80ddda77a0d401eb10ae57e5e5e8a0e74
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables11.0.0.go
+FileName: vendor/golang.org/x/text/unicode/bidi/prop.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-prop.go
+FileChecksum: SHA1: d6db596f11903b700f29808f8e9a34b1c055d061
+FileChecksum: SHA256: f6391b2f69a1ae2a0ac1f0599a90b260ec350a19f73ad5d6572660100b5950bc
+FileChecksum: SHA512: c235884a6a761c8cef969fcc16fb4494a1c4afd758545c97d4ba8b8f16467e3bdc8623e212db0acf5307f0506cc89c4de44e6d6dafc5e5f7f198627108b224f3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-prop.go
+FileName: vendor/golang.org/x/text/unicode/bidi/trieval.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-trieval.go
+FileChecksum: SHA1: b253888a551ac1d9d32ef5964044241be971c30a
+FileChecksum: SHA256: c05303e6fb896826645d38c3f5ebe5a4f284450b87a899f67638f74310ef7807
+FileChecksum: SHA512: c0e1f36d7a902e56fc0ac57910361d0502ba0db4102b6a43b63b68b684d80ef44925a9467bf84b00d895e843d065c6ff5d6dcaba0836d1a5da7150920efcc903
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-trieval.go
+FileName: vendor/golang.org/x/text/unicode/norm/composition.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-composition.go
+FileChecksum: SHA1: baa60e49f7e4d41b5d5502c48f361eb734fe3907
+FileChecksum: SHA256: 3d1be52960f2693926472819b747646e7d2371d2bb5f53097cf9d46c913052df
+FileChecksum: SHA512: 6a1398a85461e7eabf575007239019a6eaf6ec7e7cd2ded09f1cada1252c58a55302491a0e1ca6bdf0ee51a3be316c0ef82e477e6726bcd9b6c194bbd63a3dae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-composition.go
+FileName: vendor/golang.org/x/text/unicode/bidi/core.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-core.go
+FileChecksum: SHA1: 4ac871bb1a1e6be2c7f083f59328428228bdbba4
+FileChecksum: SHA256: 0343fdcaa06a771e32374a31a826fbb9daf0ef3847e63de110d1bf637b3aaa6f
+FileChecksum: SHA512: 4196926e39c9ec33a104d870ba524373662426d9f7296588e780cdf73f9bf2930e5e00529ff56343413d68079f489a3da80dc8bb7bec6cbd1cc65153e9aa8aea
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-core.go
+FileName: vendor/golang.org/x/text/unicode/norm/input.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-input.go
+FileChecksum: SHA1: c0f3107583d060c2a4f08bcdf73264f8862185ea
+FileChecksum: SHA256: 965b431790bb139543d71a9c497920ef7d9a15af417456a2bbd0cdb629330e8d
+FileChecksum: SHA512: 56302c6e1f63f4594a28793f55faec455764f541685c1e7606ace42f2dbc0d90f72cedc398731dd83185773966c75b9e5dd4f3e9684503ee62993cfe145a9114
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-input.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables12.0.0.go
+FileChecksum: SHA1: 2c530334ffe8b90337a5a3a478a02bbf89913a20
+FileChecksum: SHA256: c1e4de3f02fd06440ecf4b7a1eaef9f76a61b0691e6f75d379114826f1362c82
+FileChecksum: SHA512: b71e6070d8a4543be8c4c6bd3d777a85dd0be9093921c4a7e0208e6572ef2955bc65cef7fe31e80620bb4a6347cd4e14acfbb6aa58d15eb834ce0c5de404f567
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables12.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/iter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-iter.go
+FileChecksum: SHA1: 2d448fa0fb84411bc6e19931ccd948e49e41f1bf
+FileChecksum: SHA256: 16a40d326f9b37c5430a18894f718007728ce8324afb08d8c0a17ce7289714b0
+FileChecksum: SHA512: 9f6b374ba35ba57a9ea69f9a03d3d4e6d606d1d0651935fcaece4fcbf458911e343550cb303f923d56c80c979c0b8d8e64e48e906b3ad4cc20ab00b282d20913
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-iter.go
+FileName: vendor/golang.org/x/text/unicode/norm/normalize.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-normalize.go
+FileChecksum: SHA1: fa19fc432cc913315da023de4dec64c61e1dc25f
+FileChecksum: SHA256: 0eddfc82ef448e108e85db6be3a7969f6fe464726a11807bd6066702d81fb92e
+FileChecksum: SHA512: ce0ecccdfa27da8aaa0994fa2e6fab5b5a31c871bed14fb0d1525b8d8221a07048f644030785a43e0a58d4a8f93a93884226e24519449d4cf22c6136644fa37c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-normalize.go
+FileName: vendor/golang.org/x/text/unicode/norm/readwriter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-readwriter.go
+FileChecksum: SHA1: 22fc95ce71255d6959293a4ef70fab1631433647
+FileChecksum: SHA256: d600d1f6cff2536dbb49a0f6bb8c06f6fc05f2754dad2dc05f1d44f9e8e48a35
+FileChecksum: SHA512: 7cbfc63410333ae33b8c864d35f98f70544f277081cc05535c6420bfa3d6f5e3a1c57bcd91b2403ae1f72a1404467a6c63eed5efe1b45419b22d4593694c94ea
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-readwriter.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables9.0.0.go
+FileChecksum: SHA1: 9afb58cc69562f651135ecfb00dd47cef12c8060
+FileChecksum: SHA256: 18dc2618e483e18d2319f12e8faacf0b0e55b093f69a3d8ddd0d7dadff961def
+FileChecksum: SHA512: 0514211cf0d59f0ac89dfa063339ea3739de5c04222dda9f04aa7b9e77d1920376eeb735f2b4e671ca16340acfd0b6cef1e3584bf909f3d826bfe458931772c1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables9.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/forminfo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-forminfo.go
+FileChecksum: SHA1: 23b8d97db1e5a8c2c8157571a10b7d564567f9c4
+FileChecksum: SHA256: b831b829a79b47f18ec401d3e2a62ce35dcae81ab171f41b55d2158d8d8aebb0
+FileChecksum: SHA512: d1bc17b406aa27f922241d30d6454f7288bb60f3b05f29cf4ed3d0da1c08bc59f719139fd0ca1e3835882eca28798bce683a6b7800e9c2b4916788e9e87402c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-forminfo.go
+FileName: vendor/golang.org/x/text/unicode/norm/tables11.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables11.0.0.go
+FileChecksum: SHA1: 42a79a8de252d0999bd7a549914954399041dbe2
+FileChecksum: SHA256: 19da18bd18ffd59ec4e4b0e488823b4cc24da40180353fdf357479d01c9ac5cc
+FileChecksum: SHA512: 13877980c6f2ad27da96d367a5a5c1e35bf6b9c2995f7e073a4fe1ed1f09855299eb5a9e0f734c4b95eaeb4961d96f34a6885863208d8882e55f6b6bf0324ebf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables11.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/tables10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables10.0.0.go
+FileChecksum: SHA1: 341cd04184dabd1bf4125289423aff07b1fabcc8
+FileChecksum: SHA256: 3cbcc89df18775b46c603a75541701b037763113c1e2e128742577a21b2a1d3f
+FileChecksum: SHA512: 71a85a672cc7589c5e347df6aa1695730d40615833b69cc6c889662b65c1263be9785e962e07b106d7f8a97e3a919e940b666d4b9ee700a9abda137b22586988
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables10.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/transform.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-transform.go
+FileChecksum: SHA1: 8d2453a461aceaa8ec6a287e478efe806b8211e9
+FileChecksum: SHA256: 6f8014595643e2acae76d47ed6abe8ace969a0c9070dbfa5a89c86bebcec812d
+FileChecksum: SHA512: b4c63084ccf822f30bd62cd8ce274f3e4271afbda07ae01fa31b4785635dabc5c1730e36c18027db438e73cd214df2152fc21f9c2d290b5fa38d5d94c1161043
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-transform.go
+FileName: vendor/golang.org/x/text/unicode/norm/tables9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables9.0.0.go
+FileChecksum: SHA1: fe5c97c28516ea4ded682a460081256a5f7733d2
+FileChecksum: SHA256: ded58558f8b4f57faca8ced746791893e9d2ebea91a1c65549b262c47f2fb172
+FileChecksum: SHA512: a4dd3e856df61bdf74b939bb3a7eece063455d2f1609c6c9332b0bebf2c40edee118e62e85ea71f10f5c73e92b4728c39af9632817c9fc3b17f29a20b5ae0363
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables9.0.0.go
+FileName: vendor/google.golang.org/genproto/googleapis/rpc/status/status.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-googleapis-rpc-status-status.pb.go
+FileChecksum: SHA1: 39fcace7a6f5277f91cac00dd686a53b1d94bf2b
+FileChecksum: SHA256: 4f58c41015ff946dbabae152d0e743635f3fc69cce09711a74547617174ee3d8
+FileChecksum: SHA512: dba72ae3b546bc4c6cdd13528a300d4cba75c7ad0e033b20a88ce4813c5f0c1bd0b458988839ec10ea1e51907ae223af748ef320108425f15a9274fcd1ae82a9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-googleapis-rpc-status-status.pb.go
+FileName: vendor/google.golang.org/genproto/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-LICENSE
+FileChecksum: SHA1: 2b8b815229aa8a61e483fb4ba0588b8b6c491890
+FileChecksum: SHA256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30
+FileChecksum: SHA512: 98f6b79b778f7b0a15415bd750c3a8a097d650511cb4ec8115188e115c47053fe700f578895c097051c9bc3dfb6197c2b13a15de203273e1a3218884f86e90e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-LICENSE
+FileName: vendor/google.golang.org/grpc/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-.travis.yml
+FileChecksum: SHA1: 57ba5e324cabcf41f10d82a51ac81418b75ecd56
+FileChecksum: SHA256: 4137d59239d482e9ae69ef8b8d5251eee6397187b4f13d954ddf3f5e5254e2c3
+FileChecksum: SHA512: 066fc071fc2310941a35ef0ebe02b062be57e01f370013a0c0c840b92cee50473847a62cb63a4bac3bc08744c22aadb87dbee8d950d622918df7bbf9a2f9c254
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-.travis.yml
+FileName: vendor/google.golang.org/grpc/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-AUTHORS
+FileChecksum: SHA1: 5165eaa04f21ebe576cccb7a7cafa5d3ed6be1df
+FileChecksum: SHA256: 627c695f80fdac6412d66e6ad4160a4acb41923ca7ee3fd7e112e105f0ff46b9
+FileChecksum: SHA512: e9122b592a763796c5f8e86abefbc829ae80ac8ffc886a219cb2c7f7cd0505ccfc6525f0474b08cf8ac9f35be93ffc82e1871e077452482e5a5558d9a9dfe698
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-AUTHORS
+FileName: vendor/google.golang.org/grpc/CODE-OF-CONDUCT.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CODE-OF-CONDUCT.md
+FileChecksum: SHA1: cce47ae9353087cd1a9c6993696ff1c25f0e8068
+FileChecksum: SHA256: 4fcdab8c8ca45051e248fe4ce3dbd9ea9155cc8f406cf9ec9770b6e5818fbc45
+FileChecksum: SHA512: de19b2cb3f85b1eb155052a94ba34629326df90c62e776b15f0941dbef8507a5673aa272460ecf46ad054d19e2523f155fd0a3286da83947a9706f23b92d05ef
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CODE-OF-CONDUCT.md
+FileName: vendor/google.golang.org/grpc/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CONTRIBUTING.md
+FileChecksum: SHA1: c0f9adb786f46093b19dbbec3fee9896c7402467
+FileChecksum: SHA256: 994155a28a77b58a3af3adcc9408ac8891084cb9bc1166ea863fc75a5871fdc4
+FileChecksum: SHA512: 395360bc318db241023f8b870182d01bce450094a68ccc1614d3ca90ede2e650760b9c8e3e3c1812de557ab0568df52ca0be834e863973615a7fd0bce9dd94d0
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CONTRIBUTING.md
+FileName: vendor/google.golang.org/grpc/GOVERNANCE.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-GOVERNANCE.md
+FileChecksum: SHA1: 9bad58b1f7f31e6ccb036ce9797c5e3d9540d596
+FileChecksum: SHA256: ce4685b7bfbbd256299aeb74c7396f963aa4885094bdaf62f025c0948659314b
+FileChecksum: SHA512: f935fd28b7b54bd17b760457f7ed0704ce9f981263fe63f916b50a04cbfb9485d9a6922fe083b5511c971af342342832abf7e6836a423b41c9070420757861ac
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-GOVERNANCE.md
+FileName: vendor/google.golang.org/grpc/MAINTAINERS.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-MAINTAINERS.md
+FileChecksum: SHA1: 06ad8e449879db1a6a2a1961aa66fbfd73a83ece
+FileChecksum: SHA256: 1ebdda6fd307486a9232591b31ec8bf6a2eba1bbcfbd96e967f8f4293b4200bd
+FileChecksum: SHA512: 978310e728981f8cc761417c1672b392d1b469756218a54fd4f4dc97de7b34a5936bc655c038a80900a4eab945159ad5280ae15eba9033408701710451857265
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-MAINTAINERS.md
+FileName: vendor/google.golang.org/grpc/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-LICENSE
+FileChecksum: SHA1: 2b8b815229aa8a61e483fb4ba0588b8b6c491890
+FileChecksum: SHA256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30
+FileChecksum: SHA512: 98f6b79b778f7b0a15415bd750c3a8a097d650511cb4ec8115188e115c47053fe700f578895c097051c9bc3dfb6197c2b13a15de203273e1a3218884f86e90e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-LICENSE
+FileName: vendor/golang.org/x/text/unicode/norm/tables12.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables12.0.0.go
+FileChecksum: SHA1: 8c99ca6817a7870a57e38cae0f0079f8262e7b2f
+FileChecksum: SHA256: 5973818052a654983eb8fa540fd5a22c00092ada84e572e96f7d14739ba76301
+FileChecksum: SHA512: 9c1d3da42939918953e3ba2297e390adcd6311635f5e19b012b50439e76b70dd774f085b4e67b92aaa3fd0e2cd1ab196dbc76afed84c17947b3b911c9f9e479b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables12.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/trie.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-trie.go
+FileChecksum: SHA1: 4c06ba84cb28e93069f73758a64ad5be449c0bd1
+FileChecksum: SHA256: 4ea42392d710be96fd3275f672326293e8c801156ef558c11030f9cb7f0c86da
+FileChecksum: SHA512: 0761b755da2cddac9dde4d43160e0c401b7e78e8cacc893e8a0565e81085a679178750d72ccde8a7932251736271c15cdd20bbf12e893767274b395e3bfdd946
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-trie.go
+FileName: vendor/google.golang.org/grpc/backoff/backoff.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff-backoff.go
+FileChecksum: SHA1: 2b196480da6586f8f35de339c5d7e4c6b14b0974
+FileChecksum: SHA256: d26dd968b8efbc07ac8a08c8a236c94923182f3279a9fdf8d9f2187f66e5815c
+FileChecksum: SHA512: 234ffc7781e4c7b366bfc1de4ac23cb562b8edd0446ad6b3a07827a935054f04dca1d1d85fd501069afb33ae1c85273883b1be6152a80125ce2f93c2eeba0c8b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff-backoff.go
+FileName: vendor/google.golang.org/grpc/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-Makefile
+FileChecksum: SHA1: cc66830d3e018c64f1e9934b7ac489fb2979bbe4
+FileChecksum: SHA256: 8a732300a3939712929e2da79a0b14bc609bbc595bf85b7d14e04d2fe0314bab
+FileChecksum: SHA512: fd2369a6a81028e32c15414d42ebbca124c858c45e5e17b100470ebd57f2759f80ddf0b87e2f2d5f34b8b309aedb455005595c18018c78ba7e549ec6b2bdd1e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-Makefile
+FileName: vendor/google.golang.org/grpc/backoff.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff.go
+FileChecksum: SHA1: f5f1b3ae9fbfbf7a6c87ebf9d817479f831ea309
+FileChecksum: SHA256: b8c0dc7204d6e01e896bf3e1cd8352ce47dcf58fb73a60ac49654f2c08dcb041
+FileChecksum: SHA512: 297ee0d687317901270c4e15712bddd3433d9b08a927b5a0e75f16fbaf765be7e3e1acdfd1e864686bda90c6bede249865c3b05a666358c9ca0c3971f4ea8d48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff.go
+FileName: vendor/google.golang.org/grpc/balancer/balancer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-balancer.go
+FileChecksum: SHA1: 5503f9ac4da8c33554c4ec3e19c606643e07b764
+FileChecksum: SHA256: 40494f29d7581e70306c50f0c1d6b409952183141ecf6dc2a0cd889a54928462
+FileChecksum: SHA512: b5d49b702d69e3bf9e6513c35f761f181d72e99ca59cec81e7e6ac1cab4aabeb46e2c02b49943c69800416eadcca5fc0a2660289cbae8c36cd1cfeeee826a848
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-balancer.go
+FileName: vendor/google.golang.org/grpc/attributes/attributes.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-attributes-attributes.go
+FileChecksum: SHA1: 5a09299d7838cd6f1c4fc63ab721beaedbe6e2fc
+FileChecksum: SHA256: 966412e8572d661ce846b77fea340be2e5cfd931e19e5c1b6affca8059b30290
+FileChecksum: SHA512: 1899cb1228b8e2b8febd4aadf3fe2ebff47cf0857af365df142d003e03f8ceb8f04fef18cd33d863c41de4d454e596617aaf66228a4c1f1ca61ea4f17004ee08
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-attributes-attributes.go
+FileName: vendor/google.golang.org/grpc/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-README.md
+FileChecksum: SHA1: 3c1e4e217ea36c57f1527e4360d61b66b2e35d01
+FileChecksum: SHA256: 0b258803cedaef03c3740a49519eb2efbdf9e5c4bda910f519f02bc9fe69dd46
+FileChecksum: SHA512: 0a31f1b11b1b7acadcfe004095780491aba428dedc5c25ff7f5af503e7681d44d61700be9f294665ff5f385bb6b3fdd90d2f0f77c19a4d480a4c3917e4026e01
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-README.md
+FileName: vendor/google.golang.org/grpc/balancer/grpclb/state/state.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-grpclb-state-state.go
+FileChecksum: SHA1: 4b96c02430ce59a6e8fc90d3933b2baea557a704
+FileChecksum: SHA256: 7447144585bd37c687d70841c3a7dac38eb1c5997c6f13be222818d55a9f72b4
+FileChecksum: SHA512: 3acb315027ae893bba00c182a465e5ff67a7cfe4d71e4bd0b99c221d5b90d709e37daa6364d8c2f129626c1488c232f52dbdf87aa26efb1578e775b50c00ca0c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-grpclb-state-state.go
+FileName: vendor/google.golang.org/grpc/balancer/roundrobin/roundrobin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-roundrobin-roundrobin.go
+FileChecksum: SHA1: 149a3daac8332811f25fd607c4af2cdbefca57a1
+FileChecksum: SHA256: 794a9fc90606c41494ec6d260193bbb7ed1220e9965258259044cd2e5d30a822
+FileChecksum: SHA512: 93a98e787cdc6cfb4acaf4f352b4d45c9edbd6febb16916f3a20b8777977e8c1ee864ef1aef87bff64e0abc7deb55c13b7ce1a027da7743c12e16e7772998f50
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-roundrobin-roundrobin.go
+FileName: vendor/google.golang.org/grpc/balancer_conn_wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancerC95connC95wrappers.go
+FileChecksum: SHA1: f581ba0cb5b2aa09ff186e598b0977973266ba6d
+FileChecksum: SHA256: f21f4ea4f9cb433cd461cc4cb1d1234ff82ac380748779b884139f894e9f72ca
+FileChecksum: SHA512: e05f4d8fdcb3cf513a6a3b488419abfa26c71287cdf440175519d48abf8de6e0d7bbd579029152ed3c92fd85aba7d2a575d0e7a60e90cc1b2dcab78eadeecefe
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancerC95connC95wrappers.go
+FileName: vendor/google.golang.org/grpc/call.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-call.go
+FileChecksum: SHA1: 8fb8d9f087e5454d094866d8ff18b4dd79506917
+FileChecksum: SHA256: 5edd8d1326bdddcba418b7382d6342bdf769d816c15d6b12520a1a05323506ce
+FileChecksum: SHA512: 5a7ef144f5abf1af063736ae031d2318f093605efb3d16fc2f64325d17622ca569bc404e8cfc6c68980db4a634c5dc295639a9b032c1041258a682fdf8f44fe3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-call.go
+FileName: vendor/google.golang.org/grpc/balancer/base/base.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-base.go
+FileChecksum: SHA1: b03fe272632298be12e8cd17236ebec849bd0f59
+FileChecksum: SHA256: e222da7aeb4c7341c59bcff314ec7c01b8900d3b2c27b3f1cb6dc5b55839f266
+FileChecksum: SHA512: 5038961111563dd4edb65418d545de69fa03f212ff360dedc0b4e7769e8a6cff786f4a0c622751eba973833300e9723f0b2e3a599492e4257254b2ad34c82ee1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-base.go
+FileName: vendor/google.golang.org/grpc/codec.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codec.go
+FileChecksum: SHA1: 86aa9be9939412affc1f21513bfff3bf57ac00b7
+FileChecksum: SHA256: 628e8e44ab71441b0318d37263a3f5e263660dcddcd2aeba8c1b09b1e74d946f
+FileChecksum: SHA512: c911d31a004b0a992c215d3d7ad2273612fd060222c9f8890b248fba3c218c9fa01fd1b3872f3058c7e03b8ef5d929a88e826c76675982c936e2bdfc1e748183
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codec.go
+FileName: vendor/google.golang.org/grpc/codegen.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codegen.sh
+FileChecksum: SHA1: b9cccbd30d5056c753efc0ae41a16e33926ce0e3
+FileChecksum: SHA256: 102bb98c61afdf98bed837f033de3cf4fe701a8175dee36e1f495479b02442c1
+FileChecksum: SHA512: 5c207b36da3272629d9d88402bca3836239bd3e77c6cb79351a9f3c2346f9c3f996498ad5f34f5baace56f59b401fdd73b40da0bc668565db9ae8765a0fc8de7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codegen.sh
+FileName: vendor/google.golang.org/grpc/binarylog/grpc_binarylog_v1/binarylog.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-binarylog-grpcC95binarylogC95v1-binarylog.pb.go
+FileChecksum: SHA1: 41d195650704ec32665a4976c829e75cf33101af
+FileChecksum: SHA256: 5db98fd5ecada788f9866e953e0ddb3193830b2edfa36b09c7c21e9af59e5ac2
+FileChecksum: SHA512: 8d808df59404ab793ba153262fc79810c4ee9c3c2c8ada13cb61b7439cf2c01aad705ec7d2834c7736ebb2d4c55bad8de737107163cc07b5e54fd28f935ca558
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-binarylog-grpcC95binarylogC95v1-binarylog.pb.go
+FileName: vendor/google.golang.org/grpc/balancer/base/balancer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-balancer.go
+FileChecksum: SHA1: 3c8c38d6d9bab6c53f17a9141d2340c4f24304f0
+FileChecksum: SHA256: f910845bf658e5a5160515d5a870ec4a23ce340bea63955427718d48942881ab
+FileChecksum: SHA512: 7d2c964f675badc1964fe4dc7454f15a04d48ab70b47203e4e6670718a90986bd4c398eac1ecde271af61c7d9dcc971ddc84ba77ea00b89b5b7d47ee31fb5e1e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-balancer.go
+FileName: vendor/google.golang.org/grpc/codes/codes.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codes.go
+FileChecksum: SHA1: 50542f701d0cc5d551fcaf90ed77323a1e243190
+FileChecksum: SHA256: c3f5ce76fec8085dc677754a774a38845c659316e9e0240d1741913968cf8618
+FileChecksum: SHA512: 05b2ab9a33c7f7a5d45438345b001c73593f8e68278a81c80e2c66c2e27898e648bff7d758ae13052202a6a07f326df36bd534f60a21e97e6d038c15b2c6e8e3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codes.go
+FileName: vendor/google.golang.org/grpc/connectivity/connectivity.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-connectivity-connectivity.go
+FileChecksum: SHA1: 40c243f6e2816026efa5411cb6c380c245dd5b99
+FileChecksum: SHA256: 0eb8cfe940c02c0936e3798e6db6ecc91998b4d5ef00d8a175c5157e5b4e9f08
+FileChecksum: SHA512: b04e655c870c5b50aeef709292cc510432d0d994e567d997b47d56ccc32abf1de6c8b6675e948579eeff9f9063afb4f041bf9909b370530f6b77e01a30cb158a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-connectivity-connectivity.go
+FileName: vendor/google.golang.org/grpc/credentials/go12.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-go12.go
+FileChecksum: SHA1: 546818c7e36e7e31a74ffe15f2f73364c7c20827
+FileChecksum: SHA256: 149e7337c88c0927792c359c87f54036f23467daa940d4fce52b34b3f3d58068
+FileChecksum: SHA512: 4f8a8a66bf70ad37c07dc5fc49cc4897bbbc0af9a0a7608131932c7d90ecab3d5ea76741a27daf6e5b2e2300ff8fa35b6ba388b0d364aca344eff8d266ace76e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-go12.go
+FileName: vendor/google.golang.org/grpc/credentials/credentials.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-credentials.go
+FileChecksum: SHA1: d6f39e8ecde7c0c131038498b3d8b8177726c87a
+FileChecksum: SHA256: ef6e0b952900aae74dbaa3275ba61b228405d1b742260473778334a1c1613532
+FileChecksum: SHA512: 4db27debed4540d2eab78a939f3c84aff2a251e4216a10cd11cf6b515d7a868889d1892e0f93d9d7193b774885c3980a8d652754b75f22e6925e356785cd0c5b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-credentials.go
+FileName: vendor/google.golang.org/grpc/credentials/tls.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-tls.go
+FileChecksum: SHA1: 160cb0c1fcac19b39bb1106f3dbbf818e7620cea
+FileChecksum: SHA256: 1a166929b514a7bc053bf712cdcabda18b6f39e4532e19448507d77d3ec40990
+FileChecksum: SHA512: 2977462f1db5ea1a6b18c579401be7c30183d4ba7f3229f47354ab94851d2469e15d8e23661ae48bc72c8ab6e7276dcd79de7a3d4ada9af8dfba4e3d3082ac46
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-tls.go
+FileName: vendor/google.golang.org/grpc/clientconn.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-clientconn.go
+FileChecksum: SHA1: 4cadb8fe34193e238cb60bb64504529c1cf17aa3
+FileChecksum: SHA256: e510530203da651b7fd997ffac3a96f32de78686a4112f8498edfc0e7afdc62c
+FileChecksum: SHA512: 34c34cfe685dcde1bb9dbd24f2983f69a669de6b1b5e4f8ba473dee2555330a4e5587d4bbbd4d851ffbc63aa138947d4b098bbb9778f104be1bf6f8afaadaff2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-clientconn.go
+FileName: vendor/google.golang.org/grpc/encoding/encoding.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-encoding.go
+FileChecksum: SHA1: 54f81bb3ca41986db5e5fd9ad1abb9a4c321328f
+FileChecksum: SHA256: 100133ce64bc4f3a2180201da4b7edb2fb2e3caa592b3e3cdcca4ed8d6899d49
+FileChecksum: SHA512: 7c1175706d0382ee900b5e1d4936a427ef66be98d9ab6eeac658ab0730e6e57ff200e0074f39e736a1d957fa39f35596b3d78d217e3a3b347632cbf33f95481f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-encoding.go
+FileName: vendor/google.golang.org/grpc/codes/code_string.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codeC95string.go
+FileChecksum: SHA1: 94a11747b35c677b2f2adf612fbbd0a9fff0529f
+FileChecksum: SHA256: bd2f6ea0ae1432cad5678e7edb7edfdcc62fc34152cfe1a7d1af928755fed03a
+FileChecksum: SHA512: 76bc4964cd923b2cc985065602f141dc9a132dd13e8ddf5b5740066fca9e6f184d99057a6b1e0d87d841c5c7506b2dc7c9993c56167ff5f715c8658496131d3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codeC95string.go
+FileName: vendor/google.golang.org/grpc/grpclog/component.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-component.go
+FileChecksum: SHA1: 8b0790b72a94b5f1157ca74c81ae6b3b1923fa28
+FileChecksum: SHA256: 791f56afd828994be316d5b88a746a554db601ae8552e9ea97c71b5dedcfc54d
+FileChecksum: SHA512: af21fc72cd06afd846e2166e3a7d8fabbc5e03c48d6a803b24a656748c0f1bae798b28e4a2da044166f91e1a48162c6e609c51a82e6bcff9a5f36707d6019618
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-component.go
+FileName: vendor/google.golang.org/grpc/grpclog/grpclog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-grpclog.go
+FileChecksum: SHA1: 3d1cd2ad6a91d3d980cb4e14b1d4097e935dce0e
+FileChecksum: SHA256: 23a81dc8d636c55e4f5c3ecabccaf0d602d77f8b2b98e77037d6c946c05607b6
+FileChecksum: SHA512: 232b68f5468bfd656e24225dbf0f6a78fe8f2e40984a8a9a63f579000a1a868adef789d78d49d0df20e90d592193513599685764fd3d334542bdde893b484873
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-grpclog.go
+FileName: vendor/google.golang.org/grpc/grpclog/logger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-logger.go
+FileChecksum: SHA1: 81cf0d094f94a121cc6818718f69896087b633c7
+FileChecksum: SHA256: a5f9eafe385618dc63cb7d07a240c7d80301f07badbac8cb2a0ab99b7d9f1f2a
+FileChecksum: SHA512: 1bcc3c48920b17e9021b06254071e6c1132c7f5be1f71213b9fd0cd134c545efc37e7f643dd128b5162822835b12186f01fc5c6d4c51a7dc6682d0ba5e79c636
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-logger.go
+FileName: vendor/google.golang.org/grpc/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-doc.go
+FileChecksum: SHA1: aa90058672478f906e06d52cb9858696caf70f5d
+FileChecksum: SHA256: 4eb6e1fd43b343fe3693219f26461ff95efe2226c7700ffce246d8684eca6470
+FileChecksum: SHA512: 39ad9129d16c1a3a2db16d6504d241b2086ca5d97cc02ff7078ce1e3ee6c4d876b5f1a65a5ea86cb95a0168f7c3db0349e5cce1c91a79f46c8ef9f2c6c413c34
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-doc.go
+FileName: vendor/google.golang.org/grpc/install_gae.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-installC95gae.sh
+FileChecksum: SHA1: 6892d53a577fe9d45c77eed2ec7305fb95640468
+FileChecksum: SHA256: b80b8066f4253fa9b89e27f98581a4a38c0acaab547f0aa73971465d40226681
+FileChecksum: SHA512: f955ad8c0ff9b0f2c15fce1a22a19b84d7c13231635280f508b1f40c6457d9e4ffea628b53aa2688bd56e850734a35a3b364c3609b76d678156148cf861f96c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-installC95gae.sh
+FileName: vendor/google.golang.org/grpc/interceptor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-interceptor.go
+FileChecksum: SHA1: 620264879be7aabaa2f8c164568b0da112384f9b
+FileChecksum: SHA256: f1f4160b8024b39959904f3c982d0180c1cfe7b15f780eb24a0ebf54f99508dd
+FileChecksum: SHA512: ece85d3daa40f9fcfeee6b1ad4ec837309f0ead08274ca536fb95fbd88074038abf043269649b404401843a827830b65b8fb2eab725c5288704bad62ed42de65
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-interceptor.go
+FileName: vendor/google.golang.org/grpc/grpclog/loggerv2.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-loggerv2.go
+FileChecksum: SHA1: 755ee56ecd477e327b73aa45f493dace8eb819c7
+FileChecksum: SHA256: e3b74a1c93f07379572166c533d9594e7e1049f942ede3f1cb0bcf6749c70e51
+FileChecksum: SHA512: 5ef33ec95f9671c6d702d31a3ad396b4e08381c4ac958fb7220bfa82808aa289f830f6d92bf1ea5df2f593c093c08d3fd4114dd5778bc93c5132ebf5f8e6b25e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-loggerv2.go
+FileName: vendor/google.golang.org/grpc/internal/backoff/backoff.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-backoff-backoff.go
+FileChecksum: SHA1: 3073067c90b3d953975936d6388b27dfeb358df4
+FileChecksum: SHA256: 4b13e7d5008c1fdbaa4f1b3b93f7ca64a5ada160eb8cee56b217dce6cf30a3ea
+FileChecksum: SHA512: ec0786ced5c0493bb68a5e5cceb7b6a21273b4fb11aa23f5c56c6adcc06c40a9e002390e32b0d2a37fe0e6334db79eec8c7e96dade0205b3241f269457a04819
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-backoff-backoff.go
+FileName: vendor/google.golang.org/grpc/internal/balancerload/load.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-balancerload-load.go
+FileChecksum: SHA1: ea3f04f141c0765d39a8aa10a288a6b14056acf0
+FileChecksum: SHA256: bd4572c51584f1fe5fb0013f3bc75276857fd70e54d879b76984afd20a4e1088
+FileChecksum: SHA512: d41f16ce7f722f256e74173091b365fed28d28e8381bcd7b1adeb7c24db1ba5d31ed02831d2062c81fcdc454bfc68f0444d599adb175e6458533815f6b8bab7c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-balancerload-load.go
+FileName: vendor/google.golang.org/grpc/dialoptions.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-dialoptions.go
+FileChecksum: SHA1: 26ff23b5cbb6a322e9a924fe53768a101a2cdc6b
+FileChecksum: SHA256: c83b9a8537064a2de502bc6bb012ba33e92a101f1833c53a0031407ffed8b3c3
+FileChecksum: SHA512: f358418537fdb6dad0f7e2899238a87c0375d1537d370dac50d98bb5df2b3b04c3c92193128ccc45b38b0543619a93f4ae4546b2ae3261b259214e2724990098
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-dialoptions.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/binarylog_testutil.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylogC95testutil.go
+FileChecksum: SHA1: a982925475dea5c9543c823df9ce4659cfee7d71
+FileChecksum: SHA256: 0490bfd3780ebf38e67f9b2c297759708f2f67b91a6db40b27baefa85efc258e
+FileChecksum: SHA512: e1f66d44eb9b2f7d77e53677139058d7fd6b0e1c93756299367a842279960728ab0ceb82fd955727ca81cb042111cca40d477342397fcb6ba8d307ac29f9e448
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylogC95testutil.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/env_config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-envC95config.go
+FileChecksum: SHA1: cfa4d1e61614641ba17d492d195bd0a1ae7dd9a8
+FileChecksum: SHA256: 8e55916d6ca93cf07dbaa76842a41e2ae5fd3a1ab1a2085c4f0eefd57299b097
+FileChecksum: SHA512: e2bcc1033a3449f47eaa113225f8bbfddfec28d7af5dde24dda6f26b9c1ace5873697c1d0046a75132cec9c4bd0a1799d8ccc87f332c8c05efb5015586290073
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-envC95config.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/sink.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-sink.go
+FileChecksum: SHA1: 9e875ccfa399ddc819e620c6c05c0fb64b22f5ad
+FileChecksum: SHA256: 4f275e3631b1ef69f994cca1f8024da9f9f539451d09fa97a8c429277789d423
+FileChecksum: SHA512: ab7d4c7fe74612a4017ea7af86a80e83875dd780d286b66b9430511a061f545d3af4c01413f9579f466dd075c0d14e89ecb1497a6a9fd9dec486bbd430979376
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-sink.go
+FileName: vendor/google.golang.org/grpc/encoding/proto/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-proto-proto.go
+FileChecksum: SHA1: 10a443d9b0012604cff76a65d741f518a429f361
+FileChecksum: SHA256: 6dc6b77dfa0194fce97afa03266fe582eaac8e8f4910600d3aaa2bb0cac938ac
+FileChecksum: SHA512: 3d13956f71c74181948a0c104241273fdc5e3be3368c375cecab163a29f7218c7aab52cb5053d30851b427ec9f9676ecd44e33ee749ec87cc345754017daec22
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-proto-proto.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/binarylog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylog.go
+FileChecksum: SHA1: 50eaef1ff44c4825526c7b8192054906b9354c69
+FileChecksum: SHA256: c6047626863e34d5e8a1e40584d60d4e1aa5fe63b825252b65bdaf74d0fb3222
+FileChecksum: SHA512: b961ca04a26e37548dafc7d2515963f1db492092abf97b10ad4f023fd93b4885527b297a45de31e624e34b3d7aca15c06dcabdaf1e09312aeaa69206255c3bd0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylog.go
+FileName: vendor/google.golang.org/grpc/internal/buffer/unbounded.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-buffer-unbounded.go
+FileChecksum: SHA1: 73ee8ff26a4045ba66b06d4131748c97f2fe2aef
+FileChecksum: SHA256: a4989096a5660c6cba636398617b79652b463ee93323887cb413ff42061da63a
+FileChecksum: SHA512: 4e693360d522509bf819733bed77f63ee47b897c01cacef8f82aaed3e18f9e751270b9afd4018dba3a65aae5e62f4dd6635a978ee1d4b9685d40bbd17e844683
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-buffer-unbounded.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/method_logger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-methodC95logger.go
+FileChecksum: SHA1: 27d36baa44a742ee2b0d3fadf123bce206e4962b
+FileChecksum: SHA256: f650ecc3a25eb8dbf2598fe9004c51eac7ac24a1bf486b8dec061a3008193f0d
+FileChecksum: SHA512: 51f2554435860585d585a8dd941aeaca2ce6e77be592eb04669f26303c4019c150fe44208982c99f5aa167f5e3ec1818f765c50982cc31c2f286167beacc4986
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-methodC95logger.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/funcs.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-funcs.go
+FileChecksum: SHA1: dcc7b959363b18f3153db8486076d0d5cfcaa9c2
+FileChecksum: SHA256: 78e69cea9ee4fc649ab40b42c5a92ca20b8a5573b20c05c1223e759cf91e6176
+FileChecksum: SHA512: 037609b0da0e586d50e1adf3935bb36c8b9fec9f2a87978cca72670b866fd89d30e2f4adf8f970899f5318bdfbf1475fdda449601e25a0f04d50f5a231f54be6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-funcs.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/types.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-types.go
+FileChecksum: SHA1: de07860381eb8aee1e97135a51edb743106df608
+FileChecksum: SHA256: 1fb4d3d14618ec6306d153ae3c2d9eb31119fee89e523fd3dfed8f1bcbc3ac38
+FileChecksum: SHA512: f245a1f83be470b8bea1afb29262c50ca59205a5fc6aba8536400ee7cd2f4a4fe4ce631dbd35938a8e29453175b0492f006d06fefeb1daa8d6816e3d79fc1e70
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-types.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/util_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95linux.go
+FileChecksum: SHA1: a47f2448e99af1dc1b39d969117f57766f2392f1
+FileChecksum: SHA256: 2bc2e3170e1f6387d5ac5eb17a58d88d3858b1fc6a9ae46e99e9d234ec36b39a
+FileChecksum: SHA512: f41d3fe7b013d8b3ff189834bd88ef010bf610b08cdea37498fc7caba79d123a0bf9aea33b6ea4cc7e74d230c9ba9ae8a4f2a5cf7196c706b5f1459941bc083a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95linux.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/logging.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-logging.go
+FileChecksum: SHA1: 896b385ddacc60d3057f9c24aba7801dc5bc2de2
+FileChecksum: SHA256: 47c112a979cf7aad84a561439a153ae8f7baec1395a0568772679ea8fc717ec1
+FileChecksum: SHA512: dd157fd570ab39dd459430537eda9c5cc9c4ec2e49718adfeeec60c929ef3aea197787520068ee71ea3a8bfff943e757b27a260d019005817439d1eb9473b2d0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-logging.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/types_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95linux.go
+FileChecksum: SHA1: 73d4d3d847b1a7f34314feb4eb5bcff566cde9d6
+FileChecksum: SHA256: 3989e080c308c5f4fea5d3a843e57eb4c0d6d5fd9c947429934562b100ffca17
+FileChecksum: SHA512: 2cfcd0ae016ad88174e107247a836e09843229195610d034f113d8d71f732d15b7d13ff4e691b46cfc464d45f5459ccacdea7b716aaf68de007adb42fdfa4a07
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95linux.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/util_nonlinux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95nonlinux.go
+FileChecksum: SHA1: dcf6679c0759f9db0aa5c029363b35bc4229aaf9
+FileChecksum: SHA256: c019cb5478b0ba7f0845d6d7c0431018991786bb5b3f5cef90746659e9b90f22
+FileChecksum: SHA512: 831be928a867af30d2781db2aa1795fca6bcf90dbea28b9c29404361e129825896f2e073739b3c7024dad9da2dbbcb6ad7e748c24c59bdc619f82c912685f4a6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95nonlinux.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/spiffe_appengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffeC95appengine.go
+FileChecksum: SHA1: d4f21bd8763c0bcc3ac427432017104d0d77f2cc
+FileChecksum: SHA256: b69fd87dce0b85fffb5a6103746cb4373d1cb00a36fcc28dd59045f67c047ed7
+FileChecksum: SHA512: b1e8dfd93a37d95375d76a96b747594d006dfc52d1a54b836a14015a714a5c6ede012daf5360e514efa6b30fbff479805c5dfc4e1e8c62ec2a68a70dad5cf909
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffeC95appengine.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/spiffe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffe.go
+FileChecksum: SHA1: a88dec66bd5cd62561673573a3bd3c5eddc58eeb
+FileChecksum: SHA256: fa67dd5c33eff6788b6f4df033f93df3bfd9a889e79a0ddb2ed38ce0fd3918ac
+FileChecksum: SHA512: 68dbd2ecd4671d6e9e8c288ef78c9d3c4353fd9fe60a102318de130bdacf8ad5d58668d73d82f1fbdfc9d21cb5e0f241aee3cfd92f36625217938439c2f8b37c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffe.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/types_nonlinux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95nonlinux.go
+FileChecksum: SHA1: 269234bd1d683935a68b0b59f978ca39192daecd
+FileChecksum: SHA256: 54aee314800de43d73f9c916b2c48de000341cd22805e068b214314d89f129dd
+FileChecksum: SHA512: 37bf4b799551c2d871b3f181bce05ca1b420ab27c11866d686c9c3aa9dfd85d3d694496440fd843dff8457fef5118280defd2199ead80cab8f7b8feeffaaf540
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95nonlinux.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-util.go
+FileChecksum: SHA1: efb947a37223db7c8b9c232ba2f7d829da199274
+FileChecksum: SHA256: 48b6a59c6e58c8ae48aa0fb6fd8cb4899c639105963ee73084b33bfac75b62b4
+FileChecksum: SHA512: 22a083b7f88a205116561fdc505ebfcafb2a9be0c209f8203c653405575e06c26d2a9044a659f68e67fc03bc5605b320cad360fd6018f86e7ad03cf8e7c211db
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-util.go
+FileName: vendor/google.golang.org/grpc/internal/envconfig/envconfig.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-envconfig-envconfig.go
+FileChecksum: SHA1: 533e61158760300a94bdc780a90fd6b9ecbd35f6
+FileChecksum: SHA256: e4290d160874845ad177cdab28ad7120212c196e8bbcba0f3375fb19f4735f97
+FileChecksum: SHA512: bc35499aecb5c7f3f90052e29aff2339e2f49cad0d4ae19601bd1608aebc4c97df421ea468c6f4bdfd31eba81fae04caf1ad0fcd78326a16626ea53276128c39
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-envconfig-envconfig.go
+FileName: vendor/google.golang.org/grpc/internal/grpclog/grpclog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-grpclog.go
+FileChecksum: SHA1: 24b199f7d0bc90d2cf008b548dd4c21cf3cf0480
+FileChecksum: SHA256: 8250fc8e0efcc9095ada91afbd7b4acdbb2bb8b18be07195129be0059b908763
+FileChecksum: SHA512: 569eaf96c5a2f3612afa912b3c52e57912c6ab2f8141fffff2478f68a06cd8359fbe1ad23d07494ffbb7033de247d2f4c9f0b0af4c483e759afad1a297f3944c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-grpclog.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/syscallconn.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconn.go
+FileChecksum: SHA1: 112576f31b223c854a12a72721a2fd30802c2643
+FileChecksum: SHA256: fea260a95b21d76850bfd18fbfe25171d25964d273751c155eeca481f5bf081f
+FileChecksum: SHA512: 6e764643008067458af4b5ec1c49b98500114d47dc79b7598198c944b47153c05afdabab60557b735c804963c8f613113126d61b286706eda5a74420b199f902
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconn.go
+FileName: vendor/google.golang.org/grpc/internal/grpcsync/event.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcsync-event.go
+FileChecksum: SHA1: 22629b67fd5758011ac353cf8fbc689b542eab6b
+FileChecksum: SHA256: 99ed14dcf3a34ecae26da53696149cd961e148d9a524e13506485d97ef5f8fcd
+FileChecksum: SHA512: b1215b0aceaf244888bac609dd2413293eeba2019208b58b567b97ef300c7f2610fcae88cad800997c45347632c647fe2232d7a429c2e056ee90345005fc6c77
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcsync-event.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/encode_duration.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-encodeC95duration.go
+FileChecksum: SHA1: ad1b6ae47354e7e955cf40ba43ac474662636d4a
+FileChecksum: SHA256: 8f52f54c8f8a7385082931ce46f6274b1da1dffc44f0ee7cbbc89b761bb49813
+FileChecksum: SHA512: c64c4d481b30f6c7a6eb84837c6ccf4ea9ab38b6b2e905aa5f615cccf68acde028f4246ee16104a72529b3cc6940790ceff19aacead40d850124f0ab7ba2b8fa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-encodeC95duration.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/metadata.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-metadata.go
+FileChecksum: SHA1: 4ea5d40ace3df19322d41b82ebf28563694293a9
+FileChecksum: SHA256: a141ed371944b5f4edd385c3b3138283543d166e5b6cf90d1b33987f702a885e
+FileChecksum: SHA512: 1b35641f296c9f932618ea2fbf4820aab0ac70a762572cc0ce28467e1b1a72dd6ccad25fc16745baaac5590f4ccb96b995a3362bc4f688e7c0fc280c26cffd29
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-metadata.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/syscallconn_appengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconnC95appengine.go
+FileChecksum: SHA1: 4c07b732e27a5186142bf375593be0858d76e993
+FileChecksum: SHA256: 6a04fb92ba85ad2fbab859326dddfb86fd69e682074099cbb5d0c3bbcdfcee77
+FileChecksum: SHA512: e48413f8be6d2428635e04d8f1628b1c475d542544701798fe1f94d095c85f4fb5d0c1fd62e5d66490ffce3dae2c66e938bc5e03b40df70e384e2bb9caf8a8b7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconnC95appengine.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/target.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-target.go
+FileChecksum: SHA1: 5a37976f86abc1548b299616b5708a81c274e5f1
+FileChecksum: SHA256: 035dec3b009c29ca666131d0eabd1556c75efc9f38aa6b4193a24d967846cee2
+FileChecksum: SHA512: 21b5fbe84189136e9f66576609f1f4dce8e548eef760bf91ba6f6d35e4734f918badb1667827dfba335de1f1666dc241c4404246a1f77ce7630222e75f9d0dd5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-target.go
+FileName: vendor/google.golang.org/grpc/internal/grpcrand/grpcrand.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcrand-grpcrand.go
+FileChecksum: SHA1: 2695c598a662de95adcf7e171c0b9b3eb04e92c7
+FileChecksum: SHA256: 987a05611f33d7a61167036cdddf3549997ad7c2f8c6e779aad3c114b57c0571
+FileChecksum: SHA512: 9ce418548fd2c1818595d33e81ad647f452bc446307d868c93cf2e92671d5485af134caf1e58a297872560376f82df378ab911d8ff56b38f28992546e454238c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcrand-grpcrand.go
+FileName: vendor/google.golang.org/grpc/internal/internal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-internal.go
+FileChecksum: SHA1: 0c0f0a52160dda0195a0ec501fb620096d468cc1
+FileChecksum: SHA256: d153017458273b6c8ef22522a5f4901bcf99c10ab08ebe5270c05fd8ce67ff4a
+FileChecksum: SHA512: b9aeb3e97203d3bc7166a59b251538767c2bd086d6f7f93c1928940742c98d251cfc0d94a2e75f39221fa2e151341f2832515f2f62a1d7df46c2dabb674a75c4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-internal.go
+FileName: vendor/google.golang.org/grpc/internal/resolver/dns/go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-go113.go
+FileChecksum: SHA1: 74f3842814836bf99c9c16833f072817540ef918
+FileChecksum: SHA256: 14bd369062a5cba64efb103747da971b5e190a0eaf4666c72683f00fdc6f760e
+FileChecksum: SHA512: 7d098639416f1c6d27d79a267b38ee8b76510b78892c145c702e87683cdd41d2b474bc59e72811299988a4e5a8e1af27303f88ed4de83f7195b097e388b04270
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-go113.go
+FileName: vendor/google.golang.org/grpc/internal/resolver/dns/dns_resolver.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-dnsC95resolver.go
+FileChecksum: SHA1: ee3c8037d348ac17bb010ba974ecb3a3a6218ce8
+FileChecksum: SHA256: 887b02ccd7e96b6a7ae2b8d1837e88227f56e9bdb798b694f3b8dcea87ef4e2f
+FileChecksum: SHA512: 32c4d6106a074b9be8248b961a4439a840458b6f9e9998efdada36fc55c0561d1cb62835be09a8d38d8a9fbb2f6ada2ad1a50ac1812e030671b05d47487c197f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-dnsC95resolver.go
+FileName: vendor/google.golang.org/grpc/internal/grpclog/prefixLogger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-prefixLogger.go
+FileChecksum: SHA1: 0b14331703eb60bac9b576185fec81495694b47b
+FileChecksum: SHA256: aec4e50ef9761f18798d6754ef7144d1c0feab640d7f36cd9542ce119f169ee9
+FileChecksum: SHA512: d08496f8b8e6aea6a2a9085bda98ddc4b0b8549aa6f4a48b06632504321a197cac23f78c0126af05d3724302bfae3cedc20d951dd00972d1a9612ca808892e75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-prefixLogger.go
+FileName: vendor/google.golang.org/grpc/internal/resolver/passthrough/passthrough.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-passthrough-passthrough.go
+FileChecksum: SHA1: c0c99dc6d11835cf92d9ffdbea82bf6c1f3b5dbe
+FileChecksum: SHA256: 3560ede4c713505ce9014dd762f5051482a212b54b1d8002cff67244912f6b5b
+FileChecksum: SHA512: 17ea17b191cee9640cc5f688f9a2816811437e2a249deaf9c11082716a5000280ce3ce81a445c4b7565cd27519f1ec575760ef0d6c19dbe7e5920785761b1089
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-passthrough-passthrough.go
+FileName: vendor/google.golang.org/grpc/internal/status/status.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-status-status.go
+FileChecksum: SHA1: 7ff65a5ea21b0ccc7280b0b96c2655513a0d4e1e
+FileChecksum: SHA256: 7c432bb4475f94529307fd3ce5f4cc0428227e584b99cc54df7c3825ad1f7e45
+FileChecksum: SHA512: 568100d1357373c4e3ecaba240b8cbf7b3b6c87931ef9d03f492d360b289b34580cc6a11adef86993d5e53bb79977c72cba71daf245a5635010396d233f47612
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-status-status.go
+FileName: vendor/google.golang.org/grpc/internal/syscall/syscall_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95linux.go
+FileChecksum: SHA1: fd21044a6c751cf1ec846efa20ebd23327f1235e
+FileChecksum: SHA256: 1ad47ea29907a86dbbc81dd92ec61e40eb8cd17c310f93b715e7fd7522f55758
+FileChecksum: SHA512: 2040ecd95c958382ab2d21fc40ae7d591b8af348b17f70c267e6ff967f02233e0528e729076306b2e88702461ad5fc73d6363a82d253d2724bedb7b1ff992fb7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95linux.go
+FileName: vendor/google.golang.org/grpc/internal/transport/bdp_estimator.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-bdpC95estimator.go
+FileChecksum: SHA1: 354b9e528ba8dc52a1cca71c47110158b0942825
+FileChecksum: SHA256: 01a7332c6ea43122862b91c7e69ca4a2aa91b11ee9c094fc2ffe1ba6edad75f3
+FileChecksum: SHA512: abc0033c20218654200736bd34c70d2ce4cb1e95456b264dcae5b375d049fcfcb3a4e0c3c9db6f8793d2d274a5c3a616d7448630e8a4b155f34b998deeb8cead
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-bdpC95estimator.go
+FileName: vendor/google.golang.org/grpc/internal/syscall/syscall_nonlinux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95nonlinux.go
+FileChecksum: SHA1: cfbfab0d25570bfbbbda16b5903dedee2d84f405
+FileChecksum: SHA256: 5d744dfc96d65eb09aea71066013a1e74a6c9a3e9939c6589a8ed6bae72cb893
+FileChecksum: SHA512: b5c43052b57f25445681381d3fcf92836b39eaef9a16b161c5c28be994b0d4de525d1f2cd0140d5e915a72f76717a34c6750c2aa06e227314e8729b4ba107d3c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95nonlinux.go
+FileName: vendor/google.golang.org/grpc/internal/serviceconfig/serviceconfig.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-serviceconfig-serviceconfig.go
+FileChecksum: SHA1: 18ed1f340ab5f2e1404f0f532f1a0668c8c5f4fa
+FileChecksum: SHA256: cbde864d14d7db12a0fe6171beb8c7bb73fd9094e2f924e07d4abbb198f644fe
+FileChecksum: SHA512: 7fb757200f0420f97945756a387d0a7cdcf136b3919f3a0e7e1b363a14eba879f17a4f8d04b68cd7f0911a83a930e4aad99753b19a0483af7b95742b59eb168d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-serviceconfig-serviceconfig.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/method.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-method.go
+FileChecksum: SHA1: 994989f19f5ae1834d69c43c0495dce125210f53
+FileChecksum: SHA256: ee61215f9fe77ddea33a7b8a5060a0c3ef30cd61ad82c0d1d862c29a2007c54b
+FileChecksum: SHA512: b8908b249581160729475db7ee354ba7d480cc294b9d7cd6a34bb996a5feb5cea3fc4cbe3786cd95312b37fdf38a4d93dc20d7cc8e5d6710b4731ad038bed81a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-method.go
+FileName: vendor/google.golang.org/grpc/internal/transport/flowcontrol.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-flowcontrol.go
+FileChecksum: SHA1: 55567d3d3cb067679e762719538fd156ca0f5766
+FileChecksum: SHA256: ef06a1890146989320b9035ab65f403ddb6f9efa95ccf7ce01cbbe201403d3f1
+FileChecksum: SHA512: 923750d896ee259ff69703f453ccaa5b0bd5596df18ca5e0c308f8d2935708d340d21ec8de11139b0dd4479e10c991da5a495966812e6e3fb69d07d0a32c8e09
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-flowcontrol.go
+FileName: vendor/google.golang.org/grpc/internal/transport/handler_server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-handlerC95server.go
+FileChecksum: SHA1: d59cec986f743cf83aeb38f12cd8105d66960098
+FileChecksum: SHA256: b8d04f9cf317b00247af277a58ecbb4d80d91d1e0799386d2341c1eedc658c2e
+FileChecksum: SHA512: 93d62f389560a313b63ca896b01ac6964c7a33a65352e78ee61724ce962eb3193fd626199d25be7aefd3fa4f8f50f611f3762db1109393140b111af9620f2739
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-handlerC95server.go
+FileName: vendor/google.golang.org/grpc/internal/transport/defaults.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-defaults.go
+FileChecksum: SHA1: 0844058a0ca9d3435fddc1d6ea92db9bea02ea56
+FileChecksum: SHA256: ef002dcc0f89dcc9001cf7cbdb6b17d8d688f2bda3eee4efefe762c0c6416e5a
+FileChecksum: SHA512: 503b19e721a22f83ff79958373411774146f42e2f63851f99773cb60f8e8fab6bff21c6c595a61bc0340a31261a3ff32f8d58133735c9f053b37ffdbe331d6ca
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-defaults.go
+FileName: vendor/google.golang.org/grpc/internal/transport/http_util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-httpC95util.go
+FileChecksum: SHA1: 6f8a40661928283b06d2aff11566d24021760177
+FileChecksum: SHA256: d3a8928f725740496662c76b56b3f16c01b6d70e3a732294d3a6607b6503fad7
+FileChecksum: SHA512: 8a17c3b19ad0403ea10ff09681a025888aa9f85c70694855a82a8776861f66a116c2b2718e699b14e6951ea4441c2c61ada927014577d9bba2288c04e2c7b75a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-httpC95util.go
+FileName: vendor/google.golang.org/grpc/internal/transport/transport.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-transport.go
+FileChecksum: SHA1: 05b90a8a5533be4296647efde3b3cd8354564262
+FileChecksum: SHA256: dc26762504631addca15484952c9ad2d3f2bac86751c88472129c3b59e873759
+FileChecksum: SHA512: ced80e7b2977433da30a7ae5f97958c14a2d852ccfaeddd182199974fa482426472781f42ce2d056d2e51f6b067e068704b66aa81f0cf0e686be41fa8de2e71f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-transport.go
+FileName: vendor/google.golang.org/grpc/internal/transport/controlbuf.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-controlbuf.go
+FileChecksum: SHA1: a97a03c23ee7c344a096a5b25df12520f470c6a0
+FileChecksum: SHA256: e4e866c8b48bb86d5fe9fac04ba58986d58e6d7586c09107a437a6b4d85ff69a
+FileChecksum: SHA512: 14a6881e6b0bd2092abe31a2687eb9451a662dcd63294f33dee64346416ff5ba97d88eb5ed75cc087c5320d80361e97c3f6ee9d2055bf749e065f5adb068e527
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-controlbuf.go
+FileName: vendor/google.golang.org/grpc/metadata/metadata.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-metadata-metadata.go
+FileChecksum: SHA1: 43eef1469d21b43d0ce3ef90fec3a1a5b254d246
+FileChecksum: SHA256: 26cdf86e67d66a1032f0794587eaf945adc50996acad89c81a25e6a433f52de1
+FileChecksum: SHA512: 6bdee2c402d5aac0fa847b80acf663123d2d76bd1a652a9d2f99a2af795b4909266ce2849ef8d28fc5bf299e5b2c230f84102b933e9b80c0b9fc114c2c0f8bcc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-metadata-metadata.go
+FileName: vendor/google.golang.org/grpc/peer/peer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-peer-peer.go
+FileChecksum: SHA1: 658a7342468635627b646d92203ffacf86506abb
+FileChecksum: SHA256: ed94208f37d2983e302932057c07ba30e31c04923159148bd61f071f8b33a12c
+FileChecksum: SHA512: 0953b31767c7e653f738bcf5cead1004e1479f3860c0397bc3835dfa68a62d1be87cc11de55099bbecda25254bc4d8896c0095fb05dff37b89d6b7ab4a1e3524
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-peer-peer.go
+FileName: vendor/google.golang.org/grpc/picker_wrapper.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickerC95wrapper.go
+FileChecksum: SHA1: e90416b3306eaa1f7356d78a6ae3fe13c9fbd586
+FileChecksum: SHA256: eb40834d411e13836844a31de61dd01a8c6fcafb0942f6bfebd15811dc7882ed
+FileChecksum: SHA512: 02f197e5ef038ed8cb51c3e0c4ba83b811c48ed2b7fb71c1fd372e6d97d5a67d809226cb0e4e0da560ab084ac9bc90e0b52a4336ef77a8c317e4a62db026dec7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickerC95wrapper.go
+FileName: vendor/google.golang.org/grpc/keepalive/keepalive.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-keepalive-keepalive.go
+FileChecksum: SHA1: 61b20924d9b7a73bb3d473d8a1914873755d3aae
+FileChecksum: SHA256: a1aa59ff1fb63be104a97cd4d9bf4e62d5440d7ff4492f0148ab5f4bff2e96a1
+FileChecksum: SHA512: 6241215b97e22111b6706337f72206a1066b61a60ff3c61821f117f257f52d0bf0c5b6133ca083843ae2c450f5cd394991a85b2448337bfc5e62ce26c9f11044
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-keepalive-keepalive.go
+FileName: vendor/google.golang.org/grpc/preloader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-preloader.go
+FileChecksum: SHA1: ae4264ada7fa66980c586282f8a2f60e0db07734
+FileChecksum: SHA256: 05b7a7a8f36c66907ad5eb206a143867dd95ce2344c18646eb4f0c99ee0c6281
+FileChecksum: SHA512: 9fb23e62b2a60b6495866640fae7c57076d997a881b5d343dbe43180ce51c7b46e68dc6572ea0883e01aa5d38f071f1ae21e0d53fafc5aafead603d58924ad08
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-preloader.go
+FileName: vendor/google.golang.org/grpc/internal/transport/http2_server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95server.go
+FileChecksum: SHA1: 0a8e3d787afe90a46746cb8b0dffa79ef351ecae
+FileChecksum: SHA256: 04431d2e109cf9f33e3b58e588b10f56556f12bc0fff647f490210ddd0149726
+FileChecksum: SHA512: 8e1262f37fb52ae0925502fc0666a74497ca9f570852ab1ab5c066d9791a82d694994878c4543b8a38e345df81a6f229d467cdc1bd73a40a9adc033201dff7be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95server.go
+FileName: vendor/google.golang.org/grpc/regenerate.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-regenerate.sh
+FileChecksum: SHA1: c53cfa6ea3a29cf3b3672174f1bd70b680ea43d1
+FileChecksum: SHA256: 63a1c1371c91dd40b1313023b49aef467edde24df2dd99d134a3623a59f9f98e
+FileChecksum: SHA512: ecb23264fa4b0a27304131748527129a0d61028fa7fdbd00aeba35485aae2e5a803eb85f4faa800ca6b3a6703559784fb36698dacc50672e7b739d43cf52d268
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-regenerate.sh
+FileName: vendor/google.golang.org/grpc/internal/transport/http2_client.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95client.go
+FileChecksum: SHA1: 8fafec181fca92f175a4fe3dbf346fed3fc551a5
+FileChecksum: SHA256: 777d7501e0bf812b736da70692f3fb0277ab4c76d4f0b57a08b266fbe6df8fce
+FileChecksum: SHA512: bd539d977f6f5874cfeef63a7827071d8420b1379c831303d597b199c351dfc465b474eeccaa71c6e8e5832268d11c9ad57f21b98ebed244de1b0d74e99de2a8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95client.go
+FileName: vendor/google.golang.org/grpc/proxy.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-proxy.go
+FileChecksum: SHA1: 59fca658e8d8181f86e8118e33f55ac8200463b7
+FileChecksum: SHA256: d1ce4e5bcc80ddded7b7b2f05da2ea13981375d010f1f15589353190861b27c1
+FileChecksum: SHA512: cd37552f1a37f5bf7a0f23ba457c9d1e7202e5f9ed0d0543630a9210530ce8e600e082026c24bfd228545c1a0230f34396b9f20d4e547e50d0bc5a15fa8f6190
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-proxy.go
+FileName: vendor/google.golang.org/grpc/resolver/resolver.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolver-resolver.go
+FileChecksum: SHA1: 08ff6883fb565a22adfd5890a7215ffbbe58bf5c
+FileChecksum: SHA256: 6283df8ac40996312ce876d6eddbd65733e86da49625dd15b9056c46d630cc3a
+FileChecksum: SHA512: a4d1cd370d51901413b3f013893201ed5d0cca5f6b0e97d48d9e03550a63642f4e07861720508b1348e11cbbfbe7fe1ec1ce94befb28c33d7d93b86729cd308b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolver-resolver.go
+FileName: vendor/google.golang.org/grpc/resolver_conn_wrapper.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolverC95connC95wrapper.go
+FileChecksum: SHA1: 9c1dd3f18f6d414af2dd548e5c023aa225ad15e4
+FileChecksum: SHA256: 4c0f54d36620b8cf162ad52c82cb2f44ad42f37c23483c03b3486acccef802be
+FileChecksum: SHA512: ba6470e99ac979e0476c5aadec89e49577d8c93122b8eba9626eb25357d56d0dcc8cc97d2be4f8c72870b3d6ea8cabd247ee40d6ebc581a5b2f3d35320c71cf6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolverC95connC95wrapper.go
+FileName: vendor/google.golang.org/grpc/pickfirst.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickfirst.go
+FileChecksum: SHA1: 238d689aff0add19921fba4e2720a7bb2ca46f10
+FileChecksum: SHA256: 9843cbf1ce87f292e1a680a9591fdd313e2ce6d172dbcf8ea082796743beaaf5
+FileChecksum: SHA512: 7351023e6fba0cb9ed38dc45b84f235f01c9d05864330a36d4d10b6daa2808c390e4052feb587cfbac3fa8ff9decb2b9579a9babbb8bf779aa74b47c0e0fc3de
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickfirst.go
+FileName: vendor/google.golang.org/grpc/serviceconfig/serviceconfig.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceconfig-serviceconfig.go
+FileChecksum: SHA1: 750139269c86c706fc7c96af996ce82304fb0455
+FileChecksum: SHA256: d8100f7e633c602c140dbf669a060f5f50700fd16cc6b40a5f097361515f63eb
+FileChecksum: SHA512: 2ce0ec2ff8c6977e43db303498ae0595bb49f58b3d1743971d9c1fa20ac6819fffa758981713dad189037a98ff9b39ee57d56614c93a59e9547819b82d176056
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceconfig-serviceconfig.go
+FileName: vendor/google.golang.org/grpc/rpc_util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-rpcC95util.go
+FileChecksum: SHA1: 6dfc4d1f3dc30f0f47419ca1b29bce54530df68d
+FileChecksum: SHA256: b7d5055ee5554abb8bd5d1abc68cd4a0d9ba92fa1468fa974bd10dba4fce74c4
+FileChecksum: SHA512: b8d4f0025237f64f8d63f82dea07316632340d55155bc05015cfde8de6f3b70f2f3874590ae447adb84bfa81ed968bec59ed31ca3a3c0aa562ae993a51e35f62
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-rpcC95util.go
+FileName: vendor/google.golang.org/grpc/service_config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceC95config.go
+FileChecksum: SHA1: d7266942d3da58639650fe888c7fd99a83a40405
+FileChecksum: SHA256: 24f5045cdf85bd728099395c10df88f1caf67b28d8109f851320611e4f924cb9
+FileChecksum: SHA512: d0ecc05f653a00cdd297d91b69486db573c6b37740beb13384dac6bdd0bde4551184e2a23724f341e587777aac06ba421a4c842d5fcd484dfccf3fe7384cb2e9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceC95config.go
+FileName: vendor/google.golang.org/grpc/status/status.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-status-status.go
+FileChecksum: SHA1: 6489a3dbfbb68f66733e6a3d1958564628761a27
+FileChecksum: SHA256: 352bc233e86c30952c39872f81d5a841e0d4f1a2ea46ef86b0462e46450972cb
+FileChecksum: SHA512: f9861754f9352146aeb81186a446756bfdcda5d92e092592c43f9e42be2fb1f64a3856350bcd81f6dfa11f0e7653ae9eb48275b2af10467c75678d506ac0017c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-status-status.go
+FileName: vendor/google.golang.org/grpc/stats/stats.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-stats.go
+FileChecksum: SHA1: 70585fef55eaaf8775a12392361a5572f65cdebd
+FileChecksum: SHA256: 7a74a576f08c9775f3ec91fac387886a61380a8ab4686d5131f81b47e65c935a
+FileChecksum: SHA512: 5307966a81bfa722265c6accd8d5d6ea02c69a432ea4a262f5463cc06f13e721a4affaffcc43360a7b04186d962e1cf3cd9b7ee8c4c4110aadfb0237a3cf6518
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-stats.go
+FileName: vendor/google.golang.org/grpc/tap/tap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-tap-tap.go
+FileChecksum: SHA1: 7d781da5c4a76c9812ce8c3c61f74aa56f8d717f
+FileChecksum: SHA256: 3033d851c8266eaa387ea7bcce52e60c1b2dfd9e88792f32bdcebc54d7cefadf
+FileChecksum: SHA512: 1256af7372f3025b3b0c25d8ffe43afd76a2cddd7e00d646e0eb87daa81a1aa512e367e0bd622d273aeb205d0e3cb60dbaa62665a6484ee5973cebfcd6877fc8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-tap-tap.go
+FileName: vendor/google.golang.org/grpc/trace.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-trace.go
+FileChecksum: SHA1: 8d34b1be1a90485f0311027851fbd023a3d293b6
+FileChecksum: SHA256: e4d243701bb810f0081983e4b01a4eb427968be63dfc981e6b9e418fcf25f4ac
+FileChecksum: SHA512: 292ce9bb5750be45a67d20ff922cccc9c7a61470633d034bba18027646004e923f372619bb06c36ba1aed26facdd83ec9acb90a99236f25728770c483ed2bf27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-trace.go
+FileName: vendor/google.golang.org/grpc/stream.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stream.go
+FileChecksum: SHA1: 6a9f356a389c2166610fb6aa3c46e13b909dee88
+FileChecksum: SHA256: 7035d13927f566a25c7ae6d7ad1fc07ee3efe93b54a1022edc93e6e8a98ebb52
+FileChecksum: SHA512: 29e4b018d62999633fc76b506225eccbc6908b9499e294375b05bc1d5c12d7317d403f4e1eaf37289b502aee3412eba9f44999a8a846f45ef8c6a0d3fe1080c6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stream.go
+FileName: vendor/google.golang.org/grpc/server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-server.go
+FileChecksum: SHA1: fbca68144f3c81281ed7e6eba3a8c80fa31fc3b9
+FileChecksum: SHA256: a57275855bc81ac97824e641bf8c60d877e9388b8fa26edd1eac521dc840ee5b
+FileChecksum: SHA512: e003bc348af9069ce898f324b5d71d4816d69fd77f3bb80e37377be7953b3f03cf7313fd51898b481cb21e6a746db8f430f2f5bd782aa632682ef0aaba98fe3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-server.go
+FileName: vendor/google.golang.org/grpc/vet.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-vet.sh
+FileChecksum: SHA1: 334b5e1a24275287313c2c2a2de0e908499c54bf
+FileChecksum: SHA256: 9432d0457bb5acbee7da80110c4353938327c7a670792b3da5000286d49dde3f
+FileChecksum: SHA512: dc44f2f6cb58221988f6ed19f124f8949c093ec898fb547a1986c5770d31c22eedf63909c6f76cbe14a268bc51ee5fc081392fd189321e3a5d6b303c1735dd71
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-vet.sh
+FileName: vendor/google.golang.org/grpc/stats/handlers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-handlers.go
+FileChecksum: SHA1: c586fd0c6bfaeea8083a5de4418a101e1f95c81a
+FileChecksum: SHA256: 6d76e5dc6a39ff72cb9757781ee936e4aefcedaa00066c5164e9f2ea33fb8f9f
+FileChecksum: SHA512: 14ddd2db5c8ae44a605247236940af1077844cb268cd4353152356eaffe7b484c8717dd1dc5053a94ee213989cec1a4fc281c3fb017557e196b8b840c0f5052b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-handlers.go
+FileName: vendor/google.golang.org/protobuf/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-CONTRIBUTORS
+FileChecksum: SHA1: 39097573c311def5445e4dccaf3189987465bc83
+FileChecksum: SHA256: fa714cb1012a065fbe08b174eb1f5604327bd24d42dab2c461878ce36f68d0c9
+FileChecksum: SHA512: 36fcb4e290cf69db05fec038f7939a7bb888d458c4d814cb368f207210359c921e2bc563720d8add09039fc2ffbe3bacb96e4b80c248f643d0ac4808d8e4a718
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-CONTRIBUTORS
+FileName: vendor/google.golang.org/protobuf/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-LICENSE
+FileChecksum: SHA1: 74850a25a5319bdddc0d998eb8926c18bada282b
+FileChecksum: SHA256: 4835612df0098ca95f8e7d9e3bffcb02358d435dbb38057c844c99d7f725eb20
+FileChecksum: SHA512: c5772c80cc7f4338e35220b9ae0c83aaf9eebd3a643d8b5420415120de3973309d71b4b74702f2fe59f494fa8f6b43fe925ada3e5885f3e06c59ce8198628fa4
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-LICENSE
+FileName: vendor/google.golang.org/grpc/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-version.go
+FileChecksum: SHA1: f77b13d38fa0ee0e7471b56fa6ebf461fefe08da
+FileChecksum: SHA256: 0e18e7d9a68de844c138c91277d142e08ba878d79063802b78fffe26a605e41e
+FileChecksum: SHA512: 01fc1543498e988632d6449ed3872f77deefb5578a2f6bb818608c6daac48f080fbf346e9fcd053c28b29886076de116fa81a30beac3e5c7e8a79fca43fb3437
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-version.go
+FileName: vendor/google.golang.org/protobuf/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-AUTHORS
+FileChecksum: SHA1: 5d22291302558cc1dfe4729c69bac627252d3c10
+FileChecksum: SHA256: 5aa3167c44245f0b12b27195d85c6a8c8e067cfdd511059daa4d7b3c5b232129
+FileChecksum: SHA512: d9bfd664efaa0ec0cb4c3c4e5b850aa374692c1abcac7e818b8c9fe32c431200b6042639feed3c6a32d7ab1caf94e7a50a9ec21f3423e759b25ae89e0aa439e0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-AUTHORS
+FileName: vendor/google.golang.org/protobuf/encoding/prototext/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-decode.go
+FileChecksum: SHA1: 216893c0721155cb40890afdfa9ca2cecbdbadc3
+FileChecksum: SHA256: 7091ef15fee93b1a47a05291c8c8a32a907d9657623fa62115811775a3b13763
+FileChecksum: SHA512: 429a64f7da0125a9ffa4e9684b7848698840d8e28bde1e9a72e4e803c7b3e4fd4428d0c093abcac81c2f990551ba17ba4253784c93e741fd1b5e861a945ca8d2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-decode.go
+FileName: vendor/google.golang.org/protobuf/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-PATENTS
+FileName: vendor/google.golang.org/protobuf/internal/descfmt/stringer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descfmt-stringer.go
+FileChecksum: SHA1: 99117b7409d71ef691f6792346432aeba3259293
+FileChecksum: SHA256: 883fe3b2b6f0524e08bb53ddaacc799e94f1ba1ee75ffcff195ff0ce695e6c41
+FileChecksum: SHA512: c19a8886ddd53e7d95f5871783952286003ba9e075e3377afc699dce9d1ca199a4f1122f23f489f6365e79a689fbb87a0e5264f55e1c8c265c6c96bade5fb6c7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descfmt-stringer.go
+FileName: vendor/google.golang.org/protobuf/encoding/prototext/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-doc.go
+FileChecksum: SHA1: 1fd96af262da70401f5f90e7d757144a84b304a0
+FileChecksum: SHA256: 48657fec4cff435f30956a1dc6c1b639550ed5fffe1633f1c976645c67d199e7
+FileChecksum: SHA512: 61477d6ff4d7cb592ba63641ec345a479c481a845923f4dc79d0891051b61fa2f5d6c465fc979d906c681c5f354217c65039edc60810889b3753b1e251b4d78b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-doc.go
+FileName: vendor/google.golang.org/protobuf/internal/detrand/rand.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-detrand-rand.go
+FileChecksum: SHA1: fcbcd45a31f7d7af37be9e9c3f7c2f40670fc4ca
+FileChecksum: SHA256: 60da5b516689c1ae2e4dc69a18d13da3fbf061de5601e573d309470b2cf5b285
+FileChecksum: SHA512: 635bdfe87f48a132aab5b9fcd078a67871057175289e8cff04efd4906c5eb63f30dd4b7fb689802513dd61f8404f605272a33d74e9fce1f8d748ed0673b42f26
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-detrand-rand.go
+FileName: vendor/google.golang.org/protobuf/encoding/protowire/wire.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-protowire-wire.go
+FileChecksum: SHA1: b23add4c95c8df946b3c72c2a58ed9a97ae2157f
+FileChecksum: SHA256: 7f75267a3c37ee9084214838bfbcac23a4aa12a73b464b473993dbb590cffc5a
+FileChecksum: SHA512: a72871fd34988fe891c9665c514309743e944701e87bc187f08d70ed774f84c6e264a7ac9eba4492012bb954819eb96053fb59a5778036479e0153bd57885349
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-protowire-wire.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/defval/default.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-defval-default.go
+FileChecksum: SHA1: 6960553c4047c30bafbdffc9022a4933b82912fe
+FileChecksum: SHA256: 1654b54a991774654dd487974fad73134df4bb761f6274625405b5df227aaff7
+FileChecksum: SHA512: 48fcefa2af803f2df9a99062187af185a73a230759ab2ae7a8ffc1d5fbe947bb85ddf809ce5ec26bc882f9cffdd14bfeebf15327d99e03acc11fe00eeb30a4e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-defval-default.go
+FileName: vendor/google.golang.org/protobuf/internal/descopts/options.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descopts-options.go
+FileChecksum: SHA1: 1d29b0dca6dd037c8dba4f65e1f412e1ab009bf3
+FileChecksum: SHA256: 2651135e9b29304bc99186fd689774f7fffb2fa808a350b81e719d8e82fa6e0f
+FileChecksum: SHA512: 207b8d8189df4af6fd650c0dc1a8dd03f4837b887fa57056f20366529b1e19693962655baea20aa85d9283cc9a638073f946c96024e878717866288357618a16
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descopts-options.go
+FileName: vendor/google.golang.org/protobuf/encoding/prototext/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-encode.go
+FileChecksum: SHA1: 44455450f60fee85327cecb5a84fdfb0e20cadf5
+FileChecksum: SHA256: 1d85163f1372dccc3a5036ea559933d823e62b5c868bcc19c475c082676b5b18
+FileChecksum: SHA512: 926b71912936e51d357d8637fa57457d05f0d61a962192dab64c21c9958f9bd78b39cf8d5004964ce4f1c9b2413ed0b4fac75fc281cee375a2bf209130237124
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-encode.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95number.go
+FileChecksum: SHA1: f350fae4d531c7143cbc82efd4234b015206f6d9
+FileChecksum: SHA256: 7081ffa31d68f26214cc3eceb6ee6c51f582cd55aa66077fef8cfd6d85a18bae
+FileChecksum: SHA512: 27d7916e3b30ea427b67061897f69362f6f92d308ac0f42be967363a4be092291565d444297f5784b9755b004116399c3a4b4e0d4171936a3d2045b7c1cd7d75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95number.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95string.go
+FileChecksum: SHA1: 87a76c352c35e302001126f67ae498a00f0f6335
+FileChecksum: SHA256: 5974107818845d7d94c39cd275985dfbcd55b9eba4d731e182715f985370e7ba
+FileChecksum: SHA512: 7b7f8f286bc3b96f525aacfa5983a7f1011c904f7c4e86934a117cf040bcd37b848560af65e79cd06198df624ccf442e38839638b986f193f3f1827cc290714e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95string.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95token.go
+FileChecksum: SHA1: 7b9a4099f2c75a473c07e61ded9ff9572d32cd09
+FileChecksum: SHA256: b51ba5d349f6c36f99544020733af26dbcb476bd73548cd943c14286fae2c475
+FileChecksum: SHA512: 56015c3625830db84bcc1a1c549bab6cb9b431aeb775c7efdaf786712fef6e76949cc4d8fb5ec8fd3ec42160eeeb0d357d48c05a8b49d66cafde6d6ff5341bd3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95token.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-doc.go
+FileChecksum: SHA1: dea93ac2f10089e368d70432d7342c024de29f0f
+FileChecksum: SHA256: fc115fc57c3d85737cb918275fa806e9f76044b6cce31a762b10c81c28642fbd
+FileChecksum: SHA512: 655b40422e56b450baa8d11aee04d773ae67d0befc44fd3b77511761ac0b0a60b0409a0dcc450bad117c7dbd24dc65e2fd44fbe4ee894a9149078b57fbfd8170
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-doc.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-encode.go
+FileChecksum: SHA1: 5a5e16df9fc9bd1703aec2502dc1e274709a4e9c
+FileChecksum: SHA256: 0c15cfad72e75b3e18a3de52b8ca74dc83d3d5c7fb1c14b0879aeb27ab711582
+FileChecksum: SHA512: f96a355630abcab597794bcc3d4504738df9a320c2ff5c14c16bd32d3b3b48b066b3751d2d6976e2d9c937ca05dace34f73e4efc2081de116b93d49f5ec0d7c6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-encode.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-tag-tag.go
+FileChecksum: SHA1: bf4aea5b3d10b9f102f5ead390d65d5bd3f3459f
+FileChecksum: SHA256: 8ecb481c311f3abd192446423423242735dcba2ae7e0b1e49debbacc757adf2d
+FileChecksum: SHA512: 6c84bb98ec657a4cfbc070de417cc900ec1a958f7f33a87e9fecc213d1153f0becf8eb3cb68f40c334fa000b6655bbc682a7fd20c1e17c447fa13b500e92758b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-tag-tag.go
+FileName: vendor/google.golang.org/protobuf/internal/errors/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-errors.go
+FileChecksum: SHA1: a2a5667a227c1c9cfa87cc53f38eb16769ff06f2
+FileChecksum: SHA256: 4a096a248dca8bfa90792a02d60b4daf8da42be074e3befd88180bcc2d694a4b
+FileChecksum: SHA512: 259d57e0e498e5f7684adc3e21a4f8357700b1008fd35d0ce35be129af19d230b44980c483cc9b8de05de2fb2ab2e9548a7d2b795690a6ba0b7ce37511f4bba6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-errors.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decode.go
+FileChecksum: SHA1: 401dc0867ff44c1ee701fd5e189116323eb310e5
+FileChecksum: SHA256: 75f2c279cadde77316f6e5d466fabe43a77d6fb3147ce8484276e548ab685012
+FileChecksum: SHA512: 5dd4895a42c231f8545226232c15130e99d54cbcf3f78a7f8c6291bf39c3100ab45efd706ca6785bb6b15fdbc3ff4633bfda6743f1e870927c6f7b03de3f22a2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decode.go
+FileName: vendor/google.golang.org/protobuf/internal/fieldsort/fieldsort.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-fieldsort-fieldsort.go
+FileChecksum: SHA1: c21a99e7fe542209de82003f333fea17603d8473
+FileChecksum: SHA256: cdd29688c33c65d70e798a6763d6ea27396362cd5ad15950790af1e849a6551c
+FileChecksum: SHA512: 315cb78f16a7fb78771483c99abe41db861081cc0de8e935dbcecfce96645c532c4a5faab8c627a9b72693a4a5e82c67e4a25836a2471a060d911b2b33e88f74
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-fieldsort-fieldsort.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-messageset-messageset.go
+FileChecksum: SHA1: 11e6e0cf515c1e17e9b4e0e6af469fc69356ecb7
+FileChecksum: SHA256: 39d683c207c00c122445354716740ca9b0079b0f1c2e2e2fbe2499bf018b0b97
+FileChecksum: SHA512: d150b22df227154f2ccd4e17d32c26cbae529d37af2790d6dd5087fc4c32a65acf45a60562d07e4defc66a985f95e61bbcfa6feeddc35749fb03c620ed05adc9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-messageset-messageset.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-desc.go
+FileChecksum: SHA1: c24662672341a046bbfc3575063cbb270fa89fab
+FileChecksum: SHA256: 0cc4e6b4ad261a37d52de44f243110571384aeba989eb509891199bb74cbfc01
+FileChecksum: SHA512: d942991a6c30d084772c43ca8c227777ecb404f05bde486392f8d7f3e03e49e49e625bc4bf7d998f2ca4643f099d823de5df95c00814a1cc451a2eb8167d6b76
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-desc.go
+FileName: vendor/google.golang.org/protobuf/internal/errors/is_go112.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go112.go
+FileChecksum: SHA1: 5b1030f6bb66fe378160644e38896d6e178ba497
+FileChecksum: SHA256: 0d6f25629954b9e3d383d56e774c68550ebd8e20e89c9f207cc5a6cc838c4482
+FileChecksum: SHA512: c6e4a8dad621fb2520d281df40373cf8dcb2bd11003e92ffaafde62d4d89003b489bb395193e550310b8e898b55544cb5d53fa8063da0f31ee2ac8dd6c388f44
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go112.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95lazy.go
+FileChecksum: SHA1: 6239786aebbc4617b6c26deb484196a66e2e06e6
+FileChecksum: SHA256: 8d5254e7b6286d098973559a54abebfc452c81a06ff395c5bc46c534128852bd
+FileChecksum: SHA512: 4c3816b8fba8f5cda595eea713df15d33596ca8dcd33e28ef24c15c8c4ec7a499b572617a0c64e15b7a42c824839a03f0e6a067c0f88257b7871c7ac9c927aa6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95lazy.go
+FileName: vendor/google.golang.org/protobuf/internal/errors/is_go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go113.go
+FileChecksum: SHA1: 9d5d4967a44f4356e581f16fec75d250151a57b0
+FileChecksum: SHA256: 2d37408ce4ebba95fee6f4bf289e6767d66894c0fa5e38a314b70ebbbb3b372c
+FileChecksum: SHA512: d31147569e696407c6c96fbc75049d2a880f0c62165c542e7e8289a5a525530d938d723ec051e5a1f609a9bb4a1be87d7b8c787a829c827a0355796d07a93f94
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go113.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95list.go
+FileChecksum: SHA1: 266ef93fde08199e1aea4bd46dc94c5fdb334e3a
+FileChecksum: SHA256: d7962034bcd203a308d80052c3ab23571139f204beabc0f93e7f5ac3953571cc
+FileChecksum: SHA512: 607f2f7241fff0fa0dc866023393050549bd9a8c1bb4c1e119eec01d88f39795fd5044aa506f4859a7853bc277584d3fe6a1b57fc393bb08016f54f06ad07e92
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95list.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95listC95gen.go
+FileChecksum: SHA1: f480e3298ce82f3e63ce46a7de9834233d74eab6
+FileChecksum: SHA256: bc8c9019bb55e10c2da04f2214398e0dc825daebf69d90c434b42b3f4c24a8f4
+FileChecksum: SHA512: 2f340112c561c8f069799f4d3c2e7cf2796da0fd472f74a168320f382f85d3d7e3fad6a075c2eec8521793b0f5a9ae786656a0df04f3f564a1ca8858d5358e4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95listC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/build.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-build.go
+FileChecksum: SHA1: ed1dc1f2557d919e39ed25884c343322ba49bc4f
+FileChecksum: SHA256: a183ad6b34b9e979fbe725df61f38a844503bd073a639166c5a0e874704dbee5
+FileChecksum: SHA512: f18773775f6195f49de57c423f97bf9622497034ef2b4fbc1f8b4cc827d19a2cdf10084936cb9250252e6698c0ddc51ca786fd0abab97f326a0748ebc3322226
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-build.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95init.go
+FileChecksum: SHA1: 9e382627cb220dd17c073ac85597407d2f4ca572
+FileChecksum: SHA256: 8477391f43325a8ddabeefd7fff03cc69b409f88ac454729838419692860f2dc
+FileChecksum: SHA512: 3f38b80a6eb77841c5774f61ef813d1f5ac7594e06122224c6f1bf0ad101a8b811f00e082e43bb1e1ea735fb1d310b58c06e0aef270aa9a50421b807945ef95a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95init.go
+FileName: vendor/google.golang.org/protobuf/internal/flags/flags.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-flags.go
+FileChecksum: SHA1: 46605df1458084fe4e9d8275fc25211422b62d09
+FileChecksum: SHA256: 4921e802d873d589e4970b0924c1a78a3fd6f9ddda980789537e7b9cd666b56d
+FileChecksum: SHA512: 63001e76cf5cf8f20b50452b73511cca71d14477bdbfffe0cde3f92301a95ecbcb5e22ef18d616e0ee75b370ab9e0965ea7ddf48aebfdb9cfb160b553334de06
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-flags.go
+FileName: vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95disable.go
+FileChecksum: SHA1: e11f2a0c0516fba370b459e88236cf7fd10556ee
+FileChecksum: SHA256: 2168c4c8a4d610875ace5bfadace10d4276561bd1edf34c9d8daa42933e8a1b8
+FileChecksum: SHA512: 56c275ec3bd2e03fb735857a090f67a643395016572f0d00ef1d95f24a75a9f6de43972a5b2e4639ab34bdae6e7735468b8bb6df621c71933ec12be500333f88
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95disable.go
+FileName: vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95enable.go
+FileChecksum: SHA1: 29919d987f49bf9e90ea8da93a3182e1d7b48878
+FileChecksum: SHA256: 5d1a8091ca4c06c18bb4f4f6835a1efd9c697dda7097bf54c5d799e0ce3eb44d
+FileChecksum: SHA512: bce8d92b8661f53d67a6d25ff6efc0dbdf0b203accba58e7649dece32e31dff5875339c75935d7bc9fc57c3f889f6a99dc6b910cbf57072fafe0474e7f6061e7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95enable.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/any_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-anyC95gen.go
+FileChecksum: SHA1: 3214e57f5dd07c5d354f395b7fed4ae742902506
+FileChecksum: SHA256: e52abb175ed291da379fe73582a640b13d08ae426b51f6e40a82fc07ef4494f2
+FileChecksum: SHA512: 75eaa8d508c81f08595b4512d0a13e9ded319c10d9269b7c6d63ebda5d215d0f2cc4772e749a43792a9248eb68537385046027c2fbff1c3f100499dbd77d56b5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-anyC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/api_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-apiC95gen.go
+FileChecksum: SHA1: d7703fbf3ac2bb1e1564335c5bcd63325bc35f5d
+FileChecksum: SHA256: 110c84dd0ceffab873b9612e87932b577d5e840e80bc7c8cc4f829e6399f1695
+FileChecksum: SHA512: 89cc0d2dbb53bb43cef13e9eaa1d956670139a7bb57aa9eb38a08f6edee0015803f43e632f0670f5956bc1f32d189a5704b171329b4d8479de8d84beadde2388
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-apiC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-doc.go
+FileChecksum: SHA1: 4c63bfea4f448d663d3dd85a2fefe31b5e38f3fb
+FileChecksum: SHA256: 4491a99a2b0ee5ccf8dbd9bdccc1cb3ed84e38abbbafb72f3567b1438bca663f
+FileChecksum: SHA512: 02562dcf6ec1a7141e36b10b2c63d1c6460caf88ca398b66a25577db98063e1b2f5bc7a11bc69b3bc8809637003b2bf236185cb278cfc4a2fee4637e458e5a48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-doc.go
+FileName: vendor/google.golang.org/protobuf/internal/filetype/build.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filetype-build.go
+FileChecksum: SHA1: e185efde219425dfda417fd37c5268da3478e5b9
+FileChecksum: SHA256: cfb37abe6c4ecdb27d8da0b7613255facfb24b4b1b2bfe9eb48ab8a1ac0204b3
+FileChecksum: SHA512: 738975695f73641a25d018d0d2bd9c74907f2893b39ed97e3edc624ffe72e5b7d4e464a8e646261fc72cb56bc6f387373afa7d9f0808cfae4b558ddabc0fdaec
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filetype-build.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-placeholder.go
+FileChecksum: SHA1: 0cf4210b9884026a1dbddb37198fceec24ae25ed
+FileChecksum: SHA256: dbe84bae63e6274cffb777fb23739c70c05c321e8b93411ba2681d93de6ada0f
+FileChecksum: SHA512: 5347b19b1fae6c670a4515ed68f5e220fdfd96f2b5a559998a0796f139b02ea1a8bdd233b2f8154a07f6e18df2e8267111e2b32f7c25d8587d27ec5c7afe750d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-placeholder.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-descriptorC95gen.go
+FileChecksum: SHA1: 9efff2cdc184d867dca9e44fb4edbfd3f6e0e164
+FileChecksum: SHA256: 5dd35c07b1c4a73f32eda1344ccab783b3a587795af14d92f0c484b1ecee8422
+FileChecksum: SHA512: 8e12c60291af21b8120d3ff0f4a84f050cff3f079f6f961303ae1e7c3a79b179658e65211e0f38f3ae4719a829f2b10f9a9eb3fae3714c5c8edbe52353b74fae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-descriptorC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-fieldC95maskC95gen.go
+FileChecksum: SHA1: c091886806ec52feb492645d1780615b3a8a17ac
+FileChecksum: SHA256: 97ac7e90145a527f1b53e26868cb2257af5ca000103dcf20ff6374693512d5de
+FileChecksum: SHA512: f2b2ba14dd96f597b10f1da22c82f1ec5bdb4c47590d8293cc39d7b6b88bdd5a0ecdff799c0170be549ca5e32d13716babf50a9ca313af2c0781acee61ee598e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-fieldC95maskC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/goname.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-goname.go
+FileChecksum: SHA1: 355cba29131612f7b8432e2aca31006cb9f53cc2
+FileChecksum: SHA256: 26d956b899ec5eb6c8a5ecfa9f6a004d15f3175c851ad23676c29fb005b5b4e6
+FileChecksum: SHA512: ef32c29b18d05a5d677a8a13a31b7f7cd8f4dae29fbf02b632d6b0ff20f8b00d07f18717f0c382e16f3c4987ee7e0c8dc17d2858f918edd1db6c24533a72159b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-goname.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/duration_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-durationC95gen.go
+FileChecksum: SHA1: 228b43ec0c1711da5ef245a07750c3f05c6e4cf6
+FileChecksum: SHA256: 223477c7c21d3aba70b6afaad202499d35dd28d97bb3096649d398ec09ffbd20
+FileChecksum: SHA512: 687c67d5a910dfba1a690f8a49208c80e78baa690cb39e0423750027795544374001a932c350844a1deffe9bdb00be18b0f0b8c89adaa0b2eeb5673b38dd7de8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-durationC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/empty_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-emptyC95gen.go
+FileChecksum: SHA1: 3de0f568fbb2f7822263d6e6694403357f7e842a
+FileChecksum: SHA256: 1bb2b55b36ca99633efc148681988dbd738bfc6d09b88c92bed6392a4a16e80c
+FileChecksum: SHA512: d49bc4c57b18659b581015e2f1708b5795750d8e3589abd8c59c3ae3e37a88e575520b3ac48f4f4e9dbc482725901ead059f85c52b0f8fa0a204f560d7accbbf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-emptyC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-sourceC95contextC95gen.go
+FileChecksum: SHA1: b2037f6dbd476e4144a92579c180273feb8656ed
+FileChecksum: SHA256: e0aac89c39dea4892ba50ea5316728a8c582ba9a1434406c5aa047c0e90bcdd0
+FileChecksum: SHA512: fc208ab120acac6f90369f10ee52e87f95df5239335e8038f7b1f00770e9c9fddda7aa3f9c158b0419c768c08cbe878ee0402837435ef0603b5ade4d6e359a54
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-sourceC95contextC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/map_entry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-mapC95entry.go
+FileChecksum: SHA1: a6de4f7e4de7dc2fb29e0784dbe376979d8b9163
+FileChecksum: SHA256: 2af7de53dc0177c7a8b3491dae6472e2fe0bcebf4cf0f9d57a5ba67039da33bd
+FileChecksum: SHA512: 8d5119e0d9feceaff8efe58dbef814681431f6503640fe740db730b9b66168d5e2931a562820f392dab84fcf12abe1af4d68c32d4c72edfa3e701cb9fec928f1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-mapC95entry.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/struct_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-structC95gen.go
+FileChecksum: SHA1: 008fbf54939ad44cfb3d403f65c176237cf46b03
+FileChecksum: SHA256: a0fb714ad17ad4d6b920df4ba5fc74611b39aec33c55117b2aab0b9758af2a3c
+FileChecksum: SHA512: eada74e14ec98d52921889195959969c0a6f6ebb2224a31fe83b74b251c43b8ff94b339e14d40c50ad833183840e96c370899dce50cdc4631393a576533a1759
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-structC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-timestampC95gen.go
+FileChecksum: SHA1: 63f533db34c0e24288a73386611a39ad53b9e649
+FileChecksum: SHA256: 5652b719e792955d360f4b5c8f8889923976b55f86e13dd233edf366fdd71e2a
+FileChecksum: SHA512: aada3bf2d97b4fac2a38b5b13c7f814110088f7da4f17b8aab25bdf38c3115a524434edf46f86a237c8a01dbb247f69f5edbea51a5f10071ad606437e13f06e9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-timestampC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappersC95gen.go
+FileChecksum: SHA1: b921184ef62a280978760da13750e83d6e0a15f7
+FileChecksum: SHA256: eaa8ad201d3ef370a565fea90ae9f5bef6efec40c7fa58a53e7efe635731e887
+FileChecksum: SHA512: d00aadb1c1f6cbbba30c1fdd50a883a62b9720838004dde7e79d8781edf3f4d7fec44bceb3eef300f90e4a4b0a58d96c7e0bf47c881b3e8f3d89cd6dd3192808
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappersC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappers.go
+FileChecksum: SHA1: 3d25faa8ba752004da6c2940fa449ff75abfb64b
+FileChecksum: SHA256: a028064c8e6ef7b3ed36da09f6f8b2334f866fff8e9f002655cb18789f0ce45c
+FileChecksum: SHA512: 3d2ceeb259961bf88f2ea8ad0ab82de7c22f0abed426770ba7c20a4aeaf86c5fa8aba0b876e2993519335064ecd00c87c72a18c89a6075d2976e5272cf72774c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappers.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95extension.go
+FileChecksum: SHA1: 23332e923b42063072d5e2d0ff76570779b6eede
+FileChecksum: SHA256: a552d86147ef4cbc7e7c54cb65c499c4f7cd6a9903e57634f65b20c7534b6467
+FileChecksum: SHA512: 3534b69f6fb01d2cd808d523ee15650482719250e7362a1368851eb73d123b9ce136cdd0ae0d6b40343dccb48d0a776edf39b1cab2a4bae6893422d292976e2a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95extension.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/checkinit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-checkinit.go
+FileChecksum: SHA1: 6df4dc83ee6a94c3a8987ed73c9d740f51c79c4c
+FileChecksum: SHA256: 64684ff7583c9f962304a8e2867f76e2533d72990c6acba13d3241f2ba54c292
+FileChecksum: SHA512: bd6c8ae2f3cbb1b4e5c06ca1489ead3266bb8cfb6dbf50a94b75f479179fa7a8896b9cd39b3b577f810de422480ae149090704890017932be76cf4cbb22e2073
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-checkinit.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/api_export.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-apiC95export.go
+FileChecksum: SHA1: 146c3f4cd1e6a4513f97c6bea552f5edeb87cf07
+FileChecksum: SHA256: f6a6059e4e7b6de5833ef14061318975823ef08fd737ad7e6089f840d15e1e34
+FileChecksum: SHA512: d8d1a2197809fcadc74cdaddd5ef18b47921d04fb0b1735cc87acda7350a3facc70a3d57450485f7608489515146cf9f3e53943b1c8c5f381fa5df10558c9c05
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-apiC95export.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_field.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95field.go
+FileChecksum: SHA1: 91421c771c85770fad4d8cfece36295cb62e631a
+FileChecksum: SHA256: 13cbfaad91710d66fc403b383d9644d4fcf4d59a47fba426773224ef95f43f34
+FileChecksum: SHA512: 01554e088a0ebaad8da91a3bccbf3d6a52f845ce8719e1ac3f1374a135394a69975cbb988c220f507c427ca12e1988f6a2e0c72c78e978f3fab4d54b210fb52c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95field.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_map.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95map.go
+FileChecksum: SHA1: 9db384b9d613b181c54d015ebd388f36e2796a71
+FileChecksum: SHA256: a050eb4e3892722b8d24ae67e0c22e4f3ed58fa67bd4858465df8dbfaa24caa9
+FileChecksum: SHA512: 580c539a97c0ce9c37efa20c38b8f7278e0acb8ee7a90ae628452b9bfb8020bff10b779584b0f0d64a91b7ed87d14cbf4a6b9311c3c39937b719f36695aff06d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95map.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_map_go111.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go111.go
+FileChecksum: SHA1: a755ee6533052e0bd0fac3eb6d20debef2ac841d
+FileChecksum: SHA256: bf9dfddec7c35dcbe1c8c3d76aac0983c4f9ca9ea65e434dfbb70c1461c0dceb
+FileChecksum: SHA512: ed19058c40acfa3c1d93b5a13d30f92a2c1f0fe6de6a69d7081a13c9ecf98c08da2191afbf589f9e135b39820b10373c2a3703e650158ef17c863366c73d415d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go111.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_map_go112.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go112.go
+FileChecksum: SHA1: 7558cad8aa71d4e38b216d72b5bf8ab85996b38d
+FileChecksum: SHA256: c43a8545068c36a1d98803ac5c3b3e1a3d487942776f6055048c5d59f94a9522
+FileChecksum: SHA512: 6ff3c4c3df02f12dd316ca11eabe1f76d0ddfd15c8b4821e8e6fe4c16e62826adca43160491f8e3295ae40175a4ea1ff30e17cdcdc0d8108576b5eef38cba3dd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go112.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/type_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-typeC95gen.go
+FileChecksum: SHA1: 94e73e111c7ccefb2b526a4960e5cda9a9ab2e59
+FileChecksum: SHA256: 404f307673e4c7b413e001d3c54d130af682ac8e99089c69f489d6b262455664
+FileChecksum: SHA512: 4e272763c5f12835db043a2e1e7af1ea1b100a78206f2fc69325f066a551e2724f1ff35c629ac2d979ce92a5b6205ae2368ddbf3b6333c177f89613c1b8445ef
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-typeC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95reflect.go
+FileChecksum: SHA1: ff20fdec2937e4f955d07772eabc0a92207d53a0
+FileChecksum: SHA256: 989b7c6585b90fde885382dc12509f66bce7b54af8390bb69eefe491d605f98c
+FileChecksum: SHA512: 853e8771c1735c720aa7dfc6f038b904c6937f7f30130a9a0e6a375ab7dd671c3894dc8fb488474ec1df139eaf5808a2c4d84c2a46d4c7ce663e7a00fce98c38
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95reflect.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95gen.go
+FileChecksum: SHA1: 3f0d7df34e0583df3d29b21e52c9fb477062a24e
+FileChecksum: SHA256: 96172851c39db379c10764c478bc4886f8ac50142f133fdc911f677e38247d58
+FileChecksum: SHA512: 344a7a1765effb08384f084cc4009443533a68ecc650c3209b59fd26e00d83ada03b94171ab0c55b948c958ac2e404bcb0e49cb00fd444c61494de1078ee552a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_tables.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95tables.go
+FileChecksum: SHA1: 345a04d08cd94a09c5c6581f25842b9ebb9dde68
+FileChecksum: SHA256: 857c898b4f81b8a8a93edaad2690843e83384b3f391de66481a29c558a3574e4
+FileChecksum: SHA512: 1a9502bd56733c03103e6a80040efe777bc0568cec52d84981c987c38682e23bf8cc488573968c76acfc4496a5612b9fba4040f0fb3466b0794151a09a7d6155
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95tables.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95messageset.go
+FileChecksum: SHA1: 0015b22560f69125e5ed2bdb210c8169371a6618
+FileChecksum: SHA256: 6fd0efef27a6e026da67e46e7e4c28041db83efd9156e99d2bedae0582b87f8b
+FileChecksum: SHA512: 1d332a799d848cbd515e8d6d3555a10f4d71bd5572f6829319224eada0dfd9cb7d333640e8ff73e8c3a1c809379134dbdc34c2a68105edf6f19be6ac8f8dd4c5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95messageset.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/convert_list.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95list.go
+FileChecksum: SHA1: 6d159686a420beb38523b9e8698320b435ccd9ad
+FileChecksum: SHA256: ac8f4cf0eb458da8b83a7ade28f150907406914b9393588e6c829750834ce2d0
+FileChecksum: SHA512: 77599421e68b097bb5b0ccf3957767adf5d6ac2180d3226ba413e82a54ddb6f1bc89142a27330285d4a7a8a0402999483011ad8c270c7cf8936a5e146183e8f6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95list.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/convert_map.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95map.go
+FileChecksum: SHA1: b1d85198ab56b7b7f121a86b7dbd8575df3d3ce2
+FileChecksum: SHA256: 5bc0e0170581e322c513eab85d3e2e271047c1295de2ca89d6287674063b9976
+FileChecksum: SHA512: d38407f2f9eaacd7a4b6d7a02c94727fcccd5e954d50ab4821b0a3060e78796e17756d1cd58a3ab8b557f38e80dbc609d91c716e39078f8a32d6dae4e08bae1b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95map.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_message.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95message.go
+FileChecksum: SHA1: b0dc4af0c6fc8bd13d83e29564f50643faca3d41
+FileChecksum: SHA256: c6b9af4d1704a2ff0378d366286d51e6da9bb1d88595142228323cbdb429e99a
+FileChecksum: SHA512: f75004f778eceacad4802ea600c13d76ac37f4e38271e054afd4a786232839cd0f72fc5640825978dee7a48fb37bcd793dce0ead0bcb803f233c137be5646844
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95message.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-encode.go
+FileChecksum: SHA1: 4480928773f491d38054b7b39758a899681fe416
+FileChecksum: SHA256: be10b62cab10282e29dafbdf40de57bd8a5e7d326c7bdd04d4eeab64e9397162
+FileChecksum: SHA512: 8e3c8f858a48cdeabf4087dd6659427c1298a03fdc3959f38889f0f89fbca69df225db4f4b0f334d067b6b83c223151c63303154123709fad80e34471868420f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-encode.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/enum.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-enum.go
+FileChecksum: SHA1: 87e02ad44537f3e30914f7eeee05ae4e5e928b23
+FileChecksum: SHA256: d499b32c2e5c492e283cf2fd90b88cd2c5ef0c55a08b8cc358f2b4fab2287e3d
+FileChecksum: SHA512: f608f8710ba88018af13bcc99114aa7b3b7023ccc8244c7907bafc1973259d77e9dd238b7467ee397e832e21407d972bc2f0832c1d7b674fdeeb4051adc58b96
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-enum.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95unsafe.go
+FileChecksum: SHA1: fb61fa096c94cea2327826c7f9bdd118ed391a25
+FileChecksum: SHA256: 7b86a7c6defaeef07021d858fce644b69bf18dff4f9bf5d519658ad00650ecfe
+FileChecksum: SHA512: 435f14393af72d272aa068c782fc61f35e75dc69322728ed19a142a0b2190284c3d3a2a4911706ba88c385c2ff7338c060ea3546ff81652bbfcde53bbbb1556b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/convert.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convert.go
+FileChecksum: SHA1: 6fff1b7c6bc0461eab48a97a584be6880be042fa
+FileChecksum: SHA256: 1a8f6eff297e3c48f129eed851e0516ff1a5a8c97047992da32bdfb4871b283c
+FileChecksum: SHA512: 3b1e18fd6ee4327517def3944d0aef16e25423000f9beff68b84fd921678d8a8f1ba474e7e5672454fe6cfefcc9950e22dec2970ea6b31883d9cc35779f0ad4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convert.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95enum.go
+FileChecksum: SHA1: 55d0492c6ea18b8a183dcdf07ced41dd5e557e18
+FileChecksum: SHA256: 035b9f9e4a9f1c71225e1540a424552dc2e4528dc94d1e94f73563d3b8cbbe1d
+FileChecksum: SHA512: 5ccf1feab594db7b2812bacc11e29d252331d3687d2da7f6f551c27d56136d59ad13719cd7e8f32ed554426fe9a144de9b17f53a8324c91d0f075760144dcde1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95enum.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_export.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95export.go
+FileChecksum: SHA1: 9866fb054fa6a6d1d6c76d945433b0fdf77e5ab5
+FileChecksum: SHA256: 1b4d0af8633ad25a085e2d4ed9b39262cd511a305f439d3dd478310acf5daf00
+FileChecksum: SHA512: ada4cef3af0ce98aaddd4696e324591b603731e6d6b6c79c943741b061b04915f8645b586aa0ad2f2b09c26c04bf3d802fbc21d31d23022768f1fdd011f9641c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95export.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95extension.go
+FileChecksum: SHA1: 29010b281ef662e461ba35e2675ace4896529bc1
+FileChecksum: SHA256: c42ce87090e3ee5612ee47e32339456276559071a8b543fa527cb47721dee086
+FileChecksum: SHA512: 726b156f108c4bfadd95af7539bc9a5c39a7746c0f3d92e21aaf80e720ef8ac11ce2130bccdff2918789903fa8e375ee401251a9cd3ec44a65ddc0103773bb1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95extension.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_file.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95file.go
+FileChecksum: SHA1: 8cbb08d9edf7e6d87daa27447fef57d1b9153b87
+FileChecksum: SHA256: 907e47c605566c44c46476adfc3ddd33aae23bb1c81b19091f0f96dcda0d0471
+FileChecksum: SHA512: d0a00b47576a4764f0c80876e0a58cd9f866e304b1126312317b0eb49c45007fffa197eeb64968072a1eb13cd6e4f504c4087e4a38afb6922f2c04250e67c317
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95file.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-decode.go
+FileChecksum: SHA1: 2ef2ddb4095e55c32e8ca4eae3c1026cf7c5945a
+FileChecksum: SHA256: 10a0c32c2a6c9f4d65c40ce31a7cfa7bcdc3db04e13cba5fa90e04d0933cb9b6
+FileChecksum: SHA512: 0fe276b61a3a38f55f6e2290d3ba1a34178fd625dfc84f503976c47b5fc7d46c13d0740ee403a11ee338984c687ee4962184c4403ccf0441c10bd6a1284d4ddf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-decode.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/merge_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-mergeC95gen.go
+FileChecksum: SHA1: 75df6d283138282f50f1e5add85939e7bdd1f0fd
+FileChecksum: SHA256: 8eddd46272d1cf5e7de3e55f1c92646ad0fc1e2be9d5929633aa5b0813b5780e
+FileChecksum: SHA512: e40adf817850956831e71c9ba84d4f45cecbeaa0f073b587c53a342b90bf8851de90c8a2a8658babff837ff123a96ea1096531494fdd5df319ace8727bd4af57
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-mergeC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-message.go
+FileChecksum: SHA1: 63bb6808f0f4e82067445e096eea9dafc6d9ecc1
+FileChecksum: SHA256: 2ce38722d4a101c595fd88a2c71e50dbee7784785c7c96ced4b7867315ac4983
+FileChecksum: SHA512: 4567fd768200a3362dc0be5bf42b7080f820ba0c84ad9b970b788c6b3476c6120b7e9c2349baa23703cd083e31f4d057f82253329c06b3fa5c65121c846189cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-message.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflect.go
+FileChecksum: SHA1: ee67918822bed16ae69901f02471737229795138
+FileChecksum: SHA256: 29f7c4c1463afe3e7da25e6b1770526f2cc450b66a17739d5cf25e949e37bebe
+FileChecksum: SHA512: 101046cf6a782e92c5e54328da26d5257b455f571abb9e62fc369c3a3860a0338820a869d318dd2c219451e3f6dc75dc0e63dba8fd445d06b21f4757e72667d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflect.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-extension.go
+FileChecksum: SHA1: 0b91389aadb44fbb46fd82f65f3d15af1b983613
+FileChecksum: SHA256: 3b0e023a19f78cb2f05ea6cf16a1a430be43652d9b562c733ff9700780f8ebe5
+FileChecksum: SHA512: 3a69693b1e21cfcb0195d1208325bc925d9915c0ecd3545e95b3396811032cd6fc9b8eecb4850b5d1e88547549df13d2119a2fb6e0f256006e40218135e42bfd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-extension.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95gen.go
+FileChecksum: SHA1: ecbd6b7120db2db739023f820cc02ba4f2e7959a
+FileChecksum: SHA256: bc5a44b88a0e99d73ab973562309ec6070ac1e8cf704eaf8819bbe10fa608d02
+FileChecksum: SHA512: 9339cd56cb5c7b1ceb50cd768c292fa5979756b11511a3fbc76331e27d5a6edb21a890f586ff0841ca1b5b2aed0d7c61ddff42fa683e9b32eaa57b3143756f2c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_message.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95message.go
+FileChecksum: SHA1: 2c96a5652053759e7d73231355f96790d8b6bb22
+FileChecksum: SHA256: 4d726b41b0d60e5f85876eacd2bb9ec219e2e417b007baa8e54de90041655dad
+FileChecksum: SHA512: a4eecaf192d06d6a1256ea1ad49ffe01339d681f911fd5bf262f08cca2c7bcc46b20cadbb1a0586f579ca542c7ebe5c8290e0f6e6f8446135f29539d4e89b7b2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95message.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/pointer_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95reflect.go
+FileChecksum: SHA1: 56d873b615f3c30a075ef61ecc0e826b75d51754
+FileChecksum: SHA256: 780c03c6b9327347ac4cf5497a3b0aa7a0e3d7d91fe54036fea4a34b58d5b41d
+FileChecksum: SHA512: ea41bf672907498b7a01c8d260e6307f4b14e5183098815a79eca830fc4a58875ead6157d3ff10ee24a5e4121c3b89b9912269a835c2fcfe8fc2acc004202f73
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95reflect.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95unsafe.go
+FileChecksum: SHA1: 605c4811b7db4e9b39432ffdfbee4ea2edaa6b9e
+FileChecksum: SHA256: 0e5ee86a2ea9f20902d587c4bb5d3e17669283cb4f945436d4a7064a7761bec6
+FileChecksum: SHA512: 05e3a5cf046e8330402faa2252c18bc43824b059c9ecf43dd90f3807a82f73a17535c9e196ad94c45f3748e1f02057bb5789dd81ca9193dc12a99f44ee6c252f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/validate.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-validate.go
+FileChecksum: SHA1: ee403ac6cfbf6e8b94d6327528ff8322efe1a1d6
+FileChecksum: SHA256: ebdfaab6cbb8346ba1c084c0c1a46c8628440acac40e91f3bbf3ee57be650def
+FileChecksum: SHA512: f2fbb31fbb3d62084e0b390626cf6336bd6c0ce2a8816cb5860d104c7cb30b04fb18872d909e5cb778593b2c4aa7e56bba176e8fb10aaebb31db41fe9aa158be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-validate.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/merge.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-merge.go
+FileChecksum: SHA1: 72b127edf43f4b36af78d16009c80bcc3e1a87e1
+FileChecksum: SHA256: d30337d862091897415bd9d65e0cc17b9340df2c730475d68313eeac4f8f2426
+FileChecksum: SHA512: 821c54e460f16c47687d807d1c3c1982a9c60adaecbcc215521807b09d20aa35d68afd1635a29a268db0cb6f986fef720667a8bddf587977f21c75af6062504a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-merge.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/weak.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-weak.go
+FileChecksum: SHA1: 212a8666ddb9d4e1b505fdf64023adf0b55763ae
+FileChecksum: SHA256: 26a805271f86ba6d2cdb90501965fc18a5e9297f69f927abebc2e1a85c65b12a
+FileChecksum: SHA512: 79939fc5b20298411f3eb377010e67d96175ce3ee416a265924255db22dc1f2fba33cbd6a3edb124ad8ea8adc622d3addf4fde6f8d15e301b81167d82f757fe8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-weak.go
+FileName: vendor/google.golang.org/protobuf/internal/mapsort/mapsort.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-mapsort-mapsort.go
+FileChecksum: SHA1: 075c3c1d06e5839dc40f541e59e3fdb995d3f4b2
+FileChecksum: SHA256: 99192d4436c189a7f2d37448300b50ee69c139343ad3d13b4792b2b213351b2e
+FileChecksum: SHA512: 5857f9e71dbffc369ff3499e432a57aa260bc27c70f4c0dbe7227beecb17a9b28f896ed095280bd4859f898fb2ed3b80fa6787df68e4c6c9ca3f1a7907199d4b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-mapsort-mapsort.go
+FileName: vendor/google.golang.org/protobuf/internal/set/ints.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-set-ints.go
+FileChecksum: SHA1: ad30f4e7126ac93707388032515989f196974621
+FileChecksum: SHA256: 5876c26b3c816d4f662b737731e89d3a44317c798c6c5400526c32387292e16d
+FileChecksum: SHA512: 69123d060f54c2e3df69cb3854317638d94e5e90a53391bbab9c203d519bad958c78ed52b1387ab839a1737ac3f2156b2ffeae751c35e297d67897acb05a601f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-set-ints.go
+FileName: vendor/google.golang.org/protobuf/internal/strs/strings.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-strings.go
+FileChecksum: SHA1: c29c49fa58955359a66736b65ea91bb1541eaccf
+FileChecksum: SHA256: 1101429ecd8fb7c5e6d7d75451973a8b74209f95332d5cf976d73602a4193085
+FileChecksum: SHA512: ed3c7b6eb92a8d5206097cc3caeb47d9f5882f7599f2e5e2373bddb053bb5da282775c0cbd659faeded96bd175eabdb2ae03c8156d900531255d44ea1a68954b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-strings.go
+FileName: vendor/google.golang.org/protobuf/internal/strs/strings_pure.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95pure.go
+FileChecksum: SHA1: 31e50ec38964540e34a89005be9ff7a8ddd40a81
+FileChecksum: SHA256: 8035cef39b9c9a3721fc275b2dd48c483b98c2440c511a4a6ffaca43bd9d09c0
+FileChecksum: SHA512: 937a1db39aa994f4dfd260375912cf82596f3c5f630f431ea3381d3d0194dc64e75997f4f2f616c5b7bcf531e0a35b38a5141f5efd4fe2ea39b9a9cfddd57909
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95pure.go
+FileName: vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95unsafe.go
+FileChecksum: SHA1: 06a5303b6982a8937a553fd4332da6d123a47ce9
+FileChecksum: SHA256: 4f4a1ad62c6473a2f1e2febd195355354f267eb2bc35eb981093453a63d4e362
+FileChecksum: SHA512: f99f6e00bf6172da240af697abe7428aeecc94d14dc418cb5d53941f2ebec7d46a11063327f5622ecabb491b3ec11ec6046002d2187a1fc9873d9e5ae39dc1f4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/internal/version/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-version-version.go
+FileChecksum: SHA1: ce7888ddab60e35741eea11b1112f9560cc224f6
+FileChecksum: SHA256: b145c89e1e2dc628d95ab1273c018274a417a95664566df93f64d012fad89cc9
+FileChecksum: SHA512: 7e3684958469e134fe141e9e80440ae10611700ef1c233f58913e6e5f39a3768518ab4f9dccb0ad91b4e0ba4d4e7cae9e83fb2d32ffa5a98a814e41ca6c46203
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-version-version.go
+FileName: vendor/google.golang.org/protobuf/proto/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decode.go
+FileChecksum: SHA1: d9f1d0f16b5d8aa8cb0a824c9d19e256dc365c58
+FileChecksum: SHA256: 144ef539a0ec9d0f5bed130574466cb61b14362021c8544fe7dbd3d9d5b7e1eb
+FileChecksum: SHA512: dce6fd204e0aac37058e8eca7b44044239a3c0569b79888994f9f394e8d5ed19b26ba3fe3463324afc7de005e5a86f7c33211686d1990273e77431a590ed0a1b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decode.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95field.go
+FileChecksum: SHA1: 188db9bd9299dc9f57c32c9c3c2e8b0210f14e88
+FileChecksum: SHA256: d26280244346aa029990e319891b48d8fc6d29e620924afdd981b918e7385122
+FileChecksum: SHA512: 90a8465feb14aa253276e617df37e975781d3aaaed9c71879c6624499d4e3972068405e74038378f42a43233624abd07d65057b115483749f2bac686cb5b7aaf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95field.go
+FileName: vendor/google.golang.org/protobuf/proto/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-doc.go
+FileChecksum: SHA1: 9482cba8da6e6ed2661b52d96050805c747a7b85
+FileChecksum: SHA256: 0716184bdb416018aca164c2b03e188dcd3f70d5a6c0cc0b8130b0d07ed029bb
+FileChecksum: SHA512: e4be5f0868131545bf4b9ef1ff488c21ad8d6defb58a72837b244a17677b9a0193a116341972ae656bde7594df787d07413efe16c65046cfd43be5c378cbba18
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-doc.go
+FileName: vendor/google.golang.org/protobuf/proto/decode_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decodeC95gen.go
+FileChecksum: SHA1: 07a2190521d3e60c1f27936551bde8ec218b6f67
+FileChecksum: SHA256: 6c57ab97a6e3f33c7e46589933c4d8e2a152b0f9784aa3a2cf52a19181ea2153
+FileChecksum: SHA512: ea5586404d205644660bc20bef8fa979dde83e6eb8a1aafbb2d29cd3650fb19a82d55a1e8a59bdc701fad440bef5bc32cf7b690b39317f04260276c1997de546
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decodeC95gen.go
+FileName: vendor/google.golang.org/protobuf/proto/encode_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encodeC95gen.go
+FileChecksum: SHA1: d87c35ae8387bf9306d2f8b88d16ab8b168c449d
+FileChecksum: SHA256: 8a5d8bc917c21a19c1c5ef4b58f747880cfe1321de1294662d0ee2c903c7dc9e
+FileChecksum: SHA512: a9375b42be331ee254efb5282cac3c824cdb6a2efd89d5f4bb39b0bf892a6f80c7712822153959abfe7a982e6e75c02a79814ce525d599a81ea8b4a5db8ce56d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encodeC95gen.go
+FileName: vendor/google.golang.org/protobuf/proto/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encode.go
+FileChecksum: SHA1: dc5c923620a91ae52a22238e7ea76ad11715cc4e
+FileChecksum: SHA256: 149e16b14c8f6c34fe2ebd1cc631d983f144e81287fca79c68c6314d7f4bba2c
+FileChecksum: SHA512: cbaeb783855cdc468680efcd7126ef1d65a421ba1de5f362becfdeacc8145a87ee5752b86adf847c147cc6d4749624dfa11891482aad71689e3ca442163bb226
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encode.go
+FileName: vendor/google.golang.org/protobuf/proto/checkinit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-checkinit.go
+FileChecksum: SHA1: cea6dfa3d616416eb8ef17253a262928559b64f4
+FileChecksum: SHA256: f95547595ee464a0d2f2bfae729afb61c91c5ed3bc64f089949b4b1555a71b9b
+FileChecksum: SHA512: 25f8c11583c24858a4a88aae676ace93060f7fff37153f8f157e0f211f58659f336dce65f6d4b5b67e5e63b21039462db519913009fbe79b1121d9a64e3092a3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-checkinit.go
+FileName: vendor/google.golang.org/protobuf/proto/extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-extension.go
+FileChecksum: SHA1: b95c5edf3bdb45dfd88a4ae5d096c1ee28b4ab83
+FileChecksum: SHA256: 54aa0b5cff2b460eaa7ad03a9c1c19fa8abf92052e2927b6895b0fcd8de60e15
+FileChecksum: SHA512: ae9e6b8ba757e0b67ffc248d2044878bb5e1058480dd9aeeddb9d7ff75fdc7d4257694362167b6d9dc6fb5b76cad351d044bf513a4f6c307d674166df2e14912
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-extension.go
+FileName: vendor/google.golang.org/protobuf/internal/pragma/pragma.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-pragma-pragma.go
+FileChecksum: SHA1: 5ba291cd9426ff392f5de5562286feec4e27ed0b
+FileChecksum: SHA256: d3babf1e4b0b32f721a0dd3e6c3e31fc573d550fd9a1d51e543f40482b0fc6f5
+FileChecksum: SHA512: 20ec67356fb0a20c3cb332fd0f0b609329bbbb4d2c1ba9caf1af081e7a7aaf366318de41228074a476cca023088042dea973db8e7c18e5935cbfc943a1964ad9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-pragma-pragma.go
+FileName: vendor/google.golang.org/protobuf/proto/equal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-equal.go
+FileChecksum: SHA1: 416ed353e36a06b93a2853dd6d768199d2c358b7
+FileChecksum: SHA256: 87d5e91624fc63cc1fed9ba8520bf9520434abe5a99508967e98b79243f94b62
+FileChecksum: SHA512: 747f577464f6c172d76aa375fa2e3a4ba436b7f9451f03b07986021cce30986a556231268c30b2e04482dead461d93fb9bd7377d5d826c15eee78b5dfac6eb60
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-equal.go
+FileName: vendor/google.golang.org/protobuf/proto/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-proto.go
+FileChecksum: SHA1: 893c7245c083dc97fe2229c139bd40a82d9a840d
+FileChecksum: SHA256: 230d666f013efd1c1ebc4f174a2bf25eefc8503c4ecbe9841428115535b054c1
+FileChecksum: SHA512: 7e42da18a7e6e0611f9a6111fb24ba8207ca39b3018f9578386c50d3fff538b0352f709d96aae0d280ee74ae2d04dbc81d9edf65f73e0ac8a38e5ec0bac00a22
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-proto.go
+FileName: vendor/google.golang.org/protobuf/proto/proto_methods.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95methods.go
+FileChecksum: SHA1: fa1d99dc9eca391375ebecac9344ca67b45e2186
+FileChecksum: SHA256: 403b59ebc34a0604c7d749afcd073337ab76cd0d17a1942df5e912e02084739e
+FileChecksum: SHA512: 1ca8e34899900f70fb08b94f99dcb4897d004a951cfe3ef3981420f1d67b30f198ba978a5472868f1e190b8ee30a8e9fab75dd6749c6052a88d3d2f6c9134542
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95methods.go
+FileName: vendor/google.golang.org/protobuf/proto/messageset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-messageset.go
+FileChecksum: SHA1: da4113e7f44d1895bbce2ede67dfc3c166e45730
+FileChecksum: SHA256: 97634bd5df21b92fc28b4bb234c4fc946de62760d0eccbebf111b3cdd9d68b07
+FileChecksum: SHA512: a518e01178bee2c13ec948427a20d235c3f829847046cfee54743c9023056c3e0206dfb2d2209a76a9269b7d98c6a1b628b90193a8862ca341ef2821ac87e3ad
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-messageset.go
+FileName: vendor/google.golang.org/protobuf/proto/merge.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-merge.go
+FileChecksum: SHA1: 0ce7f57710448bb4ffacbd292e20877128cdfea9
+FileChecksum: SHA256: e61f30b779711ef188c14da74baae4da23447c99b75b33e24aefe2f2fe0e772b
+FileChecksum: SHA512: a7786cb43a176b2e28532ddbccd52d5f9d7abc2b943329c8a42153cb5bf3118ceb83d19570561e859078331dfdc83e286543b7cc4b3fa081e4b6d8a7451248e4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-merge.go
+FileName: vendor/google.golang.org/protobuf/proto/size.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-size.go
+FileChecksum: SHA1: d1387fb5b0dfa051f2ba04b1cae993c0159af374
+FileChecksum: SHA256: ad7a512e3f9a9eb61e2500461935410cfffe8782976d76d124e2f593e7f55bd6
+FileChecksum: SHA512: 458562ae87f1877e820dd4681270b12d0d89054013633d289dbb59f4ba2f3acbeac37f4f0fba6a49f393758e3d97fb1d4896efb55b62f9a0dfd3cc917c1820b3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-size.go
+FileName: vendor/google.golang.org/protobuf/proto/proto_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95reflect.go
+FileChecksum: SHA1: 4902dc472aac21b257eaa029138212197be89ddd
+FileChecksum: SHA256: 9601a278763c963509a7bab893a298263c1389aa9632b943dcabc876c583ad09
+FileChecksum: SHA512: 7b219b47f592de2466bd3dc3e721dbc5b82dd73dd2cd9881db279ce0083da6b61a8dcf086e18c6d008e61e1d15009ce99f7c3c710fbae5b835fb5d565006df2d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95reflect.go
+FileName: vendor/google.golang.org/protobuf/proto/reset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-reset.go
+FileChecksum: SHA1: 826e3b1dabd222d91fe768b630fdab05fd06f132
+FileChecksum: SHA256: 45097aa639f3c64a5533572cb1968d3870c985b3e0b021ce5c0c3b4934768604
+FileChecksum: SHA512: 216bd4cf04bf3b5fdeef20202b6378468aa35f74dc641edc54b4473b9b647ed09bdf21392bd02a03182a94658f56f0669ac3cb39047cb1286e0ae3cd0be475a9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-reset.go
+FileName: vendor/google.golang.org/protobuf/proto/size_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-sizeC95gen.go
+FileChecksum: SHA1: b89348b5c3f8ea25cef26a3eeaecdaa9a2c87949
+FileChecksum: SHA256: e8def0182318c353c022c973eec36615c121078ac405b059c7f02fad71c86b8d
+FileChecksum: SHA512: 5322df15bee00808b8dbfa9e6d172c24d8e11113a208e85ed5dc7a6e14a21703d89b78afbaded5ea1962825e0ecb3978a067293305d5d014f74ac130e081fcda
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-sizeC95gen.go
+FileName: vendor/google.golang.org/protobuf/proto/wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-wrappers.go
+FileChecksum: SHA1: 97e52a945bc5f096aaa0454f1471191e33d84221
+FileChecksum: SHA256: 7068ed0c35932f990aa75bf00d30f6a2d2a3c2c89ebd14ac07aec523013fafb4
+FileChecksum: SHA512: d3e7901422aaf18f94ced3784f97c77cb66643bbb57ec8a2f4bf3a5686cc745cf19b717dd8e55d0fba368463cb319f4c440dd5cae1bfded6dca2153384dd4206
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-wrappers.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/source.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-source.go
+FileChecksum: SHA1: cd29f3aff286f67a80f9751e5ba404fe2e5297cf
+FileChecksum: SHA256: 2fa59e93c1d892b567212f8bb412d170c194ed75af21371ad9179d9cc9976feb
+FileChecksum: SHA512: 7bde59e72d93d1361c9bb558eb50ca90421fdd4409d2cfb7c01a0a33957f58b067936e36eaa8dabdb02d7c91aa8d2fae14c2507f8c79539aa81763f0a140da26
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-source.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/type.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-type.go
+FileChecksum: SHA1: 0ad55d5b6876a79cd31954654bc6c617a1bfd054
+FileChecksum: SHA256: 970bdcc58e3abb2d51a74973f7284d346540d2adbead499342b6bb983e858d04
+FileChecksum: SHA512: fa3c43ae8faa7769a3612669f5fd35f6cf954f9c5cbf888279abf7673f8c080dedc867cdc10726693fe2ec14dd473fb5dd7fc221f4b996d780e858fa772795ae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-type.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-value.go
+FileChecksum: SHA1: 54d7fae57e0325ebd3a2f79a7d8fdd362f25dcbb
+FileChecksum: SHA256: d2ab197e32f28cae1ecaf4ca63b54e28b374cdb9ae7468e2c1864837934ac14d
+FileChecksum: SHA512: 15dd8bf28cc19bfa4880f2e79e0b1b3c2d883cf6edbfea2500bdc729585e4d6301d793ae672c694ff2a219ca98fb90116be41e8c162177cf76a22681f4e79dba
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-value.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value_pure.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95pure.go
+FileChecksum: SHA1: f1b3edd391cac8ead6d4174933625d5d912b1bb0
+FileChecksum: SHA256: de6c6ff68af94520900db7f63dc0b60f84dcc0b6522adf29f1b0b7148bd51347
+FileChecksum: SHA512: 2cb2d2aef27da0f4136a9cae250ba6d7da9f37502d18d85920052dc8dfd5f73b8a1d5995b1002f78d0ab3286953b166d5a301209c17010ee166cb04237e2e3f8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95pure.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-proto.go
+FileChecksum: SHA1: 29e6f657c3d8bdc066261889a5fe9ae1a5b98937
+FileChecksum: SHA256: 61759143558734b5ee8e2b0332a2c84c0d92ceb1f2722e125e8a4b99d607b4ed
+FileChecksum: SHA512: 7313f2056b221d16ba734dfb5e82f67c6f1cdc68facce12a94956fa3fee11361b7bcf3ea3fc590374483953550bae419be702854f5c178df799bcb60eef69cad
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-proto.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoregistry-registry.go
+FileChecksum: SHA1: 6e1e7733787ec946963a8c1752d047755c7fa4b2
+FileChecksum: SHA256: 6bf92e3eeaa276ed0acc6a194bba21d8f965cf771393d7c224d2baa5b35d2983
+FileChecksum: SHA512: 383b112d990b8391a9817339ca36a129c44f1e2f87a8398fca8e8cd3c1dd1e63bb8ce59ea56156b972aec0649f46e31fd89a2409652aacc95e8aae234aa3e68b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoregistry-registry.go
+FileName: vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-legacy.go
+FileChecksum: SHA1: 8fa48080d16dad3e6ded79a41906f6135b5ee76f
+FileChecksum: SHA256: 9d79e425272f9fa102c269f4cb7f8cbe405d0f2a9af075e150235df30b3bd617
+FileChecksum: SHA512: e3ae8d75b10853cd7c72064c3c1d37b70f66871574b0610c0469a48eb207dd2c21f0d464324e8c924250cdb05af57afdbea5acb683e95285651e8b2d03b08cd5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-legacy.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95union.go
+FileChecksum: SHA1: 24079e0834f83114edea45ce906814cfd98f47cc
+FileChecksum: SHA256: e90cca45918b151ac9dd54862aacff55c37401b6590d8deb3b0ce9028e26b57d
+FileChecksum: SHA512: e90817684489e9002173b4ff94e80336d622b90248abcda0fad5a969511621f7c983d79e2472c4f6f0c6bc9669dab5b3508fcb4e41b080e2c33cff430b1ccd96
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95union.go
+FileName: vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-impl.go
+FileChecksum: SHA1: dbcc4b5a06fb53c466858ab7104fe429b2ab95e5
+FileChecksum: SHA256: 5b70e0a626c02c8b783df9b03ddb813cbda5ee46e20de1f24019941366270d68
+FileChecksum: SHA512: 4a99868e15f170efb7a17aa90781f1b48cf839f977c451b17627cccea373d628200d0c120b529a4537f39167066141af09d15a659c7ed92287c269fc96434a68
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-impl.go
+FileName: vendor/google.golang.org/protobuf/runtime/protoimpl/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-version.go
+FileChecksum: SHA1: c6b746d28024a8b67b654d4244060fccb5b0ef64
+FileChecksum: SHA256: 6ac8af48d058eb904fdfd5e255f619aebd35c9d4a279c8d5dc3bdebaaba9e4c4
+FileChecksum: SHA512: 2f6ef690218c2cb13543b34fb241f18b2e5ebc436b87e1295b21290802939b610e7bfc95676a95b170faf0cf917382b7fbbe999aa4edd560bdd368a016e00b4e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-version.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-methods.go
+FileChecksum: SHA1: 80ab680937fcb418f6b1e4ec42763d10c8e5ead0
+FileChecksum: SHA256: eb6b6f74acb6b712f6107d24583b743b188d5b244b55a229f6293063165353f5
+FileChecksum: SHA512: 0d2a8bf00fa5e7adc80b5b94671abe95f92ee27c2b2d98d7398ff5f1f75c1f778f4a54692d082737d92004c3d2d5ca66e287c6c66f65f009b777c8eed640ae51
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-methods.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95unsafe.go
+FileChecksum: SHA1: e2b010e0ba7754aade8244b42dba2c06589ad8ff
+FileChecksum: SHA256: 2d9860294bf3358dba75335dcbe79f3da35e41ba9e7218fddf61283ccf98dc2c
+FileChecksum: SHA512: b93665520fea0af2b759862704f8ff7067f781d6cd4354c0ec0871e3a1141c31f9c59fe01a5d9a825742c2045a4e2bd012a8f2eea30450e5a15d9ac90af1aea8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/types/known/durationpb/duration.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-durationpb-duration.pb.go
+FileChecksum: SHA1: dff77855ce08874ddce02ebab663f4218fedac96
+FileChecksum: SHA256: c967ad2abda5c54e96212c9e9d4a3532ab41cb5c999f642210d6694d8fa4e525
+FileChecksum: SHA512: 9624285eebc5cdf93845b73288c5ff7ca7d32632fa17d1eb3c50ca4969a6ce87aa2c33fcd1a9f6027f018a2ffa5aecbeaf6d99a27a825b774fde992c60ab6585
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-durationpb-duration.pb.go
+FileName: vendor/google.golang.org/protobuf/types/known/timestamppb/timestamp.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-timestamppb-timestamp.pb.go
+FileChecksum: SHA1: 815d9ef3aad14bcf1c8dc28a10b6b89c1da84899
+FileChecksum: SHA256: a59c0ba465252c50aecbbe3e93073f81e42ab7e857701e28f10e3f389e501668
+FileChecksum: SHA512: b76887faa438c7c7e442af258c62ff2f7f486e7ff097e93759670aa8eb401f1196b266a3dce6e7fdd6aba0fd1551bb6414134e23f91fd00b086d3170ce36d16b
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-timestamppb-timestamp.pb.go
+FileName: vendor/gopkg.in/square/go-jose.v2/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitignore
+FileChecksum: SHA1: 1b7a5b2180edf87945d3aa1a714ffb1c01debf61
+FileChecksum: SHA256: 47acde1b5e6615f91624cd3ad60598f70a848bcbc3297c258d5734cd002f7eea
+FileChecksum: SHA512: 0d2023428b2d359034d172b20355152fc75c01d0a4d58249fe53189fec2218bec901d639ddfb4d277db78dd33affa97639839e2c82952674f066748dd4806133
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitignore
+FileName: vendor/google.golang.org/protobuf/runtime/protoiface/methods.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-methods.go
+FileChecksum: SHA1: f7b1aba0cba5e8ee84f1e3a7c765a007da013914
+FileChecksum: SHA256: a6fc53cd7f7cf789c5dbb2699348feedaf8e6464db64a2cbab79b1dd2d6a4774
+FileChecksum: SHA512: 1124b2f38db825f305204f1e399a649a7a6fb2a09f3d0b0a711f96aea8db4be9993e03523cde411d13a8c07e9eeebb9b84c97d08f5735c4b4557e1e8a648be8d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-methods.go
+FileName: vendor/gopkg.in/square/go-jose.v2/BUG-BOUNTY.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-BUG-BOUNTY.md
+FileChecksum: SHA1: 01997e41f3c6e24fdfe24d14ee6da4ad4e726dd2
+FileChecksum: SHA256: dc2ccd625b02e966ba7d664fb57d1b84d6569a8ce11aea29d5d7d85cfa683e5f
+FileChecksum: SHA512: 4c4a2fb8beb1fb9c680ed4dc3238436a99ed9483a886ea6ba176b7a5dd1c5bb3fe81a87177ff2cf3dc7ce1cc869f81dcd215fc41a80f7a5e23e63e306dc84460
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-BUG-BOUNTY.md
+FileName: vendor/google.golang.org/protobuf/types/known/anypb/any.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-anypb-any.pb.go
+FileChecksum: SHA1: dd280a6db7de284232dd1fabe70bcd88ffb38171
+FileChecksum: SHA256: 007e3a5bcb989faaea82b86d16ecd4558135458cfd89a77b1ba31774f7f8b696
+FileChecksum: SHA512: de01e8cdafd67b9a39143a7d5acab0f71df9946b4fd0769c74fe60e34de295f07300cea564c419baa78474447d6ff2819305b647e7a91ae1821942b431f1be0a
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-anypb-any.pb.go
+FileName: vendor/gopkg.in/square/go-jose.v2/.gitcookies.sh.enc
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitcookies.sh.enc
+FileChecksum: SHA1: 370b9d518c92c29d3a726c286fec0819d98e7916
+FileChecksum: SHA256: a8fadc1819593e453f81a2176db9b3fc25c43ef0da034527aae95f3330ffa0a9
+FileChecksum: SHA512: 594ab6122d0c05a5869312ab2ca59469f9fc9f2f47b421e895818db5c4819c196316b9cbab694d0b49abc44333bb8e99b7255438dc43792db1cca635c903ab5d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitcookies.sh.enc
+FileName: vendor/gopkg.in/square/go-jose.v2/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-README.md
+FileChecksum: SHA1: a17dd4858e5998890ea4bb0a8fd9789cddae23d5
+FileChecksum: SHA256: d5d4c8331e8ea6dd0f4e0eb94a13fd35572de1e38920ba38530bdd99c5a0d250
+FileChecksum: SHA512: ee293e9481c147dfa1c076f9f29605e4eb34b3378c18a54bc5962971488cc158ffc583d8e894119914eb28e207d5b599c5e9ccde58d9145f22f3175f55a8fd38
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-README.md
+FileName: vendor/gopkg.in/square/go-jose.v2/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.travis.yml
+FileChecksum: SHA1: 9ee06615546963bbc9b4d04b772b36ed00492520
+FileChecksum: SHA256: 93524449d1834c23da20f0024d71c78468ea389f1bcac8461a505ee25eb947fb
+FileChecksum: SHA512: 6ecfb0bd9e66f5cf9690593e5b226c55fc5d591b76634238e0cf9f3a54aefef68cc4fc04b819853e6c57817f5e1310942a38a94db43538b8fc82a12abbe7bab0
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.travis.yml
+FileName: vendor/gopkg.in/square/go-jose.v2/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-CONTRIBUTING.md
+FileChecksum: SHA1: 14ead06ceb60bb0d96ffbb6e8483545f4bec4b17
+FileChecksum: SHA256: 030393eb005c29885b19fb97be10faec14638391683dc9c8d1afbe41edc91ce0
+FileChecksum: SHA512: 92c12e5ce9e047f103ca17e44efc3dc0269aa422fe210501811edc3cb7c5e8cb903c599152029bfa39854992cf9b424ae03dac9c84e484a7a40b1346dad5510c
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-CONTRIBUTING.md
+FileName: vendor/gopkg.in/square/go-jose.v2/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-LICENSE
+FileChecksum: SHA1: 2b8b815229aa8a61e483fb4ba0588b8b6c491890
+FileChecksum: SHA256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30
+FileChecksum: SHA512: 98f6b79b778f7b0a15415bd750c3a8a097d650511cb4ec8115188e115c47053fe700f578895c097051c9bc3dfb6197c2b13a15de203273e1a3218884f86e90e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-LICENSE
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/cbc_hmac.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-cbcC95hmac.go
+FileChecksum: SHA1: abc6b7ae2994bb42e708efd9f4ec9f611f2c0a51
+FileChecksum: SHA256: f25841a12013152249a0446621b3300636d62e18b3b06ac3fd0ea9ca6c322bea
+FileChecksum: SHA512: 4dddd226f7238e4ae39f6ee64cc282b2ae9209d2cc10233bea63f3dd5a7a71f126871c8c895cccfc505908ce5e97a097b28d6bd87a97b2fab4382a2bd99e6a3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-cbcC95hmac.go
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/ecdh_es.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-ecdhC95es.go
+FileChecksum: SHA1: 4f7b0d774e944beca8e9b96e9780d182a72b58e1
+FileChecksum: SHA256: 14f403591026951c84d3e11a2a328c2785d393e0372a4bbf59a4ffff383582b5
+FileChecksum: SHA512: 610164a24ada379c9b2c10c7f439486191f4e76da68bb96f772ed50da1ae277be2ac70729f416bab0ca94e553ae63426812bbd3dc4efc264b87e8ba3bf3c9c25
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-ecdhC95es.go
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/key_wrap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-keyC95wrap.go
+FileChecksum: SHA1: f957aef82759a9e9057020e4a6b555484a8cc2f1
+FileChecksum: SHA256: 53aa8437cf834453ada71481af17f2e3a7cd4ff6af376c34dcc8995887dd7e17
+FileChecksum: SHA512: 4813702e2821310f43efeb3a988d7ea7d639268e0cb119bb083661f373e35d2ace197fefeecb5db4b48a2cf8d3a983af32842f03f2b1eb6e0e8b8b04c2040724
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-keyC95wrap.go
+FileName: vendor/gopkg.in/square/go-jose.v2/asymmetric.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-asymmetric.go
+FileChecksum: SHA1: 213e47278ec13f7f2723f6e85a4a8593019a31fa
+FileChecksum: SHA256: c657e055c2ad7ab0b8a33801d2bcc66b094d6c2e6c96a42041540477eccc5de7
+FileChecksum: SHA512: 8f9b58e78150e87bd66600fa7cf5ea4f92d7bb3c4745a7036cdf74b253a09291bc10bc25304a330e427a0b4794d65a15943567c75f177a00653137bd14576ae4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-asymmetric.go
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/concat_kdf.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-concatC95kdf.go
+FileChecksum: SHA1: ed19b64073c6e38e5e2a9a687657cad576d5fb1d
+FileChecksum: SHA256: 84608a8c5a5f7fde7ec993a5c3fcecc5a0c7e1781b11c651c9aecd83c424b20a
+FileChecksum: SHA512: ebdeac637f45dc64dbbdacfb6d31fbd7517a328711a352414462c728896677283ca2b16d693a4d68c6491e5683eaa03d817181c7758544ed35b31acde1732f5a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-concatC95kdf.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-LICENSE
+FileChecksum: SHA1: 7f7a12bcfc16fab2522aa1a562fd3d2aee429d3b
+FileChecksum: SHA256: dd26a7abddd02e2d0aba97805b31f248ef7835d9e10da289b22e3b8ab78b324d
+FileChecksum: SHA512: df64739ed62fc2c441d15387a595211c0090e5694c17f93b7e289d78c2e6e123edd0373ea04f8f4d4ae21a079dc7c71c82f448d7c9e734e88c54607507e13de8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-LICENSE
+FileName: vendor/gopkg.in/square/go-jose.v2/crypter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-crypter.go
+FileChecksum: SHA1: c938606a1741b6149dcf7d334353eeed33f1b7c0
+FileChecksum: SHA256: 0651665683d6677c7c2e98f99bccf04cdfce3b68a5fea8d7f1def8954c35aa80
+FileChecksum: SHA512: eb1ca1bd2d80a6e1e6f67ab1bf63bd1850b007165d29a5e084497b9b9894687db315aa5e81a1ff483c6b4c063d178c92c27ee6468d8c416074dcecc137c3412c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-crypter.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-README.md
+FileChecksum: SHA1: 8c81372fd464832eb90491ae1ac86890c574b3e1
+FileChecksum: SHA256: e5c0051f54aec2c7bacdcd3b216bc3f9c8d1a3f9c4583370e74ea9137b0849b8
+FileChecksum: SHA512: 69418d186b2d64f69c9865f31a4688194fdd54be49ddd4f92ff70089f1d4467a7bf48241c4b78640f661103b13a8671ab72e92656de30463837aa0b7f7b06a07
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-README.md
+FileName: vendor/gopkg.in/square/go-jose.v2/json/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-decode.go
+FileChecksum: SHA1: 964d222562d07c0a37da46b170d677c4b42b8b0f
+FileChecksum: SHA256: a9c1be43e2acc94eb0c60c3afb7e1e050436fc3207d6556ff2361c138c783549
+FileChecksum: SHA512: c257f02927ed9a601b2cf87bc7b07a307f3db0afd88aaac03f9a41d24a06d1e615d8102b14948770bacd7e6c3fc77f21bcb104b40e583a38309ee8e80c5ec935
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-decode.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/indent.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-indent.go
+FileChecksum: SHA1: ab41112d0dbca2a0d49ea8e823edf69103484668
+FileChecksum: SHA256: fe95485e51867d61a5b6096bb8288fc6af2ee057f700688354b04dc71d44f5de
+FileChecksum: SHA512: 7585084fa738454d92ab8f6e3af525642ec66435800bc3e30721c0c5ec885e4a83b60ca1a042599bc670b5c79ef26e44169c95c8a2022f6d2d5ce005d20dc65d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-indent.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-encode.go
+FileChecksum: SHA1: 0a2acac0de5cf17ff708871570b271a7f98dac4b
+FileChecksum: SHA256: 46c1bf443e005b4b1bb55279c9d07dd0e12bd2189d8f3d0bf5ba28a9539db50c
+FileChecksum: SHA512: 4887c630d24c04760db4458aa0cc70929655adcc72170d801d62710abb8ecb0e950c1f5cffff423761752730036cb053faa672526739921370bb58c6332f75f4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-encode.go
+FileName: vendor/gopkg.in/square/go-jose.v2/encoding.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-encoding.go
+FileChecksum: SHA1: 2da1e4c28d168cf07e3513c06bfcb6ba1664c579
+FileChecksum: SHA256: b3cf59b27ccf20d76d572d301ff63714f0864e740614558715715bafc2a56f53
+FileChecksum: SHA512: 8c9bef1f8527378897ae1d7eb210985981a1737dbda91f314b8d02af83b486ada2b298094cdeb9d320204b759633a3d54e310bb2144ae510c194c8b7599aae20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-encoding.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/stream.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-stream.go
+FileChecksum: SHA1: 0cbe8df28d725aee271bc6b85811f52197872aeb
+FileChecksum: SHA256: 99bd38c9547c4044c27351e4810e65f005e73d87e03224d524b484c637bd779e
+FileChecksum: SHA512: 18b6b4151ab2586bbb917f6fbecef0ab7984a399f963412e24122c6e0d9e94790e58e2a01671df16a4ac126ea1b35bb5851d6140a2ce30454151d42c2fef04d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-stream.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/tags.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-tags.go
+FileChecksum: SHA1: c8266bd6f628dc384c4cd0df60585ff562009dc9
+FileChecksum: SHA256: 2fa51c15e906895f21a9055bab4571573a68091b795335a814f0d4ba87403658
+FileChecksum: SHA512: 3afa78c044a397c387302d3074052d57e6791a887487f5eae5de28920c2df4d80ded366f92f8df046671a95304778f7ce56538713391893f0d8cb7b35be16259
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-tags.go
+FileName: vendor/gopkg.in/square/go-jose.v2/jwk.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwk.go
+FileChecksum: SHA1: ef63af14e3dfffb190af877b7574575614f7582d
+FileChecksum: SHA256: 115e2d98cd60cc698442227a6b5c8db2fb67927b3e3da37a447a242f1a83a5a8
+FileChecksum: SHA512: 8321164c7080bc38d812f3bb2bae70f032d0978c468e32e5efab60795b969e15dfa7ed9ea6a3c3bde8a9ed02e4cf931495ee5914f14a2a80c45d518c12f73e84
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwk.go
+FileName: vendor/gopkg.in/square/go-jose.v2/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-doc.go
+FileChecksum: SHA1: 8e7de39b824ccdc164a8b7c871f4a8ac2ed954ae
+FileChecksum: SHA256: b4a5a6daa59a326abb2096b816dd0a096971a3c6fa83e8272a5407293b3878b8
+FileChecksum: SHA512: cf336e14865613e933011ab29afaa71b5840778df7f1a1d83d8402696b0f95d8c2d053123fa0d47646ffc1a7c19f8e8dec63e02f432ea87de18e99309665a553
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-doc.go
+FileName: vendor/gopkg.in/square/go-jose.v2/opaque.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-opaque.go
+FileChecksum: SHA1: b1584a9f081eb74b000f86ebea05128b601344a8
+FileChecksum: SHA256: 8cfbae928eae043b2a1649042bf658740dd4563c913dad4561e9027d76312577
+FileChecksum: SHA512: 6c538b16f22418e83e3cb05368865b14e97f9086370e1ca404ac9602185771fb86f4922370739222a0c00329710b4bbb6b50887058ec5a3a297c54d2aa71f3cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-opaque.go
+FileName: vendor/gopkg.in/square/go-jose.v2/shared.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-shared.go
+FileChecksum: SHA1: ef2e9b8ce7239192a07b07e05b01cd8d82be8996
+FileChecksum: SHA256: 77f6ed85a89744338fa6ac25dded129e3b1cc0dc0b8496464dadda8b0de0c553
+FileChecksum: SHA512: 252f801fc6562db53412c7463706ad810413ed1d8440db8e640118e89e8b8917ae114c1763a9a9c9d723e8b7043f0262074bd0ebf2dfa38a6838ba18317371b0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-shared.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/scanner.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-scanner.go
+FileChecksum: SHA1: 75e362ae5514a1c3058bc4834f3215037432063e
+FileChecksum: SHA256: 0a3842b88d6007dee4259f87a64607ea348e651c0ba66f0f28e273fd424f2866
+FileChecksum: SHA512: f340523646fb5c4fed22d0a0761635e21b4fa9e1207e7e341783139704b6e319497d0c3a472c1120f99ea808a288ce895a0b34d6e0ff8af4d60e17607bc0bb47
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-scanner.go
+FileName: vendor/gopkg.in/square/go-jose.v2/jwe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwe.go
+FileChecksum: SHA1: 40c0ddc099d5fb5a7b40cc42f1c4147ad55b96d1
+FileChecksum: SHA256: ad229a6732b205ab9067e01486f4b7ca3801dd6ae799604bd090a5f204b96c7e
+FileChecksum: SHA512: 7fb893b8e375b467d8824234bea5a66d9f9df1004d8f7fdfa926c1604b5e79d959e397772c87bd6caf1f19f8b0c9d402ce641ab33ecbf29cb9524a51663a10bd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwe.go
+FileName: vendor/gopkg.in/square/go-jose.v2/symmetric.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-symmetric.go
+FileChecksum: SHA1: f3f1615af95d02ba27796cbb70752bac020a0a86
+FileChecksum: SHA256: 45951bba93b71bbad3ff6a148b5950d6fb763bc3718e8cecb100bdd893b2efef
+FileChecksum: SHA512: 07d3c16e828a8468882d24b82110947da05984a401310a13dc4deebc132590ee1724a41df2d9a6d875471c390b53a0f11e35a1f504c8c54d8e62aafdbcd05bed
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-symmetric.go
+FileName: vendor/gopkg.in/yaml.v2/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-.travis.yml
+FileChecksum: SHA1: ab8a36f36f7620ad8daf1ee0eeee6a3e6b844925
+FileChecksum: SHA256: 4498df3841540440e4e2628bcfe10f0393b2f027ebf356e60e6c59ec76007278
+FileChecksum: SHA512: 2f970fad1bd3292bd2282630e762d15b0c6a5f28b36162895ac97acad63059d9d50f7320138bec8f93c8ac6c0ad083378d41e7c9a4f8d836fffda946b2959b80
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-.travis.yml
+FileName: vendor/gopkg.in/square/go-jose.v2/signing.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-signing.go
+FileChecksum: SHA1: b17ac4ed332766aed73be1e618493a4a28618716
+FileChecksum: SHA256: 47b67edeb89790b7f5a77e50d0bc2f0c7688ab928012340c5b0d4495c375bb69
+FileChecksum: SHA512: 1e3b68c2e1adae489e50eb22b611b18d0cc3fc34a36063b9e265b45bce0a6c0fe4c0f37a5b35bfc753b4fcb2c60a4ec734bca3834dfe5c9f6a636ce4cb8c3f27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-signing.go
+FileName: vendor/gopkg.in/yaml.v2/LICENSE.libyaml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE.libyaml
+FileChecksum: SHA1: ad00ce7340d89dc13ccc59920ef75cb55af5b164
+FileChecksum: SHA256: a94710b55e03b5285f77d048c5ba61bb9d6ee04a06c0eb90e68821e11b0c707a
+FileChecksum: SHA512: 23bad0c02554da78129321f3866b30b0cf40dab958be2c0381387cf18c10664bf51daccd9025babba3aa8371c5c40ff32c6872f37c50f725d8e6fb80f1285e2b
+FileType: OTHER
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE.libyaml
+FileName: vendor/gopkg.in/yaml.v2/NOTICE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-NOTICE
+FileChecksum: SHA1: 9522d95b2b9b284285cc3fb6ecc445aa3ee5e785
+FileChecksum: SHA256: f6c2dd3a67b576eafb89b80200b8b1627230bf3821a0c14cb99a22ac19107d00
+FileChecksum: SHA512: 0261b6b6b8b991cb95f2d78775955a028236b9322f26087971442e54bd9219386be327b48f4c0311d8825b141579a8a527775f897c5768168d0ba5f850dfd6bb
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-NOTICE
+FileName: vendor/gopkg.in/yaml.v2/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-README.md
+FileChecksum: SHA1: 3a0f2e1c80c53e11b4c3c08bfc59483820cc2e45
+FileChecksum: SHA256: 588e691973b0ad855f4fa4d070debf76e3c8246edc8da6e0b17dd42ab1ad697a
+FileChecksum: SHA512: 64ba12bd5613ef298407b41ecb849b16b53e6666cb9bdd41ae2422d0cd39025ea5a9630f5e3bf0c81d0c0bc32b95eb8758250ae466681aceac4e8645483526d5
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-README.md
+FileName: vendor/gopkg.in/square/go-jose.v2/jws.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jws.go
+FileChecksum: SHA1: c728cfe398613ce511427af69a8c89a90bc9f7bb
+FileChecksum: SHA256: 107b525587ed2f9f62ed5b7882ac7b532b106850b3886ce2f7bc5001d9f637fb
+FileChecksum: SHA512: deedf82a6e752eae0c4e0a68b3cc92ab077d53c88602bc191be403433693af44a011393d8829537de5ea1f9402e94031367182a396ea7f03e4890b9a55cd0deb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jws.go
+FileName: vendor/gopkg.in/yaml.v2/apic.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-apic.go
+FileChecksum: SHA1: 47bf8a3c9a65064f29408d74b54ec7ca98b08d6a
+FileChecksum: SHA256: a3917d33b1dce8254f04bef0907189428b0182364e4815b737d60b98249d198a
+FileChecksum: SHA512: ca0e0403151cac119d4a83324a436417f2e2da2f0688682027c550b0131e3193158a1f47119c87a458cfcd4cc5e58b8876ca60a36753b178ecbf208d7407ad20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-apic.go
+FileName: vendor/gopkg.in/yaml.v2/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-encode.go
+FileChecksum: SHA1: f6002ace1524d0b87305982c2a484c7342c9843f
+FileChecksum: SHA256: 6f842189d0530a22bd146824cf266e9c4fda56b9ba5186238c0bf539537f3a56
+FileChecksum: SHA512: 9f827e41f3f2f220559983e82ee72fedce65ba4021338d21e9aca09158fbf542e1bf7ad5f6e8a964a03dbcc3cb71ad89d2f68ecd9c7881f3ec617b9a99908faa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-encode.go
+FileName: vendor/gopkg.in/yaml.v2/emitterc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-emitterc.go
+FileChecksum: SHA1: 5a555844f9a82349f56b836ae4c43a7f826a5953
+FileChecksum: SHA256: 6311bafb0626f9d174ff1071f537e1a240d23c24c42a74f8d04230a9bfbedbb5
+FileChecksum: SHA512: fdfae155e19f0879e22d722ec457f5f409f98466e3399c8403a2566ca5259b4fe433914c6ffe5d50b57508e50c53abe417319825bf84d99f047cefbd23dbf718
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-emitterc.go
+FileName: vendor/gopkg.in/yaml.v2/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE
+FileChecksum: SHA1: 92170cdc034b2ff819323ff670d3b7266c8bffcd
+FileChecksum: SHA256: b40930bbcf80744c86c46a12bc9da056641d722716c378f5659b9e555ef833e1
+FileChecksum: SHA512: 389080b6132d3eaae780648d6998390d8cc71908561bce09578e27c542aa1a9f3122e01f640c5b01bee73004c23aa4e9f2066fe5ee0ca2072c2420578b28d71f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE
+FileName: vendor/gopkg.in/yaml.v2/readerc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-readerc.go
+FileChecksum: SHA1: 70d0493a00ff07f4b6a845114fedb868fb0d5e92
+FileChecksum: SHA256: 68ca782bd29c03d67a91c69439d04238390829f9f27520fd1fa2f0f208049e59
+FileChecksum: SHA512: 860f9e93dbe53a2033d9390af91bd1f9564d1d9823c0b5c66a4252a7c61dff31ecb477fca32e8825165d8a77e9d8fca0a2d774af55b84fe1db9d84d577f53d48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-readerc.go
+FileName: vendor/gopkg.in/yaml.v2/resolve.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-resolve.go
+FileChecksum: SHA1: 908875a50f962f085b43e8980bfb2d053ea203d9
+FileChecksum: SHA256: 2b102c842cd923bbf9b2424a314558391b9afc73bd5bf7a0ce51cd27b9087326
+FileChecksum: SHA512: 4576461ac48b81d8fa6b7e6e3b1440e0792e6879027ce93b01c8f7367646159527f50c9f0be3a621eda14b6b1b748b810bf07161ca0a7f16a14f2aa341060708
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-resolve.go
+FileName: vendor/gopkg.in/yaml.v2/sorter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-sorter.go
+FileChecksum: SHA1: 90bcd8cb75622c82d3748fb922801474fd33d8a5
+FileChecksum: SHA256: 69dd002fd057894a61545c8d1144f1baa1d9607870269208fcebd10d7a5de44a
+FileChecksum: SHA512: edd018839221a096d48a642b75556fb76625e6c26f7eb57ad84baa191217931936d9512014a0706e5ea499c05cbc7b43c7cc3e12a7e9a70aa461c3e4e8e84ed5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-sorter.go
+FileName: vendor/gopkg.in/yaml.v2/writerc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-writerc.go
+FileChecksum: SHA1: 11e4cecd8c359c98535e97bbfe24042e39ce36da
+FileChecksum: SHA256: fbdc6dffbce4d3bddd5a872b8396b0a31eaded2cdd394f8728dec515d2620f7a
+FileChecksum: SHA512: 7377a1e04ec98b0dd5ab66d4b2a80ed1e1cbcfecefa4b435d2e388a25c1eae927d717afa13d70ca65fd8470d761bc1b77c76d9ee4d89f52d1d073491c4390468
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-writerc.go
+FileName: vendor/gopkg.in/yaml.v2/yaml.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yaml.go
+FileChecksum: SHA1: 8ef4f257fe4665b4f8956d9b1e6fa8ea7969044c
+FileChecksum: SHA256: b905eb379b8a9a4d3d744b74846f407829bb60de3a42e89945f56b7840227eca
+FileChecksum: SHA512: bc416855c00b2ec8330dca4dd89d393c8716b813f0681159fd9763bc99c722e833da522eafd0c40b13b9801490da375e049304c4f1ae9322b933e7ee994a78e4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yaml.go
+FileName: vendor/gopkg.in/yaml.v2/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-decode.go
+FileChecksum: SHA1: 9323da7483c14dbed06f44e6725d33ae1957df4d
+FileChecksum: SHA256: c0eb5cc60c4bc108e0ad3f89992f09a05b42b7920e28223a6edcccff6cee1d4c
+FileChecksum: SHA512: eadc7bb27c9cf5aac77888e1dbf6663bbdcc9ce8350df76927ca907d74fb79e0d5aba57eaaabe1a2aeb15d4ff787fc685203b14faca6f2167a2ac7a392685eb0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-decode.go
+FileName: vendor/gopkg.in/yaml.v2/yamlh.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlh.go
+FileChecksum: SHA1: 1d35ca760ee834bb74da05ff5989770bafc7a322
+FileChecksum: SHA256: ffcc127f978e2ceca9941f6c6ed1f10982950db45f7a18253614b7b3707093d5
+FileChecksum: SHA512: d5a416c4ac6bded77fc860a656f5b02590a84370b8a2a289ed4687f396250f6fa51c70c12c2319bcbe9abee12e26bffc88bdb4fd7ceb156c7b1cf9712bb1babb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlh.go
+FileName: vendor/gopkg.in/yaml.v2/yamlprivateh.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlprivateh.go
+FileChecksum: SHA1: 570be0d85cb2334709368a301d177df9fc017265
+FileChecksum: SHA256: c46816f21e39a76697c4caccc8534cdbbdba930896786cdb7762d29867f38a5c
+FileChecksum: SHA512: 0fd8c89450a849c0bf18218b419887b83d3ef103db1e60a5ce6f90634e440c05fd3bf685fdff82c0114031042b28b939898eb82f397ae105f664bd2afc80b83f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlprivateh.go
+FileName: vendor/modules.txt
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-modules.txt
+FileChecksum: SHA1: 650cc0653c5cf5f1bfd5035732c51d8f97ecdfa8
+FileChecksum: SHA256: 41ca8fec97d3fb23995d1d364b8482632571086588fd1f9f15a5ae4b7ccae8c2
+FileChecksum: SHA512: 8f521bf1555e53eef7ee04fe5bdb914b28bc24edbb63bb9a94e510d4d9f4275c42a9efd7c038332dbd1fb1bc25cd296a96566a1844553dde070519233014acf1
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-modules.txt
+FileName: vendor/gopkg.in/yaml.v2/parserc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-parserc.go
+FileChecksum: SHA1: 3b96d11389106e05cb3ba62750b93d3847f51e45
+FileChecksum: SHA256: db4e41cfe88f747f8da7bcee943ab1e96cc33fc7d6a4b64cc2ac9902a0b34295
+FileChecksum: SHA512: c46da429e9641af5a91a93892ab4838977e2b89297c96418393ab16077a9dd37d35e18ac395b0dc53be54c3b69e04fd5d301c1ae30f184b1c9764011809f66a8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-parserc.go
+FileName: vendor/gopkg.in/yaml.v2/scannerc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-scannerc.go
+FileChecksum: SHA1: ea3084be1fb2ea29da1706e6291249e91e62f51f
+FileChecksum: SHA256: 9963b0d9edfb8cef2eaa5ea57ac40216cfca4fadf8c8cbb84c2e4b961aeea09b
+FileChecksum: SHA512: 10a3b8acccfdb4435eefc22bd9651418093b83f8a89f6cdea9880e3abed9c636991601e2eb40dd0c095188ca31e6c66fb6755012d88951c3727f41f35307bb27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-scannerc.go
+FileName: builder
+SPDXID: SPDXRef-File-sample-golang-prov-builder
+FileChecksum: SHA1: e368d88074d6f39d85dab4ff7df0c2d580d7f853
+FileChecksum: SHA256: f7af23a8b90b70d0546880bb45f17099e79353cea4e88513c6983106a4a63782
+FileChecksum: SHA512: 9a82cdf27fed0cb270125eb9be0710a9c1bac2c3d77e32dd625e9637a5de3c639e6f7c5fb50f5c1f12a19807e8b389b5b57fe1630c3abf95e6e6f5e6c440daa6
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-builder
+##### Package: go.mozilla.org/pkcs7
+
+PackageName: go.mozilla.org/pkcs7
+SPDXID: SPDXRef-Package-gomod-go.mozilla.org-pkcs7-v0.0.0-20200128120323-432b2356ecb1
+PackageDownloadLocation: https://proxy.golang.org/go.mozilla.org/pkcs7/@v/v0.0.0-20200128120323-432b2356ecb1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: MIT
+PackageVersion: v0.0.0-20200128120323-432b2356ecb1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/go.mozilla.org/pkcs7@v0.0.0-20200128120323-432b2356ecb1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: The MIT License (MIT)
+
+Copyright (c) 2015 Andrew Smith
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-go.mozilla.org-pkcs7-v0.0.0-20200128120323-432b2356ecb1
+##### Package: github.com/kardianos/service
+
+PackageName: github.com/kardianos/service
+SPDXID: SPDXRef-Package-gomod-github.com-kardianos-service-v1.2.1
+PackageDownloadLocation: https://proxy.golang.org/github.com/kardianos/service/@v/v1.2.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Zlib
+PackageVersion: v1.2.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/service@v1.2.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2015 Daniel Theophanes
+
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+
+ 3. This notice may not be removed or altered from any source
+ distribution.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-kardianos-service-v1.2.1
+##### Package: gopkg.in/yaml.v2
+
+PackageName: gopkg.in/yaml.v2
+SPDXID: SPDXRef-Package-gomod-gopkg.in-yaml.v2-v2.4.0
+PackageDownloadLocation: https://proxy.golang.org/gopkg.in/yaml.v2/@v/v2.4.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v2.4.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/gopkg.in/yaml.v2@v2.4.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "{}"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright {yyyy} {name of copyright owner}
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-gopkg.in-yaml.v2-v2.4.0
+##### Package: github.com/containers/ocicrypt
+
+PackageName: github.com/containers/ocicrypt
+SPDXID: SPDXRef-Package-gomod-github.com-containers-ocicrypt-v1.1.3
+PackageDownloadLocation: https://proxy.golang.org/github.com/containers/ocicrypt/@v/v1.1.3.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.1.3
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/ocicrypt@v1.1.3
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ https://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ https://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-containers-ocicrypt-v1.1.3
+##### Package: golang.org/x/crypto
+
+PackageName: golang.org/x/crypto
+SPDXID: SPDXRef-Package-gomod-golang.org-x-crypto-v0.0.0-20210322153248-0c34fe9e7dc2
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/crypto/@v/v0.0.0-20210322153248-0c34fe9e7dc2.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20210322153248-0c34fe9e7dc2
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/crypto@v0.0.0-20210322153248-0c34fe9e7dc2
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-crypto-v0.0.0-20210322153248-0c34fe9e7dc2
+##### Package: gopkg.in/square/go-jose.v2
+
+PackageName: gopkg.in/square/go-jose.v2
+SPDXID: SPDXRef-Package-gomod-gopkg.in-square-go-jose.v2-v2.5.1
+PackageDownloadLocation: https://proxy.golang.org/gopkg.in/square/go-jose.v2/@v/v2.5.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v2.5.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/gopkg.in/go-jose.v2@v2.5.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-gopkg.in-square-go-jose.v2-v2.5.1
+##### Package: github.com/pkg/errors
+
+PackageName: github.com/pkg/errors
+SPDXID: SPDXRef-Package-gomod-github.com-pkg-errors-v0.9.1
+PackageDownloadLocation: https://proxy.golang.org/github.com/pkg/errors/@v/v0.9.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-2-Clause
+PackageVersion: v0.9.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/errors@v0.9.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2015, Dave Cheney
+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.
+
+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 HOLDER 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-pkg-errors-v0.9.1
+##### Package: github.com/golang/protobuf
+
+PackageName: github.com/golang/protobuf
+SPDXID: SPDXRef-Package-gomod-github.com-golang-protobuf-v1.4.3
+PackageDownloadLocation: https://proxy.golang.org/github.com/golang/protobuf/@v/v1.4.3.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.4.3
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/protobuf@v1.4.3
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright 2010 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.
+
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-golang-protobuf-v1.4.3
+##### Package: github.com/google/uuid
+
+PackageName: github.com/google/uuid
+SPDXID: SPDXRef-Package-gomod-github.com-google-uuid-v1.3.0
+PackageDownloadLocation: https://proxy.golang.org/github.com/google/uuid/@v/v1.3.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.3.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/uuid@v1.3.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2009,2014 Google Inc. 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-google-uuid-v1.3.0
+##### Package: google.golang.org/grpc
+
+PackageName: google.golang.org/grpc
+SPDXID: SPDXRef-Package-gomod-google.golang.org-grpc-v1.33.2
+PackageDownloadLocation: https://proxy.golang.org/google.golang.org/grpc/@v/v1.33.2.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.33.2
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/google.golang.org/grpc@v1.33.2
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-google.golang.org-grpc-v1.33.2
+##### Package: golang.org/x/sys
+
+PackageName: golang.org/x/sys
+SPDXID: SPDXRef-Package-gomod-golang.org-x-sys-v0.0.0-20201119102817-f84b799fce68
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/sys/@v/v0.0.0-20201119102817-f84b799fce68.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20201119102817-f84b799fce68
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/sys@v0.0.0-20201119102817-f84b799fce68
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-sys-v0.0.0-20201119102817-f84b799fce68
+##### Package: github.com/opencontainers/image-spec
+
+PackageName: github.com/opencontainers/image-spec
+SPDXID: SPDXRef-Package-gomod-github.com-opencontainers-image-spec-v1.0.2
+PackageDownloadLocation: https://proxy.golang.org/github.com/opencontainers/image-spec/@v/v1.0.2.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.0.2
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/image-spec@v1.0.2
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ Copyright 2016 The Linux Foundation.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-opencontainers-image-spec-v1.0.2
+##### Package: golang.org/x/net
+
+PackageName: golang.org/x/net
+SPDXID: SPDXRef-Package-gomod-golang.org-x-net-v0.0.0-20210226172049-e18ecbb05110
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/net/@v/v0.0.0-20210226172049-e18ecbb05110.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20210226172049-e18ecbb05110
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/net@v0.0.0-20210226172049-e18ecbb05110
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-net-v0.0.0-20210226172049-e18ecbb05110
+##### Package: google.golang.org/genproto
+
+PackageName: google.golang.org/genproto
+SPDXID: SPDXRef-Package-gomod-google.golang.org-genproto-v0.0.0-20200526211855-cb27e3aa2013
+PackageDownloadLocation: https://proxy.golang.org/google.golang.org/genproto/@v/v0.0.0-20200526211855-cb27e3aa2013.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v0.0.0-20200526211855-cb27e3aa2013
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/google.golang.org/genproto@v0.0.0-20200526211855-cb27e3aa2013
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-google.golang.org-genproto-v0.0.0-20200526211855-cb27e3aa2013
+##### Package: golang.org/x/text
+
+PackageName: golang.org/x/text
+SPDXID: SPDXRef-Package-gomod-golang.org-x-text-v0.3.3
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/text/@v/v0.3.3.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.3.3
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/text@v0.3.3
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-text-v0.3.3
+##### Package: github.com/sirupsen/logrus
+
+PackageName: github.com/sirupsen/logrus
+SPDXID: SPDXRef-Package-gomod-github.com-sirupsen-logrus-v1.7.0
+PackageDownloadLocation: https://proxy.golang.org/github.com/sirupsen/logrus/@v/v1.7.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: MIT
+PackageVersion: v1.7.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/logrus@v1.7.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: The MIT License (MIT)
+
+Copyright (c) 2014 Simon Eskildsen
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-sirupsen-logrus-v1.7.0
+##### Package: github.com/miekg/pkcs11
+
+PackageName: github.com/miekg/pkcs11
+SPDXID: SPDXRef-Package-gomod-github.com-miekg-pkcs11-v1.1.1
+PackageDownloadLocation: https://proxy.golang.org/github.com/miekg/pkcs11/@v/v1.1.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.1.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/pkcs11@v1.1.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2013 Miek Gieben. 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 Miek Gieben 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-miekg-pkcs11-v1.1.1
+##### Package: github.com/stefanberger/go-pkcs11uri
+
+PackageName: github.com/stefanberger/go-pkcs11uri
+SPDXID: SPDXRef-Package-gomod-github.com-stefanberger-go-pkcs11uri-v0.0.0-20201008174630-78d3cae3a980
+PackageDownloadLocation: https://proxy.golang.org/github.com/stefanberger/go-pkcs11uri/@v/v0.0.0-20201008174630-78d3cae3a980.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v0.0.0-20201008174630-78d3cae3a980
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/go-pkcs11uri@v0.0.0-20201008174630-78d3cae3a980
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ https://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-stefanberger-go-pkcs11uri-v0.0.0-20201008174630-78d3cae3a980
+##### Package: github.com/opencontainers/go-digest
+
+PackageName: github.com/opencontainers/go-digest
+SPDXID: SPDXRef-Package-gomod-github.com-opencontainers-go-digest-v1.0.0
+PackageDownloadLocation: https://proxy.golang.org/github.com/opencontainers/go-digest/@v/v1.0.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.0.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/go-digest@v1.0.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ https://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ Copyright 2019, 2020 OCI Contributors
+ Copyright 2016 Docker, Inc.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ https://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-opencontainers-go-digest-v1.0.0
+##### Package: google.golang.org/protobuf
+
+PackageName: google.golang.org/protobuf
+SPDXID: SPDXRef-Package-gomod-google.golang.org-protobuf-v1.25.0
+PackageDownloadLocation: https://proxy.golang.org/google.golang.org/protobuf/@v/v1.25.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.25.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/google.golang.org/protobuf@v1.25.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2018 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-google.golang.org-protobuf-v1.25.0
+##### Package: golang.org/x/term
+
+PackageName: golang.org/x/term
+SPDXID: SPDXRef-Package-gomod-golang.org-x-term-v0.0.0-20201126162022-7de9c90e9dd1
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/term/@v/v0.0.0-20201126162022-7de9c90e9dd1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20201126162022-7de9c90e9dd1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/term@v0.0.0-20201126162022-7de9c90e9dd1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-term-v0.0.0-20201126162022-7de9c90e9dd1
+
+Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-Package-sample-golang-prov
+
diff --git a/syft/rekor/test-fixtures/sboms/sbom-2.txt b/syft/rekor/test-fixtures/sboms/sbom-2.txt
new file mode 100644
index 00000000000..d9d1aebb4ed
--- /dev/null
+++ b/syft/rekor/test-fixtures/sboms/sbom-2.txt
@@ -0,0 +1,13018 @@
+SPDXVersion: SPDX-2.2
+DataLicense: CC0-1.0
+SPDXID: SPDXRef-DOCUMENT
+DocumentName: SBOM-SPDX-ba96f4cc-d9e3-4c83-a1db-ec5456b6a9ce
+DocumentNamespace: http://www.example.com/binary.spdx
+Creator: Organization: Kubernetes Release Engineering
+Creator: Tool: sigs.k8s.io/bom/pkg/spdx
+Created: 2022-06-28T19:03:39Z
+
+
+##### Package: sample-golang-prov
+
+PackageName: sample-golang-prov
+SPDXID: SPDXRef-Package-sample-golang-prov
+PackageDownloadLocation: NONE
+FilesAnalyzed: true
+PackageVerificationCode: d8a63543cdced3d00fa41450eeb2eb2ffad83fdc
+PackageLicenseConcluded: Apache-2.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: NOASSERTION
+
+FileName: .github/workflows/slsa-goreleaser.yaml
+SPDXID: SPDXRef-File-sample-golang-prov-.github-workflows-slsa-goreleaser.yaml
+FileChecksum: SHA1: 9ea64e62cd78d9138ec233a74ac45c75bdd0c408
+FileChecksum: SHA256: 527c33d3567080f4f34d04cc38eecae94adda2f4cb3627a0e0c020064498c07e
+FileChecksum: SHA512: 546246ff3e6659bdd7135cca23375eab579c63c889091521012fe4fac406e57f6d60d939d38781fd447b1bbe4aa7131a90b15f1cc72534b2f6b378c95a91dcc4
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-.github-workflows-slsa-goreleaser.yaml
+FileName: .gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-.gitignore
+FileChecksum: SHA1: 7f8d991950ba797166d60b878c5e0a1f132ddee1
+FileChecksum: SHA256: e45f8e0c321ccdb7eef37f15681d987e6aa8eb2a5df79975056503c19b75bde1
+FileChecksum: SHA512: dad9d1e73b2c366018116d60b27d6802af92917aa5ad8e580553b9c3e667e2e9703271df82fedd3e58db748e5059f4562fa910dfefb26a479ab4082b396cfc31
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-.gitignore
+FileName: go.mod
+SPDXID: SPDXRef-File-sample-golang-prov-go.mod
+FileChecksum: SHA1: d5d7b7d8ae8fa3b89be0dcc06b5d50be2d9014d8
+FileChecksum: SHA256: b3bedce4fd47c311a354fd0af3c6ef49fee38e7d80d398135cbb1acfb6c88ffc
+FileChecksum: SHA512: d0a537519fdf15a04de9b05d889ae8f09294161d1bb53a9b93ebe0ff9242984eb008feead37d2108d4b11aefa1b0c3d87b53375acb75be25803da4f4aa612657
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-go.mod
+FileName: .slsa-goreleaser.yml
+SPDXID: SPDXRef-File-sample-golang-prov-.slsa-goreleaser.yml
+FileChecksum: SHA1: 68ce46fe19642b57075f9541750eb0b1c4e64ac6
+FileChecksum: SHA256: ff930ad1c73ec70d88ccbaaa2b7f10508cb23ae8d24f3346c2b573937c8c3f3f
+FileChecksum: SHA512: 3f27cf21757de47b981926b7179ccfff5c21c0a0a0200ca7e1de62de7258c21ec2bbcd2f2e334e3399e2239c6d899581f9b997ac35dda266b0777ead5c7bfb7c
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-.slsa-goreleaser.yml
+FileName: go.sum
+SPDXID: SPDXRef-File-sample-golang-prov-go.sum
+FileChecksum: SHA1: 303a5db03b5abe217ba7d366289ba66837b80332
+FileChecksum: SHA256: efd74e73612aea2a14c5c0b110cd0bb3206ea8f878b33a2c969be168928c3b1e
+FileChecksum: SHA512: e4ae084114229c415960ce6a4a77849d971692aac0c7bdaf3247f12f15dbb930205b771123653d033dc2b29c17b76d7cc14ef93d0b24da5fb75ae8d04d3d37ff
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-go.sum
+FileName: main.go
+SPDXID: SPDXRef-File-sample-golang-prov-main.go
+FileChecksum: SHA1: 6afe48233dc53adc1c09f53bc914864ed6b4b1d4
+FileChecksum: SHA256: f6dfc40fd2dced705a2b460073ca2ad7d59937a2bc89021e064483d3d4a0b37b
+FileChecksum: SHA512: 70579b6e35e1dedac75c5bcdbf886144cb7bcde0f65da7df20fa5dabc07374cdf69fe2c96397c30da7ed7107ecdbf05686340e5a5f622494b761e97066663203
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-main.go
+FileName: vendor/github.com/containers/ocicrypt/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-.travis.yml
+FileChecksum: SHA1: d72ef4d79d6d7ddbef7782d6e8ff5c0e15d13b77
+FileChecksum: SHA256: faba47a2c5eefbf373f388848eb1df9038c05bdd5cfd95a3e8ed7fa03fd67b13
+FileChecksum: SHA512: 00d3abdbc17a376530bd598859c34a2f8091328cb779226db178840841cf8a907fbca0cd0f712967028fa99cf5998cb8bd99e5c6079e1385e9ca5a82a3652327
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-.travis.yml
+FileName: vendor/github.com/containers/ocicrypt/ADOPTERS.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-ADOPTERS.md
+FileChecksum: SHA1: 16b34dd5d33056c1cf329cf21668a2a338aeb4c3
+FileChecksum: SHA256: 2ae0d93b23f9c7c37dbc7fc19eeac407f79817b9c5f30c62de7a8e2faa18391a
+FileChecksum: SHA512: 5b073c5df4fc1124eebfecbef67c98ff1d168db320fd63491b405fda6e7c4dcf749e8b18a62fc1050c4e70977eec8897fb25b55930ca1835f7b9e51cb43bc608
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-ADOPTERS.md
+FileName: README.md
+SPDXID: SPDXRef-File-sample-golang-prov-README.md
+FileChecksum: SHA1: 00bbb7d9afa65ce3bdf2f35908c0da2771ea2153
+FileChecksum: SHA256: 9dc3dfbbb50093593e5f14c41803f0d3377d5b9f05d643eb42116d3a545a2911
+FileChecksum: SHA512: cad1f57c99458adcb16faefad42ffd3d2495f2905918772300854cb2dd3b8081684b03e9f9e314989671e36b78da61e7927e2f0aa605ee9d3c4e8bbc73461293
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-README.md
+FileName: vendor/github.com/containers/ocicrypt/MAINTAINERS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-MAINTAINERS
+FileChecksum: SHA1: 4317ff02ed9437f7b570f554aee7abccd429630f
+FileChecksum: SHA256: ea75759674d99622cee95c0f830c3a4052d236e4325ba8c3b0c5b2c6d75f1507
+FileChecksum: SHA512: e1863d6af1b9412d844ad66e32462c958dc32e0ff2537d7afafaed8e1da89d6ee659c6bacf10809c4484021c886882b90b02e32f5329ae0167b6398533560a82
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-MAINTAINERS
+FileName: vendor/github.com/containers/ocicrypt/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-LICENSE
+FileChecksum: SHA1: 3037fadf4c833d13c87fcd0b2f932de187edf676
+FileChecksum: SHA256: 716a8b80635c394681e652823e1e42e411ad2d254e1f202403422d74f4b0b106
+FileChecksum: SHA512: 5cb85ce7cb72b66c8bd7911ab48169722751278ba5c09c4d0061cac69a702e48de97c319d82b57a78a4c3e87a3adc2597214741f26838f35ea3dd1393b42c831
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-LICENSE
+FileName: vendor/github.com/containers/ocicrypt/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-Makefile
+FileChecksum: SHA1: 46af4d4c8adab2bf4edc04def8e2a58a6f1d9ce5
+FileChecksum: SHA256: e301a534d70ea5f2541ffec6d37806c333ea46d3d8632550d154dc1078dac96d
+FileChecksum: SHA512: 2a96efdc9524f43a1ebb233a61465be00dc18ac01ac2e5a71e3c7ea3be980e8ee77a98ffa7820c76305531aa3aa67853e1dbcdc03fc88162e352db2fcf8bb3e9
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-Makefile
+FileName: vendor/github.com/containers/ocicrypt/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-README.md
+FileChecksum: SHA1: a1672c59b0d6ce8b9c97034c49d0ac5da540ca79
+FileChecksum: SHA256: 829eb1bbbf1dac9949d8c2c1e5e8f037326306e762bba1788dc5f204ab809896
+FileChecksum: SHA512: 6c9b7172716728f9bc9cfad2da0916c44660e351937d1c6e29aa8011e82df811b4e96442c5ea52d7ecc38b0afcd926e73bfa44fc6786f0d3378a259a41f3ebdc
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-README.md
+FileName: vendor/github.com/containers/ocicrypt/SECURITY.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-SECURITY.md
+FileChecksum: SHA1: c48faf8a8ab4c8ac439c8dd4b347f3d31a9f7a81
+FileChecksum: SHA256: 92456ff28a4972c2382cb727506e6be5bf74c7723f829b628621671ec6031cd4
+FileChecksum: SHA512: 2d23b840f366bf48ca2ced0824240dc1ce219ec34bbbf307a47a5e1e14767c95d0c58d9b396cda999a7dda71ef72d3968a46a939e585e7e000f317e2f57bfb11
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-SECURITY.md
+FileName: vendor/github.com/containers/ocicrypt/CODE-OF-CONDUCT.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-CODE-OF-CONDUCT.md
+FileChecksum: SHA1: 25b13074f95f8d50ea7e1c8a829342053ddd9612
+FileChecksum: SHA256: 87719f30720aebb6b88e84c5229970c706b2a91258a978d2cc496806f4ef3ac7
+FileChecksum: SHA512: 296316b4a69206822e3975020b5e843a865275257a832949bd23615a78355d37e3bd7bc3fafff543c99100631fd22da3a122627077a87e92299fba7e2b4bfdac
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-CODE-OF-CONDUCT.md
+FileName: vendor/github.com/containers/ocicrypt/config/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-config.go
+FileChecksum: SHA1: faeaef66894ebc9ea7a33bce0cdaddae18c6140c
+FileChecksum: SHA256: e91cd8ad61c51852616e5fd255e81240854d45ab30154d2b82132f0114090de0
+FileChecksum: SHA512: be1c95d4c0a40c587cecd0cdacfdb2f771671ece1cab28d638ea10ca5a3bf89fddeba929b6d5701e83379e4ef66079c5086025c8924353f23532ee640da7e005
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-config.go
+FileName: vendor/github.com/containers/ocicrypt/config/constructors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-constructors.go
+FileChecksum: SHA1: 8c20635693634c308027773226f4e26bd22a7fbc
+FileChecksum: SHA256: 8513a2a19b7ed3d9caf801c7102a8520315ebaf3625ebde309d3d3daf12f1f30
+FileChecksum: SHA512: 4067a6d42c13c0095304bf8501f040fdb199b68e2842d2940eccc16f807f7f8341d4b56d8540603aa1ca2ef6699e903cd80d0f30b3a31e8e5dba1eb029e1e83d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-constructors.go
+FileName: vendor/github.com/containers/ocicrypt/blockcipher/blockcipher_aes_ctr.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipherC95aesC95ctr.go
+FileChecksum: SHA1: d2369cc700c81ed56fae2f0c2b236e7b0b318afa
+FileChecksum: SHA256: 75ddbc90a95f234115f061d164905df7721a360a72641f8f1dcb17b4f6d8ee34
+FileChecksum: SHA512: 842d223b0cccc683ce371a28851c16bfc87a669bc420a843f460bc16fe9fdd318adb9c4be5e02e25b65b9bea60b36b61557d8b9396e9787ce3e990478721103d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipherC95aesC95ctr.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/common.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-common.go
+FileChecksum: SHA1: 27074a63fab53216555d163558e40e8a298c6367
+FileChecksum: SHA256: 4b916f4cdeaf75f844f0b2e5dba2939d1a17ba86a5c300026d0e047ef09cee70
+FileChecksum: SHA512: 771f6b0339aceabd68f5fa5fe1e95b94d5c710ef396921c660f63bab6ba732cbe20deaaec30e86a9d622e4ccc00d1a13dcb394ba888bd9c339df8d767e0654b3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-common.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/pkcs11helpers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpers.go
+FileChecksum: SHA1: 123b472833f442164ab4fe5aaf4e361c61cabcfe
+FileChecksum: SHA256: 05de27d7259925d147c352bb07fc09d713a6c07db437fbfdbbddaf25ea8e286b
+FileChecksum: SHA512: 39de44f48d5a23e2f8ee74a351dcc985cb532d023172a57c9d399a38515520dc8711ca517330eec01303b1e77a8fe4e467cc9af8952434c5b7785291700a6d81
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpers.go
+FileName: vendor/github.com/containers/ocicrypt/blockcipher/blockcipher.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipher.go
+FileChecksum: SHA1: d73ba71e45cedd9cdb632809d37d31221dfe7ef9
+FileChecksum: SHA256: fb321db2c4ce04c2d5ba61fb7cfe32729f217b2ef5c5bea5feb1e5c7e52df5f9
+FileChecksum: SHA512: cdfe880f354781db29a00918bc0d05813c88589f7ca932fbeb9532a06e8c473631de274e44ad64b0cc76965fd50398575b25f46fc2ba3efdbfd4481a01101439
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipher.go
+FileName: vendor/github.com/containers/ocicrypt/config/keyprovider-config/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-keyprovider-config-config.go
+FileChecksum: SHA1: 8e8dc783e756b9ae8e1135bf12d4f1cc998c38d3
+FileChecksum: SHA256: 4c8e5eded1a4d22f861df68513bfe3051e9079011c53a90ec2622e75fbeb5db8
+FileChecksum: SHA512: 64024fe814f47f11eb0ba1c9eee763982009c75ea0eff83e6735f9f6fb2a883a552e2bb5e99a0e76f98ef9dceef20c63964b6637b1cf9f8760ffc1ed5cb2e763
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-keyprovider-config-config.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/utils.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-utils.go
+FileChecksum: SHA1: f22f963b8bcbeb5795a1e5f472dea78cbf1ccc0e
+FileChecksum: SHA256: 02c44207337764cf8e54ff1df159410a3a5361361481838ab3d318bf4fb1c885
+FileChecksum: SHA512: c158afbc7f88efaeaa415b98fd316f32a61289d789977e896c66b64c89bf045698c4ad2a8d4e1db90d6a6d19bfdae886fbc38ccdd74a7936fbb232d92372cedd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-utils.go
+FileName: vendor/github.com/containers/ocicrypt/encryption.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-encryption.go
+FileChecksum: SHA1: cfbc50f4215ebdbd2bb19b16bf5e283719f6da22
+FileChecksum: SHA256: d843def5810a29fbe266ae604de08fcb78c1324e217f98472c014ac4c4175462
+FileChecksum: SHA512: 013fd23f6761de58d912a91af10679bf9a273f691b5df8d5fc673a62d1cd9fe423b9fb912ac67ad530864c0a3e4a981ba75f21a8d21c7a3840e96adb714083b8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-encryption.go
+FileName: vendor/github.com/containers/ocicrypt/gpg.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpg.go
+FileChecksum: SHA1: e2ea1663683cf8a0eee5fb8f955a5821808d6523
+FileChecksum: SHA256: dfe9b0b4f55b6f8f29f99e254d2b8b6cb0e2d4610b8be6f9926858a3ac09c889
+FileChecksum: SHA512: 55a876f2d175eb9d0d5d10f5946ff15888eb729c7c58219a51f157eabd08230c5b67b57350f53e26c315752def47f9bf87c677520391e1a99efc6c34a0119ee0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpg.go
+FileName: vendor/github.com/containers/ocicrypt/gpgvault.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpgvault.go
+FileChecksum: SHA1: 6b7c66df7321ff9a6f35971f35ee393cf40cb365
+FileChecksum: SHA256: 3220495eb2790f2e38f246a8b4c2d167362f4ae1ac7a0db583330c7c0a8c9581
+FileChecksum: SHA512: 01aeb2e650ae7d86a824749d504cf18460f233acd9c318875ba242419befdd7a9eb9e051431147791cf204fb3442a4722c480be7ef8de67f6ed4abbdbcfa2244
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpgvault.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/jwe/keywrapper_jwe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-jwe-keywrapperC95jwe.go
+FileChecksum: SHA1: 4db32f41ca9af98156ef9d2ee3ffb34668e6c162
+FileChecksum: SHA256: 4b363bcfd9c36c77b0a80efbf3d9e61518622f5e0e6d232cf458f2a5a8ac1582
+FileChecksum: SHA512: ad8a465b4144e2ca1b8615bc3493492f7ef901a82127bf1cb3cef5ecc57331c40db4d4d4666fc4b4172be464b167dd7261dc04d7c6ebc24283dc010c658ed1d0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-jwe-keywrapperC95jwe.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/pkcs11helpers_nocgo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpersC95nocgo.go
+FileChecksum: SHA1: 7b57cf7c61d29b5bfc2a9bd2b1ad0e847cc343dd
+FileChecksum: SHA256: 3ab3a5e308a64ec2394042f12a32271237a186d48f7f434f63d87bad386b57f6
+FileChecksum: SHA512: cc21325aab99fe817b1e6ad4af44cd65d753c8708b0afb889245d77b41189499d6e95db941228ce152c8185170a671d4c5a5bb2cb7046c36194e99f4eaea68b6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpersC95nocgo.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/pgp/keywrapper_gpg.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pgp-keywrapperC95gpg.go
+FileChecksum: SHA1: bc47d42e55688b3dc79275bde0071de496b62503
+FileChecksum: SHA256: 71a9ad901cbb4178b2a4cc2d3f331cef9224e14d2bdfbc8710f28ef4e70b708b
+FileChecksum: SHA512: 4990b4ccf8d6cee0f00705645234283c1873d67c24929e23451c7a24d20d6f67f2cbf8c4c738eb231894a43fdd194f3977218b4338a170a283b8e6e15fab5196
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pgp-keywrapperC95gpg.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/keyprovider/keyprovider.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keyprovider-keyprovider.go
+FileChecksum: SHA1: 3343d332d6d0a1768df4919f0a4cb49329882d3c
+FileChecksum: SHA256: 321e758559ebb4eb19c98d628718b751b3c1396dbf6308c58c26106e56cf9b28
+FileChecksum: SHA512: a52b72185006db8609b17e48fc876302cc7fb76356f35c864843f36f7a9c583888724cefda06e3ad809f6ded49727f188755f363129aec535651c849c75cf7e7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keyprovider-keyprovider.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/keywrap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keywrap.go
+FileChecksum: SHA1: 64a568dba08f2c67ec41da5c3c3d30529aad9eaa
+FileChecksum: SHA256: 542921a562d1ee6400509a0b9bb884f95a47bcc6007443bf5dfa9a16fcde6c99
+FileChecksum: SHA512: b80c58402f9a470dd2b8d22285d0665ee11ee2f3454e5898c5c1887a38c556f6a3b51f9496bae52508631aa7ad72461cdcf8036df14cba404031e75c2a88816c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keywrap.go
+FileName: vendor/github.com/containers/ocicrypt/reader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-reader.go
+FileChecksum: SHA1: 42d31b563178905f0cdbfb475cd61a81a322ab71
+FileChecksum: SHA256: bd51a0e1c9d6b20823ccf11ec24feb03541c1b5f8f9968e27e5ae1a139f3bf9d
+FileChecksum: SHA512: 8e64d316eb4a38575e45af7d3934606b6789f3955bc0f3301f308a1e85364e5228f521401bab39a54469fb646c72e7f99e164d19304da3ce14a8a4a28d889866
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-reader.go
+FileName: vendor/github.com/containers/ocicrypt/utils/delayedreader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-delayedreader.go
+FileChecksum: SHA1: ea37a39bb5545d5f43a07fd249dd7f081671c6f7
+FileChecksum: SHA256: f65248b41e61ff23e3a92cb0d472931fa1d9684011cd5e30f9cedde8f269c702
+FileChecksum: SHA512: a878f22ea299779b258942162cd0dfd04c38e832dd5ffffe5e4f703b0e66825f222e2ff9cad4d1faef98230397489c245345dd16b0271f10c75bf1c5d8896e1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-delayedreader.go
+FileName: vendor/github.com/containers/ocicrypt/utils/ioutils.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-ioutils.go
+FileChecksum: SHA1: 9cfa71de0cf528d8456f0f4f058109afc5776313
+FileChecksum: SHA256: 14bf259fb1cc2e9b53a27388bb27b6c83c1d1b7c18c0ebfce5f449704ff0f45d
+FileChecksum: SHA512: 74518d61008c148f2351ed28c4649eb62e86b1f7751923157cef4386f3d5370ec23a279d46da1588f534467caa9527dffc33f997c7bd46bd1c8252cbb7f6058b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-ioutils.go
+FileName: vendor/github.com/containers/ocicrypt/utils/keyprovider/keyprovider.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.pb.go
+FileChecksum: SHA1: 9e0402a4a8162ae4447f858798130c5b6a0cdbdc
+FileChecksum: SHA256: 99bc016c216318648d7dcb8f2691992e4561d6d1a7e1ae5a63cffe28eb731311
+FileChecksum: SHA512: 5c0b0a72f20749c84ba2a2b4b10ce2ccac099ffd7a392383ac1782f4ac6632098450a2f820e3800085ece3ce3ac4e0e7ab65cc1732f47a7da0df60d26cf58c59
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.pb.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/pkcs11/keywrapper_pkcs11.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs11-keywrapperC95pkcs11.go
+FileChecksum: SHA1: e81ac6e98710f0969c347252ec96a952ebcf86cc
+FileChecksum: SHA256: feb8cb3205c5c35bb9da009a6f04bff044366e739741c6aa9e57c4de2159bf20
+FileChecksum: SHA512: e27ad5e89e9b02b463f3eccb5f7892b6b85b93a39b888f6a76103161ecede426247f421edbf69560f5699cba111217b9bae94e5e653cb89ac7182add2deea10c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs11-keywrapperC95pkcs11.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/pkcs7/keywrapper_pkcs7.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs7-keywrapperC95pkcs7.go
+FileChecksum: SHA1: ee82236a3c9afa98d5dbc695876b865af1cc7410
+FileChecksum: SHA256: 9070997b42303e7222f07f042130059ac260e61301db0d65e0ff6392a4e66dbf
+FileChecksum: SHA512: acebf347f1ef1a0080a662dffc83a2063e52958fd90c9e9ad73163e0f96aa3a89fbca9c674b3fda44d772afd75e3d02c778db1086740ee4a9d96a7044ffa88b6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs7-keywrapperC95pkcs7.go
+FileName: vendor/github.com/containers/ocicrypt/utils/testing.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-testing.go
+FileChecksum: SHA1: c2343afe5c03915bd31cdf148963a08dc1704d19
+FileChecksum: SHA256: 8f44948fee7ec302f3510b4ade78f1ea5a936b6008fff9fcf82a7f1fa009441d
+FileChecksum: SHA512: 6b97b86fef24a8ee4913eaa07ad45eb769cf5e5ce61bcbffd46fa96b265c8a2ed91f81a3d47c7e500111533ee2b9f4c12a28592d8a8518ad41d058906d969a9e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-testing.go
+FileName: vendor/github.com/containers/ocicrypt/utils/utils.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-utils.go
+FileChecksum: SHA1: 6a5cfddfba670aa6c93d83300d1fe71de40652f6
+FileChecksum: SHA256: 806f61a58059a6505689cc8ffcd6d6c7fe763c0d0975dd2bcedb57cf1ac7a193
+FileChecksum: SHA512: 0323ab5ddd9360f74c225dc55d15da9003e889fd4ac9cca6bf6bf1eb714ff7bc31ccb0c0050175ad636beae3c51b8b307a09ea88dbdd1fa8f1aedbb8ed803885
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-utils.go
+FileName: vendor/github.com/golang/protobuf/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-CONTRIBUTORS
+FileName: vendor/github.com/containers/ocicrypt/utils/keyprovider/keyprovider.proto
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.proto
+FileChecksum: SHA1: a27e176a0d14b6688de88732c9f9d05676651e86
+FileChecksum: SHA256: b3118037f208abdd4a1486fd960604807b7190ae22237470c47a3dcc1d1b6a34
+FileChecksum: SHA512: 77fb2c202af0a1c897bc8e6597893e29e5e69ab1793e377b45e4a1475f4d8eff7f2abcf98fb4cadfa02a50274c85956f788e94ab8f48c274fda39e2e70280ce3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.proto
+FileName: vendor/github.com/golang/protobuf/proto/buffer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-buffer.go
+FileChecksum: SHA1: ea0b9ac1c1d2578b4728424ba7505e526292c118
+FileChecksum: SHA256: 5f6340e812b1bca5ac6f24fd5032452e46f2c25836dc56cee8f42aadebf9aa23
+FileChecksum: SHA512: 377d2a9e2a72897bbac36ccadc569270b871d5d814eeba52f7b89a634e2c57124cc291f7a83dd19480338b8aca1317b7a0de959369b735f13755c949f8ed8efd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-buffer.go
+FileName: vendor/github.com/golang/protobuf/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-AUTHORS
+FileName: vendor/github.com/golang/protobuf/proto/defaults.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-defaults.go
+FileChecksum: SHA1: 978faa6eec58c8902b8e69ddb2be2c6b795d9360
+FileChecksum: SHA256: 251521ac58026d24363e9dece3e4d49462e4fd9b28dbcd5884db569ad0f010bf
+FileChecksum: SHA512: 8584968a235f7b8940325c09bb1b1e0fb8aae8349cf4ff6f5ae0cae33fda53970b255082264115fe61b6410db8c1fa9fa0a3fd102cbaebd11709b6639b9b5ad5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-defaults.go
+FileName: vendor/github.com/golang/protobuf/proto/deprecated.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-deprecated.go
+FileChecksum: SHA1: 4cdf5affb2939ff51645b845f05b60f71ae5ee40
+FileChecksum: SHA256: bb03db1eb256939fd1053904d67e3e66d582e04c1fb01d0ec19d501f97209cda
+FileChecksum: SHA512: eb7893fdd28636cb08c9d6cb7769ec79d6ebf48abf526c7a8a86126ca90d27764383ad5b7cec1042c5def374d4fc82f6e66a700e9dbc4007a6c12353cd56fcda
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-deprecated.go
+FileName: vendor/github.com/golang/protobuf/proto/extensions.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-extensions.go
+FileChecksum: SHA1: 9d40e79c4234ec13e856f4f02e16718cc88f7a34
+FileChecksum: SHA256: a01ebf831d94b2adfe24fd8110bc3737d96125aafa64d61553fec7dc7a4587dc
+FileChecksum: SHA512: 64802dfddc90bdebae11f87713c68806228ca3bf5f8c73a39ac2622e9027ba17aad4f5faa806483ff2cb23054e019b7780d2046fb5d5bcce2b8c7cbb20cf5fa0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-extensions.go
+FileName: vendor/github.com/golang/protobuf/proto/properties.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-properties.go
+FileChecksum: SHA1: f9cde0df7f5d7894ccfd4606ed9e5e8ee977d612
+FileChecksum: SHA256: 53bb7d73904452555dbb612b0e9d23df349716962bcc7c99715ca950cc455029
+FileChecksum: SHA512: 4f3f2d0a7e7257d710eda7d83bb7b6fae3049bf52e9596bb709ca4f73d685209b8ce1c2392bb574bd7524d2ab1aa95aa2930a834518d127421587fb495e26966
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-properties.go
+FileName: vendor/github.com/golang/protobuf/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-LICENSE
+FileChecksum: SHA1: aa9b240f558caed367795f667629ccbca28f20b2
+FileChecksum: SHA256: 8778a9fc1eaffb03ab873caae251df2d224f6b5502be8777d3cd573a4dd43903
+FileChecksum: SHA512: e4c458763cc5f8eaaa6d1e6f6924caa95bdfbe6811d85e4d0bd721acf8d3917ed082621b9de58156b6b86b3f9ceb970a404a03db24a3f59c076fdf5b1992b77e
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-LICENSE
+FileName: vendor/github.com/golang/protobuf/proto/registry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-registry.go
+FileChecksum: SHA1: a9ed3c8331a4e5a0a4aca7bcc459a8bce91dc888
+FileChecksum: SHA256: 0ac07db753e5e1fd930340cc5211373e5d9a33f43d3c79cd8e82dccf594f8c4e
+FileChecksum: SHA512: 8d1c052a82362214feaa975c9b9e00623d6f966f0f9b83e1e9dc89e0e2cbd83ccc4fea2a10f8039511f1a8f1e6e94d837241bc03d0c3203f03b7501adb522735
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-registry.go
+FileName: vendor/github.com/golang/protobuf/proto/discard.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-discard.go
+FileChecksum: SHA1: cf6cd9f636ebb9567b16316e6e4dec4a61f2064d
+FileChecksum: SHA256: 9b6a5c7a3dc614c20e9d7d1447327d5339ddbf8b4ebeccca86b4e9e02fe5dbce
+FileChecksum: SHA512: 6f90408caa31fac518d30c0ec71754f6a70827e0a831c74044d26004b31a45de68f0fa7b5e4108e5b926d49a055f43b99cf4f3ed6671acdbcfde7d58ed7ccb9b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-discard.go
+FileName: vendor/github.com/golang/protobuf/proto/text_decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95decode.go
+FileChecksum: SHA1: 1c5ca32f3707fc3d930df5aec8c755b77ffb13f8
+FileChecksum: SHA256: d9828602dedfad903f012d12355e410203b4ae7ce756dfb975edf1f90b3cde61
+FileChecksum: SHA512: de131e2f09ae6ff53ec24538f161c44ae2f5cb80c568672beeb76f28c8da2c9c42cee0e29cea447bfa548d33ff5c2761f3efc85c52182c037cb73800aa5c49d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95decode.go
+FileName: vendor/github.com/golang/protobuf/proto/text_encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95encode.go
+FileChecksum: SHA1: 1a7dd2434c8b0d773b5673143351553e9e4470ac
+FileChecksum: SHA256: 5bb2d39e94cc6bfa40db9903d4890e8d7ec0c09264189887dd4c84844779401d
+FileChecksum: SHA512: 623f9360796416b59c912dea2c93b42c6ba8e5d29525df93b8e57a49ca3852dcd05bdf96f6337bb429d6ff2c84c8021512da14f2a0fd9f32fca2ca7623bfe8ff
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95encode.go
+FileName: vendor/github.com/golang/protobuf/proto/wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wrappers.go
+FileChecksum: SHA1: 503a6b0f0ec6bed67a6cbc36d388a30e4788e0f6
+FileChecksum: SHA256: a4800c509be41c80a54ec37bb186102294be6a2821dfe8415c5cf197e1463cae
+FileChecksum: SHA512: da2269b47207e5eaf59bde5083df1803ba41a0d9477600122eb4bfe7fc69d078573a10a40116ca10a131ba707ac136bee321ecc5acd8349f1f2d8b8b92a1bd9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wrappers.go
+FileName: vendor/github.com/golang/protobuf/proto/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-proto.go
+FileChecksum: SHA1: c9507d18a1d823a9a5267ef2889606f0e111095a
+FileChecksum: SHA256: 214e3d31330c72178866b3cec863ec98409024dd167951dd83eadcfa32796e59
+FileChecksum: SHA512: f438e0ce3c45ed0e9dc6a86f91f5734e249f10c193c3303d1423d81fc103c4383473657dd76814d1b9329bc44007f6cef5206467b0fc78c8559f58796519fa8c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-proto.go
+FileName: vendor/github.com/golang/protobuf/proto/wire.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wire.go
+FileChecksum: SHA1: 3bd653d3a6d517dfc8bb75a1aa023bca6b3fb112
+FileChecksum: SHA256: 84e9dff5c3cf0eddf5f5050c61c94d863cea3f7b2ae81270d0790959f0ca2581
+FileChecksum: SHA512: 608ce5ae521f9b7771f98dfaf27255138eda77bc99efff890cda58ec9862ecc3de89f7b4f04e6c66c45888126ecd4d52f40f6eba7c361d3d785df7dd552c1772
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wire.go
+FileName: vendor/github.com/golang/protobuf/ptypes/any/any.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any-any.pb.go
+FileChecksum: SHA1: 130bb00f00b2e93b305543305e8813c745c22d20
+FileChecksum: SHA256: 2fedeec37abcbc819fe4aac48a6c8902042a7ebf7236769a3a3c6ccec58003bd
+FileChecksum: SHA512: 781f51d0d7398233fbc84fb50004a29ba82ce631893ffec07877725544cd3828410515780083752eca9f5ed6d511c4c8341eb98d97e43815f6a556540ea9cc27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any-any.pb.go
+FileName: vendor/github.com/golang/protobuf/ptypes/duration/duration.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration-duration.pb.go
+FileChecksum: SHA1: 1fccba693e77289d68bf9206045351832739737d
+FileChecksum: SHA256: 21c030e1ede121830e10b0c42659f99eaba2f60487f04a84d29a9ea9cf22f503
+FileChecksum: SHA512: 088ea6498a68f491d1f157febfd889b261c940afa8d2e0c3cba4429d93de561a86d1ff4fb437d538923f88f995f109e7f0f0a51f1f2fad313c39fe27f1d6b2e8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration-duration.pb.go
+FileName: vendor/github.com/golang/protobuf/ptypes/any.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any.go
+FileChecksum: SHA1: da8ccabc29ea1048e61ce906def01d4870d32e34
+FileChecksum: SHA256: 75da4293ce1a9a0d0eb66e00a22804dd4e31d9eaa30ac99737891d32ff5f8de4
+FileChecksum: SHA512: cf6a2d464800d3b32e3e9c62a52a636b931541ef73c6df628c43d3834b55e44b0ab4d3c46ffcc047d6b3d94c9a777850bc19207a584e40da9d219ac15e61e280
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any.go
+FileName: vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp-timestamp.pb.go
+FileChecksum: SHA1: ee7ffc7e8ef8393008dc94ea26b2cd20c9a3bf00
+FileChecksum: SHA256: 694c11bfdc59e16bb641b7b465eede253da82f5c94bae1cea206caef8beac799
+FileChecksum: SHA512: 4b12a210c5f83b89657288a0a02c26385c5973f1fb27ce0a23cf7d41782eba44265ccbd9c17662824cd0e953030fe858f6bfc995f01257524795bfc127643c9f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp-timestamp.pb.go
+FileName: vendor/github.com/golang/protobuf/ptypes/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-doc.go
+FileChecksum: SHA1: 2211fe3750c2e90ba97b56a5632cbd90971157b4
+FileChecksum: SHA256: b5ed50b15ee577d30f374b878156069b4b1740578cfcf70686aa72624e81e4b7
+FileChecksum: SHA512: 28582e94b4fb13e418767b3b05bf1ac5d86da582c1a82f8513ad4af041c4ba083b78aaea3aa978a709d6024deab07d048c8da8f020b8ec58632697c8346fccac
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-doc.go
+FileName: vendor/github.com/google/uuid/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-.travis.yml
+FileChecksum: SHA1: 8c54f64e891af563d05b2be0f8cceefe46fa64d5
+FileChecksum: SHA256: 85c5ee4d345b1ee66b7c71ba3d323068a5530c2310e04c6341415106ceece25b
+FileChecksum: SHA512: 49b2de69c1d64e18a0d3db42bf46731a18736d07cc54a1d2f08eccff33cf69046a00c70a2fc3e83556739e3c39a69ca87f334078c68852539bc0c15833ccc8cf
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-.travis.yml
+FileName: vendor/github.com/google/uuid/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTING.md
+FileChecksum: SHA1: df682ac899830dcfebaf35f3daf73748e59fdd4c
+FileChecksum: SHA256: 3437b41dde90c94f4d66c9125940d7fc9ad371fd183d894a8ab0228497ea4539
+FileChecksum: SHA512: 367f728ef776c96483916f8e4f872e22b9eb5a3593ec8aa58511736a7fb0c7b2122f8e625ff0049885d1a3ee8aafc45fb40c75c47f6365e6c30f0a6418c00477
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTING.md
+FileName: vendor/github.com/golang/protobuf/ptypes/timestamp.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp.go
+FileChecksum: SHA1: 8d096352a6dffd30439841656584f961bf848fb3
+FileChecksum: SHA256: 562835118f4562a7ef1631a81fca7fa7dea68b5ea6eff9b33e2dbdfe7d1a4b64
+FileChecksum: SHA512: 69c99ee68045dc5ff33d5516b247a5c6ebd92eccc8a0890a01e66816d1dc74cfad28bbd36ddeabb118f277cb004c3d64820b312261ec47e7fb0071d9f383404d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp.go
+FileName: vendor/github.com/google/uuid/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-LICENSE
+FileChecksum: SHA1: 08021ae73f58f423dd6e7b525e81cf2520f7619e
+FileChecksum: SHA256: 0a8d61ed3cbfd5312326e8126c31ce9c627a283adc99131b56896d29ada04b2d
+FileChecksum: SHA512: 804d2c26af857d3506a29185eb3e367eec60fb66881b946c0847ed8c171072ead4f18744efbbfb99d2c4a5e19551dc2c22af28badd824e3c71eec66a9eac50dc
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-LICENSE
+FileName: vendor/github.com/google/uuid/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTORS
+FileChecksum: SHA1: 837bb54dfe0f73cacc6b3dba8fa5da0b3b56f11c
+FileChecksum: SHA256: d69e90a1901a669b3cc34dc07e99d60c8627d73c88dd374de488fec4fefd7118
+FileChecksum: SHA512: ac46299e8fd1135e71753d9d6672847647c654c65753a7c5a0fce2f4ac48045192ee66c9ef4333b9682c2f218177bacf38843a5026d94d131d3dd29339e1965e
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTORS
+FileName: vendor/github.com/golang/protobuf/ptypes/duration.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration.go
+FileChecksum: SHA1: d6c062570d0be12f63d989f87d6c3a24a6fc5902
+FileChecksum: SHA256: fc0c0495c43250537f8434a328ae670dd49fa01d498d5d64bb307182660d8217
+FileChecksum: SHA512: 1422ab46289d459bf26983779cf3f039b1fb10eb24e21a470d7109e2cd3725eb199c6fdc5635708f777a803389ce0ccb767c79ea896f0a5f105bf10b4eb16456
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration.go
+FileName: vendor/github.com/google/uuid/dce.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-dce.go
+FileChecksum: SHA1: 02a2efb3ec5b3058950288fa6d31aa6dd4e8726c
+FileChecksum: SHA256: 6a4b89e7f6165a673e76f00bebaabf8d0d7eb4356a672c6cb771d95a45fb2695
+FileChecksum: SHA512: 5d89fd52d285bf9b7cadb5f7224a469ceacfd186663ea95a2012baaae815add9303fc964a214bf556be6e39e0b57f7475efbc5eb5af3d777ab2c2dde530da2f6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-dce.go
+FileName: vendor/github.com/google/uuid/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-doc.go
+FileChecksum: SHA1: a1e6141b5d5301f2f073ec0175793ad43a046e44
+FileChecksum: SHA256: 0b286e2af61ede9f58d2455781ea254284c477b7fce2447aab3203992cc51f9f
+FileChecksum: SHA512: fe64650d7ed4de494025305acf9a2b6c26cbe70924c59ee1f87de6acc7e188c57c0d95305f5ca985dd510aa932f642da5604c559377a5905c34364f87603c0a6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-doc.go
+FileName: vendor/github.com/google/uuid/marshal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-marshal.go
+FileChecksum: SHA1: 7bab98ce43e2b7ba5214f01e58235a05691fa051
+FileChecksum: SHA256: 933eb226d049268e17809fd37f777c650b9ec8cb3fa988534b792610a64dcc43
+FileChecksum: SHA512: 56938af349d49cfbd68bdc4b85a0892baa01ad6687e88bbae011e3e362cf93a46d4d94fce0bb06e43f4b9d944789faff313466abdc19c163241a7300a1e9274f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-marshal.go
+FileName: vendor/github.com/google/uuid/node.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-node.go
+FileChecksum: SHA1: f343ad00cf81aed9a78e8587f56713569e0ebecc
+FileChecksum: SHA256: 73a93d192ca24078e0f93b8c1675e13adb442421252d3974d697b0821c4832cf
+FileChecksum: SHA512: 3101410cf72e011963521420318536c49e2ea781391b6d9f8baf41a10b41d5f241cac6327be8b4e9e0a97042c283f8d038dc13ddde87c12cae5ba251b85f839a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-node.go
+FileName: vendor/github.com/google/uuid/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-README.md
+FileChecksum: SHA1: 48f4c5dc2dd87d803f7a4d03cfd6169817e2b986
+FileChecksum: SHA256: d6b7f5ba069addf3c353be5ee5db15aef27547da87db9e3cf9e28dfc090fb586
+FileChecksum: SHA512: 9f622b4051120356b432bc5254002227d6117fffa8b302c07e120bdf6e0f82fedf606d628e10a3a98d35ec83a71384b3385815776a7a13bcfe30c32d353ad3a0
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-README.md
+FileName: vendor/github.com/google/uuid/node_net.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95net.go
+FileChecksum: SHA1: 19b6df35b3997e9b9bc936af5da9a5255f22fb90
+FileChecksum: SHA256: 78e274b465de8da8690f4ab06281f41025b142c1d093e337fda1d6726b35662b
+FileChecksum: SHA512: b60180b021fae82a2c0865be28672a5e8043a6a20e7a375a56a29f9a1074869aff6d57ddf921ff6a329f0affb2a4acbfe30f16a71f921fce7e0f55353a203114
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95net.go
+FileName: vendor/github.com/google/uuid/null.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-null.go
+FileChecksum: SHA1: c544e7f850ec645541d090031023a8163af51c0d
+FileChecksum: SHA256: 791638f42d54fcf07ac752df6b2df92593f7da308f944465e2cda443dc3346cf
+FileChecksum: SHA512: e277c09969d136bfe29b086ba2b6bba3814779b6d591f0e4f810ca1cd1c7f70823848e9ece51c776f5e979dfdec8754c80c40785fc983d856d5ac28b33c2c5c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-null.go
+FileName: vendor/github.com/google/uuid/hash.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-hash.go
+FileChecksum: SHA1: f86842458f6e93cdba9f223c120efebcce4bbc5c
+FileChecksum: SHA256: a9af4e955bfa0854a9e4c949a09efead471dd1504ce4c2a336cc7a88365da6c6
+FileChecksum: SHA512: 0a9dd5625e9c5ebae62c839a6b5c6b82a8156c02cadc8b93ba70698158dfefcd6af778c8ed5c4053564235d7225261fdb813e36b74e37d9d75df7373bb974c54
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-hash.go
+FileName: vendor/github.com/google/uuid/time.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-time.go
+FileChecksum: SHA1: f5ad87aaae45c7f2dbc5fba2f3b1f8c503c85969
+FileChecksum: SHA256: 057f98f779afbc6d293330f7aa0aa5fcd09541ff008f93060bf644e6fb7df510
+FileChecksum: SHA512: bf1b20dbdd43fe04eeb221a1b078b962f129e1205e5cfd33bff9f4bd03df36d651efd67af44593de7e0f4b32a5467e8b2080212959656ab53126456ed9075250
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-time.go
+FileName: vendor/github.com/google/uuid/util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-util.go
+FileChecksum: SHA1: 24f078505eb1d75e062d1806d871139299a4e2e3
+FileChecksum: SHA256: 755f50afafb13dd89ae6177da7eb6dc31ae650ece2f9ba52821021e9f8de044e
+FileChecksum: SHA512: f61300c91e1ac0614992f11f3b0fc787f85724d2af7f453ba999c4e42cb352157d93817a24a103649a5b4fdab5c61e5b5836873180b69d196f89e410f19ba960
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-util.go
+FileName: vendor/github.com/google/uuid/uuid.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-uuid.go
+FileChecksum: SHA1: e3ee7e32073212db9dcd0a88b71a8f79393f8ac9
+FileChecksum: SHA256: f6e767f1b9e3e5946f600afccc01c0e40f1d494171f2f9d8659a2e15daf3d79e
+FileChecksum: SHA512: b40aac37f3eacb0013874145d78f0affe9f39f38bb4f4b427b40831f7f184b9068d66625cc3b7c7f42aebae0c51248c1b35e44cc1a4a91eee7c038b39e27f901
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-uuid.go
+FileName: vendor/github.com/google/uuid/node_js.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95js.go
+FileChecksum: SHA1: 35e59077bdaea8efef3a3d3d8c87bf950eda6229
+FileChecksum: SHA256: dfefab9417556736eb833e7fcbf3bfbecf1d9e8db589e1d914a87ad98c261af0
+FileChecksum: SHA512: 8d5f8ea27df5b32978a7befcbebdeb89cc02d7760aa2bda74099851b577b5974d15af3c77e76c953ac6942c7073050138ea136cc770036d184f0a93c1638d5af
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95js.go
+FileName: vendor/github.com/google/uuid/version4.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version4.go
+FileChecksum: SHA1: 398a22020d88426d44723f058bd00c1bad2c9ac7
+FileChecksum: SHA256: f252aeb4028659d83cbf7b037d4524f7c9b76cde1fdca1f6f7de310dab6f4dcd
+FileChecksum: SHA512: 969049c2cfbde93e8c049cf6e743441427ab94308b4fda5a473f4ce4b24d293b2256119522860c3c64bf1152e62f7851d615563608fd1674acb8648043d49199
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version4.go
+FileName: vendor/github.com/kardianos/service/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.gitignore
+FileChecksum: SHA1: da39a3ee5e6b4b0d3255bfef95601890afd80709
+FileChecksum: SHA256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+FileChecksum: SHA512: cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.gitignore
+FileName: vendor/github.com/google/uuid/sql.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-sql.go
+FileChecksum: SHA1: 7ca24525c43ce49d0fdc536449ff6389fe6c1561
+FileChecksum: SHA256: 29281b11e8f97f1ddf73d087854cb401ba42a87c4f59ce45fc69763a4d927f2f
+FileChecksum: SHA512: c53a8cfb884a4c850cb973f20ba43e1d5da2dfbda662aabfe33b68caf814bd9ec764107aa12265fbaf2c982c5af1532f027b73f34af1c9310dff938df85e5466
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-sql.go
+FileName: vendor/github.com/kardianos/service/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.travis.yml
+FileChecksum: SHA1: 8b0931e4b5baff5f380015071cdd650d422ac651
+FileChecksum: SHA256: 47bd70148e7a91a1516547235a35e2228de3ac1953e5caf77f63230907431781
+FileChecksum: SHA512: 2da8b4c597e03daf23ab5ddd5f07350a68a318e6657636cb25d63bd8901f84d3b2b67ea774dd5c6402ba58c0df69f431f8a14d25d682a3e4a7ffb268ffeb16d5
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.travis.yml
+FileName: vendor/github.com/kardianos/service/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-LICENSE
+FileChecksum: SHA1: 728bf1c4bf9a93f534c1c18d0a10f7758e032a4b
+FileChecksum: SHA256: fd7885854c9ebd89997ab499a7bf5083c1681e58b6d7cb40a458906d5392d78a
+FileChecksum: SHA512: eff0493e6b84f8359b8709e7696b3e200b93dd5e2a9004d2ae4f1ed037af539ba37ca51c7c97f4d1c0e58acc63f10dcef1aaaac7b229816d1df322bb577796be
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Zlib
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-LICENSE
+FileName: vendor/github.com/kardianos/service/appveyor.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-appveyor.yml
+FileChecksum: SHA1: bf2524f2ecf9f77fa414064f5336383dd2f77c3a
+FileChecksum: SHA256: c1fa01ba2606a6a47d9b7e2e53577b793a7eb5c0de5dbdd5f949f63092befa35
+FileChecksum: SHA512: 75123b94294e3ab9e639fc56b620b7140fabf9fc80121d44d7e67d8aece25725562e0e7018932d4422a347cd7b86edb7aabc3160fc41048c5c1864c3a14430a7
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-appveyor.yml
+FileName: vendor/github.com/kardianos/service/console.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-console.go
+FileChecksum: SHA1: 504a5d927902ccf78b158c86a39f59d0df65e50e
+FileChecksum: SHA256: a59a8418b440df8e8be65e735d0efcd0307dc1f8258b35ac27c652234b0b4a34
+FileChecksum: SHA512: 918eca1fff1d08c2de67d424a1496196bbcc6a69601015ba95be5f637dadc75c7bd42896a90ce25cbd31648da4ce067eef4332db791c9b2dd4eb6b2691c345cd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-console.go
+FileName: vendor/github.com/kardianos/service/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-README.md
+FileChecksum: SHA1: e06fe8fca0d5c33213fec540f8913d19da35e037
+FileChecksum: SHA256: d9e7582607fe3ba768d7d44cfcb40116a11a1f8e1441c60cbd54ae774a49fd6b
+FileChecksum: SHA512: 601bc1fe6f0f978aadfd188976754e08fb9c66bc657aa77b7048270e5204b79d672e510ff3cf57155cc8b279040fdc309e421f89c26fdd5aee368c97984a2a12
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-README.md
+FileName: vendor/github.com/kardianos/service/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-service.go
+FileChecksum: SHA1: 4591c0fd02adf14f4701c02c5b033493052bbe67
+FileChecksum: SHA256: eec771ec704ed1ab7035bb4379663e1e5911499cd4aab19bf5c70d90f26d50a7
+FileChecksum: SHA512: e180c04f8bdf48235bfae5c0aa2e48bf0f9d8f8d4166241dcd6a75d5078d534fdc78de18d622fddc130e3ba7beceae2f819480e79d0677e3572e03ff6b22730b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-service.go
+FileName: vendor/github.com/google/uuid/version1.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version1.go
+FileChecksum: SHA1: 48b1fecbc25201fa0c3c65a3f2ec91ce3e3613de
+FileChecksum: SHA256: 38a2c229a2aad4bb72d45529304f210b1f31e8ef60bbd2605690a10f0d8a8242
+FileChecksum: SHA512: 1a8ac9f55cc4acb96f1a94c02048fb52c4b11ea493904a43c8022497ab5d91aecd4228357a810e539235b9cf7da48f63539e161c12d6ab1b775e57707e96e797
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version1.go
+FileName: vendor/github.com/kardianos/service/service_aix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95aix.go
+FileChecksum: SHA1: 8d3be74cd45fe2c430839cd994699e0d812a88ab
+FileChecksum: SHA256: 9e14d817f3b7d96e424f04970c5c36d30d707a32940ec771aba9732ae1ebc98a
+FileChecksum: SHA512: 363c81395c15660d6a23919dd1091f6c8e5b29a896a2693fc05c42fe2e76b025d5a00a83e4f9d85de7ba08e3b85b298c0a8eedeb8d307fed24826bcbe49a3cdd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95aix.go
+FileName: vendor/github.com/kardianos/service/service_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95darwin.go
+FileChecksum: SHA1: 96e747f63f36b55aa4c65c385d75b492b0f4ecd8
+FileChecksum: SHA256: 5ba2c5b4c6ebd7ed011f75d84a0a758aec4cc613d286a0bd32c12b0bbdaf069f
+FileChecksum: SHA512: b422a8d92298d2c68c137ca04de3d2b90982dee4da02b88d2e50f7ee522c9b82b035b2fe96038150d00a5f7c7ac86ad50135a4b09933bfce241a1d109d15aa62
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95darwin.go
+FileName: vendor/github.com/kardianos/service/linux-test-su.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-linux-test-su.sh
+FileChecksum: SHA1: 0cd4cfffebe9a8c085e22c08d3b5c2fadf190db0
+FileChecksum: SHA256: ea99f0ffdf9bf6af5953fbba314ace974763e6629ebc9f4431d428c689a7914c
+FileChecksum: SHA512: c0a0a2b8588b93ca21903be8e798eccd15799b83bcc65e319625ad12d18510ac9b9fda68e57ffe1254076d03f883f5ab0dff0fd9ea59b0d02256565a644dad6a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-linux-test-su.sh
+FileName: vendor/github.com/kardianos/service/service_go1.8.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95go1.8.go
+FileChecksum: SHA1: 34bb27985319a8876c9dd287bd4fd957e5b88aa5
+FileChecksum: SHA256: c047704cf57738ba6bbdfa411bb3459b623c9836bcfc27f183548462be599298
+FileChecksum: SHA512: aeaf184c2649e11b64d61543b74e9f951130e884f5c88daea347fe646192fda4268cd27827d20702771240268f7a0420b9f55e4281b37bc6ee0907995fba528e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95go1.8.go
+FileName: vendor/github.com/kardianos/service/service_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95linux.go
+FileChecksum: SHA1: bf53af9461981bc55ccbc71f7379b60323719766
+FileChecksum: SHA256: 6912314837ae69e2c4357bfd14bc9f277da539b772af315982d7a3dd0b4ff260
+FileChecksum: SHA512: 06bd33d95564b14fc6348ead604facfa913f656235e90a8d91519289ac61539deb4db649d46e3dd94bc85f6364b2224ade6192b64a93cba9cff25cd111efde12
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95linux.go
+FileName: vendor/github.com/kardianos/service/service_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95solaris.go
+FileChecksum: SHA1: cb7a35bc25cb6fac283e39680e04a47f4ad5d99c
+FileChecksum: SHA256: 5f733f10125433683b7d9a0f33d61c361e9caeaff801cc4e0023712a4a78ca86
+FileChecksum: SHA512: f9e001f2fbfd6e64b64f642fb88dec5dcfccbf533057c8878492b9ccb986bdb23e71c46d5df1de8a2114facd405314cb200af490c807ac3fec8d8a25e30cb4dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95solaris.go
+FileName: vendor/github.com/kardianos/service/service_systemd_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95systemdC95linux.go
+FileChecksum: SHA1: ea70202f2d4ada9ef45c58fffae113f8e371bcc5
+FileChecksum: SHA256: 7a59d41516b617a0ccce88ed8fe15f7b7419ef82097bcc778802757d85b90c3d
+FileChecksum: SHA512: 899548bf5d9ba62621253d5788905fe0b5886017b6f24c30ddde5b63ebbea308a04ad19a16606a7b0102f9ef0f8715689c98be766d9a21dc6839e9644e767efb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95systemdC95linux.go
+FileName: vendor/github.com/kardianos/service/service_openrc_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95openrcC95linux.go
+FileChecksum: SHA1: c9261e92f6e9b3e716c881be6803a4bbeb5ecbe6
+FileChecksum: SHA256: 8343477910a5c6bc2de5c4aa9de6d28b231b5bfd9f4151836424344f2eeb32b5
+FileChecksum: SHA512: 75c8868bb7c303df389c3788079e11b0428c2d204aee43340b71679ec63da1ebff6f33caf598d5b5c7bd7f27ad852393c0a9759241c7f577b6600233f1e94845
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95openrcC95linux.go
+FileName: vendor/github.com/kardianos/service/service_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95unix.go
+FileChecksum: SHA1: 00e041b1529aee9215a7d984bd12ea2e7a9ee50a
+FileChecksum: SHA256: ddebc0bbb46a3b5408189c42d870b606b72e19fc35ad75512e00377a32a94608
+FileChecksum: SHA512: 0ae34f1daaa78ea01ac89d60012c1ac9310e8d6fcc7f58d0fafa5114efad7f23cb165b7e16a5830de75539cc7bf11161a5cfcc5a64fbbc3e3cac6d5071592272
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95unix.go
+FileName: vendor/github.com/kardianos/service/service_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95freebsd.go
+FileChecksum: SHA1: 1e8c19e904e843878ba1d8f517971f7333404b4c
+FileChecksum: SHA256: bba85965281abe3a17860c1a882d68d318f7c6da19b6c75e127c444eac4c218f
+FileChecksum: SHA512: 0dabe589d7b9b3bec4692c20ec5b9441e67d299343e0196585d8bb6d7ec6fdcbe4cd1f6e906407570f675171f1f3d0dfbb1aa28f842399573b64d8e45a8607be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95freebsd.go
+FileName: vendor/github.com/kardianos/service/service_upstart_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95upstartC95linux.go
+FileChecksum: SHA1: fbc1933187966e38f001d10dc412d7b8f9875e7c
+FileChecksum: SHA256: 4be54b492921308609a25f5ba7bc1a7d3b88bd1fc769b3e8a933f4dd995abe1b
+FileChecksum: SHA512: 61b11c63c46af0f7c9c95b14288f2d684e18cbb8eb2c4ff73c6371382e4f294aa78eb35a16bca2a1fa9944b205473fabd71939b53348c45396177e692469bda3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95upstartC95linux.go
+FileName: vendor/github.com/kardianos/service/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-version.go
+FileChecksum: SHA1: 3191af147f5121a9e550ce28b71f721236a2e456
+FileChecksum: SHA256: 14438b943cf5a2c0480cadda4678159c3f88e1d6f5d6c485d483d65895079a0a
+FileChecksum: SHA512: 02e7eab4e37eb73a89eef78fc2a1932ebd324bf161870ecbd8aca8e7061e8aef23396e66a8adef3ae9de19ae8264c46dc82de40157dbb9611d1660d11f19b6a8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-version.go
+FileName: vendor/github.com/kardianos/service/service_sysv_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95sysvC95linux.go
+FileChecksum: SHA1: 669f5e38f19b1daad70c0c5ff21553871bf4c563
+FileChecksum: SHA256: b750feff7b3cdca0526ec7c6a24eb14d611d78e1ca5f5cbd56b9ff2ceab46fb0
+FileChecksum: SHA512: 4d1d5397d9661784a583da4ad502c987bad8a082f9067b49819c0f896efa7d1e0d5a1c3c56117a459b64febaf98c9f833e666b29bdbbf3512d8749c4858da171
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95sysvC95linux.go
+FileName: vendor/github.com/kardianos/service/service_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95windows.go
+FileChecksum: SHA1: 96baa7b74273b75916694621a41e7fdf47b3186c
+FileChecksum: SHA256: 05e5d9cdc9fb717ef797f596fe2404c101141605b2006b890ba95a9071b57b42
+FileChecksum: SHA512: 5fe48a91b6ed2f4e1d0661f175838a67d68d92e9a0e937c64a6f8b30bd294d057a619eaf4bcdb296962869c542756d6b4a644afb3615f6ceabe2e75ebf5730bd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95windows.go
+FileName: vendor/github.com/miekg/pkcs11/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-LICENSE
+FileChecksum: SHA1: a347f428584b1ae13a669c007351ba7885597d59
+FileChecksum: SHA256: 8e069cdd54eff0e36fc8d9aa5d945b3f00a0ea349c8ef2c7f4b88f6e2be75fe8
+FileChecksum: SHA512: 0fd41878d6fe4e7d3efacdf35347ad35904c77f5ee0e69954d12593ae0dd527387ba01d8372925296a21d99e107bcd2280d3e8f7245c6e8939258d642d6c119f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-LICENSE
+FileName: vendor/github.com/miekg/pkcs11/Makefile.release
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-Makefile.release
+FileChecksum: SHA1: 95bf12fe1ab4b3a3e766d49c8e37d7e6cbaa71a7
+FileChecksum: SHA256: eb39e09c0871e29e0e700f8a6383eade3895845b46d2c4defb057fcf68ae9d57
+FileChecksum: SHA512: 47a40f1113077de151102bd91cf8ae133322d237208407d00c767745dee34b9d4030b9da0b503f0a1e058412dfb986f0f5a5a307cbdcbb0c6c596dfee3d2c23d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-Makefile.release
+FileName: vendor/github.com/miekg/pkcs11/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-.gitignore
+FileChecksum: SHA1: 0ee5775bbb41a26d35e4fc5186ebfe45c2c87f2c
+FileChecksum: SHA256: f3d04d16281b3dd79db526d73a81aebd43d56727f5b2a8becf38e0c8b155d590
+FileChecksum: SHA512: 3aa8de2db628249780b051cd813ae0fd6f9128bf911d7b17b915a3e05c8b6c9e5308966ff2f9381f4f6de676dbdcc56f7b83d2ec78fc8219e74253361ec03040
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-.gitignore
+FileName: vendor/github.com/miekg/pkcs11/error.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-error.go
+FileChecksum: SHA1: 581a1f4d7e1b5b644cf022d7e855a468ad6c5eb4
+FileChecksum: SHA256: 3026f9696c3782a8961dbc422c92813b6842f7b920f1c992626c242d57fd905e
+FileChecksum: SHA512: 9e81098acaab0a066083c5b4582f085442f58c1bc53acfb279b834437b246008c6fbe184ec5ceff7b5ce8dd38141233dd0d9227c0a960941258dbc3827165b8c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-error.go
+FileName: vendor/github.com/miekg/pkcs11/hsm.db
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-hsm.db
+FileChecksum: SHA1: 4e37be923b0de60c164255916f7b4815ca23649b
+FileChecksum: SHA256: 1c00b9cab55f6280e4e647832d151bc88eff131a9e65d260a1865b16c2c24ac3
+FileChecksum: SHA512: e7668495d87d550ac48df43dc195557389d8d2af08e922fcb17c366c8289be12258863fbd92f4868415cb562e4657fa66ef3a74a462a92fbaef03eea1463bbc7
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-hsm.db
+FileName: vendor/github.com/miekg/pkcs11/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-README.md
+FileChecksum: SHA1: abfa39f613655955e038f0da6b62f4fc7917dd25
+FileChecksum: SHA256: 18d83db0f6af32ca6627b9f0c808c391ce6b27a30e93d4b4a6d73b16dd75f96c
+FileChecksum: SHA512: 276edba6a2f95ad0b2d9eac6b27fc526b21fa2b2827eb60d7869e03690ee6ab1386d7656f96c57d4f3ca0e731eb8e463cd86a00d06482395bd84d0a4b66b21bb
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-README.md
+FileName: vendor/github.com/miekg/pkcs11/params.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-params.go
+FileChecksum: SHA1: abd5f730853917ee6209b84b1f94368d74b64d0d
+FileChecksum: SHA256: 9d47d2c17e9f740494ac53d6591e09d323d2a55161ef64dbd269d1e19f613571
+FileChecksum: SHA512: 52966a48d18cd398fb0518891a3d8523a5d719b266e73b7e52bac5e2beebb70bebba51c664c210e26523441d7994e316708888c69721c62b1fd75922d20d4b1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-params.go
+FileName: vendor/github.com/miekg/pkcs11/pkcs11.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.go
+FileChecksum: SHA1: 1a51fd12420e17446872b3a938c110739bb5712b
+FileChecksum: SHA256: 5526f04171876c4a5cbe8e0791cbbd91ec0680581a19c1e1b8e45383b17b93b5
+FileChecksum: SHA512: c856b2faf1e82473e67e7d1a35488449fed00337f509e8b4c221cc487f56f8ccda28be4af2aee278fe9b45e811d96e7aec2120efc819b79d1641c202b4263779
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.go
+FileName: vendor/github.com/miekg/pkcs11/pkcs11f.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11f.h
+FileChecksum: SHA1: e75b76f6c0ee7e686f07525e929b665993fdfff2
+FileChecksum: SHA256: a85adad038bfc9dad9c71377f3ed3b049ba2ac9b3f37198a372f211d210c6057
+FileChecksum: SHA512: a6bbf3910deb122d7be88ae1af98d25cd66cccccd957cbcc02c740ba59e7d2eeb23f9558477219e69197ab1ecce9a90724244891b13bfed875b1032c8ab96b3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11f.h
+FileName: vendor/github.com/miekg/pkcs11/pkcs11go.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11go.h
+FileChecksum: SHA1: a8da4cbcb916178f303c49f968c84783ac4513e8
+FileChecksum: SHA256: 264876981b3074540b8d198cdc2f0a8d9cedd663ad699e6832c535ca92c77504
+FileChecksum: SHA512: 8e40243b0ab36da639b3c61fadb83ab3bd7d1cb1e3bfbb5b1683be0edf9237638b6b3acdd7c06fb5c20ca1b0d14e7f91f4deaaac325028472d36bbdb6d997c28
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11go.h
+FileName: vendor/github.com/miekg/pkcs11/pkcs11.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.h
+FileChecksum: SHA1: 1b03c80c5e68f2f82c580843906df41ed5c6886f
+FileChecksum: SHA256: 8bb7aa1aeaa328b6a39913070d6f3d2bdeb9f2c92baf27f714fbb4cbefdf4054
+FileChecksum: SHA512: 1e7ccac2daf67a297c9d4917064049afd0070a8c76dc7a4599d260ad1d6005093be597a3f87038c56438184fa2b30c6d5ae0ba54c95d183c96660a12bb0deaf1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.h
+FileName: vendor/github.com/miekg/pkcs11/softhsm.conf
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm.conf
+FileChecksum: SHA1: 11f89d095e74484220035d687c7f7894b01334cf
+FileChecksum: SHA256: af9d74f91e4404e144204e8ebb8fccb00451f70c2dddf0174f2344a80afa2a40
+FileChecksum: SHA512: d9ccc14e369830b5176ac595adc7091dcc80b154e00616647e99693e2d96216d6902f47f206a56d3cae5e672b1cab22b6af8b1660dd1a88606577e2603927ebb
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm.conf
+FileName: vendor/github.com/miekg/pkcs11/softhsm2.conf
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm2.conf
+FileChecksum: SHA1: a23faa170dbc2c50a28915202f7e4f1c178a9550
+FileChecksum: SHA256: 6e97a1bb0d055eed57919beb47298305a82b03090871f05d7b7efd841e4b810b
+FileChecksum: SHA512: 2fbfa86f6d07b76041126403928483f08dfcde8c185589b57c4fe6cc4da2e2ba4247322664f4966aed29d2ac030a5666dcad62c9adbdfefe671523f516a74eb0
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm2.conf
+FileName: vendor/github.com/miekg/pkcs11/release.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-release.go
+FileChecksum: SHA1: ff634917fd425790553669082f35b5f79f8bbcf3
+FileChecksum: SHA256: 8a5eec111db252bea24056303e21ed670ad1928d6e9073feb2f3522521e942dd
+FileChecksum: SHA512: c6acb4235cfbdb03e48e371966cdd891e3337d2d2605ecc847e9a92c281c90ebe309e042935b3ecfb4eb95858147db5273d589ea2d8886c0de9f2d6f02daa6e6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-release.go
+FileName: vendor/github.com/miekg/pkcs11/vendor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-vendor.go
+FileChecksum: SHA1: b421c29a9c77c1733d321a79ba378b3ad1c24652
+FileChecksum: SHA256: 19e6daf7231cbb0c2536a809f53ddeccf841a4094fe16665fd5e24ab278b033a
+FileChecksum: SHA512: 1992e13aac1ce0441040de360fea620915f5d4123cc75856d206ecdbc15ba44fd87a4836955a8e53cb6fa829b65a0fe5f7c7663b00bcf5641bbacdfb6ab13e06
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-vendor.go
+FileName: vendor/github.com/miekg/pkcs11/zconst.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-zconst.go
+FileChecksum: SHA1: ad2b5f71c2603774370877722c3f8dadc6108f40
+FileChecksum: SHA256: 50bd66b68ea070cc23fdce25a01cda62a042f374ef5e81b7730eabadb03c6295
+FileChecksum: SHA512: 195e43679ee17c09e49914825b8a74193ed00cd6be1d131112fbfd8b9c0d4b3ef5d69f7b0e168c55dd99437c4e26b8c3507ee311fcf9e0c6103e14e6adef37c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-zconst.go
+FileName: vendor/github.com/miekg/pkcs11/pkcs11t.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11t.h
+FileChecksum: SHA1: 4605fe2f58315a7384d60e6c99815504e6d586fa
+FileChecksum: SHA256: c7c9b49add3f53d77ebcd0e23b37bbd63388f610b02e68d185bc37f4b37c344e
+FileChecksum: SHA512: 042bdf604b0555c677627a96288612ab6e5040b73a76c3fd744362b1261c014767cd7aa00597168cf0a703c8f2551f5ba8fe8938a13a2b5787ac0700d36daf61
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11t.h
+FileName: vendor/github.com/opencontainers/go-digest/.pullapprove.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.pullapprove.yml
+FileChecksum: SHA1: e5b82139c0590739b59e052e4d35804dca51c671
+FileChecksum: SHA256: fa428cea557dd43923fb5f8338c49109e8f320bfc4d62d4d7dedee75889ca59e
+FileChecksum: SHA512: 89cba5b2dc3240fe3e8f25139860fb96f48291c93e5b02bf4f5d12141453da8f7c649544c0a15ccfc0db8a5fd7deac6d802fc2284acd148006e022e82c007b77
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.pullapprove.yml
+FileName: vendor/github.com/opencontainers/go-digest/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.travis.yml
+FileChecksum: SHA1: 649ec88efe5da849a24952bc46d387a86ef5ca44
+FileChecksum: SHA256: 2ad656e0e1ebbf6e2fe44cf2041b1b52f6f32d2c7fa8fc7db4aedd80596ade22
+FileChecksum: SHA512: 46e6866af864e3f5df646ef035d977fe654c2b3614b30854546443ca4f5e06ce5da66fd6f59e28b91cf71fc8cf83b60d543cf479300d17cc2bdd9fef1365ec5b
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.travis.yml
+FileName: vendor/github.com/miekg/pkcs11/types.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-types.go
+FileChecksum: SHA1: 60905ec0e6e8c1ee71d994015c782d0f95f7848c
+FileChecksum: SHA256: b8b02829c01f19cc3244773da445f05c19ab13e1a76272a48d42f891a2230f6f
+FileChecksum: SHA512: f9757e8e4999f11382b5f613c81f5b58bce85304bb3048855a52edb80bf63465f813667f5ffedae5a62cbc599a78a3a623963ae263beab48003ca78334c2444c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-types.go
+FileName: vendor/github.com/opencontainers/go-digest/.mailmap
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.mailmap
+FileChecksum: SHA1: 7464174afba16efde500e0b4d5ced8e375858a7a
+FileChecksum: SHA256: cfd835322593a5a80928b33a999801d7c3ec982f18c11b30a126b95f294b268e
+FileChecksum: SHA512: d48a262f6147ba6c43a4c3a9adfc9d8c41b6c79d67485d7947d020ce106390aa20206e2d4fc125040c9cfc4974e88ec324fdc6bcec6a8af0593db8f8820ba1fc
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.mailmap
+FileName: vendor/github.com/opencontainers/go-digest/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE
+FileChecksum: SHA1: 93ac97c9679b68518f1fd7de627ce2f77f44082d
+FileChecksum: SHA256: aceb55133c41c50c2e170c5918e301fe74f592d0f28724bf2f7a7bfdcff1fc5f
+FileChecksum: SHA512: 6e87e801e4f5fb306f4a3eb4b8611b11e32bc882b61aa2e65d6cd4bd626dd2240c671459adab98336bc69f7dae099d6d46dc97e7430d926f11a6227f769893df
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE
+FileName: vendor/github.com/opencontainers/go-digest/MAINTAINERS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-MAINTAINERS
+FileChecksum: SHA1: 10c0540aa14e761af81bbe9a12d9bd20ea7c236c
+FileChecksum: SHA256: 5a0a021201181cf76ea2e4da630ee132cd38d9773f9c85ca8aff900722b6224e
+FileChecksum: SHA512: 23493b4ffe006a61631ad8edb429e87e46f3d1b97bb9a0e9079de06eaa1893e0082ac84d5cbdb2d1c6c58769d92b4e326b3c5e21f8d283a568b25c827f7e1f0a
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-MAINTAINERS
+FileName: vendor/github.com/opencontainers/go-digest/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-README.md
+FileChecksum: SHA1: 6dc19e11efda1a1c3e889aa25ff70d11e6d7e495
+FileChecksum: SHA256: cde5e79ad3a2c65cd30a5df53b0f990480ab632e9305065a8162ea204d7e297b
+FileChecksum: SHA512: 802b5511184a92addb889724e8331130b3a34284bfadebe9bedbc40cb20bcda1e1d3a1b489eb030bbe997368bc85ea17c1929185ce750694fa0493183d7830de
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-README.md
+FileName: vendor/github.com/opencontainers/go-digest/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-CONTRIBUTING.md
+FileChecksum: SHA1: 83f0b7ac2d336b0244a51bbeca029de831329ff1
+FileChecksum: SHA256: fb512f2ece90b27f3ad91b418c5c5be33a81411e8308b43a83f9e6347742fe08
+FileChecksum: SHA512: 5e9f5e9c42a605519133cbd2ba91f7131870370a7afb1470c24393a39a01199ec71f9702173950594b8aa453d824bb4bfe2f6492b2e3cfe4c33f1742456a922c
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-CONTRIBUTING.md
+FileName: vendor/github.com/opencontainers/go-digest/algorithm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-algorithm.go
+FileChecksum: SHA1: 89f16c46a4c90553f276a637d48bf388dc4cc768
+FileChecksum: SHA256: 08686864344716dad0e1b8192c53113768cf1d226947fa6d562600cdcd5f947f
+FileChecksum: SHA512: c2fa821294ef290e4c07bdf07886acf1e9714c5734456c996e5184a8eb7c995fe3a436258a3967a8a9a1d87f1e3000934d95f0e291e941f66d646fac0584a924
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-algorithm.go
+FileName: vendor/github.com/opencontainers/go-digest/digest.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digest.go
+FileChecksum: SHA1: dcdf7bdd6269697ef6e3920861c7c0a2259b080f
+FileChecksum: SHA256: 95c0eeccc1f159c4086480a10900d622ec8319dc3890e679cd6079e98f55e35d
+FileChecksum: SHA512: 5e5b10e81a1fbc16309beafa5118820bd08dd61f7129fe18e7806a204794e9379d227d3eee721ced90320bd268597bb64449a363a91a0e29273ec920bf7a551e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digest.go
+FileName: vendor/github.com/opencontainers/go-digest/digester.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digester.go
+FileChecksum: SHA1: 4cc769375b8a7f84c8be5935e5b61925fadd087a
+FileChecksum: SHA256: 5c4574e0855ada2e71e4672700485807b4f507c2c8a9f79c700969fbea4915e9
+FileChecksum: SHA512: 1c91fde49a23101e1dc1ae1e0834eef7283795e97da29d3cb3cd3438d32c2c10779cd87f872f19a7e6cecb55d25e68d8f8832bc82936a5bc543afe12fec9d61b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digester.go
+FileName: vendor/github.com/opencontainers/go-digest/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-doc.go
+FileChecksum: SHA1: 15e32f78c0b8aad4943c5d30aa41b6123acd786e
+FileChecksum: SHA256: 7628099ea90a7c9f9fa2ee462c62dfcb9d6eb47a55f10ab53638bafc0c866f2a
+FileChecksum: SHA512: e6bcb90cd09e62b889673945f4384fd3fa7f4c4c1886ad3a259141d8a2426820fd64d94481d6e2b0e8f3e6a2df7deadb3d8d85a40392710b85074efaecb2b13e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-doc.go
+FileName: vendor/github.com/opencontainers/go-digest/LICENSE.docs
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE.docs
+FileChecksum: SHA1: 979fd7d5c67073b265d96f584aac3de1c419b8e2
+FileChecksum: SHA256: a1d1adec3ba691ef6e377a78bbe9e9e2501f2f4a1723d08857da1ac6564e4fed
+FileChecksum: SHA512: 0de1f757b8c3ca45d267da63f95e058ece029e9ce727ee33b89c8eda98e356a0e9b928d7316825c30fdc2746c864ff3fb81c224b6c8da7ae5fd11bfb2d8e7878
+FileType: OTHER
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: CC-BY-SA-4.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE.docs
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/annotations.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-annotations.go
+FileChecksum: SHA1: f3aee2f4608633ae2196b692e22e481ba6b8ee75
+FileChecksum: SHA256: 7e15968153a0b6cd1362f6c32496e4c8b401f0265337331476cfcddf22ebdac4
+FileChecksum: SHA512: a6cebe370b7510521a104e39e599e9d67b9b469b6ca8c582c9955d24ff6840d73646bc333c7e75fbbff090cd6579db3e2022c472a10c512b8a31a29557427f9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-annotations.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-config.go
+FileChecksum: SHA1: 9e374abb32ae7c8493adf962d425726f95313a38
+FileChecksum: SHA256: 53a0c247505e9288242594b9b205ad4edeb728d96b9d500c377e42700ae25745
+FileChecksum: SHA512: 6dd55b1b5ea833243445bcb7ba3df7fe9e6f52e72045afaf935a3497db9e685c925b72359b5ea7a13d1285af869582d4f535929b3db8688457e09bd48f990389
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-config.go
+FileName: vendor/github.com/opencontainers/image-spec/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-LICENSE
+FileChecksum: SHA1: 298850a6cdb155f54cfa44641df70b36228ed031
+FileChecksum: SHA256: b0a3f39513927db306adabea11d14c23f079d4febcea241d123a68d1a0d45418
+FileChecksum: SHA512: 01379f3c8874dce084fb767d58563b6f1e15801e4849969002ae26a0c64dfa1dc01211be808a47f928296bb73a32d071d475e3610c37d01ea7a8b4e4dd7112cc
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-LICENSE
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/index.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-index.go
+FileChecksum: SHA1: 58301da2fe1b34da9413ebf6dde9f97b0e38a159
+FileChecksum: SHA256: 7cfabd03a310dd40c39d1a876d31a49286d72a9f11df132c75dab348dbc94889
+FileChecksum: SHA512: 8aad81a4e89d2c847a4c3b03c5fd4ae15125db5be136f997a7986bf88e47b31a4e1dc2ac73297fc98aff7c9016007a9ac91bb307055336c3b71ca10b154fa644
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-index.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/layout.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-layout.go
+FileChecksum: SHA1: d6dfc4880b07ea6a1703114ca7bf05a8c129fad8
+FileChecksum: SHA256: 8c0a1f3079a5c97c647df76ddc86a39e9df260e58a5ad7dab6e3fef11a051f84
+FileChecksum: SHA512: ea82e1a5d1671d2aa15ee816ab0e51d2ee92c638d24818f5d916b5082e73a3b75e590acce415baf86e82cfe965e55c7fc5b02cc46061a0bc0fe907448cc0c8fc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-layout.go
+FileName: vendor/github.com/opencontainers/go-digest/verifiers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-verifiers.go
+FileChecksum: SHA1: 53da9ea45795d03d78fb8affd5b890d68d0c81c6
+FileChecksum: SHA256: 34322216519ca4b78afdbf629e6536cf27bc7eb40adf5d1e1c1f77da5cbf38d1
+FileChecksum: SHA512: b5573a558ef6a03a914744a2476ab8c95a52bc68e3d75d0ef52d23c2d29aab50f2765c86c7aaaf90f6ab0045647cb3edaa33bad6c9ccf64cf85c757b7547c196
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-verifiers.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/manifest.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-manifest.go
+FileChecksum: SHA1: daefd51fb9efa604ee0656887b44ed461aeffb1e
+FileChecksum: SHA256: ae938729e5b9d4a21712a3b621d94e3284681ffd2d98d0f5b86b1b89e7b458be
+FileChecksum: SHA512: 17fd7822adaec30cef389933fe3eb22bfc006f38159fe67cf142f80b06a97f2ceb3452214292b6ff6e50b561f4abc655f12be8aba007d16019bcc88a2c5c1c64
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-manifest.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/mediatype.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-mediatype.go
+FileChecksum: SHA1: c75bd53f5ecb998fa44e55fcfd9d8bb28d9c3a0b
+FileChecksum: SHA256: eb43e04d3adc97e3eb604d4ade6615a6835d5881b6c1dfa4622781b77a95cf38
+FileChecksum: SHA512: 7bc2297740ed616282b91d886654820707ebc94636a2eb128e8ce41f8e4719e7710006f433e4094a79abb26592143a094c8cb8b14c2d7886289567feebd50633
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-mediatype.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-version.go
+FileChecksum: SHA1: 01866d3b0e116f1c987567d785da434532d59131
+FileChecksum: SHA256: b11ae6d0ea79c955b23831f856647a1af6a9fc9b40f2a2dec9daa467afd97c4e
+FileChecksum: SHA512: 6f859b8af60362bc07857de8eaf872d7c95df52fc20fe0f373ed15828b326878c660e08ad90d4e15d0c202f55437eed71f3a7db516136f3e413b08113275b964
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-version.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/versioned.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-versioned.go
+FileChecksum: SHA1: 5eca66943d6b2f3307b0817ad4f2e02c8ee9ed80
+FileChecksum: SHA256: f77b6fc9f0f79877adcb66f0b2d175df1c5690664db60db8920c812e91b422fa
+FileChecksum: SHA512: 453d441e1fd590b1602f39b3099cfb773a177e048bda59ac238f61418c00c20e2f8f4ddb4e1480dcb3fa0d1313bb2c7e44e46e4daee41d71eb720d7836466533
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-versioned.go
+FileName: vendor/github.com/pkg/errors/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.gitignore
+FileChecksum: SHA1: d9a6d2ae7e2add88179e429f787e6a5b2c7b1133
+FileChecksum: SHA256: cb568f716e3315bcebfc75bbc274b56577c2734ec3da6729ffac15919f416240
+FileChecksum: SHA512: 2bb81143328929299fc309960108c9fb7ea45410e0f1904cd30e8ecff02f75c531997facb35cec5be600a9fb635e9fad24fc81abb12a5d0e97289a99124bf4cd
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.gitignore
+FileName: vendor/github.com/pkg/errors/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.travis.yml
+FileChecksum: SHA1: 90856f3c6dd6cfebe6faf3d1970d3b7678c0e3e1
+FileChecksum: SHA256: 94b59f3214367453c739d213f2147c342397bce8d2933f275dd0f964848fc564
+FileChecksum: SHA512: 802b5888cb767863d1f30805b1e22ccb7fac222bf6d9a00c8238ed078f992397e8c4310f746082fdf9b6e303b287ae760e0d03947478f067c5f696d2cd8e2458
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.travis.yml
+FileName: vendor/github.com/pkg/errors/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-LICENSE
+FileChecksum: SHA1: 9c1bedc0d42f24c24a1bd266f3ce101a4b0579fc
+FileChecksum: SHA256: 8d427fd87bc9579ea368fde3d49f9ca22eac857f91a9dec7e3004bdfab7dee86
+FileChecksum: SHA512: 76bed8bcf00ae10c0611bcc4c3a569b991382ae58d8203fc462d0105064979dba584269e7a7a84b18aca0b6a07ace91c05ecbb42ce64cd3c887f8f498f5d9bac
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-2-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-LICENSE
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/descriptor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-descriptor.go
+FileChecksum: SHA1: 5710b08942cf528a4a963d21a8a69a7c6d507977
+FileChecksum: SHA256: fdc32dd83b9912adb1f534e89a1e6c46164fc0bff4aca9162bc386b6ec0e1b3b
+FileChecksum: SHA512: 1ac09198e72fb66b4f2fd367c151f4587f6980fa406e5edece5aa4ac6707ab24329f49abb5bfd150adfc129f057915672fd86b0164a10986a8787c57ba9d597a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-descriptor.go
+FileName: vendor/github.com/pkg/errors/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-README.md
+FileChecksum: SHA1: b653bbbcec0e9c4d6b9db4e338d688ad618d4af7
+FileChecksum: SHA256: 05f05fab4a6768d101da9f87b3ab341a1ef02576eb1d14ca39965658b0ac088a
+FileChecksum: SHA512: 68c936de7803f85d7c0c89413f46f4c82c1e5d16fe0fb0015d9955e3c05d4fdd7432d5a60c326cf175702dab3361a58525f0f725ff81d762af02cea34899d632
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-README.md
+FileName: vendor/github.com/pkg/errors/appveyor.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-appveyor.yml
+FileChecksum: SHA1: ec0c79adcfaa68d65dbb62cfb67c5ee5fdfcc8cb
+FileChecksum: SHA256: 96ff26845daa1898b920e87d9773d851ba9ead739da89149b56cf37dec7e647f
+FileChecksum: SHA512: 48baec84da66a723eb9d2ac5b07cc1e0b1f100bbdee9cf0cf2cd995f7e6f2372bad016058b42e0d48a51c564974138769bc294b0b8b851c0786e27ff4c2b18d0
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-appveyor.yml
+FileName: vendor/github.com/pkg/errors/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-errors.go
+FileChecksum: SHA1: b29987acb2f9aea4f2407ef877f71553173825ff
+FileChecksum: SHA256: 1b60ba5bcb417f0060d1c1fbcedaa1a702020499094ce8134f8b45a58c0ebbff
+FileChecksum: SHA512: d2311f1e9d275150c221f0bc3300b55c79a1338dbd380404562b74f755a378c47574be49e8dc8f3453261ea5156967d26b2ebd6cf78cefddac5a603f82bb1019
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-errors.go
+FileName: vendor/github.com/pkg/errors/go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-go113.go
+FileChecksum: SHA1: 1e08ef88a6199f8299330103663af1d10b6c917f
+FileChecksum: SHA256: 376074468c446254f347c884cd0c8137aae395a7a30fabb06ad19f211ba04d47
+FileChecksum: SHA512: 2d6ef8c11132242f50e76c9cd1d6bdba85fabc0743020322310fd60c5082acd8661101422d8448cd4359d5145893f489c33868e6c987c6d15d02e812e76c4a0f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-go113.go
+FileName: vendor/github.com/sirupsen/logrus/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.gitignore
+FileChecksum: SHA1: 63d53f0681bd8d9e47191fd302719af3208a5ec1
+FileChecksum: SHA256: 17aacf0ba3e8284058560b936a77f5dff0ffa8104815523bf14c2f5af719be9f
+FileChecksum: SHA512: 9ca4639d8819cdbefdc8c8355eb61b85111b8d7910ded78cb8f932c7ba5ba680676805693803888fa30dbb63f54516acf28a70cd1936c4eadba3cd97027a9da3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.gitignore
+FileName: vendor/github.com/pkg/errors/stack.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-stack.go
+FileChecksum: SHA1: e5e9ee8d35b9a3a82b0be971dfebcd87c47e14cc
+FileChecksum: SHA256: ee30b2b9525acc7749abb992f150e6d5673c63c1ef8c30620ec70eed11abec35
+FileChecksum: SHA512: cb0c693e9068abc0dc4c1ee2bfff7b9c3fb1619efab49b1d2704f0178dd1d6f642de819aec6ad12c648e6f2aa94033d53a4e4896da7606fe7c122b2c91ed7455
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-stack.go
+FileName: vendor/github.com/pkg/errors/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-Makefile
+FileChecksum: SHA1: 1bea061d36366e37bb529178d93a40d5feb70b63
+FileChecksum: SHA256: 5cf1acb1821fb8cf033e95c135e14b42fdd0e2feaa30ebeb351fec4e3d2db621
+FileChecksum: SHA512: 4f72dea88618cbb654660755d429b1f9e81702b2ef2bcc8de0d8e9aa6ef76be2202fd9823d0bdb9f6e42361bd830a01d3ac88f4bfc62772fc3c4bd440a0cdaab
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-Makefile
+FileName: vendor/github.com/sirupsen/logrus/CHANGELOG.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-CHANGELOG.md
+FileChecksum: SHA1: c4bee55732818ab7eb6014214332431d8a3bdeaa
+FileChecksum: SHA256: 0db9c7981268925ad3b47d40bb99784b49b3a3aad50e59cc7d6fe40276f3aa29
+FileChecksum: SHA512: 18aa49a116725940ca37336ba11fb14e16915027b04f6ec5ecdfb5e9f93a5af5a0512d9185eccc4608d19153fff357b9fad019e297a5d8368462e39f6542d16f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-CHANGELOG.md
+FileName: vendor/github.com/sirupsen/logrus/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-LICENSE
+FileChecksum: SHA1: a1c7852c717fed2c9a0284ed112ea66013230da6
+FileChecksum: SHA256: 51a0c9ec7f8b7634181b8d4c03e5b5d204ac21d6e72f46c313973424664b2e6b
+FileChecksum: SHA512: d77d69b38af0b61d4ec0cc68842682e17c2bd1cf92f1784a9406f5075fcc4038f17ea99db5813da0582590e7486544c25ee6a09b508e87cf8b3a13291a0e6f63
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-LICENSE
+FileName: vendor/github.com/sirupsen/logrus/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.travis.yml
+FileChecksum: SHA1: ccb8cd85966d8178bb786e0d2fc7147398e456d5
+FileChecksum: SHA256: 3ae07eace04482a941a7a4dd69930f9b13af96d740b52b9411c496a0ea47ff96
+FileChecksum: SHA512: 729769a95af8d142308c28c3e6730dfa31b4b9c268fbcd656bbcea678a9a1a9bad7b6bf955a56dc2cba9f3aa2ca091eb20bac58f3b528061132285f811647864
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.travis.yml
+FileName: vendor/github.com/sirupsen/logrus/alt_exit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-altC95exit.go
+FileChecksum: SHA1: f5c33ecddb830c33c20b0f308786e02fbb6bfceb
+FileChecksum: SHA256: c844abfe101bece1754d8160b573c8b029ea9fdd2c0aace86fad7a0667005fda
+FileChecksum: SHA512: c0ce5955a93f8b6b227acdf44187ffb8df1a657925dccbc984745ec324deede5b64714dcf1a069f9e012fdeef3a9655366d34348390ceb87e2cb8b3b2eb7bd53
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-altC95exit.go
+FileName: vendor/github.com/sirupsen/logrus/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-README.md
+FileChecksum: SHA1: a46adda13be793cd3cf86a64735d836be5e9ec1c
+FileChecksum: SHA256: 3352462fb180bd23e721bd11fc842aef4c6ac42c3269d1155b20af15ad463136
+FileChecksum: SHA512: 44cec056c3090526c676df5ca4b4b46a5bedd2608c9cedb5f58ddd4b738a3e6fd364eb3b0930e44c02d45c0b813e0a6e300ad09ad13ffd5a268606deecbde484
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-README.md
+FileName: vendor/github.com/sirupsen/logrus/.golangci.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.golangci.yml
+FileChecksum: SHA1: 3e9daa2dca055e5ac7939f75e4bc2f8677d617e5
+FileChecksum: SHA256: 44af0386239e14a06aecedb1a0ac247fa88fcdb3b65b6e74becaa5219dd13cf7
+FileChecksum: SHA512: b026dd9a036717af0b9cb1221c3e308628a5963fe6bdf78d0ce761973786a8a1e85a2b4919e456c207a720f9a5554e600b7ebbce1bb9393f1c29ed36b0c45ab8
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.golangci.yml
+FileName: vendor/github.com/sirupsen/logrus/buffer_pool.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-bufferC95pool.go
+FileChecksum: SHA1: 1798c2370772df6408e4894055fd674cbf85ecdb
+FileChecksum: SHA256: 025641277148cfd7fc8e479c73f2b486f8b98ec6d3b449e98e2db0aed28247b9
+FileChecksum: SHA512: cc1549e3aac2f36c57382a538b4303f2be05e44a16423c94f0815ec9c3f270b30a3da81a07a8612cf5a0477ee56452b5df7f75ebc14cd6af729aa0a84c9a69c2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-bufferC95pool.go
+FileName: vendor/github.com/sirupsen/logrus/appveyor.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-appveyor.yml
+FileChecksum: SHA1: a4fc79b1cedfa65375761c9f83b8263b3194a954
+FileChecksum: SHA256: 9164dad38a262f17c041c92744dbdd6b312430de1568c302f18d1eeac8c906cb
+FileChecksum: SHA512: 8e6e162a29feff3a2854f712c886175d29282208032b570c8938d4f46d01885947d3ad039ee6b697ef154a7d82ca57a077e1a0b082a42fa19e4efa86b4362d29
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-appveyor.yml
+FileName: vendor/github.com/sirupsen/logrus/exported.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-exported.go
+FileChecksum: SHA1: e838092d920533c2e836a39104b99f3154a0fea7
+FileChecksum: SHA256: 5525c2eea1b6c070b961e638fc5fdfb30ad1a33ec246d21ea73d5b46255d6406
+FileChecksum: SHA512: a0493c3d5743a0cadcdc2db001fc4ae7252cac9a22c163157bcb00626b175b8337bda0dd265f51cf8a554b2e66756787d9ead59239dd43f87a10574cf949096b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-exported.go
+FileName: vendor/github.com/sirupsen/logrus/entry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-entry.go
+FileChecksum: SHA1: 994ae192bacb84b5e485647749d988730ca9f7dc
+FileChecksum: SHA256: ec9b5edd0bf9be078386886f998577bbb5883042ff66b249436b8a682d5caaa2
+FileChecksum: SHA512: 0df0a4884e9a2154e892845f7ad95afa840022214b6b8184fdcfd8f49a4aec57630752455a404dc5ac73cef9663f03be9c15588080b05008c9dc5b3ac3b5d9ae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-entry.go
+FileName: vendor/github.com/sirupsen/logrus/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-doc.go
+FileChecksum: SHA1: 21508af92661078357c4f0a7608010e6f7cc8277
+FileChecksum: SHA256: 0efb7629301960d88e1e9e32e7b69391c21e9639d21b276872f0cf69051d11a5
+FileChecksum: SHA512: 6bd55dc9d98550a334dcd086a79247969c2e2c4c9fa82f4d374fa37b3960d4182278eba88ecac5bee1c3dc52800ea8ed068ca016194c7f4d2a5e1dfebdfdc1df
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-doc.go
+FileName: vendor/github.com/sirupsen/logrus/json_formatter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-jsonC95formatter.go
+FileChecksum: SHA1: 3e8bfd827a58d001de4eeae08f11be6253557975
+FileChecksum: SHA256: bdbdb3c9b1c47763986fbb226a410b008425d5cbd4a9042af750674edffd5cfd
+FileChecksum: SHA512: a3d0ca04c0c14b9d0d70f8969f98236bc676893486e884202431b288f28b485fb4a881488a819a0c1df5848e678f2ad9d035faa103f6f66fcef0069266ec7f1c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-jsonC95formatter.go
+FileName: vendor/github.com/sirupsen/logrus/logger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logger.go
+FileChecksum: SHA1: a65085b6f8ab3fb38c4e240a62f93099a66bbbcd
+FileChecksum: SHA256: 526975220bd2960cfbedc7f87d1666a53e774f920809cfbdb906727d9e1722e8
+FileChecksum: SHA512: 6f8d7bcd0fd6216d29da18f719b7c4f932c14f5b3ff9067f496e877204b06a7d56407d0e7b4917e451618269605d178b5dcbcd516f004b3c21c298f3f75d7146
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logger.go
+FileName: vendor/github.com/sirupsen/logrus/formatter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-formatter.go
+FileChecksum: SHA1: 0a0c7633c4d3fe70d6d305751f30c7549c0b3a71
+FileChecksum: SHA256: a5946d1302067a39ee0420ebdd28edc361846ffbbd9d19b812ca4e53426eb3bd
+FileChecksum: SHA512: 34a126d6fcb144d6baa42a06bb9e56af5aa205e82dd062f8b70011687c577e75e9bbabf672ffb06a55da4675bab949ad8626aaf2f9c7fed7ab9331c4f1bce376
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-formatter.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95appengine.go
+FileChecksum: SHA1: 4f73206a20a3e4aef48255ea1e934253628d036f
+FileChecksum: SHA256: 0bec9217c0bb3f0f6643827edbe15bd912e9d3946678df59d54f7c9565dfa82e
+FileChecksum: SHA512: 732c7eefd605e92c7135402b516b17548cf884bbf524762a7b9bcc83c3c24460e77d6e527d2a3aef01703360a3b514756e6d40f02997d87afbb06d57501bcfd9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95appengine.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95bsd.go
+FileChecksum: SHA1: 0c5da713b350950e8ed8e217a3ae93a669c661fe
+FileChecksum: SHA256: ca5bce79fff97e9a6a95d629d15d53d86fb94f84110448f8912e373c2a67cbde
+FileChecksum: SHA512: 9209f080958b4db66893156a766cd2c2b81d4d1db8856a815dbd02cebf29957f71face542398495482015dc9228391bb21e0f1a43224414fd228091809ef4e74
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95bsd.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_js.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95js.go
+FileChecksum: SHA1: 6da5924b3b74e6130a8be1046b6a61ccfedf1f2e
+FileChecksum: SHA256: fe970ae667524e284789c2032df6812ad852fb786c470921be8a47afe7afa4ac
+FileChecksum: SHA512: 8fc91268b37035d284824346b3a141be05d2fddf0d0b2263556d60dfe407e45fd4254930325ff8d5ff978d68d80fa615c1d90c1774e63ecc92db3573cd99006b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95js.go
+FileName: vendor/github.com/sirupsen/logrus/hooks.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-hooks.go
+FileChecksum: SHA1: f025e85ebe123cb29b44b8eec6489536d8e70b6c
+FileChecksum: SHA256: b9dd224299b4e20e061671e68841af34cfece45e37563d4d8e7a664e1b787e48
+FileChecksum: SHA512: 3f3f572f0059d15d41eafdd52470291d2d56e50f7b4f70432f24a69c8299dbcbb9a8c2433a32025bc09f94490d7511f336cd637f4783de5de3cd91e0ffdde6b9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-hooks.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95notappengine.go
+FileChecksum: SHA1: d4bf099b091140cdbe12cd1338dd10dd3e3d1139
+FileChecksum: SHA256: 7a9c6f07aff2ab6bafc003ce9ec2619a383ec8bbbdfc80fa38697a29ee149fce
+FileChecksum: SHA512: f8e89f1903148606e21b50bd9e9a7ba9da232145209ba21284882495b40454d2b981927414400db2e6bdb4d9f0bb0f20507d32ccec8869b56e7e3c83ce1938f4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95notappengine.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95solaris.go
+FileChecksum: SHA1: 8bd00754724417e04dbf336e6788ea9b85b2413d
+FileChecksum: SHA256: a0a7bfb25bcf1fe899a01dce35fba617234396ca891f57320fa75b2147bc5aff
+FileChecksum: SHA512: 0d393d1ca403cd53702ca379f46635bc62030249de3f6de444a81509843102eb76e46c2b1dbfacb5f054eb6236f6a235b9b58879173509b613b35da0c192a1b4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95solaris.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95unix.go
+FileChecksum: SHA1: f6bd2dcd684618bd9cf82ff457a8be685fca2912
+FileChecksum: SHA256: 6044db944b735956eaa1e6ef259e0ec121d6372c1e8c6a256c13ac23e3947ff9
+FileChecksum: SHA512: 63148c555da610b28473bde845a77fb16859b982f41988ab05580e9bffc7952c8c51cac7a5129db8ad53be8c0783b797f8d76bc056a6d7b0ea11389267fb5a85
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95unix.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95noC95terminal.go
+FileChecksum: SHA1: 4e32d48c5a8926c48bede2d6af991e5660794998
+FileChecksum: SHA256: 3dc42eb54664ce50d5e3fbfd0766905158dabb671354ef8312bf4f3c73d5039c
+FileChecksum: SHA512: 659b7df5f26111e36c696cef08fa0d2ce062be8b2eecf63559d0d9219367052d2c57026491e2750d3dc89f5a5fcc3ad2c72e12a70be42402c9343c4e754d0dd8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95noC95terminal.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95windows.go
+FileChecksum: SHA1: a9bf6769e6941fd300c35c032cf4b1e833f4b608
+FileChecksum: SHA256: 40e3f73720d0104d8cca8406add50747f6ffebfb7b1bb36646f7454bb167acd9
+FileChecksum: SHA512: 8a8ec49c138920c8d9e05befb11b34fc2816079a93c96001ff4e3fd25e97db1cab096d2b77630755573037766e7181a0a618c503bdb920fce85e75df872b4270
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95windows.go
+FileName: vendor/github.com/sirupsen/logrus/writer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-writer.go
+FileChecksum: SHA1: fe5e0d6169e45feac121ac7576c9120243ab0a1e
+FileChecksum: SHA256: 1ea944a55a76dbb05d6917134403c0e9fcc4931edfc773151e60bcb27abf318e
+FileChecksum: SHA512: ade099b171f9595f2b4ea08d9a5e5dd03a13d17be78deb768c4d8e33f3641e933276ac3f340e41ca406597e05cd564482f19558d18d4b7794dc579c09f3d8d9b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-writer.go
+FileName: vendor/github.com/sirupsen/logrus/text_formatter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-textC95formatter.go
+FileChecksum: SHA1: 0e5886c9910d65ad692fb4df5773c12cd2fac952
+FileChecksum: SHA256: 7cc9998ef28bc62887bc60810e6719ebefc3dc794b394de582d8e43ee44bb66f
+FileChecksum: SHA512: 614e88c73865cb2a6cd3bf45a2d673c182470b0e138233356ab1c956274e5dcd4fdf9259277d455a4582bd8f73c5273d99d5cfb167e8a1dcd431e268d6701207
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-textC95formatter.go
+FileName: vendor/github.com/sirupsen/logrus/logrus.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logrus.go
+FileChecksum: SHA1: 7aa9f7cc798a998dbc8a78decf743e6f1bfee5be
+FileChecksum: SHA256: ad71f316ed190a3dcdd32b53efcaaff06201b37ef6c7527df31a4aa687f1c2a9
+FileChecksum: SHA512: 9c41dad8caf6a3aaf098a54e69d8e334ba05b0ffee5746b628f19d38eee960323a3f7844b6be428f91181ed227e39a809b4fdbcf2eb4fcb416939701bff244dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logrus.go
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-LICENSE
+FileChecksum: SHA1: c5c8a68f4b80929b3e66f054f37bb9e16078847f
+FileChecksum: SHA256: 7d5450cb2d142651b8afa315b5f238efc805dad827d91ba367d8516bc9d49e7a
+FileChecksum: SHA512: 07bdeb77b6ebe1f18ba5285d98a05ac53502a82837118e194d81384bbb9c1a8e7bb7ba627df288c770e9e97599e24a5135e45546cbf493330773c6b9921ff5b6
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-LICENSE
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-Makefile
+FileChecksum: SHA1: a7c19d0a6ed12301a6dd346104a498896808b493
+FileChecksum: SHA256: a1790b6e225a5dde1923fdad6426d151a7f5de55cf3747e642fe0f5384c847db
+FileChecksum: SHA512: 84a35b707a13f4e3397a0d7a85c4dc15d474e726bce8cb332e46789a432eaf712a0ae73cda6254597966d2ee39c2616169e6d99abb88de30534e2ecf34e145a5
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-Makefile
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.gitignore
+FileChecksum: SHA1: 75c3a89aef7deddaafb5390c854e1a3482da2a45
+FileChecksum: SHA256: b7a6a14ad1dc469be49266f5d86d40ee6c439468ad409a0bc04238564c34aff2
+FileChecksum: SHA512: eaa0987fdcdc5458c3dfd4484611946a0718ab25b4ac03b17b4bc34abb6da9bc73d24743ce9ef951a9af36247fcdfa6edb803937c0e2e9c1940fbe0757367a34
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.gitignore
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/pkcs11uri.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-pkcs11uri.go
+FileChecksum: SHA1: 6e99e8cd75c36800282a6a3bfdcfa842c6c90788
+FileChecksum: SHA256: 03db485fcc9477ec4b9234e559d1047de70eef43717a214bd8638cf84defb145
+FileChecksum: SHA512: 76c7480f435941d73ceab602247c41509985122d5204c2381dff63bac9cefb5bbbeb12de4ca26342063fc26812f08c1092124e58623c1f5c11fb7787b17cdd48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-pkcs11uri.go
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-README.md
+FileChecksum: SHA1: 26e5edd5524ac76f5c8a1fd16360939d87c0a64f
+FileChecksum: SHA256: 7609f3b964ddaa0e3a6177597aade028ba7e538ddf17de3c0a76a9085aa85e17
+FileChecksum: SHA512: 4447ed750b836a0fed0b8c1d8c727f2bb258e6d477cfd2541ba3c8a145b7cc118b63d0efaf66615abaa7ee7994ff5a0716fa0bbcd0e686582a213b4657b23655
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-README.md
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.travis.yml
+FileChecksum: SHA1: a7070f5e49c4591f3622274d66e80553b1579a8f
+FileChecksum: SHA256: 7fc8710839667fca38cbd90d71832a89eb3c02bf0c29baf9d315dc00a322768f
+FileChecksum: SHA512: 6b2a1fb9dc48dc47ec7c54061398aeeb17ca2892e7cb6195830332a2854d058222c18a3d96605617d0ad9c70bca97421cf9d7489045a201d0940e989c7b42249
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.travis.yml
+FileName: vendor/go.mozilla.org/pkcs7/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-LICENSE
+FileChecksum: SHA1: f9bbe972432aebdebf3469c89434273ba88ec9c7
+FileChecksum: SHA256: d01c6d371866b3c7a1a7e20994d88d2ce83f22974ec6d3596a6125b44495813d
+FileChecksum: SHA512: c0d06fefd468d2e9d29fc61476d6b174c4b319ee001d070d923f51caa80fcabbdaebe6628b7b709d5af0213d83190586851bf504c534d1f1ae2a0de13b06765f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-LICENSE
+FileName: vendor/go.mozilla.org/pkcs7/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.travis.yml
+FileChecksum: SHA1: bf60a79cb1f25cdd02ce8db52c04071e877394b9
+FileChecksum: SHA256: 95819a958d3104a44efa1b0e21ffbca546cbeb6884d841860d51f23a0cf225c3
+FileChecksum: SHA512: 0b45d65a0a49664d9102986288a63d022bf53b7bee6e8ee3ab520b8e78cd3f04da677f5fbe6b127fc1d37955a2acceac97191b681ef4e4e44b78a2c383861e1d
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.travis.yml
+FileName: vendor/go.mozilla.org/pkcs7/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-Makefile
+FileChecksum: SHA1: 631f26758e7c77de249a4ad609f2374783dc7320
+FileChecksum: SHA256: fc096f6b7c4574984455e87af978ae0ca1af3b3795832a2a5ed7c24cffd618ed
+FileChecksum: SHA512: c4457defffad9921ee4e466eea1c414e2e1552f21824450be8961f6f2680b899643ef95caa4348004735d7feca137deeff25984666c113dc836996be143e44a2
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-Makefile
+FileName: vendor/go.mozilla.org/pkcs7/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.gitignore
+FileChecksum: SHA1: d9a6d2ae7e2add88179e429f787e6a5b2c7b1133
+FileChecksum: SHA256: cb568f716e3315bcebfc75bbc274b56577c2734ec3da6729ffac15919f416240
+FileChecksum: SHA512: 2bb81143328929299fc309960108c9fb7ea45410e0f1904cd30e8ecff02f75c531997facb35cec5be600a9fb635e9fad24fc81abb12a5d0e97289a99124bf4cd
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.gitignore
+FileName: vendor/go.mozilla.org/pkcs7/decrypt.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-decrypt.go
+FileChecksum: SHA1: cbb08792a3b5652edb90b569add86fcf95fb90a6
+FileChecksum: SHA256: 03a2e45e4daf5c42c9f1c4afffdbfa25fe27700fdf07b1908d3a776c27b66cdb
+FileChecksum: SHA512: 57448159d63a2c831a3eca8a90a96d87bd274f3a749f84d7bb725489ed375ef28bb26bc66cad1bdf62e208a7634f5aa9b25d4dab405d587861c3e6aaac6f7497
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-decrypt.go
+FileName: vendor/go.mozilla.org/pkcs7/encrypt.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-encrypt.go
+FileChecksum: SHA1: 7f6dd7e6b8f48cae047c531bbdb48cab91e7b85b
+FileChecksum: SHA256: 43b7b5c46abcd40bd407857cd1f60f0aa096ca7093ab302f6aa4f7fc38bb34e8
+FileChecksum: SHA512: f91757e7fb119b9d1a1464281afaa6597a84e0a877ce290965b4f7cea87a3dc9044913e248f58b1d81477873cc064e3eb9acc6545571b04551c12d9a07f1e21a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-encrypt.go
+FileName: vendor/go.mozilla.org/pkcs7/ber.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-ber.go
+FileChecksum: SHA1: b3fc5f1b8b3b0de0003e14fa417130c26f7bf1b9
+FileChecksum: SHA256: 7107213988d88889cbd0bfb382673f1515f96489ef4dcfb63d5db2ed6bcf5191
+FileChecksum: SHA512: 922c301e3055ca54001c75df97dc53b89b8149922f2045d7dc4447c066d2701b3e4a3e685e0603ad5adb1f50eb92a3203f873739b1eebcbb4cd7659d759f962e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-ber.go
+FileName: vendor/go.mozilla.org/pkcs7/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-README.md
+FileChecksum: SHA1: f94caf6cb30e432bc9aa4ace42dbcf53dd3a5374
+FileChecksum: SHA256: 641aa728069ed09dfbac88486df380bef78102e4fb174d086d5bd988ed1b656d
+FileChecksum: SHA512: ad23c168b0db5d9f973cb7dc64f61031a0a3ecb847d3b32ac097d7d51aa5883d3704eab7f9637f3337345896ba14639095ceaca32a6cc82584d05a3afeb5258b
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-README.md
+FileName: vendor/go.mozilla.org/pkcs7/pkcs7.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-pkcs7.go
+FileChecksum: SHA1: 5d9f2af894207ffaa2e37490a76271b64a68704e
+FileChecksum: SHA256: fb7c6c0467df1a2c9a383c110ae97be14c0a7984facd436b9f178e5967ca6b8c
+FileChecksum: SHA512: 3a988e0da812b26263628a9193283f1fafbc15d519fc82c069edff1bdb4f928c5fc1d1be73d65b99ad4936cf797971edb9281e5a4c2d03378af3618cf01b70e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-pkcs7.go
+FileName: vendor/go.mozilla.org/pkcs7/verify.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-verify.go
+FileChecksum: SHA1: ee30155af4ce0586ff4eef8bea2a6293f49957dc
+FileChecksum: SHA256: aef2cde1fce5df73ea97dae057efce191814b3f27af1373611bed57b9cd1012e
+FileChecksum: SHA512: 1f1c5cee9b8501e7f26940994fb6ede6638e9ea882f340bd77b857d357cedf4c766a830470d823963d05265707f05b9356505f9ff60b275051a8469aad83a695
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-verify.go
+FileName: vendor/golang.org/x/crypto/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-CONTRIBUTORS
+FileChecksum: SHA1: 39097573c311def5445e4dccaf3189987465bc83
+FileChecksum: SHA256: fa714cb1012a065fbe08b174eb1f5604327bd24d42dab2c461878ce36f68d0c9
+FileChecksum: SHA512: 36fcb4e290cf69db05fec038f7939a7bb888d458c4d814cb368f207210359c921e2bc563720d8add09039fc2ffbe3bacb96e4b80c248f643d0ac4808d8e4a718
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-CONTRIBUTORS
+FileName: vendor/golang.org/x/crypto/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-AUTHORS
+FileChecksum: SHA1: 5d22291302558cc1dfe4729c69bac627252d3c10
+FileChecksum: SHA256: 5aa3167c44245f0b12b27195d85c6a8c8e067cfdd511059daa4d7b3c5b232129
+FileChecksum: SHA512: d9bfd664efaa0ec0cb4c3c4e5b850aa374692c1abcac7e818b8c9fe32c431200b6042639feed3c6a32d7ab1caf94e7a50a9ec21f3423e759b25ae89e0aa439e0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-AUTHORS
+FileName: vendor/golang.org/x/crypto/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-LICENSE
+FileName: vendor/golang.org/x/crypto/cast5/cast5.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-cast5-cast5.go
+FileChecksum: SHA1: 51902a52a64f0b7761e1d7c24ffafbd942ed6ba7
+FileChecksum: SHA256: 312586863f68f63c149768b01f66152f1504b0aeca910be621ff88e4f8d5967b
+FileChecksum: SHA512: 5301ea7243a8f5b2a66b7ea6fa5685d292260dc934f10dc476d8891a262039a0e50fc857ea314c3d3bc5e69f1489fee23142808c254221d6d2192a1a08d5cbaa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-cast5-cast5.go
+FileName: vendor/golang.org/x/crypto/ed25519/ed25519.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519.go
+FileChecksum: SHA1: ac948efc967d26ab1c4bdb05dd0ccd006fed29c4
+FileChecksum: SHA256: aa9b474690af7a9bd62d495d4ae9fd282e994c93d4029887a7f0fd7802c28355
+FileChecksum: SHA512: e2e2d253f3dcef827842078d0bdc5185cbe77c62b74c8d4cd57aa86c9fd75a8840de92db75609e16c04ad6a417b5195e515aedcc4a96654bf6577665724876d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519.go
+FileName: vendor/golang.org/x/crypto/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-PATENTS
+FileName: vendor/golang.org/x/crypto/ed25519/internal/edwards25519/const.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-const.go
+FileChecksum: SHA1: 99640d64c4de9616eedfe0af7acb3018e04d1631
+FileChecksum: SHA256: bb43c357b9bc26c3f8f010e5dffcb69590683b627642f0ca03933e4598145b6e
+FileChecksum: SHA512: 84ebe778c0b479259e2b08f068477eb18c7cd38f9f164b0e0b07c734ff24fb12b0720dea40621d66c18ed0172c05719eea5732b640e67399db918fce40235bc0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-const.go
+FileName: vendor/golang.org/x/crypto/ed25519/ed25519_go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519C95go113.go
+FileChecksum: SHA1: 9bc812e5b2912889cec403f319042752c643c304
+FileChecksum: SHA256: 33071b7e257dc7e94e06226a912deda63aa405e267647c991b72d638d65d1399
+FileChecksum: SHA512: 2725d4c1764bfe5796e34db6182e9a8e8cf7464a4e8164d535b228e587146adf02a56062f81e992143c3ec9f05d7c18a1a54c47fff01f6aa97885593118b5fe7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519C95go113.go
+FileName: vendor/go.mozilla.org/pkcs7/sign.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-sign.go
+FileChecksum: SHA1: 165b4c0d6beab554c84b4a7879012f4728fd31b6
+FileChecksum: SHA256: 4b86b4f636d9bd7f5a606de79503de10c4d570d5461d4b85419feb15786fe6d8
+FileChecksum: SHA512: 2d0f9b7db2345211bc3f43e3152ce30b6f2c1b12e9cb86a54336713968591f8a49ae3c0e4c9a8eeb7a4565a9454871cd604b3977c221dbbf212a8ef7c6938a1f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-sign.go
+FileName: vendor/golang.org/x/crypto/openpgp/armor/armor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-armor.go
+FileChecksum: SHA1: a9ffb3e8447cb1cf417781556abf8dd2a04640be
+FileChecksum: SHA256: 800c6c937ee7b83711a9ebe90d037da9a8b959f58aaec74851cc435c461b6441
+FileChecksum: SHA512: 357d8d46083fa055068846c87caee9fe3d7cc5a70eebc6d51f1348646bb4943e01e3d5efbff5680a8777c89e63005517c276b7b181d788cb8f93f65138751528
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-armor.go
+FileName: vendor/golang.org/x/crypto/openpgp/armor/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-encode.go
+FileChecksum: SHA1: 7ef4d772364ea2ecb8ec6f4a747abc84a3bbb079
+FileChecksum: SHA256: 6f7bb3548e1ddb3d54f33e943f76dc0fb66512d2552690e73855ab02f7b6a211
+FileChecksum: SHA512: 8a5206fc742cc5a114fe00ae197db368be8b6c6e7f6c29721a7a927313935169cdfdd894fc91548651b1ec72ef35b172a4993889c8f1e8ec25d7bf8ebac60f23
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-encode.go
+FileName: vendor/golang.org/x/crypto/openpgp/canonical_text.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-canonicalC95text.go
+FileChecksum: SHA1: 4670f9c34b3bcb4eb4ffe9029171cd248e246a0a
+FileChecksum: SHA256: c48b8565ba789d501946a4ce16e002c71828d801d448b9ee52963444d6561256
+FileChecksum: SHA512: 7ab541c282c73401695ece087aa2e894239e26da0a1bb759ed3ed3272d54d0fcb5bb5d8d3a9dd0e3c02288156a3841058052910261124ee295ec22a6a7f48096
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-canonicalC95text.go
+FileName: vendor/golang.org/x/crypto/openpgp/errors/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-errors-errors.go
+FileChecksum: SHA1: c626944c49808b5a726ccb4d769a152388c12bf5
+FileChecksum: SHA256: e933622a292a5cbaa33abf7d06e18bd41bc2eb1b122fa71f2b246853a3ae34f1
+FileChecksum: SHA512: 3ec86d2a1d6521ab6bd8c106a1b961c04bf6ab0c94af5412edf2e654c7122c4460231fb83b35537d7304171316f77cd4d98eb9e104624e145fa59a2460e4a0d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-errors-errors.go
+FileName: vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-edwards25519.go
+FileChecksum: SHA1: 22c193b2c324956a2d3eee7157701ac4548cb696
+FileChecksum: SHA256: 4048a7f45ef3c255bb496754f214ada75183d25a0141a44ec42341b4683cde5d
+FileChecksum: SHA512: b6befb19c77aa7f7faaa9d715b12f6a128d430d4202e1ad72b73e8f45aad664ed220a275d504209e909dd12f9d3787d3f11bdf50da79c017d1d28a4011c4bef7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-edwards25519.go
+FileName: vendor/golang.org/x/crypto/openpgp/keys.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-keys.go
+FileChecksum: SHA1: b67e3f4e92bdfa6ac4f161069ea5705f02d8caf0
+FileChecksum: SHA256: 7284df9aac2dcf9e03207b137e063f79d258e9aa0201601b74e2bd95bbd6651b
+FileChecksum: SHA512: 52d9a8ad5c8d2144a4af066c02f4a4562d843c4d1e91287704a007a40bb777156b9d2a7401680dba57f17c00dad0f5e59363fa526698dfaf4bfd4ca572bce30e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-keys.go
+FileName: vendor/golang.org/x/crypto/openpgp/elgamal/elgamal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-elgamal-elgamal.go
+FileChecksum: SHA1: 80697dd53a7eee3e1dbaa2e52a2863454f9dcf89
+FileChecksum: SHA256: b662e2579287836440d3f532319da5a964c9a0bb978fda52d79f4a0afd1a69c8
+FileChecksum: SHA512: dcf1313623defc6d4cf6b7f5249a216d482fc28ed967c7d6b5ece408ef19dbaaefadf27e6e4e7958d98f0dde9ebf027ac0c3928cb46f7fdce5f00e50e9b2cf8b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-elgamal-elgamal.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/compressed.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-compressed.go
+FileChecksum: SHA1: 4076e5ef78569372ab59b557351c127079c6284d
+FileChecksum: SHA256: 6b12cf1b46ca789a6e673a83524d41bd25bd270d7e5abdc6447f039f3ae4851f
+FileChecksum: SHA512: 94622902d0534be49e12e2cf2233e6489fe1abaf36d1bb211b1899e6b15b4c9ac403397384f57b89e4c28c776eb34134a2b1c62990d0e5f12e033372bbbc7e63
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-compressed.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/encrypted_key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-encryptedC95key.go
+FileChecksum: SHA1: fca6486e79d6d9ed8d10ab07761f603a3ac5bf79
+FileChecksum: SHA256: 3dd5f997da0652e8ab5716eb46cf88efcddc8784afa1adb7f346f9df8e37edc9
+FileChecksum: SHA512: f4d8190d72ed3eec65dcb2842f445f27c751dd607851d85399fbdde0cbfa3c598afeaa5721019125480c967de461a04faed964084f55ce978c412c0cea007217
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-encryptedC95key.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/literal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-literal.go
+FileChecksum: SHA1: 7938cf49a2bc3f896195c4493089546e6f1f26d4
+FileChecksum: SHA256: 0f761a9a1e5c4925951c73e2862464bab54611032733bd1d30825cddcbcefd0c
+FileChecksum: SHA512: 1e39268f71648f02b8e54c5e4df868c259907b4ff2429867800249cfad43952afc1b174bebb6818db670e47228fc5162ea3190e86f29771f85e19ec63e8f8c20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-literal.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/ocfb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-ocfb.go
+FileChecksum: SHA1: c28570d30724cc238918a62ff1416d803b1ce178
+FileChecksum: SHA256: 97f83c5a3d76122baf10694abd6800ad5de280b484bd4e9b1766061ad72269cb
+FileChecksum: SHA512: 3738747eea4c76a3374d29e7c26fc4b237ef5a95cb7ab39811a67c74c692831cb867839b7b187a913821797ba3536bb0c317b973b459573a76fbd5f9ab985f58
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-ocfb.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/one_pass_signature.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-oneC95passC95signature.go
+FileChecksum: SHA1: 6bd89ac6d7c2b2201a1ead8a1846c01e9a78f69f
+FileChecksum: SHA256: 7c5d8c831c1800ea0c617bfb1fd7333e1178ca89796ad091e0d69afd524f400e
+FileChecksum: SHA512: ba52d25bde52fe8ef03dc2e6c461b36952347fe0e03aadebcb53e6cf2525519df5b5add4cb07429336553fee7f752ef5e23ba781ab1bb8f82b2206a54de1f919
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-oneC95passC95signature.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-config.go
+FileChecksum: SHA1: f86d4202fb375cbbbe6d628824496b72851ed810
+FileChecksum: SHA256: f28901e97565f83eb11c59e11ebdc4eef614e280a84330a2339e85643f3e9264
+FileChecksum: SHA512: f2c0ef16785e80740c4e3a5d804b5361b0327d83d0f3466dd0d80da0589d5ef5b9454acb614771dd9f7208ebc2910459c5f58ea3b43c0bd1be01519a6c87085e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-config.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/opaque.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-opaque.go
+FileChecksum: SHA1: e3ec0c73dba0ac5840bc2356b013378019a54bcb
+FileChecksum: SHA256: e12656d74de94b5aabc100d07f010528009ff3079c62b98ebca49c4bfa4cff07
+FileChecksum: SHA512: 0918779778f438913daa578b9ba56eb7e8cb94f3a9b9d57f4a6ca0c899de4638f7259271d85bb90319fc151cda0ca676226d8012ffa95f22be983fbcf06de720
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-opaque.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/packet.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-packet.go
+FileChecksum: SHA1: 43dcae18dd0ff66e0bae7a8df004661a02457625
+FileChecksum: SHA256: 4a027f57d30dc67de306269615a210576079a28143602de2ec99704ac8e8bbbc
+FileChecksum: SHA512: 844361d6f9eb06f83dc29bd73550bef6a94b9ab79723177e9735791d7a2d6785fc063968b919796e35e3a0a985b0b98c75a69ff7c91d99c0862b26d38bef91af
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-packet.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/public_key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95key.go
+FileChecksum: SHA1: 806778131d8b35b8779c3f4aa84720a15560155d
+FileChecksum: SHA256: a7c919b8247fb7764acc332f1216f42e581296c85fbddcda4945c6b2d58cb328
+FileChecksum: SHA512: 545b29c65419ede763298deb23b146c9ebc49aa39d34e650e218f4bbc7f956bed36eb9aafccc92ae4187f57df8a55772b94ff0d5c8f6485c1a801d2183f4600b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95key.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/private_key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-privateC95key.go
+FileChecksum: SHA1: 9ce506410bbcaf580aedb735b5204d711ff80c78
+FileChecksum: SHA256: c7d59b49fa74005a8bfab0468fde898d5b6708fe032e4667b6d34de2553a05f3
+FileChecksum: SHA512: d52e33c81049624d4e9d62383df67905b0c51c6f62d3f73899a1c32a7dc5c5bb3e1e8bba1a1fbf8f028811d86418e9ebcd63b9721a398d5310702acc7bbd6c25
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-privateC95key.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/signature.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signature.go
+FileChecksum: SHA1: 93a18724e9fe096734180cdb053773f8cba6a06e
+FileChecksum: SHA256: cdb85a4a756fb11dce00be3b7aa190b6a91ca243d3e602f3789a9e1e9ac32705
+FileChecksum: SHA512: aee1d37f56a16e33bc5d5eb76b11ae0499046e93405f062f33bdefa35f2f58c4bb961f9b364bf4f70573ca6d4c063a1c1703332456f5e622e80c90b0a40ee0e2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signature.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/signature_v3.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signatureC95v3.go
+FileChecksum: SHA1: ac016519e74ff889a2f7df5308ad6b5bccd89c0a
+FileChecksum: SHA256: 920edfef739614e07aca0a86de0d242387347fde08701edaae8a44dd76ad3ff8
+FileChecksum: SHA512: ccd36da5f45ca2c275f49c1fc02c6f3951273fda60cb9d3c8638aeb0f5909ca666f097935ab02bb95898545b1167840bb2bf7a250d4824c84aa6e5747768cba2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signatureC95v3.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/reader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-reader.go
+FileChecksum: SHA1: 7cd9b191f6843b5ab33f5b791958122190bb40c4
+FileChecksum: SHA256: e9213e087e18d62a7662f26264800b8c810a07a4da659add0ee39a2b29ed4e17
+FileChecksum: SHA512: 7ecdef36be0e6f0ca372940f6327ecee763dc95a8517bcad62ad35a35f805a5f16b281d0cafc52a4c6ced6101142957931fee3d798610a964b0d48a7e8e62928
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-reader.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/symmetrically_encrypted.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricallyC95encrypted.go
+FileChecksum: SHA1: 83d66b680a02130a59491824da2ecb0f121f7162
+FileChecksum: SHA256: 3910f8faf31d923e0c72ca07f5ff6d8d1dfd09da3333221d885d7bc9b4aa7e67
+FileChecksum: SHA512: e744bd0e64a99f28937bb62a7d8961bd42a93817e746394270110376f0f2ce8211bed3838d4d31e738268a24ee341160a87a3b90fee4d511a4fe2a9d481bfc42
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricallyC95encrypted.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/userattribute.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userattribute.go
+FileChecksum: SHA1: effdfbe967aa2cb84e172db7899fcc772da6a2ee
+FileChecksum: SHA256: 47d0b2012f95fd9a5fa6e0ab79cd5c79b20e1af38b33c5ab5dbc6ced06d32a73
+FileChecksum: SHA512: 9b832d4190215350f3fa0a6ceebf6863b90a9fa6b8be647e0e6bbbe7e9a128be5fbc06c114aad0cdb909fde0a4fdfc30246edda83127096b7b47d7185f4fa6cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userattribute.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/public_key_v3.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95keyC95v3.go
+FileChecksum: SHA1: abbbcd46b670ad1b83e8e82a80e4c4ae6bec2b87
+FileChecksum: SHA256: b545509c88e300281ceb5b0184a3fa7c511b2b8467803c51467de3b4f12e9f70
+FileChecksum: SHA512: 9398c276424ea699c16c4a9046dfb4485ee61d802203b043e88554502d1349958754f1f0ecb48cd4c3c5a9221fc955d3b4a49692829e53d3b6e1ed1b46ba7471
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95keyC95v3.go
+FileName: vendor/golang.org/x/crypto/openpgp/read.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-read.go
+FileChecksum: SHA1: eabba8fb1e284b67d2c51afc616bfbaf05b9f3bb
+FileChecksum: SHA256: 6166723640f66a9a3df7e15ace96774d8dfbc2d8af0539dbf250e514a84735ba
+FileChecksum: SHA512: 768ae48578cb05949da092bd0ecedaec7d9169a5f3f4006cb03b96b79317d12dc6bb6725cb21b3fa50fb661682882ab930ab8461b6571d0fd04a9e367f6a3880
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-read.go
+FileName: vendor/golang.org/x/crypto/openpgp/s2k/s2k.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-s2k-s2k.go
+FileChecksum: SHA1: c41568ca16a8d2d9ec119ef842f97ea9d4fad034
+FileChecksum: SHA256: 4943ca0edf20ba1fbf4ff00edbe396a2bc52ab9825811b855293ec22717b70f8
+FileChecksum: SHA512: 6c147c5e8e8c56b684b1b976967337b2e8007b6e286afb31a3909e86abff688dac0403e4b99f17c54c4f66291b9b1b13b61a666098905c29a8aece93b7520fff
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-s2k-s2k.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/symmetric_key_encrypted.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricC95keyC95encrypted.go
+FileChecksum: SHA1: 86d8934f9dcb4359a3f7e93a359e951f7feaeae6
+FileChecksum: SHA256: 0c70f19586b963c517c9d2b65a9606fa2228769108253bff64c7c37c2b097f93
+FileChecksum: SHA512: 3215d5c4129d320ba730b9886b05d914b3aaba6a7bd3fb662809f784e6ea01018c9f53af0071ddae0cb92b1bae589ac72c3b8f3c832f987fb686b90d303d9d13
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricC95keyC95encrypted.go
+FileName: vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-pbkdf2-pbkdf2.go
+FileChecksum: SHA1: b92a74f493010c9a22bdd7f9378ab9d631d8a0a2
+FileChecksum: SHA256: 4c0c8127838d579ad26b8ba838ede9507100c927f287be2020837a5200a580ef
+FileChecksum: SHA512: f043630ba52b79b50289767ecd0b0c57adeca5a08d05879f94efd4d1a2b326fd377e7f82da4f32f4f2d6480e0b9853faca03ec74398840c37a6ba5bdc5bdaddd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-pbkdf2-pbkdf2.go
+FileName: vendor/golang.org/x/net/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-AUTHORS
+FileName: vendor/golang.org/x/net/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-CONTRIBUTORS
+FileName: vendor/golang.org/x/crypto/openpgp/packet/userid.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userid.go
+FileChecksum: SHA1: 8d1e5899bc750ca307c9c5b23b4e63121e6a85ed
+FileChecksum: SHA256: f50b3b5760f300933970059244f9fd7df2ee5367bb1be554a3119883d3a4f0dc
+FileChecksum: SHA512: 85abf9b0a4727a468be0bb06c048ee5b62fb9959b3f52fee35a406898bb4dd0782d0fc8d70c37a148d728905239f097b7d8bcf17b3b5c07e49e15aaa6c0a02b5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userid.go
+FileName: vendor/golang.org/x/net/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-PATENTS
+FileName: vendor/golang.org/x/net/http/httpguts/guts.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-guts.go
+FileChecksum: SHA1: eed0bcebe2b1a4acb6af88efdf60dab34addbfb5
+FileChecksum: SHA256: 3da54270a625540809f2f767e54e18acf27199aca64b6cf16d6d3fa3999de959
+FileChecksum: SHA512: 07963aa49ece13d8e6c597bcefcd7d864cf7707b4d98e3c30b1899274023284d7df931f4d4803d699e7a0b875837398db61ba14a997a1562e6364adebed78ed9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-guts.go
+FileName: vendor/golang.org/x/net/http/httpguts/httplex.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-httplex.go
+FileChecksum: SHA1: 06ab581c06900fc22c90c725d6add0f17eb17cfd
+FileChecksum: SHA256: 69d333915bc3920ac755dbfdcc41e4e02be86066182fb42728246055ab2e1e17
+FileChecksum: SHA512: 3442ab91ae9e99c1a47a64fc4853ec99fd9dbb3d1e4b507184046a91bd9a43098ff4360aa43afb50f35536c9f75c8aded5c26a052bd66abe85a981d260f97e33
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-httplex.go
+FileName: vendor/golang.org/x/crypto/openpgp/write.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-write.go
+FileChecksum: SHA1: b69cafa9099066929eeb986aa149a5e165d40442
+FileChecksum: SHA256: ca4cfe70108bedd04cbb5d5adcf545a177943c674fa5c3ae1d65661a36733b07
+FileChecksum: SHA512: 065f7e1a849bce7974f4490452b0d11ed510257a9710ede49128b5db9867ecaf8725eaa003bb861acf2ee0d6a5f406ffa1e3fb1b96c05a331486c7a14267f1ea
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-write.go
+FileName: vendor/golang.org/x/net/http2/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-.gitignore
+FileChecksum: SHA1: 1ea64956e082663debd74a48d8f0a050986e7275
+FileChecksum: SHA256: a72adf98822b3f9f99b5781137976efb8de250ebbfbcfc7a8851a6822553d234
+FileChecksum: SHA512: 76391f87e8c2b5b67d5598bc1ccfb72876266bc5ad9531a292df992712976201bfc610b700d1c24b646af015d9fba31446c82c50015ee1073fa97f0c9c744afb
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-.gitignore
+FileName: vendor/golang.org/x/net/http2/Dockerfile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Dockerfile
+FileChecksum: SHA1: 4ca3356dc859db2312f29891ea99b86086b552eb
+FileChecksum: SHA256: c2a55bb6810f72be5aaced7936d156de33c409a1c921272824812852095b4bd3
+FileChecksum: SHA512: de2c6d9f907e62cbd42dbdde75ebf31749596167db3fd92763ea48433cc010543b59acacd8fd6db9fcbbf398cf9b48f04454d29eabe12195e4a0ddbc292e4f4c
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Dockerfile
+FileName: vendor/golang.org/x/net/http2/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Makefile
+FileChecksum: SHA1: 652ffd0b441890bd6cb87a159abbe04a7256635d
+FileChecksum: SHA256: 925e0f245c830c772d05524352d1d9f1c6d55381612e8d4cab9e49f6082694fc
+FileChecksum: SHA512: 7afc8d64f10d1b8f43d254aa3667011f0e3ef3e898f480b633e43b6d10e45779f0a2cc65bc9c398c14f8ed80aaf386f8ce5e0eda6a43988727647c8114c6c703
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Makefile
+FileName: vendor/golang.org/x/net/http2/README
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-README
+FileChecksum: SHA1: 2c544115b3f1dae0480dbe42d3b9894c644cee4b
+FileChecksum: SHA256: 7a98a2563ec46e679eeb9b9099f4f247ea8aa8e27d49ea05eb07d88c66acbf87
+FileChecksum: SHA512: 286c0b844929ca77dcb592268312252f354dc73fb4416e47a9d5f76b218b4af4b3648ce7e92c694b4b4cd0cd4255e001deafa7b83136117f42598af045662730
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-README
+FileName: vendor/golang.org/x/net/http2/ciphers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-ciphers.go
+FileChecksum: SHA1: 8ce7b9f42771a0b547cf23f218c2c573422d0bed
+FileChecksum: SHA256: 623262af28491cd81b3570936cd06757f629d2ae4fb6ef087af6762f30d7a5eb
+FileChecksum: SHA512: bacca49bcd8e9599fdcd9d217676472a7407b29af4dff0f930d664b009e045d3783ffd6a0133cef1bb6dc40fcef35983ee06e4e54df51219b401ff9a670d514b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-ciphers.go
+FileName: vendor/golang.org/x/net/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-LICENSE
+FileName: vendor/golang.org/x/net/http2/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-errors.go
+FileChecksum: SHA1: 7061fdb5c5446f199270383b87c1013378ebab72
+FileChecksum: SHA256: c74bcce836409ea3f783e4f5b7e3a23192972fa88c1b5d3e88b0118c45911037
+FileChecksum: SHA512: 339c973aae9fbd8e8e009e1d6e5443457d070018935315cf331949b3f9967caf86bbcd344aa45d2e4858c0e360b3a25fe9869183f673e3a7ed44062c5afb9d5e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-errors.go
+FileName: vendor/golang.org/x/net/http2/flow.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-flow.go
+FileChecksum: SHA1: 522fd7f9eaec7d341c980e0726ff034b779b2755
+FileChecksum: SHA256: aa0a7f938a02a08e8ac6605d8f89bda5fa64a26fffd9f4e10f23f1afef1825e7
+FileChecksum: SHA512: 632a1a820395728ce193ae7a23b35b8273ef02eff9fd2dc3218bfa839cb6cc77c3a16fa52b91b428813ec543487934681b5b633e97f91fd07b757b1e01b5c99d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-flow.go
+FileName: vendor/golang.org/x/net/http2/client_conn_pool.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-clientC95connC95pool.go
+FileChecksum: SHA1: 017dcc783638f3af946011786b85718e72b5adea
+FileChecksum: SHA256: 752a294167c6d77f4c708b4122d25e21783cb83f401f6d54bec640a8cfba0429
+FileChecksum: SHA512: a028770c6c4e7964c42c36ad0d9b12d0858f004063840f4931357c75259f1b495b23440351136ee6f23ab5a7a07c7d1809c5da83f3dd75706352fd9c8eca2044
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-clientC95connC95pool.go
+FileName: vendor/golang.org/x/net/http2/go111.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-go111.go
+FileChecksum: SHA1: 38c71df4a41f6602e6ec558576ac6423bee8f15e
+FileChecksum: SHA256: 55a7ad1f6c87dabc157f7f257d8d75585eef6ad5c082ff9f8fd0391ede05dc4c
+FileChecksum: SHA512: 60c07dafe938ba132c6780db39e1bf3fc4b6136f6a94c9cc1b7c6af9000c79a6fd3dd298efe07258073e43c43e43232787d0bbf5f2aa86248eca82e464893fe5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-go111.go
+FileName: vendor/golang.org/x/net/http2/gotrack.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-gotrack.go
+FileChecksum: SHA1: a136a54c1673c1f71054d716348e738773ce8e87
+FileChecksum: SHA256: 514d31bfafe0d9a232cc40ae162c4c9377ef30bf2d2f5e08a862f3708cd6c24d
+FileChecksum: SHA512: cbdf956933c21ddf76ef2978e8b3c3bb97aadcf21954e5bd00e650f4af6194c580b127fa681a769e1c0e430ff74aa09f2a041d2ba0954e36a01411c89330d361
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-gotrack.go
+FileName: vendor/golang.org/x/net/http2/headermap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-headermap.go
+FileChecksum: SHA1: 58c054478f698b6226b1123cc372630551505dfa
+FileChecksum: SHA256: 0f6ccc202ddf3a792bfe4249c96f0173a46cf836b42e04ec21d21eb1f9b9f9b7
+FileChecksum: SHA512: 9d489c8b037510aca777e00e1e1cd50c47a91797360ce91f91aad83f568c317e953128353296d1ac5cb76ab3173a68a4d41b3130b445c0af0382ea676591e3e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-headermap.go
+FileName: vendor/golang.org/x/net/http2/databuffer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-databuffer.go
+FileChecksum: SHA1: 82eaa69189e144f89232aa4b78af88ba8aac2d1f
+FileChecksum: SHA256: f8f23817fab3cd6441c421da177467fbe25de01bf536d7c270f0d5b267a5b8c0
+FileChecksum: SHA512: de76e4339c3ae1ed935aa6bfbf8aa52020541864d08d751bd7968ac8ca27aeff56b7ad07a2f54a65c7fd5ca8605b48146d8497b2dbc6bbef039fc2e1aabe4839
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-databuffer.go
+FileName: vendor/golang.org/x/net/http2/frame.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-frame.go
+FileChecksum: SHA1: 400f5be50195d4727fa72f2c44ed61d86c48887c
+FileChecksum: SHA256: 059c13ee56a9ceaed8c625e6b3f29aeeaa57fef56108af7e2990a0748cbae043
+FileChecksum: SHA512: 0e76df8ec942fcad7de997fd80ce8886b25595e7ee5896c9e37b8f1749b2b43d97d2f9eacff4f3c9729b53054fe9b74598e6c183b5023f41460e55b94b454a75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-frame.go
+FileName: vendor/golang.org/x/net/http2/hpack/hpack.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-hpack.go
+FileChecksum: SHA1: b0218a113e97572ccd1961cf80836fa0faecf2fd
+FileChecksum: SHA256: 0ae3cacd0c128bec9a7123eb970b97ac2327158dcbbb72494128d368919488bb
+FileChecksum: SHA512: 038bb2f5f638a611412c52074fabbb6b9d9429f691c48fc291842a60c341147c1cb81b355c6c348d92f04767b67310f06fdd66cc61306c27de25570660e9f656
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-hpack.go
+FileName: vendor/golang.org/x/net/http2/hpack/huffman.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-huffman.go
+FileChecksum: SHA1: a5d373ed8122cf251bbe226b3a4d6b08c1d096df
+FileChecksum: SHA256: b7c2153bc04adfa916dffd294ad959594ea16ccdc290ae033a539d6782173691
+FileChecksum: SHA512: a5dd1d1548da507dc770695206374aa61636527df1b402454ed8a5bf5248ffa7771669bbd07976709092cb8d3fb199248ec587e77d9a862a68a68e9a6e414362
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-huffman.go
+FileName: vendor/golang.org/x/net/http2/hpack/tables.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-tables.go
+FileChecksum: SHA1: 1af5ce9a3f55ee57a7e150e2f4532ab2809b7f55
+FileChecksum: SHA256: eb3a07b0659478e4bdc1cc5dc8f1c77ed6a00abcfb32b38815d0f52ea55d0eee
+FileChecksum: SHA512: cbb08948e3551512a3358a0e80255a84c565516e1eace5dff72accbc8a4843403d0ea08eaa9930e1fac177bfc2520291130c10a5e608e4babb6f733bbb98a98c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-tables.go
+FileName: vendor/golang.org/x/net/http2/hpack/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-encode.go
+FileChecksum: SHA1: f15b268afb1a92cc6928cac8b39c1ef5bc33ef74
+FileChecksum: SHA256: deba418211ef037d0e974d003378a0a55785e9e7cf464b4ba54663cc7cfaa7f3
+FileChecksum: SHA512: 06923579441ca70e495767a7c6a8c10986b69eba0d4242aeddcc3ade4105a8a761e707b4e64b358e68e72480dfc770fb00f52e059df8bef812ec3240024e93e9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-encode.go
+FileName: vendor/golang.org/x/net/http2/pipe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-pipe.go
+FileChecksum: SHA1: 92aaf1dd8ca9dd503ce8fe631402c57874717e20
+FileChecksum: SHA256: 68ba000fdad3187e3e8e6ead91776dc347356910254bdd06b2f8b4b4ae76f4c8
+FileChecksum: SHA512: f0bd1c77b83ee2e556f5dc3974dbb403b88df137631129e57ef2451e2082c1e491f8660da33b72c3ed22dbb4e8adb45c0ad9d85e059a0efb426788f667535a1f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-pipe.go
+FileName: vendor/golang.org/x/net/http2/not_go111.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-notC95go111.go
+FileChecksum: SHA1: 0b6e74c63314cd07640924431b55f66f43557b3f
+FileChecksum: SHA256: 7422599aaa9352f3cff5b0a594f3e92d1eebce634fbd5991777a44129c5ead2c
+FileChecksum: SHA512: 9a3124964f393da46acb934885f3174828b46f84af649529940f145472056a55a5fbee7906465539ff1ffdc4755e85d30dafe543c10ca1f0c99596be5d988a83
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-notC95go111.go
+FileName: vendor/golang.org/x/net/http2/server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-server.go
+FileChecksum: SHA1: 47b9a56a61b5ebbeeba103b7c9c74a86646be428
+FileChecksum: SHA256: 805ac4adbc200059b98e0e2e9b2986b1842c77de5069be91871e5892fe8d7a1d
+FileChecksum: SHA512: e9a470c57abf9577569e5ca860ea86e6acb015a894afd07c8b1032763f4a0ece9165ad6db690f3f4d77d7cdfe438433c56b895fef846aa60db61b016e8ed799c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-server.go
+FileName: vendor/golang.org/x/net/http2/http2.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-http2.go
+FileChecksum: SHA1: 30a215fdfa2048cdf28e2bbb734959f1ca9aad18
+FileChecksum: SHA256: 8719bbe9c6fac158e257d1ee706a9e22209ff7157a1ac03be1ab69c7cfec0c55
+FileChecksum: SHA512: ff8864c4306f9e6b33c7e7d6e09500550304bed4f74ceb8d904247f9a981ee41d02756e80d54c7e387a3cd9823735baf61922b4fc90195d3087a91789c3c2330
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-http2.go
+FileName: vendor/golang.org/x/net/http2/transport.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-transport.go
+FileChecksum: SHA1: 125b46f0d07064a52f5f853cd5a4644411110146
+FileChecksum: SHA256: 8a42eb2cbcc645ab8e7c08085741de2ad13fce849bfa8aa1e6bb981c3e319349
+FileChecksum: SHA512: b7e369c20e304dea727328dbd0fb699e4d0054884df5073007457f6712f62b88fddbea9409ccdc8f251ace52314d92df8b3729e12373be783a8d8c35c10312c2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-transport.go
+FileName: vendor/golang.org/x/net/http2/writesched.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writesched.go
+FileChecksum: SHA1: 13a080d244f90aa8afdf39c03d111294abf51d7d
+FileChecksum: SHA256: b446c4f03a8d24adc042a81dd69a93e86957e81b29cf87f600bb658129d7726e
+FileChecksum: SHA512: a16035be98573f3b9829315d38075ff4f3c969d7b68ce15d95562694df848b22652e1dcb8783f62c56e208a8573eef9a55aac8f96fc28d923a4e51f95a007717
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writesched.go
+FileName: vendor/golang.org/x/net/http2/writesched_priority.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95priority.go
+FileChecksum: SHA1: ae2bc8359cbf7fe7f76b3a71d128410ebf0e83dd
+FileChecksum: SHA256: dff6403a13f80060fa056670c89066894f0abcc522892545cfaec23ded6da521
+FileChecksum: SHA512: 65849d2783d6f55627b906616d1b6828682f5c23c9b24caa7c53d644d660a7c6756a2350d58760d3974ac66a75866d04191dbe0f85d33fd364cb1477ae306ca0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95priority.go
+FileName: vendor/golang.org/x/net/http2/write.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-write.go
+FileChecksum: SHA1: f42559510f3cc4aeee0b292d6fb84cb99200ca97
+FileChecksum: SHA256: 46d324974f35f53bdc41bd14ff5f068670f2d36dad137edebaf951070de1a405
+FileChecksum: SHA512: 1ed126cf1ed92e3bc50d6f13558d133d6cd4c30e2ef861fc5c89ed2085848fc7436bd6955b2679abc68ff23c974d2fe33d7e0d2da4087b8b20a3f1640a6a0e44
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-write.go
+FileName: vendor/golang.org/x/net/http2/writesched_random.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95random.go
+FileChecksum: SHA1: d843790415cb8a46891e545e3f5d5188bb653072
+FileChecksum: SHA256: aa16f68e60e1cb3ff47974df8fb065fd5190b1a7cb9cde28f3b53d26161000b1
+FileChecksum: SHA512: afca5dafa7cd9003b7501d79b07186ef5154a43154388bb9676b0698e502de2f56d0d8ed51813e488feaa5db6690f7c1d6b2f6670dc11c25da31b366f73f2fe4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95random.go
+FileName: vendor/golang.org/x/net/idna/punycode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-punycode.go
+FileChecksum: SHA1: b251f6a167b2b55ba0f86ff27555198ae574a3dd
+FileChecksum: SHA256: 4298b84216d79efc0c29c9fb26a7bf1898d1e7f06fb2b9a8f64d08b5be70e695
+FileChecksum: SHA512: c17f423bb215dc41f3abfcad542437e311602770e9eea5cde51472f927df98489535b783c28272520594e7b3fc0b4ba8c4df54e19eb7feec979d24f905d89334
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-punycode.go
+FileName: vendor/golang.org/x/net/idna/idna9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna9.0.0.go
+FileChecksum: SHA1: f7590a4ae8568da638ccc163171af66f58580cd6
+FileChecksum: SHA256: 16a464dbf3e41a911fc6866b69c6ce8f6e8b1cc5b077ee87675d948b5e20b93f
+FileChecksum: SHA512: 0391df726a926a28f92a99809d89845c6e4ff1099baae98b9b2c9928ade6c5de7ec2b5d448dbdb529054e6f96e92ce65c77cf877916a9e5bfd784fef2de8e0c6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna9.0.0.go
+FileName: vendor/golang.org/x/net/idna/idna10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna10.0.0.go
+FileChecksum: SHA1: 5dc93bdfc638f6dd1a0b3eb33232c0062cd2fa44
+FileChecksum: SHA256: 60bbefe8441d129e62e2eb8954988c787a7a5655f123e7ff3a0c9f65ba70ef05
+FileChecksum: SHA512: 33dcd2b76f66d3420303bc8017ecea6c99b41f6c21ca0ac32d4194caef752a405f5948bff88ea6411f1db661a63b44076b8fd513fa62481dc214cf8a932eeab1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna10.0.0.go
+FileName: vendor/golang.org/x/net/idna/tables12.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables12.0.0.go
+FileChecksum: SHA1: d7359d9405bc0b5080a6d2b1dc9f9fa652abc45f
+FileChecksum: SHA256: c2998fefbbff7db2c250b006535ba722bf1dab8a6ce8d987347ca5a1e02cd981
+FileChecksum: SHA512: fa310d9b3fe73ab7a938d30e2c8b696210451f0274b793bea3deb31b6e29fce5dac2e1d89ac30824b7aa8319f35337fab317e8085a6d4dee6b7f4cc4c241d694
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables12.0.0.go
+FileName: vendor/golang.org/x/net/idna/tables10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables10.0.0.go
+FileChecksum: SHA1: b35bccb17b44b5bd8c55cf2189fa3636d9b7d752
+FileChecksum: SHA256: c46b0609736495d9403a67ad9f3d380be71d142dcb8d3840661690233bce7550
+FileChecksum: SHA512: 281893337977d14175c30ccd1ae5b236c566d7a52ac36704aa28b8b60a378841baa5a760b776740925342de80f2cbdcdd9b6767e1fb08b1a27f35d87f706b77a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables10.0.0.go
+FileName: vendor/golang.org/x/net/idna/tables11.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables11.0.0.go
+FileChecksum: SHA1: 2abd56b991be793b7f3382e07cc01bbd20a9ff72
+FileChecksum: SHA256: fb998a062bf64409b9cfb1631ec804a53523ace55d2bed660967c4d01a201b1d
+FileChecksum: SHA512: 2eb2d57006bc4bb2811dd4769004d2a272e87713bfc673315cd72270dac89a5501508936810656614a0293555a9fb79904f6b4c00d19ebeb435aa9cfec9edf72
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables11.0.0.go
+FileName: vendor/golang.org/x/net/idna/trie.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trie.go
+FileChecksum: SHA1: c122387f6f6f830a00a6b1ba252b3a864bcd9176
+FileChecksum: SHA256: db499ff94fdfabf656639225228255546ac04aa38b01509e8636920cb4aefee3
+FileChecksum: SHA512: f78ee19828f312eaeee926ada17ef78deffe42da25826f1b5d835530053a13fc47c291f96ffadaa0fb184824472a1e07ed220bf6f44d813dc9e76b68ec41d6ba
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trie.go
+FileName: vendor/golang.org/x/net/idna/trieval.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trieval.go
+FileChecksum: SHA1: 419fd865a327e419b473234f41bd6cd4622214b8
+FileChecksum: SHA256: 253e9b9d680a5de1d85c21007186fdad531c43452c3a3bd6d0392ca15c2dc1f0
+FileChecksum: SHA512: 5f326b2b4f7370b5213123e71b528bfc1ed91cf2858bb6d0185b33ef345b0e715c62f64fcc4b1052e38830cb052d73f9afcfcd2f8d024c8d8abfcb5092f5a6e6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trieval.go
+FileName: vendor/golang.org/x/net/internal/timeseries/timeseries.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-internal-timeseries-timeseries.go
+FileChecksum: SHA1: 06dc4705c9d34847aad9154dea2cdd8dcb1ad899
+FileChecksum: SHA256: fb2a98dacbeb1a456b79bf48d4c90ec1f213fad4cbafd87564326b61e5d909ce
+FileChecksum: SHA512: 937aff2ec8f0d0eec5671218459601adb1baf9853bdc38e4bfc5c03ef8cdd0d9cb5a33bafdf95a213e4b38e17b2bb552a22dcf54fe9ba465ffbfd0b1c3fc0cc2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-internal-timeseries-timeseries.go
+FileName: vendor/golang.org/x/net/idna/tables9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables9.0.0.go
+FileChecksum: SHA1: 8e084363857457c96d34fdfaddc2a70928340f5b
+FileChecksum: SHA256: 9ae2a2ef005a5c60dfd69348ecddccc42b2a281bea19916e77422b32d0756a2a
+FileChecksum: SHA512: b129a922ab31dcb7285a1d55f065b1a7ab9112a2344e791be24307c1bd8137e15c92c4ee65fc3c4ecb69bde6c5f52b7f3d16d9eee9301bdca43dd39ec2c40ab3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables9.0.0.go
+FileName: vendor/golang.org/x/net/trace/events.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-events.go
+FileChecksum: SHA1: 812dab524673b759cc3a87fb407ba4ee0f470ab1
+FileChecksum: SHA256: e5be6d11a7e445104a76048266bae0abd77a33a5b97d37409261be7fe1648e42
+FileChecksum: SHA512: 8c8302018f4b17e415548784f5e0b7aab189f2ff2b3da50df1bce6a050c71f3b05b9b28125c257e8fc518cc622a07d73c22049e96816a0617e158ebf0815b8f0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-events.go
+FileName: vendor/golang.org/x/net/idna/tables13.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables13.0.0.go
+FileChecksum: SHA1: c54ef40f4885210d0ede5d7b3b88fba56e9cbdf1
+FileChecksum: SHA256: 951230ece06a088133318ef85d38bd1436b23d6e7330863effd85d2c73866b49
+FileChecksum: SHA512: a9043209a6185bd218a655709941f2e8d7ef5c03cb2d8e5576dc4268c05d912910f82ac1f8ffd88068c87a534c639425777626d66d27d85d3598576c2bccfe4a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables13.0.0.go
+FileName: vendor/golang.org/x/sys/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-AUTHORS
+FileName: vendor/golang.org/x/net/trace/trace.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-trace.go
+FileChecksum: SHA1: 42b5018dcaee5c896ce12387591942c41555159d
+FileChecksum: SHA256: 3bd9564c4f8901211baf0fc33f58535554a4f0fbde1ec71b4994b33ae77b6468
+FileChecksum: SHA512: 670e03d6f683636a63fcaf4da8c033e98f26b9358a471e7c78c21c667fa6077f2aa2dcccb21910b4a161d6bc4009eb2fb0f25a4f40640c6bbb4d1e3a46293ce7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-trace.go
+FileName: vendor/golang.org/x/sys/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-CONTRIBUTORS
+FileName: vendor/golang.org/x/net/trace/histogram.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-histogram.go
+FileChecksum: SHA1: 4868124ea638ce5460acf749d21ba5c67bfd23da
+FileChecksum: SHA256: 0d7d8f7d0ad414202bad733834b03620a8701277116c09606f8773ddde6277b0
+FileChecksum: SHA512: 3031d59b709f2a543f474a04977e82ef103e21c8cf6b35e9c3c3eed62e16e416df6854dad24360a437569710751740d6839cbc7661c44cb1b02969e560de8ef0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-histogram.go
+FileName: vendor/golang.org/x/sys/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-LICENSE
+FileName: vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-internal-unsafeheader-unsafeheader.go
+FileChecksum: SHA1: 057e624278df89fd26d58fb5104653033541a28e
+FileChecksum: SHA256: 8ab6b296b610d187578596c01c09ff0613d78d07a0d891d5e17aa5da375b6948
+FileChecksum: SHA512: 4d468eb82b8d50e0178fa87d9141ddd2c8372382b6f7961725c335194784bf5d545dd9a69709c379b92c18b92f94fa2173fda795e5ab661654ca1e9a71481605
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-internal-unsafeheader-unsafeheader.go
+FileName: vendor/golang.org/x/sys/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-PATENTS
+FileName: vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95amd64.s
+FileChecksum: SHA1: c5661d8fed6cf5a4075e7a84e1beb2d70bda4422
+FileChecksum: SHA256: ffcd45494479e8704e6c76c0cb14163e4a1945d74f227689050942bd539b776c
+FileChecksum: SHA512: c85cf8eb6a250b67dee2844edf5b8a63597a3e106deb8e47b18608f7543d01566fe952f0bdcc5fc367b957b8ec59b52e3602c867fb675e92dc23b81f75a2ec3e
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95amd64.s
+FileName: vendor/golang.org/x/sys/plan9/asm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asm.s
+FileChecksum: SHA1: 6741e5b924b0941335c05b65966b52f10ab91bb0
+FileChecksum: SHA256: 1a3a3cf8d418ac9c4093d175f6c5b12997d0bd6902a5467d3f79e3abe7e60d78
+FileChecksum: SHA512: e3a5541aaf3bc09d65e2ecc32ba5b2a8256d74f9cc52e7ef2bb0b50878991a5709d4c3b545b54617c2dcb94bce1ccb460c0e1fab9407001e2addcb2d87854b59
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asm.s
+FileName: vendor/golang.org/x/sys/plan9/const_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-constC95plan9.go
+FileChecksum: SHA1: 5877f9ce718c9dcec91bfa244a175f20e0350057
+FileChecksum: SHA256: 622cb24770d3e8e007f200782210eafb4e711caf49fae8c3a7d9f8bbee312e4d
+FileChecksum: SHA512: ca1c3cb948500ca0f7c165cb7033fe15d6c18516bd96fdc86ed6a4169576b54e5a753c764d2cc5779a61037955c6d9041fe054b648acd0aa3ecacd7dcb1b42e8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-constC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/asm_plan9_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95386.s
+FileChecksum: SHA1: 4f66ae0fe99c1570069c53dcb177e45db5a70a1f
+FileChecksum: SHA256: 24a9c10414fc834ec763576fba475148243e4253f2a94f8001ee370148628db5
+FileChecksum: SHA512: a9ec63c9f91b2f809ae3b87122cd77324aaa4cb2aaa21ac0a3fa35b4e5fc662c9198bda983e0d8ee0b3c02fd676bc111796b5b0455e921fe250eb8a42a390711
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95386.s
+FileName: vendor/golang.org/x/sys/plan9/env_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-envC95plan9.go
+FileChecksum: SHA1: 553adc7c25fb8dd11a71dbe853ff35c66bd54ce7
+FileChecksum: SHA256: 73d0fcf4f3d1a36028d3448e105961749f3e2e672288ce295aac942d851c3546
+FileChecksum: SHA512: bb65c51665267e96d2d4c176c8b08da94acc2a241df961088d08d6a6e4482458d4d1c5efa151c3776b8fc3a2079f5a8fc904c5e3ef30c2b240370310c1e167fb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-envC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/errors_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-errorsC95plan9.go
+FileChecksum: SHA1: a6e875d6c72b6b7bebe312b6f92f7b58ccb84d8d
+FileChecksum: SHA256: f7cf2a2692a72eb8df570f98351fbd478306686cb3f3efce1e6921fdeda3f5d8
+FileChecksum: SHA512: c5458dce70374efa9d57f8c28aca1ef5ac21e4d1cbe9ad8526424dc49a271dbb124f40d5e538f09b9de22182ea818a2f3839310ec74fdc2c26ec327e915055e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-errorsC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/mkall.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkall.sh
+FileChecksum: SHA1: f69a74840722fe81283600522a65c2124e085eab
+FileChecksum: SHA256: 4c00a754aef7a86bbff33d75cecdcc5543ddabd1b81a4d0bb1f6de47e04fb928
+FileChecksum: SHA512: a4e746470a02f5bc7fb4b6fb26e8b90d74bd21f75dd184260530ea49f063b8b8fdc65b20dec90c41548543a459a01ec017938b4ad1d318e4affee7b9222ca6cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkall.sh
+FileName: vendor/golang.org/x/sys/plan9/asm_plan9_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95arm.s
+FileChecksum: SHA1: 001243e5e73686f04c3f45eaf31003d60d235875
+FileChecksum: SHA256: 134d070fb08d17dcf9d99ddf49d0292b1aa068fe3458112070e0e7374d28bca2
+FileChecksum: SHA512: 97eb19a95f0bc5ad9588f72f0fe5215f4599f5c1b885cfd4d1e05b2152b6e3300191362ab94e8dd5fcfdf0b80be201dc5db89b41f187750e83d1a11896627ae3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95arm.s
+FileName: vendor/golang.org/x/sys/plan9/dir_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-dirC95plan9.go
+FileChecksum: SHA1: 1897d02f4930719170d62a0962a96ce14646617d
+FileChecksum: SHA256: 8a085a885566456c46be6b63945569f3ade74c8043052010e63b50bfca22e428
+FileChecksum: SHA512: d7ef006dda681139763b46905d428f78257358de895174b7caba29fe0dcf232abb9d659ef310e6847c75321716abde368897da765413b05d0b790292ef7d8729
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-dirC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mksysnumC95plan9.sh
+FileChecksum: SHA1: 4fafe8918e221305ea72a414dadb4b997838f078
+FileChecksum: SHA256: 0b8858af1df4540706ecf1094957f239bee92085f9560f0337eafa634702c161
+FileChecksum: SHA512: 40ed7b8ef25e37e6bc591211b96139c6faa44508425fc3d2c41e5c659b9e831711321164742604009915d0b9d8e5329ce07d792da577d5781d70ff9b3047a6db
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mksysnumC95plan9.sh
+FileName: vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95go15C95plan9.go
+FileChecksum: SHA1: 8e44f764a3a9b32beec402c9782f5f56d2ac83d9
+FileChecksum: SHA256: 65e3b7bac0f25e4ca7b09169112ab6f3a7e33b0618a3e2bf821fb4eef716a56a
+FileChecksum: SHA512: fc14dcc10e904f991c92113809d02e84b71deaa67004dc3398a2e831e48275e9750729523dd43330256efa5ebc58e7b7e9f5f776cb4e4b108e61badc8479edb8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95go15C95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/pwd_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95plan9.go
+FileChecksum: SHA1: 2ec8e8ce176fb7fb6b6b97c60297a4eef1e391fc
+FileChecksum: SHA256: 39e129982aad81d8bbd2d30750750aa9173287c8b1de7e2a31b223af62f1b831
+FileChecksum: SHA512: d6648bfe81da9dedba23b5f8c921ccececf337f55cd84aa0e6cbc18d487eaa57b14781a0f7c32e4c38fc01b95a66edabd755f3da4a580a903e5105c7bca4fb35
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/race.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race.go
+FileChecksum: SHA1: 0f280b2389ed89f3ad7000f94e1ecf993826e7f4
+FileChecksum: SHA256: 2f40075973ff11d41a94f9e0e10d8f7ac5103a61809999cebe8ea61f158fcb10
+FileChecksum: SHA512: bbb24d67fc6b5c19c1a51ab71599948796b08fb6e4dbf9e6efc9cc6b567f5e7420bac302af69d0082c5daaa991a20f4092778d055c066a09728607d9499833b8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race.go
+FileName: vendor/golang.org/x/sys/plan9/race0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race0.go
+FileChecksum: SHA1: fb1ff086cb8a0c4bc18cbfcf2c43b69abfd56bc5
+FileChecksum: SHA256: 64d666eb5ebcbeaf368fa4952dbd6ae9c16f9f89ff8ca6031187d1514036f5dd
+FileChecksum: SHA512: 9429141860155ba131096b9d2762da9c214f080779d45db163ad6a1ab6d38c4caf7715f8e1b70a5d68bc50ab192d576e49568fd5616ef6e32354623117c22a4b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race0.go
+FileName: vendor/golang.org/x/sys/plan9/str.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-str.go
+FileChecksum: SHA1: 95821ea5de37a2826a5b07c5f1adb570f1c110c1
+FileChecksum: SHA256: 25431414c2ef9fa2a0ec028bccbecf4035ff273d1d36e32b7837539d60774c76
+FileChecksum: SHA512: e2cebe32e836b6a60332b8ca370263dc48998bb951d31d96b2cad06425f4ba93b15a45cc213ac6ee7c60153d3176f54a944e560cc23cc028da94791fdf2933a4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-str.go
+FileName: vendor/golang.org/x/sys/plan9/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscall.go
+FileChecksum: SHA1: dc4fc266aa7d7e4d63b5870ab3f3aa99cd6f085b
+FileChecksum: SHA256: 07bdce86c2a977c490bd3064063878ef033252d00b664b3f1ad941688c6e7ea9
+FileChecksum: SHA512: fa8da0ccadf13ed2550fed0c8f407648f546dc94abe8d80e3c9557edf2d9eadc039112f5b41b54d65aa49c104969dcd5737a582ffa59e5e88b40bc4df64e4a9a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscall.go
+FileName: vendor/golang.org/x/sys/plan9/mkerrors.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkerrors.sh
+FileChecksum: SHA1: 82cd68406765bd3ec9ad9b8763022be65f177bb3
+FileChecksum: SHA256: 22ea3cecb0d7cb824c2c65816bb002695f90c11f45802e5832f9879aae2f8fb2
+FileChecksum: SHA512: 6eb982a7b834a679e1f9d90ccf6136b6abffb57efdda06814fcacbe77eda9b8f379d87343dabde998a67214823cbba8aaa50f7cd48483185c5beca5600160c9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkerrors.sh
+FileName: vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95386.go
+FileChecksum: SHA1: c9843fd28624a6a3ebc697b51bbbe25eb961acfd
+FileChecksum: SHA256: 84eaee9e25215636dc8b46b58cad8115978e8ab80235d51f53e78dc0c141d133
+FileChecksum: SHA512: ae1d35aaaca9606fb5cf76ea32b5d718fc821fa1f160eb6cf1c6896923087e0ff25cb22c92c8172225a9c1ca55b7aecd9b4ab20c17098a995faa815f185edc37
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95386.go
+FileName: vendor/golang.org/x/sys/plan9/syscall_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscallC95plan9.go
+FileChecksum: SHA1: aebfbd4fb965a6e7b6502e78c9f1cdac5044778d
+FileChecksum: SHA256: b096a4bda0e9a205f844ff7aa363d5cc59662947a490e02c0eadaa5a34edc958
+FileChecksum: SHA512: a7208093ca56c411131323a594074dcfd2ac6e01d90d59bcba9d8de5550be773e80cdfaabe0976bf0314b05ba69a370bc99f8d7a8f65e6df01bca758435e05fc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscallC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/zsyscall_plan9_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95arm.go
+FileChecksum: SHA1: a2b7e8694786c50f13359ce7f4173b1797e1c182
+FileChecksum: SHA256: 1516341b06fcfdcd08c8d9d28c38d1d8feb6ca6232a78183b93677329f409e63
+FileChecksum: SHA512: 5752d56b5e6445d0c5573c4d9431afb1020953645c9885680f33dd95916434edebffb0bde02f0b897f9a38354239d1af658c4add7011687aadd441a498a1b5d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95arm.go
+FileName: vendor/golang.org/x/sys/plan9/zsysnum_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsysnumC95plan9.go
+FileChecksum: SHA1: e33394760648d7915325fabc87f7216095b38dbb
+FileChecksum: SHA256: 6b9027a1b9a0e5029f819bbed060b8771742c5f946b4163ef1080531ee4366c6
+FileChecksum: SHA512: 845a5f24c89142087fb344a7a2d5867d9edb2e8ec6bb4577419cbd247803dec7564df3e61930222befe741b7584a8b79bcc68aa7549ab37a96d1fecf13f68cf1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsysnumC95plan9.go
+FileName: vendor/golang.org/x/sys/unix/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-.gitignore
+FileChecksum: SHA1: 466625d6cbff0e18c8c02446914e9381e67f9345
+FileChecksum: SHA256: cc0a4a6efa79e7f971f329717482d436e7f02657d0409c07fb476d698eee8d11
+FileChecksum: SHA512: 84a1ec75ad298e814d3e8155cceec8c556fb6c22445cfe05adb12423b2813166d2850a1ae585c73b33f9c67784709d36e8bffd79656cde51b0f4b899cc348621
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-.gitignore
+FileName: vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95amd64.go
+FileChecksum: SHA1: 4c0b2a9c6a605cfd4826eb5c406ba94103362d79
+FileChecksum: SHA256: 798187308d8e7168a4b28daecef0bfe06ca26335676968a7bfc17bb307802197
+FileChecksum: SHA512: b373c9c362b7384b0490e6387c6e9523539601fe9c9d6eb9a2edcad2299201a9d57d70280762922506d7d68b473067c3e5eeed0c3b5645ce6a4f25c0c251f3d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95amd64.go
+FileName: vendor/golang.org/x/sys/unix/aliases.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-aliases.go
+FileChecksum: SHA1: d91b62bc1f21a3330e2d2ffb77749fc798d28d88
+FileChecksum: SHA256: 3269423037681f1aa129d3bc3f2f8e05029fbc98f2929f458ae4053c235b6db5
+FileChecksum: SHA512: 5d187e1e69d8afc39625f48cfd9774fd78fe7233332c68e3d0d6acf3a0a75a512a77b99d12afc9b82b4c993bd35cde7d4e3edfbe1143037996d74cf5e1310643
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-aliases.go
+FileName: vendor/golang.org/x/sys/unix/asm_aix_ppc64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95aixC95ppc64.s
+FileChecksum: SHA1: e7dd3214c7d5fab522cf7eddb40a873e9305a88c
+FileChecksum: SHA256: 66100017b30cfc7016424be7dc6dd0cf15aa1b0e0e60c10950a248125d02aff9
+FileChecksum: SHA512: 33e377c6a016b5f9d52162212db21f7965d772b7da91a78d6299d1695ce4ff39f744991a6b060d6ca74d42b54329c757f8927c0cef328d32efc991033a53f50f
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95aixC95ppc64.s
+FileName: vendor/golang.org/x/sys/unix/affinity_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-affinityC95linux.go
+FileChecksum: SHA1: 7116fffcb11f2ed2f7a54004e5d221934b657974
+FileChecksum: SHA256: fec0be0ae3217f48c812af387e8763f915ed129745f9d12711a95eeba505e1be
+FileChecksum: SHA512: a3f1e7f2448fbf5cc3c6b520fbcf31af913a30c1545bf61d5f16622ad03d0872571ed422d159c4421050871d47e4b1b5152bfee89212f717ec7fab03b98357b6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-affinityC95linux.go
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95amd64.s
+FileChecksum: SHA1: 686226c59c386791da5c159f7bf926e5442f3f3e
+FileChecksum: SHA256: 9a6fc9dcad8e20d8cecba8178b0abf0414973f1185851059850aa242b8cec71b
+FileChecksum: SHA512: 5e8a0268df75d414480f0aebc658c767dab328ed8eb091b3ecd28118a48d8750a6db46650cd7df2e2b44baa3ffa96e348a1a015edea37539456542d0d8816157
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm.s
+FileChecksum: SHA1: dac4f61b5738c1109b23cc836fd9de21a14346ed
+FileChecksum: SHA256: acefd0716a37ebc470d58959f1c4903a306bdd65ec4d98601d1fed767bbf03c8
+FileChecksum: SHA512: 237e954104a8470d7d74b47460df60bd708f2d11f20b623d64c5cd899e125835138c6f30363144cd597ea0a1e87dad2c93eff2cbdaf923922c428061c1469b55
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm64.s
+FileChecksum: SHA1: 98089ad4a8a17d94cb2313f447a4c157d379c468
+FileChecksum: SHA256: d98badbb1b206f4382580feebedf17fb4e6269934e462f803daf3c356441cccf
+FileChecksum: SHA512: 40f90b1c81f96a6dc64f03a80a77bef647e853f08c3940789dd0bde40faff0f8852ddd053b22e2c6716826d6dcb50d9fed24a7254cf61008287ba24989a0dfb4
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-README.md
+FileChecksum: SHA1: 05c613b0be6a188f488161e6cd88e01c82ca026a
+FileChecksum: SHA256: fb134960fe62676a76aab5538a653883f32c44462e089601ad00abbd4d4584e9
+FileChecksum: SHA512: d75f19d3749cb17984a6924a4b0d9a2ca1a3ed80c33f56545497504331bbc65a9f2829c329de3e2b2a09b2f44f64db7dabcd62fc5dbafb49821a3638f861c1e4
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-README.md
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95386.s
+FileChecksum: SHA1: 1dbfbe845702b9fdada1fb26940290e3a697595f
+FileChecksum: SHA256: ce491feae6c6aa10aab9d9642820eca964a7ff1fbe4f0bf950efbe7a0b109bdc
+FileChecksum: SHA512: 140b0ac593479351f1abe0414df0d7b7495e28b92a7bac9377b506ca2bbac1464e7bc613cc0d5941377bc8b8fdc1d539f9c1e32aaf495b7730e7ee945f33165a
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95amd64.s
+FileChecksum: SHA1: 50ba10feb412a2d045576d734fc481724b022d51
+FileChecksum: SHA256: 100655ab37c9d3939c01b0fb94f11d4d742ac69290542290906c8fea8db9d4f5
+FileChecksum: SHA512: a261bccdd8447ac0455624a133421afd57d9546bee0e74a74b0b95bb6f7963e9932d1c527d77a51314ea959fe83788246f838fec55fb0bf2ba962d1a5a0b13bb
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95386.s
+FileChecksum: SHA1: b45996d69c5281c27ed2034ccde3052287a35869
+FileChecksum: SHA256: b6307618eed73febf9e0784358b42846b690595be195babd86460b67faffc30f
+FileChecksum: SHA512: 3fc3fbcdc8babc0e891ddf4ac704025f4a118f91e9e604762bb7c2e705e63116be44e77c70c5e7675eaa098d5d617c5eb9e96b909fa83f7b7eb67a31d562c2c1
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm.s
+FileChecksum: SHA1: 5293317f3c2d155f51738ba6ba5a20ec16b94864
+FileChecksum: SHA256: ba6f5c549a842f53b21dbddb619dd4cfa2ccb176e1e0a5fecd88f4ddf2ae8597
+FileChecksum: SHA512: a1de27fcbeb4794201fedb8754fd8fd2116eacac5c2d5b4c3d64e8c76cf063092c82a55362401cc8c182966d5a170745cf2a1cd99ca8c40e8480be444e38efae
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm64.s
+FileChecksum: SHA1: 8168947d9eebad40c5358ba6fced5219b9213acc
+FileChecksum: SHA256: 36063775a63c943a8c241979d4400ce7ce28fa78b67ccebb3a2f9e3b126510a3
+FileChecksum: SHA512: ecb4b76e2c05c1b6f7625515ab790235337270e8683fbd466ccd8f7bc174e8c7baeb7d80bceddc68461673f3be3dd91342fd256b25b720388c8ae83a735d348e
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95386.s
+FileChecksum: SHA1: 44ea1a107b1e1c67499731e1732660685ec88ed8
+FileChecksum: SHA256: 9fd2fb1c754bb5863ce3e420338da73643e32a6cf2ab63d56d639adfd37118fa
+FileChecksum: SHA512: 3173f88f9a1c3747d12e331f53fbdcd0d2c2085c37d964c06f24f2c3a04716edc359ef7ed94af0593bbdce19de2c9cb7c4404f01bb348a4e5ba181adbd83bbe5
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95amd64.s
+FileChecksum: SHA1: a5a1aa91c033a7c5a53e261fee92bbd3fa5d92b7
+FileChecksum: SHA256: a1336d7bb725fdad6925e130223f1a2d5ccdf1b8bde25136d7f51dd7ea96289d
+FileChecksum: SHA512: 89c626729df183da32b55d479b78cd0e784ad56ab3c9b44d84b0aebfe217b40adfb335352c5a7fb85cae93055a1913313735af7bb675adfbb3d7c5ad8cfa38fc
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm.s
+FileChecksum: SHA1: 664d40f936300d5d6c5cfcc0b0089ba4db4ef929
+FileChecksum: SHA256: 4c55960910a04d66d508302591fdf66abcbe809b3e474b6b06d9af02e1da7857
+FileChecksum: SHA512: 5fb1aed5fbfcba963a73dd15a0a5d5912a55bbe7e8c60373ac77cb7f0baf3806c35ed4025036c53e52b37c66656ace51ee7b80da2d29c910fe251d1751e299b6
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm64.s
+FileChecksum: SHA1: 2cb513189cf04e2abbd265dd94a4999dac53b736
+FileChecksum: SHA256: edadacd7e25e1973b4a05bdd6b2433660f3395b130ddb5465f248c8467dae78b
+FileChecksum: SHA512: 0b7cd720871241ae3b99eeb2c5fe826ba129c8144d2062d9d058d115105c8f337855afcbcffe7a5a7408e1bd6e1507f06843bf9810de919be507339116cc8b60
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95dragonflyC95amd64.s
+FileChecksum: SHA1: 66fc58ee2ad0dea03b3ac814994e6d457fa4e76e
+FileChecksum: SHA256: d2b89705b6cf95e2421f06ce22214595ebf3204a9159875e567e86e70a1ad4bd
+FileChecksum: SHA512: de2b19a2c1f21e3b6f5ac8403a20e50774450c7aeed15e6e467a0a74524d39ddab614aa2f0eefc0631ef6329e00a7cce35dba902ea720c38410bb35cd5a905f3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95dragonflyC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95ppc64x.s
+FileChecksum: SHA1: e2cc486af7995be96b610298c5439a5ce8dbc051
+FileChecksum: SHA256: 692dc54cd00b2daaf14b98a1359219fb839e06b07f3a2a953fba4d1586ef2ec0
+FileChecksum: SHA512: 0adedadfd46bb0f24593e18078e4bb33b9360ea2ba15f57ac734d63dfb946dfdac1f1b061b729c2ac770931dcf6224a45ca0516b963aa4246d732d429cdc1c4a
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95ppc64x.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_riscv64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95riscv64.s
+FileChecksum: SHA1: e9fb08c73a895d935ca219e69214b0670c2aee8a
+FileChecksum: SHA256: 7d058d9777bd8d25b43d2563c9ec25f11e60748be36b8b927fefc60e747f5eb0
+FileChecksum: SHA512: 0c450e1a86afdd93e441094cbb57a3f5fd3d59bbf44b4a7f45d7edaddf032b8ff182704bdb8c8f5c4f8a4d86a2a78831fb5f2404483b79040107ecadbb23efa0
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95riscv64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_s390x.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95s390x.s
+FileChecksum: SHA1: 56b027383c86a63e57787d10f1622bc28b654af8
+FileChecksum: SHA256: 67e5f2e490f4bf38afa32dab1e1ab28b3bfb80dbf550c35c9b34e67e04b00c34
+FileChecksum: SHA512: 275b602da6b459dd8f375dcd42a525d1faeff4421818d8b830de351fc74a10811f899bbb8da3dc234208cc9a205787ac9b59be810ee095d9e119542623ae8406
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95s390x.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_mipsx.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mipsx.s
+FileChecksum: SHA1: e320cd7c4daf4c2aa73243a1a6cbb117f70628a6
+FileChecksum: SHA256: c6617962cf1d39217a7e0ebf48ef6242ced71b8cac1327137a817d2b34c3f252
+FileChecksum: SHA512: 52f51e0b80ff561728808bfc3af77a6a87bb3f07ff8d69a069ecae3e5e46bc887ba01636216bd6fa7c15613d2adcba1eea084c238b1b877b7ae7f34edfb1a17b
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mipsx.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95amd64.s
+FileChecksum: SHA1: 7864e69c2cd2a341755b083cfc601fa73423f3ee
+FileChecksum: SHA256: 6b98a13e8375e2c216f49ff3a1d659a91c8cabbef6630653975482c96ae5a15a
+FileChecksum: SHA512: bedf0161dced3abf2529067ed57dadc079fbb1e3d8301b77c792856390d20ea7e4959da80ef8774fd3c160411d8b3c0f317b746e03f156666dd1170f3eee97be
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm.s
+FileChecksum: SHA1: 1a7c6e7d11211628c797fdb2514276d1d33b5c9a
+FileChecksum: SHA256: b7afbb9e79c7bf18533ecfba4a5a262ecdd751a27112d4c8067a0ddaf9fd97a6
+FileChecksum: SHA512: c5c2f1b412f987a4684eaa61803a81c6dcde49751073536aa78594c4530480528ec103df9d39d5c3b463ea646b2a5ee326337aeeb89e2f419ff4a5b2f687d29f
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm64.s
+FileChecksum: SHA1: dff193650ebbc4f472c8b6d4b6161c268c51adb3
+FileChecksum: SHA256: fe2e87297af6da7cfb2a990f15073ecd7563ebe9bb44301bee4fc800b13a5bea
+FileChecksum: SHA512: 193d4f2d6c6ec30a51a305e386d61cef14c82c5f5301da2fee2e5e94b1bc5067aa2607e0975181be3652ca63e2157688962d8fd93f1e2007cd25074905c22a93
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_mips64x.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mips64x.s
+FileChecksum: SHA1: 377dd3ab702b89d470fe7e97843e14e63ee6f201
+FileChecksum: SHA256: c86781934de4281b7dd79f20a133f9664750a70ec1c59f9d8e74b65b70acff14
+FileChecksum: SHA512: 3a4f7ed3386cf7c6af8d666337392f6ee9da67eb20e0692ea4d39bb327b9ab34fba17876b79adf36e96bff5198afa51a3e7196d5c32b2fea143e6ae4b95559d2
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mips64x.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95386.s
+FileChecksum: SHA1: 554e5a917252eda65b98a91d36293cd25e1ac5e5
+FileChecksum: SHA256: f8967caefbcff155928a71bce857c7937c680930180ac640bb2033a291b2854f
+FileChecksum: SHA512: 38743746d21587f17a68589673dcc55a84b261d9043aba05cad7b680fd81382b9a923abdfdb29876799b1243a72ceffbd6486a674c8aa86182a63fdf09c2641b
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95amd64.s
+FileChecksum: SHA1: 48db23caac7b3fbfa807fa13b8b20acbc0752720
+FileChecksum: SHA256: 288b33840bde55db9eadb8ff6af0010a12dfb8da67e16ba0a1cec603d021c5fc
+FileChecksum: SHA512: 783633a8aed0c46cd6ff44ceccd6a4801b55e33cd1e3c71ce11ae056528f91c0e8a827ca0ba9dd266abe143d74a1ca3e0699c6b225f77e3edcaaf4085b357a0d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm.s
+FileChecksum: SHA1: 3bd2292c1d3d01faa7bdd58bd2816b6a765aa1b2
+FileChecksum: SHA256: 859b752e57f3b760bab69342dcfc7494ca32a6c3c984f6c6785c5a57d1c4776d
+FileChecksum: SHA512: 7c4f3d0cee9f87817fbd201bfea3db444aec1230295119be90adee35f457fe4aff8e97bc7d28f54a8d77fb049e586b75c41eb0fd3337f097587a58516d715285
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm64.s
+FileChecksum: SHA1: 2502dadd50ae95bf728d03661a6d7afa00a3019a
+FileChecksum: SHA256: cd9eda8690af6451a801782a1fa1d269804f774e1fcb4cfdc02d15a490d456b2
+FileChecksum: SHA512: 5a11f8a4ee89cb95041f6d6cbaa9c335a522205934dd26b8c0645c174374c09f7003743c4819b061740918914c56a8707b62d8d92adaf063f7b77bc7e4f914d5
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95mips64.s
+FileChecksum: SHA1: 28b381a45b3448196e614692129975ef65097be7
+FileChecksum: SHA256: 6e7a254ed87d7c291631d04b42bf77e81e0697bc6ee45ce7e4e8c9e51c4e4843
+FileChecksum: SHA512: fc81d8f904c5f22a8178549535414dcaa41c516fe185b308e767ccf1174bb34a99a8d70fa06b28afc87fb51394e34df65166b8cae694890ed93c143c4c56a8cc
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95mips64.s
+FileName: vendor/golang.org/x/sys/unix/asm_solaris_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95solarisC95amd64.s
+FileChecksum: SHA1: fe531542ae657ce252b3870202e2fb5c1ff0a7d2
+FileChecksum: SHA256: 937fb73ab93f5d603d81b77a6c8f264a04b721c97fdc75d7dc258d38b1af8354
+FileChecksum: SHA512: 76f55b61f4439c5dc747190ad7cee3d72878bcbe5c8f507a37895bf966107e000d68216c670c9f54462a477257e2f3224e74edae0f775448e5c8f427032db444
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95solarisC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95386.s
+FileChecksum: SHA1: 4015a8ffa409c8b3036b3db4af9ff294a0a3e920
+FileChecksum: SHA256: 1a0edd13e6b566965004fb17fd9ed7c3d320a985b93ce2caba1716fd4db95cde
+FileChecksum: SHA512: f6a9538a211252e840e3422160dfcce117cff516b8e8a42147b82c5935ceac3bbb079ea3e1f2b05cd1d56279d67d0d709ad81a7907289f54752f0ae6a3e9dfab
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95386.s
+FileName: vendor/golang.org/x/sys/unix/constants.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-constants.go
+FileChecksum: SHA1: 488679a5c3e2d6b8e98c8710355020321578841e
+FileChecksum: SHA256: a7034e2ae43d6530b8ec28e07d645b918dc747448a1625547c45ae5542cf4f3f
+FileChecksum: SHA512: 910423ce3ffad1d3fe25a5907c120bf2231e0f0500b40ba262fcfb6488dbfbafe46a5f9e083a7fbc55dc94be7e119b7c7b08297617832c27b5f360b972736935
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-constants.go
+FileName: vendor/golang.org/x/sys/unix/dev_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc.go
+FileChecksum: SHA1: 864041bd66883c983cd767eb076212dfd39144e0
+FileChecksum: SHA256: c2923a64bf5bb8c49da291d2f655972d563245d668b7032ea7e09e15e685916f
+FileChecksum: SHA512: bfbc7acc18e5b73f0f5947b5434d31dae2619a95d240f4e4d79687e50c00b8deb47e11e005666a6893e83e5a45074ba86ab6c8ed3470431e19b32acf3b7a50b3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/dev_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc64.go
+FileChecksum: SHA1: bedfee4ecbe9550c9866db2a0d7fea69d60fca5c
+FileChecksum: SHA256: 43fdf5e18ae1da43c73807edff6bfd7d8a75b4af05ba7d7796f49c2c06a4eafc
+FileChecksum: SHA512: 3affcaeaf0a2a3423b6367fa12af8270185ee846b68856b6a8b8a9fe641ca4e19b488d24f95f51f5d023f0505c8582c5dbb26517e39478ace40b05bde51f0b90
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/dev_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95darwin.go
+FileChecksum: SHA1: cd4a999a8357d9cf0bbb8f4c665fbe6379ab0fa7
+FileChecksum: SHA256: 9a0bc8af77b4325bb10b651e00b8f7974cc972d0e5456a370f2c46a56181ada7
+FileChecksum: SHA512: 5748c674bfbc75703ced4b252fa484bd6312d9ea08a0a281f0d0121734827e3cf4a34719e12d40bb10438e3b1a041a7d7b19782d4dc992dc1e7ef07bf6594bdc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95darwin.go
+FileName: vendor/golang.org/x/sys/unix/dev_dragonfly.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95dragonfly.go
+FileChecksum: SHA1: 9788045054bc0ec340d269be047c1467e4f48616
+FileChecksum: SHA256: 125802ffd01c98daddf86bd57960f51f7dadccb15b530c48e6a24f4f1c697fba
+FileChecksum: SHA512: 8ac6dcbc79ab55f00fad358f122c2c7f1d1d157b1a2f527b6d175c22e0388300a1b3d4a368aeff34b8d7e8faaf7cc76c9cc1fc13d97b9ea3ccd99c44f20adbf4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95dragonfly.go
+FileName: vendor/golang.org/x/sys/unix/dev_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95freebsd.go
+FileChecksum: SHA1: ea636a28a95cd1b7bf4fe338c120f1f3ef51b299
+FileChecksum: SHA256: c246eb43233fd2e714c85e84407a084da2823d5a64e61313fd393d34589ef0f3
+FileChecksum: SHA512: 62ececb28ae9b9d57b5d510f5ac0bc254b16ff436c92a098c1d8380d8d6e122130f05b51d1face6a6c02bf722c7461eae74fa6ee78c7cf8685cc780ceab1333f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95freebsd.go
+FileName: vendor/golang.org/x/sys/unix/bluetooth_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-bluetoothC95linux.go
+FileChecksum: SHA1: e6adec1a04e7fd15b0c1afb6c8a8b333a2bf1a01
+FileChecksum: SHA256: 72ce84a68d3647cd34f04e9040861333ac9e9f9ac5b00008d41514c79da664d8
+FileChecksum: SHA512: 649e804c162bfee6207623f09e5cafba94d8062c13b3b66ccfabe971512476fae423f08cb25305968a73913069b8f580afded984b04e9f96c0926042886cc4f0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-bluetoothC95linux.go
+FileName: vendor/golang.org/x/sys/unix/dev_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95linux.go
+FileChecksum: SHA1: 4b604c9aa4a3334b2fc4d4977247f008d62b46b8
+FileChecksum: SHA256: eec381cf025f58965728544dae5df9394d6bebc7e68572e429814c87ee6dd284
+FileChecksum: SHA512: 85e147440039d6456a218f2e886b1d951bc8d90c1c4e8a3e9870a1c6fbd9b9f3bda0efa8fda2b3d5d8f48afa2a80d510de5ca02c5ae096707699d508f078bac9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95linux.go
+FileName: vendor/golang.org/x/sys/unix/dev_netbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95netbsd.go
+FileChecksum: SHA1: fbc9ab1bf67ba7a547bac2f1542f30969106a76d
+FileChecksum: SHA256: f712a720bab3f9598c897c45e389c6666998899b963c05892fc2e12179cf1ca4
+FileChecksum: SHA512: 2b5830179b1cf525f8f702186b5dcec38cf775777e2338fa271a33a75fd78498d3f8279fd6f62b00c3754eed0336ba220e74b533569441c90bcadf8d998650a4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95netbsd.go
+FileName: vendor/golang.org/x/sys/unix/cap_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-capC95freebsd.go
+FileChecksum: SHA1: 312049493c0fb7a251301ce5c53f3306fe05202d
+FileChecksum: SHA256: fae1a8af18386a11fb86bdb212bd64198fe63209524919d5ddbe560d582a4003
+FileChecksum: SHA512: 408ab4af29905031e7e0bd31f61c68dda5a262cc2d2fdacc6cfb96b03a017cbc290db2fd0a086bf85861229af843e3b8d9a939cb3f44549393e3aa1e542b2ddd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-capC95freebsd.go
+FileName: vendor/golang.org/x/sys/unix/dev_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95openbsd.go
+FileChecksum: SHA1: 70c3c3e2720b74b1072d7e96501b7f279d7eefe8
+FileChecksum: SHA256: bc0456ed97d8bb58bed6b4b70959e04215d3393596d92b33a7aa515238349dd1
+FileChecksum: SHA512: 858fe6d4c81635457675042a54ed69a415094ffb70974c7cd31ad741f1b6f4cbf78140cc1592eb09c406c85801abbc517b791681aceafbade2e186ebb9b3b290
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/endian_little.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95little.go
+FileChecksum: SHA1: 1c73462db0dea25adf65f14cf5d57c178b85ee91
+FileChecksum: SHA256: 880f6589ca1150f3f281817b446a5473bf718863b3619f258ad79fc3dd036fa7
+FileChecksum: SHA512: 98d7c98db033ee8e42b563c15ed2d4992cf5d842d01b95750a4f7b97e1fda0e44b0b0f2c31bc7322bf8cce16de9bd0f938243f0bc12ffd30a9f32a82c5ff4ef1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95little.go
+FileName: vendor/golang.org/x/sys/unix/endian_big.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95big.go
+FileChecksum: SHA1: d86f194d3c9531711743554571d073d75935130c
+FileChecksum: SHA256: 51cdb1eca0b1ef6ab38cc580a74cbc0b2dedda8fde570e204b2158bedd5df611
+FileChecksum: SHA512: 8c9f21d9d67658903e465f331a0d597ca861c4e52ec77a92a26b6102990399531c0cc1f37edbc544c8135b50a998527e84b5f813e7582a94925b90450313b910
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95big.go
+FileName: vendor/golang.org/x/sys/unix/dirent.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-dirent.go
+FileChecksum: SHA1: 2e115bdf3a5b332c1f112f7863b12edc8b1c79a0
+FileChecksum: SHA256: 026f8a6b47789a6958299b183c8d045fefe7ba08e91879a2e3bbbba9f6812521
+FileChecksum: SHA512: c320b56c895790a7b1ef56e7a14f5648490a18c817245847d180e9b99cd391ad72dec55655995adbe2f4f284ebf3254a733ea91867602df982e916000cbdce03
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-dirent.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95amd64.go
+FileChecksum: SHA1: a74696c1140fee1b7ec3f20c4ee880653e5041de
+FileChecksum: SHA256: 6ae8df82b37d768c3ce9370e460a6d85491c9843479b1ebff22387b6ab00d45a
+FileChecksum: SHA512: bdfd54e4360f04641b1bbe382178a7fdc5f729cc78f4c14c5f8d893b3b0c93e04646edcec83a58470e1e855195c17445565a9fa33c5cfde00a507333acb5c116
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95386.go
+FileChecksum: SHA1: 7c10ef6c8b16f70b1c58a276f7abd99a242e1c16
+FileChecksum: SHA256: 9b3c5ee7d1b4da62d0c18cfa39539fbf4e9e46ce454e1fa69c2e5ae901ec3b52
+FileChecksum: SHA512: e6b1e406f2200a8280605e2c2ee924305728901127a69b9b966bbdf43a85201071fa73ced16b80dd02732de5348ac0dc7661019211e348e0ed6a40cb8183da9b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm.go
+FileChecksum: SHA1: 5043163c236e404d606225d67087a16a1ca62e80
+FileChecksum: SHA256: 06b313cc0ecad484868d8d940a6a2b50ae5bc122f2907fa5cd9bba44e27382fb
+FileChecksum: SHA512: 3e449ee45e8411ad4d8e549c38408d631896bb70c66b293e2298849f39bccd8b5ae97d6a59c2af8543c7bc0c3f0902fe2fcf54d6adb38934b16e9c35c1b322b5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm64.go
+FileChecksum: SHA1: 0b19117f6fb831fe33b872b31fc5b9bdae3a3ef0
+FileChecksum: SHA256: 69089e460230321aba299ef9447728f82d91e46328628b3a0280e6f9f2745ada
+FileChecksum: SHA512: 7c4d5fd7e1d557fb10bcc7110343759607024d0270d8ad3739efdd6929c8f41ffa12fdc1691cef1fe1a0ca4b30fc553244aef9c0c21b17eb25a0a4228856f432
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/fcntl.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntl.go
+FileChecksum: SHA1: 85dcffcee808efb9117f2d373a924c3d6dbf5ab9
+FileChecksum: SHA256: 17d765179cdd928346e0588df0f0bb8163e04a2cb1afe894f7dd265e443eb942
+FileChecksum: SHA512: 5fb8143af476555ec64d44ec94770957706933c05e0e760a4652e47cd97e7bc3112d4ed9b630035146fb7356d7a64edeb10f571921f6e813f07742b1794a87bf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntl.go
+FileName: vendor/golang.org/x/sys/unix/fcntl_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95darwin.go
+FileChecksum: SHA1: c7d05583cc7fc0b28952b2d05902e5980dae9642
+FileChecksum: SHA256: fb6aa54ed72a392548bcd7c79a10ce16e9ed70da90492ef13346e2419fa52d3f
+FileChecksum: SHA512: b6708aa340898e5508cc92c06ab0afcfcc661f5e95e219302f0254feb2af468538c05d6a62b9291816a15099ddc09ceb3240fe86356a292232a0881959d19e4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95darwin.go
+FileName: vendor/golang.org/x/sys/unix/env_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-envC95unix.go
+FileChecksum: SHA1: 062cc384f267bd047e8c7949987a0d31b039d089
+FileChecksum: SHA256: 37e409c6745f3634ec41dc174c31fe7948c1250cb9bba2586552883a94d3bc41
+FileChecksum: SHA512: c65c55b73066a695f7cef70e26985ebe01aaa5cdd99226d041f749096f4826505621d4c84cd3e8d7d7c88a17323213461b16b7f85f649f2719d3eedecec15283
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-envC95unix.go
+FileName: vendor/golang.org/x/sys/unix/gccgo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgo.go
+FileChecksum: SHA1: 7e2e3c26705ba8a9d2635f5d4dd3d12bd95cdb03
+FileChecksum: SHA256: 08ebc8019575b659b5cce7af260d0ab79916b3c4de7fd7173421e742b9b67e92
+FileChecksum: SHA512: 1b3531632543500453a10dceb760da3073da7a061ba383d0c8dacc78f30e834b02398018b75dbfbe071af7c983b89d156034502ab580e606ebbba892f4e0fc51
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgo.go
+FileName: vendor/golang.org/x/sys/unix/gccgo_c.c
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95c.c
+FileChecksum: SHA1: 600010f70458d92ee02e382f6880efb8c933e736
+FileChecksum: SHA256: 1ecb71560c25f0a21e90418cd520c00c1005d7dbab5d230930d0e39b3461d152
+FileChecksum: SHA512: df7f7e136bad393990887b4ff7a25433af076f65447143c054ff7a72099492359300fcc4ffd111befd66e9475f29b8739f9b086fdfec99ca153a8cc7d391ac17
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95c.c
+FileName: vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95linuxC95amd64.go
+FileChecksum: SHA1: bcc18e2e7e587c9a052bdaf0952e1cd7249fa761
+FileChecksum: SHA256: 743d504a2e0b8f36ffb9618c184b518c6bf45302f9b01a9d5b269bd22d7aba10
+FileChecksum: SHA512: c882d98584d8f6ddc8bccea0973b10fc94cb1b02ce1d6df693a58be7df3e73b9ace4998a43a1c5ca6024f37dc83d7688bff6ba652cbf3ec72d210a3192e1e609
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95linuxC9532bit.go
+FileChecksum: SHA1: 143d7af8b5837669c7967cd2fec0c37fef2bb391
+FileChecksum: SHA256: 147c4e14a524b135bff3af48f9fc9899f9b7ec55cde60ab0b3b1002ef4b04c78
+FileChecksum: SHA512: 3568e0437a3d77ee554d6084d9fbf5749c57410ca35a07918527eb21afa9ded326bc641619ab6e2424450b8e0ba8ee98622f0b90aeb6c3331de6ee92deb3a664
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95linuxC9532bit.go
+FileName: vendor/golang.org/x/sys/unix/mkall.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkall.sh
+FileChecksum: SHA1: 86b8bf970c1a04a3c8aaf12ebedcda097e18c419
+FileChecksum: SHA256: 87a49acc20f0ea3fe5e464b682021721ca01704da5ccffd25888cd7cadc26cdb
+FileChecksum: SHA512: 4030530337aec68ff7fcf46988803369539870496a3389f9ec1ea35f4701ded815c89c272228c92b69abc23d4c33bac91cef9d9a4456b0437ac74ed289dd0b46
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkall.sh
+FileName: vendor/golang.org/x/sys/unix/mkerrors.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkerrors.sh
+FileChecksum: SHA1: c34252e675cdfd15755d9da840337d0d68565177
+FileChecksum: SHA256: aadb07913935798907d5e39526c2469e5c1b9d90b58e1b9f2f233df21a92f94a
+FileChecksum: SHA512: 9280e776bb5491101dac3957beee52ef9f29506039a40f7eb2437d75251ced2c8989a33e2317400cb0919dcdba8cebf7acb161d251ee8ac396bfe0bb54187382
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkerrors.sh
+FileName: vendor/golang.org/x/sys/unix/pagesize_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pagesizeC95unix.go
+FileChecksum: SHA1: c39350d8dfa1674c95b56e4a9dcabb4aa8651123
+FileChecksum: SHA256: dd0516d9bcec4a46829ecf9b5899d7ae1c4dcc0b6de27933ba8dc9278c7856cf
+FileChecksum: SHA512: 9b44c77945dcfe59397ffdf178ae33796d3d4a53a3277aa5cb95b8af2cc7ba0013a6022d4f6e484abf8bb0bb9111f2c85e9e0c4fe281ca02e7111324ccc81292
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pagesizeC95unix.go
+FileName: vendor/golang.org/x/sys/unix/ioctl.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ioctl.go
+FileChecksum: SHA1: f4893a56fe78e2b5e7bcc9fa12e85ad4ab703a55
+FileChecksum: SHA256: fa4b064d1e21c6eedeea55e0ce5431d749cfabab24934fc925af8f14458ec981
+FileChecksum: SHA512: 3cf0c4c2f6f2d4568ce6fef49eb27bdd217ee70f0b39665dc309892a1efe6abdcf39526c6cfcd0712ae85d05801b49610d7219426376c7de700c91662631b2db
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ioctl.go
+FileName: vendor/golang.org/x/sys/unix/fdset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fdset.go
+FileChecksum: SHA1: 44ad1c1a7faafe90c70df362bbd955a6553370b0
+FileChecksum: SHA256: 61a524d60d6052a4bf751740e8a4f8833b0621dfd34573f1d62b9e3fb137df36
+FileChecksum: SHA512: c9519a86ae50dccd50830fe5e06703986577a63941cf3cf6bbadf5add0549e01a629ccae898c002d9f17e7690612b1d280efb54598819d4b813b07e5de3f0ba8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fdset.go
+FileName: vendor/golang.org/x/sys/unix/race.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race.go
+FileChecksum: SHA1: 548e56645c396aaf011239e1cdb7bcdaf35da091
+FileChecksum: SHA256: 2b7d22204270835d550741a4d1e143d7fcaf7b624070eaf0bc3db43af02db178
+FileChecksum: SHA512: f01ab3068bddda475a0870774bfae1000dd68cc7d3d08fa66c918680004081183751941060d12ff5d8bc98b352dc49444bfb9301eb3c62c42c3e51a68c6487c5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race.go
+FileName: vendor/golang.org/x/sys/unix/race0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race0.go
+FileChecksum: SHA1: 38e01c2e50e5d654eebddc9b92daf4c35ec13fc8
+FileChecksum: SHA256: 32e481eb1663a60e308c7b8273f034cd210cd152ecd085d8e6f0469e59cf9d30
+FileChecksum: SHA512: f9be19097328c04f8f942fa3f293090beaadb56bf63bd5d2c6535b39fb96bc0e1abe26e7437f7705a729c8b9bd6293f2f6b0d5c52ccb2fd829ec19f90b32e180
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race0.go
+FileName: vendor/golang.org/x/sys/unix/readdirent_getdents.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdents.go
+FileChecksum: SHA1: 3e59386ab2bbf38a364e6387569a0022aad7a1d1
+FileChecksum: SHA256: 076c92911fad7fa2ff9442726354b43bd5bf1a749a99e98c9db83ff4c4cfc7f5
+FileChecksum: SHA512: 5e8883d769242d85438e0885235ebb32ab4930d2ee8c2b95e14c418f8449bb7d3bdafd7113cce3b113fd81021db50b32349079d67144719a02f942e81b801667
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdents.go
+FileName: vendor/golang.org/x/sys/unix/readdirent_getdirentries.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdirentries.go
+FileChecksum: SHA1: 0855d62fe1c20bd4dcd206ff44bd0e09e403e9dc
+FileChecksum: SHA256: 974b03c0069a93097e71ccb20cd947db188e833dc4aa2e5d7e51a6c2b6c88207
+FileChecksum: SHA512: 4df0b88e9ee30dc4782dba494338800c24ea133f720929ce062c4e281f1b18e66dfbbe21e243c2a893c7596751bb42a40cf05cbd5be613ef0d49ad30c30ceffe
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdirentries.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95dragonfly.go
+FileChecksum: SHA1: d4e62ac1337a081b85927ce2a1a47742c8b68ad9
+FileChecksum: SHA256: ca6c99e3061644a02a28d20b6b8e6eb4aa50490511528a6b34cf7070f0f44e2c
+FileChecksum: SHA512: 92231bc7ab38194b0bf08a240664d0e2bb377d344ab112922ef70c7616cedb203890a2fd2f757ea41fb1d421904c89b45fa12f78f150186c4b330969b6247c92
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95dragonfly.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95linux.go
+FileChecksum: SHA1: e0ffe46052b8d3d0f4467528480611baa1e01488
+FileChecksum: SHA256: 861f08abbe14e70dbd6c87e4fe88e1fddbfb856f7ae1347dea13bc1db4a729d3
+FileChecksum: SHA512: ac286b2635d26fa44b3c0b13629b31c1417c60c60eb50ed572b6a2be6fbbe834f45e0cd60da7b1e8b2cb8a18bf94809a79a2bea176de1ab997d31a51c6a1c2e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95linux.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unixC95other.go
+FileChecksum: SHA1: 344b8a93ffc00e8e712908cb1a7897055c2804a2
+FileChecksum: SHA256: cc726ed96443897e790197d345780ae253a84a4f99e3f8ead8526e4c2411c757
+FileChecksum: SHA512: 802d4699399b7856fec851dfb36249da2f1dc33c47f96f00fe3b67c78abd4bfaf8c2a5b4914afe14cd06944b41312d66a5606a886b71000f951d5e4555341c72
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unixC95other.go
+FileName: vendor/golang.org/x/sys/unix/str.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-str.go
+FileChecksum: SHA1: 763bd167bfa68c5fb498767be32872ef4908b9d8
+FileChecksum: SHA256: dc743a40166ce093b6051af2e8e2e53d51c519dd19bfaa671418cfc15613733a
+FileChecksum: SHA512: df503f3d02a14467d33658949db720b0cdb2d09628cb87845527601592236eb5647272725e7416cc3fde7d4d635b9401197589a08f123b80d1d4352a8919886a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-str.go
+FileName: vendor/golang.org/x/sys/unix/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscall.go
+FileChecksum: SHA1: 16d9ff6da3a560c96897a317cbdf0cbe6bb35977
+FileChecksum: SHA256: ef58ebd440d9e8d9e21bd48892e0efa2129f8da903a876ee64376f6a1f0782b0
+FileChecksum: SHA512: 26c72880f00aec994d5543db60384313f8c119c019518d91e000f7dff241c23cfb3097282621cdb5de39d908bbb0b9b53a7db85de444a772af0baec128e73bbd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscall.go
+FileName: vendor/golang.org/x/sys/unix/pledge_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pledgeC95openbsd.go
+FileChecksum: SHA1: e4eec60aac54c23a52a360faf8bf577e93dbae94
+FileChecksum: SHA256: 24a7d5dda838995f3423b131dc6d23c35e6377f6351141437e0e52655623734c
+FileChecksum: SHA512: 581f9d5187c46c280541e0852850950153a0f49d00f825d32e21af754a3984ae174305bcf659ae6e92ba31ee5ea920861c4e7163e5c0ed4eb3f6f9c1bf2fac27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pledgeC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc.go
+FileChecksum: SHA1: 3a111fd8546adb98eaf4f76993a3eb7842823442
+FileChecksum: SHA256: 8b11c4d356fa50c8492661d2e6724d7abc72733bf72c6c9f91e6ec760a4ede56
+FileChecksum: SHA512: c84fd208f74675017b7555e972f5e6b8307a56f55f8034f7cd782f56168202dc9bf09ca26519c030dcb0af653e270887e8f0aab1aebc0b1ef14e35824a16d128
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc64.go
+FileChecksum: SHA1: c65f97e9443e8c33f2a77e4a51489096bcae6ef9
+FileChecksum: SHA256: 7217223ab97c825fb2c1ce77ec96528166999b8dcf5ef88a3a678bdf05809bc8
+FileChecksum: SHA512: a3d816f84d52b68109711921e0305e9f125afacae86436e4358e9f8cc9542e8ec24c1e18e3f62a2aa208467617ef507081f19b902039914124bbdc84cbe0163a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unix.go
+FileChecksum: SHA1: 632179e929b7a86a2c74543c3dff4c17a6019ebd
+FileChecksum: SHA256: a9e9828680bea53c9ac39a1eec400ee2fc320aea0ca4d12991eba833341f55a3
+FileChecksum: SHA512: e5ef8f610a3d7c55b45525f6c0efcae268dfe72f8785a92bbfb4553cc15deb79f374320a3d88a2f4e99b6bade95b28852fa5818a140899c04ca5396a9b9f9c0a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unix.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin.1_12.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9512.go
+FileChecksum: SHA1: 605061cad60b6cefb7aeff7ee0ee24f4229b8742
+FileChecksum: SHA256: 8810e189d0f76fd6635f777440c8ab0779427b8084d9946972ca95a55bdd31a9
+FileChecksum: SHA512: 3a8e578aca55b4d78b0059c304d412d989294c33f4d8fb825bb5b5aa9cd57f8dc22bc19b4daf1d1fd66bc1042d44d1f4d56b30c6ef7e200037e10d0858e13e95
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9512.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9513.go
+FileChecksum: SHA1: 67375179b5ca72289da188ec3f37c32216ca29a6
+FileChecksum: SHA256: 9e14f7b3fa5ab532da36e9a5650a98b29b1ef6b5882232d462f8a994a5f08f10
+FileChecksum: SHA512: 4d52fade0adcdc4f71c4a41c1dc78e43084920631ec282d08f57b34e640f4f85b09dfcd2c9d8c4ae5c34f5d7e6a9f087e5784ed7d85cc141caf79d214b6e55ce
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/syscall_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95bsd.go
+FileChecksum: SHA1: a7555d60c1794132836520c1139c2b7797002158
+FileChecksum: SHA256: d233b5059c0c0d1a677bec9602a4fbf11024507b439b4b4a14f8923ada2ce436
+FileChecksum: SHA512: 995ef08967ea6da00c68613747928fa9be15603004de642e69953bf30729a44c9f03ab05304ef2cbf483e539d2176498baedc4101e89980873a0e775c0b5e2a2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95bsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_aix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aix.go
+FileChecksum: SHA1: 11ecf33be76789c29f5a431c4870dbc08a684e40
+FileChecksum: SHA256: 2d180618f5d4cd489c64240d61c414bd36aca0e60feef1d2aaa9a198051f76ad
+FileChecksum: SHA512: ac83bad7b017b7d5751f72d8d9bd1e35c80ed3717a4c2af52d4a8a57ded6b0b8468caeaf2e6fed5a52fa87eb69104934b3ceaf82c6f97eac454fe395aa37c27d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aix.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95386.go
+FileChecksum: SHA1: 83412cb04bd541c9345f6b7ae4d16091ea863612
+FileChecksum: SHA256: d9e94b4e92803ad2bdab4fa100c1f68154fbbe817d020a9a8b05c307e97bd52e
+FileChecksum: SHA512: 8dc3f0df7bb908eece901cf6bff6b130895e1f1f15ac635449407a4895bde9ddbd09092a6ae533de74ddc94f7f05f4ad2e97f00ef520c65e0d0a2d62150a59ec
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95amd64.go
+FileChecksum: SHA1: 9f1d464e20ddad6c1e50d8c5ed9d6486279b1f08
+FileChecksum: SHA256: 2a5273df240ddc84fcfddaf1c0cc376d4afd2e39ebbeb0d9207f5ceb59c38e10
+FileChecksum: SHA512: ffb02de24a9a2953d78a65a008f88e47f2140ebb592eaaa477760aaa263d69f65290c1bd21c1c2e4d09a92ae9360f457b919f20042630922cabee3b1e32ad169
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm.go
+FileChecksum: SHA1: b9c611ccf6314c92cc6fe5a08c8b9f80ce535355
+FileChecksum: SHA256: 434f62b018bdaee93dc7b21c9a1e914e316af5207e8242f987e2c7824cbd9a9b
+FileChecksum: SHA512: 1b296f64e3cf288714a5cde2aa53f3615408c63be74a05a88abb8e5f192d7c97a7e0184e1c5a9da76c45e33517752fa64c5dc662c2460b67ef0748856a425971
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm64.go
+FileChecksum: SHA1: 963b6429afcf8e22e67f0231ee7e62af90c5207b
+FileChecksum: SHA256: 6581e2c480f58f5f736c03d32b9816c613ca758c107437868ac4e0732353e14f
+FileChecksum: SHA512: 40461d164da2f69831cc60a46e8295137746d343d69bc268d6d608bf0eca23ef82c2d63df96aba2526fbf35a2a1a2ae4699d2c094999e4b79ca8bbd0d7897ab0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95libSystem.go
+FileChecksum: SHA1: 30376a7bd4afe33a19dadc2a2053a50983959798
+FileChecksum: SHA256: 4193284440dca25ea755489ad186d69b956661efca75c5503d2d73ea118eb179
+FileChecksum: SHA512: 77095cdca4366d8a2913cd6326b1ee8d1afc8e61e3df638f95df6e51c6e2b7fbdd3616c11ae717c8fc87a0348bd73e08c275c7b89e88d5f53ec257b1892a9b6d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95libSystem.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.go
+FileChecksum: SHA1: 353d1ee8a7bc333f72e9bedaed84622cde0f693a
+FileChecksum: SHA256: 7f91530645d67bd70c6679ebbd1cb3899ee9488779a5d24ad9b4b2849b2bf6c6
+FileChecksum: SHA512: ee19caf962cd524454a0b357048b1eaed8eb6916128112891b88514c6b63caed2b1e1f0d80eb9d4b28e0c07d3b626c16912458b1c547b4eac620ca6a90a68470
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.go
+FileName: vendor/golang.org/x/sys/unix/syscall_dragonfly.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonfly.go
+FileChecksum: SHA1: 13fd8b447d15b753da502b6c96183b1c527dd394
+FileChecksum: SHA256: cda6d3d6ee134a5f40360597eb2987e6805e4343f236f108c431234ed708d07b
+FileChecksum: SHA512: 242fcbe88ecf7b35ffeff8ce8096f27879fb17b5ae862ba52f988ddad4b6f9a9f19fb675928161d9e891a5be2f0c9122dbca71934fafd636fbb2bf972d678aac
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonfly.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95386.go
+FileChecksum: SHA1: 465dbb548e941e9eb36115f01ce4d7de5059daf3
+FileChecksum: SHA256: 706a82892440836f15cc9d930666e617487c8cf332716abf33df00fec46986f9
+FileChecksum: SHA512: 556b14853bebca620a84ed12c1ed3df419e6bfcea6e069f2a2aa6bd4a525e411446c3d43a9a54f6f816c4c116d880e6702bc3a55622b85d309cb2b57b52bebb5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsd.go
+FileChecksum: SHA1: 17d5ac14aef8e966b5ce451b88ea4aa4907a616a
+FileChecksum: SHA256: 1299975fe5ca72d7b7cbd4222ebd7b84a1b317660655e14515b022110fd3926b
+FileChecksum: SHA512: fae61a1547b1ef3fd35ce02cc2eec79a14c1ba47a1b4f7659e2e2efcf08ca9a3b3214bd6cef66264971ab06d69c890953b125c424ee8306782fcc78829ecc424
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95amd64.go
+FileChecksum: SHA1: 018774ab38aed91ff4df385dc97d134122603036
+FileChecksum: SHA256: 9d38b8e300ae1f28420f842d969f2d4e742fe315bdf87e892e2923cafed20159
+FileChecksum: SHA512: 4f31766250ca53f1fcaf69838552078dc08739fdd89b0cd95d5c620fad3811daf1c941d63a2c703c4dd8b219e8eddf0616d285a62da3c4a9dda54f61cf568843
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm.go
+FileChecksum: SHA1: d112fcf6979ab863d9df25912c26c1847796039c
+FileChecksum: SHA256: 9da72e5fcd95c4bfe37ec06348185b69ca28c9cd313f0da6b3f1e29a701003da
+FileChecksum: SHA512: 4ea9766653f33109057202a46a6c84d096b36c26a739ec67b3e0f861e32a828f0ac7e37abf3677f8b7826990d2b0476944eb77ebffdf5ba45fa6299c54bf3f53
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonflyC95amd64.go
+FileChecksum: SHA1: 977100fd35b913471fa892144dca3ff8a626005a
+FileChecksum: SHA256: 9eef1978aa056c3270d4074c486616003a12cd031e0ac29033ff7b19d63a2f91
+FileChecksum: SHA512: e06f595994a73e8ae3b22e844a8aec6574758ec83e47a662cde3708ad092fa5f91fafff6db63a3f7c518b0cbad641c95b3a0b21d2d43371933b7ac62b54dc348
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linux.go
+FileChecksum: SHA1: 7f45467c1f02374431d5c4ed929e8fdd0b5f64b8
+FileChecksum: SHA256: 1897f2d9b61469afdd16bc3cf86c3bf193abdcdde8e5a309ca01273ad9e573c7
+FileChecksum: SHA512: 73e9155f995c43342e12fb8dcf75f2ae7f0be2a465aed2f1316c3c5f33047ee7aae16763a4ea3b90d2a38abadad3fb289b338bcf0cde1329677dba0931c1de0a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linux.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm64.go
+FileChecksum: SHA1: 0d12794a00065ed02003b4b5ae989c62fde4ea16
+FileChecksum: SHA256: 278d66e92a4bf6bc043bdedd2944fec7785b67052aee42faa208b14a1ff4142a
+FileChecksum: SHA512: 1734944947325fc6f22efc86ab70fc44ef46f1107cc46370138d1ecabb3b8bee8ddc136244cc83c49436dcf09f5e24951a6654b90ee4fd120a0fe10ad45d0d20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95386.go
+FileChecksum: SHA1: 816025695ee1e06d3285cfa3ba3ef92e6388e2e7
+FileChecksum: SHA256: 3b2cd008271268c08b80f9677f432834c6cd18f2dc894dda3162350c72623db2
+FileChecksum: SHA512: 2bd1e29752f18817cd7c019457ba13bc322b0d47be747d9f2457a0e702fa082772ca7291e914744995c99e034ec571731a3527fa125ee10a9c5032d2866e4493
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_illumos.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95illumos.go
+FileChecksum: SHA1: 19363a4031f2bb5aa616e6459413aafb1ad99351
+FileChecksum: SHA256: 9077b00dc15f875721082d8a66f315a2a00169bec761193d259b07c68a1f1c13
+FileChecksum: SHA512: bcad2468a12715922d3be20eea62758ef02e449cfb8f9f3cc56d319a7240401b748cd2de42cb2aacca16a84b26f7b69a417d848a7d2aa1352e57b5049b3f956d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95illumos.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64.go
+FileChecksum: SHA1: 24eeaf5b1891e8a1333e13921b0664a815a49d2d
+FileChecksum: SHA256: a8761ecafe777e240bdf133ead9b3d5d1dc742e30e9d166137cd561b036cfcfe
+FileChecksum: SHA512: 0e189265c8e76cd5fcf65ae09237e5bb35785293e150fcf90167ed7de26655a0fc0614e0814c4b381a1a3bbd68d985465576ee0b093ec2023d4b1e7aa716d53b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64C95gc.go
+FileChecksum: SHA1: 8fbbd078955bfb52e3f77c75efe1fae22245e3ab
+FileChecksum: SHA256: acfa996df65a4678554d600f33b633b33dc1e97ebc236b36c5baa106dad23ab3
+FileChecksum: SHA512: 0d791b0392affba5ce837d115ecfc1c9321a6dd322e4c99cc674e1714101f773cffadc5d3c15c504f95670a697d7e19d50a703f2c081992f56cf72c3323cb63e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64C95gc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm.go
+FileChecksum: SHA1: ffc411ad15da183e0fe5e89580fa7f2d6bbe82dd
+FileChecksum: SHA256: ec8dec6e289b27e9f43c466c0cf9bbbccffe576eb6b17751c3ee0519c52db221
+FileChecksum: SHA512: b4795759048f5ae02e292d3541420f10d43247053ebdc67f43973f54d14394f3c0cb1080108ea4538c0ff079a44150257d066e309dd00b3e22c82b0b012dbc4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95386.go
+FileChecksum: SHA1: ebde61dcb6a2b92c34050040769d3fe80f56750b
+FileChecksum: SHA256: a38e03535d1027588168652ce2e86fff9f96bbc9889cc617a1d93768350578e8
+FileChecksum: SHA512: 5d9f08e996488fe8877853c4b53788df82f0df16f5a415dc74f1c50fb7a8d8e284e56da07b4d53e2aa408b292c09db0d5db51f1f6345c164d2ddbb7d6a6e602d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gc.go
+FileChecksum: SHA1: e5be85106fc5e2d5a201aba7f93173c46b0923d4
+FileChecksum: SHA256: ac6983bdbf3fad175a5b562b1c9937be5a84c79acd002ae0f4640df34cc6c39a
+FileChecksum: SHA512: 4b18bf091bf3bdc55ba2f75f85609698c26359419dfa06432717181a718924121e4a2a4754be9ba7d58f9b6d86e9b820ad22708d26d6016bd9ee7fbe14a08874
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95386.go
+FileChecksum: SHA1: c5e6d9cdabaeb20506c1820a8b07825fd1bf26e3
+FileChecksum: SHA256: 2911ddba99bc64de127a935f11800346f1c2c985d6f32dee903fa31204efc614
+FileChecksum: SHA512: b96681d76ed468cf00e738ac94c656be95f6ae2eba3c105ecbca55f8b87de7c48e4a8ae95005ac73c4d9b273a40fa318468c1e2ad1a3b0aee13eb1bdaa81a4bf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95arm.go
+FileChecksum: SHA1: d2284a850d9096be0e1072cde10880c365f645aa
+FileChecksum: SHA256: 260633a1233cbfc7920b046ae90f8efda6a380c16e85703c199e4b3b4306c40f
+FileChecksum: SHA512: 2759d06ae46344af271767098b2eb265471f73895baf6ed1412114d1ad88d695e7be25af964f4ccddbf444740f2133c3ca01e35f52516400cb57f7fa30db2939
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mips64x.go
+FileChecksum: SHA1: a38d5166612f9cad3cd6165d5193aa4667c4a3f5
+FileChecksum: SHA256: fb5a8f58a63b25b23ac03f97a3fc4ec6eaa9ffa771ce7745eb7251dd0ad7cf48
+FileChecksum: SHA512: d3ecb9415f366f9f6181fd42a38ff41cd8d24595582263d3caa999acb583cf01f3b3729f0d0f3e65a459842265e5a9a0c1d21214b5531ecb56f7fde6c064c2d5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mips64x.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm64.go
+FileChecksum: SHA1: 520877115dcc25c41b09cd36bd6631f09194ad0e
+FileChecksum: SHA256: 0f763ae504ea6daf5915f32123c6b5ad11d646176d1b9d937665d1e0046d2348
+FileChecksum: SHA512: a22a2b889bbb159f5a9fec4a1673e1db0f023b776f4a36b82623829f17da174c595e01c24ed59204e1bdbb004e064758a63bf795fc30f7267c62a167be804885
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95ppc64x.go
+FileChecksum: SHA1: 8fd42a5a75d4dfac3855c9d31a8ef7bc1a6cf8e2
+FileChecksum: SHA256: 8eda89fbf80ea0667250f75d600f469b88c4560803f58aede2294eaaca5ec580
+FileChecksum: SHA512: 8e2164f3662df3727533128673719b7bf83d9238deb799dd6940409f69c4b1c593be3f03fd26b266ca413298012a26f2987032bf2b5e2f098f85bbc8c32c3ae1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95ppc64x.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mipsx.go
+FileChecksum: SHA1: a7320ddac5d4a38bae5b2085df8eba1669bbf193
+FileChecksum: SHA256: 1daddeb97550f382ba85a307e7f9e84e647eb3db54d0f73ff7b10ef2ee76ac59
+FileChecksum: SHA512: 126996c58c30b2654de4be24d0a01da2911ee803a0215656700d9ff4dabff767b26c85fe4dbb6a0c00d9bf5a04f11bdf5f51046b57ed159b7e003cebf327a04d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mipsx.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95riscv64.go
+FileChecksum: SHA1: 760604fcfd1a68a754e50eea97a550bfa3b81173
+FileChecksum: SHA256: e01dd7cd984665a9dddd690c3557dbe5abc650672293ef8b608cce70323623e2
+FileChecksum: SHA512: 6b2cc4bcfa354f92213af3fd55e2d2d58cfcf32a28d5d758f10c8cd9b8a481cb3470373b458fad3f95bcf9b8e236d915a8faf6c45c5448a4bcea9e25c7b8ef82
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95s390x.go
+FileChecksum: SHA1: 3c0ff99ee5b117744365d525728efb705b5e7a29
+FileChecksum: SHA256: 764dc058e7faa432462210702228ef8552fa2b629131d72d113a755a7f3a4b02
+FileChecksum: SHA512: 094005a637ccb2ad74b8724a15f6cfa4320debb38915ba89630e1861e896a59df0471e525c2197aa55cbab2d80b8e5dca4c0358aba82d514600b39af89dd4858
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95arm.go
+FileChecksum: SHA1: 64b80869dd4f709810ddae83a08101c32619e687
+FileChecksum: SHA256: b87ea23218096c788148a27eb61dcdd5cc675bc4ed5896687a2c7c60e1016c29
+FileChecksum: SHA512: 2378a84e51f5164995bc6126317d1a142b8ab2546a517243d3c87b443e09736ce5a519789e44ff628b68872ca0f83c3c5e55240254ff61df795d3c94978e6072
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95386.go
+FileChecksum: SHA1: d166e26e009ea3985d7b23a4b550ff201aad0cab
+FileChecksum: SHA256: ffc1bbc48e74fe2325c69f1bea951dd9b112e1879e8fd4d3d889a96b1d8bc974
+FileChecksum: SHA512: 03a993811deb8621850b7a981f382fddf3fbbbe3f861ed525e80cf3a1125b06f5ba79dcab641f8a596178717429a98c0f767e72b26a9f928e8e3d06de62ca916
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsd.go
+FileChecksum: SHA1: 58198d34a98ab6d9ad6b0f2f320d334ebb8ea68a
+FileChecksum: SHA256: 1a278b55bd122b48ff874cc4e544cd263f73a1c11b26c3892785469741ce8f4b
+FileChecksum: SHA512: 1e7de4d68cbb2afd15366cb073f6f2f384eaffdbee8f8950053d0256843b67ddc8b731adeb8064010e34d5a2161dc4becda0fa2640dc68af8e36247c2efecc5e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95amd64.go
+FileChecksum: SHA1: cf1e6d9bf14d67755796ce409fc0208d14337eda
+FileChecksum: SHA256: 04ff6110b1b9c4bfcc54db9e260b9c7d0e9ad5026c5e73a0c75a5a41d0004f74
+FileChecksum: SHA512: 7ad0d8a6258af0a38c54a3c2ea40c24b4f57913b66b05ca62b80990b3c712145da9f9f57de7374ab3bc4b1264921521d2e7232af2b802b555b3927adfe88724f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm64.go
+FileChecksum: SHA1: 4b73255deabdc3f2e00773cb310a02ada37b89b8
+FileChecksum: SHA256: 8407debf792390edf14e6cc52fb8604fbf1c65129bd3ffae4c7afba6a790aafa
+FileChecksum: SHA512: 1dc862e6c9b9771e60a86e83469cfe59f5328c20107bb18d968972471036944449f59de26ec3759471c8d98634c6ad10a4edc71008ce615395cd699fc9ae3a2d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95sparc64.go
+FileChecksum: SHA1: 54a3c66552917d5693115d09f8a3717c8467edae
+FileChecksum: SHA256: 8d12230a44b6c6e9f5da4ebbd91bedc38166cfad566cfbbb65abe727b6bb541d
+FileChecksum: SHA512: d75340b0db406bf8166c7bf4ce58ee561ac7faa59c7b5b9a938e5932d25aed82da51f4c5d64af6256e0b73098cc755e928bb255e4a0436660322b47cb2109c29
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95386.go
+FileChecksum: SHA1: 5f84dbd1377a720cbd38db045076d34cdea49427
+FileChecksum: SHA256: 7337cc3535052788228a2e9d73f489d36e67df1dbc95823489cf714e05b8086b
+FileChecksum: SHA512: 646111293cabdcb40f5ac48e696c8a381cb6801831896b422613678cf13fd081824a0009a061e74471de16fbcfe7c6acc79d464a222c33242aec4f75663e8751
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm.go
+FileChecksum: SHA1: 0a5b69e30483e4b360522fe4dd84f60630e7a943
+FileChecksum: SHA256: 98a1dc68f38a4629b99973a7c9675a8a58744a5a9b672ea6d3acdc0b277487f2
+FileChecksum: SHA512: 7e9678704cdc64626e0250ec6eed77bafb0bde98465781acfafcb93f4661ffe74576bc84b57f8bd2ee3cf4970854497346186d5dd7cf41c1f1374ed9358a4ece
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95amd64.go
+FileChecksum: SHA1: 0aefc30e1c9fecf5a1fdc896000a305737128a8a
+FileChecksum: SHA256: ba3cb3e3bb137312575149617c1e0f7e593ac2a31edb2b749897306df1b1a9a4
+FileChecksum: SHA512: 15a1c3cd44660815b9cae833b791950ee94965e7bc3047dfc5341a0559c99874dc47e0ebe88f361fe23885c6549a8401bd422cd68121dca07ba2e045c0523bb6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm.go
+FileChecksum: SHA1: 95819d1fc2bbc6d322c458079ce0bf95b1b35a1f
+FileChecksum: SHA256: 80496e2f494a31d8777f1f00a109b353b82830bd7532391c8f603c4e515bfff9
+FileChecksum: SHA512: 03e2dff0a09a523c211ea918c1297c411cce549697d4c119bde1a02da31be38e9d9a5075bf544be97bd07517b1c6b9d2db1d95a7662a8ad4b78aae5b2fea147f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm64.go
+FileChecksum: SHA1: 0dde57be71a47e184694e7458617e924bee28896
+FileChecksum: SHA256: b8a8c5142a4ba81447d0e1ccd5695983c773976339cc24a05edc8deb0e677dfb
+FileChecksum: SHA512: fae90df60bc153dd7f69a6c22220ad349f26b98a41ee0063cb6ea2ab6cbd8a0456151b49dc2b971cbb3d5e0d7d4507c89f52a52a73d6d16b37a2d80370410d31
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95mips64.go
+FileChecksum: SHA1: 8c3f2d3d9353f4dd75bead3c20b8dd3df0374b0a
+FileChecksum: SHA256: 3c60d607fa618e7dbee11c16b264c588c0350333959426cc5e83a495eb46021a
+FileChecksum: SHA512: 59b82811a15613d4be25980b71e9985edf135bcca930b4b3a83f0eb509d65bfd894eafeaf0101b1431a9d24a1e7aa20e1a82fd50ea88ffb7c852bbc46c863075
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solarisC95amd64.go
+FileChecksum: SHA1: fa72f7eb25b79e543f2773d3fde389d1576a1635
+FileChecksum: SHA256: d7852e853d2ef21097ab8793ab070d74625f0f6d53e4caed0ab3eb7276aec779
+FileChecksum: SHA512: 02fece9496abeff07778b18f8ca30aadc964c558b438ff732345cc049c6debb4d35672ab57bbf021682c1d01d2aa4f292a2b1da099590954be4f08cdf248ae3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsd.go
+FileChecksum: SHA1: 4940770ca4f4973d71b0a409e5fbc1f2f8ce8c8d
+FileChecksum: SHA256: 17b426c5e69641bce461a321418f297e66cc0d3267538d8ada92beea8a54a0c2
+FileChecksum: SHA512: 5a30fc8573e4411ac3c5f874775b8203caa8a552cbcb6d6628ada17209c27fb6f7216914323cc735e0e342fc979b8ca57921d7a07288fb199191388cdc6f3030
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_unix_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gc.go
+FileChecksum: SHA1: e59f40732c5f5640f6313a4710be78c783672797
+FileChecksum: SHA256: 8d9b9aeacc89999be53bd922b54c2095d3dfb21ca2b03c40a912b778dd1fa582
+FileChecksum: SHA512: 69ffebc5271376be519f35348d1062486e4fb64e22091d1a04e59661ada472509e6b48bc9bf7603ca964326a89cca0d08d3a3352c96209a6121f8dfc034be0b9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solaris.go
+FileChecksum: SHA1: 374224cb8e3d6ba29e2ee1d848843da00cd73877
+FileChecksum: SHA256: 1494e217d5082f928662361f564ca3e0759106c48f347834f18692081e998abc
+FileChecksum: SHA512: dbd8dddf9bad2aee4fc2feb6126aa1c48bf58a3980ecf54ad77ea7389b12d78e9d58166c0c952fe1a26f4f20b059db3be2838782edc580b4ef68031f87f9eb80
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solaris.go
+FileName: vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gcC95ppc64x.go
+FileChecksum: SHA1: 87d86d4d9a28030192e6c842af755d9d27f00517
+FileChecksum: SHA256: 01555b4b42af846b43b12f880f1885b76225c4b8cfdf23d1a15c1b242bd8d613
+FileChecksum: SHA512: 9097d418ac8db447faf3c0a90d64faaa91f160a83ac12158115844cc8949d68fb4baf88aaf806bbd407c13c4f37ab0b1a887bcd7889aee544c8b44f64cb5817d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gcC95ppc64x.go
+FileName: vendor/golang.org/x/sys/unix/timestruct.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-timestruct.go
+FileChecksum: SHA1: 7c4795823e32dec99f175bce1705ef03fb9ec612
+FileChecksum: SHA256: c66825e94bff118443361c76775cd3427c707d435ad70cc75269d29cbe409d9c
+FileChecksum: SHA512: 9ad1dee2e64b78d3bb6114401b6d83973235e6ebffca0d0079d5058e97526fb2978074beccdcbf7655e3ad14ca82be9d5afe88a344cca3a8d50503a97b1f53dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-timestruct.go
+FileName: vendor/golang.org/x/sys/unix/xattr_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-xattrC95bsd.go
+FileChecksum: SHA1: 7d8a5f00e8c963d60d397834ed7e84ee5e2b1e73
+FileChecksum: SHA256: ab64bc91c5768c35b52f04ad5040befaac5da6353253ec1069e7da06430649e2
+FileChecksum: SHA512: f4ae6016b0ef8d8ee5e7ef3637dbeb2ad61ff522c1d11fa0dab1ad99bfeacb1ba737b3447c49ba88a02c6dda52ebde5b6a11b9cb5e43bd5a453e03e06d57804a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-xattrC95bsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unix.go
+FileChecksum: SHA1: 50ae21fa513544e83610319c91669405b69d883c
+FileChecksum: SHA256: 7a04af13866e63ae81d390ff0f3a9fed83ce94f7efde538e0962e3542abe7a5b
+FileChecksum: SHA512: 0b2ca336b531390fb2b73080dec57fef021b757f345b25b4115fe012ba726ba008ef594e2033e4c0a715edcd4dda044c6d2d179ba7bf84c6c02ba5d9f0ac5225
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unix.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc64.go
+FileChecksum: SHA1: cffc00ed232c6cc9442cb64d0c819f318b51db94
+FileChecksum: SHA256: d0de1a36136e7669a5671e6621cc6448a48e953ee03eabb7b2a8bb2bdaa0d852
+FileChecksum: SHA512: 9f0454624e2e26890d1509c524331aa6c33b33e66fc52fdb1bb524defad8e1aed234e5f0b0eb693b92e75593e3c1fb26683f64ebd460124971ec26c241ce0e3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/unveil_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-unveilC95openbsd.go
+FileChecksum: SHA1: 391a0e9d583279380458e846cdc0e731592814e0
+FileChecksum: SHA256: e3c34fddb424af5d9e25558671914cfa3b592b42fef42f94ee8f1ec1cd586770
+FileChecksum: SHA512: ed71235b9668c29d71af838dbd89fbc02670e9bfa2f52d13f2ab4c04897b3f20ab01067a0d3953be766ce93bec1a6eb4af6a25b875ddd4e2ba6c828fd4bf3086
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-unveilC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95amd64.go
+FileChecksum: SHA1: dd06523f4301a8f283b1308a258f60a6ad08d956
+FileChecksum: SHA256: 041f33845813ddca0080daa57a58fffe10b43d5a0637f9567bc0547780a9483d
+FileChecksum: SHA512: 6117340ba93cf481a676ea5917720c11c40004683be6f050037cbb0aa08c0d523b700cadd2e7cf7bb19b136c02e21ca537bd2bbc1e9cf612eadf653baed259c5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95386.go
+FileChecksum: SHA1: 9bdb074c5488e2acd30b92c92a98b79881c74ec6
+FileChecksum: SHA256: dce27f4c80e8379c62d6ed94b3b6fb158b706e1247a784c4b5a810403d806d4e
+FileChecksum: SHA512: fce11d1c45488dfccf2908436563a44c2f9bbead381000ab1c60b5fb65a6a16c3274b8400ae8dfa11de940de0c2939838d00c008ba82d0f0d948e7a8961b08a0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc.go
+FileChecksum: SHA1: b5ac1a8eef0daff19e118cc6a9ec0faa5265778b
+FileChecksum: SHA256: 6af9ab5b66801d9aef539f4d4bd6ea043da344d39cc100307e44f59278a53fa8
+FileChecksum: SHA512: 00bca41bcb5c86fdf5baae83d661d8bd75d4e277a043d7940e0efad11171346f0793076751368cf46263eaf1624d5a11a2f3ae8d067932c697c2a5a6a8c328cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm64.go
+FileChecksum: SHA1: 60b2ad1625e40e73fbefab755efbe7263df06a65
+FileChecksum: SHA256: 033e24b7f69de1994c5b8d27eb77e58ee22862431a689282506ece8d3400b30b
+FileChecksum: SHA512: 8649ef02eaab211dec22c54e9cf58f62f38d8d81b7393a22b0c30c7eb4cedbfa38ce5eb4e2b190f3970e20c87b6a4e70b918cc369ba50e2afe63e80a19f108f6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95dragonflyC95amd64.go
+FileChecksum: SHA1: 7a780c2ea8a193b8f9366de260b26aeb6413819d
+FileChecksum: SHA256: abc38443f1763edaf06a5e74377a0d0fe3a7c8cab09e02d4480fb837fc2b7bdb
+FileChecksum: SHA512: 5c729984453080a52bff54720adeb9aafcf976f0dcf21e91aab69a1b1d4a1c7b58f8de8aac05faf1c339541f032b76e14fd869c300cd1098f8db2aba8bebc2f9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm.go
+FileChecksum: SHA1: 73d2aa36295cc8b0e4503dafcc13a662df14b47e
+FileChecksum: SHA256: 3cf62e25dfc6f0af3e80b8e61a6baf01b12cd31791f0abaa05bf4a0c44310b37
+FileChecksum: SHA512: c6ccc6678446567ddd590e312cf9d948ff34aa467b2677ed5e22fcee1abcefef99b7a9e0db2397d0a462f3ae72014c83cf43109b2ee411dc47a38947bd7bff58
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm.go
+FileChecksum: SHA1: ad012f47fcfa94efbba8e6c827812da8275247c8
+FileChecksum: SHA256: 6022aab01ddb54639c302116b592e0502de44d816ab912e9736fd81b89ca503a
+FileChecksum: SHA512: f1fefcb03ae59f705c5e8e2799214daae265899e3bfe0d0de5a4f50ebe57bd6bd437f564087d2a5721157b2f34428d0694c6051cc1a11d48a3874c87f73fd1eb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95amd64.go
+FileChecksum: SHA1: e99bf29575b8fe6cc44621e8ba6e94194867d80a
+FileChecksum: SHA256: c2286d4de65abf28f2a1a87ea2e451fe30a53afc27d4ecaeec306a38e9615e04
+FileChecksum: SHA512: e57f956499b817dabcb2afef8abece6f704021678d20c927b1897f384f223f9e9b13ef968706589cd216c43a1c5e6da1fb9488d076682eafc3707c12cf9e837e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95386.go
+FileChecksum: SHA1: ea9ae8fd61032cfbefce65f36eff54a1d6bacfc5
+FileChecksum: SHA256: db34ce504c3c0e21ca290370d263bb31051cd64300b160b6e310709892064bd8
+FileChecksum: SHA512: 8b3081c0250e8576a74baf4719c2a78f73ed4a21ca600e9165132f7ce76fa6754e9e08a763889ab7eb012ad3b764481d9afbfc20c58f17138a07ee88ff14fc8e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm64.go
+FileChecksum: SHA1: f3cc6ec25874055518358739e1a164dc679f8232
+FileChecksum: SHA256: f3ae277cdbc4df7a3c0b7f0ad3e9ebf71be66979ab470fa25e421faa029b5dee
+FileChecksum: SHA512: 4576b9d17f15c81419cf19995bcc2a798784a9674c2a2666b3b49b8346cb15abacdccb3f7011d3f3a7d071969ababa84ba87359a2fbcee1d375b97cef4b8d80c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linux.go
+FileChecksum: SHA1: 7d18d39a7cc06031930698c679a6b074ca09cf71
+FileChecksum: SHA256: 8f0b2b3dd6f87b11cf6283a7482893b2e8320345f3199683ae6c55a039303bf2
+FileChecksum: SHA512: 67f780fb3d6a633f2020bcf329b6fbbe890257cbf27e659d5f9b8e711d66df35b298ad84bb34858390e2afe2f2678d03cf0e0c09c0f67a274dd7a03915515750
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95386.go
+FileChecksum: SHA1: 2e6ca7ec5f39137ce94b49509bc1e53c9b1d6260
+FileChecksum: SHA256: 8498a7444e3ff14e1adc77a8b87a8652ad6dea8549a01d5e9d9ff3a0734479a8
+FileChecksum: SHA512: 8bf052b94f03a694250c0d13f3c8ad4a8976de7b7db9cd1d95dec50f86df5afd85ca000143940f9015a576cc1615bea73cfce7db7d568ff9fbe03affd45d4cfd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm64.go
+FileChecksum: SHA1: 84cef2e3d6e381a12fc3eb1aa6ca26c0fe1ee7db
+FileChecksum: SHA256: ad24c38656cb121dabeca47b11bd49b1839ecf733b938c1ef4013132cf319c13
+FileChecksum: SHA512: 33b6b035b89987888e0848e06b6c77ce0e3de5a36f7044059c50e17a86bff6a387d1c22170491898641dff53ba9364aeed359f088aa7816ff94366e9d05f8385
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95amd64.go
+FileChecksum: SHA1: aebf4df26c24fa42cd4e7642861e0d93536b593d
+FileChecksum: SHA256: b6a1a4b6e3906da688e71f3d1c70b3d1d2067f02ca3e6db029bf86e3274bf07d
+FileChecksum: SHA512: d82503c1c49d6229b9d0148283e563f1618f331aa0c250265e27308a32565e2fa38ebf2b3c035ad23d5fb3af3870c5afe73e8e7492fc08749fb5848a2aa436de
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm.go
+FileChecksum: SHA1: 631fcba71d3dc469caa9769b0336fdd436c23dca
+FileChecksum: SHA256: c9d389393fb7f2ca8678fe6697a55fac75d25ce6ba7617c5f4dc074a37df3cf5
+FileChecksum: SHA512: 052f433b3464e249d393eb38316f0ab07449f93f396d4208ea6ee2bdf832d1e9f5f292f6296bdb7733333b0a92b3848c7c59d738219084a0522e3401dfdef4fc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64le.go
+FileChecksum: SHA1: 21617ea93b03fc54b730c57a7db2df87f82b697f
+FileChecksum: SHA256: 325b673e4b5c6a47bd416faf519b6bafe05878133c2cd154c46e6e4a1dbdc303
+FileChecksum: SHA512: c63bc8cf8e4c7ba36da3b2c7d12b336881a7bc9705c88d0a10a2388c6d12f9d13d2664d722599c4e82f6a94306e7e5ec768211888d71b98752c3830600e1d52a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips.go
+FileChecksum: SHA1: bc47a96d361e468d016157bef0df5d39478f6dcb
+FileChecksum: SHA256: 794ee5333f6ccf7be048f47171a94442eba006601a51f345c7c49e0b0f68cf74
+FileChecksum: SHA512: dab39e9e300ae3629b1a9e23ab1a2e35d64489655485088e9d646665a7a26be5e1d7a1e98a160b9f3a29182521a9c5db86cd418bdc5af2f7fb778d312b0158a0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64.go
+FileChecksum: SHA1: 7233b6b3787ec4cae67f62c044b573a83302ac6c
+FileChecksum: SHA256: 27ee26bcad3b27d43ae67c0b7a303b0ff7b620d683c0b39e34287d877f735b2d
+FileChecksum: SHA512: 0654f6455867a3895fcb98f25f9e6cbaf46fc828c96726c791b5008b29ceebaf898d6d2ab35787a36af27cfb7d7f0db7271b5245cf116c81596bb25ca27c9b81
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mipsle.go
+FileChecksum: SHA1: edb072f90db736d66aa5a7517a92d569a24a90c1
+FileChecksum: SHA256: 7ccebd83c92022ebffb29e38d0ea7a59c1216faedc7180b4ed70db764723af42
+FileChecksum: SHA512: e81cb195e3addab6486e5a38c976441c497b5d3689c35c1fa88e3439e74611f088dce663a8e200d46545d817c4dcac1d3440e6256b1ba01d1cd85c6b6601c42f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64.go
+FileChecksum: SHA1: 6d9579a47ae55d0b678c07a4f01eba80e36ddb9b
+FileChecksum: SHA256: fd6d487ed6b7606a27c80617063dd833397387ab928c55dfc1a9937d8b57a31c
+FileChecksum: SHA512: 3750ae119558478646e728785234a0e0787a2ad1c00824988e1179bd9b87cdc7600c0fe124a74df223f965f629a8a52db5e7f22020d48e2189f82ae6e0911905
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95riscv64.go
+FileChecksum: SHA1: d59f589e6a484ec8489a11bf087cf7a9d67282aa
+FileChecksum: SHA256: de7a45aa5a5f82568d5eeae7d78e3e3dbe8a66af60e64abc5014c9cc576fa043
+FileChecksum: SHA512: 11c72838965d701e571e51281e1ad3de27bc24bc59ab841de7c4a928c6a2e0d56ff8f7a0f98e983f28c44328fb647cd46668ed2bd9efe173e4e6c21672babf8f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95s390x.go
+FileChecksum: SHA1: c4ec87c6dd1ef670548522d53a7a7b4cf816f4ca
+FileChecksum: SHA256: 4d3e088f4ad187d462bf1f88fce494e98afbfc5871b845d6d235479beef660cf
+FileChecksum: SHA512: 7cc1d6d168904c6b3c8e911ec2b521a1569e0a5f22ccab00aefac08a1b909b001396a38a73e0bbc2bde9354495e4085ced56660f7070403f4d66c71703acf4d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64le.go
+FileChecksum: SHA1: 29212df10ecb3072c21b390087ce74bfbc44a6b9
+FileChecksum: SHA256: bb91c01b2126f9c24dd1557f431b3a5d7ffdcb8afade150138e4b969413bd5e8
+FileChecksum: SHA512: d5aece3bbc35cdefed93030032c7f55b938a9787678915009a4b0cb98d1a3c31e14033dbefb38ca64e6f7b1c3f2ee00b404c3052a3be74626fe6815252009358
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95386.go
+FileChecksum: SHA1: 1127a7e9db20ad9d862bb3cd62c80168cddf2f7c
+FileChecksum: SHA256: d139f1c5fde823ff53163bb5ac837715c932687c2fad25291180308e763938d2
+FileChecksum: SHA512: 5a4fe435eba7264f14a0bf816a52c2ad3758202bce5de658cbb25002b82db05bfb95d1ce0aeb68ff71e7ef0e37028376946c7125e5b2ec156231174a6cbb09e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95amd64.go
+FileChecksum: SHA1: 6b0871f3e428703ae3f09b2dbfdfd0ded9ef495f
+FileChecksum: SHA256: 796b6834ebce385f2f267dc86a4cef5e6cd2622ab638b14961b029724d7147ac
+FileChecksum: SHA512: 404cb1e9146ab7e73d3814c513c6255e7e796150cdc408bd1e145531ae8e4522fcb9c1facc2f2731aed2f340da28e0a8990902578e22e61ba56847ca43915d59
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm.go
+FileChecksum: SHA1: 4d678f7fa83ff32fc99b05122c24ba4bfe8db316
+FileChecksum: SHA256: 35af9d2dc0ad32c163767af0343e49112bcd4f7d3053e880e6a14854a293a501
+FileChecksum: SHA512: ed26d52823c78f113894dc2766d9e39badd226a6aee801e89fde25c11bc1750fa71fd4a166e890aa2def5034bc30db44b54173e3e0c0c8d03af71871b66d3c31
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95sparc64.go
+FileChecksum: SHA1: ec03b2ab15964ab1e227b874e7d4f0187ed6ba6d
+FileChecksum: SHA256: 36439cd6742f4328fe52feebb5aa96f3108e75027fb5d4cf1c791720e28509d3
+FileChecksum: SHA512: 4a34857daea030f1ed95aedb747174639f6000c930ae8a56044a6b556c58de198cecd15983efa186dae76f5a8788e80c28c2bd0a52549eef1759e0accc5a2ca6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95amd64.go
+FileChecksum: SHA1: 1c1288982a40946d06f97cf51abc156dcdfdedd6
+FileChecksum: SHA256: af061ec89d09afe4ce29532ebf0aeb57a653bc435fcc5b727803c7287ee3bdce
+FileChecksum: SHA512: 6559093104d3a5666ba66e2ccd3ab7f3d6cbfe7c2707ccda131f5f9d6054fc32acdd6d165e95d761c4f615e795ffba2ffb9c475541160d881ff960d12f8e19b4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm64.go
+FileChecksum: SHA1: ca1eab4b7c42ff3cdefde0ca8a0d96912d5fd235
+FileChecksum: SHA256: 6f951b07880f193d7d612ffe724db3503658ce539bba21d852873898eea96f8b
+FileChecksum: SHA512: 1608e30cf3ccfccc79d1c2f959e7135bd45dd948c4755eee180e80d97591ba32536b27c43cedebcbf6197fb033e9e1562cda7fe81a1c9092ca8e9c2ea87b79c8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95386.go
+FileChecksum: SHA1: 5d8d0490817405d99f27f727a4fe67e2da868c12
+FileChecksum: SHA256: c3f9d4a1b0314c67519577234453d522870a6458f8870e452e06fc5df7a260f9
+FileChecksum: SHA512: 2e4daead058eb4b2e60872f55589b5bec86adf64afd0db137e15a8d3b43a5d2d157211754738d2067b159409a47214544e1847c926c18c44af63807c37a3b413
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm64.go
+FileChecksum: SHA1: be407749522a5e1d8dbc44d55c88e66b0349d294
+FileChecksum: SHA256: e48771110b7875bd99a876cd9f23f3ef0a582388dda9c8853164a03ed8759ffa
+FileChecksum: SHA512: 1f030e759773fc9b98a8dc7e4997c167793605352b85549e3b610a8f262495cefc8b7b41fa171d1682f421090921b48a5e98a6d278cf8a74cc2a4c7790220351
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm.go
+FileChecksum: SHA1: a09b53c18974c9331e6ded6e794cc16bc57fdccd
+FileChecksum: SHA256: 1ca1c7ba821079c9dc20c5d0d4f944c0ab317059d56fed71a9236ce9e489135a
+FileChecksum: SHA512: dbf66e757e91fcbd00db6abea62895168db0494a4945b98d94371b5cd345ba488eff1491155bbd8ab520b802fcdbb73b931348d30cd9f892f9217e174fdba451
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95solarisC95amd64.go
+FileChecksum: SHA1: eff9cd5af4a0b493bc8ccf956a5ba3a904b21669
+FileChecksum: SHA256: c827f19894dda3766724498fb9cce0ac68256d032d6fd91cd2e599cc05870701
+FileChecksum: SHA512: 8f898eb1e3c45fc3736f4c03cb5636c11f67fee39d710c73f9968d9e58a6a47390747213907831dbd4b033ceca397ebfe3d870e4d9a3492d1561d35d531e8ee1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95armnnC95linux.go
+FileChecksum: SHA1: 01711f63d7b6b43d70fda371ad0c7235079b9f8e
+FileChecksum: SHA256: 7d3fbfc769af2b1cc05b45491d209900872150976008a1f0e1edecf89f774d82
+FileChecksum: SHA512: 3e5e3196a3d495d78a90ef7311a89abcf8f372194725ebff7c8d9f01b0c8001eb6f7f0c58cf349dc02b03962e1019194e79fd8a83fe44486ad2ddc04cd8d8310
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95armnnC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95linuxC95arm64.go
+FileChecksum: SHA1: d426ee2cd50047f351f64fd9cf0bc86c1647b1a2
+FileChecksum: SHA256: 731e8904fff8c05b1b90219bdf8e463411bb8de8cb2a94228332ea60974f2c95
+FileChecksum: SHA512: 2bb816ea236b9a38505484d624f0e397a1f7f375a70d81ac961feef543c687703f34649e95d489b5bc999b6510d53c69430ca2e5511b8c85cfdb15434a001b29
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnC95linux.go
+FileChecksum: SHA1: 650ba3d33c894ed562d9dbce8aa6b74cda2f4306
+FileChecksum: SHA256: 4d160349cad85abceeb8768a93a03fb15b2c00a0c0467ad2fc30038ea6e10b8d
+FileChecksum: SHA512: fc1e265ced1ea4bfd36ac75c07779e3ffc4be6e401f0d5f5716a158f6cfca990c5b2f5e30b754eea3dfac3f88136f87321936e1cf0efdc756c109dff133a1538
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95mips64.go
+FileChecksum: SHA1: 3368bd9aec803607f45878624d86cbe976b370d5
+FileChecksum: SHA256: 8cd0ea2ea5573c303ffd322beba50e6c66183069fd5d580113cc10adf0a60408
+FileChecksum: SHA512: 82f9ba2dab1edfaffacf3e9a8f888a062084ab97683e666a4a99c7db75f6e97b5adcbc770454dbb4170a89f13045bbb777fdbc8c52b5496ed3232dc25b6710d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_x86_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95x86C95linux.go
+FileChecksum: SHA1: 1edc32cc84cd4fcce1fef3c0cd50fcb76c5523bf
+FileChecksum: SHA256: 650347c4f5479953b14f52388e61c528031210fc831116b7fba46fc1d6bcb9a5
+FileChecksum: SHA512: dcdfe8542a7fcd2da21a8651fc4e4a72da540ce99bf424c3e30a72a04a25a27038347816a9c2d2949a095784d7ee25b7f8fc333db3b4c00e051dd2bd5bb49d42
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95x86C95linux.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc.go
+FileChecksum: SHA1: 8cd11e8a20101cd0aa2d5b57bb8a74941df64361
+FileChecksum: SHA256: fc0f89b78849924fba83d2dd684d430e5b8ba1788a14d9a691b064c68d80a268
+FileChecksum: SHA512: 300887ac6f82491d872134ec7033ac6f08272ad2bec73a8b4de6fb435d8281be8cabe2995a6a5b1b16a60c02216adaad0ab81233d94829c68d0daf952d543a2d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64.go
+FileChecksum: SHA1: 2f0589ac4ab989070ddbcb76a34db4df07a4bc5d
+FileChecksum: SHA256: 33afd55b417f08aa08e9994e9eef36184ba9505c4b55a1b5f8fae0ea77161784
+FileChecksum: SHA512: 62167730af269466bf8e7f8ab80c7290ffa7cc7fb97419b0df9b0ba884b6dbfda4cd62f779099c8bfc597160b1df108e56d9a80e6f49411bfd65d0757b16f323
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnleC95linux.go
+FileChecksum: SHA1: 3af854105d96155b843b970c82890e1b01fca773
+FileChecksum: SHA256: dd2357dcc25d87fa8c859763fe25132f2e8efb32c13ba391d8d360c0d493fd04
+FileChecksum: SHA512: 69cb886941cdce0ea5e786dba2d0b400eff6d3777b502ac1a39d32da49f4b541e4a339b8ab50d50ba01158313588fc6303ab5e0c006b832528dadfa75b99032d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnleC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.go
+FileChecksum: SHA1: 21ac44cb71ed4763fbe597854a4f2796f4c94558
+FileChecksum: SHA256: 0293c22f49f3d0f40c82cd5bfd6cce65958d47b34b44d658616e20e77f51d124
+FileChecksum: SHA512: 2ef864fd0e353d227fb636dfd87497d518162d238290f058c04e505e490c1bfd4e5ca7c1cb1ce6ccdfddc4f56f19263e91d1b7ef91f0a2a68c4b36f0eb756c75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.s
+FileChecksum: SHA1: 2ec0d08891fc6066245a55e430c344b9dd5fef81
+FileChecksum: SHA256: 0aabd07db08bf8ff83c6154fe98c79a35d1b0160b2390e9039ee1400ad860f5d
+FileChecksum: SHA512: ca62cbdc60180e7fa9112fb9182a4fd49a131112903f9dfa6cf59c71b478bc00864dc8924faf0ada56ceefd06f641c8bcccc2a941edcde4bf151509bf16551bd
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gc.go
+FileChecksum: SHA1: eddbb9145c579dc9e5f2f0a6640c45ebe6de1f11
+FileChecksum: SHA256: bd29391b79c5a3b3ece0f9827e48323bbbfd9dd2c1a9bfaab0e93a1e6119526e
+FileChecksum: SHA512: 45ca00f38f1b5629d68ac7c5cb54d8995c45eb40afc575f885fe1b605ff52828b11e0a8a2be34c39e0bd2ef48ac6a4e26599db1b5f253aa58a5c1be935ade809
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gc.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.s
+FileChecksum: SHA1: 040c9f21bf298373c6471ce7fdf78ba165f51ca8
+FileChecksum: SHA256: 8dab384cf81a77db48943209cd6f420744bd5e78ac3cf5bd0fa6bc9307e406c1
+FileChecksum: SHA512: 9bfb30e1675c83c51221e48ffdeb0efccbd0610e43dc7a9607643ffadde249135feb6806893dab242b063d05fe3b7d13d947022f0585ff5f532e1953896794e6
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.go
+FileChecksum: SHA1: 72ac17a21168eaf5b6619a6262368219da9cb176
+FileChecksum: SHA256: 60e9da25ae12f0b220554a993b965ad15e8c1415936f89ca2b6add3a831de98d
+FileChecksum: SHA512: 848c199e2bf4e25a0025a1820df0abeca81ceedb052f424b6d6f8d19f6d0c955f6056b460a66228c485bbe04fa0ca547123dd3080ea9f72af880abbd50b93573
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gccgo.go
+FileChecksum: SHA1: 67de6af8237ed1375854f09c463509fe223e29b4
+FileChecksum: SHA256: ec315284c437b19512264894baf9ce1c7c64340a9bc053cefe0089563710bfc9
+FileChecksum: SHA512: 13174b1fc01e6fbbd6bef8516a2e45568741ad794a708ad466219610b32a12975e12ed87e95dbd3078946bcf361e982ef9ea4641ce0b2dc61248c821b7b03a32
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gccgo.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.s
+FileChecksum: SHA1: 2d4291c3127806a10653c467d41e7ac83491b0ef
+FileChecksum: SHA256: 489454dfc0a7553e905c03d3871ca6f6638e0fdc3ac5d107e00beef26882445c
+FileChecksum: SHA512: 64fefcbc98b01b0b93852b5c8408cf7064e3feb87749401e4d56fb2679a37df7627b47c3228797bae4449039f488275acb90aef42bf6243eb32066556b0d955b
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.go
+FileChecksum: SHA1: 2a0b1a520acdad3b72e8d2dd1fede7aed265b93e
+FileChecksum: SHA256: 3c3c9c5bad4b854de451a6b7099f384cacb5181701efc0d64f8d9ae86b638417
+FileChecksum: SHA512: 72b2d1661b6711829ca4c5c58fb0a28a446db9762b2e519162860c9cb70fdd5c26991a4afab637f4475a7a538d5d503a3b5dfc6669702c54ba5f43f924730bf2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.go
+FileChecksum: SHA1: f1f06c2534a6a072a2aaf2fdb2f51c834f9909ee
+FileChecksum: SHA256: 447ee31f3ab0bd61f6cff6a3ba7dd4e9da7e381ee1206ed5881a4138c352fea2
+FileChecksum: SHA512: 542d10971d8a6836b6315d79a6dd006e9763f91443135781b33d27095a7521a648b9be0bea0b63e05ef692f5cec576c50ed3ad70869ec5b442e805d02f28f7e7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.s
+FileChecksum: SHA1: ad0a6f96e045167e3ac971943c4bdf818253c1df
+FileChecksum: SHA256: 8594dec602f0474279d4e2243c079f3c791bcd2a878a58e78d31c82f9663b41f
+FileChecksum: SHA512: f2d3c62ec6f881b832d4fee333f8fc46c7726cca15b34c8d1494710b55f85b18b33a7db7911152b1207138ede1b9a09057d203f76b5b8a60f472934db192d6a3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.s
+FileChecksum: SHA1: 07c20d3926175b7b53f6dcaff7728b3b470db02c
+FileChecksum: SHA256: d0378c26818b831c4e80123c812332f9ee31e40098cc5a769d52ccba5b54616a
+FileChecksum: SHA512: 5d7331ae95a6af20fee77ca3274a2b5848f3d41f977bf11388f1dabd6eb420da36eb8fce1ff8e27bcc8a8e73e186cb2516824810a378c08bd8ed708888dd3f50
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.go
+FileChecksum: SHA1: a08f2e5d7ad98bf4f03c9c6d060b3cb155aad695
+FileChecksum: SHA256: b5baaca448c93aac0ad351720097330592b06ac11c96ce62f46225b66e60d04a
+FileChecksum: SHA512: f7368ad6339184d319e6693630f2cfa7415031f7d63da7b238d8ce6be78d594c87a573015268292a357d6c82378f82f15efddf8389d24418fb80a8827711ef13
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.s
+FileChecksum: SHA1: d918b53a9ebf922696c54cfebfe796dd59707592
+FileChecksum: SHA256: 69c73094b3c89fab57120634baff58c81d3734443bf58034841a7dbc2ba38fbf
+FileChecksum: SHA512: ed5cc6b805285f3dc3437a410b739da17157afaeb76dc8e7f78d6ca1c4bed67b2bbb5852a11456fad57b0129db0baa065a2013c93a654daacf466ab63534c1fa
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.s
+FileChecksum: SHA1: 76f5f1eebd22a7e5af15de0b3373d8407c82b650
+FileChecksum: SHA256: aabe9c06e74674ef8cba4529feeb2c4641d089e7fe6b32b28ec31afd3f8d3cfd
+FileChecksum: SHA512: b6698740571f38161f9de2a0e73e3838558af750746831e2dca47f6e28efafb8df3efe373ea34770e5794657627c2f82be0f3c99d98c3db0b763b2c05d111806
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.go
+FileChecksum: SHA1: 45a77a0f82ba447456f45f06219fd0d6c99bf93e
+FileChecksum: SHA256: 358cc3fce35d633ecf6c34abab0e8e450644f6236052be3afc25d6cd05874ac1
+FileChecksum: SHA512: 41baf2db1a6464553196569da605bba1a6215edf060b2294ea669c5bfd4763f21cf64c27873e3c540d8802047f90f6fd47cd1822d034444746e41f7fa28daf07
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.s
+FileChecksum: SHA1: 923e633dbcd60b1fefb26f2723c1d6228780db52
+FileChecksum: SHA256: f9b22c197a913e4d36b1cd81a34ee0e289905d061ead48235d996d765babb53a
+FileChecksum: SHA512: 7f557134d8ff753851561c4bdea3edeabcd9414e659f0b23bf529f465a820f4f07c7314996a7cb8776e8b6dddaf2f576e5a936faaac0543fc2c96faa96471aa4
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95dragonflyC95amd64.go
+FileChecksum: SHA1: eae1ead8826e314f0db5b677e576165b1dada52f
+FileChecksum: SHA256: 99e5e1bfed9acca550fc11257823c0cbc0584e2cb4f42b8d28a7fa154ed2d697
+FileChecksum: SHA512: d6c6229a6f52644f978c131f5b990bd0d0b79fa9071177f62f26074679ccc477f372e9fb25f7f3a69c0621d58bd11a253495e674240f0473685b2bf29ca13b73
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.go
+FileChecksum: SHA1: f12b4e5b8f519082856be9f61bf74bc9160d3018
+FileChecksum: SHA256: 7e20ad6e277fab0873fae8d18dc8044bbcfc1888cc099988258ce24c95ea14b0
+FileChecksum: SHA512: 1ae818943d08905e612db532d78f99561059c2e6f34d8fa3eb9c4ee2d6f212fc3ce88ba4295ed60576a9d63ad5d59ec602b7e3452c2d2e2fbbb6490a0a04f083
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.go
+FileChecksum: SHA1: 0e706b9d899205233824de7b8da282be89337045
+FileChecksum: SHA256: b5c30a1deb80d28c125907f847b79b47b68a93e7e0c27cf0fa09278ecfcb7c7a
+FileChecksum: SHA512: b022492bdf175acc9e2c1193e77e41c93a827fcda4583a06704a0e7893f75cf9a594bfed2d1b05226ddea641c6afaacedd1283cd59a3400ea60d1b31b810cd1b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95amd64.go
+FileChecksum: SHA1: f89f4ffd134223aa46c8925e3f7ee2fe1218af05
+FileChecksum: SHA256: b70ca41bebc47498ff56b51dc741b868ac394c2fafe46fb032dd0ef324512d00
+FileChecksum: SHA512: 148f0ae3dde5332b61840b5c45591d70d82bac9f49a394d9e9d6c1439e615fc041c6e1ea368e49c5060d26478f8ac894ba9d803772619e6e65ce45ebb15e4532
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm.go
+FileChecksum: SHA1: 63eeb99e5ddc9dac0c45e77773df94d5402627d0
+FileChecksum: SHA256: 799ef6d19b021a40a998a9183bcbce04b7e0636cb89a9ec486ea567e146afeca
+FileChecksum: SHA512: 3e5c3860342f7f729eb71c8a3ffc48a040c351a81ed467badf2bef3e191dd9eaaabfc1a1f80aa7f9196ecb458e386f7dc19486158f3643f8faa1e858001008d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95illumosC95amd64.go
+FileChecksum: SHA1: 435348c2eebe9d0a845a13d57e417ac8f67e27db
+FileChecksum: SHA256: b23fa55f31c26d94d05e9d4083780696c36b77e0b03cf797c48d96e2d137c26b
+FileChecksum: SHA512: 61fdb2325b79657a1b1d81b4ddfcb31a29911b464cf8123b9a6e9daddf507dd141a474b9ff0be7a7e6e07b733373c06311387efe2785b89b0f1a072f1a3d9459
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95illumosC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95386.go
+FileChecksum: SHA1: dcde63a6f1695d623d8ea61a64811dced919c1de
+FileChecksum: SHA256: fa85949e2bf38264ee048cae3e2c2d3dea8901ed152a8d1b63336bb628cb7918
+FileChecksum: SHA512: e63c6311ac2460c0b328ccb4ba510996e205007f5d4760c0a044b40e05a2ceedbf3db4125efd91aac7bb9c6a80b2b6250d9ec54d8a19617d705867e63690925d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linux.go
+FileChecksum: SHA1: 1061bcd544b819bc08706f94c562e72b0adbae91
+FileChecksum: SHA256: cffb3f534e57d936d9f9ead18f56b3fbec15b8e1ba57f61cf1545e51fbb8c956
+FileChecksum: SHA512: dd0e5bf05cabe3d6aec9a7eb7a772dfb7b6b79789b1ccd554baa98c55ee8ead33520d3c5af79cf51e3c94652d8f7152554a5c1a88ac86cd8115d8d149fd4f618
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95386.go
+FileChecksum: SHA1: 18a34a1ec99a1a49bac8d18345065fad3cb4da56
+FileChecksum: SHA256: 4830c34f311d8bbddb8f3eec95a05313af338bcb9a7c5feac1ebb4c20db14bd0
+FileChecksum: SHA512: 89813b0622d9a5961bab1c1b543fab8dcab13fd47522e424a2e4850dc4c13010ef26234b8e8c21af746880dc55d6185bf528f95c367a5cfc54b352e9fca77a1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95amd64.go
+FileChecksum: SHA1: 786413c46d4b1e274c066f2669a531f898a89125
+FileChecksum: SHA256: 0c12cc54d6043f9cd27ce23a0e0f199fa65ba5f0a1d4f1327b785425c6d48173
+FileChecksum: SHA512: 7b185fda6794ef00632372a5d204c79d1ee14997a3f2fba357fb297ad360fb937c333be15dc2d0721c6d4d1b7ed89a13cad05a23ab3f72d8f80af307f235abb9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm64.go
+FileChecksum: SHA1: 189ef111e671156e59a79fd10d832f2b13b616e5
+FileChecksum: SHA256: 102525c0b60b93e1b86bee458ae000a334d989e2d5ff2bf82f350a110f4ba147
+FileChecksum: SHA512: bd994318800e4ae4dd2552fb03decf16a09093b159404b46e9555b22a399ff9e044662cc2415b51d9cbc4428e1e88b62f3a260587bed81a932ef90cb7327537d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips.go
+FileChecksum: SHA1: 1a91a27ae4e964266438de7c763e6f2b2949a9b1
+FileChecksum: SHA256: f19bcbe3adc42861655f994690e5bdad1e658cdc54d51d208f64e49e2a7b3b79
+FileChecksum: SHA512: eec58ed9f7814ec5125ada6054de7929a90cce0a88abee14c86d9f9c1421ddee57dbfab79bd199a9d0a69f9cb8150ad9072091d6606e4d6404546156034baa50
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64.go
+FileChecksum: SHA1: 7fca732b3b4cd058d693bea99a63e45e83397e04
+FileChecksum: SHA256: 37ae15d57a979e0e25bf18572bd8a5f588e4f397e1939eb730b8455e5f34040f
+FileChecksum: SHA512: baca13a2c0a6f082a3947e25dbfb4d8ba91dc043833c014f1f7bde6897a7d2835fb445c21c6a686c8e4a1aacd3509b0f99fc31c4bf21e08f6d931ebadced18c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm.go
+FileChecksum: SHA1: 72a35e682604240c37978d83ac8a4767c8e21dcf
+FileChecksum: SHA256: efe850325343fb8e40b02decc0c0e63d25fe44101f3808b6b273a86de34d3885
+FileChecksum: SHA512: 84103e52d5768c11cce608a4cf943dd778de9010d0f9b907b54ec5bdb758a6151c05c46927b203b4a57aefcf7dfc1d043c3689e806f12c52516c7ab1f29f9953
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mipsle.go
+FileChecksum: SHA1: 415312cd9371f0787449025a753d44cc0a7c74d5
+FileChecksum: SHA256: 4df6a9e0f43920b200b645275101e32b7964215f4f08160a509562ef6e09fac4
+FileChecksum: SHA512: 47fad464ed54b62ea983da3626c21eaf58641ad4c3700c5588bd89cc197cc84c8f513e13417d7116e8a084aa1ab0f39ca66837123d000b972839ccbc08c30f98
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64.go
+FileChecksum: SHA1: 16ec31c9eb3aa6bb6d3974db10f1b3934c7ea0a4
+FileChecksum: SHA256: 479d84be1743402139366dd9172185dad098cb3622f6fc77c11dc1287364e74e
+FileChecksum: SHA512: e57bb27a326b197b9f11603caaa647a74542627827fc29ac488d3eedd3a7ec64bd6f430b4958eb22f09e4d25bbd0421e68f670e03d0f403f000fbf7ba3cb3747
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64le.go
+FileChecksum: SHA1: 193626421a354d5af959dc57a9a761d259162aca
+FileChecksum: SHA256: 714328e04a8d2ca9b1c23e36c68705f77bea69b20b6f8c3d0d09045a0599a084
+FileChecksum: SHA512: 76537611f8a0a41d11cc2b939c582d9500ee481ee988a0c7430cf8755c9ce095df7d65a22a33c77af69dd55c3cc5a64c420d9d6f01c3db8c2d8a46990aae3c63
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm64.go
+FileChecksum: SHA1: d8789afa88a48e8fd0f749b6e8213c3448574fc9
+FileChecksum: SHA256: 1889062aae445715f70dbf1cb539c5b21119c4d2239f42f3cc80227d680402a2
+FileChecksum: SHA512: b36ba428ce61b38e6b71ffabd566be37c1f9c6bc8273e31a611365d9ce5b32bc7de663a385a4b6c37f7d971fbe12c61baf34f91e21f8fbf62696531b265e127a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95riscv64.go
+FileChecksum: SHA1: ef179f13fe7e9a93f788d259fc725854fcf5baa2
+FileChecksum: SHA256: 020b58e6a4e58f3eef044f70d016fafe807447382ca3507c88245300706aceea
+FileChecksum: SHA512: 1354fb3d13a6066c95ac3b51f3b5bbc71b573b53d9d8c4207be4547ed3e4bab0d43bb9e00c949f44a2e579e93534b13b2e3ef450174663770c326a060b55bd85
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95s390x.go
+FileChecksum: SHA1: 09d4e640cc7b9e069b9fb7cddeec4dc0a963ac19
+FileChecksum: SHA256: f1a4140ec3f777f51354977d732082cf215cc34bdc759a7fe717d79eb182b686
+FileChecksum: SHA512: c97b8e071c69e26618d74c7a0efb69b644591791daa45c044cbc2c18fda4ba55dacce92425ea2e366d95630cf58f9ca7bbc47dc37af623d78bcc3c5275b6f71d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64le.go
+FileChecksum: SHA1: 2452188f33c061a5488fbd4be3017a88daabf45d
+FileChecksum: SHA256: d6fe287ed5f95bf18b1b668fc81eb1c785acae522290847f0b741475986d3133
+FileChecksum: SHA512: 8610ea4f2e03e92a96b2fad48239b0556fc4e464982e0fb30794bbd9c6fdff2045d47047092952d8b1137a191f569fcb8b4a3546e97f955e93fef15e9790d7ff
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95amd64.go
+FileChecksum: SHA1: 99b9114d303aeac83d53be7736c64d3e22068b75
+FileChecksum: SHA256: a2438e5186211dbe9f1b1f31069a9cc34f8868042549c3eb546c0a89e2cadf64
+FileChecksum: SHA512: a0d14c29e9702e178b20218625b198d707396bd1fb2a0e86e29e0e10c3095afedee4b1c127a27899da25fefa838a427e6e2e240539c951392adde7e788cb4362
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95386.go
+FileChecksum: SHA1: e22009550d97ee0cd36b2c16aa18ad25dec42267
+FileChecksum: SHA256: d450e32217e9b0bda189d50bc70727f9f751d208e22b7d2e4ff5c68c2b65fb18
+FileChecksum: SHA512: 59761595bf1029a929a2758fbafb7aca55f9cc9b7013893af763e67dd43b184200cb7ecba0a8bf125c0c641646c756f9d42cd9bf879ce72908501206fca1acc2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm64.go
+FileChecksum: SHA1: 7a40bde5c03f75368592d83905d9d4d72708bd64
+FileChecksum: SHA256: 106801910bda1bebada81cd8d7cc238677e075582d0a602d344dbae846810193
+FileChecksum: SHA512: 5be61e448a145784557864d9c322af1c039a7b80399b20e836487e17e5289fec65d14c25f7ed4becff69becf758eb52fd74f8ef422f26da803f0759f872a6529
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95sparc64.go
+FileChecksum: SHA1: e1b34c694dd1941279e6109be319ce8d1cf40b74
+FileChecksum: SHA256: 306048ffaa9c1c235c0f1e1abb75d8724eadf58b375f7ade52199631b0f3550a
+FileChecksum: SHA512: e3f512f4174f7a187514bc7d04e11398da5cf413a4dca30d2b0949f0401b2bae4923c46427fefa70c4daade1c376076eac662544f32e95b5afd5664c24f07615
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95amd64.go
+FileChecksum: SHA1: f811154e66e3788af66b9bedf258c1bfd1385190
+FileChecksum: SHA256: 0f0adeda090d405ac1e24cf953ec72bd3397cb9f7bc48623e9e63cf72c01b61a
+FileChecksum: SHA512: 312f01da189183a7febf0b80b727a025c9936b259b6fa9eda1f41efa1d58c94a26c0c8ae89a648d17474816e6d972ce4339f52d1dc526a86d37ff25847c14f8d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm.go
+FileChecksum: SHA1: 818a2e005bc0e1c4fc19f9c12772328a353a0f3a
+FileChecksum: SHA256: 3f6079e4ea3c96073e388e23c326d45d215e988c122837c254668d1e51c5d0fc
+FileChecksum: SHA512: 3c3043e93ce1a8e3d7cea74678fba0e435771bd92a660f68f6076bc77d3e968b6d7ebcdb881a04c4c0ffed9510c40a2f056e77e7d842ddf684fc4360bd59c829
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm.go
+FileChecksum: SHA1: 666523a1a17e8124969078b33eda0065575d40a7
+FileChecksum: SHA256: 79efef2cfae2cdcf27d684c3c1735e7e55b98174fa32625506fdba4e7e718744
+FileChecksum: SHA512: f8b02ea65a47b72cb5811ea2f10b743918d3613f25c84a54e47860672ad690851cbd8cfecd059e357923cda1bd79d58df4ee1a7eb4da9c8640526c3803bba358
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95386.go
+FileChecksum: SHA1: 343be679a50df63b635280c43307080d91af6ca9
+FileChecksum: SHA256: e5dc95300ffc17ff740685f705cc6aecc6976c405302752a7bb580936e7ec32f
+FileChecksum: SHA512: c7d492db84fbd8c248c869adddf764598d5c3c7c19ed0ea14554f6aabe4debe75a07901754113c97b5057c334f22b68d08b1a5815a6832c43a8ea0989c5749fb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95mips64.go
+FileChecksum: SHA1: e0760d18f7e71a1eaa83f95a59480c2686a09c98
+FileChecksum: SHA256: f482de03157d37366aab4ce27fc9136e977641c717a584a3dff0a2e2482360a9
+FileChecksum: SHA512: f6e35931cc01c86dc344f27c79176b2f425c1e0e1803fb89f38737536e912ac9c91a24b9da5b9610d09494cfab6df4790e8e0ac53d3137d82ff61236fc2622c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95solarisC95amd64.go
+FileChecksum: SHA1: 9eb263c8280c99daeb01a170e272920a684f4729
+FileChecksum: SHA256: de99c60d356b29beec0c57d9f54403615e5b58d3b3000ed28d94121451e1a1f7
+FileChecksum: SHA512: 3ef680d7774158cf1511373a5be8bb7d3dd9b1f4592e43927a3a414cc4f3167802b940e8e64afc0cfda8b2b2227ec250a814fb9ad92f86ccbcdc95f582390a89
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm64.go
+FileChecksum: SHA1: d528fad7c171ee26db041eb992e6d98a469f6117
+FileChecksum: SHA256: 045c1e97da08190638a56e3df9f8030eb5e397065bb1db6e0e9055724f71691f
+FileChecksum: SHA512: 22d085a6b300c28771b8b7f1536bb7e5e66d4674cf5aad4cae3e8bc1961abeee0b7c20c6020fd3114eb7f29e5de37c03c4d3430db88c26ad13423fb441072a3d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95386.go
+FileChecksum: SHA1: 818c652b157bf36ef2a1e1f9bd31aeff4132a51a
+FileChecksum: SHA256: 3cc3f1f0481a864007681638ed376d0736664d738a57570d368f64d3f6b6f71b
+FileChecksum: SHA512: 43acd5e6a2db385a55ba9d286dba9237130cc38e2e6ac1649dd84cd1eb32ec0d9306dd9e021b09157854766d21e869a3ffe4a14bfec49ea412b3c68597b331a9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm64.go
+FileChecksum: SHA1: 0c0344ef849499f76f530744a3dfd1e407fde751
+FileChecksum: SHA256: 56cce95a55b36e0f687abad2a1648f60e99446c4977dcb641e6afc18cc7b7322
+FileChecksum: SHA512: e04cec25145bb61324ca59ffce025afea7ceac7397111f5faaed5abe86b25fe025519de461875093f2e569a6be3ec71cee03c2ecf7bb0b475482ab829d891796
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm.go
+FileChecksum: SHA1: 0751863563b1a3b2879c8b42ed476e9f2058e856
+FileChecksum: SHA256: b2ce330e243d78a0ad325e2388b384bb9e8455fc195db114bd87bae4d789a039
+FileChecksum: SHA512: 0084e2abaae98fc1c6eabd72bd04294a9e92fc38491fca47e8386759efe8b6ccbc8950277995055b341c647ea43562911fc55e00f5ee17921f412cf8d24b3073
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95386.go
+FileChecksum: SHA1: 472c2e80265d05706966b17347e43ed672ca1e21
+FileChecksum: SHA256: f7a304bd0a8f625e41fb7088656b6d1a86fb78470376bc4d26dc1b6fffbf7503
+FileChecksum: SHA512: 50a65c9448b775b8308ef1c577b4e74f1c5064884f2a3225f8b1e26f40958b22a0158e9d53c6830bdf03b428105ab7371fae23971d096b2fe8d2a563c934998b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95amd64.go
+FileChecksum: SHA1: 124d555d56d8b59d1d50f2a473b6add91186104e
+FileChecksum: SHA256: c64d9a193d6d7c2146a9994587a92c40b59ba5eeb2b054c24ed2b2b2d260d026
+FileChecksum: SHA512: 06bb46986c8729e3348ad039753f7a99d5acb8b8f19c76db0b6b2b62827ff42aeee47168a52e3d853703ae168bd1c800173f827bde42a533e32be938e7066e2c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm.go
+FileChecksum: SHA1: 2b41bea835e624ccbd6ced7de18eeb6434cf578d
+FileChecksum: SHA256: 06b1fc59b8040e318a937f04be697c6a568d6904805a033312c54e019a19089c
+FileChecksum: SHA512: a4a1a4359cd504699367c30edd6095c3d37b0fe7cba928065da4b79196101e914324aef12418122742a9f69638f604edc23d029f2ff46aed37110dd6b875d89a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm64.go
+FileChecksum: SHA1: 300f73224dcd0bff5da5af42d8f21eb4e0ef5fe3
+FileChecksum: SHA256: 83d29a5c317a302c76bed1ddb3cdcb402351b7dc6fe7395623840b139915a981
+FileChecksum: SHA512: 0980664b36371dcf9768edef2ebaad02a7da7d9ccb0abb744729875a04df8fbea7ab9cd355543fb22b3d10d25f2d0dfd8fce9c9426864c17152f57b5daefa1b9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95amd64.go
+FileChecksum: SHA1: 6ff1462ca4c7385f14153e723a9b3c4eb1452605
+FileChecksum: SHA256: f5dc0249266adb96775f31a3472dca6281e63e92dc2c531c9247ba28ad6d50f3
+FileChecksum: SHA512: eea817ab4f22c31f0ff52944dcdc41b6200a72f8a4c8120058be1be8bf9209236daac32cd8deffabb2e74d3f8f76784d8bb41b3d323bdb896f2fc435e82fed47
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95dragonflyC95amd64.go
+FileChecksum: SHA1: e924534669c09c582f442638fca7c9a5beb3dd97
+FileChecksum: SHA256: 45dbc3773b1ac344fed1b3f9b8403f04668790afb2b6b85427db6038d2bf4632
+FileChecksum: SHA512: e98d10edad35f93444969d123f1d9e9dd8df90e8319fa857611d430f4611365eb35f86faf7a5d10af994aae2679b8d6916996a810a5fd36d772d1ca322fb05d5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95386.go
+FileChecksum: SHA1: eccb9f6ebcce2cd1b7ad266207fa9325944ddaef
+FileChecksum: SHA256: 6eebff45d6862e3b93ba35ee2de3865e9ee790c493798935abe7f62d2979a4a7
+FileChecksum: SHA512: d9d121ace410845a76359e8dc9df7772e1c2d717e1a8677e516047568f34e4a29af21177790a3e5775d91bf5e9306730984a54fd60310d56ad1671c3f6548211
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95amd64.go
+FileChecksum: SHA1: ab3f064fdad9c9877d94fa3dd7b6fdb07f2214b0
+FileChecksum: SHA256: 98816fec33552ec235329da5117040c4b73ed00a1b69346b22377fb944457395
+FileChecksum: SHA512: 3b45d36d014097defc3b6387e4a0a7cb25d8a859e78eadad7da6f4f245d4d90b01aed0abd29251864eb87b8abc1084c694e9b865655f276b3f2ac26abf613562
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95mips64.go
+FileChecksum: SHA1: 4b29277fa74466e9341a225f884ba8d2e2fe202c
+FileChecksum: SHA256: a28dc7784a23edb7fb26bf012b69019577265fce7fb09358df365cd356bceaaf
+FileChecksum: SHA512: 4bae9836e717194a32402c0a501a77cd1c93bd564f752a68caf0f5927512d51f23c21944c2ebbf23af9389b929348195c1529b6247a8eae0579c06a3d3ee8706
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95386.go
+FileChecksum: SHA1: 8be1e024de70e261f5a7c40c9eb3c5ef50a7802e
+FileChecksum: SHA256: 5dade50135eefd685032e0efec9a912f1cb23579de221fe93c43ba54a437c58a
+FileChecksum: SHA512: dfd738c50044802e594a066707a0229a8868d368b395b8ad94eae302c9c2fbbd11eaee5fc83ba61f812b29f103b2f319c1bf10dfa77362b0db99364e9c5791fa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95amd64.go
+FileChecksum: SHA1: d54904f289bb17be343047c0b3c0bad582fcbde2
+FileChecksum: SHA256: 1b2dec6d0801803018684fee4bbb45048d6f7c4b0ca2010bf00c108db068b138
+FileChecksum: SHA512: a82d946540b22c59958fe35c194864bf22995a92a87b5dc6667a092ebc8a3af00b2df0ff0186fa5fb4a0280e891271c835094f149a369469a8fc779ac0e7f30b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm.go
+FileChecksum: SHA1: 8ba8d9bde6fb8ff95852c6ecc7313b4d983b8b96
+FileChecksum: SHA256: db85858547cc8b87fe22b8351398487902bc83d532ed3fe1bc2fc193596809c0
+FileChecksum: SHA512: 914e5c79833518014bd08d87109abfe19db93339a518bac686146ddbdec64d6b5bbcd866c0147cce91eff960e1d9b6ae4f60123e0e6e19ed6a4871973dc87e9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm64.go
+FileChecksum: SHA1: efb92a04d63a684c9c19fa50c56819ff4f9e89ec
+FileChecksum: SHA256: 6f62083cfef586ed0830046c557670016a57f78dafbff2bb36dbf23177e209f5
+FileChecksum: SHA512: 91a77012328a108f2a072b061cdda1a374f389749018c0baf9f8314681ccec0228c7ed2c171f1a4ad3cf605b353dc3cd2bcf11ecec796c5f741a232d9477bae1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips.go
+FileChecksum: SHA1: 90916485ddd768a335d8e4590f638fe1a9263ca6
+FileChecksum: SHA256: ee499a655529250123abb4a168ff999719ffe92a94f23e67a64ed0f620f775ab
+FileChecksum: SHA512: ec45b2aaea2490b979f97f157a961cf124453d3dba2dddfb407de511c5061912e603ad2dd77f10e90d6766894f033f9e9f6580903e46b83470133e5832316f06
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm64.go
+FileChecksum: SHA1: ca1b5b0576f8735b4c35db40f72138d60e3dad24
+FileChecksum: SHA256: 3f2ad505826c380f3f55570670c8e397f8fc5ea4102e40b617ce74c43fbdf153
+FileChecksum: SHA512: 6911037bcfe408c4e9c787eeba2017f7ca55f37705361cc1a9169c4e454b915846c9b45fc8fea9e409aa4f1782a5cfd771c0f2ce7bd2ae868a5d7cbe566633c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64le.go
+FileChecksum: SHA1: 2c929d0ca480fe85d0b8b9fba077158b7c0acae8
+FileChecksum: SHA256: 7f5ab8c5b2777db5261531712984ac1f2c97f5fa1cb7d685cc604f1f8cc852b0
+FileChecksum: SHA512: 84721a6c32c9cf5ef3ddba5f6eecc70cecea8772e007e83002cf23187d14631a0b4f98ee53c73aef6971da908acbd22cfc03242a6cb0b8cd1c3f897913ad9017
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mipsle.go
+FileChecksum: SHA1: 0c8ba443f4759263fc169c701c1be21b8350cf97
+FileChecksum: SHA256: 22aba05d26d1eab025a087c715097e2b2013913b43cc3ef17a85d3e0fe89a423
+FileChecksum: SHA512: 2f6a89172dac515ab599b7d46f2e7c72d279030bdb01dea6b05fd52f9fdb4bfc6bc3016de66cbb6afad6d8596bcca6b9fba3afbbfcd866e2ff9168202c1f4bd5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm.go
+FileChecksum: SHA1: d17a0b0538b892a76c34af99bfb5a1d6382edcc5
+FileChecksum: SHA256: 94bdaf0b8a0bde810486fc943905a950deb4ea3d8fd61c7e0f7b4cf4cfc2bddf
+FileChecksum: SHA512: cad616d7ce3538a21bcbd3d17ba9e2af3a1a8e9fb1fa18cc0c48141a44e6c8f67665e0f53bb4fa3b1e34da3605b82550f3dc4592634ae3bf91869064454ccbd3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64le.go
+FileChecksum: SHA1: 60b1afb771cb591a44f68503f97fbdc4b4771a11
+FileChecksum: SHA256: d7a97aea487cbd43e4b7fbe65cbd5c6793bd4362ad827f54bee2a4d54fc4329f
+FileChecksum: SHA512: 71187cb6c7e69d928b15dac77b45148845c6bdea421bc086860530bdb591ce9809149c9a2399b930e947e82c48a272a5e5c5c266d7e838e8298a8b29b7f046dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64.go
+FileChecksum: SHA1: 918ee527e6e276279f7db97fdc704cfc07fbea60
+FileChecksum: SHA256: 269a3c49f92e7c3bf6786fd556b3335bfbb8db5f2f96a2aada5eceaa4a7efb23
+FileChecksum: SHA512: 8ca525d736fdbb9486f9d85d1b4a3a199e8dec225504fe9711a3cfd2d3584e70eb8d04b629e02244fe6d25547fd247479ed900c7daed4330bc4a327b209e46f3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95riscv64.go
+FileChecksum: SHA1: 9bbee584d3e791499c09b18a05afe152e3cfb86e
+FileChecksum: SHA256: 5f7cd30d93dd099251b59610fc406bea8c08287a76b2ea0e94053edde1d56dee
+FileChecksum: SHA512: 96f8ff6614a106f9cd1d5b084f779451161a02bee654aeac5464dacb5ab78510fa20d1a574732a65da92028730c1ba660ee7dc13014ab82eef82213f6592b180
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95s390x.go
+FileChecksum: SHA1: 35b8d175bd1e2cfb65f1a8da65eb4d5d2f214deb
+FileChecksum: SHA256: 0fa03737497b03bdbce90e893e36909fc94f62f4034bb11b6726bf2d06c635df
+FileChecksum: SHA512: ebef3b34ff0f63fbef04c4ce5f0673eda3c28480f760de3f6a42e46d57f112e97d13f9c5b8af8adc1ff39e90f5744e2773554fa9c2b7ec781e73211cb00c3966
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95386.go
+FileChecksum: SHA1: 1cab17054ad8e5a1e0c37210ec59937cdb28972a
+FileChecksum: SHA256: 2dcdc268848d468653e4aa384280f819af4960a85f8b17deec510160a1d156db
+FileChecksum: SHA512: 776473aeb433e8981c646d675fcec2d3cf0ec9b5d9d15ee0e733afae80203b560d50e6943e5345dda7e433c0660bcf647ab1ecbe8413bcd197ca5910c2e2b939
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64.go
+FileChecksum: SHA1: 5d10e670c588cfecfd9f69e6ac55150320bc666b
+FileChecksum: SHA256: fccf5e98076d676bd41c6937134794d8be76e41251abe6013f3a420b389468ff
+FileChecksum: SHA512: c1b11cfa1bd8523a2cc2bcca7e81773b084e442edd12acc9a4a4199328c648b1f2f988a275a8a671ec82c86b06b5fbf214d2122ca22906ee3ea2e87e8e81b03f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm.go
+FileChecksum: SHA1: 8c7b26184d2d7bd1848bc1cd588356abf0b897f1
+FileChecksum: SHA256: 21960dc0e4addd676c8f2bc5eac521495dafaae8a3ef9378b7e58b13412e8061
+FileChecksum: SHA512: 01e57d0635a2cc9d67eed985633ad71b8811d87b0f7072980a9896759788195b4ec17ccb32804b56a1704a0bbce3334e80ae76722798c928c3f23c74fb8c5988
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm64.go
+FileChecksum: SHA1: e6fd6074bf3ecbc94beaf706f3e1a2bb29bdbd6c
+FileChecksum: SHA256: 835abd953bdd9e638a1eb8a362ad6e93458fd9aab7cf965dfa662883afb4b8b4
+FileChecksum: SHA512: 880fa4f720066f53902ac2dd23c36cfbf8b2f63809036e3e302d0f27da5ed5e738a978fbce5aa612fe5cdd4c20f6e77917a1c7e32b5cd8844b538a3425deec05
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95386.go
+FileChecksum: SHA1: 098df6d27e28b25369eaabc8936d2d8be115d9f9
+FileChecksum: SHA256: 1f1a9c78ea3aa86d00c14150ea1d1d5c7f81f4a7bd04b507eca647c216ffb4b8
+FileChecksum: SHA512: 5b4ddcc46d5526c984dcf230b5747c4bd34999ff17fbb5080becd54a4832c2190a951c95d8defda0c0d0b23cc318e3ace7bdd28e51347dd879c74c3b7bffdb98
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95amd64.go
+FileChecksum: SHA1: c78488eb9ea39bfb970437a442735aab471d64f6
+FileChecksum: SHA256: c509db8feb0ada3b098d571d4010baf1e6141368e96de8beadf0f6a486f754fa
+FileChecksum: SHA512: 04e692cb9268cee2608af8b02ee328ed34f7747d69a67bf372d5354d2bf9a9576f9968ef59098b4b7239b41fd3e913cbd4ee5ce2da121616c5dec4f8182cb65c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95sparc64.go
+FileChecksum: SHA1: 2f25f42738542f788e3b18fa47dea18dbdeeb688
+FileChecksum: SHA256: 6942e33df06c3cc0c6b0738e46f78c72cda665b7a179f945f382f0cfb9f6ec0a
+FileChecksum: SHA512: b7e5a2dbbe3e5677852e44deb5645f8dbd31fa73c659463cfbb89e091d6b942d8d6832cae43f83c5391bdd14f544c8ce549949975c7298869592b616e3ca2cab
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm64.go
+FileChecksum: SHA1: 21e5904b41c15dc1099ec51c25efc9b61bef58b0
+FileChecksum: SHA256: 3dbae5a96a107a885f62afd1fe1815d2fad0a1b8d3400450e9a480a34f7e47b1
+FileChecksum: SHA512: 0beb360bb3fc4e53fabd116087b7b330e97d997276b3a72dc14bf822f33aa70a15d8118ae1048da3ebf903a5d97772981369422b714686d2810e42e315c8fa57
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95mips64.go
+FileChecksum: SHA1: 4cea0e06f377a36060c8f4c40869ede353b6bca3
+FileChecksum: SHA256: 14d86fafb9ed8e7626435d62ddc66f966a736cd5b455a8fe9199590316fbdbd6
+FileChecksum: SHA512: f4d634b78608b8387738a096a3364cd1d74260775a9f3081e2a99400e9426772ef039956dd0c4daebd93fe979dd78c1b5951cb56ba507f221050696ec3239415
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95amd64.go
+FileChecksum: SHA1: 8b323c4962db6d4e41ba04c703699c66daaf1311
+FileChecksum: SHA256: f80c40f86ae780847739af6cf588e139f689b4c0c247b8573134a25c14f47f75
+FileChecksum: SHA512: 8f811a5c1ac884fae5d7457e1e2bb8aad1d445d586464b26b03029ded4495bd3f8b683d5aa4d9d331f1a64bdc4af2b3f462a05bf31fb3f34780719666a8a912b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm.go
+FileChecksum: SHA1: bbd02d0e44699a332a190a0cd61c4d5a864c0571
+FileChecksum: SHA256: f20e8f2aee152b5254b72589af04ab7588d45421ed2f7a38f24cc19c7393d940
+FileChecksum: SHA512: 4c5f683020d255017006278ba38ebf95f13b076261b72cef77afc5e8cde379db742a72b9966661152d8133f76ce66188438100561d1f493845bd12a8d8737af2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc64.go
+FileChecksum: SHA1: cff7775ad1cd329b84fa9bd4f3816871f0dece22
+FileChecksum: SHA256: 4e7e907cfffaab9d21307bc28931db4f86faac1d94fb60c5fc67cedcf6b32188
+FileChecksum: SHA512: 833201210ae61173186858aabf114b5ddb2f8bf994e232bf863e7f96d87f027e47910a5c7ed026d1d12089010dc69999aef6d424a56b1fcf5b496ecf86fe68c2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95386.go
+FileChecksum: SHA1: 6b32d5bc32be9011688c33266dc01b1a62ceb77d
+FileChecksum: SHA256: 1155eff7d3f7dd13525d7bee749929fcd6a468d4a943fab735108f3fd6ef7235
+FileChecksum: SHA512: de121c034a2542323e1fc0006a2ac4cd8e70a6a2efd8aba30d3af12249762d9946e62aacf884a185a73fdcfb02bb05454ea36e90abef31165e82b2705484990c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95amd64.go
+FileChecksum: SHA1: 59d9c553dc50d11385a87ba2d7c5de7ae7d5056f
+FileChecksum: SHA256: b568cced4c6926705129a0971582d73c56dac5fa91f6781fc15e74be8b29e03a
+FileChecksum: SHA512: 7ccd91c148bc3a5e82e320a6aeb599594f1dcc4c1580ffea236a8cd602d61a80788bad1fa7b752d4d9abc600eec9a6dac04c79a5c2c664d62d94836c846cd876
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc.go
+FileChecksum: SHA1: f5b42804ad702b89b6994df1e2216b769891ec8d
+FileChecksum: SHA256: bc74b31a0e1c7dddf9cf46f7b693f06a311f0f66a369cef663a80628687c6af8
+FileChecksum: SHA512: ce9c43c2e545890789bea0f9184bd5ffe5ad9096a30beb951c021fd2e1cc3971fa10d18373633de42fb57eadc187a28612974d4419fd33bab59f4a0eea126418
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm64.go
+FileChecksum: SHA1: c17c69b6cb5eef1cb6e49e723fcaf2a77322b4fa
+FileChecksum: SHA256: 9e80dff9394d452ded0a9bc7495e073591f9eeda8ab0188bb1a814c56cb0f5ae
+FileChecksum: SHA512: 60b00c31671c4253be812b7dd5baea5cecdb0b04f3afaf505600506ed4f9a4bde0685f78f1d2622c8fb2df0cdea2808f1457e912517a2d3ae34fd29d0fb65523
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95dragonflyC95amd64.go
+FileChecksum: SHA1: 9ab1d61a40c20891de620e46c8f2d5c1795a58bb
+FileChecksum: SHA256: 889d895d36a004558666fe17d843ac0fd37eabc21a03ae7a0dec270072c6f5ca
+FileChecksum: SHA512: f99006ceaba4b9879ff43b00338b9e1d5d1d6d82cfd0b12f51a0ccd758b6c81a53620ff57ad0f1a907daa3a25d4c9d3940881270424180bd4fb8d900c6035d2e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95386.go
+FileChecksum: SHA1: 172ec5cc7f21b7235172307f1c59cfdada94eaae
+FileChecksum: SHA256: c9778ec3de7fe95b7ad5d0a82320b19f33bb2f838c45cb364f022eb4f00b9693
+FileChecksum: SHA512: d4cf2b7c186d4047357be7b4aa28eea6548f69599dfb81ac5e951d2278f6508d755267721660ca5e517eff2d16e8be1c68f3437e74c93b03291e5592340aa5be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95amd64.go
+FileChecksum: SHA1: 5dddf94acdaf1c6f48c155d06ef09b269e8d03e5
+FileChecksum: SHA256: 008491deded8566470f104ed688fc1e4205d623961960c739351633b36449436
+FileChecksum: SHA512: 63e9359e89b65d8111da0a5361cc1f0c853d183c19bfb35ba453fd03618901532c915b446bc3067b9c8cb815730a1e0c320143adbb0340f0a5cdcb0e7924b9c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm.go
+FileChecksum: SHA1: 29b910bc321f3e81ce4dbd304fdb09b6e4922aa0
+FileChecksum: SHA256: 13afea08247561d9fae004d0bea5356840aa2563b83f79c1c10caea63683e019
+FileChecksum: SHA512: 823977c427e3f2ab87ba79163e083e39df94131e86a3623ea169e737ba7cb37c8ff1b6145d0472d7fd799e9286e0f09da90127157f2b38841c9405604044764a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm.go
+FileName: compiled-binary
+SPDXID: SPDXRef-File-sample-golang-prov-compiled-binary
+FileChecksum: SHA1: 074fc192c2a7da0012b3904d40e1c6f845162361
+FileChecksum: SHA256: f2e59e0e82c6a1b2c18ceea1dcb739f680f50ad588759217fc564b6aa5234791
+FileChecksum: SHA512: 421e6441e9515d200e88c2469eaeb21b86618d0f00102dd6f46a64b7e42e46e11500d744c834d3434f14df81ae0c109588dfae397ce2a9b632a6053331d1b96c
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-compiled-binary
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm64.go
+FileChecksum: SHA1: b91d42073f1c4494b9ed2c3d97f8b0c2b885269b
+FileChecksum: SHA256: f05eb0491d138356ea9d0a369f626f22bcabde57708ffc05250cd367038daf4f
+FileChecksum: SHA512: 23a12b0170f2d37a54aa154953532a4681336bde1313c645cd910dc310b493f1109a321cccebbf36162d1b8a745231f49b7874ab3d58c5e08d4f3e8cbf36d59d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95amd64.go
+FileChecksum: SHA1: a2c693c986ae30a5ee5c858a8caa90085fe38c07
+FileChecksum: SHA256: ba47e2f26caf5a47a21a592e0261d29ad9b70cc47447556699840fc8fbe4507e
+FileChecksum: SHA512: afff850a452dbb444710f47e5891cdf6ce8a5b7a2d394f0c4a7d4cac8788a70d2b10261c5eb03beaa911b2c07df0a198a115916eb0ca5988fbf2385debb35fda
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm.go
+FileChecksum: SHA1: 21e8e2d7c41a3e3c532f61bebf0790f648cc3f73
+FileChecksum: SHA256: ec0740b7eb251a94571085f9bd27b058bac89f7e13162ef3ca763827c68e9d14
+FileChecksum: SHA512: d6b7cd6ef5bddb99a8b566597edd5e6c48533a1c291f6b4def065c29fec211ea8c9ab9143bb7b0328ca5f61642fba3c3f63f3834d53e79be20308acd510c572c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm.go
+FileChecksum: SHA1: 8d0163014e2a4f07916b0ec368855a2da6334f42
+FileChecksum: SHA256: 2e1ac6e0709af6bb1856c43def0c7ac874fae3660cc001d3861f8a460716783d
+FileChecksum: SHA512: 13885e0686341b4ca8a3a4c3f11edb9fb8a63cf93536a05d26b53c6eab64eeac537a57ba892130520eb77dc14f7ad286dacaf2ce9a186e1d96569399868e5ffe
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95386.go
+FileChecksum: SHA1: 7f4dfb45e2483b92e400e113f748dac71991e59a
+FileChecksum: SHA256: 1d82d80f71c55fcc81db5327f0499a8dcfb35e3490439ac4a9caa37f65bb4544
+FileChecksum: SHA512: 521bb5ea47b85270df12f1ffd882b91d6f3f32e9aa9d7ccb75663557d85e5e7ee153470941bd4f5ed525b3e4726f43b28dadc6d22100ef0ab508fac418a20395
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips.go
+FileChecksum: SHA1: a81a79d55237d064573bc337a698794c183b258a
+FileChecksum: SHA256: 7324c1ad72a926e786c16f19ae87a984b3173d2da5776e63fb34a87f294c8a38
+FileChecksum: SHA512: ef239af16f4bbbbb254a7fefcfb23eea0147ede62d44f5432a61d7cc658f1972731c5823f6381bd2b6dfe6f757d331d186521e42c3b4b35b7301363aeb49c2f1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64.go
+FileChecksum: SHA1: 38141c74c6522a9d463db67269c9bb1e02f8cca3
+FileChecksum: SHA256: 5c482ba65790ae6554c15dbb40b2074309baf92035fef0a74078933887da4f1f
+FileChecksum: SHA512: c8d1c33c0cc866df16641c10251eb20d4d7457ec2396642f1b37ac433312842d290dda9624a25619339f27bbbefd378bdc3d5d4cddc760c1b0c4914e45995d4d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64le.go
+FileChecksum: SHA1: 74a029fdb6587c1781638c75eb8b6e251eb0f945
+FileChecksum: SHA256: e828893d451d57d4f5bf37beac209b598aeab87eff09e54fe5ff59ef6017bc2c
+FileChecksum: SHA512: be0b123e1f5841cfe0d0b577cc0b7de2aa9fea8a2f6e37cc26750df574ffb280b69ce8bcc6536371508eac822c3af3a8a23b407978d50b1ef0f0fd6954d04276
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mipsle.go
+FileChecksum: SHA1: 88ef96b4e14029987c9b173b4c97af7173a5165e
+FileChecksum: SHA256: 3046528bc28298a78a1a66ce81ce5ea9a688cec5306d0481ab3fdbce708c30c7
+FileChecksum: SHA512: 3598b475153cbe06f4220a37f9c5c76839a6988b35c04140080eb4c317d740b2d321b388d9a36ceb16a8569864fa849c9f8da5508aca3482f0b0629d3983a06e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linux.go
+FileChecksum: SHA1: e14448f519b7daa7bae2c7f99ceee6d1a06ca65c
+FileChecksum: SHA256: c9c66b5bfe81ff224622664a6b2aa5b9f6e3f82b8348114f9aee2e8e4eee5c09
+FileChecksum: SHA512: 9b2adab03fe0d3ec639af271430713dbb8d87b5bd5043b59292d5a64d589b7a4c6d5104eb681d41a8b0da00a8531de4f8bd7b79d3558f84a1e9ef8e71e00da95
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linux.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95riscv64.go
+FileChecksum: SHA1: 6cc3e7fc7a7bde961fa7cbb7b852bc1cf5a820ce
+FileChecksum: SHA256: f87ee01a240cf74186bc4743a60e8b9fa7d862a897c030e4aceaff78b7b0d55b
+FileChecksum: SHA512: ceee5f748415fbcccb41be4dc81cdd3f05be768fb39b6b183141bbbbf89ba4071bb120753c238c90fa0870aa230d9e7ca678c1bf2827a3ae1e5ea19fdb6d5714
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64le.go
+FileChecksum: SHA1: c742e9ddb2af7f8ebdc872411e30a90177206451
+FileChecksum: SHA256: 3b3ee4ddc752429c67e4c0468e0ae6e31e06ca2b84ae45196cd184d624bcaafa
+FileChecksum: SHA512: 470ea3b54226c0dac4821c05c8c0074647ceb743455d815a5133f5fa24a5b6b4caef215473a05123123a93e1b340adced40f7ea2e89c009c76a661207f8b38df
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm64.go
+FileChecksum: SHA1: bd271db971ce053cafac8eec83775548a8c9f866
+FileChecksum: SHA256: ec69ae56b49b483d66d14b044768a687bb4981c923d42bd27667c0c1262f891c
+FileChecksum: SHA512: ebda9f8b1e9650ce829090eef2c435dfb225b5fdf132bf3d5378062da8f7c11e84a4294e55b1071ac7a39dbb78f51ec314f71c9e6dd3744fa34a1f479b4d801c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95s390x.go
+FileChecksum: SHA1: 39f1a5b8a62cedb7d7b0e0da66d12598fd4ddc12
+FileChecksum: SHA256: d8c743c0c98c33b5cfbb0b5bb68e34efcb98e2b95a5319a913910a73dbe5abb8
+FileChecksum: SHA512: 73186c459b8976d84df950832a36a7e387cfd510c67cd97ea951809c61e5b252ce98febefe57a9dae40ff084149ad43b2ba7a6eeb3f7202054dee28d3387d016
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64.go
+FileChecksum: SHA1: 5e970e4e9b61a4e8cf52fe9f9b4225f3cebd5596
+FileChecksum: SHA256: d777a30b79b93d039b2d0b60e5c4dba00b33e539b913d20b5cda2bd9323bdc24
+FileChecksum: SHA512: 8376d9c7a17a842eaf140d9f248ea025e8a1d486d6269d47dc492764812bf5d69a938504fc56952c752a281777b12dd40d23e65960a2bec6cccdba2e79dd40e4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm.go
+FileChecksum: SHA1: 39502738063b1298f3fabc90d91f9af0bfa9b58d
+FileChecksum: SHA256: 685f5b25a6cf22910c12f77ae0c5cd1a5987e441c1657cb42c96d75bfd87b6ff
+FileChecksum: SHA512: 3515889343c3ebf86718fb488365e1f1661b7561c5bc04d20ca99ee3b7a2bca60ab09f975b5d1b8e4cc959752580753b6093b1dde09ac1769d9f1440fe70bf4b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm64.go
+FileChecksum: SHA1: c20cfdd2dc23d417a8ce7f2b5d089c407b5c9a3e
+FileChecksum: SHA256: 3ca94263554f7353cc1f3bb9c20e4f2de38972bde9ec7dfb81006042526a3383
+FileChecksum: SHA512: 79cb17ca47fb3e67f30fb781269c6cc0b9f56ebdbb7efa67b4387972e41ca4db892b71e8f94aff4010ce61476c0924de915b68417ae336058122ffe9671a0fb9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95sparc64.go
+FileChecksum: SHA1: 93b366fc127f505165117096baf0c148e79bce05
+FileChecksum: SHA256: d323f58715e92de00c2401fce23062e5d2e43b900f6c17ab1b47d701b91933c2
+FileChecksum: SHA512: 03efbe0dcb06b282750d6a9f4d376ad491e3737b5003535ee4fa441176982e72caf3831c2e6fc62d08c0ffa7ea21799ad5a09e28c768d96bf9fadad1c2238e00
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95386.go
+FileChecksum: SHA1: ff9f8a46d0e45358dd6aa0af26f8c14369174617
+FileChecksum: SHA256: f17a0d21e5db9acc785fbc700a0395759ba2398888d50a53472a24d6824ec848
+FileChecksum: SHA512: 756aac25166d250ae306065f9adeb3262b14cc5a08f115a68407433a28ca7b50f11b92ddce9ad4d49688ebd06f9c85bc1a428e68802d887f8cb9374e60037a3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95386.go
+FileChecksum: SHA1: 884102a7c78cb8bb8bc62bacb70a4c3bd2a9d997
+FileChecksum: SHA256: 7f151028967e43b0736cd5cbf28ccb8141431d9d0071d43fb34e0a9cf70158cb
+FileChecksum: SHA512: a1687ccb713f380c71e02ad4219fc34f73bdec1cbe044254aa6ed44b390edd439ba7155212a47a6f525f4b4e2512fc7eae6104294b89fe2ded35160f0afb7791
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm.go
+FileChecksum: SHA1: 6cedbfd732796198d442a2ff491902c2e06669c3
+FileChecksum: SHA256: 618422436f8659da0da2f792ca8b3779aefd783966ec53fda0af7ef8e837b448
+FileChecksum: SHA512: b44ddf78a2c3abff77dbfdf6b1833418f21eb4eed899e59967fd46e12d611c49e7e11765be5eeafa7b761a0fccefdc3170e9cd7fff734fd9138f582794df0b13
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95mips64.go
+FileChecksum: SHA1: fc40bbe59d57725eecc8a7c081df6de1d0efe4a6
+FileChecksum: SHA256: b5d168705bc232fe495366dfccce9e3dc1624a56b75b75942c76ec4340ce87a3
+FileChecksum: SHA512: 411901801daf4a5c73a88358882bf55827f315f91e831f23f8efe01cd903428a5f0d7a00d4a00ade229bcfbc1d4c3f3ed31e0a76b4776f673f171e88b9909bca
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95solarisC95amd64.go
+FileChecksum: SHA1: be19ebcd56b93eee5aa92535e4ab5abf448e8eb5
+FileChecksum: SHA256: a6f6c2ae70bec39293ead4bb0982353bc4d82430b82a97370c1f754a61b73b34
+FileChecksum: SHA512: 67a3f92796ac5f2972c546ea0502e2fd3e45a8c46874ef39a0d449838be0d7e56e2c93cb6a0708919cafbe26652bf9d34c1e1875a2598bbe33ebe9646bbf8dd4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/windows/aliases.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-aliases.go
+FileChecksum: SHA1: e5e5e00f78a3f22c5076f87b3aa0306f51ec4785
+FileChecksum: SHA256: 1ed908469d018fc34605124b47418422091f4aae525cd91561a9d94787934050
+FileChecksum: SHA512: 733c3e3700085069940389a4f4eca3c74f76c93f8540c6dada43d55adc4f08efddbdac0a98c37a540130b5aae88c610e3a53258ba433099ae1b2a412972283b1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-aliases.go
+FileName: vendor/golang.org/x/sys/windows/dll_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-dllC95windows.go
+FileChecksum: SHA1: 6fae96457cb1b1da6df04935b40aa1400bdea532
+FileChecksum: SHA256: 7e3312a47a7835c1a3eb37126c2ad0a59508e897f9a6e2ffc8daafe9d422bb90
+FileChecksum: SHA512: 4a5bb066a9f4986122928103e8dda9386538e2cfdd8283cc615d795cc4f6deac635a750c4099a8dfeb3964a328a8a9e7b6c1bc4df5d9f22cc847ebfa8d96ec79
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-dllC95windows.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95amd64.go
+FileChecksum: SHA1: 210b2e9a8b384b2a975a8521094177eec8b29cc6
+FileChecksum: SHA256: 65c69808ea92ef8510915c2856c237f8eefae71e60326feefb97addefafb007e
+FileChecksum: SHA512: a857c06f6bd7fdfa13e4d77d6ac037b0dfa67bb6900c61c6311bfdb413a0aabde2bb9fc9fb0bb5d16482bd781e13a4699d898477045441e06051a81fa042722e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm64.go
+FileChecksum: SHA1: 28ad918b6302cc60569d0c5a4c1f88d7d1af1600
+FileChecksum: SHA256: 90cffdb84cfd9fd2a1cbbe4d4c3c5b6b3d680c3ab83345d11b09bf6896600b45
+FileChecksum: SHA512: c3c98b54fdf99d2fd698de47d1d719e02f317d246f8d8882a5667d9630dc559ff84a38db8f53c237e1e913d51fdf45e55466bc62a6ee2b4b33a1fc46d9863ee4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/windows/env_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-envC95windows.go
+FileChecksum: SHA1: f8502f233ac1815792399474070acb52f99c1086
+FileChecksum: SHA256: 69a9e0a6f465c88b24699ea8b6f587c679895ff2d34ff5a6a85c4635192f0a89
+FileChecksum: SHA512: 32fa02e38d450fc0af1c4cea70153b0a24dc07cd09687059a89ff8b9ec22cd8014c51f852dd6ec9cb1f95a6d15d55248c1bab4c47342d05a8a3723672d8328e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-envC95windows.go
+FileName: vendor/golang.org/x/sys/windows/eventlog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-eventlog.go
+FileChecksum: SHA1: 3ce2b39fa9a823de73c2a2129e6c0620023aaa01
+FileChecksum: SHA256: 36e6102d274d20dbb5f740376453bb6ab13e02c86e2be706857a07a236b5682e
+FileChecksum: SHA512: 020521f8d914f1731912f6560de4296bb2916a73e44a2f04b760a15f034d2ba8819c501bef307a01939bc2acab4bbebaf1ad14dee3d9e517f88109a7994f440d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-eventlog.go
+FileName: vendor/golang.org/x/sys/windows/exec_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-execC95windows.go
+FileChecksum: SHA1: dcae2b3a07bd1b6744d1f7093b9775fdc2d33ad6
+FileChecksum: SHA256: fd58dc33d892badcfd5238722dbaa3b71b0d5e3ffa7a23b36015037530d56146
+FileChecksum: SHA512: f7dda2b3f43f8f3076b3596fd198d706deb546f0bf58a883b9d6c9c8f7b42cbb54089d407a238ef07633b68df32aac20e4329690288e3b1a9b7046c386cd28da
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-execC95windows.go
+FileName: vendor/golang.org/x/sys/windows/memory_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-memoryC95windows.go
+FileChecksum: SHA1: 1a42b4f8cbc56b1bd0ba5b4e7b9529d25298cb97
+FileChecksum: SHA256: 82907ddb3340e172e94dabf6ef67c7ebad86a6ab64b6e7f120316342306125e3
+FileChecksum: SHA512: 612314881ae9a6654228dccf99d977dfac606491b2c5b08acf07837f52f2efe189c3aaaa661748405547af5569acca5acac5a1c760761b66fbb54a4a7686f32c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-memoryC95windows.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95amd64.go
+FileChecksum: SHA1: 63cff8a88677412bd8d49bc02ac31be0b31d3d15
+FileChecksum: SHA256: 2fd474c806420a79486659d6d788708abf1984ec9d02db2e3286975f3cecb60f
+FileChecksum: SHA512: a5644356ce3c74b4b7f2c20a23de9bfcf1dd97768123f5e3da26d73c18110b52349046f4e45a3c67560dbfa5fee9f0a531b90967712478edb832802764dfd7c1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/windows/empty.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-empty.s
+FileChecksum: SHA1: 11cbc3d132fe501a67234bf084d6246520e24fba
+FileChecksum: SHA256: 5975f1c94dad8747a68ec8f25132a881c75767037383d6ccf7f71482027df255
+FileChecksum: SHA512: f7dba19418cea0624a375d32fd0990343adb2c0860ba9fe8e85218a36c918a8e1d28247d8e266ce0698db9d9d601d3fbd2207d25b6004a3ecc7d7fdf01e0ff0d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-empty.s
+FileName: vendor/golang.org/x/sys/windows/mksyscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mksyscall.go
+FileChecksum: SHA1: 38bd26aea2ce77a9a7c25120435aaa7936faea4a
+FileChecksum: SHA256: 75e3e06901fe36bbfbbf63c7ae085cc90e2db6a0181042e852e4f31c31471574
+FileChecksum: SHA512: a939cefe546be202e4db4436f47470ee34a8aceba904cae3c1b70137bca07bb7ac02e6a1377de7d093f070a8c80390081d148605c1f21f9a695fb1d8b8e5f7fd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mksyscall.go
+FileName: vendor/golang.org/x/sys/windows/race.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race.go
+FileChecksum: SHA1: 9e762e679b01380bea7131da343b5b30cf4f52a8
+FileChecksum: SHA256: 42c5afa9e5a630f46ed19d1f86ed902e0d6502413b42cf641d7ef703c0c2db6a
+FileChecksum: SHA512: 508830765ec8efbff9717bcb3af2d677816a58136ef661fb681b9daa26be1bdded07f7de19db4d57b556c0601be463471b45da20856214e5c5f8a3e954e75f77
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race.go
+FileName: vendor/golang.org/x/sys/windows/race0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race0.go
+FileChecksum: SHA1: ebda10ca4665e783dcce5eca71e69849a76d10f3
+FileChecksum: SHA256: f483ad20eef4aedcabc598060fa414eab96f19e3391d1d65d9aec420d64ffd9d
+FileChecksum: SHA512: bd5d88414ac86160cb5a33bc5a912696ef91e0469e79d1f38f67a2b070775c1bc93b5d3fd2bdcd961d37a788929c842d786901857847399c5b297af47961cfd7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race0.go
+FileName: vendor/golang.org/x/sys/windows/registry/key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-key.go
+FileChecksum: SHA1: cf78f212f4748f573d0805a8f3c7101d0f7af23e
+FileChecksum: SHA256: 1175aabee8d434d7df9215187c0f6abe247aef5bd66d8f6dc1aec9d033543f47
+FileChecksum: SHA512: a2da7de5b14ec54c6cc009c8ac1d716a5a879fcefe8a10dba9551a0c18186f074687b8bd496259d085c6253e1031d90bf2be3e37753916761f3b2a0afe14ba5d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-key.go
+FileName: vendor/golang.org/x/sys/windows/registry/mksyscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-mksyscall.go
+FileChecksum: SHA1: de70a6826e91ed83de7c7845f9afbf54a13c9afd
+FileChecksum: SHA256: 461d175a0c8f4b059283e7a805d51045cff1b222d7850c5fd710c2cfd36fd328
+FileChecksum: SHA512: f8c5f7f7f6e28e7df1bcdb3024e39f635148a933a3bc2c9e56f07975f414a55b83737c26f2a87cdd254286ea8830c4d0c6f3f117bb0bf808a271f1c21a580af4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-mksyscall.go
+FileName: vendor/golang.org/x/sys/windows/registry/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-syscall.go
+FileChecksum: SHA1: 10d163b3c86f81db37c567eb6f233bee6552015d
+FileChecksum: SHA256: cff387d9d893472d8a44a41b0caf0d899dfd6f473754e88993bfbe055bba322a
+FileChecksum: SHA512: bfc182e3c4b2c7574d23ff94c9ee85af54605ebf259c07dd3322c68010660d9e8f1fe886d7aad4703f3f67917363c956723031df7587de0ada5e50236e93c9eb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-syscall.go
+FileName: vendor/golang.org/x/sys/windows/mkerrors.bash
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkerrors.bash
+FileChecksum: SHA1: 0fda141880bde8e04f5c7174646d80dd03e0ec97
+FileChecksum: SHA256: 804b6eb1e92950f9581554dbc9ac86bd6e8ee9230d5cec1610c8990b2ec7cf0c
+FileChecksum: SHA512: 3e969d77ed2d8f0a49035123a00b4c3c53b5a7b547a0ec8feab567f69e76836e81173d6c7d17ad4283b4ca0a1921d14b55c38656d03fcaed7b12959e21931bfa
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkerrors.bash
+FileName: vendor/golang.org/x/sys/windows/security_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-securityC95windows.go
+FileChecksum: SHA1: f0a5e1e876a7b0f1bcfb4eec9a016a3adb3e3db1
+FileChecksum: SHA256: fd0e4b53729aa5e757ec26b823eb5046465cc044bb352332a631af67d4d6e6c1
+FileChecksum: SHA512: 5cb450cd409a8dab7f18b79466100bef950729b6790635677691fe3c22b8cc7759a029559ec54d607b39248ab5b1d693e2087a7e507dce84f813257a19251695
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-securityC95windows.go
+FileName: vendor/golang.org/x/sys/windows/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-service.go
+FileChecksum: SHA1: e90c1c1e935a66eb14a7aa0cbc053a6fd097b28f
+FileChecksum: SHA256: 11f1923bc1304d7be713395a6eba87fb421725947a1f5ce291e2c04dd9e2eebb
+FileChecksum: SHA512: 9528b651f68d46ea68ab071a33f1c3a967d51f514d5237de2258c705a3ee5b5f01c1e817df94d2e98d5a2643fe55b749e295b31fc20cf350247d61a1f8bc0869
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-service.go
+FileName: vendor/golang.org/x/sys/windows/registry/value.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-value.go
+FileChecksum: SHA1: a3c78d4cda98c90d151739a9aefb8d1645e0c406
+FileChecksum: SHA256: a4a711683eb91f48f9c4d2aeafabd0ca406e0ae20fe4394721a71fb15817e1e6
+FileChecksum: SHA512: 7551cbfd196ce9989c864803c28d0f6048cfb6c8e41d20ca3769b72faf00bb7bf798e7fc6e01693b820848346983f9b4bf0bff110c969504d4e6d4caf3b33940
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-value.go
+FileName: vendor/golang.org/x/sys/windows/mkknownfolderids.bash
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkknownfolderids.bash
+FileChecksum: SHA1: 47befa9cca71a351a3d2f10d930793103af1089a
+FileChecksum: SHA256: 3b7f6ac42ae1e73aa8d06d4f89f18b91916f153b030e9c01e15d41959b6b5fc6
+FileChecksum: SHA512: a3fdf99010bdb0931ee52f90d88d3b3a956594ea450fd6a455ce9847fe0956867eac1a871869bd396ecc683864bc0347b9d22bb3880175e21e8b9b4f0b1d6475
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkknownfolderids.bash
+FileName: vendor/golang.org/x/sys/windows/svc/event.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-event.go
+FileChecksum: SHA1: 9ed79510a8d9de2e66462790935e49baa9a90c75
+FileChecksum: SHA256: 6922816cb0ed1cd9450b83326f2c2dca91c1776b0b593bcdba74330e70dd0e57
+FileChecksum: SHA512: 628c1797b88d86e148db27342580435d9b3069a7c64c5b94bb3752010fe6d308817f07341a031eac5d519465bccc687eb6bb7f36db48aad022f75a136461851e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-event.go
+FileName: vendor/golang.org/x/sys/windows/str.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-str.go
+FileChecksum: SHA1: e0412c7ae5a8a37dee649eb5334848c9634f13bd
+FileChecksum: SHA256: a979ea38da92c56dc17baa7fce72bb82ac4353867d47c5240cee4404bf356875
+FileChecksum: SHA512: 06fb0133dc58c397cbf06696d976600fa9a257d5d90560f9a38dd9b24dd22d4fe21821ced69c8e631e4f9990c38b78ebdc182f2b69af595e11c8227ae8db87bd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-str.go
+FileName: vendor/golang.org/x/sys/windows/svc/eventlog/log.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-log.go
+FileChecksum: SHA1: a169ef7205085cbb970a49593cecf898f5c5db3d
+FileChecksum: SHA256: 43c2f4dd4a8853ced566d5ded602b083d6ae7f0a1dea9cdab4a453f4b9046f7c
+FileChecksum: SHA512: 44774b635e4c186ac8ebd243d30228a677e450d5af266fad9d57819ac0721ff3f9b1fc4d02b3d6442d5b635713d497d6f901443f1431632c40d32886e85298d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-log.go
+FileName: vendor/golang.org/x/sys/windows/svc/eventlog/install.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-install.go
+FileChecksum: SHA1: ea782aa61b886dbd85aa3e8a20796be94a124ae7
+FileChecksum: SHA256: 5ee399b7a87feb954aa54ec30af1168f407a4c8aa451fb6ed9e6dcfcdb75b59d
+FileChecksum: SHA512: fdd9c64209e395c1641fe662edd12ea7094e8ba07f0d1d9792344e84a84a25e6fb62af6f3ef80f3ad48ffd658cea0a5415123871f0855f55e3ebb335f41da56e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-install.go
+FileName: vendor/golang.org/x/sys/windows/svc/go12.c
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.c
+FileChecksum: SHA1: 4ca2262628c61e2027ed83fa2a5f402552a4e5ac
+FileChecksum: SHA256: 1b2da90d219fa20c82bdaf50bfbad2d21b7240a23db88df850ca7b6e672e92db
+FileChecksum: SHA512: dd89e733d1b863d5dd94b7a6f03d130e5e5f9956e50b9627f5bb6f9e8446223765bfe81362a53aa43b7933481c2a612dfaa74d73dc188330c441068aca7c55d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.c
+FileName: vendor/golang.org/x/sys/windows/svc/go12.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.go
+FileChecksum: SHA1: db2a0fd8ae766bf14f1fa2d308f35f9e5aaf60ec
+FileChecksum: SHA256: eb75915c6f6e3abf638720b452bdad4caab5aab30119ae65753459bd7aed85c9
+FileChecksum: SHA512: 116a549447201518d297df58a2b1d45539eb695548d0d651be4daf8ef615cff8798d23053e38bd7e81eabd40ef34faa0389fa6d48ece917dcd83a46b9ef451e8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.go
+FileName: vendor/golang.org/x/sys/windows/registry/zsyscall_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-zsyscallC95windows.go
+FileChecksum: SHA1: 6958a3cf13e80de899d3df5ce102d1babc448be6
+FileChecksum: SHA256: 465f93935dc8f41633e71546c7166d922780a780d265d06e5144084c9249733b
+FileChecksum: SHA512: 74dc96da1a83246e5dba93605797cd868440a38f230ed5d41754285b440a46652dd664b93dbc6a36a331c7978617d964c3d8b6c9d7ba9e78bdefa596ff0a31fa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-zsyscallC95windows.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/mgr.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-mgr.go
+FileChecksum: SHA1: c442007ade3672ba5b673d0ba785b7824dfd9be9
+FileChecksum: SHA256: a166966550645f5162b9b095c897b5109d5292726e24889a13dd4e7959b2d424
+FileChecksum: SHA512: 9ef35b4839326b035fc4fa7eaac775847946d854b8f6ab5e281f13086419efd4e1598bae2c122e99cf74bd5f487cd69972a01df3bac2872bd9ad1d7bdde76206
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-mgr.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/recovery.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-recovery.go
+FileChecksum: SHA1: 4f79f7b2e07044b810f1383c9c1acff111042bcf
+FileChecksum: SHA256: 407faccbb472bb63079da2ccdd7be81f18767cc1174f22f8881b963cc1b54eee
+FileChecksum: SHA512: 81659bc38b5b2671961afd26670b98e70cf79160ccbccc2eb2e708b7752646713df2c9b5e95260c6affd59e8cf3312209a8a36d22ded4e5fbb34721f330a94aa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-recovery.go
+FileName: vendor/golang.org/x/sys/windows/svc/go13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go13.go
+FileChecksum: SHA1: 58f4bd5b4011db2d8d58c5e10a503ebb711b76f6
+FileChecksum: SHA256: 75cab8f19c90b33574f64f59d7a926425648e38ef178362be7f5df1752ec92f9
+FileChecksum: SHA512: c0099c640a4af284f691f06ed13f7f5607ed120fa2146783e4d054f77ab4a751bd371d4a8bbcce8b92fc46c8b9a9c1320b5a0a2b14774024a5c1751335ce34a4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go13.go
+FileName: vendor/golang.org/x/sys/windows/setupapierrors_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-setupapierrorsC95windows.go
+FileChecksum: SHA1: 436a97d64a058dcf82cdf856d4c763093b80d7c3
+FileChecksum: SHA256: 725a91556b9733aced0d776a95a00ed0d91d7ef6c2c2c137235fa1b62225cabf
+FileChecksum: SHA512: fcfdc58d0b48c4eaff23407b8334a7e27a4b2599a50fbe4c881a9b29ffa58faad7e3101186172032c3c0b80084cee49aae0a9c9904f94f4caaa5d59729df5d86
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-setupapierrorsC95windows.go
+FileName: vendor/golang.org/x/sys/windows/svc/security.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-security.go
+FileChecksum: SHA1: 4da5215624b4998619adb9fda4c0318c9781741d
+FileChecksum: SHA256: cfeb4e898d7ea9dd539da578e9e03d9911e39b2f093656a852193fd0f05f22f5
+FileChecksum: SHA512: ffc8354ba603ab64b6106df1ce3137b3e39e57e455391d5829a29c7219bba338fd54df5ecad60f195109e3c63618a667be826ffa37644e25f8b71105fb851c36
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-security.go
+FileName: vendor/golang.org/x/sys/windows/svc/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-service.go
+FileChecksum: SHA1: 9b63efc826f731182c67aea57a542934967a7d97
+FileChecksum: SHA256: eb513ede8a0a994ae003b87adc5cb64a7623020166a3db1028d61296fa2d9ac1
+FileChecksum: SHA512: f014d7c595cf94abfe6b144d945133ecd19fdb3a61b856270e76777b837893ed2d1165b1351cef371d92455fcd4f2ce197d254dacace4ddb389f243f9afddea0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-service.go
+FileName: vendor/golang.org/x/sys/windows/svc/sys_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95386.s
+FileChecksum: SHA1: e85c364bf90fe6b73176008fbcc8926a6d06e589
+FileChecksum: SHA256: 60ef09de8cf9672f6e2fca6b526a0b36c863eb9ee11dd1f4c95462e3d664caed
+FileChecksum: SHA512: 729613883871db97f01a956e654c553c4393626038b2c5beb8e079b701a96ae917850d4854517f631c25c0a91dcab137631a98a6ac5d12bab928b6d231dbabac
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95386.s
+FileName: vendor/golang.org/x/sys/windows/svc/sys_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95amd64.s
+FileChecksum: SHA1: 59fb11f442c2dee6e99eefed36ef182ad203820d
+FileChecksum: SHA256: e7fd25a47e1e85709b1b340f15839937ffd9a1dd7ed03f67be35af0a14eb71de
+FileChecksum: SHA512: 6be61c1b142323bbff107d81510e527ea418fb482e79980ef9c394c95caefd74b9ee1f81690a7fd0beab2ae5b943e1c42ea9dd0d1142485acf1beb8ee3853cac
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95amd64.s
+FileName: vendor/golang.org/x/sys/windows/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscall.go
+FileChecksum: SHA1: 1f71ffcb90c5372bc5af1e63a148f8a51027dbf8
+FileChecksum: SHA256: 870a4e27224aa6f110058b4b7756ef315ec0dc96060892f9d2a6fb49c3d72d82
+FileChecksum: SHA512: 0f2ea786c93d784906ccc31d0d9afad3a9ef81e2682bf9d490472a58bec942cbaaabe087f5e4fbc7e08fc309d37e6e96710a5c9cfcc6254a5682046028cc6a64
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscall.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-config.go
+FileChecksum: SHA1: 4eee8a3c979271d17733e6841d6352e25ce9b0b8
+FileChecksum: SHA256: 0362e7b9f59a7380410cf29b7e1f4ace8616357da42e82a1fab02851522e0124
+FileChecksum: SHA512: cf38d765f8b43e5e8f1e8bd64acc5782742540cb7840c651a8738f285acbadda22aca6bdc3b3713097736e1f146cea585cf7a52dc445850034843692079f9edd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-config.go
+FileName: vendor/golang.org/x/sys/windows/syscall_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscallC95windows.go
+FileChecksum: SHA1: eb681f3652c4349ede05708c0aeab32edcf07919
+FileChecksum: SHA256: ca562e567f5a493ed4617dbfe804db2e229c5ab4bb261415163984b84a8fcac4
+FileChecksum: SHA512: 2c99d1d804af01e0eda414080212cabc03e10bdcfcbb7f042add6ed2d058df3b57c5528e657d52169d9028e680dad9f86d019fd0e461927e2c5eee31bac80219
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscallC95windows.go
+FileName: vendor/golang.org/x/sys/windows/types_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windows.go
+FileChecksum: SHA1: 8b834b9e974377a4725a1d42843f3ca4bc7e0e38
+FileChecksum: SHA256: fe170ab50efa1aaa307bf3e1d41d66bb6f57f02c33b8212bf5bf8755583dbebb
+FileChecksum: SHA512: 6e536127f1a6f840c5e4d7a82e2cb4d4e53223fd7112037ff2cf5bf562634b2dff221c2b8b5d1aa2d536a714592a65f4b69acb0b05e25ffb66720d444bfed62f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windows.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-service.go
+FileChecksum: SHA1: a126682d154fffdcadffa7faad68f232babb1493
+FileChecksum: SHA256: ddaae837e153a587ae70589add91cfb75c5cb251468238302bedad50a375c9ec
+FileChecksum: SHA512: 24a9674c942e0132ba0cd25174e807caf5c8488e153ce814845d81a5a44b2c18d31996ccab2bdf47dc49b9d6f65d2494f8c4c9c6cb05ab2f7441b211bae5e760
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-service.go
+FileName: vendor/golang.org/x/sys/windows/svc/sys_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95arm.s
+FileChecksum: SHA1: bf05c7141ea16a0cab13e6b4c5c47a4f36839796
+FileChecksum: SHA256: 9ec3d8a5463f4e35021e7f51d53e28615324c2dba126cf5412710c8a56b8ba7c
+FileChecksum: SHA512: bdda832369951173b674ded432497b29b243609709597e2b39e8af39ccccbe881afeaa39a8ebc3c286668682079012761c925497029c1d3c03deaa31c360884d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95arm.s
+FileName: vendor/golang.org/x/sys/windows/types_windows_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95arm.go
+FileChecksum: SHA1: 3c107dc5bf98770e232e68957082f4edacbbe4f1
+FileChecksum: SHA256: e4dade4b688c7dea2a0d89a819d6917f3ab7be2514e462d7eb2fc2052cdc625c
+FileChecksum: SHA512: cdb23cc75756d71090099bb11ebfcd6423c7cd3964162e364ebd6b632414d57f4ec2d80cbcdc5328f94ddd284f6070a7aec6b44dbb9c34bba8c125e79e526210
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95arm.go
+FileName: vendor/golang.org/x/sys/windows/zknownfolderids_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zknownfolderidsC95windows.go
+FileChecksum: SHA1: aac1a33e936a6f37039017ff09f3aecf75041bca
+FileChecksum: SHA256: 3815bbaa8adf5400041954decc56e8889eb56eb20bfc30053e7799703af0fc95
+FileChecksum: SHA512: 5f00ea49d6052e8173c685b0d951119839098b75ab78ef2aed78196755d3007b6a25dd5a79407a019b5dc9ce1e76c297e6a4c99ce7ca30d26818522b48f55023
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zknownfolderidsC95windows.go
+FileName: vendor/golang.org/x/sys/windows/types_windows_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95amd64.go
+FileChecksum: SHA1: 60d993369512552dfba790c5ab90571fd4285323
+FileChecksum: SHA256: c375406875cabc6447a9a8ca917eccab2227ea33a17ac3ed02a3a8fca0af8ce1
+FileChecksum: SHA512: ad7c80879c4e21a29d1c8a44f59238f419fdcd5fa4dd02bac0ef034e20dd3c664ae51240fee1e1555155fadb1eb80c1a366336e638ecd47b7e3a4df3df5b802e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95amd64.go
+FileName: vendor/golang.org/x/term/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-AUTHORS
+FileName: vendor/golang.org/x/term/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTING.md
+FileChecksum: SHA1: 9b74d788ee920c4a230b46d3e74714da15462d0e
+FileChecksum: SHA256: 6f509e4bff3be1f056f1d8d5224c5e8eefd61fdf62c57fb1d0c8c6ce369e56e4
+FileChecksum: SHA512: aa9b1028732a658cc51c8ca77378fad73fd5de89cec067aed8cc39ce12075ab4a85f1e7490b2ce5b81b5c1b95e00ed435ff7ffa19356fa8c4ff1719ef4be67a1
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTING.md
+FileName: vendor/golang.org/x/term/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTORS
+FileName: vendor/golang.org/x/sys/windows/types_windows_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95386.go
+FileChecksum: SHA1: 0f929877d2068f4b5b41baa9e9c5e95350c08c8f
+FileChecksum: SHA256: 02d259fd40882f68a35913b0c1d3320054804d92a4a7a4e6b86b1816c1b90258
+FileChecksum: SHA512: 43baa3e300126538e0f25e4acf893ecec028d50f0629b4df682185e6be3d32fa2900adb547eb391986156d6524d6de4e6836653431e8b21da2289c19206a7c0b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95386.go
+FileName: vendor/golang.org/x/term/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-PATENTS
+FileName: vendor/golang.org/x/sys/windows/zsyscall_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zsyscallC95windows.go
+FileChecksum: SHA1: 7ce5e950790e6963f32ba915a007c059f4cc72b8
+FileChecksum: SHA256: a9214631fbb4075a950f2ad58595573c9413ad9316a5cf1b04f076546244a289
+FileChecksum: SHA512: 8e886b071ca87c7ac1ac43af3ef9ccf194275a41c009ad4fb424c70508984d096814b42871b195902f4451f92bac27275d26dae477de078c958fb2f997aa5cfa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zsyscallC95windows.go
+FileName: vendor/golang.org/x/term/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-README.md
+FileChecksum: SHA1: 80e42defd262b25d2231ec2f16f5e0d8dab245ac
+FileChecksum: SHA256: dc6056ecb2f38bbecf042329bb70f3798834411bd8851bcf9434876f9b7e1c49
+FileChecksum: SHA512: 965619fb7ac342a5107e02bba0fab5bf5489eb5862d984dcfa1b48b50a3835cd340a430ade4d184a51d53c3647ac647422f7e39ba10df32d937f0c9fe29cbe57
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-README.md
+FileName: vendor/golang.org/x/term/term.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-term.go
+FileChecksum: SHA1: 1b645878fc30cc576a74d815ce42d1477c8c2713
+FileChecksum: SHA256: f5c204ae48e92fbc77604dc5e47448fccae46f92ed7297784be76a76f9bfe2b2
+FileChecksum: SHA512: 5cb55ce1b44151e034245d6b70d0167a1b16ba113f38352cea19d46b25510c2c345500766a2bd5f19c45b287a18a19a44d5051029b04188ecd389d11bc6d9f85
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-term.go
+FileName: vendor/golang.org/x/term/term_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95plan9.go
+FileChecksum: SHA1: d701d03fd7adfafc43fa7cbae4051e2ed128f7a0
+FileChecksum: SHA256: d2317483f1077eaab2f6a33c1b31704cb072fbdad75b5bca67aac8f0a8dd175e
+FileChecksum: SHA512: 3cd4a7f57c795eff18565e623159a4f28eb636c01257298ede53535499f16fb83b45b6d77a6c154763b06022c0156c03a4f3e81500d9204f5c83f3a020575635
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95plan9.go
+FileName: vendor/golang.org/x/term/term_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95solaris.go
+FileChecksum: SHA1: bcb179176cae96143cc740425d281648828341d3
+FileChecksum: SHA256: 1766d8547f1aed10b595b463e801aad012f976576de2ab39c6e8634a65bb7d8a
+FileChecksum: SHA512: b7131816a27922e79310cce16f570d6b6da87f459806a942dae949528fa8599c54f2aed44bf767af22c42b361fd1ed91121a52c2da942ca73a29aa87ac9ac6b0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95solaris.go
+FileName: vendor/golang.org/x/term/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-LICENSE
+FileName: vendor/golang.org/x/term/term_unix_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95bsd.go
+FileChecksum: SHA1: 70a2d632541f61fd028a406b78d032feddfeb8e0
+FileChecksum: SHA256: 8c4aec715810b3ca0880a43b6fc2ec3adadb009e0f0379c05fcfce963f818457
+FileChecksum: SHA512: a097ff3cf5ddd77f53a8e6d0818e0f663ded778c3e681d4890cca7bd1975e99f144969f68a62afcc569f9c00551ae7ef1ce41c687d6437a774c968ac6e3705e2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95bsd.go
+FileName: vendor/golang.org/x/term/term_unix_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95linux.go
+FileChecksum: SHA1: 6f221a088fd57e795ec49d9630a5878704580548
+FileChecksum: SHA256: 1b97cc798b7ffe742de08f1478ed0138b003287299b894b34010c2fa3edbfee5
+FileChecksum: SHA512: 1123b92621c05e37fecd43d7fbf9c55e2b72990eaa8abf3e3fad055d84be6ce9e90e4e1019d4f0f6d65d9d21ba264cb92aef1f21ce077eda748a9ad82ad8682a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95linux.go
+FileName: vendor/golang.org/x/term/term_unix_zos.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95zos.go
+FileChecksum: SHA1: 9e1922a35001441a9fb84da147c9aee212bc3d4d
+FileChecksum: SHA256: ff5557e699c9fdd35d48cc9f396abc5947a269f68c7052ceedc49d6d55d08c33
+FileChecksum: SHA512: 3bd241e6aa0c4df850439f53308ddecaa5feb2a1a7345880d024d2218d41f83ff216593a8b16344966bf5969b79e6d8f86b9e92729d6b1f21ae1c758a8461ee5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95zos.go
+FileName: vendor/golang.org/x/term/term_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unix.go
+FileChecksum: SHA1: a8bc1dbf078b349ec575f420593ec5e2b50591f2
+FileChecksum: SHA256: be81eb889875801a27c1b038de4d021762ba30be7d274503b9bb2b15bfed1f42
+FileChecksum: SHA512: e463ce9934e3e05ce794acba63c6d7cd60df71a2880af51881e451b038a2605380ea47114d94b63ce0e1a3899da086b500037265f87002623fdbff6b63ca0b37
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unix.go
+FileName: vendor/golang.org/x/term/term_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95windows.go
+FileChecksum: SHA1: 9f4518b934cc971e0a13d0ebc9200f55e970fa98
+FileChecksum: SHA256: e1d8fbef7e3e5c93700cd15cacd44bed66aaea51b72e70da3eb50655e7018f20
+FileChecksum: SHA512: 327862807243386e79a6530292ce8566b174e0cbb17226cf97003e1dfdb160a3330cb53a318067d5db22552ed2c91231abe59aa917ce4eafcc18397adb8d20ba
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95windows.go
+FileName: vendor/golang.org/x/term/term_unix_aix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95aix.go
+FileChecksum: SHA1: 6f221a088fd57e795ec49d9630a5878704580548
+FileChecksum: SHA256: 1b97cc798b7ffe742de08f1478ed0138b003287299b894b34010c2fa3edbfee5
+FileChecksum: SHA512: 1123b92621c05e37fecd43d7fbf9c55e2b72990eaa8abf3e3fad055d84be6ce9e90e4e1019d4f0f6d65d9d21ba264cb92aef1f21ce077eda748a9ad82ad8682a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95aix.go
+FileName: vendor/golang.org/x/term/terminal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-terminal.go
+FileChecksum: SHA1: 5c6d03311df4df1d16255a94a1cd593ac541a07b
+FileChecksum: SHA256: 83876d06e519d375e298b9b9b72fa5996402925b521ab6f5e364d00d49786352
+FileChecksum: SHA512: 4e6ec4c993bbd2d5606ec512fcc476803a76ae74fe45d5a98bb0a7fd30720f39ad3039228c22e256fc96d97df9a32a625098a7c750d5cf0c063634bdadc4f118
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-terminal.go
+FileName: vendor/golang.org/x/text/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-CONTRIBUTORS
+FileName: vendor/golang.org/x/term/term_unsupported.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unsupported.go
+FileChecksum: SHA1: 3e3f12dcd55a87b2099ae01bf97907a15ce2a66f
+FileChecksum: SHA256: ee08bec9a60fee72932ff6ad0987cc3e7fc833b85dcb4b387d635df9da881ccb
+FileChecksum: SHA512: 3a122c6d484f055246938c2260866b9c10874837d28d43f89abe07a6a8c111f8804edcf38102ff44fba9819c939ede22bf83f93c939f885b1eebf3a20747dc56
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unsupported.go
+FileName: vendor/golang.org/x/text/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-LICENSE
+FileName: vendor/golang.org/x/sys/windows/zerrors_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zerrorsC95windows.go
+FileChecksum: SHA1: fe933b6c458b02a0b25865a6e8401e412b3d160a
+FileChecksum: SHA256: 7e8a3410b5b555b95f5fe31a52c32aff856bbd8ec3980ede5eb6195aa1e428e8
+FileChecksum: SHA512: 1cb80aff565572116c595f383f8670a41e395724562689c05a3d48772fac09e8419f98b1213fde82171506b0ce2976cc7f65445dcc5911bd6ed1220d47bb6645
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zerrorsC95windows.go
+FileName: vendor/golang.org/x/text/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-AUTHORS
+FileName: vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule10.0.0.go
+FileChecksum: SHA1: a0c100c5fb2f44b5ef9c7a3fb1f1a8a14dab6045
+FileChecksum: SHA256: 2d8bf3b869ce1cd76417e6bb02d54bb26fe6e170485ff7519bebaefb8dc0210e
+FileChecksum: SHA512: 5407df8d83243e450694ed43f1fe98d1b4e53ac1cad12df9bec09b2909a560f5394153beaa5929dfca34d9eb18d3218c1545b1f1fa26b0582517903ee3df28f2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule10.0.0.go
+FileName: vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule9.0.0.go
+FileChecksum: SHA1: 4a0fb3c739c72bd34771fc112e6863ca4fd48100
+FileChecksum: SHA256: f77822027a5728e6cd742a132ad29afc33b37c42ad30d791f9ec906988a680b8
+FileChecksum: SHA512: 2347c3235ec858f963321150cb5a05fe9a2e6d46b39ad42f1e3affd22f93132573fcb5d7bc2832d9c8c952a4580d2e9a60d1c2a58c18879a2a1b9ecfa5118b03
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule9.0.0.go
+FileName: vendor/golang.org/x/text/transform/transform.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-transform-transform.go
+FileChecksum: SHA1: b64b143bd0de4a866b18bc4cfd29b50ffc86af74
+FileChecksum: SHA256: 7716301e210f42b764ec78f4adffb05075f1d5103446a40b8a38043f5a7abd88
+FileChecksum: SHA512: 7574d7534190c3b3bd9554bf46c83da9adf98497553e64bed832eaefa38b8199648c5bb66d205193cc0000fc1298d6cc8e66b2ab43188f51c192d98257d550e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-transform-transform.go
+FileName: vendor/golang.org/x/text/unicode/bidi/bidi.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bidi.go
+FileChecksum: SHA1: cb8318cb564d15624b007e2e209c1c7c3a46e445
+FileChecksum: SHA256: f1c6f1e2261041560e30747c9a1c25313f7dff9fcd5772a6c261915aa70f00a2
+FileChecksum: SHA512: a0365b33af605a091637b98bfeca210192e43776cb65dd4aa61c1a9a3768e6bdd870030c37385374c5f176c32459d057d883bc68370a56c9ae8511939bff556b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bidi.go
+FileName: vendor/golang.org/x/text/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-PATENTS
+FileName: vendor/golang.org/x/text/secure/bidirule/bidirule.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule.go
+FileChecksum: SHA1: 061c4e451018f5b19bb91d334a3e73ed510b6b27
+FileChecksum: SHA256: 93ef75e5b5e4db48b975d5cea783612062377761c918e658a612adb3b7753f21
+FileChecksum: SHA512: 8107275865c2f018390ea6a21689a30a4ed64c0283bbcbfa3544eace2295d3be1b8ff86244cbe6dd2b4e29cea4eb0d06ba1f399a5a06063dae935ce4c109c89e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule.go
+FileName: vendor/golang.org/x/text/unicode/bidi/bracket.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bracket.go
+FileChecksum: SHA1: 02c68165f0fd75bcae96a4a45152271e985841ce
+FileChecksum: SHA256: 5caa24f9c4e04a54d18875468f976b4b7c09c8700e88286f2fd96828f134107e
+FileChecksum: SHA512: 50742ff084a9ca2b9ec94d70fccf47d348d6e6dd62d26d77315f4657d23473b028edca47141002f3b7bec353cb28a13380445f7f8d6a684ec0791c3d6a5316fb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bracket.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables10.0.0.go
+FileChecksum: SHA1: 7946c00270b6dfe6c225b2589603a1b6272967cc
+FileChecksum: SHA256: 503f1dac71a22a001f19b122b7251e505e76a10a9e64779a904cbde4aeca5f14
+FileChecksum: SHA512: 56204285dc7fa380bf4fd0c62257cdcf59b108cc3ff7f2e6705e59a8d3d2f8852a62747ea7332b03c903f1a53a564370b9c465bc312248bb41e6488c2f019b3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables10.0.0.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables11.0.0.go
+FileChecksum: SHA1: b29fd4bd1e1cb3fb0bf4c8c97d24dc08eb1c564a
+FileChecksum: SHA256: aa1183dd484b9634964a047433eb2bb75c089702f90fe84a397c230b5900f62a
+FileChecksum: SHA512: d39ddf4e8cae5d038311924cbc4e16af937732f16022092923412153185ebb48a33da78cd51d285cedf3c91f6f24bdb80ddda77a0d401eb10ae57e5e5e8a0e74
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables11.0.0.go
+FileName: vendor/golang.org/x/text/unicode/bidi/prop.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-prop.go
+FileChecksum: SHA1: d6db596f11903b700f29808f8e9a34b1c055d061
+FileChecksum: SHA256: f6391b2f69a1ae2a0ac1f0599a90b260ec350a19f73ad5d6572660100b5950bc
+FileChecksum: SHA512: c235884a6a761c8cef969fcc16fb4494a1c4afd758545c97d4ba8b8f16467e3bdc8623e212db0acf5307f0506cc89c4de44e6d6dafc5e5f7f198627108b224f3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-prop.go
+FileName: vendor/golang.org/x/text/unicode/bidi/trieval.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-trieval.go
+FileChecksum: SHA1: b253888a551ac1d9d32ef5964044241be971c30a
+FileChecksum: SHA256: c05303e6fb896826645d38c3f5ebe5a4f284450b87a899f67638f74310ef7807
+FileChecksum: SHA512: c0e1f36d7a902e56fc0ac57910361d0502ba0db4102b6a43b63b68b684d80ef44925a9467bf84b00d895e843d065c6ff5d6dcaba0836d1a5da7150920efcc903
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-trieval.go
+FileName: vendor/golang.org/x/text/unicode/norm/composition.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-composition.go
+FileChecksum: SHA1: baa60e49f7e4d41b5d5502c48f361eb734fe3907
+FileChecksum: SHA256: 3d1be52960f2693926472819b747646e7d2371d2bb5f53097cf9d46c913052df
+FileChecksum: SHA512: 6a1398a85461e7eabf575007239019a6eaf6ec7e7cd2ded09f1cada1252c58a55302491a0e1ca6bdf0ee51a3be316c0ef82e477e6726bcd9b6c194bbd63a3dae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-composition.go
+FileName: vendor/golang.org/x/text/unicode/bidi/core.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-core.go
+FileChecksum: SHA1: 4ac871bb1a1e6be2c7f083f59328428228bdbba4
+FileChecksum: SHA256: 0343fdcaa06a771e32374a31a826fbb9daf0ef3847e63de110d1bf637b3aaa6f
+FileChecksum: SHA512: 4196926e39c9ec33a104d870ba524373662426d9f7296588e780cdf73f9bf2930e5e00529ff56343413d68079f489a3da80dc8bb7bec6cbd1cc65153e9aa8aea
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-core.go
+FileName: vendor/golang.org/x/text/unicode/norm/input.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-input.go
+FileChecksum: SHA1: c0f3107583d060c2a4f08bcdf73264f8862185ea
+FileChecksum: SHA256: 965b431790bb139543d71a9c497920ef7d9a15af417456a2bbd0cdb629330e8d
+FileChecksum: SHA512: 56302c6e1f63f4594a28793f55faec455764f541685c1e7606ace42f2dbc0d90f72cedc398731dd83185773966c75b9e5dd4f3e9684503ee62993cfe145a9114
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-input.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables12.0.0.go
+FileChecksum: SHA1: 2c530334ffe8b90337a5a3a478a02bbf89913a20
+FileChecksum: SHA256: c1e4de3f02fd06440ecf4b7a1eaef9f76a61b0691e6f75d379114826f1362c82
+FileChecksum: SHA512: b71e6070d8a4543be8c4c6bd3d777a85dd0be9093921c4a7e0208e6572ef2955bc65cef7fe31e80620bb4a6347cd4e14acfbb6aa58d15eb834ce0c5de404f567
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables12.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/iter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-iter.go
+FileChecksum: SHA1: 2d448fa0fb84411bc6e19931ccd948e49e41f1bf
+FileChecksum: SHA256: 16a40d326f9b37c5430a18894f718007728ce8324afb08d8c0a17ce7289714b0
+FileChecksum: SHA512: 9f6b374ba35ba57a9ea69f9a03d3d4e6d606d1d0651935fcaece4fcbf458911e343550cb303f923d56c80c979c0b8d8e64e48e906b3ad4cc20ab00b282d20913
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-iter.go
+FileName: vendor/golang.org/x/text/unicode/norm/normalize.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-normalize.go
+FileChecksum: SHA1: fa19fc432cc913315da023de4dec64c61e1dc25f
+FileChecksum: SHA256: 0eddfc82ef448e108e85db6be3a7969f6fe464726a11807bd6066702d81fb92e
+FileChecksum: SHA512: ce0ecccdfa27da8aaa0994fa2e6fab5b5a31c871bed14fb0d1525b8d8221a07048f644030785a43e0a58d4a8f93a93884226e24519449d4cf22c6136644fa37c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-normalize.go
+FileName: vendor/golang.org/x/text/unicode/norm/readwriter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-readwriter.go
+FileChecksum: SHA1: 22fc95ce71255d6959293a4ef70fab1631433647
+FileChecksum: SHA256: d600d1f6cff2536dbb49a0f6bb8c06f6fc05f2754dad2dc05f1d44f9e8e48a35
+FileChecksum: SHA512: 7cbfc63410333ae33b8c864d35f98f70544f277081cc05535c6420bfa3d6f5e3a1c57bcd91b2403ae1f72a1404467a6c63eed5efe1b45419b22d4593694c94ea
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-readwriter.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables9.0.0.go
+FileChecksum: SHA1: 9afb58cc69562f651135ecfb00dd47cef12c8060
+FileChecksum: SHA256: 18dc2618e483e18d2319f12e8faacf0b0e55b093f69a3d8ddd0d7dadff961def
+FileChecksum: SHA512: 0514211cf0d59f0ac89dfa063339ea3739de5c04222dda9f04aa7b9e77d1920376eeb735f2b4e671ca16340acfd0b6cef1e3584bf909f3d826bfe458931772c1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables9.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/forminfo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-forminfo.go
+FileChecksum: SHA1: 23b8d97db1e5a8c2c8157571a10b7d564567f9c4
+FileChecksum: SHA256: b831b829a79b47f18ec401d3e2a62ce35dcae81ab171f41b55d2158d8d8aebb0
+FileChecksum: SHA512: d1bc17b406aa27f922241d30d6454f7288bb60f3b05f29cf4ed3d0da1c08bc59f719139fd0ca1e3835882eca28798bce683a6b7800e9c2b4916788e9e87402c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-forminfo.go
+FileName: vendor/golang.org/x/text/unicode/norm/tables11.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables11.0.0.go
+FileChecksum: SHA1: 42a79a8de252d0999bd7a549914954399041dbe2
+FileChecksum: SHA256: 19da18bd18ffd59ec4e4b0e488823b4cc24da40180353fdf357479d01c9ac5cc
+FileChecksum: SHA512: 13877980c6f2ad27da96d367a5a5c1e35bf6b9c2995f7e073a4fe1ed1f09855299eb5a9e0f734c4b95eaeb4961d96f34a6885863208d8882e55f6b6bf0324ebf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables11.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/tables10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables10.0.0.go
+FileChecksum: SHA1: 341cd04184dabd1bf4125289423aff07b1fabcc8
+FileChecksum: SHA256: 3cbcc89df18775b46c603a75541701b037763113c1e2e128742577a21b2a1d3f
+FileChecksum: SHA512: 71a85a672cc7589c5e347df6aa1695730d40615833b69cc6c889662b65c1263be9785e962e07b106d7f8a97e3a919e940b666d4b9ee700a9abda137b22586988
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables10.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/transform.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-transform.go
+FileChecksum: SHA1: 8d2453a461aceaa8ec6a287e478efe806b8211e9
+FileChecksum: SHA256: 6f8014595643e2acae76d47ed6abe8ace969a0c9070dbfa5a89c86bebcec812d
+FileChecksum: SHA512: b4c63084ccf822f30bd62cd8ce274f3e4271afbda07ae01fa31b4785635dabc5c1730e36c18027db438e73cd214df2152fc21f9c2d290b5fa38d5d94c1161043
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-transform.go
+FileName: vendor/golang.org/x/text/unicode/norm/tables9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables9.0.0.go
+FileChecksum: SHA1: fe5c97c28516ea4ded682a460081256a5f7733d2
+FileChecksum: SHA256: ded58558f8b4f57faca8ced746791893e9d2ebea91a1c65549b262c47f2fb172
+FileChecksum: SHA512: a4dd3e856df61bdf74b939bb3a7eece063455d2f1609c6c9332b0bebf2c40edee118e62e85ea71f10f5c73e92b4728c39af9632817c9fc3b17f29a20b5ae0363
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables9.0.0.go
+FileName: vendor/google.golang.org/genproto/googleapis/rpc/status/status.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-googleapis-rpc-status-status.pb.go
+FileChecksum: SHA1: 39fcace7a6f5277f91cac00dd686a53b1d94bf2b
+FileChecksum: SHA256: 4f58c41015ff946dbabae152d0e743635f3fc69cce09711a74547617174ee3d8
+FileChecksum: SHA512: dba72ae3b546bc4c6cdd13528a300d4cba75c7ad0e033b20a88ce4813c5f0c1bd0b458988839ec10ea1e51907ae223af748ef320108425f15a9274fcd1ae82a9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-googleapis-rpc-status-status.pb.go
+FileName: vendor/google.golang.org/genproto/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-LICENSE
+FileChecksum: SHA1: 2b8b815229aa8a61e483fb4ba0588b8b6c491890
+FileChecksum: SHA256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30
+FileChecksum: SHA512: 98f6b79b778f7b0a15415bd750c3a8a097d650511cb4ec8115188e115c47053fe700f578895c097051c9bc3dfb6197c2b13a15de203273e1a3218884f86e90e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-LICENSE
+FileName: vendor/google.golang.org/grpc/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-.travis.yml
+FileChecksum: SHA1: 57ba5e324cabcf41f10d82a51ac81418b75ecd56
+FileChecksum: SHA256: 4137d59239d482e9ae69ef8b8d5251eee6397187b4f13d954ddf3f5e5254e2c3
+FileChecksum: SHA512: 066fc071fc2310941a35ef0ebe02b062be57e01f370013a0c0c840b92cee50473847a62cb63a4bac3bc08744c22aadb87dbee8d950d622918df7bbf9a2f9c254
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-.travis.yml
+FileName: vendor/google.golang.org/grpc/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-AUTHORS
+FileChecksum: SHA1: 5165eaa04f21ebe576cccb7a7cafa5d3ed6be1df
+FileChecksum: SHA256: 627c695f80fdac6412d66e6ad4160a4acb41923ca7ee3fd7e112e105f0ff46b9
+FileChecksum: SHA512: e9122b592a763796c5f8e86abefbc829ae80ac8ffc886a219cb2c7f7cd0505ccfc6525f0474b08cf8ac9f35be93ffc82e1871e077452482e5a5558d9a9dfe698
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-AUTHORS
+FileName: vendor/google.golang.org/grpc/CODE-OF-CONDUCT.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CODE-OF-CONDUCT.md
+FileChecksum: SHA1: cce47ae9353087cd1a9c6993696ff1c25f0e8068
+FileChecksum: SHA256: 4fcdab8c8ca45051e248fe4ce3dbd9ea9155cc8f406cf9ec9770b6e5818fbc45
+FileChecksum: SHA512: de19b2cb3f85b1eb155052a94ba34629326df90c62e776b15f0941dbef8507a5673aa272460ecf46ad054d19e2523f155fd0a3286da83947a9706f23b92d05ef
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CODE-OF-CONDUCT.md
+FileName: vendor/google.golang.org/grpc/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CONTRIBUTING.md
+FileChecksum: SHA1: c0f9adb786f46093b19dbbec3fee9896c7402467
+FileChecksum: SHA256: 994155a28a77b58a3af3adcc9408ac8891084cb9bc1166ea863fc75a5871fdc4
+FileChecksum: SHA512: 395360bc318db241023f8b870182d01bce450094a68ccc1614d3ca90ede2e650760b9c8e3e3c1812de557ab0568df52ca0be834e863973615a7fd0bce9dd94d0
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CONTRIBUTING.md
+FileName: vendor/google.golang.org/grpc/GOVERNANCE.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-GOVERNANCE.md
+FileChecksum: SHA1: 9bad58b1f7f31e6ccb036ce9797c5e3d9540d596
+FileChecksum: SHA256: ce4685b7bfbbd256299aeb74c7396f963aa4885094bdaf62f025c0948659314b
+FileChecksum: SHA512: f935fd28b7b54bd17b760457f7ed0704ce9f981263fe63f916b50a04cbfb9485d9a6922fe083b5511c971af342342832abf7e6836a423b41c9070420757861ac
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-GOVERNANCE.md
+FileName: vendor/google.golang.org/grpc/MAINTAINERS.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-MAINTAINERS.md
+FileChecksum: SHA1: 06ad8e449879db1a6a2a1961aa66fbfd73a83ece
+FileChecksum: SHA256: 1ebdda6fd307486a9232591b31ec8bf6a2eba1bbcfbd96e967f8f4293b4200bd
+FileChecksum: SHA512: 978310e728981f8cc761417c1672b392d1b469756218a54fd4f4dc97de7b34a5936bc655c038a80900a4eab945159ad5280ae15eba9033408701710451857265
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-MAINTAINERS.md
+FileName: vendor/google.golang.org/grpc/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-LICENSE
+FileChecksum: SHA1: 2b8b815229aa8a61e483fb4ba0588b8b6c491890
+FileChecksum: SHA256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30
+FileChecksum: SHA512: 98f6b79b778f7b0a15415bd750c3a8a097d650511cb4ec8115188e115c47053fe700f578895c097051c9bc3dfb6197c2b13a15de203273e1a3218884f86e90e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-LICENSE
+FileName: vendor/golang.org/x/text/unicode/norm/tables12.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables12.0.0.go
+FileChecksum: SHA1: 8c99ca6817a7870a57e38cae0f0079f8262e7b2f
+FileChecksum: SHA256: 5973818052a654983eb8fa540fd5a22c00092ada84e572e96f7d14739ba76301
+FileChecksum: SHA512: 9c1d3da42939918953e3ba2297e390adcd6311635f5e19b012b50439e76b70dd774f085b4e67b92aaa3fd0e2cd1ab196dbc76afed84c17947b3b911c9f9e479b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables12.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/trie.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-trie.go
+FileChecksum: SHA1: 4c06ba84cb28e93069f73758a64ad5be449c0bd1
+FileChecksum: SHA256: 4ea42392d710be96fd3275f672326293e8c801156ef558c11030f9cb7f0c86da
+FileChecksum: SHA512: 0761b755da2cddac9dde4d43160e0c401b7e78e8cacc893e8a0565e81085a679178750d72ccde8a7932251736271c15cdd20bbf12e893767274b395e3bfdd946
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-trie.go
+FileName: vendor/google.golang.org/grpc/backoff/backoff.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff-backoff.go
+FileChecksum: SHA1: 2b196480da6586f8f35de339c5d7e4c6b14b0974
+FileChecksum: SHA256: d26dd968b8efbc07ac8a08c8a236c94923182f3279a9fdf8d9f2187f66e5815c
+FileChecksum: SHA512: 234ffc7781e4c7b366bfc1de4ac23cb562b8edd0446ad6b3a07827a935054f04dca1d1d85fd501069afb33ae1c85273883b1be6152a80125ce2f93c2eeba0c8b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff-backoff.go
+FileName: vendor/google.golang.org/grpc/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-Makefile
+FileChecksum: SHA1: cc66830d3e018c64f1e9934b7ac489fb2979bbe4
+FileChecksum: SHA256: 8a732300a3939712929e2da79a0b14bc609bbc595bf85b7d14e04d2fe0314bab
+FileChecksum: SHA512: fd2369a6a81028e32c15414d42ebbca124c858c45e5e17b100470ebd57f2759f80ddf0b87e2f2d5f34b8b309aedb455005595c18018c78ba7e549ec6b2bdd1e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-Makefile
+FileName: vendor/google.golang.org/grpc/backoff.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff.go
+FileChecksum: SHA1: f5f1b3ae9fbfbf7a6c87ebf9d817479f831ea309
+FileChecksum: SHA256: b8c0dc7204d6e01e896bf3e1cd8352ce47dcf58fb73a60ac49654f2c08dcb041
+FileChecksum: SHA512: 297ee0d687317901270c4e15712bddd3433d9b08a927b5a0e75f16fbaf765be7e3e1acdfd1e864686bda90c6bede249865c3b05a666358c9ca0c3971f4ea8d48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff.go
+FileName: vendor/google.golang.org/grpc/balancer/balancer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-balancer.go
+FileChecksum: SHA1: 5503f9ac4da8c33554c4ec3e19c606643e07b764
+FileChecksum: SHA256: 40494f29d7581e70306c50f0c1d6b409952183141ecf6dc2a0cd889a54928462
+FileChecksum: SHA512: b5d49b702d69e3bf9e6513c35f761f181d72e99ca59cec81e7e6ac1cab4aabeb46e2c02b49943c69800416eadcca5fc0a2660289cbae8c36cd1cfeeee826a848
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-balancer.go
+FileName: vendor/google.golang.org/grpc/attributes/attributes.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-attributes-attributes.go
+FileChecksum: SHA1: 5a09299d7838cd6f1c4fc63ab721beaedbe6e2fc
+FileChecksum: SHA256: 966412e8572d661ce846b77fea340be2e5cfd931e19e5c1b6affca8059b30290
+FileChecksum: SHA512: 1899cb1228b8e2b8febd4aadf3fe2ebff47cf0857af365df142d003e03f8ceb8f04fef18cd33d863c41de4d454e596617aaf66228a4c1f1ca61ea4f17004ee08
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-attributes-attributes.go
+FileName: vendor/google.golang.org/grpc/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-README.md
+FileChecksum: SHA1: 3c1e4e217ea36c57f1527e4360d61b66b2e35d01
+FileChecksum: SHA256: 0b258803cedaef03c3740a49519eb2efbdf9e5c4bda910f519f02bc9fe69dd46
+FileChecksum: SHA512: 0a31f1b11b1b7acadcfe004095780491aba428dedc5c25ff7f5af503e7681d44d61700be9f294665ff5f385bb6b3fdd90d2f0f77c19a4d480a4c3917e4026e01
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-README.md
+FileName: vendor/google.golang.org/grpc/balancer/grpclb/state/state.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-grpclb-state-state.go
+FileChecksum: SHA1: 4b96c02430ce59a6e8fc90d3933b2baea557a704
+FileChecksum: SHA256: 7447144585bd37c687d70841c3a7dac38eb1c5997c6f13be222818d55a9f72b4
+FileChecksum: SHA512: 3acb315027ae893bba00c182a465e5ff67a7cfe4d71e4bd0b99c221d5b90d709e37daa6364d8c2f129626c1488c232f52dbdf87aa26efb1578e775b50c00ca0c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-grpclb-state-state.go
+FileName: vendor/google.golang.org/grpc/balancer/roundrobin/roundrobin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-roundrobin-roundrobin.go
+FileChecksum: SHA1: 149a3daac8332811f25fd607c4af2cdbefca57a1
+FileChecksum: SHA256: 794a9fc90606c41494ec6d260193bbb7ed1220e9965258259044cd2e5d30a822
+FileChecksum: SHA512: 93a98e787cdc6cfb4acaf4f352b4d45c9edbd6febb16916f3a20b8777977e8c1ee864ef1aef87bff64e0abc7deb55c13b7ce1a027da7743c12e16e7772998f50
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-roundrobin-roundrobin.go
+FileName: vendor/google.golang.org/grpc/balancer_conn_wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancerC95connC95wrappers.go
+FileChecksum: SHA1: f581ba0cb5b2aa09ff186e598b0977973266ba6d
+FileChecksum: SHA256: f21f4ea4f9cb433cd461cc4cb1d1234ff82ac380748779b884139f894e9f72ca
+FileChecksum: SHA512: e05f4d8fdcb3cf513a6a3b488419abfa26c71287cdf440175519d48abf8de6e0d7bbd579029152ed3c92fd85aba7d2a575d0e7a60e90cc1b2dcab78eadeecefe
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancerC95connC95wrappers.go
+FileName: vendor/google.golang.org/grpc/call.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-call.go
+FileChecksum: SHA1: 8fb8d9f087e5454d094866d8ff18b4dd79506917
+FileChecksum: SHA256: 5edd8d1326bdddcba418b7382d6342bdf769d816c15d6b12520a1a05323506ce
+FileChecksum: SHA512: 5a7ef144f5abf1af063736ae031d2318f093605efb3d16fc2f64325d17622ca569bc404e8cfc6c68980db4a634c5dc295639a9b032c1041258a682fdf8f44fe3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-call.go
+FileName: vendor/google.golang.org/grpc/balancer/base/base.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-base.go
+FileChecksum: SHA1: b03fe272632298be12e8cd17236ebec849bd0f59
+FileChecksum: SHA256: e222da7aeb4c7341c59bcff314ec7c01b8900d3b2c27b3f1cb6dc5b55839f266
+FileChecksum: SHA512: 5038961111563dd4edb65418d545de69fa03f212ff360dedc0b4e7769e8a6cff786f4a0c622751eba973833300e9723f0b2e3a599492e4257254b2ad34c82ee1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-base.go
+FileName: vendor/google.golang.org/grpc/codec.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codec.go
+FileChecksum: SHA1: 86aa9be9939412affc1f21513bfff3bf57ac00b7
+FileChecksum: SHA256: 628e8e44ab71441b0318d37263a3f5e263660dcddcd2aeba8c1b09b1e74d946f
+FileChecksum: SHA512: c911d31a004b0a992c215d3d7ad2273612fd060222c9f8890b248fba3c218c9fa01fd1b3872f3058c7e03b8ef5d929a88e826c76675982c936e2bdfc1e748183
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codec.go
+FileName: vendor/google.golang.org/grpc/codegen.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codegen.sh
+FileChecksum: SHA1: b9cccbd30d5056c753efc0ae41a16e33926ce0e3
+FileChecksum: SHA256: 102bb98c61afdf98bed837f033de3cf4fe701a8175dee36e1f495479b02442c1
+FileChecksum: SHA512: 5c207b36da3272629d9d88402bca3836239bd3e77c6cb79351a9f3c2346f9c3f996498ad5f34f5baace56f59b401fdd73b40da0bc668565db9ae8765a0fc8de7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codegen.sh
+FileName: vendor/google.golang.org/grpc/binarylog/grpc_binarylog_v1/binarylog.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-binarylog-grpcC95binarylogC95v1-binarylog.pb.go
+FileChecksum: SHA1: 41d195650704ec32665a4976c829e75cf33101af
+FileChecksum: SHA256: 5db98fd5ecada788f9866e953e0ddb3193830b2edfa36b09c7c21e9af59e5ac2
+FileChecksum: SHA512: 8d808df59404ab793ba153262fc79810c4ee9c3c2c8ada13cb61b7439cf2c01aad705ec7d2834c7736ebb2d4c55bad8de737107163cc07b5e54fd28f935ca558
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-binarylog-grpcC95binarylogC95v1-binarylog.pb.go
+FileName: vendor/google.golang.org/grpc/balancer/base/balancer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-balancer.go
+FileChecksum: SHA1: 3c8c38d6d9bab6c53f17a9141d2340c4f24304f0
+FileChecksum: SHA256: f910845bf658e5a5160515d5a870ec4a23ce340bea63955427718d48942881ab
+FileChecksum: SHA512: 7d2c964f675badc1964fe4dc7454f15a04d48ab70b47203e4e6670718a90986bd4c398eac1ecde271af61c7d9dcc971ddc84ba77ea00b89b5b7d47ee31fb5e1e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-balancer.go
+FileName: vendor/google.golang.org/grpc/codes/codes.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codes.go
+FileChecksum: SHA1: 50542f701d0cc5d551fcaf90ed77323a1e243190
+FileChecksum: SHA256: c3f5ce76fec8085dc677754a774a38845c659316e9e0240d1741913968cf8618
+FileChecksum: SHA512: 05b2ab9a33c7f7a5d45438345b001c73593f8e68278a81c80e2c66c2e27898e648bff7d758ae13052202a6a07f326df36bd534f60a21e97e6d038c15b2c6e8e3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codes.go
+FileName: vendor/google.golang.org/grpc/connectivity/connectivity.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-connectivity-connectivity.go
+FileChecksum: SHA1: 40c243f6e2816026efa5411cb6c380c245dd5b99
+FileChecksum: SHA256: 0eb8cfe940c02c0936e3798e6db6ecc91998b4d5ef00d8a175c5157e5b4e9f08
+FileChecksum: SHA512: b04e655c870c5b50aeef709292cc510432d0d994e567d997b47d56ccc32abf1de6c8b6675e948579eeff9f9063afb4f041bf9909b370530f6b77e01a30cb158a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-connectivity-connectivity.go
+FileName: vendor/google.golang.org/grpc/credentials/go12.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-go12.go
+FileChecksum: SHA1: 546818c7e36e7e31a74ffe15f2f73364c7c20827
+FileChecksum: SHA256: 149e7337c88c0927792c359c87f54036f23467daa940d4fce52b34b3f3d58068
+FileChecksum: SHA512: 4f8a8a66bf70ad37c07dc5fc49cc4897bbbc0af9a0a7608131932c7d90ecab3d5ea76741a27daf6e5b2e2300ff8fa35b6ba388b0d364aca344eff8d266ace76e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-go12.go
+FileName: vendor/google.golang.org/grpc/credentials/credentials.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-credentials.go
+FileChecksum: SHA1: d6f39e8ecde7c0c131038498b3d8b8177726c87a
+FileChecksum: SHA256: ef6e0b952900aae74dbaa3275ba61b228405d1b742260473778334a1c1613532
+FileChecksum: SHA512: 4db27debed4540d2eab78a939f3c84aff2a251e4216a10cd11cf6b515d7a868889d1892e0f93d9d7193b774885c3980a8d652754b75f22e6925e356785cd0c5b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-credentials.go
+FileName: vendor/google.golang.org/grpc/credentials/tls.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-tls.go
+FileChecksum: SHA1: 160cb0c1fcac19b39bb1106f3dbbf818e7620cea
+FileChecksum: SHA256: 1a166929b514a7bc053bf712cdcabda18b6f39e4532e19448507d77d3ec40990
+FileChecksum: SHA512: 2977462f1db5ea1a6b18c579401be7c30183d4ba7f3229f47354ab94851d2469e15d8e23661ae48bc72c8ab6e7276dcd79de7a3d4ada9af8dfba4e3d3082ac46
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-tls.go
+FileName: vendor/google.golang.org/grpc/clientconn.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-clientconn.go
+FileChecksum: SHA1: 4cadb8fe34193e238cb60bb64504529c1cf17aa3
+FileChecksum: SHA256: e510530203da651b7fd997ffac3a96f32de78686a4112f8498edfc0e7afdc62c
+FileChecksum: SHA512: 34c34cfe685dcde1bb9dbd24f2983f69a669de6b1b5e4f8ba473dee2555330a4e5587d4bbbd4d851ffbc63aa138947d4b098bbb9778f104be1bf6f8afaadaff2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-clientconn.go
+FileName: vendor/google.golang.org/grpc/encoding/encoding.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-encoding.go
+FileChecksum: SHA1: 54f81bb3ca41986db5e5fd9ad1abb9a4c321328f
+FileChecksum: SHA256: 100133ce64bc4f3a2180201da4b7edb2fb2e3caa592b3e3cdcca4ed8d6899d49
+FileChecksum: SHA512: 7c1175706d0382ee900b5e1d4936a427ef66be98d9ab6eeac658ab0730e6e57ff200e0074f39e736a1d957fa39f35596b3d78d217e3a3b347632cbf33f95481f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-encoding.go
+FileName: vendor/google.golang.org/grpc/codes/code_string.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codeC95string.go
+FileChecksum: SHA1: 94a11747b35c677b2f2adf612fbbd0a9fff0529f
+FileChecksum: SHA256: bd2f6ea0ae1432cad5678e7edb7edfdcc62fc34152cfe1a7d1af928755fed03a
+FileChecksum: SHA512: 76bc4964cd923b2cc985065602f141dc9a132dd13e8ddf5b5740066fca9e6f184d99057a6b1e0d87d841c5c7506b2dc7c9993c56167ff5f715c8658496131d3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codeC95string.go
+FileName: vendor/google.golang.org/grpc/grpclog/component.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-component.go
+FileChecksum: SHA1: 8b0790b72a94b5f1157ca74c81ae6b3b1923fa28
+FileChecksum: SHA256: 791f56afd828994be316d5b88a746a554db601ae8552e9ea97c71b5dedcfc54d
+FileChecksum: SHA512: af21fc72cd06afd846e2166e3a7d8fabbc5e03c48d6a803b24a656748c0f1bae798b28e4a2da044166f91e1a48162c6e609c51a82e6bcff9a5f36707d6019618
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-component.go
+FileName: vendor/google.golang.org/grpc/grpclog/grpclog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-grpclog.go
+FileChecksum: SHA1: 3d1cd2ad6a91d3d980cb4e14b1d4097e935dce0e
+FileChecksum: SHA256: 23a81dc8d636c55e4f5c3ecabccaf0d602d77f8b2b98e77037d6c946c05607b6
+FileChecksum: SHA512: 232b68f5468bfd656e24225dbf0f6a78fe8f2e40984a8a9a63f579000a1a868adef789d78d49d0df20e90d592193513599685764fd3d334542bdde893b484873
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-grpclog.go
+FileName: vendor/google.golang.org/grpc/grpclog/logger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-logger.go
+FileChecksum: SHA1: 81cf0d094f94a121cc6818718f69896087b633c7
+FileChecksum: SHA256: a5f9eafe385618dc63cb7d07a240c7d80301f07badbac8cb2a0ab99b7d9f1f2a
+FileChecksum: SHA512: 1bcc3c48920b17e9021b06254071e6c1132c7f5be1f71213b9fd0cd134c545efc37e7f643dd128b5162822835b12186f01fc5c6d4c51a7dc6682d0ba5e79c636
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-logger.go
+FileName: vendor/google.golang.org/grpc/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-doc.go
+FileChecksum: SHA1: aa90058672478f906e06d52cb9858696caf70f5d
+FileChecksum: SHA256: 4eb6e1fd43b343fe3693219f26461ff95efe2226c7700ffce246d8684eca6470
+FileChecksum: SHA512: 39ad9129d16c1a3a2db16d6504d241b2086ca5d97cc02ff7078ce1e3ee6c4d876b5f1a65a5ea86cb95a0168f7c3db0349e5cce1c91a79f46c8ef9f2c6c413c34
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-doc.go
+FileName: vendor/google.golang.org/grpc/install_gae.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-installC95gae.sh
+FileChecksum: SHA1: 6892d53a577fe9d45c77eed2ec7305fb95640468
+FileChecksum: SHA256: b80b8066f4253fa9b89e27f98581a4a38c0acaab547f0aa73971465d40226681
+FileChecksum: SHA512: f955ad8c0ff9b0f2c15fce1a22a19b84d7c13231635280f508b1f40c6457d9e4ffea628b53aa2688bd56e850734a35a3b364c3609b76d678156148cf861f96c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-installC95gae.sh
+FileName: vendor/google.golang.org/grpc/interceptor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-interceptor.go
+FileChecksum: SHA1: 620264879be7aabaa2f8c164568b0da112384f9b
+FileChecksum: SHA256: f1f4160b8024b39959904f3c982d0180c1cfe7b15f780eb24a0ebf54f99508dd
+FileChecksum: SHA512: ece85d3daa40f9fcfeee6b1ad4ec837309f0ead08274ca536fb95fbd88074038abf043269649b404401843a827830b65b8fb2eab725c5288704bad62ed42de65
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-interceptor.go
+FileName: vendor/google.golang.org/grpc/grpclog/loggerv2.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-loggerv2.go
+FileChecksum: SHA1: 755ee56ecd477e327b73aa45f493dace8eb819c7
+FileChecksum: SHA256: e3b74a1c93f07379572166c533d9594e7e1049f942ede3f1cb0bcf6749c70e51
+FileChecksum: SHA512: 5ef33ec95f9671c6d702d31a3ad396b4e08381c4ac958fb7220bfa82808aa289f830f6d92bf1ea5df2f593c093c08d3fd4114dd5778bc93c5132ebf5f8e6b25e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-loggerv2.go
+FileName: vendor/google.golang.org/grpc/internal/backoff/backoff.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-backoff-backoff.go
+FileChecksum: SHA1: 3073067c90b3d953975936d6388b27dfeb358df4
+FileChecksum: SHA256: 4b13e7d5008c1fdbaa4f1b3b93f7ca64a5ada160eb8cee56b217dce6cf30a3ea
+FileChecksum: SHA512: ec0786ced5c0493bb68a5e5cceb7b6a21273b4fb11aa23f5c56c6adcc06c40a9e002390e32b0d2a37fe0e6334db79eec8c7e96dade0205b3241f269457a04819
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-backoff-backoff.go
+FileName: vendor/google.golang.org/grpc/internal/balancerload/load.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-balancerload-load.go
+FileChecksum: SHA1: ea3f04f141c0765d39a8aa10a288a6b14056acf0
+FileChecksum: SHA256: bd4572c51584f1fe5fb0013f3bc75276857fd70e54d879b76984afd20a4e1088
+FileChecksum: SHA512: d41f16ce7f722f256e74173091b365fed28d28e8381bcd7b1adeb7c24db1ba5d31ed02831d2062c81fcdc454bfc68f0444d599adb175e6458533815f6b8bab7c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-balancerload-load.go
+FileName: vendor/google.golang.org/grpc/dialoptions.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-dialoptions.go
+FileChecksum: SHA1: 26ff23b5cbb6a322e9a924fe53768a101a2cdc6b
+FileChecksum: SHA256: c83b9a8537064a2de502bc6bb012ba33e92a101f1833c53a0031407ffed8b3c3
+FileChecksum: SHA512: f358418537fdb6dad0f7e2899238a87c0375d1537d370dac50d98bb5df2b3b04c3c92193128ccc45b38b0543619a93f4ae4546b2ae3261b259214e2724990098
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-dialoptions.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/binarylog_testutil.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylogC95testutil.go
+FileChecksum: SHA1: a982925475dea5c9543c823df9ce4659cfee7d71
+FileChecksum: SHA256: 0490bfd3780ebf38e67f9b2c297759708f2f67b91a6db40b27baefa85efc258e
+FileChecksum: SHA512: e1f66d44eb9b2f7d77e53677139058d7fd6b0e1c93756299367a842279960728ab0ceb82fd955727ca81cb042111cca40d477342397fcb6ba8d307ac29f9e448
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylogC95testutil.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/env_config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-envC95config.go
+FileChecksum: SHA1: cfa4d1e61614641ba17d492d195bd0a1ae7dd9a8
+FileChecksum: SHA256: 8e55916d6ca93cf07dbaa76842a41e2ae5fd3a1ab1a2085c4f0eefd57299b097
+FileChecksum: SHA512: e2bcc1033a3449f47eaa113225f8bbfddfec28d7af5dde24dda6f26b9c1ace5873697c1d0046a75132cec9c4bd0a1799d8ccc87f332c8c05efb5015586290073
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-envC95config.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/sink.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-sink.go
+FileChecksum: SHA1: 9e875ccfa399ddc819e620c6c05c0fb64b22f5ad
+FileChecksum: SHA256: 4f275e3631b1ef69f994cca1f8024da9f9f539451d09fa97a8c429277789d423
+FileChecksum: SHA512: ab7d4c7fe74612a4017ea7af86a80e83875dd780d286b66b9430511a061f545d3af4c01413f9579f466dd075c0d14e89ecb1497a6a9fd9dec486bbd430979376
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-sink.go
+FileName: vendor/google.golang.org/grpc/encoding/proto/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-proto-proto.go
+FileChecksum: SHA1: 10a443d9b0012604cff76a65d741f518a429f361
+FileChecksum: SHA256: 6dc6b77dfa0194fce97afa03266fe582eaac8e8f4910600d3aaa2bb0cac938ac
+FileChecksum: SHA512: 3d13956f71c74181948a0c104241273fdc5e3be3368c375cecab163a29f7218c7aab52cb5053d30851b427ec9f9676ecd44e33ee749ec87cc345754017daec22
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-proto-proto.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/binarylog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylog.go
+FileChecksum: SHA1: 50eaef1ff44c4825526c7b8192054906b9354c69
+FileChecksum: SHA256: c6047626863e34d5e8a1e40584d60d4e1aa5fe63b825252b65bdaf74d0fb3222
+FileChecksum: SHA512: b961ca04a26e37548dafc7d2515963f1db492092abf97b10ad4f023fd93b4885527b297a45de31e624e34b3d7aca15c06dcabdaf1e09312aeaa69206255c3bd0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylog.go
+FileName: vendor/google.golang.org/grpc/internal/buffer/unbounded.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-buffer-unbounded.go
+FileChecksum: SHA1: 73ee8ff26a4045ba66b06d4131748c97f2fe2aef
+FileChecksum: SHA256: a4989096a5660c6cba636398617b79652b463ee93323887cb413ff42061da63a
+FileChecksum: SHA512: 4e693360d522509bf819733bed77f63ee47b897c01cacef8f82aaed3e18f9e751270b9afd4018dba3a65aae5e62f4dd6635a978ee1d4b9685d40bbd17e844683
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-buffer-unbounded.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/method_logger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-methodC95logger.go
+FileChecksum: SHA1: 27d36baa44a742ee2b0d3fadf123bce206e4962b
+FileChecksum: SHA256: f650ecc3a25eb8dbf2598fe9004c51eac7ac24a1bf486b8dec061a3008193f0d
+FileChecksum: SHA512: 51f2554435860585d585a8dd941aeaca2ce6e77be592eb04669f26303c4019c150fe44208982c99f5aa167f5e3ec1818f765c50982cc31c2f286167beacc4986
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-methodC95logger.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/funcs.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-funcs.go
+FileChecksum: SHA1: dcc7b959363b18f3153db8486076d0d5cfcaa9c2
+FileChecksum: SHA256: 78e69cea9ee4fc649ab40b42c5a92ca20b8a5573b20c05c1223e759cf91e6176
+FileChecksum: SHA512: 037609b0da0e586d50e1adf3935bb36c8b9fec9f2a87978cca72670b866fd89d30e2f4adf8f970899f5318bdfbf1475fdda449601e25a0f04d50f5a231f54be6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-funcs.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/types.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-types.go
+FileChecksum: SHA1: de07860381eb8aee1e97135a51edb743106df608
+FileChecksum: SHA256: 1fb4d3d14618ec6306d153ae3c2d9eb31119fee89e523fd3dfed8f1bcbc3ac38
+FileChecksum: SHA512: f245a1f83be470b8bea1afb29262c50ca59205a5fc6aba8536400ee7cd2f4a4fe4ce631dbd35938a8e29453175b0492f006d06fefeb1daa8d6816e3d79fc1e70
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-types.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/util_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95linux.go
+FileChecksum: SHA1: a47f2448e99af1dc1b39d969117f57766f2392f1
+FileChecksum: SHA256: 2bc2e3170e1f6387d5ac5eb17a58d88d3858b1fc6a9ae46e99e9d234ec36b39a
+FileChecksum: SHA512: f41d3fe7b013d8b3ff189834bd88ef010bf610b08cdea37498fc7caba79d123a0bf9aea33b6ea4cc7e74d230c9ba9ae8a4f2a5cf7196c706b5f1459941bc083a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95linux.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/logging.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-logging.go
+FileChecksum: SHA1: 896b385ddacc60d3057f9c24aba7801dc5bc2de2
+FileChecksum: SHA256: 47c112a979cf7aad84a561439a153ae8f7baec1395a0568772679ea8fc717ec1
+FileChecksum: SHA512: dd157fd570ab39dd459430537eda9c5cc9c4ec2e49718adfeeec60c929ef3aea197787520068ee71ea3a8bfff943e757b27a260d019005817439d1eb9473b2d0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-logging.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/types_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95linux.go
+FileChecksum: SHA1: 73d4d3d847b1a7f34314feb4eb5bcff566cde9d6
+FileChecksum: SHA256: 3989e080c308c5f4fea5d3a843e57eb4c0d6d5fd9c947429934562b100ffca17
+FileChecksum: SHA512: 2cfcd0ae016ad88174e107247a836e09843229195610d034f113d8d71f732d15b7d13ff4e691b46cfc464d45f5459ccacdea7b716aaf68de007adb42fdfa4a07
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95linux.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/util_nonlinux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95nonlinux.go
+FileChecksum: SHA1: dcf6679c0759f9db0aa5c029363b35bc4229aaf9
+FileChecksum: SHA256: c019cb5478b0ba7f0845d6d7c0431018991786bb5b3f5cef90746659e9b90f22
+FileChecksum: SHA512: 831be928a867af30d2781db2aa1795fca6bcf90dbea28b9c29404361e129825896f2e073739b3c7024dad9da2dbbcb6ad7e748c24c59bdc619f82c912685f4a6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95nonlinux.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/spiffe_appengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffeC95appengine.go
+FileChecksum: SHA1: d4f21bd8763c0bcc3ac427432017104d0d77f2cc
+FileChecksum: SHA256: b69fd87dce0b85fffb5a6103746cb4373d1cb00a36fcc28dd59045f67c047ed7
+FileChecksum: SHA512: b1e8dfd93a37d95375d76a96b747594d006dfc52d1a54b836a14015a714a5c6ede012daf5360e514efa6b30fbff479805c5dfc4e1e8c62ec2a68a70dad5cf909
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffeC95appengine.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/spiffe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffe.go
+FileChecksum: SHA1: a88dec66bd5cd62561673573a3bd3c5eddc58eeb
+FileChecksum: SHA256: fa67dd5c33eff6788b6f4df033f93df3bfd9a889e79a0ddb2ed38ce0fd3918ac
+FileChecksum: SHA512: 68dbd2ecd4671d6e9e8c288ef78c9d3c4353fd9fe60a102318de130bdacf8ad5d58668d73d82f1fbdfc9d21cb5e0f241aee3cfd92f36625217938439c2f8b37c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffe.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/types_nonlinux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95nonlinux.go
+FileChecksum: SHA1: 269234bd1d683935a68b0b59f978ca39192daecd
+FileChecksum: SHA256: 54aee314800de43d73f9c916b2c48de000341cd22805e068b214314d89f129dd
+FileChecksum: SHA512: 37bf4b799551c2d871b3f181bce05ca1b420ab27c11866d686c9c3aa9dfd85d3d694496440fd843dff8457fef5118280defd2199ead80cab8f7b8feeffaaf540
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95nonlinux.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-util.go
+FileChecksum: SHA1: efb947a37223db7c8b9c232ba2f7d829da199274
+FileChecksum: SHA256: 48b6a59c6e58c8ae48aa0fb6fd8cb4899c639105963ee73084b33bfac75b62b4
+FileChecksum: SHA512: 22a083b7f88a205116561fdc505ebfcafb2a9be0c209f8203c653405575e06c26d2a9044a659f68e67fc03bc5605b320cad360fd6018f86e7ad03cf8e7c211db
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-util.go
+FileName: vendor/google.golang.org/grpc/internal/envconfig/envconfig.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-envconfig-envconfig.go
+FileChecksum: SHA1: 533e61158760300a94bdc780a90fd6b9ecbd35f6
+FileChecksum: SHA256: e4290d160874845ad177cdab28ad7120212c196e8bbcba0f3375fb19f4735f97
+FileChecksum: SHA512: bc35499aecb5c7f3f90052e29aff2339e2f49cad0d4ae19601bd1608aebc4c97df421ea468c6f4bdfd31eba81fae04caf1ad0fcd78326a16626ea53276128c39
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-envconfig-envconfig.go
+FileName: vendor/google.golang.org/grpc/internal/grpclog/grpclog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-grpclog.go
+FileChecksum: SHA1: 24b199f7d0bc90d2cf008b548dd4c21cf3cf0480
+FileChecksum: SHA256: 8250fc8e0efcc9095ada91afbd7b4acdbb2bb8b18be07195129be0059b908763
+FileChecksum: SHA512: 569eaf96c5a2f3612afa912b3c52e57912c6ab2f8141fffff2478f68a06cd8359fbe1ad23d07494ffbb7033de247d2f4c9f0b0af4c483e759afad1a297f3944c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-grpclog.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/syscallconn.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconn.go
+FileChecksum: SHA1: 112576f31b223c854a12a72721a2fd30802c2643
+FileChecksum: SHA256: fea260a95b21d76850bfd18fbfe25171d25964d273751c155eeca481f5bf081f
+FileChecksum: SHA512: 6e764643008067458af4b5ec1c49b98500114d47dc79b7598198c944b47153c05afdabab60557b735c804963c8f613113126d61b286706eda5a74420b199f902
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconn.go
+FileName: vendor/google.golang.org/grpc/internal/grpcsync/event.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcsync-event.go
+FileChecksum: SHA1: 22629b67fd5758011ac353cf8fbc689b542eab6b
+FileChecksum: SHA256: 99ed14dcf3a34ecae26da53696149cd961e148d9a524e13506485d97ef5f8fcd
+FileChecksum: SHA512: b1215b0aceaf244888bac609dd2413293eeba2019208b58b567b97ef300c7f2610fcae88cad800997c45347632c647fe2232d7a429c2e056ee90345005fc6c77
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcsync-event.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/encode_duration.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-encodeC95duration.go
+FileChecksum: SHA1: ad1b6ae47354e7e955cf40ba43ac474662636d4a
+FileChecksum: SHA256: 8f52f54c8f8a7385082931ce46f6274b1da1dffc44f0ee7cbbc89b761bb49813
+FileChecksum: SHA512: c64c4d481b30f6c7a6eb84837c6ccf4ea9ab38b6b2e905aa5f615cccf68acde028f4246ee16104a72529b3cc6940790ceff19aacead40d850124f0ab7ba2b8fa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-encodeC95duration.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/metadata.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-metadata.go
+FileChecksum: SHA1: 4ea5d40ace3df19322d41b82ebf28563694293a9
+FileChecksum: SHA256: a141ed371944b5f4edd385c3b3138283543d166e5b6cf90d1b33987f702a885e
+FileChecksum: SHA512: 1b35641f296c9f932618ea2fbf4820aab0ac70a762572cc0ce28467e1b1a72dd6ccad25fc16745baaac5590f4ccb96b995a3362bc4f688e7c0fc280c26cffd29
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-metadata.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/syscallconn_appengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconnC95appengine.go
+FileChecksum: SHA1: 4c07b732e27a5186142bf375593be0858d76e993
+FileChecksum: SHA256: 6a04fb92ba85ad2fbab859326dddfb86fd69e682074099cbb5d0c3bbcdfcee77
+FileChecksum: SHA512: e48413f8be6d2428635e04d8f1628b1c475d542544701798fe1f94d095c85f4fb5d0c1fd62e5d66490ffce3dae2c66e938bc5e03b40df70e384e2bb9caf8a8b7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconnC95appengine.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/target.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-target.go
+FileChecksum: SHA1: 5a37976f86abc1548b299616b5708a81c274e5f1
+FileChecksum: SHA256: 035dec3b009c29ca666131d0eabd1556c75efc9f38aa6b4193a24d967846cee2
+FileChecksum: SHA512: 21b5fbe84189136e9f66576609f1f4dce8e548eef760bf91ba6f6d35e4734f918badb1667827dfba335de1f1666dc241c4404246a1f77ce7630222e75f9d0dd5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-target.go
+FileName: vendor/google.golang.org/grpc/internal/grpcrand/grpcrand.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcrand-grpcrand.go
+FileChecksum: SHA1: 2695c598a662de95adcf7e171c0b9b3eb04e92c7
+FileChecksum: SHA256: 987a05611f33d7a61167036cdddf3549997ad7c2f8c6e779aad3c114b57c0571
+FileChecksum: SHA512: 9ce418548fd2c1818595d33e81ad647f452bc446307d868c93cf2e92671d5485af134caf1e58a297872560376f82df378ab911d8ff56b38f28992546e454238c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcrand-grpcrand.go
+FileName: vendor/google.golang.org/grpc/internal/internal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-internal.go
+FileChecksum: SHA1: 0c0f0a52160dda0195a0ec501fb620096d468cc1
+FileChecksum: SHA256: d153017458273b6c8ef22522a5f4901bcf99c10ab08ebe5270c05fd8ce67ff4a
+FileChecksum: SHA512: b9aeb3e97203d3bc7166a59b251538767c2bd086d6f7f93c1928940742c98d251cfc0d94a2e75f39221fa2e151341f2832515f2f62a1d7df46c2dabb674a75c4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-internal.go
+FileName: vendor/google.golang.org/grpc/internal/resolver/dns/go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-go113.go
+FileChecksum: SHA1: 74f3842814836bf99c9c16833f072817540ef918
+FileChecksum: SHA256: 14bd369062a5cba64efb103747da971b5e190a0eaf4666c72683f00fdc6f760e
+FileChecksum: SHA512: 7d098639416f1c6d27d79a267b38ee8b76510b78892c145c702e87683cdd41d2b474bc59e72811299988a4e5a8e1af27303f88ed4de83f7195b097e388b04270
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-go113.go
+FileName: vendor/google.golang.org/grpc/internal/resolver/dns/dns_resolver.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-dnsC95resolver.go
+FileChecksum: SHA1: ee3c8037d348ac17bb010ba974ecb3a3a6218ce8
+FileChecksum: SHA256: 887b02ccd7e96b6a7ae2b8d1837e88227f56e9bdb798b694f3b8dcea87ef4e2f
+FileChecksum: SHA512: 32c4d6106a074b9be8248b961a4439a840458b6f9e9998efdada36fc55c0561d1cb62835be09a8d38d8a9fbb2f6ada2ad1a50ac1812e030671b05d47487c197f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-dnsC95resolver.go
+FileName: vendor/google.golang.org/grpc/internal/grpclog/prefixLogger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-prefixLogger.go
+FileChecksum: SHA1: 0b14331703eb60bac9b576185fec81495694b47b
+FileChecksum: SHA256: aec4e50ef9761f18798d6754ef7144d1c0feab640d7f36cd9542ce119f169ee9
+FileChecksum: SHA512: d08496f8b8e6aea6a2a9085bda98ddc4b0b8549aa6f4a48b06632504321a197cac23f78c0126af05d3724302bfae3cedc20d951dd00972d1a9612ca808892e75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-prefixLogger.go
+FileName: vendor/google.golang.org/grpc/internal/resolver/passthrough/passthrough.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-passthrough-passthrough.go
+FileChecksum: SHA1: c0c99dc6d11835cf92d9ffdbea82bf6c1f3b5dbe
+FileChecksum: SHA256: 3560ede4c713505ce9014dd762f5051482a212b54b1d8002cff67244912f6b5b
+FileChecksum: SHA512: 17ea17b191cee9640cc5f688f9a2816811437e2a249deaf9c11082716a5000280ce3ce81a445c4b7565cd27519f1ec575760ef0d6c19dbe7e5920785761b1089
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-passthrough-passthrough.go
+FileName: vendor/google.golang.org/grpc/internal/status/status.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-status-status.go
+FileChecksum: SHA1: 7ff65a5ea21b0ccc7280b0b96c2655513a0d4e1e
+FileChecksum: SHA256: 7c432bb4475f94529307fd3ce5f4cc0428227e584b99cc54df7c3825ad1f7e45
+FileChecksum: SHA512: 568100d1357373c4e3ecaba240b8cbf7b3b6c87931ef9d03f492d360b289b34580cc6a11adef86993d5e53bb79977c72cba71daf245a5635010396d233f47612
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-status-status.go
+FileName: vendor/google.golang.org/grpc/internal/syscall/syscall_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95linux.go
+FileChecksum: SHA1: fd21044a6c751cf1ec846efa20ebd23327f1235e
+FileChecksum: SHA256: 1ad47ea29907a86dbbc81dd92ec61e40eb8cd17c310f93b715e7fd7522f55758
+FileChecksum: SHA512: 2040ecd95c958382ab2d21fc40ae7d591b8af348b17f70c267e6ff967f02233e0528e729076306b2e88702461ad5fc73d6363a82d253d2724bedb7b1ff992fb7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95linux.go
+FileName: vendor/google.golang.org/grpc/internal/transport/bdp_estimator.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-bdpC95estimator.go
+FileChecksum: SHA1: 354b9e528ba8dc52a1cca71c47110158b0942825
+FileChecksum: SHA256: 01a7332c6ea43122862b91c7e69ca4a2aa91b11ee9c094fc2ffe1ba6edad75f3
+FileChecksum: SHA512: abc0033c20218654200736bd34c70d2ce4cb1e95456b264dcae5b375d049fcfcb3a4e0c3c9db6f8793d2d274a5c3a616d7448630e8a4b155f34b998deeb8cead
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-bdpC95estimator.go
+FileName: vendor/google.golang.org/grpc/internal/syscall/syscall_nonlinux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95nonlinux.go
+FileChecksum: SHA1: cfbfab0d25570bfbbbda16b5903dedee2d84f405
+FileChecksum: SHA256: 5d744dfc96d65eb09aea71066013a1e74a6c9a3e9939c6589a8ed6bae72cb893
+FileChecksum: SHA512: b5c43052b57f25445681381d3fcf92836b39eaef9a16b161c5c28be994b0d4de525d1f2cd0140d5e915a72f76717a34c6750c2aa06e227314e8729b4ba107d3c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95nonlinux.go
+FileName: vendor/google.golang.org/grpc/internal/serviceconfig/serviceconfig.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-serviceconfig-serviceconfig.go
+FileChecksum: SHA1: 18ed1f340ab5f2e1404f0f532f1a0668c8c5f4fa
+FileChecksum: SHA256: cbde864d14d7db12a0fe6171beb8c7bb73fd9094e2f924e07d4abbb198f644fe
+FileChecksum: SHA512: 7fb757200f0420f97945756a387d0a7cdcf136b3919f3a0e7e1b363a14eba879f17a4f8d04b68cd7f0911a83a930e4aad99753b19a0483af7b95742b59eb168d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-serviceconfig-serviceconfig.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/method.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-method.go
+FileChecksum: SHA1: 994989f19f5ae1834d69c43c0495dce125210f53
+FileChecksum: SHA256: ee61215f9fe77ddea33a7b8a5060a0c3ef30cd61ad82c0d1d862c29a2007c54b
+FileChecksum: SHA512: b8908b249581160729475db7ee354ba7d480cc294b9d7cd6a34bb996a5feb5cea3fc4cbe3786cd95312b37fdf38a4d93dc20d7cc8e5d6710b4731ad038bed81a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-method.go
+FileName: vendor/google.golang.org/grpc/internal/transport/flowcontrol.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-flowcontrol.go
+FileChecksum: SHA1: 55567d3d3cb067679e762719538fd156ca0f5766
+FileChecksum: SHA256: ef06a1890146989320b9035ab65f403ddb6f9efa95ccf7ce01cbbe201403d3f1
+FileChecksum: SHA512: 923750d896ee259ff69703f453ccaa5b0bd5596df18ca5e0c308f8d2935708d340d21ec8de11139b0dd4479e10c991da5a495966812e6e3fb69d07d0a32c8e09
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-flowcontrol.go
+FileName: vendor/google.golang.org/grpc/internal/transport/handler_server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-handlerC95server.go
+FileChecksum: SHA1: d59cec986f743cf83aeb38f12cd8105d66960098
+FileChecksum: SHA256: b8d04f9cf317b00247af277a58ecbb4d80d91d1e0799386d2341c1eedc658c2e
+FileChecksum: SHA512: 93d62f389560a313b63ca896b01ac6964c7a33a65352e78ee61724ce962eb3193fd626199d25be7aefd3fa4f8f50f611f3762db1109393140b111af9620f2739
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-handlerC95server.go
+FileName: vendor/google.golang.org/grpc/internal/transport/defaults.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-defaults.go
+FileChecksum: SHA1: 0844058a0ca9d3435fddc1d6ea92db9bea02ea56
+FileChecksum: SHA256: ef002dcc0f89dcc9001cf7cbdb6b17d8d688f2bda3eee4efefe762c0c6416e5a
+FileChecksum: SHA512: 503b19e721a22f83ff79958373411774146f42e2f63851f99773cb60f8e8fab6bff21c6c595a61bc0340a31261a3ff32f8d58133735c9f053b37ffdbe331d6ca
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-defaults.go
+FileName: vendor/google.golang.org/grpc/internal/transport/http_util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-httpC95util.go
+FileChecksum: SHA1: 6f8a40661928283b06d2aff11566d24021760177
+FileChecksum: SHA256: d3a8928f725740496662c76b56b3f16c01b6d70e3a732294d3a6607b6503fad7
+FileChecksum: SHA512: 8a17c3b19ad0403ea10ff09681a025888aa9f85c70694855a82a8776861f66a116c2b2718e699b14e6951ea4441c2c61ada927014577d9bba2288c04e2c7b75a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-httpC95util.go
+FileName: vendor/google.golang.org/grpc/internal/transport/transport.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-transport.go
+FileChecksum: SHA1: 05b90a8a5533be4296647efde3b3cd8354564262
+FileChecksum: SHA256: dc26762504631addca15484952c9ad2d3f2bac86751c88472129c3b59e873759
+FileChecksum: SHA512: ced80e7b2977433da30a7ae5f97958c14a2d852ccfaeddd182199974fa482426472781f42ce2d056d2e51f6b067e068704b66aa81f0cf0e686be41fa8de2e71f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-transport.go
+FileName: vendor/google.golang.org/grpc/internal/transport/controlbuf.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-controlbuf.go
+FileChecksum: SHA1: a97a03c23ee7c344a096a5b25df12520f470c6a0
+FileChecksum: SHA256: e4e866c8b48bb86d5fe9fac04ba58986d58e6d7586c09107a437a6b4d85ff69a
+FileChecksum: SHA512: 14a6881e6b0bd2092abe31a2687eb9451a662dcd63294f33dee64346416ff5ba97d88eb5ed75cc087c5320d80361e97c3f6ee9d2055bf749e065f5adb068e527
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-controlbuf.go
+FileName: vendor/google.golang.org/grpc/metadata/metadata.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-metadata-metadata.go
+FileChecksum: SHA1: 43eef1469d21b43d0ce3ef90fec3a1a5b254d246
+FileChecksum: SHA256: 26cdf86e67d66a1032f0794587eaf945adc50996acad89c81a25e6a433f52de1
+FileChecksum: SHA512: 6bdee2c402d5aac0fa847b80acf663123d2d76bd1a652a9d2f99a2af795b4909266ce2849ef8d28fc5bf299e5b2c230f84102b933e9b80c0b9fc114c2c0f8bcc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-metadata-metadata.go
+FileName: vendor/google.golang.org/grpc/peer/peer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-peer-peer.go
+FileChecksum: SHA1: 658a7342468635627b646d92203ffacf86506abb
+FileChecksum: SHA256: ed94208f37d2983e302932057c07ba30e31c04923159148bd61f071f8b33a12c
+FileChecksum: SHA512: 0953b31767c7e653f738bcf5cead1004e1479f3860c0397bc3835dfa68a62d1be87cc11de55099bbecda25254bc4d8896c0095fb05dff37b89d6b7ab4a1e3524
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-peer-peer.go
+FileName: vendor/google.golang.org/grpc/picker_wrapper.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickerC95wrapper.go
+FileChecksum: SHA1: e90416b3306eaa1f7356d78a6ae3fe13c9fbd586
+FileChecksum: SHA256: eb40834d411e13836844a31de61dd01a8c6fcafb0942f6bfebd15811dc7882ed
+FileChecksum: SHA512: 02f197e5ef038ed8cb51c3e0c4ba83b811c48ed2b7fb71c1fd372e6d97d5a67d809226cb0e4e0da560ab084ac9bc90e0b52a4336ef77a8c317e4a62db026dec7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickerC95wrapper.go
+FileName: vendor/google.golang.org/grpc/keepalive/keepalive.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-keepalive-keepalive.go
+FileChecksum: SHA1: 61b20924d9b7a73bb3d473d8a1914873755d3aae
+FileChecksum: SHA256: a1aa59ff1fb63be104a97cd4d9bf4e62d5440d7ff4492f0148ab5f4bff2e96a1
+FileChecksum: SHA512: 6241215b97e22111b6706337f72206a1066b61a60ff3c61821f117f257f52d0bf0c5b6133ca083843ae2c450f5cd394991a85b2448337bfc5e62ce26c9f11044
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-keepalive-keepalive.go
+FileName: vendor/google.golang.org/grpc/preloader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-preloader.go
+FileChecksum: SHA1: ae4264ada7fa66980c586282f8a2f60e0db07734
+FileChecksum: SHA256: 05b7a7a8f36c66907ad5eb206a143867dd95ce2344c18646eb4f0c99ee0c6281
+FileChecksum: SHA512: 9fb23e62b2a60b6495866640fae7c57076d997a881b5d343dbe43180ce51c7b46e68dc6572ea0883e01aa5d38f071f1ae21e0d53fafc5aafead603d58924ad08
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-preloader.go
+FileName: vendor/google.golang.org/grpc/internal/transport/http2_server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95server.go
+FileChecksum: SHA1: 0a8e3d787afe90a46746cb8b0dffa79ef351ecae
+FileChecksum: SHA256: 04431d2e109cf9f33e3b58e588b10f56556f12bc0fff647f490210ddd0149726
+FileChecksum: SHA512: 8e1262f37fb52ae0925502fc0666a74497ca9f570852ab1ab5c066d9791a82d694994878c4543b8a38e345df81a6f229d467cdc1bd73a40a9adc033201dff7be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95server.go
+FileName: vendor/google.golang.org/grpc/regenerate.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-regenerate.sh
+FileChecksum: SHA1: c53cfa6ea3a29cf3b3672174f1bd70b680ea43d1
+FileChecksum: SHA256: 63a1c1371c91dd40b1313023b49aef467edde24df2dd99d134a3623a59f9f98e
+FileChecksum: SHA512: ecb23264fa4b0a27304131748527129a0d61028fa7fdbd00aeba35485aae2e5a803eb85f4faa800ca6b3a6703559784fb36698dacc50672e7b739d43cf52d268
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-regenerate.sh
+FileName: vendor/google.golang.org/grpc/internal/transport/http2_client.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95client.go
+FileChecksum: SHA1: 8fafec181fca92f175a4fe3dbf346fed3fc551a5
+FileChecksum: SHA256: 777d7501e0bf812b736da70692f3fb0277ab4c76d4f0b57a08b266fbe6df8fce
+FileChecksum: SHA512: bd539d977f6f5874cfeef63a7827071d8420b1379c831303d597b199c351dfc465b474eeccaa71c6e8e5832268d11c9ad57f21b98ebed244de1b0d74e99de2a8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95client.go
+FileName: vendor/google.golang.org/grpc/proxy.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-proxy.go
+FileChecksum: SHA1: 59fca658e8d8181f86e8118e33f55ac8200463b7
+FileChecksum: SHA256: d1ce4e5bcc80ddded7b7b2f05da2ea13981375d010f1f15589353190861b27c1
+FileChecksum: SHA512: cd37552f1a37f5bf7a0f23ba457c9d1e7202e5f9ed0d0543630a9210530ce8e600e082026c24bfd228545c1a0230f34396b9f20d4e547e50d0bc5a15fa8f6190
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-proxy.go
+FileName: vendor/google.golang.org/grpc/resolver/resolver.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolver-resolver.go
+FileChecksum: SHA1: 08ff6883fb565a22adfd5890a7215ffbbe58bf5c
+FileChecksum: SHA256: 6283df8ac40996312ce876d6eddbd65733e86da49625dd15b9056c46d630cc3a
+FileChecksum: SHA512: a4d1cd370d51901413b3f013893201ed5d0cca5f6b0e97d48d9e03550a63642f4e07861720508b1348e11cbbfbe7fe1ec1ce94befb28c33d7d93b86729cd308b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolver-resolver.go
+FileName: vendor/google.golang.org/grpc/resolver_conn_wrapper.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolverC95connC95wrapper.go
+FileChecksum: SHA1: 9c1dd3f18f6d414af2dd548e5c023aa225ad15e4
+FileChecksum: SHA256: 4c0f54d36620b8cf162ad52c82cb2f44ad42f37c23483c03b3486acccef802be
+FileChecksum: SHA512: ba6470e99ac979e0476c5aadec89e49577d8c93122b8eba9626eb25357d56d0dcc8cc97d2be4f8c72870b3d6ea8cabd247ee40d6ebc581a5b2f3d35320c71cf6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolverC95connC95wrapper.go
+FileName: vendor/google.golang.org/grpc/pickfirst.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickfirst.go
+FileChecksum: SHA1: 238d689aff0add19921fba4e2720a7bb2ca46f10
+FileChecksum: SHA256: 9843cbf1ce87f292e1a680a9591fdd313e2ce6d172dbcf8ea082796743beaaf5
+FileChecksum: SHA512: 7351023e6fba0cb9ed38dc45b84f235f01c9d05864330a36d4d10b6daa2808c390e4052feb587cfbac3fa8ff9decb2b9579a9babbb8bf779aa74b47c0e0fc3de
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickfirst.go
+FileName: vendor/google.golang.org/grpc/serviceconfig/serviceconfig.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceconfig-serviceconfig.go
+FileChecksum: SHA1: 750139269c86c706fc7c96af996ce82304fb0455
+FileChecksum: SHA256: d8100f7e633c602c140dbf669a060f5f50700fd16cc6b40a5f097361515f63eb
+FileChecksum: SHA512: 2ce0ec2ff8c6977e43db303498ae0595bb49f58b3d1743971d9c1fa20ac6819fffa758981713dad189037a98ff9b39ee57d56614c93a59e9547819b82d176056
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceconfig-serviceconfig.go
+FileName: vendor/google.golang.org/grpc/rpc_util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-rpcC95util.go
+FileChecksum: SHA1: 6dfc4d1f3dc30f0f47419ca1b29bce54530df68d
+FileChecksum: SHA256: b7d5055ee5554abb8bd5d1abc68cd4a0d9ba92fa1468fa974bd10dba4fce74c4
+FileChecksum: SHA512: b8d4f0025237f64f8d63f82dea07316632340d55155bc05015cfde8de6f3b70f2f3874590ae447adb84bfa81ed968bec59ed31ca3a3c0aa562ae993a51e35f62
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-rpcC95util.go
+FileName: vendor/google.golang.org/grpc/service_config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceC95config.go
+FileChecksum: SHA1: d7266942d3da58639650fe888c7fd99a83a40405
+FileChecksum: SHA256: 24f5045cdf85bd728099395c10df88f1caf67b28d8109f851320611e4f924cb9
+FileChecksum: SHA512: d0ecc05f653a00cdd297d91b69486db573c6b37740beb13384dac6bdd0bde4551184e2a23724f341e587777aac06ba421a4c842d5fcd484dfccf3fe7384cb2e9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceC95config.go
+FileName: vendor/google.golang.org/grpc/status/status.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-status-status.go
+FileChecksum: SHA1: 6489a3dbfbb68f66733e6a3d1958564628761a27
+FileChecksum: SHA256: 352bc233e86c30952c39872f81d5a841e0d4f1a2ea46ef86b0462e46450972cb
+FileChecksum: SHA512: f9861754f9352146aeb81186a446756bfdcda5d92e092592c43f9e42be2fb1f64a3856350bcd81f6dfa11f0e7653ae9eb48275b2af10467c75678d506ac0017c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-status-status.go
+FileName: vendor/google.golang.org/grpc/stats/stats.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-stats.go
+FileChecksum: SHA1: 70585fef55eaaf8775a12392361a5572f65cdebd
+FileChecksum: SHA256: 7a74a576f08c9775f3ec91fac387886a61380a8ab4686d5131f81b47e65c935a
+FileChecksum: SHA512: 5307966a81bfa722265c6accd8d5d6ea02c69a432ea4a262f5463cc06f13e721a4affaffcc43360a7b04186d962e1cf3cd9b7ee8c4c4110aadfb0237a3cf6518
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-stats.go
+FileName: vendor/google.golang.org/grpc/tap/tap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-tap-tap.go
+FileChecksum: SHA1: 7d781da5c4a76c9812ce8c3c61f74aa56f8d717f
+FileChecksum: SHA256: 3033d851c8266eaa387ea7bcce52e60c1b2dfd9e88792f32bdcebc54d7cefadf
+FileChecksum: SHA512: 1256af7372f3025b3b0c25d8ffe43afd76a2cddd7e00d646e0eb87daa81a1aa512e367e0bd622d273aeb205d0e3cb60dbaa62665a6484ee5973cebfcd6877fc8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-tap-tap.go
+FileName: vendor/google.golang.org/grpc/trace.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-trace.go
+FileChecksum: SHA1: 8d34b1be1a90485f0311027851fbd023a3d293b6
+FileChecksum: SHA256: e4d243701bb810f0081983e4b01a4eb427968be63dfc981e6b9e418fcf25f4ac
+FileChecksum: SHA512: 292ce9bb5750be45a67d20ff922cccc9c7a61470633d034bba18027646004e923f372619bb06c36ba1aed26facdd83ec9acb90a99236f25728770c483ed2bf27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-trace.go
+FileName: vendor/google.golang.org/grpc/stream.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stream.go
+FileChecksum: SHA1: 6a9f356a389c2166610fb6aa3c46e13b909dee88
+FileChecksum: SHA256: 7035d13927f566a25c7ae6d7ad1fc07ee3efe93b54a1022edc93e6e8a98ebb52
+FileChecksum: SHA512: 29e4b018d62999633fc76b506225eccbc6908b9499e294375b05bc1d5c12d7317d403f4e1eaf37289b502aee3412eba9f44999a8a846f45ef8c6a0d3fe1080c6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stream.go
+FileName: vendor/google.golang.org/grpc/server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-server.go
+FileChecksum: SHA1: fbca68144f3c81281ed7e6eba3a8c80fa31fc3b9
+FileChecksum: SHA256: a57275855bc81ac97824e641bf8c60d877e9388b8fa26edd1eac521dc840ee5b
+FileChecksum: SHA512: e003bc348af9069ce898f324b5d71d4816d69fd77f3bb80e37377be7953b3f03cf7313fd51898b481cb21e6a746db8f430f2f5bd782aa632682ef0aaba98fe3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-server.go
+FileName: vendor/google.golang.org/grpc/vet.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-vet.sh
+FileChecksum: SHA1: 334b5e1a24275287313c2c2a2de0e908499c54bf
+FileChecksum: SHA256: 9432d0457bb5acbee7da80110c4353938327c7a670792b3da5000286d49dde3f
+FileChecksum: SHA512: dc44f2f6cb58221988f6ed19f124f8949c093ec898fb547a1986c5770d31c22eedf63909c6f76cbe14a268bc51ee5fc081392fd189321e3a5d6b303c1735dd71
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-vet.sh
+FileName: vendor/google.golang.org/grpc/stats/handlers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-handlers.go
+FileChecksum: SHA1: c586fd0c6bfaeea8083a5de4418a101e1f95c81a
+FileChecksum: SHA256: 6d76e5dc6a39ff72cb9757781ee936e4aefcedaa00066c5164e9f2ea33fb8f9f
+FileChecksum: SHA512: 14ddd2db5c8ae44a605247236940af1077844cb268cd4353152356eaffe7b484c8717dd1dc5053a94ee213989cec1a4fc281c3fb017557e196b8b840c0f5052b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-handlers.go
+FileName: vendor/google.golang.org/protobuf/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-CONTRIBUTORS
+FileChecksum: SHA1: 39097573c311def5445e4dccaf3189987465bc83
+FileChecksum: SHA256: fa714cb1012a065fbe08b174eb1f5604327bd24d42dab2c461878ce36f68d0c9
+FileChecksum: SHA512: 36fcb4e290cf69db05fec038f7939a7bb888d458c4d814cb368f207210359c921e2bc563720d8add09039fc2ffbe3bacb96e4b80c248f643d0ac4808d8e4a718
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-CONTRIBUTORS
+FileName: vendor/google.golang.org/protobuf/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-LICENSE
+FileChecksum: SHA1: 74850a25a5319bdddc0d998eb8926c18bada282b
+FileChecksum: SHA256: 4835612df0098ca95f8e7d9e3bffcb02358d435dbb38057c844c99d7f725eb20
+FileChecksum: SHA512: c5772c80cc7f4338e35220b9ae0c83aaf9eebd3a643d8b5420415120de3973309d71b4b74702f2fe59f494fa8f6b43fe925ada3e5885f3e06c59ce8198628fa4
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-LICENSE
+FileName: vendor/google.golang.org/grpc/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-version.go
+FileChecksum: SHA1: f77b13d38fa0ee0e7471b56fa6ebf461fefe08da
+FileChecksum: SHA256: 0e18e7d9a68de844c138c91277d142e08ba878d79063802b78fffe26a605e41e
+FileChecksum: SHA512: 01fc1543498e988632d6449ed3872f77deefb5578a2f6bb818608c6daac48f080fbf346e9fcd053c28b29886076de116fa81a30beac3e5c7e8a79fca43fb3437
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-version.go
+FileName: vendor/google.golang.org/protobuf/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-AUTHORS
+FileChecksum: SHA1: 5d22291302558cc1dfe4729c69bac627252d3c10
+FileChecksum: SHA256: 5aa3167c44245f0b12b27195d85c6a8c8e067cfdd511059daa4d7b3c5b232129
+FileChecksum: SHA512: d9bfd664efaa0ec0cb4c3c4e5b850aa374692c1abcac7e818b8c9fe32c431200b6042639feed3c6a32d7ab1caf94e7a50a9ec21f3423e759b25ae89e0aa439e0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-AUTHORS
+FileName: vendor/google.golang.org/protobuf/encoding/prototext/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-decode.go
+FileChecksum: SHA1: 216893c0721155cb40890afdfa9ca2cecbdbadc3
+FileChecksum: SHA256: 7091ef15fee93b1a47a05291c8c8a32a907d9657623fa62115811775a3b13763
+FileChecksum: SHA512: 429a64f7da0125a9ffa4e9684b7848698840d8e28bde1e9a72e4e803c7b3e4fd4428d0c093abcac81c2f990551ba17ba4253784c93e741fd1b5e861a945ca8d2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-decode.go
+FileName: vendor/google.golang.org/protobuf/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-PATENTS
+FileName: vendor/google.golang.org/protobuf/internal/descfmt/stringer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descfmt-stringer.go
+FileChecksum: SHA1: 99117b7409d71ef691f6792346432aeba3259293
+FileChecksum: SHA256: 883fe3b2b6f0524e08bb53ddaacc799e94f1ba1ee75ffcff195ff0ce695e6c41
+FileChecksum: SHA512: c19a8886ddd53e7d95f5871783952286003ba9e075e3377afc699dce9d1ca199a4f1122f23f489f6365e79a689fbb87a0e5264f55e1c8c265c6c96bade5fb6c7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descfmt-stringer.go
+FileName: vendor/google.golang.org/protobuf/encoding/prototext/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-doc.go
+FileChecksum: SHA1: 1fd96af262da70401f5f90e7d757144a84b304a0
+FileChecksum: SHA256: 48657fec4cff435f30956a1dc6c1b639550ed5fffe1633f1c976645c67d199e7
+FileChecksum: SHA512: 61477d6ff4d7cb592ba63641ec345a479c481a845923f4dc79d0891051b61fa2f5d6c465fc979d906c681c5f354217c65039edc60810889b3753b1e251b4d78b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-doc.go
+FileName: vendor/google.golang.org/protobuf/internal/detrand/rand.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-detrand-rand.go
+FileChecksum: SHA1: fcbcd45a31f7d7af37be9e9c3f7c2f40670fc4ca
+FileChecksum: SHA256: 60da5b516689c1ae2e4dc69a18d13da3fbf061de5601e573d309470b2cf5b285
+FileChecksum: SHA512: 635bdfe87f48a132aab5b9fcd078a67871057175289e8cff04efd4906c5eb63f30dd4b7fb689802513dd61f8404f605272a33d74e9fce1f8d748ed0673b42f26
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-detrand-rand.go
+FileName: vendor/google.golang.org/protobuf/encoding/protowire/wire.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-protowire-wire.go
+FileChecksum: SHA1: b23add4c95c8df946b3c72c2a58ed9a97ae2157f
+FileChecksum: SHA256: 7f75267a3c37ee9084214838bfbcac23a4aa12a73b464b473993dbb590cffc5a
+FileChecksum: SHA512: a72871fd34988fe891c9665c514309743e944701e87bc187f08d70ed774f84c6e264a7ac9eba4492012bb954819eb96053fb59a5778036479e0153bd57885349
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-protowire-wire.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/defval/default.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-defval-default.go
+FileChecksum: SHA1: 6960553c4047c30bafbdffc9022a4933b82912fe
+FileChecksum: SHA256: 1654b54a991774654dd487974fad73134df4bb761f6274625405b5df227aaff7
+FileChecksum: SHA512: 48fcefa2af803f2df9a99062187af185a73a230759ab2ae7a8ffc1d5fbe947bb85ddf809ce5ec26bc882f9cffdd14bfeebf15327d99e03acc11fe00eeb30a4e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-defval-default.go
+FileName: vendor/google.golang.org/protobuf/internal/descopts/options.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descopts-options.go
+FileChecksum: SHA1: 1d29b0dca6dd037c8dba4f65e1f412e1ab009bf3
+FileChecksum: SHA256: 2651135e9b29304bc99186fd689774f7fffb2fa808a350b81e719d8e82fa6e0f
+FileChecksum: SHA512: 207b8d8189df4af6fd650c0dc1a8dd03f4837b887fa57056f20366529b1e19693962655baea20aa85d9283cc9a638073f946c96024e878717866288357618a16
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descopts-options.go
+FileName: vendor/google.golang.org/protobuf/encoding/prototext/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-encode.go
+FileChecksum: SHA1: 44455450f60fee85327cecb5a84fdfb0e20cadf5
+FileChecksum: SHA256: 1d85163f1372dccc3a5036ea559933d823e62b5c868bcc19c475c082676b5b18
+FileChecksum: SHA512: 926b71912936e51d357d8637fa57457d05f0d61a962192dab64c21c9958f9bd78b39cf8d5004964ce4f1c9b2413ed0b4fac75fc281cee375a2bf209130237124
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-encode.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95number.go
+FileChecksum: SHA1: f350fae4d531c7143cbc82efd4234b015206f6d9
+FileChecksum: SHA256: 7081ffa31d68f26214cc3eceb6ee6c51f582cd55aa66077fef8cfd6d85a18bae
+FileChecksum: SHA512: 27d7916e3b30ea427b67061897f69362f6f92d308ac0f42be967363a4be092291565d444297f5784b9755b004116399c3a4b4e0d4171936a3d2045b7c1cd7d75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95number.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95string.go
+FileChecksum: SHA1: 87a76c352c35e302001126f67ae498a00f0f6335
+FileChecksum: SHA256: 5974107818845d7d94c39cd275985dfbcd55b9eba4d731e182715f985370e7ba
+FileChecksum: SHA512: 7b7f8f286bc3b96f525aacfa5983a7f1011c904f7c4e86934a117cf040bcd37b848560af65e79cd06198df624ccf442e38839638b986f193f3f1827cc290714e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95string.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95token.go
+FileChecksum: SHA1: 7b9a4099f2c75a473c07e61ded9ff9572d32cd09
+FileChecksum: SHA256: b51ba5d349f6c36f99544020733af26dbcb476bd73548cd943c14286fae2c475
+FileChecksum: SHA512: 56015c3625830db84bcc1a1c549bab6cb9b431aeb775c7efdaf786712fef6e76949cc4d8fb5ec8fd3ec42160eeeb0d357d48c05a8b49d66cafde6d6ff5341bd3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95token.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-doc.go
+FileChecksum: SHA1: dea93ac2f10089e368d70432d7342c024de29f0f
+FileChecksum: SHA256: fc115fc57c3d85737cb918275fa806e9f76044b6cce31a762b10c81c28642fbd
+FileChecksum: SHA512: 655b40422e56b450baa8d11aee04d773ae67d0befc44fd3b77511761ac0b0a60b0409a0dcc450bad117c7dbd24dc65e2fd44fbe4ee894a9149078b57fbfd8170
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-doc.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-encode.go
+FileChecksum: SHA1: 5a5e16df9fc9bd1703aec2502dc1e274709a4e9c
+FileChecksum: SHA256: 0c15cfad72e75b3e18a3de52b8ca74dc83d3d5c7fb1c14b0879aeb27ab711582
+FileChecksum: SHA512: f96a355630abcab597794bcc3d4504738df9a320c2ff5c14c16bd32d3b3b48b066b3751d2d6976e2d9c937ca05dace34f73e4efc2081de116b93d49f5ec0d7c6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-encode.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-tag-tag.go
+FileChecksum: SHA1: bf4aea5b3d10b9f102f5ead390d65d5bd3f3459f
+FileChecksum: SHA256: 8ecb481c311f3abd192446423423242735dcba2ae7e0b1e49debbacc757adf2d
+FileChecksum: SHA512: 6c84bb98ec657a4cfbc070de417cc900ec1a958f7f33a87e9fecc213d1153f0becf8eb3cb68f40c334fa000b6655bbc682a7fd20c1e17c447fa13b500e92758b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-tag-tag.go
+FileName: vendor/google.golang.org/protobuf/internal/errors/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-errors.go
+FileChecksum: SHA1: a2a5667a227c1c9cfa87cc53f38eb16769ff06f2
+FileChecksum: SHA256: 4a096a248dca8bfa90792a02d60b4daf8da42be074e3befd88180bcc2d694a4b
+FileChecksum: SHA512: 259d57e0e498e5f7684adc3e21a4f8357700b1008fd35d0ce35be129af19d230b44980c483cc9b8de05de2fb2ab2e9548a7d2b795690a6ba0b7ce37511f4bba6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-errors.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decode.go
+FileChecksum: SHA1: 401dc0867ff44c1ee701fd5e189116323eb310e5
+FileChecksum: SHA256: 75f2c279cadde77316f6e5d466fabe43a77d6fb3147ce8484276e548ab685012
+FileChecksum: SHA512: 5dd4895a42c231f8545226232c15130e99d54cbcf3f78a7f8c6291bf39c3100ab45efd706ca6785bb6b15fdbc3ff4633bfda6743f1e870927c6f7b03de3f22a2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decode.go
+FileName: vendor/google.golang.org/protobuf/internal/fieldsort/fieldsort.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-fieldsort-fieldsort.go
+FileChecksum: SHA1: c21a99e7fe542209de82003f333fea17603d8473
+FileChecksum: SHA256: cdd29688c33c65d70e798a6763d6ea27396362cd5ad15950790af1e849a6551c
+FileChecksum: SHA512: 315cb78f16a7fb78771483c99abe41db861081cc0de8e935dbcecfce96645c532c4a5faab8c627a9b72693a4a5e82c67e4a25836a2471a060d911b2b33e88f74
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-fieldsort-fieldsort.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-messageset-messageset.go
+FileChecksum: SHA1: 11e6e0cf515c1e17e9b4e0e6af469fc69356ecb7
+FileChecksum: SHA256: 39d683c207c00c122445354716740ca9b0079b0f1c2e2e2fbe2499bf018b0b97
+FileChecksum: SHA512: d150b22df227154f2ccd4e17d32c26cbae529d37af2790d6dd5087fc4c32a65acf45a60562d07e4defc66a985f95e61bbcfa6feeddc35749fb03c620ed05adc9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-messageset-messageset.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-desc.go
+FileChecksum: SHA1: c24662672341a046bbfc3575063cbb270fa89fab
+FileChecksum: SHA256: 0cc4e6b4ad261a37d52de44f243110571384aeba989eb509891199bb74cbfc01
+FileChecksum: SHA512: d942991a6c30d084772c43ca8c227777ecb404f05bde486392f8d7f3e03e49e49e625bc4bf7d998f2ca4643f099d823de5df95c00814a1cc451a2eb8167d6b76
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-desc.go
+FileName: vendor/google.golang.org/protobuf/internal/errors/is_go112.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go112.go
+FileChecksum: SHA1: 5b1030f6bb66fe378160644e38896d6e178ba497
+FileChecksum: SHA256: 0d6f25629954b9e3d383d56e774c68550ebd8e20e89c9f207cc5a6cc838c4482
+FileChecksum: SHA512: c6e4a8dad621fb2520d281df40373cf8dcb2bd11003e92ffaafde62d4d89003b489bb395193e550310b8e898b55544cb5d53fa8063da0f31ee2ac8dd6c388f44
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go112.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95lazy.go
+FileChecksum: SHA1: 6239786aebbc4617b6c26deb484196a66e2e06e6
+FileChecksum: SHA256: 8d5254e7b6286d098973559a54abebfc452c81a06ff395c5bc46c534128852bd
+FileChecksum: SHA512: 4c3816b8fba8f5cda595eea713df15d33596ca8dcd33e28ef24c15c8c4ec7a499b572617a0c64e15b7a42c824839a03f0e6a067c0f88257b7871c7ac9c927aa6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95lazy.go
+FileName: vendor/google.golang.org/protobuf/internal/errors/is_go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go113.go
+FileChecksum: SHA1: 9d5d4967a44f4356e581f16fec75d250151a57b0
+FileChecksum: SHA256: 2d37408ce4ebba95fee6f4bf289e6767d66894c0fa5e38a314b70ebbbb3b372c
+FileChecksum: SHA512: d31147569e696407c6c96fbc75049d2a880f0c62165c542e7e8289a5a525530d938d723ec051e5a1f609a9bb4a1be87d7b8c787a829c827a0355796d07a93f94
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go113.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95list.go
+FileChecksum: SHA1: 266ef93fde08199e1aea4bd46dc94c5fdb334e3a
+FileChecksum: SHA256: d7962034bcd203a308d80052c3ab23571139f204beabc0f93e7f5ac3953571cc
+FileChecksum: SHA512: 607f2f7241fff0fa0dc866023393050549bd9a8c1bb4c1e119eec01d88f39795fd5044aa506f4859a7853bc277584d3fe6a1b57fc393bb08016f54f06ad07e92
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95list.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95listC95gen.go
+FileChecksum: SHA1: f480e3298ce82f3e63ce46a7de9834233d74eab6
+FileChecksum: SHA256: bc8c9019bb55e10c2da04f2214398e0dc825daebf69d90c434b42b3f4c24a8f4
+FileChecksum: SHA512: 2f340112c561c8f069799f4d3c2e7cf2796da0fd472f74a168320f382f85d3d7e3fad6a075c2eec8521793b0f5a9ae786656a0df04f3f564a1ca8858d5358e4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95listC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/build.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-build.go
+FileChecksum: SHA1: ed1dc1f2557d919e39ed25884c343322ba49bc4f
+FileChecksum: SHA256: a183ad6b34b9e979fbe725df61f38a844503bd073a639166c5a0e874704dbee5
+FileChecksum: SHA512: f18773775f6195f49de57c423f97bf9622497034ef2b4fbc1f8b4cc827d19a2cdf10084936cb9250252e6698c0ddc51ca786fd0abab97f326a0748ebc3322226
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-build.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95init.go
+FileChecksum: SHA1: 9e382627cb220dd17c073ac85597407d2f4ca572
+FileChecksum: SHA256: 8477391f43325a8ddabeefd7fff03cc69b409f88ac454729838419692860f2dc
+FileChecksum: SHA512: 3f38b80a6eb77841c5774f61ef813d1f5ac7594e06122224c6f1bf0ad101a8b811f00e082e43bb1e1ea735fb1d310b58c06e0aef270aa9a50421b807945ef95a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95init.go
+FileName: vendor/google.golang.org/protobuf/internal/flags/flags.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-flags.go
+FileChecksum: SHA1: 46605df1458084fe4e9d8275fc25211422b62d09
+FileChecksum: SHA256: 4921e802d873d589e4970b0924c1a78a3fd6f9ddda980789537e7b9cd666b56d
+FileChecksum: SHA512: 63001e76cf5cf8f20b50452b73511cca71d14477bdbfffe0cde3f92301a95ecbcb5e22ef18d616e0ee75b370ab9e0965ea7ddf48aebfdb9cfb160b553334de06
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-flags.go
+FileName: vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95disable.go
+FileChecksum: SHA1: e11f2a0c0516fba370b459e88236cf7fd10556ee
+FileChecksum: SHA256: 2168c4c8a4d610875ace5bfadace10d4276561bd1edf34c9d8daa42933e8a1b8
+FileChecksum: SHA512: 56c275ec3bd2e03fb735857a090f67a643395016572f0d00ef1d95f24a75a9f6de43972a5b2e4639ab34bdae6e7735468b8bb6df621c71933ec12be500333f88
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95disable.go
+FileName: vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95enable.go
+FileChecksum: SHA1: 29919d987f49bf9e90ea8da93a3182e1d7b48878
+FileChecksum: SHA256: 5d1a8091ca4c06c18bb4f4f6835a1efd9c697dda7097bf54c5d799e0ce3eb44d
+FileChecksum: SHA512: bce8d92b8661f53d67a6d25ff6efc0dbdf0b203accba58e7649dece32e31dff5875339c75935d7bc9fc57c3f889f6a99dc6b910cbf57072fafe0474e7f6061e7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95enable.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/any_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-anyC95gen.go
+FileChecksum: SHA1: 3214e57f5dd07c5d354f395b7fed4ae742902506
+FileChecksum: SHA256: e52abb175ed291da379fe73582a640b13d08ae426b51f6e40a82fc07ef4494f2
+FileChecksum: SHA512: 75eaa8d508c81f08595b4512d0a13e9ded319c10d9269b7c6d63ebda5d215d0f2cc4772e749a43792a9248eb68537385046027c2fbff1c3f100499dbd77d56b5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-anyC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/api_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-apiC95gen.go
+FileChecksum: SHA1: d7703fbf3ac2bb1e1564335c5bcd63325bc35f5d
+FileChecksum: SHA256: 110c84dd0ceffab873b9612e87932b577d5e840e80bc7c8cc4f829e6399f1695
+FileChecksum: SHA512: 89cc0d2dbb53bb43cef13e9eaa1d956670139a7bb57aa9eb38a08f6edee0015803f43e632f0670f5956bc1f32d189a5704b171329b4d8479de8d84beadde2388
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-apiC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-doc.go
+FileChecksum: SHA1: 4c63bfea4f448d663d3dd85a2fefe31b5e38f3fb
+FileChecksum: SHA256: 4491a99a2b0ee5ccf8dbd9bdccc1cb3ed84e38abbbafb72f3567b1438bca663f
+FileChecksum: SHA512: 02562dcf6ec1a7141e36b10b2c63d1c6460caf88ca398b66a25577db98063e1b2f5bc7a11bc69b3bc8809637003b2bf236185cb278cfc4a2fee4637e458e5a48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-doc.go
+FileName: vendor/google.golang.org/protobuf/internal/filetype/build.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filetype-build.go
+FileChecksum: SHA1: e185efde219425dfda417fd37c5268da3478e5b9
+FileChecksum: SHA256: cfb37abe6c4ecdb27d8da0b7613255facfb24b4b1b2bfe9eb48ab8a1ac0204b3
+FileChecksum: SHA512: 738975695f73641a25d018d0d2bd9c74907f2893b39ed97e3edc624ffe72e5b7d4e464a8e646261fc72cb56bc6f387373afa7d9f0808cfae4b558ddabc0fdaec
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filetype-build.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-placeholder.go
+FileChecksum: SHA1: 0cf4210b9884026a1dbddb37198fceec24ae25ed
+FileChecksum: SHA256: dbe84bae63e6274cffb777fb23739c70c05c321e8b93411ba2681d93de6ada0f
+FileChecksum: SHA512: 5347b19b1fae6c670a4515ed68f5e220fdfd96f2b5a559998a0796f139b02ea1a8bdd233b2f8154a07f6e18df2e8267111e2b32f7c25d8587d27ec5c7afe750d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-placeholder.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-descriptorC95gen.go
+FileChecksum: SHA1: 9efff2cdc184d867dca9e44fb4edbfd3f6e0e164
+FileChecksum: SHA256: 5dd35c07b1c4a73f32eda1344ccab783b3a587795af14d92f0c484b1ecee8422
+FileChecksum: SHA512: 8e12c60291af21b8120d3ff0f4a84f050cff3f079f6f961303ae1e7c3a79b179658e65211e0f38f3ae4719a829f2b10f9a9eb3fae3714c5c8edbe52353b74fae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-descriptorC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-fieldC95maskC95gen.go
+FileChecksum: SHA1: c091886806ec52feb492645d1780615b3a8a17ac
+FileChecksum: SHA256: 97ac7e90145a527f1b53e26868cb2257af5ca000103dcf20ff6374693512d5de
+FileChecksum: SHA512: f2b2ba14dd96f597b10f1da22c82f1ec5bdb4c47590d8293cc39d7b6b88bdd5a0ecdff799c0170be549ca5e32d13716babf50a9ca313af2c0781acee61ee598e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-fieldC95maskC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/goname.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-goname.go
+FileChecksum: SHA1: 355cba29131612f7b8432e2aca31006cb9f53cc2
+FileChecksum: SHA256: 26d956b899ec5eb6c8a5ecfa9f6a004d15f3175c851ad23676c29fb005b5b4e6
+FileChecksum: SHA512: ef32c29b18d05a5d677a8a13a31b7f7cd8f4dae29fbf02b632d6b0ff20f8b00d07f18717f0c382e16f3c4987ee7e0c8dc17d2858f918edd1db6c24533a72159b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-goname.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/duration_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-durationC95gen.go
+FileChecksum: SHA1: 228b43ec0c1711da5ef245a07750c3f05c6e4cf6
+FileChecksum: SHA256: 223477c7c21d3aba70b6afaad202499d35dd28d97bb3096649d398ec09ffbd20
+FileChecksum: SHA512: 687c67d5a910dfba1a690f8a49208c80e78baa690cb39e0423750027795544374001a932c350844a1deffe9bdb00be18b0f0b8c89adaa0b2eeb5673b38dd7de8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-durationC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/empty_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-emptyC95gen.go
+FileChecksum: SHA1: 3de0f568fbb2f7822263d6e6694403357f7e842a
+FileChecksum: SHA256: 1bb2b55b36ca99633efc148681988dbd738bfc6d09b88c92bed6392a4a16e80c
+FileChecksum: SHA512: d49bc4c57b18659b581015e2f1708b5795750d8e3589abd8c59c3ae3e37a88e575520b3ac48f4f4e9dbc482725901ead059f85c52b0f8fa0a204f560d7accbbf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-emptyC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-sourceC95contextC95gen.go
+FileChecksum: SHA1: b2037f6dbd476e4144a92579c180273feb8656ed
+FileChecksum: SHA256: e0aac89c39dea4892ba50ea5316728a8c582ba9a1434406c5aa047c0e90bcdd0
+FileChecksum: SHA512: fc208ab120acac6f90369f10ee52e87f95df5239335e8038f7b1f00770e9c9fddda7aa3f9c158b0419c768c08cbe878ee0402837435ef0603b5ade4d6e359a54
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-sourceC95contextC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/map_entry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-mapC95entry.go
+FileChecksum: SHA1: a6de4f7e4de7dc2fb29e0784dbe376979d8b9163
+FileChecksum: SHA256: 2af7de53dc0177c7a8b3491dae6472e2fe0bcebf4cf0f9d57a5ba67039da33bd
+FileChecksum: SHA512: 8d5119e0d9feceaff8efe58dbef814681431f6503640fe740db730b9b66168d5e2931a562820f392dab84fcf12abe1af4d68c32d4c72edfa3e701cb9fec928f1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-mapC95entry.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/struct_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-structC95gen.go
+FileChecksum: SHA1: 008fbf54939ad44cfb3d403f65c176237cf46b03
+FileChecksum: SHA256: a0fb714ad17ad4d6b920df4ba5fc74611b39aec33c55117b2aab0b9758af2a3c
+FileChecksum: SHA512: eada74e14ec98d52921889195959969c0a6f6ebb2224a31fe83b74b251c43b8ff94b339e14d40c50ad833183840e96c370899dce50cdc4631393a576533a1759
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-structC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-timestampC95gen.go
+FileChecksum: SHA1: 63f533db34c0e24288a73386611a39ad53b9e649
+FileChecksum: SHA256: 5652b719e792955d360f4b5c8f8889923976b55f86e13dd233edf366fdd71e2a
+FileChecksum: SHA512: aada3bf2d97b4fac2a38b5b13c7f814110088f7da4f17b8aab25bdf38c3115a524434edf46f86a237c8a01dbb247f69f5edbea51a5f10071ad606437e13f06e9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-timestampC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappersC95gen.go
+FileChecksum: SHA1: b921184ef62a280978760da13750e83d6e0a15f7
+FileChecksum: SHA256: eaa8ad201d3ef370a565fea90ae9f5bef6efec40c7fa58a53e7efe635731e887
+FileChecksum: SHA512: d00aadb1c1f6cbbba30c1fdd50a883a62b9720838004dde7e79d8781edf3f4d7fec44bceb3eef300f90e4a4b0a58d96c7e0bf47c881b3e8f3d89cd6dd3192808
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappersC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappers.go
+FileChecksum: SHA1: 3d25faa8ba752004da6c2940fa449ff75abfb64b
+FileChecksum: SHA256: a028064c8e6ef7b3ed36da09f6f8b2334f866fff8e9f002655cb18789f0ce45c
+FileChecksum: SHA512: 3d2ceeb259961bf88f2ea8ad0ab82de7c22f0abed426770ba7c20a4aeaf86c5fa8aba0b876e2993519335064ecd00c87c72a18c89a6075d2976e5272cf72774c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappers.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95extension.go
+FileChecksum: SHA1: 23332e923b42063072d5e2d0ff76570779b6eede
+FileChecksum: SHA256: a552d86147ef4cbc7e7c54cb65c499c4f7cd6a9903e57634f65b20c7534b6467
+FileChecksum: SHA512: 3534b69f6fb01d2cd808d523ee15650482719250e7362a1368851eb73d123b9ce136cdd0ae0d6b40343dccb48d0a776edf39b1cab2a4bae6893422d292976e2a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95extension.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/checkinit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-checkinit.go
+FileChecksum: SHA1: 6df4dc83ee6a94c3a8987ed73c9d740f51c79c4c
+FileChecksum: SHA256: 64684ff7583c9f962304a8e2867f76e2533d72990c6acba13d3241f2ba54c292
+FileChecksum: SHA512: bd6c8ae2f3cbb1b4e5c06ca1489ead3266bb8cfb6dbf50a94b75f479179fa7a8896b9cd39b3b577f810de422480ae149090704890017932be76cf4cbb22e2073
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-checkinit.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/api_export.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-apiC95export.go
+FileChecksum: SHA1: 146c3f4cd1e6a4513f97c6bea552f5edeb87cf07
+FileChecksum: SHA256: f6a6059e4e7b6de5833ef14061318975823ef08fd737ad7e6089f840d15e1e34
+FileChecksum: SHA512: d8d1a2197809fcadc74cdaddd5ef18b47921d04fb0b1735cc87acda7350a3facc70a3d57450485f7608489515146cf9f3e53943b1c8c5f381fa5df10558c9c05
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-apiC95export.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_field.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95field.go
+FileChecksum: SHA1: 91421c771c85770fad4d8cfece36295cb62e631a
+FileChecksum: SHA256: 13cbfaad91710d66fc403b383d9644d4fcf4d59a47fba426773224ef95f43f34
+FileChecksum: SHA512: 01554e088a0ebaad8da91a3bccbf3d6a52f845ce8719e1ac3f1374a135394a69975cbb988c220f507c427ca12e1988f6a2e0c72c78e978f3fab4d54b210fb52c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95field.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_map.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95map.go
+FileChecksum: SHA1: 9db384b9d613b181c54d015ebd388f36e2796a71
+FileChecksum: SHA256: a050eb4e3892722b8d24ae67e0c22e4f3ed58fa67bd4858465df8dbfaa24caa9
+FileChecksum: SHA512: 580c539a97c0ce9c37efa20c38b8f7278e0acb8ee7a90ae628452b9bfb8020bff10b779584b0f0d64a91b7ed87d14cbf4a6b9311c3c39937b719f36695aff06d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95map.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_map_go111.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go111.go
+FileChecksum: SHA1: a755ee6533052e0bd0fac3eb6d20debef2ac841d
+FileChecksum: SHA256: bf9dfddec7c35dcbe1c8c3d76aac0983c4f9ca9ea65e434dfbb70c1461c0dceb
+FileChecksum: SHA512: ed19058c40acfa3c1d93b5a13d30f92a2c1f0fe6de6a69d7081a13c9ecf98c08da2191afbf589f9e135b39820b10373c2a3703e650158ef17c863366c73d415d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go111.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_map_go112.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go112.go
+FileChecksum: SHA1: 7558cad8aa71d4e38b216d72b5bf8ab85996b38d
+FileChecksum: SHA256: c43a8545068c36a1d98803ac5c3b3e1a3d487942776f6055048c5d59f94a9522
+FileChecksum: SHA512: 6ff3c4c3df02f12dd316ca11eabe1f76d0ddfd15c8b4821e8e6fe4c16e62826adca43160491f8e3295ae40175a4ea1ff30e17cdcdc0d8108576b5eef38cba3dd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go112.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/type_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-typeC95gen.go
+FileChecksum: SHA1: 94e73e111c7ccefb2b526a4960e5cda9a9ab2e59
+FileChecksum: SHA256: 404f307673e4c7b413e001d3c54d130af682ac8e99089c69f489d6b262455664
+FileChecksum: SHA512: 4e272763c5f12835db043a2e1e7af1ea1b100a78206f2fc69325f066a551e2724f1ff35c629ac2d979ce92a5b6205ae2368ddbf3b6333c177f89613c1b8445ef
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-typeC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95reflect.go
+FileChecksum: SHA1: ff20fdec2937e4f955d07772eabc0a92207d53a0
+FileChecksum: SHA256: 989b7c6585b90fde885382dc12509f66bce7b54af8390bb69eefe491d605f98c
+FileChecksum: SHA512: 853e8771c1735c720aa7dfc6f038b904c6937f7f30130a9a0e6a375ab7dd671c3894dc8fb488474ec1df139eaf5808a2c4d84c2a46d4c7ce663e7a00fce98c38
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95reflect.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95gen.go
+FileChecksum: SHA1: 3f0d7df34e0583df3d29b21e52c9fb477062a24e
+FileChecksum: SHA256: 96172851c39db379c10764c478bc4886f8ac50142f133fdc911f677e38247d58
+FileChecksum: SHA512: 344a7a1765effb08384f084cc4009443533a68ecc650c3209b59fd26e00d83ada03b94171ab0c55b948c958ac2e404bcb0e49cb00fd444c61494de1078ee552a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_tables.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95tables.go
+FileChecksum: SHA1: 345a04d08cd94a09c5c6581f25842b9ebb9dde68
+FileChecksum: SHA256: 857c898b4f81b8a8a93edaad2690843e83384b3f391de66481a29c558a3574e4
+FileChecksum: SHA512: 1a9502bd56733c03103e6a80040efe777bc0568cec52d84981c987c38682e23bf8cc488573968c76acfc4496a5612b9fba4040f0fb3466b0794151a09a7d6155
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95tables.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95messageset.go
+FileChecksum: SHA1: 0015b22560f69125e5ed2bdb210c8169371a6618
+FileChecksum: SHA256: 6fd0efef27a6e026da67e46e7e4c28041db83efd9156e99d2bedae0582b87f8b
+FileChecksum: SHA512: 1d332a799d848cbd515e8d6d3555a10f4d71bd5572f6829319224eada0dfd9cb7d333640e8ff73e8c3a1c809379134dbdc34c2a68105edf6f19be6ac8f8dd4c5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95messageset.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/convert_list.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95list.go
+FileChecksum: SHA1: 6d159686a420beb38523b9e8698320b435ccd9ad
+FileChecksum: SHA256: ac8f4cf0eb458da8b83a7ade28f150907406914b9393588e6c829750834ce2d0
+FileChecksum: SHA512: 77599421e68b097bb5b0ccf3957767adf5d6ac2180d3226ba413e82a54ddb6f1bc89142a27330285d4a7a8a0402999483011ad8c270c7cf8936a5e146183e8f6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95list.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/convert_map.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95map.go
+FileChecksum: SHA1: b1d85198ab56b7b7f121a86b7dbd8575df3d3ce2
+FileChecksum: SHA256: 5bc0e0170581e322c513eab85d3e2e271047c1295de2ca89d6287674063b9976
+FileChecksum: SHA512: d38407f2f9eaacd7a4b6d7a02c94727fcccd5e954d50ab4821b0a3060e78796e17756d1cd58a3ab8b557f38e80dbc609d91c716e39078f8a32d6dae4e08bae1b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95map.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_message.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95message.go
+FileChecksum: SHA1: b0dc4af0c6fc8bd13d83e29564f50643faca3d41
+FileChecksum: SHA256: c6b9af4d1704a2ff0378d366286d51e6da9bb1d88595142228323cbdb429e99a
+FileChecksum: SHA512: f75004f778eceacad4802ea600c13d76ac37f4e38271e054afd4a786232839cd0f72fc5640825978dee7a48fb37bcd793dce0ead0bcb803f233c137be5646844
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95message.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-encode.go
+FileChecksum: SHA1: 4480928773f491d38054b7b39758a899681fe416
+FileChecksum: SHA256: be10b62cab10282e29dafbdf40de57bd8a5e7d326c7bdd04d4eeab64e9397162
+FileChecksum: SHA512: 8e3c8f858a48cdeabf4087dd6659427c1298a03fdc3959f38889f0f89fbca69df225db4f4b0f334d067b6b83c223151c63303154123709fad80e34471868420f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-encode.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/enum.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-enum.go
+FileChecksum: SHA1: 87e02ad44537f3e30914f7eeee05ae4e5e928b23
+FileChecksum: SHA256: d499b32c2e5c492e283cf2fd90b88cd2c5ef0c55a08b8cc358f2b4fab2287e3d
+FileChecksum: SHA512: f608f8710ba88018af13bcc99114aa7b3b7023ccc8244c7907bafc1973259d77e9dd238b7467ee397e832e21407d972bc2f0832c1d7b674fdeeb4051adc58b96
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-enum.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95unsafe.go
+FileChecksum: SHA1: fb61fa096c94cea2327826c7f9bdd118ed391a25
+FileChecksum: SHA256: 7b86a7c6defaeef07021d858fce644b69bf18dff4f9bf5d519658ad00650ecfe
+FileChecksum: SHA512: 435f14393af72d272aa068c782fc61f35e75dc69322728ed19a142a0b2190284c3d3a2a4911706ba88c385c2ff7338c060ea3546ff81652bbfcde53bbbb1556b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/convert.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convert.go
+FileChecksum: SHA1: 6fff1b7c6bc0461eab48a97a584be6880be042fa
+FileChecksum: SHA256: 1a8f6eff297e3c48f129eed851e0516ff1a5a8c97047992da32bdfb4871b283c
+FileChecksum: SHA512: 3b1e18fd6ee4327517def3944d0aef16e25423000f9beff68b84fd921678d8a8f1ba474e7e5672454fe6cfefcc9950e22dec2970ea6b31883d9cc35779f0ad4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convert.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95enum.go
+FileChecksum: SHA1: 55d0492c6ea18b8a183dcdf07ced41dd5e557e18
+FileChecksum: SHA256: 035b9f9e4a9f1c71225e1540a424552dc2e4528dc94d1e94f73563d3b8cbbe1d
+FileChecksum: SHA512: 5ccf1feab594db7b2812bacc11e29d252331d3687d2da7f6f551c27d56136d59ad13719cd7e8f32ed554426fe9a144de9b17f53a8324c91d0f075760144dcde1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95enum.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_export.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95export.go
+FileChecksum: SHA1: 9866fb054fa6a6d1d6c76d945433b0fdf77e5ab5
+FileChecksum: SHA256: 1b4d0af8633ad25a085e2d4ed9b39262cd511a305f439d3dd478310acf5daf00
+FileChecksum: SHA512: ada4cef3af0ce98aaddd4696e324591b603731e6d6b6c79c943741b061b04915f8645b586aa0ad2f2b09c26c04bf3d802fbc21d31d23022768f1fdd011f9641c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95export.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95extension.go
+FileChecksum: SHA1: 29010b281ef662e461ba35e2675ace4896529bc1
+FileChecksum: SHA256: c42ce87090e3ee5612ee47e32339456276559071a8b543fa527cb47721dee086
+FileChecksum: SHA512: 726b156f108c4bfadd95af7539bc9a5c39a7746c0f3d92e21aaf80e720ef8ac11ce2130bccdff2918789903fa8e375ee401251a9cd3ec44a65ddc0103773bb1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95extension.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_file.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95file.go
+FileChecksum: SHA1: 8cbb08d9edf7e6d87daa27447fef57d1b9153b87
+FileChecksum: SHA256: 907e47c605566c44c46476adfc3ddd33aae23bb1c81b19091f0f96dcda0d0471
+FileChecksum: SHA512: d0a00b47576a4764f0c80876e0a58cd9f866e304b1126312317b0eb49c45007fffa197eeb64968072a1eb13cd6e4f504c4087e4a38afb6922f2c04250e67c317
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95file.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-decode.go
+FileChecksum: SHA1: 2ef2ddb4095e55c32e8ca4eae3c1026cf7c5945a
+FileChecksum: SHA256: 10a0c32c2a6c9f4d65c40ce31a7cfa7bcdc3db04e13cba5fa90e04d0933cb9b6
+FileChecksum: SHA512: 0fe276b61a3a38f55f6e2290d3ba1a34178fd625dfc84f503976c47b5fc7d46c13d0740ee403a11ee338984c687ee4962184c4403ccf0441c10bd6a1284d4ddf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-decode.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/merge_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-mergeC95gen.go
+FileChecksum: SHA1: 75df6d283138282f50f1e5add85939e7bdd1f0fd
+FileChecksum: SHA256: 8eddd46272d1cf5e7de3e55f1c92646ad0fc1e2be9d5929633aa5b0813b5780e
+FileChecksum: SHA512: e40adf817850956831e71c9ba84d4f45cecbeaa0f073b587c53a342b90bf8851de90c8a2a8658babff837ff123a96ea1096531494fdd5df319ace8727bd4af57
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-mergeC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-message.go
+FileChecksum: SHA1: 63bb6808f0f4e82067445e096eea9dafc6d9ecc1
+FileChecksum: SHA256: 2ce38722d4a101c595fd88a2c71e50dbee7784785c7c96ced4b7867315ac4983
+FileChecksum: SHA512: 4567fd768200a3362dc0be5bf42b7080f820ba0c84ad9b970b788c6b3476c6120b7e9c2349baa23703cd083e31f4d057f82253329c06b3fa5c65121c846189cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-message.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflect.go
+FileChecksum: SHA1: ee67918822bed16ae69901f02471737229795138
+FileChecksum: SHA256: 29f7c4c1463afe3e7da25e6b1770526f2cc450b66a17739d5cf25e949e37bebe
+FileChecksum: SHA512: 101046cf6a782e92c5e54328da26d5257b455f571abb9e62fc369c3a3860a0338820a869d318dd2c219451e3f6dc75dc0e63dba8fd445d06b21f4757e72667d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflect.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-extension.go
+FileChecksum: SHA1: 0b91389aadb44fbb46fd82f65f3d15af1b983613
+FileChecksum: SHA256: 3b0e023a19f78cb2f05ea6cf16a1a430be43652d9b562c733ff9700780f8ebe5
+FileChecksum: SHA512: 3a69693b1e21cfcb0195d1208325bc925d9915c0ecd3545e95b3396811032cd6fc9b8eecb4850b5d1e88547549df13d2119a2fb6e0f256006e40218135e42bfd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-extension.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95gen.go
+FileChecksum: SHA1: ecbd6b7120db2db739023f820cc02ba4f2e7959a
+FileChecksum: SHA256: bc5a44b88a0e99d73ab973562309ec6070ac1e8cf704eaf8819bbe10fa608d02
+FileChecksum: SHA512: 9339cd56cb5c7b1ceb50cd768c292fa5979756b11511a3fbc76331e27d5a6edb21a890f586ff0841ca1b5b2aed0d7c61ddff42fa683e9b32eaa57b3143756f2c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_message.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95message.go
+FileChecksum: SHA1: 2c96a5652053759e7d73231355f96790d8b6bb22
+FileChecksum: SHA256: 4d726b41b0d60e5f85876eacd2bb9ec219e2e417b007baa8e54de90041655dad
+FileChecksum: SHA512: a4eecaf192d06d6a1256ea1ad49ffe01339d681f911fd5bf262f08cca2c7bcc46b20cadbb1a0586f579ca542c7ebe5c8290e0f6e6f8446135f29539d4e89b7b2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95message.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/pointer_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95reflect.go
+FileChecksum: SHA1: 56d873b615f3c30a075ef61ecc0e826b75d51754
+FileChecksum: SHA256: 780c03c6b9327347ac4cf5497a3b0aa7a0e3d7d91fe54036fea4a34b58d5b41d
+FileChecksum: SHA512: ea41bf672907498b7a01c8d260e6307f4b14e5183098815a79eca830fc4a58875ead6157d3ff10ee24a5e4121c3b89b9912269a835c2fcfe8fc2acc004202f73
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95reflect.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95unsafe.go
+FileChecksum: SHA1: 605c4811b7db4e9b39432ffdfbee4ea2edaa6b9e
+FileChecksum: SHA256: 0e5ee86a2ea9f20902d587c4bb5d3e17669283cb4f945436d4a7064a7761bec6
+FileChecksum: SHA512: 05e3a5cf046e8330402faa2252c18bc43824b059c9ecf43dd90f3807a82f73a17535c9e196ad94c45f3748e1f02057bb5789dd81ca9193dc12a99f44ee6c252f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/validate.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-validate.go
+FileChecksum: SHA1: ee403ac6cfbf6e8b94d6327528ff8322efe1a1d6
+FileChecksum: SHA256: ebdfaab6cbb8346ba1c084c0c1a46c8628440acac40e91f3bbf3ee57be650def
+FileChecksum: SHA512: f2fbb31fbb3d62084e0b390626cf6336bd6c0ce2a8816cb5860d104c7cb30b04fb18872d909e5cb778593b2c4aa7e56bba176e8fb10aaebb31db41fe9aa158be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-validate.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/merge.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-merge.go
+FileChecksum: SHA1: 72b127edf43f4b36af78d16009c80bcc3e1a87e1
+FileChecksum: SHA256: d30337d862091897415bd9d65e0cc17b9340df2c730475d68313eeac4f8f2426
+FileChecksum: SHA512: 821c54e460f16c47687d807d1c3c1982a9c60adaecbcc215521807b09d20aa35d68afd1635a29a268db0cb6f986fef720667a8bddf587977f21c75af6062504a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-merge.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/weak.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-weak.go
+FileChecksum: SHA1: 212a8666ddb9d4e1b505fdf64023adf0b55763ae
+FileChecksum: SHA256: 26a805271f86ba6d2cdb90501965fc18a5e9297f69f927abebc2e1a85c65b12a
+FileChecksum: SHA512: 79939fc5b20298411f3eb377010e67d96175ce3ee416a265924255db22dc1f2fba33cbd6a3edb124ad8ea8adc622d3addf4fde6f8d15e301b81167d82f757fe8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-weak.go
+FileName: vendor/google.golang.org/protobuf/internal/mapsort/mapsort.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-mapsort-mapsort.go
+FileChecksum: SHA1: 075c3c1d06e5839dc40f541e59e3fdb995d3f4b2
+FileChecksum: SHA256: 99192d4436c189a7f2d37448300b50ee69c139343ad3d13b4792b2b213351b2e
+FileChecksum: SHA512: 5857f9e71dbffc369ff3499e432a57aa260bc27c70f4c0dbe7227beecb17a9b28f896ed095280bd4859f898fb2ed3b80fa6787df68e4c6c9ca3f1a7907199d4b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-mapsort-mapsort.go
+FileName: vendor/google.golang.org/protobuf/internal/set/ints.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-set-ints.go
+FileChecksum: SHA1: ad30f4e7126ac93707388032515989f196974621
+FileChecksum: SHA256: 5876c26b3c816d4f662b737731e89d3a44317c798c6c5400526c32387292e16d
+FileChecksum: SHA512: 69123d060f54c2e3df69cb3854317638d94e5e90a53391bbab9c203d519bad958c78ed52b1387ab839a1737ac3f2156b2ffeae751c35e297d67897acb05a601f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-set-ints.go
+FileName: vendor/google.golang.org/protobuf/internal/strs/strings.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-strings.go
+FileChecksum: SHA1: c29c49fa58955359a66736b65ea91bb1541eaccf
+FileChecksum: SHA256: 1101429ecd8fb7c5e6d7d75451973a8b74209f95332d5cf976d73602a4193085
+FileChecksum: SHA512: ed3c7b6eb92a8d5206097cc3caeb47d9f5882f7599f2e5e2373bddb053bb5da282775c0cbd659faeded96bd175eabdb2ae03c8156d900531255d44ea1a68954b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-strings.go
+FileName: vendor/google.golang.org/protobuf/internal/strs/strings_pure.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95pure.go
+FileChecksum: SHA1: 31e50ec38964540e34a89005be9ff7a8ddd40a81
+FileChecksum: SHA256: 8035cef39b9c9a3721fc275b2dd48c483b98c2440c511a4a6ffaca43bd9d09c0
+FileChecksum: SHA512: 937a1db39aa994f4dfd260375912cf82596f3c5f630f431ea3381d3d0194dc64e75997f4f2f616c5b7bcf531e0a35b38a5141f5efd4fe2ea39b9a9cfddd57909
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95pure.go
+FileName: vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95unsafe.go
+FileChecksum: SHA1: 06a5303b6982a8937a553fd4332da6d123a47ce9
+FileChecksum: SHA256: 4f4a1ad62c6473a2f1e2febd195355354f267eb2bc35eb981093453a63d4e362
+FileChecksum: SHA512: f99f6e00bf6172da240af697abe7428aeecc94d14dc418cb5d53941f2ebec7d46a11063327f5622ecabb491b3ec11ec6046002d2187a1fc9873d9e5ae39dc1f4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/internal/version/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-version-version.go
+FileChecksum: SHA1: ce7888ddab60e35741eea11b1112f9560cc224f6
+FileChecksum: SHA256: b145c89e1e2dc628d95ab1273c018274a417a95664566df93f64d012fad89cc9
+FileChecksum: SHA512: 7e3684958469e134fe141e9e80440ae10611700ef1c233f58913e6e5f39a3768518ab4f9dccb0ad91b4e0ba4d4e7cae9e83fb2d32ffa5a98a814e41ca6c46203
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-version-version.go
+FileName: vendor/google.golang.org/protobuf/proto/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decode.go
+FileChecksum: SHA1: d9f1d0f16b5d8aa8cb0a824c9d19e256dc365c58
+FileChecksum: SHA256: 144ef539a0ec9d0f5bed130574466cb61b14362021c8544fe7dbd3d9d5b7e1eb
+FileChecksum: SHA512: dce6fd204e0aac37058e8eca7b44044239a3c0569b79888994f9f394e8d5ed19b26ba3fe3463324afc7de005e5a86f7c33211686d1990273e77431a590ed0a1b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decode.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95field.go
+FileChecksum: SHA1: 188db9bd9299dc9f57c32c9c3c2e8b0210f14e88
+FileChecksum: SHA256: d26280244346aa029990e319891b48d8fc6d29e620924afdd981b918e7385122
+FileChecksum: SHA512: 90a8465feb14aa253276e617df37e975781d3aaaed9c71879c6624499d4e3972068405e74038378f42a43233624abd07d65057b115483749f2bac686cb5b7aaf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95field.go
+FileName: vendor/google.golang.org/protobuf/proto/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-doc.go
+FileChecksum: SHA1: 9482cba8da6e6ed2661b52d96050805c747a7b85
+FileChecksum: SHA256: 0716184bdb416018aca164c2b03e188dcd3f70d5a6c0cc0b8130b0d07ed029bb
+FileChecksum: SHA512: e4be5f0868131545bf4b9ef1ff488c21ad8d6defb58a72837b244a17677b9a0193a116341972ae656bde7594df787d07413efe16c65046cfd43be5c378cbba18
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-doc.go
+FileName: vendor/google.golang.org/protobuf/proto/decode_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decodeC95gen.go
+FileChecksum: SHA1: 07a2190521d3e60c1f27936551bde8ec218b6f67
+FileChecksum: SHA256: 6c57ab97a6e3f33c7e46589933c4d8e2a152b0f9784aa3a2cf52a19181ea2153
+FileChecksum: SHA512: ea5586404d205644660bc20bef8fa979dde83e6eb8a1aafbb2d29cd3650fb19a82d55a1e8a59bdc701fad440bef5bc32cf7b690b39317f04260276c1997de546
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decodeC95gen.go
+FileName: vendor/google.golang.org/protobuf/proto/encode_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encodeC95gen.go
+FileChecksum: SHA1: d87c35ae8387bf9306d2f8b88d16ab8b168c449d
+FileChecksum: SHA256: 8a5d8bc917c21a19c1c5ef4b58f747880cfe1321de1294662d0ee2c903c7dc9e
+FileChecksum: SHA512: a9375b42be331ee254efb5282cac3c824cdb6a2efd89d5f4bb39b0bf892a6f80c7712822153959abfe7a982e6e75c02a79814ce525d599a81ea8b4a5db8ce56d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encodeC95gen.go
+FileName: vendor/google.golang.org/protobuf/proto/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encode.go
+FileChecksum: SHA1: dc5c923620a91ae52a22238e7ea76ad11715cc4e
+FileChecksum: SHA256: 149e16b14c8f6c34fe2ebd1cc631d983f144e81287fca79c68c6314d7f4bba2c
+FileChecksum: SHA512: cbaeb783855cdc468680efcd7126ef1d65a421ba1de5f362becfdeacc8145a87ee5752b86adf847c147cc6d4749624dfa11891482aad71689e3ca442163bb226
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encode.go
+FileName: vendor/google.golang.org/protobuf/proto/checkinit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-checkinit.go
+FileChecksum: SHA1: cea6dfa3d616416eb8ef17253a262928559b64f4
+FileChecksum: SHA256: f95547595ee464a0d2f2bfae729afb61c91c5ed3bc64f089949b4b1555a71b9b
+FileChecksum: SHA512: 25f8c11583c24858a4a88aae676ace93060f7fff37153f8f157e0f211f58659f336dce65f6d4b5b67e5e63b21039462db519913009fbe79b1121d9a64e3092a3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-checkinit.go
+FileName: vendor/google.golang.org/protobuf/proto/extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-extension.go
+FileChecksum: SHA1: b95c5edf3bdb45dfd88a4ae5d096c1ee28b4ab83
+FileChecksum: SHA256: 54aa0b5cff2b460eaa7ad03a9c1c19fa8abf92052e2927b6895b0fcd8de60e15
+FileChecksum: SHA512: ae9e6b8ba757e0b67ffc248d2044878bb5e1058480dd9aeeddb9d7ff75fdc7d4257694362167b6d9dc6fb5b76cad351d044bf513a4f6c307d674166df2e14912
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-extension.go
+FileName: vendor/google.golang.org/protobuf/internal/pragma/pragma.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-pragma-pragma.go
+FileChecksum: SHA1: 5ba291cd9426ff392f5de5562286feec4e27ed0b
+FileChecksum: SHA256: d3babf1e4b0b32f721a0dd3e6c3e31fc573d550fd9a1d51e543f40482b0fc6f5
+FileChecksum: SHA512: 20ec67356fb0a20c3cb332fd0f0b609329bbbb4d2c1ba9caf1af081e7a7aaf366318de41228074a476cca023088042dea973db8e7c18e5935cbfc943a1964ad9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-pragma-pragma.go
+FileName: vendor/google.golang.org/protobuf/proto/equal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-equal.go
+FileChecksum: SHA1: 416ed353e36a06b93a2853dd6d768199d2c358b7
+FileChecksum: SHA256: 87d5e91624fc63cc1fed9ba8520bf9520434abe5a99508967e98b79243f94b62
+FileChecksum: SHA512: 747f577464f6c172d76aa375fa2e3a4ba436b7f9451f03b07986021cce30986a556231268c30b2e04482dead461d93fb9bd7377d5d826c15eee78b5dfac6eb60
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-equal.go
+FileName: vendor/google.golang.org/protobuf/proto/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-proto.go
+FileChecksum: SHA1: 893c7245c083dc97fe2229c139bd40a82d9a840d
+FileChecksum: SHA256: 230d666f013efd1c1ebc4f174a2bf25eefc8503c4ecbe9841428115535b054c1
+FileChecksum: SHA512: 7e42da18a7e6e0611f9a6111fb24ba8207ca39b3018f9578386c50d3fff538b0352f709d96aae0d280ee74ae2d04dbc81d9edf65f73e0ac8a38e5ec0bac00a22
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-proto.go
+FileName: vendor/google.golang.org/protobuf/proto/proto_methods.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95methods.go
+FileChecksum: SHA1: fa1d99dc9eca391375ebecac9344ca67b45e2186
+FileChecksum: SHA256: 403b59ebc34a0604c7d749afcd073337ab76cd0d17a1942df5e912e02084739e
+FileChecksum: SHA512: 1ca8e34899900f70fb08b94f99dcb4897d004a951cfe3ef3981420f1d67b30f198ba978a5472868f1e190b8ee30a8e9fab75dd6749c6052a88d3d2f6c9134542
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95methods.go
+FileName: vendor/google.golang.org/protobuf/proto/messageset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-messageset.go
+FileChecksum: SHA1: da4113e7f44d1895bbce2ede67dfc3c166e45730
+FileChecksum: SHA256: 97634bd5df21b92fc28b4bb234c4fc946de62760d0eccbebf111b3cdd9d68b07
+FileChecksum: SHA512: a518e01178bee2c13ec948427a20d235c3f829847046cfee54743c9023056c3e0206dfb2d2209a76a9269b7d98c6a1b628b90193a8862ca341ef2821ac87e3ad
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-messageset.go
+FileName: vendor/google.golang.org/protobuf/proto/merge.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-merge.go
+FileChecksum: SHA1: 0ce7f57710448bb4ffacbd292e20877128cdfea9
+FileChecksum: SHA256: e61f30b779711ef188c14da74baae4da23447c99b75b33e24aefe2f2fe0e772b
+FileChecksum: SHA512: a7786cb43a176b2e28532ddbccd52d5f9d7abc2b943329c8a42153cb5bf3118ceb83d19570561e859078331dfdc83e286543b7cc4b3fa081e4b6d8a7451248e4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-merge.go
+FileName: vendor/google.golang.org/protobuf/proto/size.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-size.go
+FileChecksum: SHA1: d1387fb5b0dfa051f2ba04b1cae993c0159af374
+FileChecksum: SHA256: ad7a512e3f9a9eb61e2500461935410cfffe8782976d76d124e2f593e7f55bd6
+FileChecksum: SHA512: 458562ae87f1877e820dd4681270b12d0d89054013633d289dbb59f4ba2f3acbeac37f4f0fba6a49f393758e3d97fb1d4896efb55b62f9a0dfd3cc917c1820b3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-size.go
+FileName: vendor/google.golang.org/protobuf/proto/proto_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95reflect.go
+FileChecksum: SHA1: 4902dc472aac21b257eaa029138212197be89ddd
+FileChecksum: SHA256: 9601a278763c963509a7bab893a298263c1389aa9632b943dcabc876c583ad09
+FileChecksum: SHA512: 7b219b47f592de2466bd3dc3e721dbc5b82dd73dd2cd9881db279ce0083da6b61a8dcf086e18c6d008e61e1d15009ce99f7c3c710fbae5b835fb5d565006df2d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95reflect.go
+FileName: vendor/google.golang.org/protobuf/proto/reset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-reset.go
+FileChecksum: SHA1: 826e3b1dabd222d91fe768b630fdab05fd06f132
+FileChecksum: SHA256: 45097aa639f3c64a5533572cb1968d3870c985b3e0b021ce5c0c3b4934768604
+FileChecksum: SHA512: 216bd4cf04bf3b5fdeef20202b6378468aa35f74dc641edc54b4473b9b647ed09bdf21392bd02a03182a94658f56f0669ac3cb39047cb1286e0ae3cd0be475a9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-reset.go
+FileName: vendor/google.golang.org/protobuf/proto/size_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-sizeC95gen.go
+FileChecksum: SHA1: b89348b5c3f8ea25cef26a3eeaecdaa9a2c87949
+FileChecksum: SHA256: e8def0182318c353c022c973eec36615c121078ac405b059c7f02fad71c86b8d
+FileChecksum: SHA512: 5322df15bee00808b8dbfa9e6d172c24d8e11113a208e85ed5dc7a6e14a21703d89b78afbaded5ea1962825e0ecb3978a067293305d5d014f74ac130e081fcda
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-sizeC95gen.go
+FileName: vendor/google.golang.org/protobuf/proto/wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-wrappers.go
+FileChecksum: SHA1: 97e52a945bc5f096aaa0454f1471191e33d84221
+FileChecksum: SHA256: 7068ed0c35932f990aa75bf00d30f6a2d2a3c2c89ebd14ac07aec523013fafb4
+FileChecksum: SHA512: d3e7901422aaf18f94ced3784f97c77cb66643bbb57ec8a2f4bf3a5686cc745cf19b717dd8e55d0fba368463cb319f4c440dd5cae1bfded6dca2153384dd4206
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-wrappers.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/source.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-source.go
+FileChecksum: SHA1: cd29f3aff286f67a80f9751e5ba404fe2e5297cf
+FileChecksum: SHA256: 2fa59e93c1d892b567212f8bb412d170c194ed75af21371ad9179d9cc9976feb
+FileChecksum: SHA512: 7bde59e72d93d1361c9bb558eb50ca90421fdd4409d2cfb7c01a0a33957f58b067936e36eaa8dabdb02d7c91aa8d2fae14c2507f8c79539aa81763f0a140da26
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-source.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/type.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-type.go
+FileChecksum: SHA1: 0ad55d5b6876a79cd31954654bc6c617a1bfd054
+FileChecksum: SHA256: 970bdcc58e3abb2d51a74973f7284d346540d2adbead499342b6bb983e858d04
+FileChecksum: SHA512: fa3c43ae8faa7769a3612669f5fd35f6cf954f9c5cbf888279abf7673f8c080dedc867cdc10726693fe2ec14dd473fb5dd7fc221f4b996d780e858fa772795ae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-type.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-value.go
+FileChecksum: SHA1: 54d7fae57e0325ebd3a2f79a7d8fdd362f25dcbb
+FileChecksum: SHA256: d2ab197e32f28cae1ecaf4ca63b54e28b374cdb9ae7468e2c1864837934ac14d
+FileChecksum: SHA512: 15dd8bf28cc19bfa4880f2e79e0b1b3c2d883cf6edbfea2500bdc729585e4d6301d793ae672c694ff2a219ca98fb90116be41e8c162177cf76a22681f4e79dba
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-value.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value_pure.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95pure.go
+FileChecksum: SHA1: f1b3edd391cac8ead6d4174933625d5d912b1bb0
+FileChecksum: SHA256: de6c6ff68af94520900db7f63dc0b60f84dcc0b6522adf29f1b0b7148bd51347
+FileChecksum: SHA512: 2cb2d2aef27da0f4136a9cae250ba6d7da9f37502d18d85920052dc8dfd5f73b8a1d5995b1002f78d0ab3286953b166d5a301209c17010ee166cb04237e2e3f8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95pure.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-proto.go
+FileChecksum: SHA1: 29e6f657c3d8bdc066261889a5fe9ae1a5b98937
+FileChecksum: SHA256: 61759143558734b5ee8e2b0332a2c84c0d92ceb1f2722e125e8a4b99d607b4ed
+FileChecksum: SHA512: 7313f2056b221d16ba734dfb5e82f67c6f1cdc68facce12a94956fa3fee11361b7bcf3ea3fc590374483953550bae419be702854f5c178df799bcb60eef69cad
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-proto.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoregistry-registry.go
+FileChecksum: SHA1: 6e1e7733787ec946963a8c1752d047755c7fa4b2
+FileChecksum: SHA256: 6bf92e3eeaa276ed0acc6a194bba21d8f965cf771393d7c224d2baa5b35d2983
+FileChecksum: SHA512: 383b112d990b8391a9817339ca36a129c44f1e2f87a8398fca8e8cd3c1dd1e63bb8ce59ea56156b972aec0649f46e31fd89a2409652aacc95e8aae234aa3e68b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoregistry-registry.go
+FileName: vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-legacy.go
+FileChecksum: SHA1: 8fa48080d16dad3e6ded79a41906f6135b5ee76f
+FileChecksum: SHA256: 9d79e425272f9fa102c269f4cb7f8cbe405d0f2a9af075e150235df30b3bd617
+FileChecksum: SHA512: e3ae8d75b10853cd7c72064c3c1d37b70f66871574b0610c0469a48eb207dd2c21f0d464324e8c924250cdb05af57afdbea5acb683e95285651e8b2d03b08cd5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-legacy.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95union.go
+FileChecksum: SHA1: 24079e0834f83114edea45ce906814cfd98f47cc
+FileChecksum: SHA256: e90cca45918b151ac9dd54862aacff55c37401b6590d8deb3b0ce9028e26b57d
+FileChecksum: SHA512: e90817684489e9002173b4ff94e80336d622b90248abcda0fad5a969511621f7c983d79e2472c4f6f0c6bc9669dab5b3508fcb4e41b080e2c33cff430b1ccd96
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95union.go
+FileName: vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-impl.go
+FileChecksum: SHA1: dbcc4b5a06fb53c466858ab7104fe429b2ab95e5
+FileChecksum: SHA256: 5b70e0a626c02c8b783df9b03ddb813cbda5ee46e20de1f24019941366270d68
+FileChecksum: SHA512: 4a99868e15f170efb7a17aa90781f1b48cf839f977c451b17627cccea373d628200d0c120b529a4537f39167066141af09d15a659c7ed92287c269fc96434a68
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-impl.go
+FileName: vendor/google.golang.org/protobuf/runtime/protoimpl/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-version.go
+FileChecksum: SHA1: c6b746d28024a8b67b654d4244060fccb5b0ef64
+FileChecksum: SHA256: 6ac8af48d058eb904fdfd5e255f619aebd35c9d4a279c8d5dc3bdebaaba9e4c4
+FileChecksum: SHA512: 2f6ef690218c2cb13543b34fb241f18b2e5ebc436b87e1295b21290802939b610e7bfc95676a95b170faf0cf917382b7fbbe999aa4edd560bdd368a016e00b4e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-version.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-methods.go
+FileChecksum: SHA1: 80ab680937fcb418f6b1e4ec42763d10c8e5ead0
+FileChecksum: SHA256: eb6b6f74acb6b712f6107d24583b743b188d5b244b55a229f6293063165353f5
+FileChecksum: SHA512: 0d2a8bf00fa5e7adc80b5b94671abe95f92ee27c2b2d98d7398ff5f1f75c1f778f4a54692d082737d92004c3d2d5ca66e287c6c66f65f009b777c8eed640ae51
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-methods.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95unsafe.go
+FileChecksum: SHA1: e2b010e0ba7754aade8244b42dba2c06589ad8ff
+FileChecksum: SHA256: 2d9860294bf3358dba75335dcbe79f3da35e41ba9e7218fddf61283ccf98dc2c
+FileChecksum: SHA512: b93665520fea0af2b759862704f8ff7067f781d6cd4354c0ec0871e3a1141c31f9c59fe01a5d9a825742c2045a4e2bd012a8f2eea30450e5a15d9ac90af1aea8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/types/known/durationpb/duration.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-durationpb-duration.pb.go
+FileChecksum: SHA1: dff77855ce08874ddce02ebab663f4218fedac96
+FileChecksum: SHA256: c967ad2abda5c54e96212c9e9d4a3532ab41cb5c999f642210d6694d8fa4e525
+FileChecksum: SHA512: 9624285eebc5cdf93845b73288c5ff7ca7d32632fa17d1eb3c50ca4969a6ce87aa2c33fcd1a9f6027f018a2ffa5aecbeaf6d99a27a825b774fde992c60ab6585
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-durationpb-duration.pb.go
+FileName: vendor/google.golang.org/protobuf/types/known/timestamppb/timestamp.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-timestamppb-timestamp.pb.go
+FileChecksum: SHA1: 815d9ef3aad14bcf1c8dc28a10b6b89c1da84899
+FileChecksum: SHA256: a59c0ba465252c50aecbbe3e93073f81e42ab7e857701e28f10e3f389e501668
+FileChecksum: SHA512: b76887faa438c7c7e442af258c62ff2f7f486e7ff097e93759670aa8eb401f1196b266a3dce6e7fdd6aba0fd1551bb6414134e23f91fd00b086d3170ce36d16b
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-timestamppb-timestamp.pb.go
+FileName: vendor/gopkg.in/square/go-jose.v2/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitignore
+FileChecksum: SHA1: 1b7a5b2180edf87945d3aa1a714ffb1c01debf61
+FileChecksum: SHA256: 47acde1b5e6615f91624cd3ad60598f70a848bcbc3297c258d5734cd002f7eea
+FileChecksum: SHA512: 0d2023428b2d359034d172b20355152fc75c01d0a4d58249fe53189fec2218bec901d639ddfb4d277db78dd33affa97639839e2c82952674f066748dd4806133
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitignore
+FileName: vendor/google.golang.org/protobuf/runtime/protoiface/methods.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-methods.go
+FileChecksum: SHA1: f7b1aba0cba5e8ee84f1e3a7c765a007da013914
+FileChecksum: SHA256: a6fc53cd7f7cf789c5dbb2699348feedaf8e6464db64a2cbab79b1dd2d6a4774
+FileChecksum: SHA512: 1124b2f38db825f305204f1e399a649a7a6fb2a09f3d0b0a711f96aea8db4be9993e03523cde411d13a8c07e9eeebb9b84c97d08f5735c4b4557e1e8a648be8d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-methods.go
+FileName: vendor/gopkg.in/square/go-jose.v2/BUG-BOUNTY.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-BUG-BOUNTY.md
+FileChecksum: SHA1: 01997e41f3c6e24fdfe24d14ee6da4ad4e726dd2
+FileChecksum: SHA256: dc2ccd625b02e966ba7d664fb57d1b84d6569a8ce11aea29d5d7d85cfa683e5f
+FileChecksum: SHA512: 4c4a2fb8beb1fb9c680ed4dc3238436a99ed9483a886ea6ba176b7a5dd1c5bb3fe81a87177ff2cf3dc7ce1cc869f81dcd215fc41a80f7a5e23e63e306dc84460
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-BUG-BOUNTY.md
+FileName: vendor/google.golang.org/protobuf/types/known/anypb/any.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-anypb-any.pb.go
+FileChecksum: SHA1: dd280a6db7de284232dd1fabe70bcd88ffb38171
+FileChecksum: SHA256: 007e3a5bcb989faaea82b86d16ecd4558135458cfd89a77b1ba31774f7f8b696
+FileChecksum: SHA512: de01e8cdafd67b9a39143a7d5acab0f71df9946b4fd0769c74fe60e34de295f07300cea564c419baa78474447d6ff2819305b647e7a91ae1821942b431f1be0a
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-anypb-any.pb.go
+FileName: vendor/gopkg.in/square/go-jose.v2/.gitcookies.sh.enc
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitcookies.sh.enc
+FileChecksum: SHA1: 370b9d518c92c29d3a726c286fec0819d98e7916
+FileChecksum: SHA256: a8fadc1819593e453f81a2176db9b3fc25c43ef0da034527aae95f3330ffa0a9
+FileChecksum: SHA512: 594ab6122d0c05a5869312ab2ca59469f9fc9f2f47b421e895818db5c4819c196316b9cbab694d0b49abc44333bb8e99b7255438dc43792db1cca635c903ab5d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitcookies.sh.enc
+FileName: vendor/gopkg.in/square/go-jose.v2/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-README.md
+FileChecksum: SHA1: a17dd4858e5998890ea4bb0a8fd9789cddae23d5
+FileChecksum: SHA256: d5d4c8331e8ea6dd0f4e0eb94a13fd35572de1e38920ba38530bdd99c5a0d250
+FileChecksum: SHA512: ee293e9481c147dfa1c076f9f29605e4eb34b3378c18a54bc5962971488cc158ffc583d8e894119914eb28e207d5b599c5e9ccde58d9145f22f3175f55a8fd38
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-README.md
+FileName: vendor/gopkg.in/square/go-jose.v2/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.travis.yml
+FileChecksum: SHA1: 9ee06615546963bbc9b4d04b772b36ed00492520
+FileChecksum: SHA256: 93524449d1834c23da20f0024d71c78468ea389f1bcac8461a505ee25eb947fb
+FileChecksum: SHA512: 6ecfb0bd9e66f5cf9690593e5b226c55fc5d591b76634238e0cf9f3a54aefef68cc4fc04b819853e6c57817f5e1310942a38a94db43538b8fc82a12abbe7bab0
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.travis.yml
+FileName: vendor/gopkg.in/square/go-jose.v2/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-CONTRIBUTING.md
+FileChecksum: SHA1: 14ead06ceb60bb0d96ffbb6e8483545f4bec4b17
+FileChecksum: SHA256: 030393eb005c29885b19fb97be10faec14638391683dc9c8d1afbe41edc91ce0
+FileChecksum: SHA512: 92c12e5ce9e047f103ca17e44efc3dc0269aa422fe210501811edc3cb7c5e8cb903c599152029bfa39854992cf9b424ae03dac9c84e484a7a40b1346dad5510c
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-CONTRIBUTING.md
+FileName: vendor/gopkg.in/square/go-jose.v2/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-LICENSE
+FileChecksum: SHA1: 2b8b815229aa8a61e483fb4ba0588b8b6c491890
+FileChecksum: SHA256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30
+FileChecksum: SHA512: 98f6b79b778f7b0a15415bd750c3a8a097d650511cb4ec8115188e115c47053fe700f578895c097051c9bc3dfb6197c2b13a15de203273e1a3218884f86e90e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-LICENSE
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/cbc_hmac.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-cbcC95hmac.go
+FileChecksum: SHA1: abc6b7ae2994bb42e708efd9f4ec9f611f2c0a51
+FileChecksum: SHA256: f25841a12013152249a0446621b3300636d62e18b3b06ac3fd0ea9ca6c322bea
+FileChecksum: SHA512: 4dddd226f7238e4ae39f6ee64cc282b2ae9209d2cc10233bea63f3dd5a7a71f126871c8c895cccfc505908ce5e97a097b28d6bd87a97b2fab4382a2bd99e6a3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-cbcC95hmac.go
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/ecdh_es.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-ecdhC95es.go
+FileChecksum: SHA1: 4f7b0d774e944beca8e9b96e9780d182a72b58e1
+FileChecksum: SHA256: 14f403591026951c84d3e11a2a328c2785d393e0372a4bbf59a4ffff383582b5
+FileChecksum: SHA512: 610164a24ada379c9b2c10c7f439486191f4e76da68bb96f772ed50da1ae277be2ac70729f416bab0ca94e553ae63426812bbd3dc4efc264b87e8ba3bf3c9c25
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-ecdhC95es.go
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/key_wrap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-keyC95wrap.go
+FileChecksum: SHA1: f957aef82759a9e9057020e4a6b555484a8cc2f1
+FileChecksum: SHA256: 53aa8437cf834453ada71481af17f2e3a7cd4ff6af376c34dcc8995887dd7e17
+FileChecksum: SHA512: 4813702e2821310f43efeb3a988d7ea7d639268e0cb119bb083661f373e35d2ace197fefeecb5db4b48a2cf8d3a983af32842f03f2b1eb6e0e8b8b04c2040724
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-keyC95wrap.go
+FileName: vendor/gopkg.in/square/go-jose.v2/asymmetric.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-asymmetric.go
+FileChecksum: SHA1: 213e47278ec13f7f2723f6e85a4a8593019a31fa
+FileChecksum: SHA256: c657e055c2ad7ab0b8a33801d2bcc66b094d6c2e6c96a42041540477eccc5de7
+FileChecksum: SHA512: 8f9b58e78150e87bd66600fa7cf5ea4f92d7bb3c4745a7036cdf74b253a09291bc10bc25304a330e427a0b4794d65a15943567c75f177a00653137bd14576ae4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-asymmetric.go
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/concat_kdf.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-concatC95kdf.go
+FileChecksum: SHA1: ed19b64073c6e38e5e2a9a687657cad576d5fb1d
+FileChecksum: SHA256: 84608a8c5a5f7fde7ec993a5c3fcecc5a0c7e1781b11c651c9aecd83c424b20a
+FileChecksum: SHA512: ebdeac637f45dc64dbbdacfb6d31fbd7517a328711a352414462c728896677283ca2b16d693a4d68c6491e5683eaa03d817181c7758544ed35b31acde1732f5a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-concatC95kdf.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-LICENSE
+FileChecksum: SHA1: 7f7a12bcfc16fab2522aa1a562fd3d2aee429d3b
+FileChecksum: SHA256: dd26a7abddd02e2d0aba97805b31f248ef7835d9e10da289b22e3b8ab78b324d
+FileChecksum: SHA512: df64739ed62fc2c441d15387a595211c0090e5694c17f93b7e289d78c2e6e123edd0373ea04f8f4d4ae21a079dc7c71c82f448d7c9e734e88c54607507e13de8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-LICENSE
+FileName: vendor/gopkg.in/square/go-jose.v2/crypter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-crypter.go
+FileChecksum: SHA1: c938606a1741b6149dcf7d334353eeed33f1b7c0
+FileChecksum: SHA256: 0651665683d6677c7c2e98f99bccf04cdfce3b68a5fea8d7f1def8954c35aa80
+FileChecksum: SHA512: eb1ca1bd2d80a6e1e6f67ab1bf63bd1850b007165d29a5e084497b9b9894687db315aa5e81a1ff483c6b4c063d178c92c27ee6468d8c416074dcecc137c3412c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-crypter.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-README.md
+FileChecksum: SHA1: 8c81372fd464832eb90491ae1ac86890c574b3e1
+FileChecksum: SHA256: e5c0051f54aec2c7bacdcd3b216bc3f9c8d1a3f9c4583370e74ea9137b0849b8
+FileChecksum: SHA512: 69418d186b2d64f69c9865f31a4688194fdd54be49ddd4f92ff70089f1d4467a7bf48241c4b78640f661103b13a8671ab72e92656de30463837aa0b7f7b06a07
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-README.md
+FileName: vendor/gopkg.in/square/go-jose.v2/json/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-decode.go
+FileChecksum: SHA1: 964d222562d07c0a37da46b170d677c4b42b8b0f
+FileChecksum: SHA256: a9c1be43e2acc94eb0c60c3afb7e1e050436fc3207d6556ff2361c138c783549
+FileChecksum: SHA512: c257f02927ed9a601b2cf87bc7b07a307f3db0afd88aaac03f9a41d24a06d1e615d8102b14948770bacd7e6c3fc77f21bcb104b40e583a38309ee8e80c5ec935
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-decode.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/indent.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-indent.go
+FileChecksum: SHA1: ab41112d0dbca2a0d49ea8e823edf69103484668
+FileChecksum: SHA256: fe95485e51867d61a5b6096bb8288fc6af2ee057f700688354b04dc71d44f5de
+FileChecksum: SHA512: 7585084fa738454d92ab8f6e3af525642ec66435800bc3e30721c0c5ec885e4a83b60ca1a042599bc670b5c79ef26e44169c95c8a2022f6d2d5ce005d20dc65d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-indent.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-encode.go
+FileChecksum: SHA1: 0a2acac0de5cf17ff708871570b271a7f98dac4b
+FileChecksum: SHA256: 46c1bf443e005b4b1bb55279c9d07dd0e12bd2189d8f3d0bf5ba28a9539db50c
+FileChecksum: SHA512: 4887c630d24c04760db4458aa0cc70929655adcc72170d801d62710abb8ecb0e950c1f5cffff423761752730036cb053faa672526739921370bb58c6332f75f4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-encode.go
+FileName: vendor/gopkg.in/square/go-jose.v2/encoding.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-encoding.go
+FileChecksum: SHA1: 2da1e4c28d168cf07e3513c06bfcb6ba1664c579
+FileChecksum: SHA256: b3cf59b27ccf20d76d572d301ff63714f0864e740614558715715bafc2a56f53
+FileChecksum: SHA512: 8c9bef1f8527378897ae1d7eb210985981a1737dbda91f314b8d02af83b486ada2b298094cdeb9d320204b759633a3d54e310bb2144ae510c194c8b7599aae20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-encoding.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/stream.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-stream.go
+FileChecksum: SHA1: 0cbe8df28d725aee271bc6b85811f52197872aeb
+FileChecksum: SHA256: 99bd38c9547c4044c27351e4810e65f005e73d87e03224d524b484c637bd779e
+FileChecksum: SHA512: 18b6b4151ab2586bbb917f6fbecef0ab7984a399f963412e24122c6e0d9e94790e58e2a01671df16a4ac126ea1b35bb5851d6140a2ce30454151d42c2fef04d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-stream.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/tags.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-tags.go
+FileChecksum: SHA1: c8266bd6f628dc384c4cd0df60585ff562009dc9
+FileChecksum: SHA256: 2fa51c15e906895f21a9055bab4571573a68091b795335a814f0d4ba87403658
+FileChecksum: SHA512: 3afa78c044a397c387302d3074052d57e6791a887487f5eae5de28920c2df4d80ded366f92f8df046671a95304778f7ce56538713391893f0d8cb7b35be16259
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-tags.go
+FileName: vendor/gopkg.in/square/go-jose.v2/jwk.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwk.go
+FileChecksum: SHA1: ef63af14e3dfffb190af877b7574575614f7582d
+FileChecksum: SHA256: 115e2d98cd60cc698442227a6b5c8db2fb67927b3e3da37a447a242f1a83a5a8
+FileChecksum: SHA512: 8321164c7080bc38d812f3bb2bae70f032d0978c468e32e5efab60795b969e15dfa7ed9ea6a3c3bde8a9ed02e4cf931495ee5914f14a2a80c45d518c12f73e84
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwk.go
+FileName: vendor/gopkg.in/square/go-jose.v2/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-doc.go
+FileChecksum: SHA1: 8e7de39b824ccdc164a8b7c871f4a8ac2ed954ae
+FileChecksum: SHA256: b4a5a6daa59a326abb2096b816dd0a096971a3c6fa83e8272a5407293b3878b8
+FileChecksum: SHA512: cf336e14865613e933011ab29afaa71b5840778df7f1a1d83d8402696b0f95d8c2d053123fa0d47646ffc1a7c19f8e8dec63e02f432ea87de18e99309665a553
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-doc.go
+FileName: vendor/gopkg.in/square/go-jose.v2/opaque.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-opaque.go
+FileChecksum: SHA1: b1584a9f081eb74b000f86ebea05128b601344a8
+FileChecksum: SHA256: 8cfbae928eae043b2a1649042bf658740dd4563c913dad4561e9027d76312577
+FileChecksum: SHA512: 6c538b16f22418e83e3cb05368865b14e97f9086370e1ca404ac9602185771fb86f4922370739222a0c00329710b4bbb6b50887058ec5a3a297c54d2aa71f3cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-opaque.go
+FileName: vendor/gopkg.in/square/go-jose.v2/shared.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-shared.go
+FileChecksum: SHA1: ef2e9b8ce7239192a07b07e05b01cd8d82be8996
+FileChecksum: SHA256: 77f6ed85a89744338fa6ac25dded129e3b1cc0dc0b8496464dadda8b0de0c553
+FileChecksum: SHA512: 252f801fc6562db53412c7463706ad810413ed1d8440db8e640118e89e8b8917ae114c1763a9a9c9d723e8b7043f0262074bd0ebf2dfa38a6838ba18317371b0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-shared.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/scanner.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-scanner.go
+FileChecksum: SHA1: 75e362ae5514a1c3058bc4834f3215037432063e
+FileChecksum: SHA256: 0a3842b88d6007dee4259f87a64607ea348e651c0ba66f0f28e273fd424f2866
+FileChecksum: SHA512: f340523646fb5c4fed22d0a0761635e21b4fa9e1207e7e341783139704b6e319497d0c3a472c1120f99ea808a288ce895a0b34d6e0ff8af4d60e17607bc0bb47
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-scanner.go
+FileName: vendor/gopkg.in/square/go-jose.v2/jwe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwe.go
+FileChecksum: SHA1: 40c0ddc099d5fb5a7b40cc42f1c4147ad55b96d1
+FileChecksum: SHA256: ad229a6732b205ab9067e01486f4b7ca3801dd6ae799604bd090a5f204b96c7e
+FileChecksum: SHA512: 7fb893b8e375b467d8824234bea5a66d9f9df1004d8f7fdfa926c1604b5e79d959e397772c87bd6caf1f19f8b0c9d402ce641ab33ecbf29cb9524a51663a10bd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwe.go
+FileName: vendor/gopkg.in/square/go-jose.v2/symmetric.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-symmetric.go
+FileChecksum: SHA1: f3f1615af95d02ba27796cbb70752bac020a0a86
+FileChecksum: SHA256: 45951bba93b71bbad3ff6a148b5950d6fb763bc3718e8cecb100bdd893b2efef
+FileChecksum: SHA512: 07d3c16e828a8468882d24b82110947da05984a401310a13dc4deebc132590ee1724a41df2d9a6d875471c390b53a0f11e35a1f504c8c54d8e62aafdbcd05bed
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-symmetric.go
+FileName: vendor/gopkg.in/yaml.v2/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-.travis.yml
+FileChecksum: SHA1: ab8a36f36f7620ad8daf1ee0eeee6a3e6b844925
+FileChecksum: SHA256: 4498df3841540440e4e2628bcfe10f0393b2f027ebf356e60e6c59ec76007278
+FileChecksum: SHA512: 2f970fad1bd3292bd2282630e762d15b0c6a5f28b36162895ac97acad63059d9d50f7320138bec8f93c8ac6c0ad083378d41e7c9a4f8d836fffda946b2959b80
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-.travis.yml
+FileName: vendor/gopkg.in/square/go-jose.v2/signing.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-signing.go
+FileChecksum: SHA1: b17ac4ed332766aed73be1e618493a4a28618716
+FileChecksum: SHA256: 47b67edeb89790b7f5a77e50d0bc2f0c7688ab928012340c5b0d4495c375bb69
+FileChecksum: SHA512: 1e3b68c2e1adae489e50eb22b611b18d0cc3fc34a36063b9e265b45bce0a6c0fe4c0f37a5b35bfc753b4fcb2c60a4ec734bca3834dfe5c9f6a636ce4cb8c3f27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-signing.go
+FileName: vendor/gopkg.in/yaml.v2/LICENSE.libyaml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE.libyaml
+FileChecksum: SHA1: ad00ce7340d89dc13ccc59920ef75cb55af5b164
+FileChecksum: SHA256: a94710b55e03b5285f77d048c5ba61bb9d6ee04a06c0eb90e68821e11b0c707a
+FileChecksum: SHA512: 23bad0c02554da78129321f3866b30b0cf40dab958be2c0381387cf18c10664bf51daccd9025babba3aa8371c5c40ff32c6872f37c50f725d8e6fb80f1285e2b
+FileType: OTHER
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE.libyaml
+FileName: vendor/gopkg.in/yaml.v2/NOTICE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-NOTICE
+FileChecksum: SHA1: 9522d95b2b9b284285cc3fb6ecc445aa3ee5e785
+FileChecksum: SHA256: f6c2dd3a67b576eafb89b80200b8b1627230bf3821a0c14cb99a22ac19107d00
+FileChecksum: SHA512: 0261b6b6b8b991cb95f2d78775955a028236b9322f26087971442e54bd9219386be327b48f4c0311d8825b141579a8a527775f897c5768168d0ba5f850dfd6bb
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-NOTICE
+FileName: vendor/gopkg.in/yaml.v2/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-README.md
+FileChecksum: SHA1: 3a0f2e1c80c53e11b4c3c08bfc59483820cc2e45
+FileChecksum: SHA256: 588e691973b0ad855f4fa4d070debf76e3c8246edc8da6e0b17dd42ab1ad697a
+FileChecksum: SHA512: 64ba12bd5613ef298407b41ecb849b16b53e6666cb9bdd41ae2422d0cd39025ea5a9630f5e3bf0c81d0c0bc32b95eb8758250ae466681aceac4e8645483526d5
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-README.md
+FileName: vendor/gopkg.in/square/go-jose.v2/jws.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jws.go
+FileChecksum: SHA1: c728cfe398613ce511427af69a8c89a90bc9f7bb
+FileChecksum: SHA256: 107b525587ed2f9f62ed5b7882ac7b532b106850b3886ce2f7bc5001d9f637fb
+FileChecksum: SHA512: deedf82a6e752eae0c4e0a68b3cc92ab077d53c88602bc191be403433693af44a011393d8829537de5ea1f9402e94031367182a396ea7f03e4890b9a55cd0deb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jws.go
+FileName: vendor/gopkg.in/yaml.v2/apic.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-apic.go
+FileChecksum: SHA1: 47bf8a3c9a65064f29408d74b54ec7ca98b08d6a
+FileChecksum: SHA256: a3917d33b1dce8254f04bef0907189428b0182364e4815b737d60b98249d198a
+FileChecksum: SHA512: ca0e0403151cac119d4a83324a436417f2e2da2f0688682027c550b0131e3193158a1f47119c87a458cfcd4cc5e58b8876ca60a36753b178ecbf208d7407ad20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-apic.go
+FileName: vendor/gopkg.in/yaml.v2/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-encode.go
+FileChecksum: SHA1: f6002ace1524d0b87305982c2a484c7342c9843f
+FileChecksum: SHA256: 6f842189d0530a22bd146824cf266e9c4fda56b9ba5186238c0bf539537f3a56
+FileChecksum: SHA512: 9f827e41f3f2f220559983e82ee72fedce65ba4021338d21e9aca09158fbf542e1bf7ad5f6e8a964a03dbcc3cb71ad89d2f68ecd9c7881f3ec617b9a99908faa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-encode.go
+FileName: vendor/gopkg.in/yaml.v2/emitterc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-emitterc.go
+FileChecksum: SHA1: 5a555844f9a82349f56b836ae4c43a7f826a5953
+FileChecksum: SHA256: 6311bafb0626f9d174ff1071f537e1a240d23c24c42a74f8d04230a9bfbedbb5
+FileChecksum: SHA512: fdfae155e19f0879e22d722ec457f5f409f98466e3399c8403a2566ca5259b4fe433914c6ffe5d50b57508e50c53abe417319825bf84d99f047cefbd23dbf718
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-emitterc.go
+FileName: vendor/gopkg.in/yaml.v2/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE
+FileChecksum: SHA1: 92170cdc034b2ff819323ff670d3b7266c8bffcd
+FileChecksum: SHA256: b40930bbcf80744c86c46a12bc9da056641d722716c378f5659b9e555ef833e1
+FileChecksum: SHA512: 389080b6132d3eaae780648d6998390d8cc71908561bce09578e27c542aa1a9f3122e01f640c5b01bee73004c23aa4e9f2066fe5ee0ca2072c2420578b28d71f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE
+FileName: vendor/gopkg.in/yaml.v2/readerc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-readerc.go
+FileChecksum: SHA1: 70d0493a00ff07f4b6a845114fedb868fb0d5e92
+FileChecksum: SHA256: 68ca782bd29c03d67a91c69439d04238390829f9f27520fd1fa2f0f208049e59
+FileChecksum: SHA512: 860f9e93dbe53a2033d9390af91bd1f9564d1d9823c0b5c66a4252a7c61dff31ecb477fca32e8825165d8a77e9d8fca0a2d774af55b84fe1db9d84d577f53d48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-readerc.go
+FileName: vendor/gopkg.in/yaml.v2/resolve.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-resolve.go
+FileChecksum: SHA1: 908875a50f962f085b43e8980bfb2d053ea203d9
+FileChecksum: SHA256: 2b102c842cd923bbf9b2424a314558391b9afc73bd5bf7a0ce51cd27b9087326
+FileChecksum: SHA512: 4576461ac48b81d8fa6b7e6e3b1440e0792e6879027ce93b01c8f7367646159527f50c9f0be3a621eda14b6b1b748b810bf07161ca0a7f16a14f2aa341060708
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-resolve.go
+FileName: vendor/gopkg.in/yaml.v2/sorter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-sorter.go
+FileChecksum: SHA1: 90bcd8cb75622c82d3748fb922801474fd33d8a5
+FileChecksum: SHA256: 69dd002fd057894a61545c8d1144f1baa1d9607870269208fcebd10d7a5de44a
+FileChecksum: SHA512: edd018839221a096d48a642b75556fb76625e6c26f7eb57ad84baa191217931936d9512014a0706e5ea499c05cbc7b43c7cc3e12a7e9a70aa461c3e4e8e84ed5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-sorter.go
+FileName: vendor/gopkg.in/yaml.v2/writerc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-writerc.go
+FileChecksum: SHA1: 11e4cecd8c359c98535e97bbfe24042e39ce36da
+FileChecksum: SHA256: fbdc6dffbce4d3bddd5a872b8396b0a31eaded2cdd394f8728dec515d2620f7a
+FileChecksum: SHA512: 7377a1e04ec98b0dd5ab66d4b2a80ed1e1cbcfecefa4b435d2e388a25c1eae927d717afa13d70ca65fd8470d761bc1b77c76d9ee4d89f52d1d073491c4390468
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-writerc.go
+FileName: vendor/gopkg.in/yaml.v2/yaml.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yaml.go
+FileChecksum: SHA1: 8ef4f257fe4665b4f8956d9b1e6fa8ea7969044c
+FileChecksum: SHA256: b905eb379b8a9a4d3d744b74846f407829bb60de3a42e89945f56b7840227eca
+FileChecksum: SHA512: bc416855c00b2ec8330dca4dd89d393c8716b813f0681159fd9763bc99c722e833da522eafd0c40b13b9801490da375e049304c4f1ae9322b933e7ee994a78e4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yaml.go
+FileName: vendor/gopkg.in/yaml.v2/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-decode.go
+FileChecksum: SHA1: 9323da7483c14dbed06f44e6725d33ae1957df4d
+FileChecksum: SHA256: c0eb5cc60c4bc108e0ad3f89992f09a05b42b7920e28223a6edcccff6cee1d4c
+FileChecksum: SHA512: eadc7bb27c9cf5aac77888e1dbf6663bbdcc9ce8350df76927ca907d74fb79e0d5aba57eaaabe1a2aeb15d4ff787fc685203b14faca6f2167a2ac7a392685eb0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-decode.go
+FileName: vendor/gopkg.in/yaml.v2/yamlh.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlh.go
+FileChecksum: SHA1: 1d35ca760ee834bb74da05ff5989770bafc7a322
+FileChecksum: SHA256: ffcc127f978e2ceca9941f6c6ed1f10982950db45f7a18253614b7b3707093d5
+FileChecksum: SHA512: d5a416c4ac6bded77fc860a656f5b02590a84370b8a2a289ed4687f396250f6fa51c70c12c2319bcbe9abee12e26bffc88bdb4fd7ceb156c7b1cf9712bb1babb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlh.go
+FileName: vendor/gopkg.in/yaml.v2/yamlprivateh.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlprivateh.go
+FileChecksum: SHA1: 570be0d85cb2334709368a301d177df9fc017265
+FileChecksum: SHA256: c46816f21e39a76697c4caccc8534cdbbdba930896786cdb7762d29867f38a5c
+FileChecksum: SHA512: 0fd8c89450a849c0bf18218b419887b83d3ef103db1e60a5ce6f90634e440c05fd3bf685fdff82c0114031042b28b939898eb82f397ae105f664bd2afc80b83f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlprivateh.go
+FileName: vendor/modules.txt
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-modules.txt
+FileChecksum: SHA1: 650cc0653c5cf5f1bfd5035732c51d8f97ecdfa8
+FileChecksum: SHA256: 41ca8fec97d3fb23995d1d364b8482632571086588fd1f9f15a5ae4b7ccae8c2
+FileChecksum: SHA512: 8f521bf1555e53eef7ee04fe5bdb914b28bc24edbb63bb9a94e510d4d9f4275c42a9efd7c038332dbd1fb1bc25cd296a96566a1844553dde070519233014acf1
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-modules.txt
+FileName: vendor/gopkg.in/yaml.v2/parserc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-parserc.go
+FileChecksum: SHA1: 3b96d11389106e05cb3ba62750b93d3847f51e45
+FileChecksum: SHA256: db4e41cfe88f747f8da7bcee943ab1e96cc33fc7d6a4b64cc2ac9902a0b34295
+FileChecksum: SHA512: c46da429e9641af5a91a93892ab4838977e2b89297c96418393ab16077a9dd37d35e18ac395b0dc53be54c3b69e04fd5d301c1ae30f184b1c9764011809f66a8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-parserc.go
+FileName: vendor/gopkg.in/yaml.v2/scannerc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-scannerc.go
+FileChecksum: SHA1: ea3084be1fb2ea29da1706e6291249e91e62f51f
+FileChecksum: SHA256: 9963b0d9edfb8cef2eaa5ea57ac40216cfca4fadf8c8cbb84c2e4b961aeea09b
+FileChecksum: SHA512: 10a3b8acccfdb4435eefc22bd9651418093b83f8a89f6cdea9880e3abed9c636991601e2eb40dd0c095188ca31e6c66fb6755012d88951c3727f41f35307bb27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-scannerc.go
+FileName: builder
+SPDXID: SPDXRef-File-sample-golang-prov-builder
+FileChecksum: SHA1: e368d88074d6f39d85dab4ff7df0c2d580d7f853
+FileChecksum: SHA256: f7af23a8b90b70d0546880bb45f17099e79353cea4e88513c6983106a4a63782
+FileChecksum: SHA512: 9a82cdf27fed0cb270125eb9be0710a9c1bac2c3d77e32dd625e9637a5de3c639e6f7c5fb50f5c1f12a19807e8b389b5b57fe1630c3abf95e6e6f5e6c440daa6
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-builder
+##### Package: go.mozilla.org/pkcs7
+
+PackageName: go.mozilla.org/pkcs7
+SPDXID: SPDXRef-Package-gomod-go.mozilla.org-pkcs7-v0.0.0-20200128120323-432b2356ecb1
+PackageDownloadLocation: https://proxy.golang.org/go.mozilla.org/pkcs7/@v/v0.0.0-20200128120323-432b2356ecb1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: MIT
+PackageVersion: v0.0.0-20200128120323-432b2356ecb1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/go.mozilla.org/pkcs7@v0.0.0-20200128120323-432b2356ecb1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: The MIT License (MIT)
+
+Copyright (c) 2015 Andrew Smith
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-go.mozilla.org-pkcs7-v0.0.0-20200128120323-432b2356ecb1
+##### Package: github.com/kardianos/service
+
+PackageName: github.com/kardianos/service
+SPDXID: SPDXRef-Package-gomod-github.com-kardianos-service-v1.2.1
+PackageDownloadLocation: https://proxy.golang.org/github.com/kardianos/service/@v/v1.2.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Zlib
+PackageVersion: v1.2.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/service@v1.2.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2015 Daniel Theophanes
+
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+
+ 3. This notice may not be removed or altered from any source
+ distribution.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-kardianos-service-v1.2.1
+##### Package: gopkg.in/yaml.v2
+
+PackageName: gopkg.in/yaml.v2
+SPDXID: SPDXRef-Package-gomod-gopkg.in-yaml.v2-v2.4.0
+PackageDownloadLocation: https://proxy.golang.org/gopkg.in/yaml.v2/@v/v2.4.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v2.4.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/gopkg.in/yaml.v2@v2.4.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "{}"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright {yyyy} {name of copyright owner}
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-gopkg.in-yaml.v2-v2.4.0
+##### Package: github.com/containers/ocicrypt
+
+PackageName: github.com/containers/ocicrypt
+SPDXID: SPDXRef-Package-gomod-github.com-containers-ocicrypt-v1.1.3
+PackageDownloadLocation: https://proxy.golang.org/github.com/containers/ocicrypt/@v/v1.1.3.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.1.3
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/ocicrypt@v1.1.3
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ https://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ https://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-containers-ocicrypt-v1.1.3
+##### Package: golang.org/x/crypto
+
+PackageName: golang.org/x/crypto
+SPDXID: SPDXRef-Package-gomod-golang.org-x-crypto-v0.0.0-20210322153248-0c34fe9e7dc2
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/crypto/@v/v0.0.0-20210322153248-0c34fe9e7dc2.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20210322153248-0c34fe9e7dc2
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/crypto@v0.0.0-20210322153248-0c34fe9e7dc2
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-crypto-v0.0.0-20210322153248-0c34fe9e7dc2
+##### Package: gopkg.in/square/go-jose.v2
+
+PackageName: gopkg.in/square/go-jose.v2
+SPDXID: SPDXRef-Package-gomod-gopkg.in-square-go-jose.v2-v2.5.1
+PackageDownloadLocation: https://proxy.golang.org/gopkg.in/square/go-jose.v2/@v/v2.5.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v2.5.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/gopkg.in/go-jose.v2@v2.5.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-gopkg.in-square-go-jose.v2-v2.5.1
+##### Package: github.com/pkg/errors
+
+PackageName: github.com/pkg/errors
+SPDXID: SPDXRef-Package-gomod-github.com-pkg-errors-v0.9.1
+PackageDownloadLocation: https://proxy.golang.org/github.com/pkg/errors/@v/v0.9.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-2-Clause
+PackageVersion: v0.9.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/errors@v0.9.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2015, Dave Cheney
+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.
+
+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 HOLDER 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-pkg-errors-v0.9.1
+##### Package: github.com/golang/protobuf
+
+PackageName: github.com/golang/protobuf
+SPDXID: SPDXRef-Package-gomod-github.com-golang-protobuf-v1.4.3
+PackageDownloadLocation: https://proxy.golang.org/github.com/golang/protobuf/@v/v1.4.3.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.4.3
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/protobuf@v1.4.3
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright 2010 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.
+
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-golang-protobuf-v1.4.3
+##### Package: github.com/google/uuid
+
+PackageName: github.com/google/uuid
+SPDXID: SPDXRef-Package-gomod-github.com-google-uuid-v1.3.0
+PackageDownloadLocation: https://proxy.golang.org/github.com/google/uuid/@v/v1.3.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.3.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/uuid@v1.3.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2009,2014 Google Inc. 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-google-uuid-v1.3.0
+##### Package: google.golang.org/grpc
+
+PackageName: google.golang.org/grpc
+SPDXID: SPDXRef-Package-gomod-google.golang.org-grpc-v1.33.2
+PackageDownloadLocation: https://proxy.golang.org/google.golang.org/grpc/@v/v1.33.2.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.33.2
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/google.golang.org/grpc@v1.33.2
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-google.golang.org-grpc-v1.33.2
+##### Package: golang.org/x/sys
+
+PackageName: golang.org/x/sys
+SPDXID: SPDXRef-Package-gomod-golang.org-x-sys-v0.0.0-20201119102817-f84b799fce68
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/sys/@v/v0.0.0-20201119102817-f84b799fce68.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20201119102817-f84b799fce68
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/sys@v0.0.0-20201119102817-f84b799fce68
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-sys-v0.0.0-20201119102817-f84b799fce68
+##### Package: github.com/opencontainers/image-spec
+
+PackageName: github.com/opencontainers/image-spec
+SPDXID: SPDXRef-Package-gomod-github.com-opencontainers-image-spec-v1.0.2
+PackageDownloadLocation: https://proxy.golang.org/github.com/opencontainers/image-spec/@v/v1.0.2.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.0.2
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/image-spec@v1.0.2
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ Copyright 2016 The Linux Foundation.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-opencontainers-image-spec-v1.0.2
+##### Package: golang.org/x/net
+
+PackageName: golang.org/x/net
+SPDXID: SPDXRef-Package-gomod-golang.org-x-net-v0.0.0-20210226172049-e18ecbb05110
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/net/@v/v0.0.0-20210226172049-e18ecbb05110.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20210226172049-e18ecbb05110
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/net@v0.0.0-20210226172049-e18ecbb05110
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-net-v0.0.0-20210226172049-e18ecbb05110
+##### Package: google.golang.org/genproto
+
+PackageName: google.golang.org/genproto
+SPDXID: SPDXRef-Package-gomod-google.golang.org-genproto-v0.0.0-20200526211855-cb27e3aa2013
+PackageDownloadLocation: https://proxy.golang.org/google.golang.org/genproto/@v/v0.0.0-20200526211855-cb27e3aa2013.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v0.0.0-20200526211855-cb27e3aa2013
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/google.golang.org/genproto@v0.0.0-20200526211855-cb27e3aa2013
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-google.golang.org-genproto-v0.0.0-20200526211855-cb27e3aa2013
+##### Package: golang.org/x/text
+
+PackageName: golang.org/x/text
+SPDXID: SPDXRef-Package-gomod-golang.org-x-text-v0.3.3
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/text/@v/v0.3.3.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.3.3
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/text@v0.3.3
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-text-v0.3.3
+##### Package: github.com/sirupsen/logrus
+
+PackageName: github.com/sirupsen/logrus
+SPDXID: SPDXRef-Package-gomod-github.com-sirupsen-logrus-v1.7.0
+PackageDownloadLocation: https://proxy.golang.org/github.com/sirupsen/logrus/@v/v1.7.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: MIT
+PackageVersion: v1.7.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/logrus@v1.7.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: The MIT License (MIT)
+
+Copyright (c) 2014 Simon Eskildsen
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-sirupsen-logrus-v1.7.0
+##### Package: github.com/miekg/pkcs11
+
+PackageName: github.com/miekg/pkcs11
+SPDXID: SPDXRef-Package-gomod-github.com-miekg-pkcs11-v1.1.1
+PackageDownloadLocation: https://proxy.golang.org/github.com/miekg/pkcs11/@v/v1.1.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.1.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/pkcs11@v1.1.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2013 Miek Gieben. 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 Miek Gieben 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-miekg-pkcs11-v1.1.1
+##### Package: github.com/stefanberger/go-pkcs11uri
+
+PackageName: github.com/stefanberger/go-pkcs11uri
+SPDXID: SPDXRef-Package-gomod-github.com-stefanberger-go-pkcs11uri-v0.0.0-20201008174630-78d3cae3a980
+PackageDownloadLocation: https://proxy.golang.org/github.com/stefanberger/go-pkcs11uri/@v/v0.0.0-20201008174630-78d3cae3a980.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v0.0.0-20201008174630-78d3cae3a980
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/go-pkcs11uri@v0.0.0-20201008174630-78d3cae3a980
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ https://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-stefanberger-go-pkcs11uri-v0.0.0-20201008174630-78d3cae3a980
+##### Package: github.com/opencontainers/go-digest
+
+PackageName: github.com/opencontainers/go-digest
+SPDXID: SPDXRef-Package-gomod-github.com-opencontainers-go-digest-v1.0.0
+PackageDownloadLocation: https://proxy.golang.org/github.com/opencontainers/go-digest/@v/v1.0.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.0.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/go-digest@v1.0.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ https://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ Copyright 2019, 2020 OCI Contributors
+ Copyright 2016 Docker, Inc.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ https://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-opencontainers-go-digest-v1.0.0
+##### Package: google.golang.org/protobuf
+
+PackageName: google.golang.org/protobuf
+SPDXID: SPDXRef-Package-gomod-google.golang.org-protobuf-v1.25.0
+PackageDownloadLocation: https://proxy.golang.org/google.golang.org/protobuf/@v/v1.25.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.25.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/google.golang.org/protobuf@v1.25.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2018 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-google.golang.org-protobuf-v1.25.0
+##### Package: golang.org/x/term
+
+PackageName: golang.org/x/term
+SPDXID: SPDXRef-Package-gomod-golang.org-x-term-v0.0.0-20201126162022-7de9c90e9dd1
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/term/@v/v0.0.0-20201126162022-7de9c90e9dd1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20201126162022-7de9c90e9dd1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/term@v0.0.0-20201126162022-7de9c90e9dd1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+DUMMYDATADUMMYDATAFORTEST
+DUMMYDATADUMMYDATAFORTEST
+DUMMYDATADUMMYDATAFORTEST
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-term-v0.0.0-20201126162022-7de9c90e9dd1
+
+Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-Package-sample-golang-prov
+
diff --git a/syft/rekor/test-fixtures/sboms/sbom-3.txt b/syft/rekor/test-fixtures/sboms/sbom-3.txt
new file mode 100644
index 00000000000..ac6b5b6dc0f
--- /dev/null
+++ b/syft/rekor/test-fixtures/sboms/sbom-3.txt
@@ -0,0 +1,13015 @@
+SPDXVersion: SPDX-2.2
+DataLicense: CC0-1.0
+SPDXID: SPDXRef-DOCUMENT
+DocumentName: SBOM-SPDX-ba96f4cc-d9e3-4c83-a1db-ec5456b6a9ce
+DocumentNamespace:
+Creator: Organization: Kubernetes Release Engineering
+Creator: Tool: sigs.k8s.io/bom/pkg/spdx
+Created: 2022-06-28T19:03:39Z
+
+
+##### Package: sample-golang-prov
+
+PackageName: sample-golang-prov
+SPDXID: SPDXRef-Package-sample-golang-prov
+PackageDownloadLocation: NONE
+FilesAnalyzed: true
+PackageVerificationCode: d8a63543cdced3d00fa41450eeb2eb2ffad83fdc
+PackageLicenseConcluded: Apache-2.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: NOASSERTION
+
+FileName: .github/workflows/slsa-goreleaser.yaml
+SPDXID: SPDXRef-File-sample-golang-prov-.github-workflows-slsa-goreleaser.yaml
+FileChecksum: SHA1: 9ea64e62cd78d9138ec233a74ac45c75bdd0c408
+FileChecksum: SHA256: 527c33d3567080f4f34d04cc38eecae94adda2f4cb3627a0e0c020064498c07e
+FileChecksum: SHA512: 546246ff3e6659bdd7135cca23375eab579c63c889091521012fe4fac406e57f6d60d939d38781fd447b1bbe4aa7131a90b15f1cc72534b2f6b378c95a91dcc4
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-.github-workflows-slsa-goreleaser.yaml
+FileName: .gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-.gitignore
+FileChecksum: SHA1: 7f8d991950ba797166d60b878c5e0a1f132ddee1
+FileChecksum: SHA256: e45f8e0c321ccdb7eef37f15681d987e6aa8eb2a5df79975056503c19b75bde1
+FileChecksum: SHA512: dad9d1e73b2c366018116d60b27d6802af92917aa5ad8e580553b9c3e667e2e9703271df82fedd3e58db748e5059f4562fa910dfefb26a479ab4082b396cfc31
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-.gitignore
+FileName: go.mod
+SPDXID: SPDXRef-File-sample-golang-prov-go.mod
+FileChecksum: SHA1: d5d7b7d8ae8fa3b89be0dcc06b5d50be2d9014d8
+FileChecksum: SHA256: b3bedce4fd47c311a354fd0af3c6ef49fee38e7d80d398135cbb1acfb6c88ffc
+FileChecksum: SHA512: d0a537519fdf15a04de9b05d889ae8f09294161d1bb53a9b93ebe0ff9242984eb008feead37d2108d4b11aefa1b0c3d87b53375acb75be25803da4f4aa612657
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-go.mod
+FileName: .slsa-goreleaser.yml
+SPDXID: SPDXRef-File-sample-golang-prov-.slsa-goreleaser.yml
+FileChecksum: SHA1: 68ce46fe19642b57075f9541750eb0b1c4e64ac6
+FileChecksum: SHA256: ff930ad1c73ec70d88ccbaaa2b7f10508cb23ae8d24f3346c2b573937c8c3f3f
+FileChecksum: SHA512: 3f27cf21757de47b981926b7179ccfff5c21c0a0a0200ca7e1de62de7258c21ec2bbcd2f2e334e3399e2239c6d899581f9b997ac35dda266b0777ead5c7bfb7c
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-.slsa-goreleaser.yml
+FileName: go.sum
+SPDXID: SPDXRef-File-sample-golang-prov-go.sum
+FileChecksum: SHA1: 303a5db03b5abe217ba7d366289ba66837b80332
+FileChecksum: SHA256: efd74e73612aea2a14c5c0b110cd0bb3206ea8f878b33a2c969be168928c3b1e
+FileChecksum: SHA512: e4ae084114229c415960ce6a4a77849d971692aac0c7bdaf3247f12f15dbb930205b771123653d033dc2b29c17b76d7cc14ef93d0b24da5fb75ae8d04d3d37ff
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-go.sum
+FileName: main.go
+SPDXID: SPDXRef-File-sample-golang-prov-main.go
+FileChecksum: SHA1: 6afe48233dc53adc1c09f53bc914864ed6b4b1d4
+FileChecksum: SHA256: f6dfc40fd2dced705a2b460073ca2ad7d59937a2bc89021e064483d3d4a0b37b
+FileChecksum: SHA512: 70579b6e35e1dedac75c5bcdbf886144cb7bcde0f65da7df20fa5dabc07374cdf69fe2c96397c30da7ed7107ecdbf05686340e5a5f622494b761e97066663203
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-main.go
+FileName: vendor/github.com/containers/ocicrypt/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-.travis.yml
+FileChecksum: SHA1: d72ef4d79d6d7ddbef7782d6e8ff5c0e15d13b77
+FileChecksum: SHA256: faba47a2c5eefbf373f388848eb1df9038c05bdd5cfd95a3e8ed7fa03fd67b13
+FileChecksum: SHA512: 00d3abdbc17a376530bd598859c34a2f8091328cb779226db178840841cf8a907fbca0cd0f712967028fa99cf5998cb8bd99e5c6079e1385e9ca5a82a3652327
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-.travis.yml
+FileName: vendor/github.com/containers/ocicrypt/ADOPTERS.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-ADOPTERS.md
+FileChecksum: SHA1: 16b34dd5d33056c1cf329cf21668a2a338aeb4c3
+FileChecksum: SHA256: 2ae0d93b23f9c7c37dbc7fc19eeac407f79817b9c5f30c62de7a8e2faa18391a
+FileChecksum: SHA512: 5b073c5df4fc1124eebfecbef67c98ff1d168db320fd63491b405fda6e7c4dcf749e8b18a62fc1050c4e70977eec8897fb25b55930ca1835f7b9e51cb43bc608
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-ADOPTERS.md
+FileName: README.md
+SPDXID: SPDXRef-File-sample-golang-prov-README.md
+FileChecksum: SHA1: 00bbb7d9afa65ce3bdf2f35908c0da2771ea2153
+FileChecksum: SHA256: 9dc3dfbbb50093593e5f14c41803f0d3377d5b9f05d643eb42116d3a545a2911
+FileChecksum: SHA512: cad1f57c99458adcb16faefad42ffd3d2495f2905918772300854cb2dd3b8081684b03e9f9e314989671e36b78da61e7927e2f0aa605ee9d3c4e8bbc73461293
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-README.md
+FileName: vendor/github.com/containers/ocicrypt/MAINTAINERS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-MAINTAINERS
+FileChecksum: SHA1: 4317ff02ed9437f7b570f554aee7abccd429630f
+FileChecksum: SHA256: ea75759674d99622cee95c0f830c3a4052d236e4325ba8c3b0c5b2c6d75f1507
+FileChecksum: SHA512: e1863d6af1b9412d844ad66e32462c958dc32e0ff2537d7afafaed8e1da89d6ee659c6bacf10809c4484021c886882b90b02e32f5329ae0167b6398533560a82
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-MAINTAINERS
+FileName: vendor/github.com/containers/ocicrypt/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-LICENSE
+FileChecksum: SHA1: 3037fadf4c833d13c87fcd0b2f932de187edf676
+FileChecksum: SHA256: 716a8b80635c394681e652823e1e42e411ad2d254e1f202403422d74f4b0b106
+FileChecksum: SHA512: 5cb85ce7cb72b66c8bd7911ab48169722751278ba5c09c4d0061cac69a702e48de97c319d82b57a78a4c3e87a3adc2597214741f26838f35ea3dd1393b42c831
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-LICENSE
+FileName: vendor/github.com/containers/ocicrypt/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-Makefile
+FileChecksum: SHA1: 46af4d4c8adab2bf4edc04def8e2a58a6f1d9ce5
+FileChecksum: SHA256: e301a534d70ea5f2541ffec6d37806c333ea46d3d8632550d154dc1078dac96d
+FileChecksum: SHA512: 2a96efdc9524f43a1ebb233a61465be00dc18ac01ac2e5a71e3c7ea3be980e8ee77a98ffa7820c76305531aa3aa67853e1dbcdc03fc88162e352db2fcf8bb3e9
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-Makefile
+FileName: vendor/github.com/containers/ocicrypt/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-README.md
+FileChecksum: SHA1: a1672c59b0d6ce8b9c97034c49d0ac5da540ca79
+FileChecksum: SHA256: 829eb1bbbf1dac9949d8c2c1e5e8f037326306e762bba1788dc5f204ab809896
+FileChecksum: SHA512: 6c9b7172716728f9bc9cfad2da0916c44660e351937d1c6e29aa8011e82df811b4e96442c5ea52d7ecc38b0afcd926e73bfa44fc6786f0d3378a259a41f3ebdc
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-README.md
+FileName: vendor/github.com/containers/ocicrypt/SECURITY.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-SECURITY.md
+FileChecksum: SHA1: c48faf8a8ab4c8ac439c8dd4b347f3d31a9f7a81
+FileChecksum: SHA256: 92456ff28a4972c2382cb727506e6be5bf74c7723f829b628621671ec6031cd4
+FileChecksum: SHA512: 2d23b840f366bf48ca2ced0824240dc1ce219ec34bbbf307a47a5e1e14767c95d0c58d9b396cda999a7dda71ef72d3968a46a939e585e7e000f317e2f57bfb11
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-SECURITY.md
+FileName: vendor/github.com/containers/ocicrypt/CODE-OF-CONDUCT.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-CODE-OF-CONDUCT.md
+FileChecksum: SHA1: 25b13074f95f8d50ea7e1c8a829342053ddd9612
+FileChecksum: SHA256: 87719f30720aebb6b88e84c5229970c706b2a91258a978d2cc496806f4ef3ac7
+FileChecksum: SHA512: 296316b4a69206822e3975020b5e843a865275257a832949bd23615a78355d37e3bd7bc3fafff543c99100631fd22da3a122627077a87e92299fba7e2b4bfdac
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-CODE-OF-CONDUCT.md
+FileName: vendor/github.com/containers/ocicrypt/config/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-config.go
+FileChecksum: SHA1: faeaef66894ebc9ea7a33bce0cdaddae18c6140c
+FileChecksum: SHA256: e91cd8ad61c51852616e5fd255e81240854d45ab30154d2b82132f0114090de0
+FileChecksum: SHA512: be1c95d4c0a40c587cecd0cdacfdb2f771671ece1cab28d638ea10ca5a3bf89fddeba929b6d5701e83379e4ef66079c5086025c8924353f23532ee640da7e005
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-config.go
+FileName: vendor/github.com/containers/ocicrypt/config/constructors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-constructors.go
+FileChecksum: SHA1: 8c20635693634c308027773226f4e26bd22a7fbc
+FileChecksum: SHA256: 8513a2a19b7ed3d9caf801c7102a8520315ebaf3625ebde309d3d3daf12f1f30
+FileChecksum: SHA512: 4067a6d42c13c0095304bf8501f040fdb199b68e2842d2940eccc16f807f7f8341d4b56d8540603aa1ca2ef6699e903cd80d0f30b3a31e8e5dba1eb029e1e83d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-constructors.go
+FileName: vendor/github.com/containers/ocicrypt/blockcipher/blockcipher_aes_ctr.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipherC95aesC95ctr.go
+FileChecksum: SHA1: d2369cc700c81ed56fae2f0c2b236e7b0b318afa
+FileChecksum: SHA256: 75ddbc90a95f234115f061d164905df7721a360a72641f8f1dcb17b4f6d8ee34
+FileChecksum: SHA512: 842d223b0cccc683ce371a28851c16bfc87a669bc420a843f460bc16fe9fdd318adb9c4be5e02e25b65b9bea60b36b61557d8b9396e9787ce3e990478721103d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipherC95aesC95ctr.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/common.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-common.go
+FileChecksum: SHA1: 27074a63fab53216555d163558e40e8a298c6367
+FileChecksum: SHA256: 4b916f4cdeaf75f844f0b2e5dba2939d1a17ba86a5c300026d0e047ef09cee70
+FileChecksum: SHA512: 771f6b0339aceabd68f5fa5fe1e95b94d5c710ef396921c660f63bab6ba732cbe20deaaec30e86a9d622e4ccc00d1a13dcb394ba888bd9c339df8d767e0654b3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-common.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/pkcs11helpers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpers.go
+FileChecksum: SHA1: 123b472833f442164ab4fe5aaf4e361c61cabcfe
+FileChecksum: SHA256: 05de27d7259925d147c352bb07fc09d713a6c07db437fbfdbbddaf25ea8e286b
+FileChecksum: SHA512: 39de44f48d5a23e2f8ee74a351dcc985cb532d023172a57c9d399a38515520dc8711ca517330eec01303b1e77a8fe4e467cc9af8952434c5b7785291700a6d81
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpers.go
+FileName: vendor/github.com/containers/ocicrypt/blockcipher/blockcipher.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipher.go
+FileChecksum: SHA1: d73ba71e45cedd9cdb632809d37d31221dfe7ef9
+FileChecksum: SHA256: fb321db2c4ce04c2d5ba61fb7cfe32729f217b2ef5c5bea5feb1e5c7e52df5f9
+FileChecksum: SHA512: cdfe880f354781db29a00918bc0d05813c88589f7ca932fbeb9532a06e8c473631de274e44ad64b0cc76965fd50398575b25f46fc2ba3efdbfd4481a01101439
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-blockcipher-blockcipher.go
+FileName: vendor/github.com/containers/ocicrypt/config/keyprovider-config/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-keyprovider-config-config.go
+FileChecksum: SHA1: 8e8dc783e756b9ae8e1135bf12d4f1cc998c38d3
+FileChecksum: SHA256: 4c8e5eded1a4d22f861df68513bfe3051e9079011c53a90ec2622e75fbeb5db8
+FileChecksum: SHA512: 64024fe814f47f11eb0ba1c9eee763982009c75ea0eff83e6735f9f6fb2a883a552e2bb5e99a0e76f98ef9dceef20c63964b6637b1cf9f8760ffc1ed5cb2e763
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-config-keyprovider-config-config.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/utils.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-utils.go
+FileChecksum: SHA1: f22f963b8bcbeb5795a1e5f472dea78cbf1ccc0e
+FileChecksum: SHA256: 02c44207337764cf8e54ff1df159410a3a5361361481838ab3d318bf4fb1c885
+FileChecksum: SHA512: c158afbc7f88efaeaa415b98fd316f32a61289d789977e896c66b64c89bf045698c4ad2a8d4e1db90d6a6d19bfdae886fbc38ccdd74a7936fbb232d92372cedd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-utils.go
+FileName: vendor/github.com/containers/ocicrypt/encryption.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-encryption.go
+FileChecksum: SHA1: cfbc50f4215ebdbd2bb19b16bf5e283719f6da22
+FileChecksum: SHA256: d843def5810a29fbe266ae604de08fcb78c1324e217f98472c014ac4c4175462
+FileChecksum: SHA512: 013fd23f6761de58d912a91af10679bf9a273f691b5df8d5fc673a62d1cd9fe423b9fb912ac67ad530864c0a3e4a981ba75f21a8d21c7a3840e96adb714083b8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-encryption.go
+FileName: vendor/github.com/containers/ocicrypt/gpg.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpg.go
+FileChecksum: SHA1: e2ea1663683cf8a0eee5fb8f955a5821808d6523
+FileChecksum: SHA256: dfe9b0b4f55b6f8f29f99e254d2b8b6cb0e2d4610b8be6f9926858a3ac09c889
+FileChecksum: SHA512: 55a876f2d175eb9d0d5d10f5946ff15888eb729c7c58219a51f157eabd08230c5b67b57350f53e26c315752def47f9bf87c677520391e1a99efc6c34a0119ee0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpg.go
+FileName: vendor/github.com/containers/ocicrypt/gpgvault.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpgvault.go
+FileChecksum: SHA1: 6b7c66df7321ff9a6f35971f35ee393cf40cb365
+FileChecksum: SHA256: 3220495eb2790f2e38f246a8b4c2d167362f4ae1ac7a0db583330c7c0a8c9581
+FileChecksum: SHA512: 01aeb2e650ae7d86a824749d504cf18460f233acd9c318875ba242419befdd7a9eb9e051431147791cf204fb3442a4722c480be7ef8de67f6ed4abbdbcfa2244
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-gpgvault.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/jwe/keywrapper_jwe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-jwe-keywrapperC95jwe.go
+FileChecksum: SHA1: 4db32f41ca9af98156ef9d2ee3ffb34668e6c162
+FileChecksum: SHA256: 4b363bcfd9c36c77b0a80efbf3d9e61518622f5e0e6d232cf458f2a5a8ac1582
+FileChecksum: SHA512: ad8a465b4144e2ca1b8615bc3493492f7ef901a82127bf1cb3cef5ecc57331c40db4d4d4666fc4b4172be464b167dd7261dc04d7c6ebc24283dc010c658ed1d0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-jwe-keywrapperC95jwe.go
+FileName: vendor/github.com/containers/ocicrypt/crypto/pkcs11/pkcs11helpers_nocgo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpersC95nocgo.go
+FileChecksum: SHA1: 7b57cf7c61d29b5bfc2a9bd2b1ad0e847cc343dd
+FileChecksum: SHA256: 3ab3a5e308a64ec2394042f12a32271237a186d48f7f434f63d87bad386b57f6
+FileChecksum: SHA512: cc21325aab99fe817b1e6ad4af44cd65d753c8708b0afb889245d77b41189499d6e95db941228ce152c8185170a671d4c5a5bb2cb7046c36194e99f4eaea68b6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-crypto-pkcs11-pkcs11helpersC95nocgo.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/pgp/keywrapper_gpg.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pgp-keywrapperC95gpg.go
+FileChecksum: SHA1: bc47d42e55688b3dc79275bde0071de496b62503
+FileChecksum: SHA256: 71a9ad901cbb4178b2a4cc2d3f331cef9224e14d2bdfbc8710f28ef4e70b708b
+FileChecksum: SHA512: 4990b4ccf8d6cee0f00705645234283c1873d67c24929e23451c7a24d20d6f67f2cbf8c4c738eb231894a43fdd194f3977218b4338a170a283b8e6e15fab5196
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pgp-keywrapperC95gpg.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/keyprovider/keyprovider.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keyprovider-keyprovider.go
+FileChecksum: SHA1: 3343d332d6d0a1768df4919f0a4cb49329882d3c
+FileChecksum: SHA256: 321e758559ebb4eb19c98d628718b751b3c1396dbf6308c58c26106e56cf9b28
+FileChecksum: SHA512: a52b72185006db8609b17e48fc876302cc7fb76356f35c864843f36f7a9c583888724cefda06e3ad809f6ded49727f188755f363129aec535651c849c75cf7e7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keyprovider-keyprovider.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/keywrap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keywrap.go
+FileChecksum: SHA1: 64a568dba08f2c67ec41da5c3c3d30529aad9eaa
+FileChecksum: SHA256: 542921a562d1ee6400509a0b9bb884f95a47bcc6007443bf5dfa9a16fcde6c99
+FileChecksum: SHA512: b80c58402f9a470dd2b8d22285d0665ee11ee2f3454e5898c5c1887a38c556f6a3b51f9496bae52508631aa7ad72461cdcf8036df14cba404031e75c2a88816c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-keywrap.go
+FileName: vendor/github.com/containers/ocicrypt/reader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-reader.go
+FileChecksum: SHA1: 42d31b563178905f0cdbfb475cd61a81a322ab71
+FileChecksum: SHA256: bd51a0e1c9d6b20823ccf11ec24feb03541c1b5f8f9968e27e5ae1a139f3bf9d
+FileChecksum: SHA512: 8e64d316eb4a38575e45af7d3934606b6789f3955bc0f3301f308a1e85364e5228f521401bab39a54469fb646c72e7f99e164d19304da3ce14a8a4a28d889866
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-reader.go
+FileName: vendor/github.com/containers/ocicrypt/utils/delayedreader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-delayedreader.go
+FileChecksum: SHA1: ea37a39bb5545d5f43a07fd249dd7f081671c6f7
+FileChecksum: SHA256: f65248b41e61ff23e3a92cb0d472931fa1d9684011cd5e30f9cedde8f269c702
+FileChecksum: SHA512: a878f22ea299779b258942162cd0dfd04c38e832dd5ffffe5e4f703b0e66825f222e2ff9cad4d1faef98230397489c245345dd16b0271f10c75bf1c5d8896e1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-delayedreader.go
+FileName: vendor/github.com/containers/ocicrypt/utils/ioutils.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-ioutils.go
+FileChecksum: SHA1: 9cfa71de0cf528d8456f0f4f058109afc5776313
+FileChecksum: SHA256: 14bf259fb1cc2e9b53a27388bb27b6c83c1d1b7c18c0ebfce5f449704ff0f45d
+FileChecksum: SHA512: 74518d61008c148f2351ed28c4649eb62e86b1f7751923157cef4386f3d5370ec23a279d46da1588f534467caa9527dffc33f997c7bd46bd1c8252cbb7f6058b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-ioutils.go
+FileName: vendor/github.com/containers/ocicrypt/utils/keyprovider/keyprovider.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.pb.go
+FileChecksum: SHA1: 9e0402a4a8162ae4447f858798130c5b6a0cdbdc
+FileChecksum: SHA256: 99bc016c216318648d7dcb8f2691992e4561d6d1a7e1ae5a63cffe28eb731311
+FileChecksum: SHA512: 5c0b0a72f20749c84ba2a2b4b10ce2ccac099ffd7a392383ac1782f4ac6632098450a2f820e3800085ece3ce3ac4e0e7ab65cc1732f47a7da0df60d26cf58c59
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.pb.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/pkcs11/keywrapper_pkcs11.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs11-keywrapperC95pkcs11.go
+FileChecksum: SHA1: e81ac6e98710f0969c347252ec96a952ebcf86cc
+FileChecksum: SHA256: feb8cb3205c5c35bb9da009a6f04bff044366e739741c6aa9e57c4de2159bf20
+FileChecksum: SHA512: e27ad5e89e9b02b463f3eccb5f7892b6b85b93a39b888f6a76103161ecede426247f421edbf69560f5699cba111217b9bae94e5e653cb89ac7182add2deea10c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs11-keywrapperC95pkcs11.go
+FileName: vendor/github.com/containers/ocicrypt/keywrap/pkcs7/keywrapper_pkcs7.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs7-keywrapperC95pkcs7.go
+FileChecksum: SHA1: ee82236a3c9afa98d5dbc695876b865af1cc7410
+FileChecksum: SHA256: 9070997b42303e7222f07f042130059ac260e61301db0d65e0ff6392a4e66dbf
+FileChecksum: SHA512: acebf347f1ef1a0080a662dffc83a2063e52958fd90c9e9ad73163e0f96aa3a89fbca9c674b3fda44d772afd75e3d02c778db1086740ee4a9d96a7044ffa88b6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-keywrap-pkcs7-keywrapperC95pkcs7.go
+FileName: vendor/github.com/containers/ocicrypt/utils/testing.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-testing.go
+FileChecksum: SHA1: c2343afe5c03915bd31cdf148963a08dc1704d19
+FileChecksum: SHA256: 8f44948fee7ec302f3510b4ade78f1ea5a936b6008fff9fcf82a7f1fa009441d
+FileChecksum: SHA512: 6b97b86fef24a8ee4913eaa07ad45eb769cf5e5ce61bcbffd46fa96b265c8a2ed91f81a3d47c7e500111533ee2b9f4c12a28592d8a8518ad41d058906d969a9e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-testing.go
+FileName: vendor/github.com/containers/ocicrypt/utils/utils.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-utils.go
+FileChecksum: SHA1: 6a5cfddfba670aa6c93d83300d1fe71de40652f6
+FileChecksum: SHA256: 806f61a58059a6505689cc8ffcd6d6c7fe763c0d0975dd2bcedb57cf1ac7a193
+FileChecksum: SHA512: 0323ab5ddd9360f74c225dc55d15da9003e889fd4ac9cca6bf6bf1eb714ff7bc31ccb0c0050175ad636beae3c51b8b307a09ea88dbdd1fa8f1aedbb8ed803885
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-utils.go
+FileName: vendor/github.com/golang/protobuf/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-CONTRIBUTORS
+FileName: vendor/github.com/containers/ocicrypt/utils/keyprovider/keyprovider.proto
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.proto
+FileChecksum: SHA1: a27e176a0d14b6688de88732c9f9d05676651e86
+FileChecksum: SHA256: b3118037f208abdd4a1486fd960604807b7190ae22237470c47a3dcc1d1b6a34
+FileChecksum: SHA512: 77fb2c202af0a1c897bc8e6597893e29e5e69ab1793e377b45e4a1475f4d8eff7f2abcf98fb4cadfa02a50274c85956f788e94ab8f48c274fda39e2e70280ce3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-containers-ocicrypt-utils-keyprovider-keyprovider.proto
+FileName: vendor/github.com/golang/protobuf/proto/buffer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-buffer.go
+FileChecksum: SHA1: ea0b9ac1c1d2578b4728424ba7505e526292c118
+FileChecksum: SHA256: 5f6340e812b1bca5ac6f24fd5032452e46f2c25836dc56cee8f42aadebf9aa23
+FileChecksum: SHA512: 377d2a9e2a72897bbac36ccadc569270b871d5d814eeba52f7b89a634e2c57124cc291f7a83dd19480338b8aca1317b7a0de959369b735f13755c949f8ed8efd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-buffer.go
+FileName: vendor/github.com/golang/protobuf/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-AUTHORS
+FileName: vendor/github.com/golang/protobuf/proto/defaults.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-defaults.go
+FileChecksum: SHA1: 978faa6eec58c8902b8e69ddb2be2c6b795d9360
+FileChecksum: SHA256: 251521ac58026d24363e9dece3e4d49462e4fd9b28dbcd5884db569ad0f010bf
+FileChecksum: SHA512: 8584968a235f7b8940325c09bb1b1e0fb8aae8349cf4ff6f5ae0cae33fda53970b255082264115fe61b6410db8c1fa9fa0a3fd102cbaebd11709b6639b9b5ad5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-defaults.go
+FileName: vendor/github.com/golang/protobuf/proto/deprecated.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-deprecated.go
+FileChecksum: SHA1: 4cdf5affb2939ff51645b845f05b60f71ae5ee40
+FileChecksum: SHA256: bb03db1eb256939fd1053904d67e3e66d582e04c1fb01d0ec19d501f97209cda
+FileChecksum: SHA512: eb7893fdd28636cb08c9d6cb7769ec79d6ebf48abf526c7a8a86126ca90d27764383ad5b7cec1042c5def374d4fc82f6e66a700e9dbc4007a6c12353cd56fcda
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-deprecated.go
+FileName: vendor/github.com/golang/protobuf/proto/extensions.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-extensions.go
+FileChecksum: SHA1: 9d40e79c4234ec13e856f4f02e16718cc88f7a34
+FileChecksum: SHA256: a01ebf831d94b2adfe24fd8110bc3737d96125aafa64d61553fec7dc7a4587dc
+FileChecksum: SHA512: 64802dfddc90bdebae11f87713c68806228ca3bf5f8c73a39ac2622e9027ba17aad4f5faa806483ff2cb23054e019b7780d2046fb5d5bcce2b8c7cbb20cf5fa0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-extensions.go
+FileName: vendor/github.com/golang/protobuf/proto/properties.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-properties.go
+FileChecksum: SHA1: f9cde0df7f5d7894ccfd4606ed9e5e8ee977d612
+FileChecksum: SHA256: 53bb7d73904452555dbb612b0e9d23df349716962bcc7c99715ca950cc455029
+FileChecksum: SHA512: 4f3f2d0a7e7257d710eda7d83bb7b6fae3049bf52e9596bb709ca4f73d685209b8ce1c2392bb574bd7524d2ab1aa95aa2930a834518d127421587fb495e26966
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-properties.go
+FileName: vendor/github.com/golang/protobuf/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-LICENSE
+FileChecksum: SHA1: aa9b240f558caed367795f667629ccbca28f20b2
+FileChecksum: SHA256: 8778a9fc1eaffb03ab873caae251df2d224f6b5502be8777d3cd573a4dd43903
+FileChecksum: SHA512: e4c458763cc5f8eaaa6d1e6f6924caa95bdfbe6811d85e4d0bd721acf8d3917ed082621b9de58156b6b86b3f9ceb970a404a03db24a3f59c076fdf5b1992b77e
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-LICENSE
+FileName: vendor/github.com/golang/protobuf/proto/registry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-registry.go
+FileChecksum: SHA1: a9ed3c8331a4e5a0a4aca7bcc459a8bce91dc888
+FileChecksum: SHA256: 0ac07db753e5e1fd930340cc5211373e5d9a33f43d3c79cd8e82dccf594f8c4e
+FileChecksum: SHA512: 8d1c052a82362214feaa975c9b9e00623d6f966f0f9b83e1e9dc89e0e2cbd83ccc4fea2a10f8039511f1a8f1e6e94d837241bc03d0c3203f03b7501adb522735
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-registry.go
+FileName: vendor/github.com/golang/protobuf/proto/discard.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-discard.go
+FileChecksum: SHA1: cf6cd9f636ebb9567b16316e6e4dec4a61f2064d
+FileChecksum: SHA256: 9b6a5c7a3dc614c20e9d7d1447327d5339ddbf8b4ebeccca86b4e9e02fe5dbce
+FileChecksum: SHA512: 6f90408caa31fac518d30c0ec71754f6a70827e0a831c74044d26004b31a45de68f0fa7b5e4108e5b926d49a055f43b99cf4f3ed6671acdbcfde7d58ed7ccb9b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-discard.go
+FileName: vendor/github.com/golang/protobuf/proto/text_decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95decode.go
+FileChecksum: SHA1: 1c5ca32f3707fc3d930df5aec8c755b77ffb13f8
+FileChecksum: SHA256: d9828602dedfad903f012d12355e410203b4ae7ce756dfb975edf1f90b3cde61
+FileChecksum: SHA512: de131e2f09ae6ff53ec24538f161c44ae2f5cb80c568672beeb76f28c8da2c9c42cee0e29cea447bfa548d33ff5c2761f3efc85c52182c037cb73800aa5c49d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95decode.go
+FileName: vendor/github.com/golang/protobuf/proto/text_encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95encode.go
+FileChecksum: SHA1: 1a7dd2434c8b0d773b5673143351553e9e4470ac
+FileChecksum: SHA256: 5bb2d39e94cc6bfa40db9903d4890e8d7ec0c09264189887dd4c84844779401d
+FileChecksum: SHA512: 623f9360796416b59c912dea2c93b42c6ba8e5d29525df93b8e57a49ca3852dcd05bdf96f6337bb429d6ff2c84c8021512da14f2a0fd9f32fca2ca7623bfe8ff
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-textC95encode.go
+FileName: vendor/github.com/golang/protobuf/proto/wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wrappers.go
+FileChecksum: SHA1: 503a6b0f0ec6bed67a6cbc36d388a30e4788e0f6
+FileChecksum: SHA256: a4800c509be41c80a54ec37bb186102294be6a2821dfe8415c5cf197e1463cae
+FileChecksum: SHA512: da2269b47207e5eaf59bde5083df1803ba41a0d9477600122eb4bfe7fc69d078573a10a40116ca10a131ba707ac136bee321ecc5acd8349f1f2d8b8b92a1bd9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wrappers.go
+FileName: vendor/github.com/golang/protobuf/proto/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-proto.go
+FileChecksum: SHA1: c9507d18a1d823a9a5267ef2889606f0e111095a
+FileChecksum: SHA256: 214e3d31330c72178866b3cec863ec98409024dd167951dd83eadcfa32796e59
+FileChecksum: SHA512: f438e0ce3c45ed0e9dc6a86f91f5734e249f10c193c3303d1423d81fc103c4383473657dd76814d1b9329bc44007f6cef5206467b0fc78c8559f58796519fa8c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-proto.go
+FileName: vendor/github.com/golang/protobuf/proto/wire.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wire.go
+FileChecksum: SHA1: 3bd653d3a6d517dfc8bb75a1aa023bca6b3fb112
+FileChecksum: SHA256: 84e9dff5c3cf0eddf5f5050c61c94d863cea3f7b2ae81270d0790959f0ca2581
+FileChecksum: SHA512: 608ce5ae521f9b7771f98dfaf27255138eda77bc99efff890cda58ec9862ecc3de89f7b4f04e6c66c45888126ecd4d52f40f6eba7c361d3d785df7dd552c1772
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-proto-wire.go
+FileName: vendor/github.com/golang/protobuf/ptypes/any/any.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any-any.pb.go
+FileChecksum: SHA1: 130bb00f00b2e93b305543305e8813c745c22d20
+FileChecksum: SHA256: 2fedeec37abcbc819fe4aac48a6c8902042a7ebf7236769a3a3c6ccec58003bd
+FileChecksum: SHA512: 781f51d0d7398233fbc84fb50004a29ba82ce631893ffec07877725544cd3828410515780083752eca9f5ed6d511c4c8341eb98d97e43815f6a556540ea9cc27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any-any.pb.go
+FileName: vendor/github.com/golang/protobuf/ptypes/duration/duration.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration-duration.pb.go
+FileChecksum: SHA1: 1fccba693e77289d68bf9206045351832739737d
+FileChecksum: SHA256: 21c030e1ede121830e10b0c42659f99eaba2f60487f04a84d29a9ea9cf22f503
+FileChecksum: SHA512: 088ea6498a68f491d1f157febfd889b261c940afa8d2e0c3cba4429d93de561a86d1ff4fb437d538923f88f995f109e7f0f0a51f1f2fad313c39fe27f1d6b2e8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration-duration.pb.go
+FileName: vendor/github.com/golang/protobuf/ptypes/any.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any.go
+FileChecksum: SHA1: da8ccabc29ea1048e61ce906def01d4870d32e34
+FileChecksum: SHA256: 75da4293ce1a9a0d0eb66e00a22804dd4e31d9eaa30ac99737891d32ff5f8de4
+FileChecksum: SHA512: cf6a2d464800d3b32e3e9c62a52a636b931541ef73c6df628c43d3834b55e44b0ab4d3c46ffcc047d6b3d94c9a777850bc19207a584e40da9d219ac15e61e280
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-any.go
+FileName: vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp-timestamp.pb.go
+FileChecksum: SHA1: ee7ffc7e8ef8393008dc94ea26b2cd20c9a3bf00
+FileChecksum: SHA256: 694c11bfdc59e16bb641b7b465eede253da82f5c94bae1cea206caef8beac799
+FileChecksum: SHA512: 4b12a210c5f83b89657288a0a02c26385c5973f1fb27ce0a23cf7d41782eba44265ccbd9c17662824cd0e953030fe858f6bfc995f01257524795bfc127643c9f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp-timestamp.pb.go
+FileName: vendor/github.com/golang/protobuf/ptypes/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-doc.go
+FileChecksum: SHA1: 2211fe3750c2e90ba97b56a5632cbd90971157b4
+FileChecksum: SHA256: b5ed50b15ee577d30f374b878156069b4b1740578cfcf70686aa72624e81e4b7
+FileChecksum: SHA512: 28582e94b4fb13e418767b3b05bf1ac5d86da582c1a82f8513ad4af041c4ba083b78aaea3aa978a709d6024deab07d048c8da8f020b8ec58632697c8346fccac
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-doc.go
+FileName: vendor/github.com/google/uuid/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-.travis.yml
+FileChecksum: SHA1: 8c54f64e891af563d05b2be0f8cceefe46fa64d5
+FileChecksum: SHA256: 85c5ee4d345b1ee66b7c71ba3d323068a5530c2310e04c6341415106ceece25b
+FileChecksum: SHA512: 49b2de69c1d64e18a0d3db42bf46731a18736d07cc54a1d2f08eccff33cf69046a00c70a2fc3e83556739e3c39a69ca87f334078c68852539bc0c15833ccc8cf
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-.travis.yml
+FileName: vendor/github.com/google/uuid/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTING.md
+FileChecksum: SHA1: df682ac899830dcfebaf35f3daf73748e59fdd4c
+FileChecksum: SHA256: 3437b41dde90c94f4d66c9125940d7fc9ad371fd183d894a8ab0228497ea4539
+FileChecksum: SHA512: 367f728ef776c96483916f8e4f872e22b9eb5a3593ec8aa58511736a7fb0c7b2122f8e625ff0049885d1a3ee8aafc45fb40c75c47f6365e6c30f0a6418c00477
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTING.md
+FileName: vendor/github.com/golang/protobuf/ptypes/timestamp.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp.go
+FileChecksum: SHA1: 8d096352a6dffd30439841656584f961bf848fb3
+FileChecksum: SHA256: 562835118f4562a7ef1631a81fca7fa7dea68b5ea6eff9b33e2dbdfe7d1a4b64
+FileChecksum: SHA512: 69c99ee68045dc5ff33d5516b247a5c6ebd92eccc8a0890a01e66816d1dc74cfad28bbd36ddeabb118f277cb004c3d64820b312261ec47e7fb0071d9f383404d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-timestamp.go
+FileName: vendor/github.com/google/uuid/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-LICENSE
+FileChecksum: SHA1: 08021ae73f58f423dd6e7b525e81cf2520f7619e
+FileChecksum: SHA256: 0a8d61ed3cbfd5312326e8126c31ce9c627a283adc99131b56896d29ada04b2d
+FileChecksum: SHA512: 804d2c26af857d3506a29185eb3e367eec60fb66881b946c0847ed8c171072ead4f18744efbbfb99d2c4a5e19551dc2c22af28badd824e3c71eec66a9eac50dc
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-LICENSE
+FileName: vendor/github.com/google/uuid/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTORS
+FileChecksum: SHA1: 837bb54dfe0f73cacc6b3dba8fa5da0b3b56f11c
+FileChecksum: SHA256: d69e90a1901a669b3cc34dc07e99d60c8627d73c88dd374de488fec4fefd7118
+FileChecksum: SHA512: ac46299e8fd1135e71753d9d6672847647c654c65753a7c5a0fce2f4ac48045192ee66c9ef4333b9682c2f218177bacf38843a5026d94d131d3dd29339e1965e
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-CONTRIBUTORS
+FileName: vendor/github.com/golang/protobuf/ptypes/duration.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration.go
+FileChecksum: SHA1: d6c062570d0be12f63d989f87d6c3a24a6fc5902
+FileChecksum: SHA256: fc0c0495c43250537f8434a328ae670dd49fa01d498d5d64bb307182660d8217
+FileChecksum: SHA512: 1422ab46289d459bf26983779cf3f039b1fb10eb24e21a470d7109e2cd3725eb199c6fdc5635708f777a803389ce0ccb767c79ea896f0a5f105bf10b4eb16456
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-golang-protobuf-ptypes-duration.go
+FileName: vendor/github.com/google/uuid/dce.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-dce.go
+FileChecksum: SHA1: 02a2efb3ec5b3058950288fa6d31aa6dd4e8726c
+FileChecksum: SHA256: 6a4b89e7f6165a673e76f00bebaabf8d0d7eb4356a672c6cb771d95a45fb2695
+FileChecksum: SHA512: 5d89fd52d285bf9b7cadb5f7224a469ceacfd186663ea95a2012baaae815add9303fc964a214bf556be6e39e0b57f7475efbc5eb5af3d777ab2c2dde530da2f6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-dce.go
+FileName: vendor/github.com/google/uuid/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-doc.go
+FileChecksum: SHA1: a1e6141b5d5301f2f073ec0175793ad43a046e44
+FileChecksum: SHA256: 0b286e2af61ede9f58d2455781ea254284c477b7fce2447aab3203992cc51f9f
+FileChecksum: SHA512: fe64650d7ed4de494025305acf9a2b6c26cbe70924c59ee1f87de6acc7e188c57c0d95305f5ca985dd510aa932f642da5604c559377a5905c34364f87603c0a6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-doc.go
+FileName: vendor/github.com/google/uuid/marshal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-marshal.go
+FileChecksum: SHA1: 7bab98ce43e2b7ba5214f01e58235a05691fa051
+FileChecksum: SHA256: 933eb226d049268e17809fd37f777c650b9ec8cb3fa988534b792610a64dcc43
+FileChecksum: SHA512: 56938af349d49cfbd68bdc4b85a0892baa01ad6687e88bbae011e3e362cf93a46d4d94fce0bb06e43f4b9d944789faff313466abdc19c163241a7300a1e9274f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-marshal.go
+FileName: vendor/github.com/google/uuid/node.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-node.go
+FileChecksum: SHA1: f343ad00cf81aed9a78e8587f56713569e0ebecc
+FileChecksum: SHA256: 73a93d192ca24078e0f93b8c1675e13adb442421252d3974d697b0821c4832cf
+FileChecksum: SHA512: 3101410cf72e011963521420318536c49e2ea781391b6d9f8baf41a10b41d5f241cac6327be8b4e9e0a97042c283f8d038dc13ddde87c12cae5ba251b85f839a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-node.go
+FileName: vendor/github.com/google/uuid/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-README.md
+FileChecksum: SHA1: 48f4c5dc2dd87d803f7a4d03cfd6169817e2b986
+FileChecksum: SHA256: d6b7f5ba069addf3c353be5ee5db15aef27547da87db9e3cf9e28dfc090fb586
+FileChecksum: SHA512: 9f622b4051120356b432bc5254002227d6117fffa8b302c07e120bdf6e0f82fedf606d628e10a3a98d35ec83a71384b3385815776a7a13bcfe30c32d353ad3a0
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-README.md
+FileName: vendor/github.com/google/uuid/node_net.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95net.go
+FileChecksum: SHA1: 19b6df35b3997e9b9bc936af5da9a5255f22fb90
+FileChecksum: SHA256: 78e274b465de8da8690f4ab06281f41025b142c1d093e337fda1d6726b35662b
+FileChecksum: SHA512: b60180b021fae82a2c0865be28672a5e8043a6a20e7a375a56a29f9a1074869aff6d57ddf921ff6a329f0affb2a4acbfe30f16a71f921fce7e0f55353a203114
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95net.go
+FileName: vendor/github.com/google/uuid/null.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-null.go
+FileChecksum: SHA1: c544e7f850ec645541d090031023a8163af51c0d
+FileChecksum: SHA256: 791638f42d54fcf07ac752df6b2df92593f7da308f944465e2cda443dc3346cf
+FileChecksum: SHA512: e277c09969d136bfe29b086ba2b6bba3814779b6d591f0e4f810ca1cd1c7f70823848e9ece51c776f5e979dfdec8754c80c40785fc983d856d5ac28b33c2c5c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-null.go
+FileName: vendor/github.com/google/uuid/hash.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-hash.go
+FileChecksum: SHA1: f86842458f6e93cdba9f223c120efebcce4bbc5c
+FileChecksum: SHA256: a9af4e955bfa0854a9e4c949a09efead471dd1504ce4c2a336cc7a88365da6c6
+FileChecksum: SHA512: 0a9dd5625e9c5ebae62c839a6b5c6b82a8156c02cadc8b93ba70698158dfefcd6af778c8ed5c4053564235d7225261fdb813e36b74e37d9d75df7373bb974c54
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-hash.go
+FileName: vendor/github.com/google/uuid/time.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-time.go
+FileChecksum: SHA1: f5ad87aaae45c7f2dbc5fba2f3b1f8c503c85969
+FileChecksum: SHA256: 057f98f779afbc6d293330f7aa0aa5fcd09541ff008f93060bf644e6fb7df510
+FileChecksum: SHA512: bf1b20dbdd43fe04eeb221a1b078b962f129e1205e5cfd33bff9f4bd03df36d651efd67af44593de7e0f4b32a5467e8b2080212959656ab53126456ed9075250
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-time.go
+FileName: vendor/github.com/google/uuid/util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-util.go
+FileChecksum: SHA1: 24f078505eb1d75e062d1806d871139299a4e2e3
+FileChecksum: SHA256: 755f50afafb13dd89ae6177da7eb6dc31ae650ece2f9ba52821021e9f8de044e
+FileChecksum: SHA512: f61300c91e1ac0614992f11f3b0fc787f85724d2af7f453ba999c4e42cb352157d93817a24a103649a5b4fdab5c61e5b5836873180b69d196f89e410f19ba960
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-util.go
+FileName: vendor/github.com/google/uuid/uuid.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-uuid.go
+FileChecksum: SHA1: e3ee7e32073212db9dcd0a88b71a8f79393f8ac9
+FileChecksum: SHA256: f6e767f1b9e3e5946f600afccc01c0e40f1d494171f2f9d8659a2e15daf3d79e
+FileChecksum: SHA512: b40aac37f3eacb0013874145d78f0affe9f39f38bb4f4b427b40831f7f184b9068d66625cc3b7c7f42aebae0c51248c1b35e44cc1a4a91eee7c038b39e27f901
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-uuid.go
+FileName: vendor/github.com/google/uuid/node_js.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95js.go
+FileChecksum: SHA1: 35e59077bdaea8efef3a3d3d8c87bf950eda6229
+FileChecksum: SHA256: dfefab9417556736eb833e7fcbf3bfbecf1d9e8db589e1d914a87ad98c261af0
+FileChecksum: SHA512: 8d5f8ea27df5b32978a7befcbebdeb89cc02d7760aa2bda74099851b577b5974d15af3c77e76c953ac6942c7073050138ea136cc770036d184f0a93c1638d5af
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-nodeC95js.go
+FileName: vendor/github.com/google/uuid/version4.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version4.go
+FileChecksum: SHA1: 398a22020d88426d44723f058bd00c1bad2c9ac7
+FileChecksum: SHA256: f252aeb4028659d83cbf7b037d4524f7c9b76cde1fdca1f6f7de310dab6f4dcd
+FileChecksum: SHA512: 969049c2cfbde93e8c049cf6e743441427ab94308b4fda5a473f4ce4b24d293b2256119522860c3c64bf1152e62f7851d615563608fd1674acb8648043d49199
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version4.go
+FileName: vendor/github.com/kardianos/service/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.gitignore
+FileChecksum: SHA1: da39a3ee5e6b4b0d3255bfef95601890afd80709
+FileChecksum: SHA256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+FileChecksum: SHA512: cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.gitignore
+FileName: vendor/github.com/google/uuid/sql.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-sql.go
+FileChecksum: SHA1: 7ca24525c43ce49d0fdc536449ff6389fe6c1561
+FileChecksum: SHA256: 29281b11e8f97f1ddf73d087854cb401ba42a87c4f59ce45fc69763a4d927f2f
+FileChecksum: SHA512: c53a8cfb884a4c850cb973f20ba43e1d5da2dfbda662aabfe33b68caf814bd9ec764107aa12265fbaf2c982c5af1532f027b73f34af1c9310dff938df85e5466
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-sql.go
+FileName: vendor/github.com/kardianos/service/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.travis.yml
+FileChecksum: SHA1: 8b0931e4b5baff5f380015071cdd650d422ac651
+FileChecksum: SHA256: 47bd70148e7a91a1516547235a35e2228de3ac1953e5caf77f63230907431781
+FileChecksum: SHA512: 2da8b4c597e03daf23ab5ddd5f07350a68a318e6657636cb25d63bd8901f84d3b2b67ea774dd5c6402ba58c0df69f431f8a14d25d682a3e4a7ffb268ffeb16d5
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-.travis.yml
+FileName: vendor/github.com/kardianos/service/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-LICENSE
+FileChecksum: SHA1: 728bf1c4bf9a93f534c1c18d0a10f7758e032a4b
+FileChecksum: SHA256: fd7885854c9ebd89997ab499a7bf5083c1681e58b6d7cb40a458906d5392d78a
+FileChecksum: SHA512: eff0493e6b84f8359b8709e7696b3e200b93dd5e2a9004d2ae4f1ed037af539ba37ca51c7c97f4d1c0e58acc63f10dcef1aaaac7b229816d1df322bb577796be
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Zlib
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-LICENSE
+FileName: vendor/github.com/kardianos/service/appveyor.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-appveyor.yml
+FileChecksum: SHA1: bf2524f2ecf9f77fa414064f5336383dd2f77c3a
+FileChecksum: SHA256: c1fa01ba2606a6a47d9b7e2e53577b793a7eb5c0de5dbdd5f949f63092befa35
+FileChecksum: SHA512: 75123b94294e3ab9e639fc56b620b7140fabf9fc80121d44d7e67d8aece25725562e0e7018932d4422a347cd7b86edb7aabc3160fc41048c5c1864c3a14430a7
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-appveyor.yml
+FileName: vendor/github.com/kardianos/service/console.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-console.go
+FileChecksum: SHA1: 504a5d927902ccf78b158c86a39f59d0df65e50e
+FileChecksum: SHA256: a59a8418b440df8e8be65e735d0efcd0307dc1f8258b35ac27c652234b0b4a34
+FileChecksum: SHA512: 918eca1fff1d08c2de67d424a1496196bbcc6a69601015ba95be5f637dadc75c7bd42896a90ce25cbd31648da4ce067eef4332db791c9b2dd4eb6b2691c345cd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-console.go
+FileName: vendor/github.com/kardianos/service/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-README.md
+FileChecksum: SHA1: e06fe8fca0d5c33213fec540f8913d19da35e037
+FileChecksum: SHA256: d9e7582607fe3ba768d7d44cfcb40116a11a1f8e1441c60cbd54ae774a49fd6b
+FileChecksum: SHA512: 601bc1fe6f0f978aadfd188976754e08fb9c66bc657aa77b7048270e5204b79d672e510ff3cf57155cc8b279040fdc309e421f89c26fdd5aee368c97984a2a12
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-README.md
+FileName: vendor/github.com/kardianos/service/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-service.go
+FileChecksum: SHA1: 4591c0fd02adf14f4701c02c5b033493052bbe67
+FileChecksum: SHA256: eec771ec704ed1ab7035bb4379663e1e5911499cd4aab19bf5c70d90f26d50a7
+FileChecksum: SHA512: e180c04f8bdf48235bfae5c0aa2e48bf0f9d8f8d4166241dcd6a75d5078d534fdc78de18d622fddc130e3ba7beceae2f819480e79d0677e3572e03ff6b22730b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-service.go
+FileName: vendor/github.com/google/uuid/version1.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version1.go
+FileChecksum: SHA1: 48b1fecbc25201fa0c3c65a3f2ec91ce3e3613de
+FileChecksum: SHA256: 38a2c229a2aad4bb72d45529304f210b1f31e8ef60bbd2605690a10f0d8a8242
+FileChecksum: SHA512: 1a8ac9f55cc4acb96f1a94c02048fb52c4b11ea493904a43c8022497ab5d91aecd4228357a810e539235b9cf7da48f63539e161c12d6ab1b775e57707e96e797
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-google-uuid-version1.go
+FileName: vendor/github.com/kardianos/service/service_aix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95aix.go
+FileChecksum: SHA1: 8d3be74cd45fe2c430839cd994699e0d812a88ab
+FileChecksum: SHA256: 9e14d817f3b7d96e424f04970c5c36d30d707a32940ec771aba9732ae1ebc98a
+FileChecksum: SHA512: 363c81395c15660d6a23919dd1091f6c8e5b29a896a2693fc05c42fe2e76b025d5a00a83e4f9d85de7ba08e3b85b298c0a8eedeb8d307fed24826bcbe49a3cdd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95aix.go
+FileName: vendor/github.com/kardianos/service/service_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95darwin.go
+FileChecksum: SHA1: 96e747f63f36b55aa4c65c385d75b492b0f4ecd8
+FileChecksum: SHA256: 5ba2c5b4c6ebd7ed011f75d84a0a758aec4cc613d286a0bd32c12b0bbdaf069f
+FileChecksum: SHA512: b422a8d92298d2c68c137ca04de3d2b90982dee4da02b88d2e50f7ee522c9b82b035b2fe96038150d00a5f7c7ac86ad50135a4b09933bfce241a1d109d15aa62
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95darwin.go
+FileName: vendor/github.com/kardianos/service/linux-test-su.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-linux-test-su.sh
+FileChecksum: SHA1: 0cd4cfffebe9a8c085e22c08d3b5c2fadf190db0
+FileChecksum: SHA256: ea99f0ffdf9bf6af5953fbba314ace974763e6629ebc9f4431d428c689a7914c
+FileChecksum: SHA512: c0a0a2b8588b93ca21903be8e798eccd15799b83bcc65e319625ad12d18510ac9b9fda68e57ffe1254076d03f883f5ab0dff0fd9ea59b0d02256565a644dad6a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-linux-test-su.sh
+FileName: vendor/github.com/kardianos/service/service_go1.8.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95go1.8.go
+FileChecksum: SHA1: 34bb27985319a8876c9dd287bd4fd957e5b88aa5
+FileChecksum: SHA256: c047704cf57738ba6bbdfa411bb3459b623c9836bcfc27f183548462be599298
+FileChecksum: SHA512: aeaf184c2649e11b64d61543b74e9f951130e884f5c88daea347fe646192fda4268cd27827d20702771240268f7a0420b9f55e4281b37bc6ee0907995fba528e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95go1.8.go
+FileName: vendor/github.com/kardianos/service/service_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95linux.go
+FileChecksum: SHA1: bf53af9461981bc55ccbc71f7379b60323719766
+FileChecksum: SHA256: 6912314837ae69e2c4357bfd14bc9f277da539b772af315982d7a3dd0b4ff260
+FileChecksum: SHA512: 06bd33d95564b14fc6348ead604facfa913f656235e90a8d91519289ac61539deb4db649d46e3dd94bc85f6364b2224ade6192b64a93cba9cff25cd111efde12
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95linux.go
+FileName: vendor/github.com/kardianos/service/service_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95solaris.go
+FileChecksum: SHA1: cb7a35bc25cb6fac283e39680e04a47f4ad5d99c
+FileChecksum: SHA256: 5f733f10125433683b7d9a0f33d61c361e9caeaff801cc4e0023712a4a78ca86
+FileChecksum: SHA512: f9e001f2fbfd6e64b64f642fb88dec5dcfccbf533057c8878492b9ccb986bdb23e71c46d5df1de8a2114facd405314cb200af490c807ac3fec8d8a25e30cb4dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95solaris.go
+FileName: vendor/github.com/kardianos/service/service_systemd_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95systemdC95linux.go
+FileChecksum: SHA1: ea70202f2d4ada9ef45c58fffae113f8e371bcc5
+FileChecksum: SHA256: 7a59d41516b617a0ccce88ed8fe15f7b7419ef82097bcc778802757d85b90c3d
+FileChecksum: SHA512: 899548bf5d9ba62621253d5788905fe0b5886017b6f24c30ddde5b63ebbea308a04ad19a16606a7b0102f9ef0f8715689c98be766d9a21dc6839e9644e767efb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95systemdC95linux.go
+FileName: vendor/github.com/kardianos/service/service_openrc_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95openrcC95linux.go
+FileChecksum: SHA1: c9261e92f6e9b3e716c881be6803a4bbeb5ecbe6
+FileChecksum: SHA256: 8343477910a5c6bc2de5c4aa9de6d28b231b5bfd9f4151836424344f2eeb32b5
+FileChecksum: SHA512: 75c8868bb7c303df389c3788079e11b0428c2d204aee43340b71679ec63da1ebff6f33caf598d5b5c7bd7f27ad852393c0a9759241c7f577b6600233f1e94845
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95openrcC95linux.go
+FileName: vendor/github.com/kardianos/service/service_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95unix.go
+FileChecksum: SHA1: 00e041b1529aee9215a7d984bd12ea2e7a9ee50a
+FileChecksum: SHA256: ddebc0bbb46a3b5408189c42d870b606b72e19fc35ad75512e00377a32a94608
+FileChecksum: SHA512: 0ae34f1daaa78ea01ac89d60012c1ac9310e8d6fcc7f58d0fafa5114efad7f23cb165b7e16a5830de75539cc7bf11161a5cfcc5a64fbbc3e3cac6d5071592272
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95unix.go
+FileName: vendor/github.com/kardianos/service/service_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95freebsd.go
+FileChecksum: SHA1: 1e8c19e904e843878ba1d8f517971f7333404b4c
+FileChecksum: SHA256: bba85965281abe3a17860c1a882d68d318f7c6da19b6c75e127c444eac4c218f
+FileChecksum: SHA512: 0dabe589d7b9b3bec4692c20ec5b9441e67d299343e0196585d8bb6d7ec6fdcbe4cd1f6e906407570f675171f1f3d0dfbb1aa28f842399573b64d8e45a8607be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95freebsd.go
+FileName: vendor/github.com/kardianos/service/service_upstart_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95upstartC95linux.go
+FileChecksum: SHA1: fbc1933187966e38f001d10dc412d7b8f9875e7c
+FileChecksum: SHA256: 4be54b492921308609a25f5ba7bc1a7d3b88bd1fc769b3e8a933f4dd995abe1b
+FileChecksum: SHA512: 61b11c63c46af0f7c9c95b14288f2d684e18cbb8eb2c4ff73c6371382e4f294aa78eb35a16bca2a1fa9944b205473fabd71939b53348c45396177e692469bda3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95upstartC95linux.go
+FileName: vendor/github.com/kardianos/service/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-version.go
+FileChecksum: SHA1: 3191af147f5121a9e550ce28b71f721236a2e456
+FileChecksum: SHA256: 14438b943cf5a2c0480cadda4678159c3f88e1d6f5d6c485d483d65895079a0a
+FileChecksum: SHA512: 02e7eab4e37eb73a89eef78fc2a1932ebd324bf161870ecbd8aca8e7061e8aef23396e66a8adef3ae9de19ae8264c46dc82de40157dbb9611d1660d11f19b6a8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-version.go
+FileName: vendor/github.com/kardianos/service/service_sysv_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95sysvC95linux.go
+FileChecksum: SHA1: 669f5e38f19b1daad70c0c5ff21553871bf4c563
+FileChecksum: SHA256: b750feff7b3cdca0526ec7c6a24eb14d611d78e1ca5f5cbd56b9ff2ceab46fb0
+FileChecksum: SHA512: 4d1d5397d9661784a583da4ad502c987bad8a082f9067b49819c0f896efa7d1e0d5a1c3c56117a459b64febaf98c9f833e666b29bdbbf3512d8749c4858da171
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95sysvC95linux.go
+FileName: vendor/github.com/kardianos/service/service_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95windows.go
+FileChecksum: SHA1: 96baa7b74273b75916694621a41e7fdf47b3186c
+FileChecksum: SHA256: 05e5d9cdc9fb717ef797f596fe2404c101141605b2006b890ba95a9071b57b42
+FileChecksum: SHA512: 5fe48a91b6ed2f4e1d0661f175838a67d68d92e9a0e937c64a6f8b30bd294d057a619eaf4bcdb296962869c542756d6b4a644afb3615f6ceabe2e75ebf5730bd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-kardianos-service-serviceC95windows.go
+FileName: vendor/github.com/miekg/pkcs11/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-LICENSE
+FileChecksum: SHA1: a347f428584b1ae13a669c007351ba7885597d59
+FileChecksum: SHA256: 8e069cdd54eff0e36fc8d9aa5d945b3f00a0ea349c8ef2c7f4b88f6e2be75fe8
+FileChecksum: SHA512: 0fd41878d6fe4e7d3efacdf35347ad35904c77f5ee0e69954d12593ae0dd527387ba01d8372925296a21d99e107bcd2280d3e8f7245c6e8939258d642d6c119f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-LICENSE
+FileName: vendor/github.com/miekg/pkcs11/Makefile.release
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-Makefile.release
+FileChecksum: SHA1: 95bf12fe1ab4b3a3e766d49c8e37d7e6cbaa71a7
+FileChecksum: SHA256: eb39e09c0871e29e0e700f8a6383eade3895845b46d2c4defb057fcf68ae9d57
+FileChecksum: SHA512: 47a40f1113077de151102bd91cf8ae133322d237208407d00c767745dee34b9d4030b9da0b503f0a1e058412dfb986f0f5a5a307cbdcbb0c6c596dfee3d2c23d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-Makefile.release
+FileName: vendor/github.com/miekg/pkcs11/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-.gitignore
+FileChecksum: SHA1: 0ee5775bbb41a26d35e4fc5186ebfe45c2c87f2c
+FileChecksum: SHA256: f3d04d16281b3dd79db526d73a81aebd43d56727f5b2a8becf38e0c8b155d590
+FileChecksum: SHA512: 3aa8de2db628249780b051cd813ae0fd6f9128bf911d7b17b915a3e05c8b6c9e5308966ff2f9381f4f6de676dbdcc56f7b83d2ec78fc8219e74253361ec03040
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-.gitignore
+FileName: vendor/github.com/miekg/pkcs11/error.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-error.go
+FileChecksum: SHA1: 581a1f4d7e1b5b644cf022d7e855a468ad6c5eb4
+FileChecksum: SHA256: 3026f9696c3782a8961dbc422c92813b6842f7b920f1c992626c242d57fd905e
+FileChecksum: SHA512: 9e81098acaab0a066083c5b4582f085442f58c1bc53acfb279b834437b246008c6fbe184ec5ceff7b5ce8dd38141233dd0d9227c0a960941258dbc3827165b8c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-error.go
+FileName: vendor/github.com/miekg/pkcs11/hsm.db
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-hsm.db
+FileChecksum: SHA1: 4e37be923b0de60c164255916f7b4815ca23649b
+FileChecksum: SHA256: 1c00b9cab55f6280e4e647832d151bc88eff131a9e65d260a1865b16c2c24ac3
+FileChecksum: SHA512: e7668495d87d550ac48df43dc195557389d8d2af08e922fcb17c366c8289be12258863fbd92f4868415cb562e4657fa66ef3a74a462a92fbaef03eea1463bbc7
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-hsm.db
+FileName: vendor/github.com/miekg/pkcs11/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-README.md
+FileChecksum: SHA1: abfa39f613655955e038f0da6b62f4fc7917dd25
+FileChecksum: SHA256: 18d83db0f6af32ca6627b9f0c808c391ce6b27a30e93d4b4a6d73b16dd75f96c
+FileChecksum: SHA512: 276edba6a2f95ad0b2d9eac6b27fc526b21fa2b2827eb60d7869e03690ee6ab1386d7656f96c57d4f3ca0e731eb8e463cd86a00d06482395bd84d0a4b66b21bb
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-README.md
+FileName: vendor/github.com/miekg/pkcs11/params.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-params.go
+FileChecksum: SHA1: abd5f730853917ee6209b84b1f94368d74b64d0d
+FileChecksum: SHA256: 9d47d2c17e9f740494ac53d6591e09d323d2a55161ef64dbd269d1e19f613571
+FileChecksum: SHA512: 52966a48d18cd398fb0518891a3d8523a5d719b266e73b7e52bac5e2beebb70bebba51c664c210e26523441d7994e316708888c69721c62b1fd75922d20d4b1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-params.go
+FileName: vendor/github.com/miekg/pkcs11/pkcs11.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.go
+FileChecksum: SHA1: 1a51fd12420e17446872b3a938c110739bb5712b
+FileChecksum: SHA256: 5526f04171876c4a5cbe8e0791cbbd91ec0680581a19c1e1b8e45383b17b93b5
+FileChecksum: SHA512: c856b2faf1e82473e67e7d1a35488449fed00337f509e8b4c221cc487f56f8ccda28be4af2aee278fe9b45e811d96e7aec2120efc819b79d1641c202b4263779
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.go
+FileName: vendor/github.com/miekg/pkcs11/pkcs11f.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11f.h
+FileChecksum: SHA1: e75b76f6c0ee7e686f07525e929b665993fdfff2
+FileChecksum: SHA256: a85adad038bfc9dad9c71377f3ed3b049ba2ac9b3f37198a372f211d210c6057
+FileChecksum: SHA512: a6bbf3910deb122d7be88ae1af98d25cd66cccccd957cbcc02c740ba59e7d2eeb23f9558477219e69197ab1ecce9a90724244891b13bfed875b1032c8ab96b3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11f.h
+FileName: vendor/github.com/miekg/pkcs11/pkcs11go.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11go.h
+FileChecksum: SHA1: a8da4cbcb916178f303c49f968c84783ac4513e8
+FileChecksum: SHA256: 264876981b3074540b8d198cdc2f0a8d9cedd663ad699e6832c535ca92c77504
+FileChecksum: SHA512: 8e40243b0ab36da639b3c61fadb83ab3bd7d1cb1e3bfbb5b1683be0edf9237638b6b3acdd7c06fb5c20ca1b0d14e7f91f4deaaac325028472d36bbdb6d997c28
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11go.h
+FileName: vendor/github.com/miekg/pkcs11/pkcs11.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.h
+FileChecksum: SHA1: 1b03c80c5e68f2f82c580843906df41ed5c6886f
+FileChecksum: SHA256: 8bb7aa1aeaa328b6a39913070d6f3d2bdeb9f2c92baf27f714fbb4cbefdf4054
+FileChecksum: SHA512: 1e7ccac2daf67a297c9d4917064049afd0070a8c76dc7a4599d260ad1d6005093be597a3f87038c56438184fa2b30c6d5ae0ba54c95d183c96660a12bb0deaf1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11.h
+FileName: vendor/github.com/miekg/pkcs11/softhsm.conf
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm.conf
+FileChecksum: SHA1: 11f89d095e74484220035d687c7f7894b01334cf
+FileChecksum: SHA256: af9d74f91e4404e144204e8ebb8fccb00451f70c2dddf0174f2344a80afa2a40
+FileChecksum: SHA512: d9ccc14e369830b5176ac595adc7091dcc80b154e00616647e99693e2d96216d6902f47f206a56d3cae5e672b1cab22b6af8b1660dd1a88606577e2603927ebb
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm.conf
+FileName: vendor/github.com/miekg/pkcs11/softhsm2.conf
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm2.conf
+FileChecksum: SHA1: a23faa170dbc2c50a28915202f7e4f1c178a9550
+FileChecksum: SHA256: 6e97a1bb0d055eed57919beb47298305a82b03090871f05d7b7efd841e4b810b
+FileChecksum: SHA512: 2fbfa86f6d07b76041126403928483f08dfcde8c185589b57c4fe6cc4da2e2ba4247322664f4966aed29d2ac030a5666dcad62c9adbdfefe671523f516a74eb0
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-softhsm2.conf
+FileName: vendor/github.com/miekg/pkcs11/release.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-release.go
+FileChecksum: SHA1: ff634917fd425790553669082f35b5f79f8bbcf3
+FileChecksum: SHA256: 8a5eec111db252bea24056303e21ed670ad1928d6e9073feb2f3522521e942dd
+FileChecksum: SHA512: c6acb4235cfbdb03e48e371966cdd891e3337d2d2605ecc847e9a92c281c90ebe309e042935b3ecfb4eb95858147db5273d589ea2d8886c0de9f2d6f02daa6e6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-release.go
+FileName: vendor/github.com/miekg/pkcs11/vendor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-vendor.go
+FileChecksum: SHA1: b421c29a9c77c1733d321a79ba378b3ad1c24652
+FileChecksum: SHA256: 19e6daf7231cbb0c2536a809f53ddeccf841a4094fe16665fd5e24ab278b033a
+FileChecksum: SHA512: 1992e13aac1ce0441040de360fea620915f5d4123cc75856d206ecdbc15ba44fd87a4836955a8e53cb6fa829b65a0fe5f7c7663b00bcf5641bbacdfb6ab13e06
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-vendor.go
+FileName: vendor/github.com/miekg/pkcs11/zconst.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-zconst.go
+FileChecksum: SHA1: ad2b5f71c2603774370877722c3f8dadc6108f40
+FileChecksum: SHA256: 50bd66b68ea070cc23fdce25a01cda62a042f374ef5e81b7730eabadb03c6295
+FileChecksum: SHA512: 195e43679ee17c09e49914825b8a74193ed00cd6be1d131112fbfd8b9c0d4b3ef5d69f7b0e168c55dd99437c4e26b8c3507ee311fcf9e0c6103e14e6adef37c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-zconst.go
+FileName: vendor/github.com/miekg/pkcs11/pkcs11t.h
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11t.h
+FileChecksum: SHA1: 4605fe2f58315a7384d60e6c99815504e6d586fa
+FileChecksum: SHA256: c7c9b49add3f53d77ebcd0e23b37bbd63388f610b02e68d185bc37f4b37c344e
+FileChecksum: SHA512: 042bdf604b0555c677627a96288612ab6e5040b73a76c3fd744362b1261c014767cd7aa00597168cf0a703c8f2551f5ba8fe8938a13a2b5787ac0700d36daf61
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-pkcs11t.h
+FileName: vendor/github.com/opencontainers/go-digest/.pullapprove.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.pullapprove.yml
+FileChecksum: SHA1: e5b82139c0590739b59e052e4d35804dca51c671
+FileChecksum: SHA256: fa428cea557dd43923fb5f8338c49109e8f320bfc4d62d4d7dedee75889ca59e
+FileChecksum: SHA512: 89cba5b2dc3240fe3e8f25139860fb96f48291c93e5b02bf4f5d12141453da8f7c649544c0a15ccfc0db8a5fd7deac6d802fc2284acd148006e022e82c007b77
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.pullapprove.yml
+FileName: vendor/github.com/opencontainers/go-digest/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.travis.yml
+FileChecksum: SHA1: 649ec88efe5da849a24952bc46d387a86ef5ca44
+FileChecksum: SHA256: 2ad656e0e1ebbf6e2fe44cf2041b1b52f6f32d2c7fa8fc7db4aedd80596ade22
+FileChecksum: SHA512: 46e6866af864e3f5df646ef035d977fe654c2b3614b30854546443ca4f5e06ce5da66fd6f59e28b91cf71fc8cf83b60d543cf479300d17cc2bdd9fef1365ec5b
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.travis.yml
+FileName: vendor/github.com/miekg/pkcs11/types.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-types.go
+FileChecksum: SHA1: 60905ec0e6e8c1ee71d994015c782d0f95f7848c
+FileChecksum: SHA256: b8b02829c01f19cc3244773da445f05c19ab13e1a76272a48d42f891a2230f6f
+FileChecksum: SHA512: f9757e8e4999f11382b5f613c81f5b58bce85304bb3048855a52edb80bf63465f813667f5ffedae5a62cbc599a78a3a623963ae263beab48003ca78334c2444c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-miekg-pkcs11-types.go
+FileName: vendor/github.com/opencontainers/go-digest/.mailmap
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.mailmap
+FileChecksum: SHA1: 7464174afba16efde500e0b4d5ced8e375858a7a
+FileChecksum: SHA256: cfd835322593a5a80928b33a999801d7c3ec982f18c11b30a126b95f294b268e
+FileChecksum: SHA512: d48a262f6147ba6c43a4c3a9adfc9d8c41b6c79d67485d7947d020ce106390aa20206e2d4fc125040c9cfc4974e88ec324fdc6bcec6a8af0593db8f8820ba1fc
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-.mailmap
+FileName: vendor/github.com/opencontainers/go-digest/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE
+FileChecksum: SHA1: 93ac97c9679b68518f1fd7de627ce2f77f44082d
+FileChecksum: SHA256: aceb55133c41c50c2e170c5918e301fe74f592d0f28724bf2f7a7bfdcff1fc5f
+FileChecksum: SHA512: 6e87e801e4f5fb306f4a3eb4b8611b11e32bc882b61aa2e65d6cd4bd626dd2240c671459adab98336bc69f7dae099d6d46dc97e7430d926f11a6227f769893df
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE
+FileName: vendor/github.com/opencontainers/go-digest/MAINTAINERS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-MAINTAINERS
+FileChecksum: SHA1: 10c0540aa14e761af81bbe9a12d9bd20ea7c236c
+FileChecksum: SHA256: 5a0a021201181cf76ea2e4da630ee132cd38d9773f9c85ca8aff900722b6224e
+FileChecksum: SHA512: 23493b4ffe006a61631ad8edb429e87e46f3d1b97bb9a0e9079de06eaa1893e0082ac84d5cbdb2d1c6c58769d92b4e326b3c5e21f8d283a568b25c827f7e1f0a
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-MAINTAINERS
+FileName: vendor/github.com/opencontainers/go-digest/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-README.md
+FileChecksum: SHA1: 6dc19e11efda1a1c3e889aa25ff70d11e6d7e495
+FileChecksum: SHA256: cde5e79ad3a2c65cd30a5df53b0f990480ab632e9305065a8162ea204d7e297b
+FileChecksum: SHA512: 802b5511184a92addb889724e8331130b3a34284bfadebe9bedbc40cb20bcda1e1d3a1b489eb030bbe997368bc85ea17c1929185ce750694fa0493183d7830de
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-README.md
+FileName: vendor/github.com/opencontainers/go-digest/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-CONTRIBUTING.md
+FileChecksum: SHA1: 83f0b7ac2d336b0244a51bbeca029de831329ff1
+FileChecksum: SHA256: fb512f2ece90b27f3ad91b418c5c5be33a81411e8308b43a83f9e6347742fe08
+FileChecksum: SHA512: 5e9f5e9c42a605519133cbd2ba91f7131870370a7afb1470c24393a39a01199ec71f9702173950594b8aa453d824bb4bfe2f6492b2e3cfe4c33f1742456a922c
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-CONTRIBUTING.md
+FileName: vendor/github.com/opencontainers/go-digest/algorithm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-algorithm.go
+FileChecksum: SHA1: 89f16c46a4c90553f276a637d48bf388dc4cc768
+FileChecksum: SHA256: 08686864344716dad0e1b8192c53113768cf1d226947fa6d562600cdcd5f947f
+FileChecksum: SHA512: c2fa821294ef290e4c07bdf07886acf1e9714c5734456c996e5184a8eb7c995fe3a436258a3967a8a9a1d87f1e3000934d95f0e291e941f66d646fac0584a924
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-algorithm.go
+FileName: vendor/github.com/opencontainers/go-digest/digest.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digest.go
+FileChecksum: SHA1: dcdf7bdd6269697ef6e3920861c7c0a2259b080f
+FileChecksum: SHA256: 95c0eeccc1f159c4086480a10900d622ec8319dc3890e679cd6079e98f55e35d
+FileChecksum: SHA512: 5e5b10e81a1fbc16309beafa5118820bd08dd61f7129fe18e7806a204794e9379d227d3eee721ced90320bd268597bb64449a363a91a0e29273ec920bf7a551e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digest.go
+FileName: vendor/github.com/opencontainers/go-digest/digester.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digester.go
+FileChecksum: SHA1: 4cc769375b8a7f84c8be5935e5b61925fadd087a
+FileChecksum: SHA256: 5c4574e0855ada2e71e4672700485807b4f507c2c8a9f79c700969fbea4915e9
+FileChecksum: SHA512: 1c91fde49a23101e1dc1ae1e0834eef7283795e97da29d3cb3cd3438d32c2c10779cd87f872f19a7e6cecb55d25e68d8f8832bc82936a5bc543afe12fec9d61b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-digester.go
+FileName: vendor/github.com/opencontainers/go-digest/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-doc.go
+FileChecksum: SHA1: 15e32f78c0b8aad4943c5d30aa41b6123acd786e
+FileChecksum: SHA256: 7628099ea90a7c9f9fa2ee462c62dfcb9d6eb47a55f10ab53638bafc0c866f2a
+FileChecksum: SHA512: e6bcb90cd09e62b889673945f4384fd3fa7f4c4c1886ad3a259141d8a2426820fd64d94481d6e2b0e8f3e6a2df7deadb3d8d85a40392710b85074efaecb2b13e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-doc.go
+FileName: vendor/github.com/opencontainers/go-digest/LICENSE.docs
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE.docs
+FileChecksum: SHA1: 979fd7d5c67073b265d96f584aac3de1c419b8e2
+FileChecksum: SHA256: a1d1adec3ba691ef6e377a78bbe9e9e2501f2f4a1723d08857da1ac6564e4fed
+FileChecksum: SHA512: 0de1f757b8c3ca45d267da63f95e058ece029e9ce727ee33b89c8eda98e356a0e9b928d7316825c30fdc2746c864ff3fb81c224b6c8da7ae5fd11bfb2d8e7878
+FileType: OTHER
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: CC-BY-SA-4.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-LICENSE.docs
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/annotations.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-annotations.go
+FileChecksum: SHA1: f3aee2f4608633ae2196b692e22e481ba6b8ee75
+FileChecksum: SHA256: 7e15968153a0b6cd1362f6c32496e4c8b401f0265337331476cfcddf22ebdac4
+FileChecksum: SHA512: a6cebe370b7510521a104e39e599e9d67b9b469b6ca8c582c9955d24ff6840d73646bc333c7e75fbbff090cd6579db3e2022c472a10c512b8a31a29557427f9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-annotations.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-config.go
+FileChecksum: SHA1: 9e374abb32ae7c8493adf962d425726f95313a38
+FileChecksum: SHA256: 53a0c247505e9288242594b9b205ad4edeb728d96b9d500c377e42700ae25745
+FileChecksum: SHA512: 6dd55b1b5ea833243445bcb7ba3df7fe9e6f52e72045afaf935a3497db9e685c925b72359b5ea7a13d1285af869582d4f535929b3db8688457e09bd48f990389
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-config.go
+FileName: vendor/github.com/opencontainers/image-spec/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-LICENSE
+FileChecksum: SHA1: 298850a6cdb155f54cfa44641df70b36228ed031
+FileChecksum: SHA256: b0a3f39513927db306adabea11d14c23f079d4febcea241d123a68d1a0d45418
+FileChecksum: SHA512: 01379f3c8874dce084fb767d58563b6f1e15801e4849969002ae26a0c64dfa1dc01211be808a47f928296bb73a32d071d475e3610c37d01ea7a8b4e4dd7112cc
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-LICENSE
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/index.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-index.go
+FileChecksum: SHA1: 58301da2fe1b34da9413ebf6dde9f97b0e38a159
+FileChecksum: SHA256: 7cfabd03a310dd40c39d1a876d31a49286d72a9f11df132c75dab348dbc94889
+FileChecksum: SHA512: 8aad81a4e89d2c847a4c3b03c5fd4ae15125db5be136f997a7986bf88e47b31a4e1dc2ac73297fc98aff7c9016007a9ac91bb307055336c3b71ca10b154fa644
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-index.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/layout.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-layout.go
+FileChecksum: SHA1: d6dfc4880b07ea6a1703114ca7bf05a8c129fad8
+FileChecksum: SHA256: 8c0a1f3079a5c97c647df76ddc86a39e9df260e58a5ad7dab6e3fef11a051f84
+FileChecksum: SHA512: ea82e1a5d1671d2aa15ee816ab0e51d2ee92c638d24818f5d916b5082e73a3b75e590acce415baf86e82cfe965e55c7fc5b02cc46061a0bc0fe907448cc0c8fc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-layout.go
+FileName: vendor/github.com/opencontainers/go-digest/verifiers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-verifiers.go
+FileChecksum: SHA1: 53da9ea45795d03d78fb8affd5b890d68d0c81c6
+FileChecksum: SHA256: 34322216519ca4b78afdbf629e6536cf27bc7eb40adf5d1e1c1f77da5cbf38d1
+FileChecksum: SHA512: b5573a558ef6a03a914744a2476ab8c95a52bc68e3d75d0ef52d23c2d29aab50f2765c86c7aaaf90f6ab0045647cb3edaa33bad6c9ccf64cf85c757b7547c196
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-go-digest-verifiers.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/manifest.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-manifest.go
+FileChecksum: SHA1: daefd51fb9efa604ee0656887b44ed461aeffb1e
+FileChecksum: SHA256: ae938729e5b9d4a21712a3b621d94e3284681ffd2d98d0f5b86b1b89e7b458be
+FileChecksum: SHA512: 17fd7822adaec30cef389933fe3eb22bfc006f38159fe67cf142f80b06a97f2ceb3452214292b6ff6e50b561f4abc655f12be8aba007d16019bcc88a2c5c1c64
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-manifest.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/mediatype.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-mediatype.go
+FileChecksum: SHA1: c75bd53f5ecb998fa44e55fcfd9d8bb28d9c3a0b
+FileChecksum: SHA256: eb43e04d3adc97e3eb604d4ade6615a6835d5881b6c1dfa4622781b77a95cf38
+FileChecksum: SHA512: 7bc2297740ed616282b91d886654820707ebc94636a2eb128e8ce41f8e4719e7710006f433e4094a79abb26592143a094c8cb8b14c2d7886289567feebd50633
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-mediatype.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-version.go
+FileChecksum: SHA1: 01866d3b0e116f1c987567d785da434532d59131
+FileChecksum: SHA256: b11ae6d0ea79c955b23831f856647a1af6a9fc9b40f2a2dec9daa467afd97c4e
+FileChecksum: SHA512: 6f859b8af60362bc07857de8eaf872d7c95df52fc20fe0f373ed15828b326878c660e08ad90d4e15d0c202f55437eed71f3a7db516136f3e413b08113275b964
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-version.go
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/versioned.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-versioned.go
+FileChecksum: SHA1: 5eca66943d6b2f3307b0817ad4f2e02c8ee9ed80
+FileChecksum: SHA256: f77b6fc9f0f79877adcb66f0b2d175df1c5690664db60db8920c812e91b422fa
+FileChecksum: SHA512: 453d441e1fd590b1602f39b3099cfb773a177e048bda59ac238f61418c00c20e2f8f4ddb4e1480dcb3fa0d1313bb2c7e44e46e4daee41d71eb720d7836466533
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-versioned.go
+FileName: vendor/github.com/pkg/errors/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.gitignore
+FileChecksum: SHA1: d9a6d2ae7e2add88179e429f787e6a5b2c7b1133
+FileChecksum: SHA256: cb568f716e3315bcebfc75bbc274b56577c2734ec3da6729ffac15919f416240
+FileChecksum: SHA512: 2bb81143328929299fc309960108c9fb7ea45410e0f1904cd30e8ecff02f75c531997facb35cec5be600a9fb635e9fad24fc81abb12a5d0e97289a99124bf4cd
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.gitignore
+FileName: vendor/github.com/pkg/errors/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.travis.yml
+FileChecksum: SHA1: 90856f3c6dd6cfebe6faf3d1970d3b7678c0e3e1
+FileChecksum: SHA256: 94b59f3214367453c739d213f2147c342397bce8d2933f275dd0f964848fc564
+FileChecksum: SHA512: 802b5888cb767863d1f30805b1e22ccb7fac222bf6d9a00c8238ed078f992397e8c4310f746082fdf9b6e303b287ae760e0d03947478f067c5f696d2cd8e2458
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-.travis.yml
+FileName: vendor/github.com/pkg/errors/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-LICENSE
+FileChecksum: SHA1: 9c1bedc0d42f24c24a1bd266f3ce101a4b0579fc
+FileChecksum: SHA256: 8d427fd87bc9579ea368fde3d49f9ca22eac857f91a9dec7e3004bdfab7dee86
+FileChecksum: SHA512: 76bed8bcf00ae10c0611bcc4c3a569b991382ae58d8203fc462d0105064979dba584269e7a7a84b18aca0b6a07ace91c05ecbb42ce64cd3c887f8f498f5d9bac
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-2-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-LICENSE
+FileName: vendor/github.com/opencontainers/image-spec/specs-go/v1/descriptor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-descriptor.go
+FileChecksum: SHA1: 5710b08942cf528a4a963d21a8a69a7c6d507977
+FileChecksum: SHA256: fdc32dd83b9912adb1f534e89a1e6c46164fc0bff4aca9162bc386b6ec0e1b3b
+FileChecksum: SHA512: 1ac09198e72fb66b4f2fd367c151f4587f6980fa406e5edece5aa4ac6707ab24329f49abb5bfd150adfc129f057915672fd86b0164a10986a8787c57ba9d597a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-opencontainers-image-spec-specs-go-v1-descriptor.go
+FileName: vendor/github.com/pkg/errors/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-README.md
+FileChecksum: SHA1: b653bbbcec0e9c4d6b9db4e338d688ad618d4af7
+FileChecksum: SHA256: 05f05fab4a6768d101da9f87b3ab341a1ef02576eb1d14ca39965658b0ac088a
+FileChecksum: SHA512: 68c936de7803f85d7c0c89413f46f4c82c1e5d16fe0fb0015d9955e3c05d4fdd7432d5a60c326cf175702dab3361a58525f0f725ff81d762af02cea34899d632
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-README.md
+FileName: vendor/github.com/pkg/errors/appveyor.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-appveyor.yml
+FileChecksum: SHA1: ec0c79adcfaa68d65dbb62cfb67c5ee5fdfcc8cb
+FileChecksum: SHA256: 96ff26845daa1898b920e87d9773d851ba9ead739da89149b56cf37dec7e647f
+FileChecksum: SHA512: 48baec84da66a723eb9d2ac5b07cc1e0b1f100bbdee9cf0cf2cd995f7e6f2372bad016058b42e0d48a51c564974138769bc294b0b8b851c0786e27ff4c2b18d0
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-appveyor.yml
+FileName: vendor/github.com/pkg/errors/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-errors.go
+FileChecksum: SHA1: b29987acb2f9aea4f2407ef877f71553173825ff
+FileChecksum: SHA256: 1b60ba5bcb417f0060d1c1fbcedaa1a702020499094ce8134f8b45a58c0ebbff
+FileChecksum: SHA512: d2311f1e9d275150c221f0bc3300b55c79a1338dbd380404562b74f755a378c47574be49e8dc8f3453261ea5156967d26b2ebd6cf78cefddac5a603f82bb1019
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-errors.go
+FileName: vendor/github.com/pkg/errors/go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-go113.go
+FileChecksum: SHA1: 1e08ef88a6199f8299330103663af1d10b6c917f
+FileChecksum: SHA256: 376074468c446254f347c884cd0c8137aae395a7a30fabb06ad19f211ba04d47
+FileChecksum: SHA512: 2d6ef8c11132242f50e76c9cd1d6bdba85fabc0743020322310fd60c5082acd8661101422d8448cd4359d5145893f489c33868e6c987c6d15d02e812e76c4a0f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-go113.go
+FileName: vendor/github.com/sirupsen/logrus/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.gitignore
+FileChecksum: SHA1: 63d53f0681bd8d9e47191fd302719af3208a5ec1
+FileChecksum: SHA256: 17aacf0ba3e8284058560b936a77f5dff0ffa8104815523bf14c2f5af719be9f
+FileChecksum: SHA512: 9ca4639d8819cdbefdc8c8355eb61b85111b8d7910ded78cb8f932c7ba5ba680676805693803888fa30dbb63f54516acf28a70cd1936c4eadba3cd97027a9da3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.gitignore
+FileName: vendor/github.com/pkg/errors/stack.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-stack.go
+FileChecksum: SHA1: e5e9ee8d35b9a3a82b0be971dfebcd87c47e14cc
+FileChecksum: SHA256: ee30b2b9525acc7749abb992f150e6d5673c63c1ef8c30620ec70eed11abec35
+FileChecksum: SHA512: cb0c693e9068abc0dc4c1ee2bfff7b9c3fb1619efab49b1d2704f0178dd1d6f642de819aec6ad12c648e6f2aa94033d53a4e4896da7606fe7c122b2c91ed7455
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-stack.go
+FileName: vendor/github.com/pkg/errors/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-Makefile
+FileChecksum: SHA1: 1bea061d36366e37bb529178d93a40d5feb70b63
+FileChecksum: SHA256: 5cf1acb1821fb8cf033e95c135e14b42fdd0e2feaa30ebeb351fec4e3d2db621
+FileChecksum: SHA512: 4f72dea88618cbb654660755d429b1f9e81702b2ef2bcc8de0d8e9aa6ef76be2202fd9823d0bdb9f6e42361bd830a01d3ac88f4bfc62772fc3c4bd440a0cdaab
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-pkg-errors-Makefile
+FileName: vendor/github.com/sirupsen/logrus/CHANGELOG.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-CHANGELOG.md
+FileChecksum: SHA1: c4bee55732818ab7eb6014214332431d8a3bdeaa
+FileChecksum: SHA256: 0db9c7981268925ad3b47d40bb99784b49b3a3aad50e59cc7d6fe40276f3aa29
+FileChecksum: SHA512: 18aa49a116725940ca37336ba11fb14e16915027b04f6ec5ecdfb5e9f93a5af5a0512d9185eccc4608d19153fff357b9fad019e297a5d8368462e39f6542d16f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-CHANGELOG.md
+FileName: vendor/github.com/sirupsen/logrus/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-LICENSE
+FileChecksum: SHA1: a1c7852c717fed2c9a0284ed112ea66013230da6
+FileChecksum: SHA256: 51a0c9ec7f8b7634181b8d4c03e5b5d204ac21d6e72f46c313973424664b2e6b
+FileChecksum: SHA512: d77d69b38af0b61d4ec0cc68842682e17c2bd1cf92f1784a9406f5075fcc4038f17ea99db5813da0582590e7486544c25ee6a09b508e87cf8b3a13291a0e6f63
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-LICENSE
+FileName: vendor/github.com/sirupsen/logrus/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.travis.yml
+FileChecksum: SHA1: ccb8cd85966d8178bb786e0d2fc7147398e456d5
+FileChecksum: SHA256: 3ae07eace04482a941a7a4dd69930f9b13af96d740b52b9411c496a0ea47ff96
+FileChecksum: SHA512: 729769a95af8d142308c28c3e6730dfa31b4b9c268fbcd656bbcea678a9a1a9bad7b6bf955a56dc2cba9f3aa2ca091eb20bac58f3b528061132285f811647864
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.travis.yml
+FileName: vendor/github.com/sirupsen/logrus/alt_exit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-altC95exit.go
+FileChecksum: SHA1: f5c33ecddb830c33c20b0f308786e02fbb6bfceb
+FileChecksum: SHA256: c844abfe101bece1754d8160b573c8b029ea9fdd2c0aace86fad7a0667005fda
+FileChecksum: SHA512: c0ce5955a93f8b6b227acdf44187ffb8df1a657925dccbc984745ec324deede5b64714dcf1a069f9e012fdeef3a9655366d34348390ceb87e2cb8b3b2eb7bd53
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-altC95exit.go
+FileName: vendor/github.com/sirupsen/logrus/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-README.md
+FileChecksum: SHA1: a46adda13be793cd3cf86a64735d836be5e9ec1c
+FileChecksum: SHA256: 3352462fb180bd23e721bd11fc842aef4c6ac42c3269d1155b20af15ad463136
+FileChecksum: SHA512: 44cec056c3090526c676df5ca4b4b46a5bedd2608c9cedb5f58ddd4b738a3e6fd364eb3b0930e44c02d45c0b813e0a6e300ad09ad13ffd5a268606deecbde484
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-README.md
+FileName: vendor/github.com/sirupsen/logrus/.golangci.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.golangci.yml
+FileChecksum: SHA1: 3e9daa2dca055e5ac7939f75e4bc2f8677d617e5
+FileChecksum: SHA256: 44af0386239e14a06aecedb1a0ac247fa88fcdb3b65b6e74becaa5219dd13cf7
+FileChecksum: SHA512: b026dd9a036717af0b9cb1221c3e308628a5963fe6bdf78d0ce761973786a8a1e85a2b4919e456c207a720f9a5554e600b7ebbce1bb9393f1c29ed36b0c45ab8
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-.golangci.yml
+FileName: vendor/github.com/sirupsen/logrus/buffer_pool.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-bufferC95pool.go
+FileChecksum: SHA1: 1798c2370772df6408e4894055fd674cbf85ecdb
+FileChecksum: SHA256: 025641277148cfd7fc8e479c73f2b486f8b98ec6d3b449e98e2db0aed28247b9
+FileChecksum: SHA512: cc1549e3aac2f36c57382a538b4303f2be05e44a16423c94f0815ec9c3f270b30a3da81a07a8612cf5a0477ee56452b5df7f75ebc14cd6af729aa0a84c9a69c2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-bufferC95pool.go
+FileName: vendor/github.com/sirupsen/logrus/appveyor.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-appveyor.yml
+FileChecksum: SHA1: a4fc79b1cedfa65375761c9f83b8263b3194a954
+FileChecksum: SHA256: 9164dad38a262f17c041c92744dbdd6b312430de1568c302f18d1eeac8c906cb
+FileChecksum: SHA512: 8e6e162a29feff3a2854f712c886175d29282208032b570c8938d4f46d01885947d3ad039ee6b697ef154a7d82ca57a077e1a0b082a42fa19e4efa86b4362d29
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-appveyor.yml
+FileName: vendor/github.com/sirupsen/logrus/exported.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-exported.go
+FileChecksum: SHA1: e838092d920533c2e836a39104b99f3154a0fea7
+FileChecksum: SHA256: 5525c2eea1b6c070b961e638fc5fdfb30ad1a33ec246d21ea73d5b46255d6406
+FileChecksum: SHA512: a0493c3d5743a0cadcdc2db001fc4ae7252cac9a22c163157bcb00626b175b8337bda0dd265f51cf8a554b2e66756787d9ead59239dd43f87a10574cf949096b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-exported.go
+FileName: vendor/github.com/sirupsen/logrus/entry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-entry.go
+FileChecksum: SHA1: 994ae192bacb84b5e485647749d988730ca9f7dc
+FileChecksum: SHA256: ec9b5edd0bf9be078386886f998577bbb5883042ff66b249436b8a682d5caaa2
+FileChecksum: SHA512: 0df0a4884e9a2154e892845f7ad95afa840022214b6b8184fdcfd8f49a4aec57630752455a404dc5ac73cef9663f03be9c15588080b05008c9dc5b3ac3b5d9ae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-entry.go
+FileName: vendor/github.com/sirupsen/logrus/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-doc.go
+FileChecksum: SHA1: 21508af92661078357c4f0a7608010e6f7cc8277
+FileChecksum: SHA256: 0efb7629301960d88e1e9e32e7b69391c21e9639d21b276872f0cf69051d11a5
+FileChecksum: SHA512: 6bd55dc9d98550a334dcd086a79247969c2e2c4c9fa82f4d374fa37b3960d4182278eba88ecac5bee1c3dc52800ea8ed068ca016194c7f4d2a5e1dfebdfdc1df
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-doc.go
+FileName: vendor/github.com/sirupsen/logrus/json_formatter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-jsonC95formatter.go
+FileChecksum: SHA1: 3e8bfd827a58d001de4eeae08f11be6253557975
+FileChecksum: SHA256: bdbdb3c9b1c47763986fbb226a410b008425d5cbd4a9042af750674edffd5cfd
+FileChecksum: SHA512: a3d0ca04c0c14b9d0d70f8969f98236bc676893486e884202431b288f28b485fb4a881488a819a0c1df5848e678f2ad9d035faa103f6f66fcef0069266ec7f1c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-jsonC95formatter.go
+FileName: vendor/github.com/sirupsen/logrus/logger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logger.go
+FileChecksum: SHA1: a65085b6f8ab3fb38c4e240a62f93099a66bbbcd
+FileChecksum: SHA256: 526975220bd2960cfbedc7f87d1666a53e774f920809cfbdb906727d9e1722e8
+FileChecksum: SHA512: 6f8d7bcd0fd6216d29da18f719b7c4f932c14f5b3ff9067f496e877204b06a7d56407d0e7b4917e451618269605d178b5dcbcd516f004b3c21c298f3f75d7146
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logger.go
+FileName: vendor/github.com/sirupsen/logrus/formatter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-formatter.go
+FileChecksum: SHA1: 0a0c7633c4d3fe70d6d305751f30c7549c0b3a71
+FileChecksum: SHA256: a5946d1302067a39ee0420ebdd28edc361846ffbbd9d19b812ca4e53426eb3bd
+FileChecksum: SHA512: 34a126d6fcb144d6baa42a06bb9e56af5aa205e82dd062f8b70011687c577e75e9bbabf672ffb06a55da4675bab949ad8626aaf2f9c7fed7ab9331c4f1bce376
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-formatter.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_appengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95appengine.go
+FileChecksum: SHA1: 4f73206a20a3e4aef48255ea1e934253628d036f
+FileChecksum: SHA256: 0bec9217c0bb3f0f6643827edbe15bd912e9d3946678df59d54f7c9565dfa82e
+FileChecksum: SHA512: 732c7eefd605e92c7135402b516b17548cf884bbf524762a7b9bcc83c3c24460e77d6e527d2a3aef01703360a3b514756e6d40f02997d87afbb06d57501bcfd9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95appengine.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95bsd.go
+FileChecksum: SHA1: 0c5da713b350950e8ed8e217a3ae93a669c661fe
+FileChecksum: SHA256: ca5bce79fff97e9a6a95d629d15d53d86fb94f84110448f8912e373c2a67cbde
+FileChecksum: SHA512: 9209f080958b4db66893156a766cd2c2b81d4d1db8856a815dbd02cebf29957f71face542398495482015dc9228391bb21e0f1a43224414fd228091809ef4e74
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95bsd.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_js.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95js.go
+FileChecksum: SHA1: 6da5924b3b74e6130a8be1046b6a61ccfedf1f2e
+FileChecksum: SHA256: fe970ae667524e284789c2032df6812ad852fb786c470921be8a47afe7afa4ac
+FileChecksum: SHA512: 8fc91268b37035d284824346b3a141be05d2fddf0d0b2263556d60dfe407e45fd4254930325ff8d5ff978d68d80fa615c1d90c1774e63ecc92db3573cd99006b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95js.go
+FileName: vendor/github.com/sirupsen/logrus/hooks.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-hooks.go
+FileChecksum: SHA1: f025e85ebe123cb29b44b8eec6489536d8e70b6c
+FileChecksum: SHA256: b9dd224299b4e20e061671e68841af34cfece45e37563d4d8e7a664e1b787e48
+FileChecksum: SHA512: 3f3f572f0059d15d41eafdd52470291d2d56e50f7b4f70432f24a69c8299dbcbb9a8c2433a32025bc09f94490d7511f336cd637f4783de5de3cd91e0ffdde6b9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-hooks.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95notappengine.go
+FileChecksum: SHA1: d4bf099b091140cdbe12cd1338dd10dd3e3d1139
+FileChecksum: SHA256: 7a9c6f07aff2ab6bafc003ce9ec2619a383ec8bbbdfc80fa38697a29ee149fce
+FileChecksum: SHA512: f8e89f1903148606e21b50bd9e9a7ba9da232145209ba21284882495b40454d2b981927414400db2e6bdb4d9f0bb0f20507d32ccec8869b56e7e3c83ce1938f4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95notappengine.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95solaris.go
+FileChecksum: SHA1: 8bd00754724417e04dbf336e6788ea9b85b2413d
+FileChecksum: SHA256: a0a7bfb25bcf1fe899a01dce35fba617234396ca891f57320fa75b2147bc5aff
+FileChecksum: SHA512: 0d393d1ca403cd53702ca379f46635bc62030249de3f6de444a81509843102eb76e46c2b1dbfacb5f054eb6236f6a235b9b58879173509b613b35da0c192a1b4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95solaris.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95unix.go
+FileChecksum: SHA1: f6bd2dcd684618bd9cf82ff457a8be685fca2912
+FileChecksum: SHA256: 6044db944b735956eaa1e6ef259e0ec121d6372c1e8c6a256c13ac23e3947ff9
+FileChecksum: SHA512: 63148c555da610b28473bde845a77fb16859b982f41988ab05580e9bffc7952c8c51cac7a5129db8ad53be8c0783b797f8d76bc056a6d7b0ea11389267fb5a85
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95unix.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95noC95terminal.go
+FileChecksum: SHA1: 4e32d48c5a8926c48bede2d6af991e5660794998
+FileChecksum: SHA256: 3dc42eb54664ce50d5e3fbfd0766905158dabb671354ef8312bf4f3c73d5039c
+FileChecksum: SHA512: 659b7df5f26111e36c696cef08fa0d2ce062be8b2eecf63559d0d9219367052d2c57026491e2750d3dc89f5a5fcc3ad2c72e12a70be42402c9343c4e754d0dd8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95noC95terminal.go
+FileName: vendor/github.com/sirupsen/logrus/terminal_check_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95windows.go
+FileChecksum: SHA1: a9bf6769e6941fd300c35c032cf4b1e833f4b608
+FileChecksum: SHA256: 40e3f73720d0104d8cca8406add50747f6ffebfb7b1bb36646f7454bb167acd9
+FileChecksum: SHA512: 8a8ec49c138920c8d9e05befb11b34fc2816079a93c96001ff4e3fd25e97db1cab096d2b77630755573037766e7181a0a618c503bdb920fce85e75df872b4270
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-terminalC95checkC95windows.go
+FileName: vendor/github.com/sirupsen/logrus/writer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-writer.go
+FileChecksum: SHA1: fe5e0d6169e45feac121ac7576c9120243ab0a1e
+FileChecksum: SHA256: 1ea944a55a76dbb05d6917134403c0e9fcc4931edfc773151e60bcb27abf318e
+FileChecksum: SHA512: ade099b171f9595f2b4ea08d9a5e5dd03a13d17be78deb768c4d8e33f3641e933276ac3f340e41ca406597e05cd564482f19558d18d4b7794dc579c09f3d8d9b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-writer.go
+FileName: vendor/github.com/sirupsen/logrus/text_formatter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-textC95formatter.go
+FileChecksum: SHA1: 0e5886c9910d65ad692fb4df5773c12cd2fac952
+FileChecksum: SHA256: 7cc9998ef28bc62887bc60810e6719ebefc3dc794b394de582d8e43ee44bb66f
+FileChecksum: SHA512: 614e88c73865cb2a6cd3bf45a2d673c182470b0e138233356ab1c956274e5dcd4fdf9259277d455a4582bd8f73c5273d99d5cfb167e8a1dcd431e268d6701207
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-textC95formatter.go
+FileName: vendor/github.com/sirupsen/logrus/logrus.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logrus.go
+FileChecksum: SHA1: 7aa9f7cc798a998dbc8a78decf743e6f1bfee5be
+FileChecksum: SHA256: ad71f316ed190a3dcdd32b53efcaaff06201b37ef6c7527df31a4aa687f1c2a9
+FileChecksum: SHA512: 9c41dad8caf6a3aaf098a54e69d8e334ba05b0ffee5746b628f19d38eee960323a3f7844b6be428f91181ed227e39a809b4fdbcf2eb4fcb416939701bff244dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-sirupsen-logrus-logrus.go
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-LICENSE
+FileChecksum: SHA1: c5c8a68f4b80929b3e66f054f37bb9e16078847f
+FileChecksum: SHA256: 7d5450cb2d142651b8afa315b5f238efc805dad827d91ba367d8516bc9d49e7a
+FileChecksum: SHA512: 07bdeb77b6ebe1f18ba5285d98a05ac53502a82837118e194d81384bbb9c1a8e7bb7ba627df288c770e9e97599e24a5135e45546cbf493330773c6b9921ff5b6
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-LICENSE
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-Makefile
+FileChecksum: SHA1: a7c19d0a6ed12301a6dd346104a498896808b493
+FileChecksum: SHA256: a1790b6e225a5dde1923fdad6426d151a7f5de55cf3747e642fe0f5384c847db
+FileChecksum: SHA512: 84a35b707a13f4e3397a0d7a85c4dc15d474e726bce8cb332e46789a432eaf712a0ae73cda6254597966d2ee39c2616169e6d99abb88de30534e2ecf34e145a5
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-Makefile
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.gitignore
+FileChecksum: SHA1: 75c3a89aef7deddaafb5390c854e1a3482da2a45
+FileChecksum: SHA256: b7a6a14ad1dc469be49266f5d86d40ee6c439468ad409a0bc04238564c34aff2
+FileChecksum: SHA512: eaa0987fdcdc5458c3dfd4484611946a0718ab25b4ac03b17b4bc34abb6da9bc73d24743ce9ef951a9af36247fcdfa6edb803937c0e2e9c1940fbe0757367a34
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.gitignore
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/pkcs11uri.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-pkcs11uri.go
+FileChecksum: SHA1: 6e99e8cd75c36800282a6a3bfdcfa842c6c90788
+FileChecksum: SHA256: 03db485fcc9477ec4b9234e559d1047de70eef43717a214bd8638cf84defb145
+FileChecksum: SHA512: 76c7480f435941d73ceab602247c41509985122d5204c2381dff63bac9cefb5bbbeb12de4ca26342063fc26812f08c1092124e58623c1f5c11fb7787b17cdd48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-pkcs11uri.go
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-README.md
+FileChecksum: SHA1: 26e5edd5524ac76f5c8a1fd16360939d87c0a64f
+FileChecksum: SHA256: 7609f3b964ddaa0e3a6177597aade028ba7e538ddf17de3c0a76a9085aa85e17
+FileChecksum: SHA512: 4447ed750b836a0fed0b8c1d8c727f2bb258e6d477cfd2541ba3c8a145b7cc118b63d0efaf66615abaa7ee7994ff5a0716fa0bbcd0e686582a213b4657b23655
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-README.md
+FileName: vendor/github.com/stefanberger/go-pkcs11uri/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.travis.yml
+FileChecksum: SHA1: a7070f5e49c4591f3622274d66e80553b1579a8f
+FileChecksum: SHA256: 7fc8710839667fca38cbd90d71832a89eb3c02bf0c29baf9d315dc00a322768f
+FileChecksum: SHA512: 6b2a1fb9dc48dc47ec7c54061398aeeb17ca2892e7cb6195830332a2854d058222c18a3d96605617d0ad9c70bca97421cf9d7489045a201d0940e989c7b42249
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-github.com-stefanberger-go-pkcs11uri-.travis.yml
+FileName: vendor/go.mozilla.org/pkcs7/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-LICENSE
+FileChecksum: SHA1: f9bbe972432aebdebf3469c89434273ba88ec9c7
+FileChecksum: SHA256: d01c6d371866b3c7a1a7e20994d88d2ce83f22974ec6d3596a6125b44495813d
+FileChecksum: SHA512: c0d06fefd468d2e9d29fc61476d6b174c4b319ee001d070d923f51caa80fcabbdaebe6628b7b709d5af0213d83190586851bf504c534d1f1ae2a0de13b06765f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-LICENSE
+FileName: vendor/go.mozilla.org/pkcs7/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.travis.yml
+FileChecksum: SHA1: bf60a79cb1f25cdd02ce8db52c04071e877394b9
+FileChecksum: SHA256: 95819a958d3104a44efa1b0e21ffbca546cbeb6884d841860d51f23a0cf225c3
+FileChecksum: SHA512: 0b45d65a0a49664d9102986288a63d022bf53b7bee6e8ee3ab520b8e78cd3f04da677f5fbe6b127fc1d37955a2acceac97191b681ef4e4e44b78a2c383861e1d
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.travis.yml
+FileName: vendor/go.mozilla.org/pkcs7/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-Makefile
+FileChecksum: SHA1: 631f26758e7c77de249a4ad609f2374783dc7320
+FileChecksum: SHA256: fc096f6b7c4574984455e87af978ae0ca1af3b3795832a2a5ed7c24cffd618ed
+FileChecksum: SHA512: c4457defffad9921ee4e466eea1c414e2e1552f21824450be8961f6f2680b899643ef95caa4348004735d7feca137deeff25984666c113dc836996be143e44a2
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-Makefile
+FileName: vendor/go.mozilla.org/pkcs7/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.gitignore
+FileChecksum: SHA1: d9a6d2ae7e2add88179e429f787e6a5b2c7b1133
+FileChecksum: SHA256: cb568f716e3315bcebfc75bbc274b56577c2734ec3da6729ffac15919f416240
+FileChecksum: SHA512: 2bb81143328929299fc309960108c9fb7ea45410e0f1904cd30e8ecff02f75c531997facb35cec5be600a9fb635e9fad24fc81abb12a5d0e97289a99124bf4cd
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-.gitignore
+FileName: vendor/go.mozilla.org/pkcs7/decrypt.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-decrypt.go
+FileChecksum: SHA1: cbb08792a3b5652edb90b569add86fcf95fb90a6
+FileChecksum: SHA256: 03a2e45e4daf5c42c9f1c4afffdbfa25fe27700fdf07b1908d3a776c27b66cdb
+FileChecksum: SHA512: 57448159d63a2c831a3eca8a90a96d87bd274f3a749f84d7bb725489ed375ef28bb26bc66cad1bdf62e208a7634f5aa9b25d4dab405d587861c3e6aaac6f7497
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-decrypt.go
+FileName: vendor/go.mozilla.org/pkcs7/encrypt.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-encrypt.go
+FileChecksum: SHA1: 7f6dd7e6b8f48cae047c531bbdb48cab91e7b85b
+FileChecksum: SHA256: 43b7b5c46abcd40bd407857cd1f60f0aa096ca7093ab302f6aa4f7fc38bb34e8
+FileChecksum: SHA512: f91757e7fb119b9d1a1464281afaa6597a84e0a877ce290965b4f7cea87a3dc9044913e248f58b1d81477873cc064e3eb9acc6545571b04551c12d9a07f1e21a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-encrypt.go
+FileName: vendor/go.mozilla.org/pkcs7/ber.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-ber.go
+FileChecksum: SHA1: b3fc5f1b8b3b0de0003e14fa417130c26f7bf1b9
+FileChecksum: SHA256: 7107213988d88889cbd0bfb382673f1515f96489ef4dcfb63d5db2ed6bcf5191
+FileChecksum: SHA512: 922c301e3055ca54001c75df97dc53b89b8149922f2045d7dc4447c066d2701b3e4a3e685e0603ad5adb1f50eb92a3203f873739b1eebcbb4cd7659d759f962e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-ber.go
+FileName: vendor/go.mozilla.org/pkcs7/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-README.md
+FileChecksum: SHA1: f94caf6cb30e432bc9aa4ace42dbcf53dd3a5374
+FileChecksum: SHA256: 641aa728069ed09dfbac88486df380bef78102e4fb174d086d5bd988ed1b656d
+FileChecksum: SHA512: ad23c168b0db5d9f973cb7dc64f61031a0a3ecb847d3b32ac097d7d51aa5883d3704eab7f9637f3337345896ba14639095ceaca32a6cc82584d05a3afeb5258b
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-README.md
+FileName: vendor/go.mozilla.org/pkcs7/pkcs7.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-pkcs7.go
+FileChecksum: SHA1: 5d9f2af894207ffaa2e37490a76271b64a68704e
+FileChecksum: SHA256: fb7c6c0467df1a2c9a383c110ae97be14c0a7984facd436b9f178e5967ca6b8c
+FileChecksum: SHA512: 3a988e0da812b26263628a9193283f1fafbc15d519fc82c069edff1bdb4f928c5fc1d1be73d65b99ad4936cf797971edb9281e5a4c2d03378af3618cf01b70e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-pkcs7.go
+FileName: vendor/go.mozilla.org/pkcs7/verify.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-verify.go
+FileChecksum: SHA1: ee30155af4ce0586ff4eef8bea2a6293f49957dc
+FileChecksum: SHA256: aef2cde1fce5df73ea97dae057efce191814b3f27af1373611bed57b9cd1012e
+FileChecksum: SHA512: 1f1c5cee9b8501e7f26940994fb6ede6638e9ea882f340bd77b857d357cedf4c766a830470d823963d05265707f05b9356505f9ff60b275051a8469aad83a695
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-verify.go
+FileName: vendor/golang.org/x/crypto/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-CONTRIBUTORS
+FileChecksum: SHA1: 39097573c311def5445e4dccaf3189987465bc83
+FileChecksum: SHA256: fa714cb1012a065fbe08b174eb1f5604327bd24d42dab2c461878ce36f68d0c9
+FileChecksum: SHA512: 36fcb4e290cf69db05fec038f7939a7bb888d458c4d814cb368f207210359c921e2bc563720d8add09039fc2ffbe3bacb96e4b80c248f643d0ac4808d8e4a718
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-CONTRIBUTORS
+FileName: vendor/golang.org/x/crypto/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-AUTHORS
+FileChecksum: SHA1: 5d22291302558cc1dfe4729c69bac627252d3c10
+FileChecksum: SHA256: 5aa3167c44245f0b12b27195d85c6a8c8e067cfdd511059daa4d7b3c5b232129
+FileChecksum: SHA512: d9bfd664efaa0ec0cb4c3c4e5b850aa374692c1abcac7e818b8c9fe32c431200b6042639feed3c6a32d7ab1caf94e7a50a9ec21f3423e759b25ae89e0aa439e0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-AUTHORS
+FileName: vendor/golang.org/x/crypto/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-LICENSE
+FileName: vendor/golang.org/x/crypto/cast5/cast5.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-cast5-cast5.go
+FileChecksum: SHA1: 51902a52a64f0b7761e1d7c24ffafbd942ed6ba7
+FileChecksum: SHA256: 312586863f68f63c149768b01f66152f1504b0aeca910be621ff88e4f8d5967b
+FileChecksum: SHA512: 5301ea7243a8f5b2a66b7ea6fa5685d292260dc934f10dc476d8891a262039a0e50fc857ea314c3d3bc5e69f1489fee23142808c254221d6d2192a1a08d5cbaa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-cast5-cast5.go
+FileName: vendor/golang.org/x/crypto/ed25519/ed25519.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519.go
+FileChecksum: SHA1: ac948efc967d26ab1c4bdb05dd0ccd006fed29c4
+FileChecksum: SHA256: aa9b474690af7a9bd62d495d4ae9fd282e994c93d4029887a7f0fd7802c28355
+FileChecksum: SHA512: e2e2d253f3dcef827842078d0bdc5185cbe77c62b74c8d4cd57aa86c9fd75a8840de92db75609e16c04ad6a417b5195e515aedcc4a96654bf6577665724876d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519.go
+FileName: vendor/golang.org/x/crypto/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-PATENTS
+FileName: vendor/golang.org/x/crypto/ed25519/internal/edwards25519/const.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-const.go
+FileChecksum: SHA1: 99640d64c4de9616eedfe0af7acb3018e04d1631
+FileChecksum: SHA256: bb43c357b9bc26c3f8f010e5dffcb69590683b627642f0ca03933e4598145b6e
+FileChecksum: SHA512: 84ebe778c0b479259e2b08f068477eb18c7cd38f9f164b0e0b07c734ff24fb12b0720dea40621d66c18ed0172c05719eea5732b640e67399db918fce40235bc0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-const.go
+FileName: vendor/golang.org/x/crypto/ed25519/ed25519_go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519C95go113.go
+FileChecksum: SHA1: 9bc812e5b2912889cec403f319042752c643c304
+FileChecksum: SHA256: 33071b7e257dc7e94e06226a912deda63aa405e267647c991b72d638d65d1399
+FileChecksum: SHA512: 2725d4c1764bfe5796e34db6182e9a8e8cf7464a4e8164d535b228e587146adf02a56062f81e992143c3ec9f05d7c18a1a54c47fff01f6aa97885593118b5fe7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-ed25519C95go113.go
+FileName: vendor/go.mozilla.org/pkcs7/sign.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-sign.go
+FileChecksum: SHA1: 165b4c0d6beab554c84b4a7879012f4728fd31b6
+FileChecksum: SHA256: 4b86b4f636d9bd7f5a606de79503de10c4d570d5461d4b85419feb15786fe6d8
+FileChecksum: SHA512: 2d0f9b7db2345211bc3f43e3152ce30b6f2c1b12e9cb86a54336713968591f8a49ae3c0e4c9a8eeb7a4565a9454871cd604b3977c221dbbf212a8ef7c6938a1f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-go.mozilla.org-pkcs7-sign.go
+FileName: vendor/golang.org/x/crypto/openpgp/armor/armor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-armor.go
+FileChecksum: SHA1: a9ffb3e8447cb1cf417781556abf8dd2a04640be
+FileChecksum: SHA256: 800c6c937ee7b83711a9ebe90d037da9a8b959f58aaec74851cc435c461b6441
+FileChecksum: SHA512: 357d8d46083fa055068846c87caee9fe3d7cc5a70eebc6d51f1348646bb4943e01e3d5efbff5680a8777c89e63005517c276b7b181d788cb8f93f65138751528
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-armor.go
+FileName: vendor/golang.org/x/crypto/openpgp/armor/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-encode.go
+FileChecksum: SHA1: 7ef4d772364ea2ecb8ec6f4a747abc84a3bbb079
+FileChecksum: SHA256: 6f7bb3548e1ddb3d54f33e943f76dc0fb66512d2552690e73855ab02f7b6a211
+FileChecksum: SHA512: 8a5206fc742cc5a114fe00ae197db368be8b6c6e7f6c29721a7a927313935169cdfdd894fc91548651b1ec72ef35b172a4993889c8f1e8ec25d7bf8ebac60f23
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-armor-encode.go
+FileName: vendor/golang.org/x/crypto/openpgp/canonical_text.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-canonicalC95text.go
+FileChecksum: SHA1: 4670f9c34b3bcb4eb4ffe9029171cd248e246a0a
+FileChecksum: SHA256: c48b8565ba789d501946a4ce16e002c71828d801d448b9ee52963444d6561256
+FileChecksum: SHA512: 7ab541c282c73401695ece087aa2e894239e26da0a1bb759ed3ed3272d54d0fcb5bb5d8d3a9dd0e3c02288156a3841058052910261124ee295ec22a6a7f48096
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-canonicalC95text.go
+FileName: vendor/golang.org/x/crypto/openpgp/errors/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-errors-errors.go
+FileChecksum: SHA1: c626944c49808b5a726ccb4d769a152388c12bf5
+FileChecksum: SHA256: e933622a292a5cbaa33abf7d06e18bd41bc2eb1b122fa71f2b246853a3ae34f1
+FileChecksum: SHA512: 3ec86d2a1d6521ab6bd8c106a1b961c04bf6ab0c94af5412edf2e654c7122c4460231fb83b35537d7304171316f77cd4d98eb9e104624e145fa59a2460e4a0d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-errors-errors.go
+FileName: vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-edwards25519.go
+FileChecksum: SHA1: 22c193b2c324956a2d3eee7157701ac4548cb696
+FileChecksum: SHA256: 4048a7f45ef3c255bb496754f214ada75183d25a0141a44ec42341b4683cde5d
+FileChecksum: SHA512: b6befb19c77aa7f7faaa9d715b12f6a128d430d4202e1ad72b73e8f45aad664ed220a275d504209e909dd12f9d3787d3f11bdf50da79c017d1d28a4011c4bef7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-ed25519-internal-edwards25519-edwards25519.go
+FileName: vendor/golang.org/x/crypto/openpgp/keys.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-keys.go
+FileChecksum: SHA1: b67e3f4e92bdfa6ac4f161069ea5705f02d8caf0
+FileChecksum: SHA256: 7284df9aac2dcf9e03207b137e063f79d258e9aa0201601b74e2bd95bbd6651b
+FileChecksum: SHA512: 52d9a8ad5c8d2144a4af066c02f4a4562d843c4d1e91287704a007a40bb777156b9d2a7401680dba57f17c00dad0f5e59363fa526698dfaf4bfd4ca572bce30e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-keys.go
+FileName: vendor/golang.org/x/crypto/openpgp/elgamal/elgamal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-elgamal-elgamal.go
+FileChecksum: SHA1: 80697dd53a7eee3e1dbaa2e52a2863454f9dcf89
+FileChecksum: SHA256: b662e2579287836440d3f532319da5a964c9a0bb978fda52d79f4a0afd1a69c8
+FileChecksum: SHA512: dcf1313623defc6d4cf6b7f5249a216d482fc28ed967c7d6b5ece408ef19dbaaefadf27e6e4e7958d98f0dde9ebf027ac0c3928cb46f7fdce5f00e50e9b2cf8b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-elgamal-elgamal.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/compressed.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-compressed.go
+FileChecksum: SHA1: 4076e5ef78569372ab59b557351c127079c6284d
+FileChecksum: SHA256: 6b12cf1b46ca789a6e673a83524d41bd25bd270d7e5abdc6447f039f3ae4851f
+FileChecksum: SHA512: 94622902d0534be49e12e2cf2233e6489fe1abaf36d1bb211b1899e6b15b4c9ac403397384f57b89e4c28c776eb34134a2b1c62990d0e5f12e033372bbbc7e63
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-compressed.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/encrypted_key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-encryptedC95key.go
+FileChecksum: SHA1: fca6486e79d6d9ed8d10ab07761f603a3ac5bf79
+FileChecksum: SHA256: 3dd5f997da0652e8ab5716eb46cf88efcddc8784afa1adb7f346f9df8e37edc9
+FileChecksum: SHA512: f4d8190d72ed3eec65dcb2842f445f27c751dd607851d85399fbdde0cbfa3c598afeaa5721019125480c967de461a04faed964084f55ce978c412c0cea007217
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-encryptedC95key.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/literal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-literal.go
+FileChecksum: SHA1: 7938cf49a2bc3f896195c4493089546e6f1f26d4
+FileChecksum: SHA256: 0f761a9a1e5c4925951c73e2862464bab54611032733bd1d30825cddcbcefd0c
+FileChecksum: SHA512: 1e39268f71648f02b8e54c5e4df868c259907b4ff2429867800249cfad43952afc1b174bebb6818db670e47228fc5162ea3190e86f29771f85e19ec63e8f8c20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-literal.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/ocfb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-ocfb.go
+FileChecksum: SHA1: c28570d30724cc238918a62ff1416d803b1ce178
+FileChecksum: SHA256: 97f83c5a3d76122baf10694abd6800ad5de280b484bd4e9b1766061ad72269cb
+FileChecksum: SHA512: 3738747eea4c76a3374d29e7c26fc4b237ef5a95cb7ab39811a67c74c692831cb867839b7b187a913821797ba3536bb0c317b973b459573a76fbd5f9ab985f58
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-ocfb.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/one_pass_signature.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-oneC95passC95signature.go
+FileChecksum: SHA1: 6bd89ac6d7c2b2201a1ead8a1846c01e9a78f69f
+FileChecksum: SHA256: 7c5d8c831c1800ea0c617bfb1fd7333e1178ca89796ad091e0d69afd524f400e
+FileChecksum: SHA512: ba52d25bde52fe8ef03dc2e6c461b36952347fe0e03aadebcb53e6cf2525519df5b5add4cb07429336553fee7f752ef5e23ba781ab1bb8f82b2206a54de1f919
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-oneC95passC95signature.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-config.go
+FileChecksum: SHA1: f86d4202fb375cbbbe6d628824496b72851ed810
+FileChecksum: SHA256: f28901e97565f83eb11c59e11ebdc4eef614e280a84330a2339e85643f3e9264
+FileChecksum: SHA512: f2c0ef16785e80740c4e3a5d804b5361b0327d83d0f3466dd0d80da0589d5ef5b9454acb614771dd9f7208ebc2910459c5f58ea3b43c0bd1be01519a6c87085e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-config.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/opaque.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-opaque.go
+FileChecksum: SHA1: e3ec0c73dba0ac5840bc2356b013378019a54bcb
+FileChecksum: SHA256: e12656d74de94b5aabc100d07f010528009ff3079c62b98ebca49c4bfa4cff07
+FileChecksum: SHA512: 0918779778f438913daa578b9ba56eb7e8cb94f3a9b9d57f4a6ca0c899de4638f7259271d85bb90319fc151cda0ca676226d8012ffa95f22be983fbcf06de720
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-opaque.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/packet.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-packet.go
+FileChecksum: SHA1: 43dcae18dd0ff66e0bae7a8df004661a02457625
+FileChecksum: SHA256: 4a027f57d30dc67de306269615a210576079a28143602de2ec99704ac8e8bbbc
+FileChecksum: SHA512: 844361d6f9eb06f83dc29bd73550bef6a94b9ab79723177e9735791d7a2d6785fc063968b919796e35e3a0a985b0b98c75a69ff7c91d99c0862b26d38bef91af
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-packet.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/public_key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95key.go
+FileChecksum: SHA1: 806778131d8b35b8779c3f4aa84720a15560155d
+FileChecksum: SHA256: a7c919b8247fb7764acc332f1216f42e581296c85fbddcda4945c6b2d58cb328
+FileChecksum: SHA512: 545b29c65419ede763298deb23b146c9ebc49aa39d34e650e218f4bbc7f956bed36eb9aafccc92ae4187f57df8a55772b94ff0d5c8f6485c1a801d2183f4600b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95key.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/private_key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-privateC95key.go
+FileChecksum: SHA1: 9ce506410bbcaf580aedb735b5204d711ff80c78
+FileChecksum: SHA256: c7d59b49fa74005a8bfab0468fde898d5b6708fe032e4667b6d34de2553a05f3
+FileChecksum: SHA512: d52e33c81049624d4e9d62383df67905b0c51c6f62d3f73899a1c32a7dc5c5bb3e1e8bba1a1fbf8f028811d86418e9ebcd63b9721a398d5310702acc7bbd6c25
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-privateC95key.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/signature.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signature.go
+FileChecksum: SHA1: 93a18724e9fe096734180cdb053773f8cba6a06e
+FileChecksum: SHA256: cdb85a4a756fb11dce00be3b7aa190b6a91ca243d3e602f3789a9e1e9ac32705
+FileChecksum: SHA512: aee1d37f56a16e33bc5d5eb76b11ae0499046e93405f062f33bdefa35f2f58c4bb961f9b364bf4f70573ca6d4c063a1c1703332456f5e622e80c90b0a40ee0e2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signature.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/signature_v3.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signatureC95v3.go
+FileChecksum: SHA1: ac016519e74ff889a2f7df5308ad6b5bccd89c0a
+FileChecksum: SHA256: 920edfef739614e07aca0a86de0d242387347fde08701edaae8a44dd76ad3ff8
+FileChecksum: SHA512: ccd36da5f45ca2c275f49c1fc02c6f3951273fda60cb9d3c8638aeb0f5909ca666f097935ab02bb95898545b1167840bb2bf7a250d4824c84aa6e5747768cba2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-signatureC95v3.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/reader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-reader.go
+FileChecksum: SHA1: 7cd9b191f6843b5ab33f5b791958122190bb40c4
+FileChecksum: SHA256: e9213e087e18d62a7662f26264800b8c810a07a4da659add0ee39a2b29ed4e17
+FileChecksum: SHA512: 7ecdef36be0e6f0ca372940f6327ecee763dc95a8517bcad62ad35a35f805a5f16b281d0cafc52a4c6ced6101142957931fee3d798610a964b0d48a7e8e62928
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-reader.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/symmetrically_encrypted.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricallyC95encrypted.go
+FileChecksum: SHA1: 83d66b680a02130a59491824da2ecb0f121f7162
+FileChecksum: SHA256: 3910f8faf31d923e0c72ca07f5ff6d8d1dfd09da3333221d885d7bc9b4aa7e67
+FileChecksum: SHA512: e744bd0e64a99f28937bb62a7d8961bd42a93817e746394270110376f0f2ce8211bed3838d4d31e738268a24ee341160a87a3b90fee4d511a4fe2a9d481bfc42
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricallyC95encrypted.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/userattribute.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userattribute.go
+FileChecksum: SHA1: effdfbe967aa2cb84e172db7899fcc772da6a2ee
+FileChecksum: SHA256: 47d0b2012f95fd9a5fa6e0ab79cd5c79b20e1af38b33c5ab5dbc6ced06d32a73
+FileChecksum: SHA512: 9b832d4190215350f3fa0a6ceebf6863b90a9fa6b8be647e0e6bbbe7e9a128be5fbc06c114aad0cdb909fde0a4fdfc30246edda83127096b7b47d7185f4fa6cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userattribute.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/public_key_v3.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95keyC95v3.go
+FileChecksum: SHA1: abbbcd46b670ad1b83e8e82a80e4c4ae6bec2b87
+FileChecksum: SHA256: b545509c88e300281ceb5b0184a3fa7c511b2b8467803c51467de3b4f12e9f70
+FileChecksum: SHA512: 9398c276424ea699c16c4a9046dfb4485ee61d802203b043e88554502d1349958754f1f0ecb48cd4c3c5a9221fc955d3b4a49692829e53d3b6e1ed1b46ba7471
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-publicC95keyC95v3.go
+FileName: vendor/golang.org/x/crypto/openpgp/read.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-read.go
+FileChecksum: SHA1: eabba8fb1e284b67d2c51afc616bfbaf05b9f3bb
+FileChecksum: SHA256: 6166723640f66a9a3df7e15ace96774d8dfbc2d8af0539dbf250e514a84735ba
+FileChecksum: SHA512: 768ae48578cb05949da092bd0ecedaec7d9169a5f3f4006cb03b96b79317d12dc6bb6725cb21b3fa50fb661682882ab930ab8461b6571d0fd04a9e367f6a3880
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-read.go
+FileName: vendor/golang.org/x/crypto/openpgp/s2k/s2k.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-s2k-s2k.go
+FileChecksum: SHA1: c41568ca16a8d2d9ec119ef842f97ea9d4fad034
+FileChecksum: SHA256: 4943ca0edf20ba1fbf4ff00edbe396a2bc52ab9825811b855293ec22717b70f8
+FileChecksum: SHA512: 6c147c5e8e8c56b684b1b976967337b2e8007b6e286afb31a3909e86abff688dac0403e4b99f17c54c4f66291b9b1b13b61a666098905c29a8aece93b7520fff
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-s2k-s2k.go
+FileName: vendor/golang.org/x/crypto/openpgp/packet/symmetric_key_encrypted.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricC95keyC95encrypted.go
+FileChecksum: SHA1: 86d8934f9dcb4359a3f7e93a359e951f7feaeae6
+FileChecksum: SHA256: 0c70f19586b963c517c9d2b65a9606fa2228769108253bff64c7c37c2b097f93
+FileChecksum: SHA512: 3215d5c4129d320ba730b9886b05d914b3aaba6a7bd3fb662809f784e6ea01018c9f53af0071ddae0cb92b1bae589ac72c3b8f3c832f987fb686b90d303d9d13
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-symmetricC95keyC95encrypted.go
+FileName: vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-pbkdf2-pbkdf2.go
+FileChecksum: SHA1: b92a74f493010c9a22bdd7f9378ab9d631d8a0a2
+FileChecksum: SHA256: 4c0c8127838d579ad26b8ba838ede9507100c927f287be2020837a5200a580ef
+FileChecksum: SHA512: f043630ba52b79b50289767ecd0b0c57adeca5a08d05879f94efd4d1a2b326fd377e7f82da4f32f4f2d6480e0b9853faca03ec74398840c37a6ba5bdc5bdaddd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-pbkdf2-pbkdf2.go
+FileName: vendor/golang.org/x/net/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-AUTHORS
+FileName: vendor/golang.org/x/net/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-CONTRIBUTORS
+FileName: vendor/golang.org/x/crypto/openpgp/packet/userid.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userid.go
+FileChecksum: SHA1: 8d1e5899bc750ca307c9c5b23b4e63121e6a85ed
+FileChecksum: SHA256: f50b3b5760f300933970059244f9fd7df2ee5367bb1be554a3119883d3a4f0dc
+FileChecksum: SHA512: 85abf9b0a4727a468be0bb06c048ee5b62fb9959b3f52fee35a406898bb4dd0782d0fc8d70c37a148d728905239f097b7d8bcf17b3b5c07e49e15aaa6c0a02b5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-packet-userid.go
+FileName: vendor/golang.org/x/net/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-PATENTS
+FileName: vendor/golang.org/x/net/http/httpguts/guts.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-guts.go
+FileChecksum: SHA1: eed0bcebe2b1a4acb6af88efdf60dab34addbfb5
+FileChecksum: SHA256: 3da54270a625540809f2f767e54e18acf27199aca64b6cf16d6d3fa3999de959
+FileChecksum: SHA512: 07963aa49ece13d8e6c597bcefcd7d864cf7707b4d98e3c30b1899274023284d7df931f4d4803d699e7a0b875837398db61ba14a997a1562e6364adebed78ed9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-guts.go
+FileName: vendor/golang.org/x/net/http/httpguts/httplex.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-httplex.go
+FileChecksum: SHA1: 06ab581c06900fc22c90c725d6add0f17eb17cfd
+FileChecksum: SHA256: 69d333915bc3920ac755dbfdcc41e4e02be86066182fb42728246055ab2e1e17
+FileChecksum: SHA512: 3442ab91ae9e99c1a47a64fc4853ec99fd9dbb3d1e4b507184046a91bd9a43098ff4360aa43afb50f35536c9f75c8aded5c26a052bd66abe85a981d260f97e33
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http-httpguts-httplex.go
+FileName: vendor/golang.org/x/crypto/openpgp/write.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-write.go
+FileChecksum: SHA1: b69cafa9099066929eeb986aa149a5e165d40442
+FileChecksum: SHA256: ca4cfe70108bedd04cbb5d5adcf545a177943c674fa5c3ae1d65661a36733b07
+FileChecksum: SHA512: 065f7e1a849bce7974f4490452b0d11ed510257a9710ede49128b5db9867ecaf8725eaa003bb861acf2ee0d6a5f406ffa1e3fb1b96c05a331486c7a14267f1ea
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-crypto-openpgp-write.go
+FileName: vendor/golang.org/x/net/http2/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-.gitignore
+FileChecksum: SHA1: 1ea64956e082663debd74a48d8f0a050986e7275
+FileChecksum: SHA256: a72adf98822b3f9f99b5781137976efb8de250ebbfbcfc7a8851a6822553d234
+FileChecksum: SHA512: 76391f87e8c2b5b67d5598bc1ccfb72876266bc5ad9531a292df992712976201bfc610b700d1c24b646af015d9fba31446c82c50015ee1073fa97f0c9c744afb
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-.gitignore
+FileName: vendor/golang.org/x/net/http2/Dockerfile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Dockerfile
+FileChecksum: SHA1: 4ca3356dc859db2312f29891ea99b86086b552eb
+FileChecksum: SHA256: c2a55bb6810f72be5aaced7936d156de33c409a1c921272824812852095b4bd3
+FileChecksum: SHA512: de2c6d9f907e62cbd42dbdde75ebf31749596167db3fd92763ea48433cc010543b59acacd8fd6db9fcbbf398cf9b48f04454d29eabe12195e4a0ddbc292e4f4c
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Dockerfile
+FileName: vendor/golang.org/x/net/http2/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Makefile
+FileChecksum: SHA1: 652ffd0b441890bd6cb87a159abbe04a7256635d
+FileChecksum: SHA256: 925e0f245c830c772d05524352d1d9f1c6d55381612e8d4cab9e49f6082694fc
+FileChecksum: SHA512: 7afc8d64f10d1b8f43d254aa3667011f0e3ef3e898f480b633e43b6d10e45779f0a2cc65bc9c398c14f8ed80aaf386f8ce5e0eda6a43988727647c8114c6c703
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-Makefile
+FileName: vendor/golang.org/x/net/http2/README
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-README
+FileChecksum: SHA1: 2c544115b3f1dae0480dbe42d3b9894c644cee4b
+FileChecksum: SHA256: 7a98a2563ec46e679eeb9b9099f4f247ea8aa8e27d49ea05eb07d88c66acbf87
+FileChecksum: SHA512: 286c0b844929ca77dcb592268312252f354dc73fb4416e47a9d5f76b218b4af4b3648ce7e92c694b4b4cd0cd4255e001deafa7b83136117f42598af045662730
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-README
+FileName: vendor/golang.org/x/net/http2/ciphers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-ciphers.go
+FileChecksum: SHA1: 8ce7b9f42771a0b547cf23f218c2c573422d0bed
+FileChecksum: SHA256: 623262af28491cd81b3570936cd06757f629d2ae4fb6ef087af6762f30d7a5eb
+FileChecksum: SHA512: bacca49bcd8e9599fdcd9d217676472a7407b29af4dff0f930d664b009e045d3783ffd6a0133cef1bb6dc40fcef35983ee06e4e54df51219b401ff9a670d514b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-ciphers.go
+FileName: vendor/golang.org/x/net/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-LICENSE
+FileName: vendor/golang.org/x/net/http2/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-errors.go
+FileChecksum: SHA1: 7061fdb5c5446f199270383b87c1013378ebab72
+FileChecksum: SHA256: c74bcce836409ea3f783e4f5b7e3a23192972fa88c1b5d3e88b0118c45911037
+FileChecksum: SHA512: 339c973aae9fbd8e8e009e1d6e5443457d070018935315cf331949b3f9967caf86bbcd344aa45d2e4858c0e360b3a25fe9869183f673e3a7ed44062c5afb9d5e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-errors.go
+FileName: vendor/golang.org/x/net/http2/flow.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-flow.go
+FileChecksum: SHA1: 522fd7f9eaec7d341c980e0726ff034b779b2755
+FileChecksum: SHA256: aa0a7f938a02a08e8ac6605d8f89bda5fa64a26fffd9f4e10f23f1afef1825e7
+FileChecksum: SHA512: 632a1a820395728ce193ae7a23b35b8273ef02eff9fd2dc3218bfa839cb6cc77c3a16fa52b91b428813ec543487934681b5b633e97f91fd07b757b1e01b5c99d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-flow.go
+FileName: vendor/golang.org/x/net/http2/client_conn_pool.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-clientC95connC95pool.go
+FileChecksum: SHA1: 017dcc783638f3af946011786b85718e72b5adea
+FileChecksum: SHA256: 752a294167c6d77f4c708b4122d25e21783cb83f401f6d54bec640a8cfba0429
+FileChecksum: SHA512: a028770c6c4e7964c42c36ad0d9b12d0858f004063840f4931357c75259f1b495b23440351136ee6f23ab5a7a07c7d1809c5da83f3dd75706352fd9c8eca2044
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-clientC95connC95pool.go
+FileName: vendor/golang.org/x/net/http2/go111.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-go111.go
+FileChecksum: SHA1: 38c71df4a41f6602e6ec558576ac6423bee8f15e
+FileChecksum: SHA256: 55a7ad1f6c87dabc157f7f257d8d75585eef6ad5c082ff9f8fd0391ede05dc4c
+FileChecksum: SHA512: 60c07dafe938ba132c6780db39e1bf3fc4b6136f6a94c9cc1b7c6af9000c79a6fd3dd298efe07258073e43c43e43232787d0bbf5f2aa86248eca82e464893fe5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-go111.go
+FileName: vendor/golang.org/x/net/http2/gotrack.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-gotrack.go
+FileChecksum: SHA1: a136a54c1673c1f71054d716348e738773ce8e87
+FileChecksum: SHA256: 514d31bfafe0d9a232cc40ae162c4c9377ef30bf2d2f5e08a862f3708cd6c24d
+FileChecksum: SHA512: cbdf956933c21ddf76ef2978e8b3c3bb97aadcf21954e5bd00e650f4af6194c580b127fa681a769e1c0e430ff74aa09f2a041d2ba0954e36a01411c89330d361
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-gotrack.go
+FileName: vendor/golang.org/x/net/http2/headermap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-headermap.go
+FileChecksum: SHA1: 58c054478f698b6226b1123cc372630551505dfa
+FileChecksum: SHA256: 0f6ccc202ddf3a792bfe4249c96f0173a46cf836b42e04ec21d21eb1f9b9f9b7
+FileChecksum: SHA512: 9d489c8b037510aca777e00e1e1cd50c47a91797360ce91f91aad83f568c317e953128353296d1ac5cb76ab3173a68a4d41b3130b445c0af0382ea676591e3e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-headermap.go
+FileName: vendor/golang.org/x/net/http2/databuffer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-databuffer.go
+FileChecksum: SHA1: 82eaa69189e144f89232aa4b78af88ba8aac2d1f
+FileChecksum: SHA256: f8f23817fab3cd6441c421da177467fbe25de01bf536d7c270f0d5b267a5b8c0
+FileChecksum: SHA512: de76e4339c3ae1ed935aa6bfbf8aa52020541864d08d751bd7968ac8ca27aeff56b7ad07a2f54a65c7fd5ca8605b48146d8497b2dbc6bbef039fc2e1aabe4839
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-databuffer.go
+FileName: vendor/golang.org/x/net/http2/frame.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-frame.go
+FileChecksum: SHA1: 400f5be50195d4727fa72f2c44ed61d86c48887c
+FileChecksum: SHA256: 059c13ee56a9ceaed8c625e6b3f29aeeaa57fef56108af7e2990a0748cbae043
+FileChecksum: SHA512: 0e76df8ec942fcad7de997fd80ce8886b25595e7ee5896c9e37b8f1749b2b43d97d2f9eacff4f3c9729b53054fe9b74598e6c183b5023f41460e55b94b454a75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-frame.go
+FileName: vendor/golang.org/x/net/http2/hpack/hpack.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-hpack.go
+FileChecksum: SHA1: b0218a113e97572ccd1961cf80836fa0faecf2fd
+FileChecksum: SHA256: 0ae3cacd0c128bec9a7123eb970b97ac2327158dcbbb72494128d368919488bb
+FileChecksum: SHA512: 038bb2f5f638a611412c52074fabbb6b9d9429f691c48fc291842a60c341147c1cb81b355c6c348d92f04767b67310f06fdd66cc61306c27de25570660e9f656
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-hpack.go
+FileName: vendor/golang.org/x/net/http2/hpack/huffman.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-huffman.go
+FileChecksum: SHA1: a5d373ed8122cf251bbe226b3a4d6b08c1d096df
+FileChecksum: SHA256: b7c2153bc04adfa916dffd294ad959594ea16ccdc290ae033a539d6782173691
+FileChecksum: SHA512: a5dd1d1548da507dc770695206374aa61636527df1b402454ed8a5bf5248ffa7771669bbd07976709092cb8d3fb199248ec587e77d9a862a68a68e9a6e414362
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-huffman.go
+FileName: vendor/golang.org/x/net/http2/hpack/tables.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-tables.go
+FileChecksum: SHA1: 1af5ce9a3f55ee57a7e150e2f4532ab2809b7f55
+FileChecksum: SHA256: eb3a07b0659478e4bdc1cc5dc8f1c77ed6a00abcfb32b38815d0f52ea55d0eee
+FileChecksum: SHA512: cbb08948e3551512a3358a0e80255a84c565516e1eace5dff72accbc8a4843403d0ea08eaa9930e1fac177bfc2520291130c10a5e608e4babb6f733bbb98a98c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-tables.go
+FileName: vendor/golang.org/x/net/http2/hpack/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-encode.go
+FileChecksum: SHA1: f15b268afb1a92cc6928cac8b39c1ef5bc33ef74
+FileChecksum: SHA256: deba418211ef037d0e974d003378a0a55785e9e7cf464b4ba54663cc7cfaa7f3
+FileChecksum: SHA512: 06923579441ca70e495767a7c6a8c10986b69eba0d4242aeddcc3ade4105a8a761e707b4e64b358e68e72480dfc770fb00f52e059df8bef812ec3240024e93e9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-hpack-encode.go
+FileName: vendor/golang.org/x/net/http2/pipe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-pipe.go
+FileChecksum: SHA1: 92aaf1dd8ca9dd503ce8fe631402c57874717e20
+FileChecksum: SHA256: 68ba000fdad3187e3e8e6ead91776dc347356910254bdd06b2f8b4b4ae76f4c8
+FileChecksum: SHA512: f0bd1c77b83ee2e556f5dc3974dbb403b88df137631129e57ef2451e2082c1e491f8660da33b72c3ed22dbb4e8adb45c0ad9d85e059a0efb426788f667535a1f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-pipe.go
+FileName: vendor/golang.org/x/net/http2/not_go111.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-notC95go111.go
+FileChecksum: SHA1: 0b6e74c63314cd07640924431b55f66f43557b3f
+FileChecksum: SHA256: 7422599aaa9352f3cff5b0a594f3e92d1eebce634fbd5991777a44129c5ead2c
+FileChecksum: SHA512: 9a3124964f393da46acb934885f3174828b46f84af649529940f145472056a55a5fbee7906465539ff1ffdc4755e85d30dafe543c10ca1f0c99596be5d988a83
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-notC95go111.go
+FileName: vendor/golang.org/x/net/http2/server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-server.go
+FileChecksum: SHA1: 47b9a56a61b5ebbeeba103b7c9c74a86646be428
+FileChecksum: SHA256: 805ac4adbc200059b98e0e2e9b2986b1842c77de5069be91871e5892fe8d7a1d
+FileChecksum: SHA512: e9a470c57abf9577569e5ca860ea86e6acb015a894afd07c8b1032763f4a0ece9165ad6db690f3f4d77d7cdfe438433c56b895fef846aa60db61b016e8ed799c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-server.go
+FileName: vendor/golang.org/x/net/http2/http2.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-http2.go
+FileChecksum: SHA1: 30a215fdfa2048cdf28e2bbb734959f1ca9aad18
+FileChecksum: SHA256: 8719bbe9c6fac158e257d1ee706a9e22209ff7157a1ac03be1ab69c7cfec0c55
+FileChecksum: SHA512: ff8864c4306f9e6b33c7e7d6e09500550304bed4f74ceb8d904247f9a981ee41d02756e80d54c7e387a3cd9823735baf61922b4fc90195d3087a91789c3c2330
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-http2.go
+FileName: vendor/golang.org/x/net/http2/transport.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-transport.go
+FileChecksum: SHA1: 125b46f0d07064a52f5f853cd5a4644411110146
+FileChecksum: SHA256: 8a42eb2cbcc645ab8e7c08085741de2ad13fce849bfa8aa1e6bb981c3e319349
+FileChecksum: SHA512: b7e369c20e304dea727328dbd0fb699e4d0054884df5073007457f6712f62b88fddbea9409ccdc8f251ace52314d92df8b3729e12373be783a8d8c35c10312c2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-transport.go
+FileName: vendor/golang.org/x/net/http2/writesched.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writesched.go
+FileChecksum: SHA1: 13a080d244f90aa8afdf39c03d111294abf51d7d
+FileChecksum: SHA256: b446c4f03a8d24adc042a81dd69a93e86957e81b29cf87f600bb658129d7726e
+FileChecksum: SHA512: a16035be98573f3b9829315d38075ff4f3c969d7b68ce15d95562694df848b22652e1dcb8783f62c56e208a8573eef9a55aac8f96fc28d923a4e51f95a007717
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writesched.go
+FileName: vendor/golang.org/x/net/http2/writesched_priority.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95priority.go
+FileChecksum: SHA1: ae2bc8359cbf7fe7f76b3a71d128410ebf0e83dd
+FileChecksum: SHA256: dff6403a13f80060fa056670c89066894f0abcc522892545cfaec23ded6da521
+FileChecksum: SHA512: 65849d2783d6f55627b906616d1b6828682f5c23c9b24caa7c53d644d660a7c6756a2350d58760d3974ac66a75866d04191dbe0f85d33fd364cb1477ae306ca0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95priority.go
+FileName: vendor/golang.org/x/net/http2/write.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-write.go
+FileChecksum: SHA1: f42559510f3cc4aeee0b292d6fb84cb99200ca97
+FileChecksum: SHA256: 46d324974f35f53bdc41bd14ff5f068670f2d36dad137edebaf951070de1a405
+FileChecksum: SHA512: 1ed126cf1ed92e3bc50d6f13558d133d6cd4c30e2ef861fc5c89ed2085848fc7436bd6955b2679abc68ff23c974d2fe33d7e0d2da4087b8b20a3f1640a6a0e44
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-write.go
+FileName: vendor/golang.org/x/net/http2/writesched_random.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95random.go
+FileChecksum: SHA1: d843790415cb8a46891e545e3f5d5188bb653072
+FileChecksum: SHA256: aa16f68e60e1cb3ff47974df8fb065fd5190b1a7cb9cde28f3b53d26161000b1
+FileChecksum: SHA512: afca5dafa7cd9003b7501d79b07186ef5154a43154388bb9676b0698e502de2f56d0d8ed51813e488feaa5db6690f7c1d6b2f6670dc11c25da31b366f73f2fe4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-http2-writeschedC95random.go
+FileName: vendor/golang.org/x/net/idna/punycode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-punycode.go
+FileChecksum: SHA1: b251f6a167b2b55ba0f86ff27555198ae574a3dd
+FileChecksum: SHA256: 4298b84216d79efc0c29c9fb26a7bf1898d1e7f06fb2b9a8f64d08b5be70e695
+FileChecksum: SHA512: c17f423bb215dc41f3abfcad542437e311602770e9eea5cde51472f927df98489535b783c28272520594e7b3fc0b4ba8c4df54e19eb7feec979d24f905d89334
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-punycode.go
+FileName: vendor/golang.org/x/net/idna/idna9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna9.0.0.go
+FileChecksum: SHA1: f7590a4ae8568da638ccc163171af66f58580cd6
+FileChecksum: SHA256: 16a464dbf3e41a911fc6866b69c6ce8f6e8b1cc5b077ee87675d948b5e20b93f
+FileChecksum: SHA512: 0391df726a926a28f92a99809d89845c6e4ff1099baae98b9b2c9928ade6c5de7ec2b5d448dbdb529054e6f96e92ce65c77cf877916a9e5bfd784fef2de8e0c6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna9.0.0.go
+FileName: vendor/golang.org/x/net/idna/idna10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna10.0.0.go
+FileChecksum: SHA1: 5dc93bdfc638f6dd1a0b3eb33232c0062cd2fa44
+FileChecksum: SHA256: 60bbefe8441d129e62e2eb8954988c787a7a5655f123e7ff3a0c9f65ba70ef05
+FileChecksum: SHA512: 33dcd2b76f66d3420303bc8017ecea6c99b41f6c21ca0ac32d4194caef752a405f5948bff88ea6411f1db661a63b44076b8fd513fa62481dc214cf8a932eeab1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-idna10.0.0.go
+FileName: vendor/golang.org/x/net/idna/tables12.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables12.0.0.go
+FileChecksum: SHA1: d7359d9405bc0b5080a6d2b1dc9f9fa652abc45f
+FileChecksum: SHA256: c2998fefbbff7db2c250b006535ba722bf1dab8a6ce8d987347ca5a1e02cd981
+FileChecksum: SHA512: fa310d9b3fe73ab7a938d30e2c8b696210451f0274b793bea3deb31b6e29fce5dac2e1d89ac30824b7aa8319f35337fab317e8085a6d4dee6b7f4cc4c241d694
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables12.0.0.go
+FileName: vendor/golang.org/x/net/idna/tables10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables10.0.0.go
+FileChecksum: SHA1: b35bccb17b44b5bd8c55cf2189fa3636d9b7d752
+FileChecksum: SHA256: c46b0609736495d9403a67ad9f3d380be71d142dcb8d3840661690233bce7550
+FileChecksum: SHA512: 281893337977d14175c30ccd1ae5b236c566d7a52ac36704aa28b8b60a378841baa5a760b776740925342de80f2cbdcdd9b6767e1fb08b1a27f35d87f706b77a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables10.0.0.go
+FileName: vendor/golang.org/x/net/idna/tables11.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables11.0.0.go
+FileChecksum: SHA1: 2abd56b991be793b7f3382e07cc01bbd20a9ff72
+FileChecksum: SHA256: fb998a062bf64409b9cfb1631ec804a53523ace55d2bed660967c4d01a201b1d
+FileChecksum: SHA512: 2eb2d57006bc4bb2811dd4769004d2a272e87713bfc673315cd72270dac89a5501508936810656614a0293555a9fb79904f6b4c00d19ebeb435aa9cfec9edf72
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables11.0.0.go
+FileName: vendor/golang.org/x/net/idna/trie.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trie.go
+FileChecksum: SHA1: c122387f6f6f830a00a6b1ba252b3a864bcd9176
+FileChecksum: SHA256: db499ff94fdfabf656639225228255546ac04aa38b01509e8636920cb4aefee3
+FileChecksum: SHA512: f78ee19828f312eaeee926ada17ef78deffe42da25826f1b5d835530053a13fc47c291f96ffadaa0fb184824472a1e07ed220bf6f44d813dc9e76b68ec41d6ba
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trie.go
+FileName: vendor/golang.org/x/net/idna/trieval.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trieval.go
+FileChecksum: SHA1: 419fd865a327e419b473234f41bd6cd4622214b8
+FileChecksum: SHA256: 253e9b9d680a5de1d85c21007186fdad531c43452c3a3bd6d0392ca15c2dc1f0
+FileChecksum: SHA512: 5f326b2b4f7370b5213123e71b528bfc1ed91cf2858bb6d0185b33ef345b0e715c62f64fcc4b1052e38830cb052d73f9afcfcd2f8d024c8d8abfcb5092f5a6e6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-trieval.go
+FileName: vendor/golang.org/x/net/internal/timeseries/timeseries.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-internal-timeseries-timeseries.go
+FileChecksum: SHA1: 06dc4705c9d34847aad9154dea2cdd8dcb1ad899
+FileChecksum: SHA256: fb2a98dacbeb1a456b79bf48d4c90ec1f213fad4cbafd87564326b61e5d909ce
+FileChecksum: SHA512: 937aff2ec8f0d0eec5671218459601adb1baf9853bdc38e4bfc5c03ef8cdd0d9cb5a33bafdf95a213e4b38e17b2bb552a22dcf54fe9ba465ffbfd0b1c3fc0cc2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-internal-timeseries-timeseries.go
+FileName: vendor/golang.org/x/net/idna/tables9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables9.0.0.go
+FileChecksum: SHA1: 8e084363857457c96d34fdfaddc2a70928340f5b
+FileChecksum: SHA256: 9ae2a2ef005a5c60dfd69348ecddccc42b2a281bea19916e77422b32d0756a2a
+FileChecksum: SHA512: b129a922ab31dcb7285a1d55f065b1a7ab9112a2344e791be24307c1bd8137e15c92c4ee65fc3c4ecb69bde6c5f52b7f3d16d9eee9301bdca43dd39ec2c40ab3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables9.0.0.go
+FileName: vendor/golang.org/x/net/trace/events.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-events.go
+FileChecksum: SHA1: 812dab524673b759cc3a87fb407ba4ee0f470ab1
+FileChecksum: SHA256: e5be6d11a7e445104a76048266bae0abd77a33a5b97d37409261be7fe1648e42
+FileChecksum: SHA512: 8c8302018f4b17e415548784f5e0b7aab189f2ff2b3da50df1bce6a050c71f3b05b9b28125c257e8fc518cc622a07d73c22049e96816a0617e158ebf0815b8f0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-events.go
+FileName: vendor/golang.org/x/net/idna/tables13.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables13.0.0.go
+FileChecksum: SHA1: c54ef40f4885210d0ede5d7b3b88fba56e9cbdf1
+FileChecksum: SHA256: 951230ece06a088133318ef85d38bd1436b23d6e7330863effd85d2c73866b49
+FileChecksum: SHA512: a9043209a6185bd218a655709941f2e8d7ef5c03cb2d8e5576dc4268c05d912910f82ac1f8ffd88068c87a534c639425777626d66d27d85d3598576c2bccfe4a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-idna-tables13.0.0.go
+FileName: vendor/golang.org/x/sys/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-AUTHORS
+FileName: vendor/golang.org/x/net/trace/trace.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-trace.go
+FileChecksum: SHA1: 42b5018dcaee5c896ce12387591942c41555159d
+FileChecksum: SHA256: 3bd9564c4f8901211baf0fc33f58535554a4f0fbde1ec71b4994b33ae77b6468
+FileChecksum: SHA512: 670e03d6f683636a63fcaf4da8c033e98f26b9358a471e7c78c21c667fa6077f2aa2dcccb21910b4a161d6bc4009eb2fb0f25a4f40640c6bbb4d1e3a46293ce7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-trace.go
+FileName: vendor/golang.org/x/sys/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-CONTRIBUTORS
+FileName: vendor/golang.org/x/net/trace/histogram.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-histogram.go
+FileChecksum: SHA1: 4868124ea638ce5460acf749d21ba5c67bfd23da
+FileChecksum: SHA256: 0d7d8f7d0ad414202bad733834b03620a8701277116c09606f8773ddde6277b0
+FileChecksum: SHA512: 3031d59b709f2a543f474a04977e82ef103e21c8cf6b35e9c3c3eed62e16e416df6854dad24360a437569710751740d6839cbc7661c44cb1b02969e560de8ef0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-net-trace-histogram.go
+FileName: vendor/golang.org/x/sys/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-LICENSE
+FileName: vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-internal-unsafeheader-unsafeheader.go
+FileChecksum: SHA1: 057e624278df89fd26d58fb5104653033541a28e
+FileChecksum: SHA256: 8ab6b296b610d187578596c01c09ff0613d78d07a0d891d5e17aa5da375b6948
+FileChecksum: SHA512: 4d468eb82b8d50e0178fa87d9141ddd2c8372382b6f7961725c335194784bf5d545dd9a69709c379b92c18b92f94fa2173fda795e5ab661654ca1e9a71481605
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-internal-unsafeheader-unsafeheader.go
+FileName: vendor/golang.org/x/sys/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-PATENTS
+FileName: vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95amd64.s
+FileChecksum: SHA1: c5661d8fed6cf5a4075e7a84e1beb2d70bda4422
+FileChecksum: SHA256: ffcd45494479e8704e6c76c0cb14163e4a1945d74f227689050942bd539b776c
+FileChecksum: SHA512: c85cf8eb6a250b67dee2844edf5b8a63597a3e106deb8e47b18608f7543d01566fe952f0bdcc5fc367b957b8ec59b52e3602c867fb675e92dc23b81f75a2ec3e
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95amd64.s
+FileName: vendor/golang.org/x/sys/plan9/asm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asm.s
+FileChecksum: SHA1: 6741e5b924b0941335c05b65966b52f10ab91bb0
+FileChecksum: SHA256: 1a3a3cf8d418ac9c4093d175f6c5b12997d0bd6902a5467d3f79e3abe7e60d78
+FileChecksum: SHA512: e3a5541aaf3bc09d65e2ecc32ba5b2a8256d74f9cc52e7ef2bb0b50878991a5709d4c3b545b54617c2dcb94bce1ccb460c0e1fab9407001e2addcb2d87854b59
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asm.s
+FileName: vendor/golang.org/x/sys/plan9/const_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-constC95plan9.go
+FileChecksum: SHA1: 5877f9ce718c9dcec91bfa244a175f20e0350057
+FileChecksum: SHA256: 622cb24770d3e8e007f200782210eafb4e711caf49fae8c3a7d9f8bbee312e4d
+FileChecksum: SHA512: ca1c3cb948500ca0f7c165cb7033fe15d6c18516bd96fdc86ed6a4169576b54e5a753c764d2cc5779a61037955c6d9041fe054b648acd0aa3ecacd7dcb1b42e8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-constC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/asm_plan9_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95386.s
+FileChecksum: SHA1: 4f66ae0fe99c1570069c53dcb177e45db5a70a1f
+FileChecksum: SHA256: 24a9c10414fc834ec763576fba475148243e4253f2a94f8001ee370148628db5
+FileChecksum: SHA512: a9ec63c9f91b2f809ae3b87122cd77324aaa4cb2aaa21ac0a3fa35b4e5fc662c9198bda983e0d8ee0b3c02fd676bc111796b5b0455e921fe250eb8a42a390711
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95386.s
+FileName: vendor/golang.org/x/sys/plan9/env_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-envC95plan9.go
+FileChecksum: SHA1: 553adc7c25fb8dd11a71dbe853ff35c66bd54ce7
+FileChecksum: SHA256: 73d0fcf4f3d1a36028d3448e105961749f3e2e672288ce295aac942d851c3546
+FileChecksum: SHA512: bb65c51665267e96d2d4c176c8b08da94acc2a241df961088d08d6a6e4482458d4d1c5efa151c3776b8fc3a2079f5a8fc904c5e3ef30c2b240370310c1e167fb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-envC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/errors_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-errorsC95plan9.go
+FileChecksum: SHA1: a6e875d6c72b6b7bebe312b6f92f7b58ccb84d8d
+FileChecksum: SHA256: f7cf2a2692a72eb8df570f98351fbd478306686cb3f3efce1e6921fdeda3f5d8
+FileChecksum: SHA512: c5458dce70374efa9d57f8c28aca1ef5ac21e4d1cbe9ad8526424dc49a271dbb124f40d5e538f09b9de22182ea818a2f3839310ec74fdc2c26ec327e915055e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-errorsC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/mkall.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkall.sh
+FileChecksum: SHA1: f69a74840722fe81283600522a65c2124e085eab
+FileChecksum: SHA256: 4c00a754aef7a86bbff33d75cecdcc5543ddabd1b81a4d0bb1f6de47e04fb928
+FileChecksum: SHA512: a4e746470a02f5bc7fb4b6fb26e8b90d74bd21f75dd184260530ea49f063b8b8fdc65b20dec90c41548543a459a01ec017938b4ad1d318e4affee7b9222ca6cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkall.sh
+FileName: vendor/golang.org/x/sys/plan9/asm_plan9_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95arm.s
+FileChecksum: SHA1: 001243e5e73686f04c3f45eaf31003d60d235875
+FileChecksum: SHA256: 134d070fb08d17dcf9d99ddf49d0292b1aa068fe3458112070e0e7374d28bca2
+FileChecksum: SHA512: 97eb19a95f0bc5ad9588f72f0fe5215f4599f5c1b885cfd4d1e05b2152b6e3300191362ab94e8dd5fcfdf0b80be201dc5db89b41f187750e83d1a11896627ae3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-asmC95plan9C95arm.s
+FileName: vendor/golang.org/x/sys/plan9/dir_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-dirC95plan9.go
+FileChecksum: SHA1: 1897d02f4930719170d62a0962a96ce14646617d
+FileChecksum: SHA256: 8a085a885566456c46be6b63945569f3ade74c8043052010e63b50bfca22e428
+FileChecksum: SHA512: d7ef006dda681139763b46905d428f78257358de895174b7caba29fe0dcf232abb9d659ef310e6847c75321716abde368897da765413b05d0b790292ef7d8729
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-dirC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mksysnumC95plan9.sh
+FileChecksum: SHA1: 4fafe8918e221305ea72a414dadb4b997838f078
+FileChecksum: SHA256: 0b8858af1df4540706ecf1094957f239bee92085f9560f0337eafa634702c161
+FileChecksum: SHA512: 40ed7b8ef25e37e6bc591211b96139c6faa44508425fc3d2c41e5c659b9e831711321164742604009915d0b9d8e5329ce07d792da577d5781d70ff9b3047a6db
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mksysnumC95plan9.sh
+FileName: vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95go15C95plan9.go
+FileChecksum: SHA1: 8e44f764a3a9b32beec402c9782f5f56d2ac83d9
+FileChecksum: SHA256: 65e3b7bac0f25e4ca7b09169112ab6f3a7e33b0618a3e2bf821fb4eef716a56a
+FileChecksum: SHA512: fc14dcc10e904f991c92113809d02e84b71deaa67004dc3398a2e831e48275e9750729523dd43330256efa5ebc58e7b7e9f5f776cb4e4b108e61badc8479edb8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95go15C95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/pwd_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95plan9.go
+FileChecksum: SHA1: 2ec8e8ce176fb7fb6b6b97c60297a4eef1e391fc
+FileChecksum: SHA256: 39e129982aad81d8bbd2d30750750aa9173287c8b1de7e2a31b223af62f1b831
+FileChecksum: SHA512: d6648bfe81da9dedba23b5f8c921ccececf337f55cd84aa0e6cbc18d487eaa57b14781a0f7c32e4c38fc01b95a66edabd755f3da4a580a903e5105c7bca4fb35
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-pwdC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/race.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race.go
+FileChecksum: SHA1: 0f280b2389ed89f3ad7000f94e1ecf993826e7f4
+FileChecksum: SHA256: 2f40075973ff11d41a94f9e0e10d8f7ac5103a61809999cebe8ea61f158fcb10
+FileChecksum: SHA512: bbb24d67fc6b5c19c1a51ab71599948796b08fb6e4dbf9e6efc9cc6b567f5e7420bac302af69d0082c5daaa991a20f4092778d055c066a09728607d9499833b8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race.go
+FileName: vendor/golang.org/x/sys/plan9/race0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race0.go
+FileChecksum: SHA1: fb1ff086cb8a0c4bc18cbfcf2c43b69abfd56bc5
+FileChecksum: SHA256: 64d666eb5ebcbeaf368fa4952dbd6ae9c16f9f89ff8ca6031187d1514036f5dd
+FileChecksum: SHA512: 9429141860155ba131096b9d2762da9c214f080779d45db163ad6a1ab6d38c4caf7715f8e1b70a5d68bc50ab192d576e49568fd5616ef6e32354623117c22a4b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-race0.go
+FileName: vendor/golang.org/x/sys/plan9/str.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-str.go
+FileChecksum: SHA1: 95821ea5de37a2826a5b07c5f1adb570f1c110c1
+FileChecksum: SHA256: 25431414c2ef9fa2a0ec028bccbecf4035ff273d1d36e32b7837539d60774c76
+FileChecksum: SHA512: e2cebe32e836b6a60332b8ca370263dc48998bb951d31d96b2cad06425f4ba93b15a45cc213ac6ee7c60153d3176f54a944e560cc23cc028da94791fdf2933a4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-str.go
+FileName: vendor/golang.org/x/sys/plan9/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscall.go
+FileChecksum: SHA1: dc4fc266aa7d7e4d63b5870ab3f3aa99cd6f085b
+FileChecksum: SHA256: 07bdce86c2a977c490bd3064063878ef033252d00b664b3f1ad941688c6e7ea9
+FileChecksum: SHA512: fa8da0ccadf13ed2550fed0c8f407648f546dc94abe8d80e3c9557edf2d9eadc039112f5b41b54d65aa49c104969dcd5737a582ffa59e5e88b40bc4df64e4a9a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscall.go
+FileName: vendor/golang.org/x/sys/plan9/mkerrors.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkerrors.sh
+FileChecksum: SHA1: 82cd68406765bd3ec9ad9b8763022be65f177bb3
+FileChecksum: SHA256: 22ea3cecb0d7cb824c2c65816bb002695f90c11f45802e5832f9879aae2f8fb2
+FileChecksum: SHA512: 6eb982a7b834a679e1f9d90ccf6136b6abffb57efdda06814fcacbe77eda9b8f379d87343dabde998a67214823cbba8aaa50f7cd48483185c5beca5600160c9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-mkerrors.sh
+FileName: vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95386.go
+FileChecksum: SHA1: c9843fd28624a6a3ebc697b51bbbe25eb961acfd
+FileChecksum: SHA256: 84eaee9e25215636dc8b46b58cad8115978e8ab80235d51f53e78dc0c141d133
+FileChecksum: SHA512: ae1d35aaaca9606fb5cf76ea32b5d718fc821fa1f160eb6cf1c6896923087e0ff25cb22c92c8172225a9c1ca55b7aecd9b4ab20c17098a995faa815f185edc37
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95386.go
+FileName: vendor/golang.org/x/sys/plan9/syscall_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscallC95plan9.go
+FileChecksum: SHA1: aebfbd4fb965a6e7b6502e78c9f1cdac5044778d
+FileChecksum: SHA256: b096a4bda0e9a205f844ff7aa363d5cc59662947a490e02c0eadaa5a34edc958
+FileChecksum: SHA512: a7208093ca56c411131323a594074dcfd2ac6e01d90d59bcba9d8de5550be773e80cdfaabe0976bf0314b05ba69a370bc99f8d7a8f65e6df01bca758435e05fc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-syscallC95plan9.go
+FileName: vendor/golang.org/x/sys/plan9/zsyscall_plan9_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95arm.go
+FileChecksum: SHA1: a2b7e8694786c50f13359ce7f4173b1797e1c182
+FileChecksum: SHA256: 1516341b06fcfdcd08c8d9d28c38d1d8feb6ca6232a78183b93677329f409e63
+FileChecksum: SHA512: 5752d56b5e6445d0c5573c4d9431afb1020953645c9885680f33dd95916434edebffb0bde02f0b897f9a38354239d1af658c4add7011687aadd441a498a1b5d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95arm.go
+FileName: vendor/golang.org/x/sys/plan9/zsysnum_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsysnumC95plan9.go
+FileChecksum: SHA1: e33394760648d7915325fabc87f7216095b38dbb
+FileChecksum: SHA256: 6b9027a1b9a0e5029f819bbed060b8771742c5f946b4163ef1080531ee4366c6
+FileChecksum: SHA512: 845a5f24c89142087fb344a7a2d5867d9edb2e8ec6bb4577419cbd247803dec7564df3e61930222befe741b7584a8b79bcc68aa7549ab37a96d1fecf13f68cf1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsysnumC95plan9.go
+FileName: vendor/golang.org/x/sys/unix/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-.gitignore
+FileChecksum: SHA1: 466625d6cbff0e18c8c02446914e9381e67f9345
+FileChecksum: SHA256: cc0a4a6efa79e7f971f329717482d436e7f02657d0409c07fb476d698eee8d11
+FileChecksum: SHA512: 84a1ec75ad298e814d3e8155cceec8c556fb6c22445cfe05adb12423b2813166d2850a1ae585c73b33f9c67784709d36e8bffd79656cde51b0f4b899cc348621
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-.gitignore
+FileName: vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95amd64.go
+FileChecksum: SHA1: 4c0b2a9c6a605cfd4826eb5c406ba94103362d79
+FileChecksum: SHA256: 798187308d8e7168a4b28daecef0bfe06ca26335676968a7bfc17bb307802197
+FileChecksum: SHA512: b373c9c362b7384b0490e6387c6e9523539601fe9c9d6eb9a2edcad2299201a9d57d70280762922506d7d68b473067c3e5eeed0c3b5645ce6a4f25c0c251f3d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-plan9-zsyscallC95plan9C95amd64.go
+FileName: vendor/golang.org/x/sys/unix/aliases.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-aliases.go
+FileChecksum: SHA1: d91b62bc1f21a3330e2d2ffb77749fc798d28d88
+FileChecksum: SHA256: 3269423037681f1aa129d3bc3f2f8e05029fbc98f2929f458ae4053c235b6db5
+FileChecksum: SHA512: 5d187e1e69d8afc39625f48cfd9774fd78fe7233332c68e3d0d6acf3a0a75a512a77b99d12afc9b82b4c993bd35cde7d4e3edfbe1143037996d74cf5e1310643
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-aliases.go
+FileName: vendor/golang.org/x/sys/unix/asm_aix_ppc64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95aixC95ppc64.s
+FileChecksum: SHA1: e7dd3214c7d5fab522cf7eddb40a873e9305a88c
+FileChecksum: SHA256: 66100017b30cfc7016424be7dc6dd0cf15aa1b0e0e60c10950a248125d02aff9
+FileChecksum: SHA512: 33e377c6a016b5f9d52162212db21f7965d772b7da91a78d6299d1695ce4ff39f744991a6b060d6ca74d42b54329c757f8927c0cef328d32efc991033a53f50f
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95aixC95ppc64.s
+FileName: vendor/golang.org/x/sys/unix/affinity_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-affinityC95linux.go
+FileChecksum: SHA1: 7116fffcb11f2ed2f7a54004e5d221934b657974
+FileChecksum: SHA256: fec0be0ae3217f48c812af387e8763f915ed129745f9d12711a95eeba505e1be
+FileChecksum: SHA512: a3f1e7f2448fbf5cc3c6b520fbcf31af913a30c1545bf61d5f16622ad03d0872571ed422d159c4421050871d47e4b1b5152bfee89212f717ec7fab03b98357b6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-affinityC95linux.go
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95amd64.s
+FileChecksum: SHA1: 686226c59c386791da5c159f7bf926e5442f3f3e
+FileChecksum: SHA256: 9a6fc9dcad8e20d8cecba8178b0abf0414973f1185851059850aa242b8cec71b
+FileChecksum: SHA512: 5e8a0268df75d414480f0aebc658c767dab328ed8eb091b3ecd28118a48d8750a6db46650cd7df2e2b44baa3ffa96e348a1a015edea37539456542d0d8816157
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm.s
+FileChecksum: SHA1: dac4f61b5738c1109b23cc836fd9de21a14346ed
+FileChecksum: SHA256: acefd0716a37ebc470d58959f1c4903a306bdd65ec4d98601d1fed767bbf03c8
+FileChecksum: SHA512: 237e954104a8470d7d74b47460df60bd708f2d11f20b623d64c5cd899e125835138c6f30363144cd597ea0a1e87dad2c93eff2cbdaf923922c428061c1469b55
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm64.s
+FileChecksum: SHA1: 98089ad4a8a17d94cb2313f447a4c157d379c468
+FileChecksum: SHA256: d98badbb1b206f4382580feebedf17fb4e6269934e462f803daf3c356441cccf
+FileChecksum: SHA512: 40f90b1c81f96a6dc64f03a80a77bef647e853f08c3940789dd0bde40faff0f8852ddd053b22e2c6716826d6dcb50d9fed24a7254cf61008287ba24989a0dfb4
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-README.md
+FileChecksum: SHA1: 05c613b0be6a188f488161e6cd88e01c82ca026a
+FileChecksum: SHA256: fb134960fe62676a76aab5538a653883f32c44462e089601ad00abbd4d4584e9
+FileChecksum: SHA512: d75f19d3749cb17984a6924a4b0d9a2ca1a3ed80c33f56545497504331bbc65a9f2829c329de3e2b2a09b2f44f64db7dabcd62fc5dbafb49821a3638f861c1e4
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-README.md
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95386.s
+FileChecksum: SHA1: 1dbfbe845702b9fdada1fb26940290e3a697595f
+FileChecksum: SHA256: ce491feae6c6aa10aab9d9642820eca964a7ff1fbe4f0bf950efbe7a0b109bdc
+FileChecksum: SHA512: 140b0ac593479351f1abe0414df0d7b7495e28b92a7bac9377b506ca2bbac1464e7bc613cc0d5941377bc8b8fdc1d539f9c1e32aaf495b7730e7ee945f33165a
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95amd64.s
+FileChecksum: SHA1: 50ba10feb412a2d045576d734fc481724b022d51
+FileChecksum: SHA256: 100655ab37c9d3939c01b0fb94f11d4d742ac69290542290906c8fea8db9d4f5
+FileChecksum: SHA512: a261bccdd8447ac0455624a133421afd57d9546bee0e74a74b0b95bb6f7963e9932d1c527d77a51314ea959fe83788246f838fec55fb0bf2ba962d1a5a0b13bb
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_darwin_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95386.s
+FileChecksum: SHA1: b45996d69c5281c27ed2034ccde3052287a35869
+FileChecksum: SHA256: b6307618eed73febf9e0784358b42846b690595be195babd86460b67faffc30f
+FileChecksum: SHA512: 3fc3fbcdc8babc0e891ddf4ac704025f4a118f91e9e604762bb7c2e705e63116be44e77c70c5e7675eaa098d5d617c5eb9e96b909fa83f7b7eb67a31d562c2c1
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95darwinC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm.s
+FileChecksum: SHA1: 5293317f3c2d155f51738ba6ba5a20ec16b94864
+FileChecksum: SHA256: ba6f5c549a842f53b21dbddb619dd4cfa2ccb176e1e0a5fecd88f4ddf2ae8597
+FileChecksum: SHA512: a1de27fcbeb4794201fedb8754fd8fd2116eacac5c2d5b4c3d64e8c76cf063092c82a55362401cc8c182966d5a170745cf2a1cd99ca8c40e8480be444e38efae
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm64.s
+FileChecksum: SHA1: 8168947d9eebad40c5358ba6fced5219b9213acc
+FileChecksum: SHA256: 36063775a63c943a8c241979d4400ce7ce28fa78b67ccebb3a2f9e3b126510a3
+FileChecksum: SHA512: ecb4b76e2c05c1b6f7625515ab790235337270e8683fbd466ccd8f7bc174e8c7baeb7d80bceddc68461673f3be3dd91342fd256b25b720388c8ae83a735d348e
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95freebsdC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95386.s
+FileChecksum: SHA1: 44ea1a107b1e1c67499731e1732660685ec88ed8
+FileChecksum: SHA256: 9fd2fb1c754bb5863ce3e420338da73643e32a6cf2ab63d56d639adfd37118fa
+FileChecksum: SHA512: 3173f88f9a1c3747d12e331f53fbdcd0d2c2085c37d964c06f24f2c3a04716edc359ef7ed94af0593bbdce19de2c9cb7c4404f01bb348a4e5ba181adbd83bbe5
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95amd64.s
+FileChecksum: SHA1: a5a1aa91c033a7c5a53e261fee92bbd3fa5d92b7
+FileChecksum: SHA256: a1336d7bb725fdad6925e130223f1a2d5ccdf1b8bde25136d7f51dd7ea96289d
+FileChecksum: SHA512: 89c626729df183da32b55d479b78cd0e784ad56ab3c9b44d84b0aebfe217b40adfb335352c5a7fb85cae93055a1913313735af7bb675adfbb3d7c5ad8cfa38fc
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm.s
+FileChecksum: SHA1: 664d40f936300d5d6c5cfcc0b0089ba4db4ef929
+FileChecksum: SHA256: 4c55960910a04d66d508302591fdf66abcbe809b3e474b6b06d9af02e1da7857
+FileChecksum: SHA512: 5fb1aed5fbfcba963a73dd15a0a5d5912a55bbe7e8c60373ac77cb7f0baf3806c35ed4025036c53e52b37c66656ace51ee7b80da2d29c910fe251d1751e299b6
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm64.s
+FileChecksum: SHA1: 2cb513189cf04e2abbd265dd94a4999dac53b736
+FileChecksum: SHA256: edadacd7e25e1973b4a05bdd6b2433660f3395b130ddb5465f248c8467dae78b
+FileChecksum: SHA512: 0b7cd720871241ae3b99eeb2c5fe826ba129c8144d2062d9d058d115105c8f337855afcbcffe7a5a7408e1bd6e1507f06843bf9810de919be507339116cc8b60
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95dragonflyC95amd64.s
+FileChecksum: SHA1: 66fc58ee2ad0dea03b3ac814994e6d457fa4e76e
+FileChecksum: SHA256: d2b89705b6cf95e2421f06ce22214595ebf3204a9159875e567e86e70a1ad4bd
+FileChecksum: SHA512: de2b19a2c1f21e3b6f5ac8403a20e50774450c7aeed15e6e467a0a74524d39ddab614aa2f0eefc0631ef6329e00a7cce35dba902ea720c38410bb35cd5a905f3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95dragonflyC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95ppc64x.s
+FileChecksum: SHA1: e2cc486af7995be96b610298c5439a5ce8dbc051
+FileChecksum: SHA256: 692dc54cd00b2daaf14b98a1359219fb839e06b07f3a2a953fba4d1586ef2ec0
+FileChecksum: SHA512: 0adedadfd46bb0f24593e18078e4bb33b9360ea2ba15f57ac734d63dfb946dfdac1f1b061b729c2ac770931dcf6224a45ca0516b963aa4246d732d429cdc1c4a
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95ppc64x.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_riscv64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95riscv64.s
+FileChecksum: SHA1: e9fb08c73a895d935ca219e69214b0670c2aee8a
+FileChecksum: SHA256: 7d058d9777bd8d25b43d2563c9ec25f11e60748be36b8b927fefc60e747f5eb0
+FileChecksum: SHA512: 0c450e1a86afdd93e441094cbb57a3f5fd3d59bbf44b4a7f45d7edaddf032b8ff182704bdb8c8f5c4f8a4d86a2a78831fb5f2404483b79040107ecadbb23efa0
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95riscv64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_s390x.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95s390x.s
+FileChecksum: SHA1: 56b027383c86a63e57787d10f1622bc28b654af8
+FileChecksum: SHA256: 67e5f2e490f4bf38afa32dab1e1ab28b3bfb80dbf550c35c9b34e67e04b00c34
+FileChecksum: SHA512: 275b602da6b459dd8f375dcd42a525d1faeff4421818d8b830de351fc74a10811f899bbb8da3dc234208cc9a205787ac9b59be810ee095d9e119542623ae8406
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95s390x.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_mipsx.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mipsx.s
+FileChecksum: SHA1: e320cd7c4daf4c2aa73243a1a6cbb117f70628a6
+FileChecksum: SHA256: c6617962cf1d39217a7e0ebf48ef6242ced71b8cac1327137a817d2b34c3f252
+FileChecksum: SHA512: 52f51e0b80ff561728808bfc3af77a6a87bb3f07ff8d69a069ecae3e5e46bc887ba01636216bd6fa7c15613d2adcba1eea084c238b1b877b7ae7f34edfb1a17b
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mipsx.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95amd64.s
+FileChecksum: SHA1: 7864e69c2cd2a341755b083cfc601fa73423f3ee
+FileChecksum: SHA256: 6b98a13e8375e2c216f49ff3a1d659a91c8cabbef6630653975482c96ae5a15a
+FileChecksum: SHA512: bedf0161dced3abf2529067ed57dadc079fbb1e3d8301b77c792856390d20ea7e4959da80ef8774fd3c160411d8b3c0f317b746e03f156666dd1170f3eee97be
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm.s
+FileChecksum: SHA1: 1a7c6e7d11211628c797fdb2514276d1d33b5c9a
+FileChecksum: SHA256: b7afbb9e79c7bf18533ecfba4a5a262ecdd751a27112d4c8067a0ddaf9fd97a6
+FileChecksum: SHA512: c5c2f1b412f987a4684eaa61803a81c6dcde49751073536aa78594c4530480528ec103df9d39d5c3b463ea646b2a5ee326337aeeb89e2f419ff4a5b2f687d29f
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm64.s
+FileChecksum: SHA1: dff193650ebbc4f472c8b6d4b6161c268c51adb3
+FileChecksum: SHA256: fe2e87297af6da7cfb2a990f15073ecd7563ebe9bb44301bee4fc800b13a5bea
+FileChecksum: SHA512: 193d4f2d6c6ec30a51a305e386d61cef14c82c5f5301da2fee2e5e94b1bc5067aa2607e0975181be3652ca63e2157688962d8fd93f1e2007cd25074905c22a93
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_linux_mips64x.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mips64x.s
+FileChecksum: SHA1: 377dd3ab702b89d470fe7e97843e14e63ee6f201
+FileChecksum: SHA256: c86781934de4281b7dd79f20a133f9664750a70ec1c59f9d8e74b65b70acff14
+FileChecksum: SHA512: 3a4f7ed3386cf7c6af8d666337392f6ee9da67eb20e0692ea4d39bb327b9ab34fba17876b79adf36e96bff5198afa51a3e7196d5c32b2fea143e6ae4b95559d2
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95linuxC95mips64x.s
+FileName: vendor/golang.org/x/sys/unix/asm_netbsd_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95386.s
+FileChecksum: SHA1: 554e5a917252eda65b98a91d36293cd25e1ac5e5
+FileChecksum: SHA256: f8967caefbcff155928a71bce857c7937c680930180ac640bb2033a291b2854f
+FileChecksum: SHA512: 38743746d21587f17a68589673dcc55a84b261d9043aba05cad7b680fd81382b9a923abdfdb29876799b1243a72ceffbd6486a674c8aa86182a63fdf09c2641b
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95netbsdC95386.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95amd64.s
+FileChecksum: SHA1: 48db23caac7b3fbfa807fa13b8b20acbc0752720
+FileChecksum: SHA256: 288b33840bde55db9eadb8ff6af0010a12dfb8da67e16ba0a1cec603d021c5fc
+FileChecksum: SHA512: 783633a8aed0c46cd6ff44ceccd6a4801b55e33cd1e3c71ce11ae056528f91c0e8a827ca0ba9dd266abe143d74a1ca3e0699c6b225f77e3edcaaf4085b357a0d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm.s
+FileChecksum: SHA1: 3bd2292c1d3d01faa7bdd58bd2816b6a765aa1b2
+FileChecksum: SHA256: 859b752e57f3b760bab69342dcfc7494ca32a6c3c984f6c6785c5a57d1c4776d
+FileChecksum: SHA512: 7c4f3d0cee9f87817fbd201bfea3db444aec1230295119be90adee35f457fe4aff8e97bc7d28f54a8d77fb049e586b75c41eb0fd3337f097587a58516d715285
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm64.s
+FileChecksum: SHA1: 2502dadd50ae95bf728d03661a6d7afa00a3019a
+FileChecksum: SHA256: cd9eda8690af6451a801782a1fa1d269804f774e1fcb4cfdc02d15a490d456b2
+FileChecksum: SHA512: 5a11f8a4ee89cb95041f6d6cbaa9c335a522205934dd26b8c0645c174374c09f7003743c4819b061740918914c56a8707b62d8d92adaf063f7b77bc7e4f914d5
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95mips64.s
+FileChecksum: SHA1: 28b381a45b3448196e614692129975ef65097be7
+FileChecksum: SHA256: 6e7a254ed87d7c291631d04b42bf77e81e0697bc6ee45ce7e4e8c9e51c4e4843
+FileChecksum: SHA512: fc81d8f904c5f22a8178549535414dcaa41c516fe185b308e767ccf1174bb34a99a8d70fa06b28afc87fb51394e34df65166b8cae694890ed93c143c4c56a8cc
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95mips64.s
+FileName: vendor/golang.org/x/sys/unix/asm_solaris_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95solarisC95amd64.s
+FileChecksum: SHA1: fe531542ae657ce252b3870202e2fb5c1ff0a7d2
+FileChecksum: SHA256: 937fb73ab93f5d603d81b77a6c8f264a04b721c97fdc75d7dc258d38b1af8354
+FileChecksum: SHA512: 76f55b61f4439c5dc747190ad7cee3d72878bcbe5c8f507a37895bf966107e000d68216c670c9f54462a477257e2f3224e74edae0f775448e5c8f427032db444
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95solarisC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/asm_openbsd_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95386.s
+FileChecksum: SHA1: 4015a8ffa409c8b3036b3db4af9ff294a0a3e920
+FileChecksum: SHA256: 1a0edd13e6b566965004fb17fd9ed7c3d320a985b93ce2caba1716fd4db95cde
+FileChecksum: SHA512: f6a9538a211252e840e3422160dfcce117cff516b8e8a42147b82c5935ceac3bbb079ea3e1f2b05cd1d56279d67d0d709ad81a7907289f54752f0ae6a3e9dfab
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-asmC95openbsdC95386.s
+FileName: vendor/golang.org/x/sys/unix/constants.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-constants.go
+FileChecksum: SHA1: 488679a5c3e2d6b8e98c8710355020321578841e
+FileChecksum: SHA256: a7034e2ae43d6530b8ec28e07d645b918dc747448a1625547c45ae5542cf4f3f
+FileChecksum: SHA512: 910423ce3ffad1d3fe25a5907c120bf2231e0f0500b40ba262fcfb6488dbfbafe46a5f9e083a7fbc55dc94be7e119b7c7b08297617832c27b5f360b972736935
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-constants.go
+FileName: vendor/golang.org/x/sys/unix/dev_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc.go
+FileChecksum: SHA1: 864041bd66883c983cd767eb076212dfd39144e0
+FileChecksum: SHA256: c2923a64bf5bb8c49da291d2f655972d563245d668b7032ea7e09e15e685916f
+FileChecksum: SHA512: bfbc7acc18e5b73f0f5947b5434d31dae2619a95d240f4e4d79687e50c00b8deb47e11e005666a6893e83e5a45074ba86ab6c8ed3470431e19b32acf3b7a50b3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/dev_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc64.go
+FileChecksum: SHA1: bedfee4ecbe9550c9866db2a0d7fea69d60fca5c
+FileChecksum: SHA256: 43fdf5e18ae1da43c73807edff6bfd7d8a75b4af05ba7d7796f49c2c06a4eafc
+FileChecksum: SHA512: 3affcaeaf0a2a3423b6367fa12af8270185ee846b68856b6a8b8a9fe641ca4e19b488d24f95f51f5d023f0505c8582c5dbb26517e39478ace40b05bde51f0b90
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/dev_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95darwin.go
+FileChecksum: SHA1: cd4a999a8357d9cf0bbb8f4c665fbe6379ab0fa7
+FileChecksum: SHA256: 9a0bc8af77b4325bb10b651e00b8f7974cc972d0e5456a370f2c46a56181ada7
+FileChecksum: SHA512: 5748c674bfbc75703ced4b252fa484bd6312d9ea08a0a281f0d0121734827e3cf4a34719e12d40bb10438e3b1a041a7d7b19782d4dc992dc1e7ef07bf6594bdc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95darwin.go
+FileName: vendor/golang.org/x/sys/unix/dev_dragonfly.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95dragonfly.go
+FileChecksum: SHA1: 9788045054bc0ec340d269be047c1467e4f48616
+FileChecksum: SHA256: 125802ffd01c98daddf86bd57960f51f7dadccb15b530c48e6a24f4f1c697fba
+FileChecksum: SHA512: 8ac6dcbc79ab55f00fad358f122c2c7f1d1d157b1a2f527b6d175c22e0388300a1b3d4a368aeff34b8d7e8faaf7cc76c9cc1fc13d97b9ea3ccd99c44f20adbf4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95dragonfly.go
+FileName: vendor/golang.org/x/sys/unix/dev_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95freebsd.go
+FileChecksum: SHA1: ea636a28a95cd1b7bf4fe338c120f1f3ef51b299
+FileChecksum: SHA256: c246eb43233fd2e714c85e84407a084da2823d5a64e61313fd393d34589ef0f3
+FileChecksum: SHA512: 62ececb28ae9b9d57b5d510f5ac0bc254b16ff436c92a098c1d8380d8d6e122130f05b51d1face6a6c02bf722c7461eae74fa6ee78c7cf8685cc780ceab1333f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95freebsd.go
+FileName: vendor/golang.org/x/sys/unix/bluetooth_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-bluetoothC95linux.go
+FileChecksum: SHA1: e6adec1a04e7fd15b0c1afb6c8a8b333a2bf1a01
+FileChecksum: SHA256: 72ce84a68d3647cd34f04e9040861333ac9e9f9ac5b00008d41514c79da664d8
+FileChecksum: SHA512: 649e804c162bfee6207623f09e5cafba94d8062c13b3b66ccfabe971512476fae423f08cb25305968a73913069b8f580afded984b04e9f96c0926042886cc4f0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-bluetoothC95linux.go
+FileName: vendor/golang.org/x/sys/unix/dev_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95linux.go
+FileChecksum: SHA1: 4b604c9aa4a3334b2fc4d4977247f008d62b46b8
+FileChecksum: SHA256: eec381cf025f58965728544dae5df9394d6bebc7e68572e429814c87ee6dd284
+FileChecksum: SHA512: 85e147440039d6456a218f2e886b1d951bc8d90c1c4e8a3e9870a1c6fbd9b9f3bda0efa8fda2b3d5d8f48afa2a80d510de5ca02c5ae096707699d508f078bac9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95linux.go
+FileName: vendor/golang.org/x/sys/unix/dev_netbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95netbsd.go
+FileChecksum: SHA1: fbc9ab1bf67ba7a547bac2f1542f30969106a76d
+FileChecksum: SHA256: f712a720bab3f9598c897c45e389c6666998899b963c05892fc2e12179cf1ca4
+FileChecksum: SHA512: 2b5830179b1cf525f8f702186b5dcec38cf775777e2338fa271a33a75fd78498d3f8279fd6f62b00c3754eed0336ba220e74b533569441c90bcadf8d998650a4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95netbsd.go
+FileName: vendor/golang.org/x/sys/unix/cap_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-capC95freebsd.go
+FileChecksum: SHA1: 312049493c0fb7a251301ce5c53f3306fe05202d
+FileChecksum: SHA256: fae1a8af18386a11fb86bdb212bd64198fe63209524919d5ddbe560d582a4003
+FileChecksum: SHA512: 408ab4af29905031e7e0bd31f61c68dda5a262cc2d2fdacc6cfb96b03a017cbc290db2fd0a086bf85861229af843e3b8d9a939cb3f44549393e3aa1e542b2ddd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-capC95freebsd.go
+FileName: vendor/golang.org/x/sys/unix/dev_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95openbsd.go
+FileChecksum: SHA1: 70c3c3e2720b74b1072d7e96501b7f279d7eefe8
+FileChecksum: SHA256: bc0456ed97d8bb58bed6b4b70959e04215d3393596d92b33a7aa515238349dd1
+FileChecksum: SHA512: 858fe6d4c81635457675042a54ed69a415094ffb70974c7cd31ad741f1b6f4cbf78140cc1592eb09c406c85801abbc517b791681aceafbade2e186ebb9b3b290
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-devC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/endian_little.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95little.go
+FileChecksum: SHA1: 1c73462db0dea25adf65f14cf5d57c178b85ee91
+FileChecksum: SHA256: 880f6589ca1150f3f281817b446a5473bf718863b3619f258ad79fc3dd036fa7
+FileChecksum: SHA512: 98d7c98db033ee8e42b563c15ed2d4992cf5d842d01b95750a4f7b97e1fda0e44b0b0f2c31bc7322bf8cce16de9bd0f938243f0bc12ffd30a9f32a82c5ff4ef1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95little.go
+FileName: vendor/golang.org/x/sys/unix/endian_big.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95big.go
+FileChecksum: SHA1: d86f194d3c9531711743554571d073d75935130c
+FileChecksum: SHA256: 51cdb1eca0b1ef6ab38cc580a74cbc0b2dedda8fde570e204b2158bedd5df611
+FileChecksum: SHA512: 8c9f21d9d67658903e465f331a0d597ca861c4e52ec77a92a26b6102990399531c0cc1f37edbc544c8135b50a998527e84b5f813e7582a94925b90450313b910
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-endianC95big.go
+FileName: vendor/golang.org/x/sys/unix/dirent.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-dirent.go
+FileChecksum: SHA1: 2e115bdf3a5b332c1f112f7863b12edc8b1c79a0
+FileChecksum: SHA256: 026f8a6b47789a6958299b183c8d045fefe7ba08e91879a2e3bbbba9f6812521
+FileChecksum: SHA512: c320b56c895790a7b1ef56e7a14f5648490a18c817245847d180e9b99cd391ad72dec55655995adbe2f4f284ebf3254a733ea91867602df982e916000cbdce03
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-dirent.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95amd64.go
+FileChecksum: SHA1: a74696c1140fee1b7ec3f20c4ee880653e5041de
+FileChecksum: SHA256: 6ae8df82b37d768c3ce9370e460a6d85491c9843479b1ebff22387b6ab00d45a
+FileChecksum: SHA512: bdfd54e4360f04641b1bbe382178a7fdc5f729cc78f4c14c5f8d893b3b0c93e04646edcec83a58470e1e855195c17445565a9fa33c5cfde00a507333acb5c116
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95386.go
+FileChecksum: SHA1: 7c10ef6c8b16f70b1c58a276f7abd99a242e1c16
+FileChecksum: SHA256: 9b3c5ee7d1b4da62d0c18cfa39539fbf4e9e46ce454e1fa69c2e5ae901ec3b52
+FileChecksum: SHA512: e6b1e406f2200a8280605e2c2ee924305728901127a69b9b966bbdf43a85201071fa73ced16b80dd02732de5348ac0dc7661019211e348e0ed6a40cb8183da9b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm.go
+FileChecksum: SHA1: 5043163c236e404d606225d67087a16a1ca62e80
+FileChecksum: SHA256: 06b313cc0ecad484868d8d940a6a2b50ae5bc122f2907fa5cd9bba44e27382fb
+FileChecksum: SHA512: 3e449ee45e8411ad4d8e549c38408d631896bb70c66b293e2298849f39bccd8b5ae97d6a59c2af8543c7bc0c3f0902fe2fcf54d6adb38934b16e9c35c1b322b5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/errors_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm64.go
+FileChecksum: SHA1: 0b19117f6fb831fe33b872b31fc5b9bdae3a3ef0
+FileChecksum: SHA256: 69089e460230321aba299ef9447728f82d91e46328628b3a0280e6f9f2745ada
+FileChecksum: SHA512: 7c4d5fd7e1d557fb10bcc7110343759607024d0270d8ad3739efdd6929c8f41ffa12fdc1691cef1fe1a0ca4b30fc553244aef9c0c21b17eb25a0a4228856f432
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-errorsC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/fcntl.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntl.go
+FileChecksum: SHA1: 85dcffcee808efb9117f2d373a924c3d6dbf5ab9
+FileChecksum: SHA256: 17d765179cdd928346e0588df0f0bb8163e04a2cb1afe894f7dd265e443eb942
+FileChecksum: SHA512: 5fb8143af476555ec64d44ec94770957706933c05e0e760a4652e47cd97e7bc3112d4ed9b630035146fb7356d7a64edeb10f571921f6e813f07742b1794a87bf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntl.go
+FileName: vendor/golang.org/x/sys/unix/fcntl_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95darwin.go
+FileChecksum: SHA1: c7d05583cc7fc0b28952b2d05902e5980dae9642
+FileChecksum: SHA256: fb6aa54ed72a392548bcd7c79a10ce16e9ed70da90492ef13346e2419fa52d3f
+FileChecksum: SHA512: b6708aa340898e5508cc92c06ab0afcfcc661f5e95e219302f0254feb2af468538c05d6a62b9291816a15099ddc09ceb3240fe86356a292232a0881959d19e4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95darwin.go
+FileName: vendor/golang.org/x/sys/unix/env_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-envC95unix.go
+FileChecksum: SHA1: 062cc384f267bd047e8c7949987a0d31b039d089
+FileChecksum: SHA256: 37e409c6745f3634ec41dc174c31fe7948c1250cb9bba2586552883a94d3bc41
+FileChecksum: SHA512: c65c55b73066a695f7cef70e26985ebe01aaa5cdd99226d041f749096f4826505621d4c84cd3e8d7d7c88a17323213461b16b7f85f649f2719d3eedecec15283
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-envC95unix.go
+FileName: vendor/golang.org/x/sys/unix/gccgo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgo.go
+FileChecksum: SHA1: 7e2e3c26705ba8a9d2635f5d4dd3d12bd95cdb03
+FileChecksum: SHA256: 08ebc8019575b659b5cce7af260d0ab79916b3c4de7fd7173421e742b9b67e92
+FileChecksum: SHA512: 1b3531632543500453a10dceb760da3073da7a061ba383d0c8dacc78f30e834b02398018b75dbfbe071af7c983b89d156034502ab580e606ebbba892f4e0fc51
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgo.go
+FileName: vendor/golang.org/x/sys/unix/gccgo_c.c
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95c.c
+FileChecksum: SHA1: 600010f70458d92ee02e382f6880efb8c933e736
+FileChecksum: SHA256: 1ecb71560c25f0a21e90418cd520c00c1005d7dbab5d230930d0e39b3461d152
+FileChecksum: SHA512: df7f7e136bad393990887b4ff7a25433af076f65447143c054ff7a72099492359300fcc4ffd111befd66e9475f29b8739f9b086fdfec99ca153a8cc7d391ac17
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95c.c
+FileName: vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95linuxC95amd64.go
+FileChecksum: SHA1: bcc18e2e7e587c9a052bdaf0952e1cd7249fa761
+FileChecksum: SHA256: 743d504a2e0b8f36ffb9618c184b518c6bf45302f9b01a9d5b269bd22d7aba10
+FileChecksum: SHA512: c882d98584d8f6ddc8bccea0973b10fc94cb1b02ce1d6df693a58be7df3e73b9ace4998a43a1c5ca6024f37dc83d7688bff6ba652cbf3ec72d210a3192e1e609
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-gccgoC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95linuxC9532bit.go
+FileChecksum: SHA1: 143d7af8b5837669c7967cd2fec0c37fef2bb391
+FileChecksum: SHA256: 147c4e14a524b135bff3af48f9fc9899f9b7ec55cde60ab0b3b1002ef4b04c78
+FileChecksum: SHA512: 3568e0437a3d77ee554d6084d9fbf5749c57410ca35a07918527eb21afa9ded326bc641619ab6e2424450b8e0ba8ee98622f0b90aeb6c3331de6ee92deb3a664
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fcntlC95linuxC9532bit.go
+FileName: vendor/golang.org/x/sys/unix/mkall.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkall.sh
+FileChecksum: SHA1: 86b8bf970c1a04a3c8aaf12ebedcda097e18c419
+FileChecksum: SHA256: 87a49acc20f0ea3fe5e464b682021721ca01704da5ccffd25888cd7cadc26cdb
+FileChecksum: SHA512: 4030530337aec68ff7fcf46988803369539870496a3389f9ec1ea35f4701ded815c89c272228c92b69abc23d4c33bac91cef9d9a4456b0437ac74ed289dd0b46
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkall.sh
+FileName: vendor/golang.org/x/sys/unix/mkerrors.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkerrors.sh
+FileChecksum: SHA1: c34252e675cdfd15755d9da840337d0d68565177
+FileChecksum: SHA256: aadb07913935798907d5e39526c2469e5c1b9d90b58e1b9f2f233df21a92f94a
+FileChecksum: SHA512: 9280e776bb5491101dac3957beee52ef9f29506039a40f7eb2437d75251ced2c8989a33e2317400cb0919dcdba8cebf7acb161d251ee8ac396bfe0bb54187382
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-mkerrors.sh
+FileName: vendor/golang.org/x/sys/unix/pagesize_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pagesizeC95unix.go
+FileChecksum: SHA1: c39350d8dfa1674c95b56e4a9dcabb4aa8651123
+FileChecksum: SHA256: dd0516d9bcec4a46829ecf9b5899d7ae1c4dcc0b6de27933ba8dc9278c7856cf
+FileChecksum: SHA512: 9b44c77945dcfe59397ffdf178ae33796d3d4a53a3277aa5cb95b8af2cc7ba0013a6022d4f6e484abf8bb0bb9111f2c85e9e0c4fe281ca02e7111324ccc81292
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pagesizeC95unix.go
+FileName: vendor/golang.org/x/sys/unix/ioctl.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ioctl.go
+FileChecksum: SHA1: f4893a56fe78e2b5e7bcc9fa12e85ad4ab703a55
+FileChecksum: SHA256: fa4b064d1e21c6eedeea55e0ce5431d749cfabab24934fc925af8f14458ec981
+FileChecksum: SHA512: 3cf0c4c2f6f2d4568ce6fef49eb27bdd217ee70f0b39665dc309892a1efe6abdcf39526c6cfcd0712ae85d05801b49610d7219426376c7de700c91662631b2db
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ioctl.go
+FileName: vendor/golang.org/x/sys/unix/fdset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fdset.go
+FileChecksum: SHA1: 44ad1c1a7faafe90c70df362bbd955a6553370b0
+FileChecksum: SHA256: 61a524d60d6052a4bf751740e8a4f8833b0621dfd34573f1d62b9e3fb137df36
+FileChecksum: SHA512: c9519a86ae50dccd50830fe5e06703986577a63941cf3cf6bbadf5add0549e01a629ccae898c002d9f17e7690612b1d280efb54598819d4b813b07e5de3f0ba8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-fdset.go
+FileName: vendor/golang.org/x/sys/unix/race.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race.go
+FileChecksum: SHA1: 548e56645c396aaf011239e1cdb7bcdaf35da091
+FileChecksum: SHA256: 2b7d22204270835d550741a4d1e143d7fcaf7b624070eaf0bc3db43af02db178
+FileChecksum: SHA512: f01ab3068bddda475a0870774bfae1000dd68cc7d3d08fa66c918680004081183751941060d12ff5d8bc98b352dc49444bfb9301eb3c62c42c3e51a68c6487c5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race.go
+FileName: vendor/golang.org/x/sys/unix/race0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race0.go
+FileChecksum: SHA1: 38e01c2e50e5d654eebddc9b92daf4c35ec13fc8
+FileChecksum: SHA256: 32e481eb1663a60e308c7b8273f034cd210cd152ecd085d8e6f0469e59cf9d30
+FileChecksum: SHA512: f9be19097328c04f8f942fa3f293090beaadb56bf63bd5d2c6535b39fb96bc0e1abe26e7437f7705a729c8b9bd6293f2f6b0d5c52ccb2fd829ec19f90b32e180
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-race0.go
+FileName: vendor/golang.org/x/sys/unix/readdirent_getdents.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdents.go
+FileChecksum: SHA1: 3e59386ab2bbf38a364e6387569a0022aad7a1d1
+FileChecksum: SHA256: 076c92911fad7fa2ff9442726354b43bd5bf1a749a99e98c9db83ff4c4cfc7f5
+FileChecksum: SHA512: 5e8883d769242d85438e0885235ebb32ab4930d2ee8c2b95e14c418f8449bb7d3bdafd7113cce3b113fd81021db50b32349079d67144719a02f942e81b801667
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdents.go
+FileName: vendor/golang.org/x/sys/unix/readdirent_getdirentries.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdirentries.go
+FileChecksum: SHA1: 0855d62fe1c20bd4dcd206ff44bd0e09e403e9dc
+FileChecksum: SHA256: 974b03c0069a93097e71ccb20cd947db188e833dc4aa2e5d7e51a6c2b6c88207
+FileChecksum: SHA512: 4df0b88e9ee30dc4782dba494338800c24ea133f720929ce062c4e281f1b18e66dfbbe21e243c2a893c7596751bb42a40cf05cbd5be613ef0d49ad30c30ceffe
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-readdirentC95getdirentries.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95dragonfly.go
+FileChecksum: SHA1: d4e62ac1337a081b85927ce2a1a47742c8b68ad9
+FileChecksum: SHA256: ca6c99e3061644a02a28d20b6b8e6eb4aa50490511528a6b34cf7070f0f44e2c
+FileChecksum: SHA512: 92231bc7ab38194b0bf08a240664d0e2bb377d344ab112922ef70c7616cedb203890a2fd2f757ea41fb1d421904c89b45fa12f78f150186c4b330969b6247c92
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95dragonfly.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95linux.go
+FileChecksum: SHA1: e0ffe46052b8d3d0f4467528480611baa1e01488
+FileChecksum: SHA256: 861f08abbe14e70dbd6c87e4fe88e1fddbfb856f7ae1347dea13bc1db4a729d3
+FileChecksum: SHA512: ac286b2635d26fa44b3c0b13629b31c1417c60c60eb50ed572b6a2be6fbbe834f45e0cd60da7b1e8b2cb8a18bf94809a79a2bea176de1ab997d31a51c6a1c2e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95linux.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unixC95other.go
+FileChecksum: SHA1: 344b8a93ffc00e8e712908cb1a7897055c2804a2
+FileChecksum: SHA256: cc726ed96443897e790197d345780ae253a84a4f99e3f8ead8526e4c2411c757
+FileChecksum: SHA512: 802d4699399b7856fec851dfb36249da2f1dc33c47f96f00fe3b67c78abd4bfaf8c2a5b4914afe14cd06944b41312d66a5606a886b71000f951d5e4555341c72
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unixC95other.go
+FileName: vendor/golang.org/x/sys/unix/str.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-str.go
+FileChecksum: SHA1: 763bd167bfa68c5fb498767be32872ef4908b9d8
+FileChecksum: SHA256: dc743a40166ce093b6051af2e8e2e53d51c519dd19bfaa671418cfc15613733a
+FileChecksum: SHA512: df503f3d02a14467d33658949db720b0cdb2d09628cb87845527601592236eb5647272725e7416cc3fde7d4d635b9401197589a08f123b80d1d4352a8919886a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-str.go
+FileName: vendor/golang.org/x/sys/unix/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscall.go
+FileChecksum: SHA1: 16d9ff6da3a560c96897a317cbdf0cbe6bb35977
+FileChecksum: SHA256: ef58ebd440d9e8d9e21bd48892e0efa2129f8da903a876ee64376f6a1f0782b0
+FileChecksum: SHA512: 26c72880f00aec994d5543db60384313f8c119c019518d91e000f7dff241c23cfb3097282621cdb5de39d908bbb0b9b53a7db85de444a772af0baec128e73bbd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscall.go
+FileName: vendor/golang.org/x/sys/unix/pledge_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pledgeC95openbsd.go
+FileChecksum: SHA1: e4eec60aac54c23a52a360faf8bf577e93dbae94
+FileChecksum: SHA256: 24a7d5dda838995f3423b131dc6d23c35e6377f6351141437e0e52655623734c
+FileChecksum: SHA512: 581f9d5187c46c280541e0852850950153a0f49d00f825d32e21af754a3984ae174305bcf659ae6e92ba31ee5ea920861c4e7163e5c0ed4eb3f6f9c1bf2fac27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-pledgeC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc.go
+FileChecksum: SHA1: 3a111fd8546adb98eaf4f76993a3eb7842823442
+FileChecksum: SHA256: 8b11c4d356fa50c8492661d2e6724d7abc72733bf72c6c9f91e6ec760a4ede56
+FileChecksum: SHA512: c84fd208f74675017b7555e972f5e6b8307a56f55f8034f7cd782f56168202dc9bf09ca26519c030dcb0af653e270887e8f0aab1aebc0b1ef14e35824a16d128
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc64.go
+FileChecksum: SHA1: c65f97e9443e8c33f2a77e4a51489096bcae6ef9
+FileChecksum: SHA256: 7217223ab97c825fb2c1ce77ec96528166999b8dcf5ef88a3a678bdf05809bc8
+FileChecksum: SHA512: a3d816f84d52b68109711921e0305e9f125afacae86436e4358e9f8cc9542e8ec24c1e18e3f62a2aa208467617ef507081f19b902039914124bbdc84cbe0163a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/sockcmsg_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unix.go
+FileChecksum: SHA1: 632179e929b7a86a2c74543c3dff4c17a6019ebd
+FileChecksum: SHA256: a9e9828680bea53c9ac39a1eec400ee2fc320aea0ca4d12991eba833341f55a3
+FileChecksum: SHA512: e5ef8f610a3d7c55b45525f6c0efcae268dfe72f8785a92bbfb4553cc15deb79f374320a3d88a2f4e99b6bade95b28852fa5818a140899c04ca5396a9b9f9c0a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-sockcmsgC95unix.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin.1_12.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9512.go
+FileChecksum: SHA1: 605061cad60b6cefb7aeff7ee0ee24f4229b8742
+FileChecksum: SHA256: 8810e189d0f76fd6635f777440c8ab0779427b8084d9946972ca95a55bdd31a9
+FileChecksum: SHA512: 3a8e578aca55b4d78b0059c304d412d989294c33f4d8fb825bb5b5aa9cd57f8dc22bc19b4daf1d1fd66bc1042d44d1f4d56b30c6ef7e200037e10d0858e13e95
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9512.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9513.go
+FileChecksum: SHA1: 67375179b5ca72289da188ec3f37c32216ca29a6
+FileChecksum: SHA256: 9e14f7b3fa5ab532da36e9a5650a98b29b1ef6b5882232d462f8a994a5f08f10
+FileChecksum: SHA512: 4d52fade0adcdc4f71c4a41c1dc78e43084920631ec282d08f57b34e640f4f85b09dfcd2c9d8c4ae5c34f5d7e6a9f087e5784ed7d85cc141caf79d214b6e55ce
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/syscall_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95bsd.go
+FileChecksum: SHA1: a7555d60c1794132836520c1139c2b7797002158
+FileChecksum: SHA256: d233b5059c0c0d1a677bec9602a4fbf11024507b439b4b4a14f8923ada2ce436
+FileChecksum: SHA512: 995ef08967ea6da00c68613747928fa9be15603004de642e69953bf30729a44c9f03ab05304ef2cbf483e539d2176498baedc4101e89980873a0e775c0b5e2a2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95bsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_aix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aix.go
+FileChecksum: SHA1: 11ecf33be76789c29f5a431c4870dbc08a684e40
+FileChecksum: SHA256: 2d180618f5d4cd489c64240d61c414bd36aca0e60feef1d2aaa9a198051f76ad
+FileChecksum: SHA512: ac83bad7b017b7d5751f72d8d9bd1e35c80ed3717a4c2af52d4a8a57ded6b0b8468caeaf2e6fed5a52fa87eb69104934b3ceaf82c6f97eac454fe395aa37c27d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95aix.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95386.go
+FileChecksum: SHA1: 83412cb04bd541c9345f6b7ae4d16091ea863612
+FileChecksum: SHA256: d9e94b4e92803ad2bdab4fa100c1f68154fbbe817d020a9a8b05c307e97bd52e
+FileChecksum: SHA512: 8dc3f0df7bb908eece901cf6bff6b130895e1f1f15ac635449407a4895bde9ddbd09092a6ae533de74ddc94f7f05f4ad2e97f00ef520c65e0d0a2d62150a59ec
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95amd64.go
+FileChecksum: SHA1: 9f1d464e20ddad6c1e50d8c5ed9d6486279b1f08
+FileChecksum: SHA256: 2a5273df240ddc84fcfddaf1c0cc376d4afd2e39ebbeb0d9207f5ceb59c38e10
+FileChecksum: SHA512: ffb02de24a9a2953d78a65a008f88e47f2140ebb592eaaa477760aaa263d69f65290c1bd21c1c2e4d09a92ae9360f457b919f20042630922cabee3b1e32ad169
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm.go
+FileChecksum: SHA1: b9c611ccf6314c92cc6fe5a08c8b9f80ce535355
+FileChecksum: SHA256: 434f62b018bdaee93dc7b21c9a1e914e316af5207e8242f987e2c7824cbd9a9b
+FileChecksum: SHA512: 1b296f64e3cf288714a5cde2aa53f3615408c63be74a05a88abb8e5f192d7c97a7e0184e1c5a9da76c45e33517752fa64c5dc662c2460b67ef0748856a425971
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm64.go
+FileChecksum: SHA1: 963b6429afcf8e22e67f0231ee7e62af90c5207b
+FileChecksum: SHA256: 6581e2c480f58f5f736c03d32b9816c613ca758c107437868ac4e0732353e14f
+FileChecksum: SHA512: 40461d164da2f69831cc60a46e8295137746d343d69bc268d6d608bf0eca23ef82c2d63df96aba2526fbf35a2a1a2ae4699d2c094999e4b79ca8bbd0d7897ab0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95libSystem.go
+FileChecksum: SHA1: 30376a7bd4afe33a19dadc2a2053a50983959798
+FileChecksum: SHA256: 4193284440dca25ea755489ad186d69b956661efca75c5503d2d73ea118eb179
+FileChecksum: SHA512: 77095cdca4366d8a2913cd6326b1ee8d1afc8e61e3df638f95df6e51c6e2b7fbdd3616c11ae717c8fc87a0348bd73e08c275c7b89e88d5f53ec257b1892a9b6d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwinC95libSystem.go
+FileName: vendor/golang.org/x/sys/unix/syscall_darwin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.go
+FileChecksum: SHA1: 353d1ee8a7bc333f72e9bedaed84622cde0f693a
+FileChecksum: SHA256: 7f91530645d67bd70c6679ebbd1cb3899ee9488779a5d24ad9b4b2849b2bf6c6
+FileChecksum: SHA512: ee19caf962cd524454a0b357048b1eaed8eb6916128112891b88514c6b63caed2b1e1f0d80eb9d4b28e0c07d3b626c16912458b1c547b4eac620ca6a90a68470
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95darwin.go
+FileName: vendor/golang.org/x/sys/unix/syscall_dragonfly.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonfly.go
+FileChecksum: SHA1: 13fd8b447d15b753da502b6c96183b1c527dd394
+FileChecksum: SHA256: cda6d3d6ee134a5f40360597eb2987e6805e4343f236f108c431234ed708d07b
+FileChecksum: SHA512: 242fcbe88ecf7b35ffeff8ce8096f27879fb17b5ae862ba52f988ddad4b6f9a9f19fb675928161d9e891a5be2f0c9122dbca71934fafd636fbb2bf972d678aac
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonfly.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95386.go
+FileChecksum: SHA1: 465dbb548e941e9eb36115f01ce4d7de5059daf3
+FileChecksum: SHA256: 706a82892440836f15cc9d930666e617487c8cf332716abf33df00fec46986f9
+FileChecksum: SHA512: 556b14853bebca620a84ed12c1ed3df419e6bfcea6e069f2a2aa6bd4a525e411446c3d43a9a54f6f816c4c116d880e6702bc3a55622b85d309cb2b57b52bebb5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsd.go
+FileChecksum: SHA1: 17d5ac14aef8e966b5ce451b88ea4aa4907a616a
+FileChecksum: SHA256: 1299975fe5ca72d7b7cbd4222ebd7b84a1b317660655e14515b022110fd3926b
+FileChecksum: SHA512: fae61a1547b1ef3fd35ce02cc2eec79a14c1ba47a1b4f7659e2e2efcf08ca9a3b3214bd6cef66264971ab06d69c890953b125c424ee8306782fcc78829ecc424
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95amd64.go
+FileChecksum: SHA1: 018774ab38aed91ff4df385dc97d134122603036
+FileChecksum: SHA256: 9d38b8e300ae1f28420f842d969f2d4e742fe315bdf87e892e2923cafed20159
+FileChecksum: SHA512: 4f31766250ca53f1fcaf69838552078dc08739fdd89b0cd95d5c620fad3811daf1c941d63a2c703c4dd8b219e8eddf0616d285a62da3c4a9dda54f61cf568843
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm.go
+FileChecksum: SHA1: d112fcf6979ab863d9df25912c26c1847796039c
+FileChecksum: SHA256: 9da72e5fcd95c4bfe37ec06348185b69ca28c9cd313f0da6b3f1e29a701003da
+FileChecksum: SHA512: 4ea9766653f33109057202a46a6c84d096b36c26a739ec67b3e0f861e32a828f0ac7e37abf3677f8b7826990d2b0476944eb77ebffdf5ba45fa6299c54bf3f53
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonflyC95amd64.go
+FileChecksum: SHA1: 977100fd35b913471fa892144dca3ff8a626005a
+FileChecksum: SHA256: 9eef1978aa056c3270d4074c486616003a12cd031e0ac29033ff7b19d63a2f91
+FileChecksum: SHA512: e06f595994a73e8ae3b22e844a8aec6574758ec83e47a662cde3708ad092fa5f91fafff6db63a3f7c518b0cbad641c95b3a0b21d2d43371933b7ac62b54dc348
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linux.go
+FileChecksum: SHA1: 7f45467c1f02374431d5c4ed929e8fdd0b5f64b8
+FileChecksum: SHA256: 1897f2d9b61469afdd16bc3cf86c3bf193abdcdde8e5a309ca01273ad9e573c7
+FileChecksum: SHA512: 73e9155f995c43342e12fb8dcf75f2ae7f0be2a465aed2f1316c3c5f33047ee7aae16763a4ea3b90d2a38abadad3fb289b338bcf0cde1329677dba0931c1de0a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linux.go
+FileName: vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm64.go
+FileChecksum: SHA1: 0d12794a00065ed02003b4b5ae989c62fde4ea16
+FileChecksum: SHA256: 278d66e92a4bf6bc043bdedd2944fec7785b67052aee42faa208b14a1ff4142a
+FileChecksum: SHA512: 1734944947325fc6f22efc86ab70fc44ef46f1107cc46370138d1ecabb3b8bee8ddc136244cc83c49436dcf09f5e24951a6654b90ee4fd120a0fe10ad45d0d20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95386.go
+FileChecksum: SHA1: 816025695ee1e06d3285cfa3ba3ef92e6388e2e7
+FileChecksum: SHA256: 3b2cd008271268c08b80f9677f432834c6cd18f2dc894dda3162350c72623db2
+FileChecksum: SHA512: 2bd1e29752f18817cd7c019457ba13bc322b0d47be747d9f2457a0e702fa082772ca7291e914744995c99e034ec571731a3527fa125ee10a9c5032d2866e4493
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_illumos.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95illumos.go
+FileChecksum: SHA1: 19363a4031f2bb5aa616e6459413aafb1ad99351
+FileChecksum: SHA256: 9077b00dc15f875721082d8a66f315a2a00169bec761193d259b07c68a1f1c13
+FileChecksum: SHA512: bcad2468a12715922d3be20eea62758ef02e449cfb8f9f3cc56d319a7240401b748cd2de42cb2aacca16a84b26f7b69a417d848a7d2aa1352e57b5049b3f956d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95illumos.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64.go
+FileChecksum: SHA1: 24eeaf5b1891e8a1333e13921b0664a815a49d2d
+FileChecksum: SHA256: a8761ecafe777e240bdf133ead9b3d5d1dc742e30e9d166137cd561b036cfcfe
+FileChecksum: SHA512: 0e189265c8e76cd5fcf65ae09237e5bb35785293e150fcf90167ed7de26655a0fc0614e0814c4b381a1a3bbd68d985465576ee0b093ec2023d4b1e7aa716d53b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64C95gc.go
+FileChecksum: SHA1: 8fbbd078955bfb52e3f77c75efe1fae22245e3ab
+FileChecksum: SHA256: acfa996df65a4678554d600f33b633b33dc1e97ebc236b36c5baa106dad23ab3
+FileChecksum: SHA512: 0d791b0392affba5ce837d115ecfc1c9321a6dd322e4c99cc674e1714101f773cffadc5d3c15c504f95670a697d7e19d50a703f2c081992f56cf72c3323cb63e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95amd64C95gc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm.go
+FileChecksum: SHA1: ffc411ad15da183e0fe5e89580fa7f2d6bbe82dd
+FileChecksum: SHA256: ec8dec6e289b27e9f43c466c0cf9bbbccffe576eb6b17751c3ee0519c52db221
+FileChecksum: SHA512: b4795759048f5ae02e292d3541420f10d43247053ebdc67f43973f54d14394f3c0cb1080108ea4538c0ff079a44150257d066e309dd00b3e22c82b0b012dbc4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95386.go
+FileChecksum: SHA1: ebde61dcb6a2b92c34050040769d3fe80f56750b
+FileChecksum: SHA256: a38e03535d1027588168652ce2e86fff9f96bbc9889cc617a1d93768350578e8
+FileChecksum: SHA512: 5d9f08e996488fe8877853c4b53788df82f0df16f5a415dc74f1c50fb7a8d8e284e56da07b4d53e2aa408b292c09db0d5db51f1f6345c164d2ddbb7d6a6e602d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gc.go
+FileChecksum: SHA1: e5be85106fc5e2d5a201aba7f93173c46b0923d4
+FileChecksum: SHA256: ac6983bdbf3fad175a5b562b1c9937be5a84c79acd002ae0f4640df34cc6c39a
+FileChecksum: SHA512: 4b18bf091bf3bdc55ba2f75f85609698c26359419dfa06432717181a718924121e4a2a4754be9ba7d58f9b6d86e9b820ad22708d26d6016bd9ee7fbe14a08874
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95386.go
+FileChecksum: SHA1: c5e6d9cdabaeb20506c1820a8b07825fd1bf26e3
+FileChecksum: SHA256: 2911ddba99bc64de127a935f11800346f1c2c985d6f32dee903fa31204efc614
+FileChecksum: SHA512: b96681d76ed468cf00e738ac94c656be95f6ae2eba3c105ecbca55f8b87de7c48e4a8ae95005ac73c4d9b273a40fa318468c1e2ad1a3b0aee13eb1bdaa81a4bf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95arm.go
+FileChecksum: SHA1: d2284a850d9096be0e1072cde10880c365f645aa
+FileChecksum: SHA256: 260633a1233cbfc7920b046ae90f8efda6a380c16e85703c199e4b3b4306c40f
+FileChecksum: SHA512: 2759d06ae46344af271767098b2eb265471f73895baf6ed1412114d1ad88d695e7be25af964f4ccddbf444740f2133c3ca01e35f52516400cb57f7fa30db2939
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gccgoC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mips64x.go
+FileChecksum: SHA1: a38d5166612f9cad3cd6165d5193aa4667c4a3f5
+FileChecksum: SHA256: fb5a8f58a63b25b23ac03f97a3fc4ec6eaa9ffa771ce7745eb7251dd0ad7cf48
+FileChecksum: SHA512: d3ecb9415f366f9f6181fd42a38ff41cd8d24595582263d3caa999acb583cf01f3b3729f0d0f3e65a459842265e5a9a0c1d21214b5531ecb56f7fde6c064c2d5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mips64x.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm64.go
+FileChecksum: SHA1: 520877115dcc25c41b09cd36bd6631f09194ad0e
+FileChecksum: SHA256: 0f763ae504ea6daf5915f32123c6b5ad11d646176d1b9d937665d1e0046d2348
+FileChecksum: SHA512: a22a2b889bbb159f5a9fec4a1673e1db0f023b776f4a36b82623829f17da174c595e01c24ed59204e1bdbb004e064758a63bf795fc30f7267c62a167be804885
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95ppc64x.go
+FileChecksum: SHA1: 8fd42a5a75d4dfac3855c9d31a8ef7bc1a6cf8e2
+FileChecksum: SHA256: 8eda89fbf80ea0667250f75d600f469b88c4560803f58aede2294eaaca5ec580
+FileChecksum: SHA512: 8e2164f3662df3727533128673719b7bf83d9238deb799dd6940409f69c4b1c593be3f03fd26b266ca413298012a26f2987032bf2b5e2f098f85bbc8c32c3ae1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95ppc64x.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mipsx.go
+FileChecksum: SHA1: a7320ddac5d4a38bae5b2085df8eba1669bbf193
+FileChecksum: SHA256: 1daddeb97550f382ba85a307e7f9e84e647eb3db54d0f73ff7b10ef2ee76ac59
+FileChecksum: SHA512: 126996c58c30b2654de4be24d0a01da2911ee803a0215656700d9ff4dabff767b26c85fe4dbb6a0c00d9bf5a04f11bdf5f51046b57ed159b7e003cebf327a04d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95mipsx.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95riscv64.go
+FileChecksum: SHA1: 760604fcfd1a68a754e50eea97a550bfa3b81173
+FileChecksum: SHA256: e01dd7cd984665a9dddd690c3557dbe5abc650672293ef8b608cce70323623e2
+FileChecksum: SHA512: 6b2cc4bcfa354f92213af3fd55e2d2d58cfcf32a28d5d758f10c8cd9b8a481cb3470373b458fad3f95bcf9b8e236d915a8faf6c45c5448a4bcea9e25c7b8ef82
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95s390x.go
+FileChecksum: SHA1: 3c0ff99ee5b117744365d525728efb705b5e7a29
+FileChecksum: SHA256: 764dc058e7faa432462210702228ef8552fa2b629131d72d113a755a7f3a4b02
+FileChecksum: SHA512: 094005a637ccb2ad74b8724a15f6cfa4320debb38915ba89630e1861e896a59df0471e525c2197aa55cbab2d80b8e5dca4c0358aba82d514600b39af89dd4858
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95arm.go
+FileChecksum: SHA1: 64b80869dd4f709810ddae83a08101c32619e687
+FileChecksum: SHA256: b87ea23218096c788148a27eb61dcdd5cc675bc4ed5896687a2c7c60e1016c29
+FileChecksum: SHA512: 2378a84e51f5164995bc6126317d1a142b8ab2546a517243d3c87b443e09736ce5a519789e44ff628b68872ca0f83c3c5e55240254ff61df795d3c94978e6072
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95gcC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95386.go
+FileChecksum: SHA1: d166e26e009ea3985d7b23a4b550ff201aad0cab
+FileChecksum: SHA256: ffc1bbc48e74fe2325c69f1bea951dd9b112e1879e8fd4d3d889a96b1d8bc974
+FileChecksum: SHA512: 03a993811deb8621850b7a981f382fddf3fbbbe3f861ed525e80cf3a1125b06f5ba79dcab641f8a596178717429a98c0f767e72b26a9f928e8e3d06de62ca916
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsd.go
+FileChecksum: SHA1: 58198d34a98ab6d9ad6b0f2f320d334ebb8ea68a
+FileChecksum: SHA256: 1a278b55bd122b48ff874cc4e544cd263f73a1c11b26c3892785469741ce8f4b
+FileChecksum: SHA512: 1e7de4d68cbb2afd15366cb073f6f2f384eaffdbee8f8950053d0256843b67ddc8b731adeb8064010e34d5a2161dc4becda0fa2640dc68af8e36247c2efecc5e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95amd64.go
+FileChecksum: SHA1: cf1e6d9bf14d67755796ce409fc0208d14337eda
+FileChecksum: SHA256: 04ff6110b1b9c4bfcc54db9e260b9c7d0e9ad5026c5e73a0c75a5a41d0004f74
+FileChecksum: SHA512: 7ad0d8a6258af0a38c54a3c2ea40c24b4f57913b66b05ca62b80990b3c712145da9f9f57de7374ab3bc4b1264921521d2e7232af2b802b555b3927adfe88724f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm64.go
+FileChecksum: SHA1: 4b73255deabdc3f2e00773cb310a02ada37b89b8
+FileChecksum: SHA256: 8407debf792390edf14e6cc52fb8604fbf1c65129bd3ffae4c7afba6a790aafa
+FileChecksum: SHA512: 1dc862e6c9b9771e60a86e83469cfe59f5328c20107bb18d968972471036944449f59de26ec3759471c8d98634c6ad10a4edc71008ce615395cd699fc9ae3a2d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95sparc64.go
+FileChecksum: SHA1: 54a3c66552917d5693115d09f8a3717c8467edae
+FileChecksum: SHA256: 8d12230a44b6c6e9f5da4ebbd91bedc38166cfad566cfbbb65abe727b6bb541d
+FileChecksum: SHA512: d75340b0db406bf8166c7bf4ce58ee561ac7faa59c7b5b9a938e5932d25aed82da51f4c5d64af6256e0b73098cc755e928bb255e4a0436660322b47cb2109c29
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95386.go
+FileChecksum: SHA1: 5f84dbd1377a720cbd38db045076d34cdea49427
+FileChecksum: SHA256: 7337cc3535052788228a2e9d73f489d36e67df1dbc95823489cf714e05b8086b
+FileChecksum: SHA512: 646111293cabdcb40f5ac48e696c8a381cb6801831896b422613678cf13fd081824a0009a061e74471de16fbcfe7c6acc79d464a222c33242aec4f75663e8751
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm.go
+FileChecksum: SHA1: 0a5b69e30483e4b360522fe4dd84f60630e7a943
+FileChecksum: SHA256: 98a1dc68f38a4629b99973a7c9675a8a58744a5a9b672ea6d3acdc0b277487f2
+FileChecksum: SHA512: 7e9678704cdc64626e0250ec6eed77bafb0bde98465781acfafcb93f4661ffe74576bc84b57f8bd2ee3cf4970854497346186d5dd7cf41c1f1374ed9358a4ece
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95amd64.go
+FileChecksum: SHA1: 0aefc30e1c9fecf5a1fdc896000a305737128a8a
+FileChecksum: SHA256: ba3cb3e3bb137312575149617c1e0f7e593ac2a31edb2b749897306df1b1a9a4
+FileChecksum: SHA512: 15a1c3cd44660815b9cae833b791950ee94965e7bc3047dfc5341a0559c99874dc47e0ebe88f361fe23885c6549a8401bd422cd68121dca07ba2e045c0523bb6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm.go
+FileChecksum: SHA1: 95819d1fc2bbc6d322c458079ce0bf95b1b35a1f
+FileChecksum: SHA256: 80496e2f494a31d8777f1f00a109b353b82830bd7532391c8f603c4e515bfff9
+FileChecksum: SHA512: 03e2dff0a09a523c211ea918c1297c411cce549697d4c119bde1a02da31be38e9d9a5075bf544be97bd07517b1c6b9d2db1d95a7662a8ad4b78aae5b2fea147f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm64.go
+FileChecksum: SHA1: 0dde57be71a47e184694e7458617e924bee28896
+FileChecksum: SHA256: b8a8c5142a4ba81447d0e1ccd5695983c773976339cc24a05edc8deb0e677dfb
+FileChecksum: SHA512: fae90df60bc153dd7f69a6c22220ad349f26b98a41ee0063cb6ea2ab6cbd8a0456151b49dc2b971cbb3d5e0d7d4507c89f52a52a73d6d16b37a2d80370410d31
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95mips64.go
+FileChecksum: SHA1: 8c3f2d3d9353f4dd75bead3c20b8dd3df0374b0a
+FileChecksum: SHA256: 3c60d607fa618e7dbee11c16b264c588c0350333959426cc5e83a495eb46021a
+FileChecksum: SHA512: 59b82811a15613d4be25980b71e9985edf135bcca930b4b3a83f0eb509d65bfd894eafeaf0101b1431a9d24a1e7aa20e1a82fd50ea88ffb7c852bbc46c863075
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solarisC95amd64.go
+FileChecksum: SHA1: fa72f7eb25b79e543f2773d3fde389d1576a1635
+FileChecksum: SHA256: d7852e853d2ef21097ab8793ab070d74625f0f6d53e4caed0ab3eb7276aec779
+FileChecksum: SHA512: 02fece9496abeff07778b18f8ca30aadc964c558b438ff732345cc049c6debb4d35672ab57bbf021682c1d01d2aa4f292a2b1da099590954be4f08cdf248ae3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/syscall_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsd.go
+FileChecksum: SHA1: 4940770ca4f4973d71b0a409e5fbc1f2f8ce8c8d
+FileChecksum: SHA256: 17b426c5e69641bce461a321418f297e66cc0d3267538d8ada92beea8a54a0c2
+FileChecksum: SHA512: 5a30fc8573e4411ac3c5f874775b8203caa8a552cbcb6d6628ada17209c27fb6f7216914323cc735e0e342fc979b8ca57921d7a07288fb199191388cdc6f3030
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_unix_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gc.go
+FileChecksum: SHA1: e59f40732c5f5640f6313a4710be78c783672797
+FileChecksum: SHA256: 8d9b9aeacc89999be53bd922b54c2095d3dfb21ca2b03c40a912b778dd1fa582
+FileChecksum: SHA512: 69ffebc5271376be519f35348d1062486e4fb64e22091d1a04e59661ada472509e6b48bc9bf7603ca964326a89cca0d08d3a3352c96209a6121f8dfc034be0b9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gc.go
+FileName: vendor/golang.org/x/sys/unix/syscall_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solaris.go
+FileChecksum: SHA1: 374224cb8e3d6ba29e2ee1d848843da00cd73877
+FileChecksum: SHA256: 1494e217d5082f928662361f564ca3e0759106c48f347834f18692081e998abc
+FileChecksum: SHA512: dbd8dddf9bad2aee4fc2feb6126aa1c48bf58a3980ecf54ad77ea7389b12d78e9d58166c0c952fe1a26f4f20b059db3be2838782edc580b4ef68031f87f9eb80
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95solaris.go
+FileName: vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gcC95ppc64x.go
+FileChecksum: SHA1: 87d86d4d9a28030192e6c842af755d9d27f00517
+FileChecksum: SHA256: 01555b4b42af846b43b12f880f1885b76225c4b8cfdf23d1a15c1b242bd8d613
+FileChecksum: SHA512: 9097d418ac8db447faf3c0a90d64faaa91f160a83ac12158115844cc8949d68fb4baf88aaf806bbd407c13c4f37ab0b1a887bcd7889aee544c8b44f64cb5817d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unixC95gcC95ppc64x.go
+FileName: vendor/golang.org/x/sys/unix/timestruct.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-timestruct.go
+FileChecksum: SHA1: 7c4795823e32dec99f175bce1705ef03fb9ec612
+FileChecksum: SHA256: c66825e94bff118443361c76775cd3427c707d435ad70cc75269d29cbe409d9c
+FileChecksum: SHA512: 9ad1dee2e64b78d3bb6114401b6d83973235e6ebffca0d0079d5058e97526fb2978074beccdcbf7655e3ad14ca82be9d5afe88a344cca3a8d50503a97b1f53dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-timestruct.go
+FileName: vendor/golang.org/x/sys/unix/xattr_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-xattrC95bsd.go
+FileChecksum: SHA1: 7d8a5f00e8c963d60d397834ed7e84ee5e2b1e73
+FileChecksum: SHA256: ab64bc91c5768c35b52f04ad5040befaac5da6353253ec1069e7da06430649e2
+FileChecksum: SHA512: f4ae6016b0ef8d8ee5e7ef3637dbeb2ad61ff522c1d11fa0dab1ad99bfeacb1ba737b3447c49ba88a02c6dda52ebde5b6a11b9cb5e43bd5a453e03e06d57804a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-xattrC95bsd.go
+FileName: vendor/golang.org/x/sys/unix/syscall_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unix.go
+FileChecksum: SHA1: 50ae21fa513544e83610319c91669405b69d883c
+FileChecksum: SHA256: 7a04af13866e63ae81d390ff0f3a9fed83ce94f7efde538e0962e3542abe7a5b
+FileChecksum: SHA512: 0b2ca336b531390fb2b73080dec57fef021b757f345b25b4115fe012ba726ba008ef594e2033e4c0a715edcd4dda044c6d2d179ba7bf84c6c02ba5d9f0ac5225
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-syscallC95unix.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc64.go
+FileChecksum: SHA1: cffc00ed232c6cc9442cb64d0c819f318b51db94
+FileChecksum: SHA256: d0de1a36136e7669a5671e6621cc6448a48e953ee03eabb7b2a8bb2bdaa0d852
+FileChecksum: SHA512: 9f0454624e2e26890d1509c524331aa6c33b33e66fc52fdb1bb524defad8e1aed234e5f0b0eb693b92e75593e3c1fb26683f64ebd460124971ec26c241ce0e3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/unveil_openbsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-unveilC95openbsd.go
+FileChecksum: SHA1: 391a0e9d583279380458e846cdc0e731592814e0
+FileChecksum: SHA256: e3c34fddb424af5d9e25558671914cfa3b592b42fef42f94ee8f1ec1cd586770
+FileChecksum: SHA512: ed71235b9668c29d71af838dbd89fbc02670e9bfa2f52d13f2ab4c04897b3f20ab01067a0d3953be766ce93bec1a6eb4af6a25b875ddd4e2ba6c828fd4bf3086
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-unveilC95openbsd.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95amd64.go
+FileChecksum: SHA1: dd06523f4301a8f283b1308a258f60a6ad08d956
+FileChecksum: SHA256: 041f33845813ddca0080daa57a58fffe10b43d5a0637f9567bc0547780a9483d
+FileChecksum: SHA512: 6117340ba93cf481a676ea5917720c11c40004683be6f050037cbb0aa08c0d523b700cadd2e7cf7bb19b136c02e21ca537bd2bbc1e9cf612eadf653baed259c5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95386.go
+FileChecksum: SHA1: 9bdb074c5488e2acd30b92c92a98b79881c74ec6
+FileChecksum: SHA256: dce27f4c80e8379c62d6ed94b3b6fb158b706e1247a784c4b5a810403d806d4e
+FileChecksum: SHA512: fce11d1c45488dfccf2908436563a44c2f9bbead381000ab1c60b5fb65a6a16c3274b8400ae8dfa11de940de0c2939838d00c008ba82d0f0d948e7a8961b08a0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc.go
+FileChecksum: SHA1: b5ac1a8eef0daff19e118cc6a9ec0faa5265778b
+FileChecksum: SHA256: 6af9ab5b66801d9aef539f4d4bd6ea043da344d39cc100307e44f59278a53fa8
+FileChecksum: SHA512: 00bca41bcb5c86fdf5baae83d661d8bd75d4e277a043d7940e0efad11171346f0793076751368cf46263eaf1624d5a11a2f3ae8d067932c697c2a5a6a8c328cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm64.go
+FileChecksum: SHA1: 60b2ad1625e40e73fbefab755efbe7263df06a65
+FileChecksum: SHA256: 033e24b7f69de1994c5b8d27eb77e58ee22862431a689282506ece8d3400b30b
+FileChecksum: SHA512: 8649ef02eaab211dec22c54e9cf58f62f38d8d81b7393a22b0c30c7eb4cedbfa38ce5eb4e2b190f3970e20c87b6a4e70b918cc369ba50e2afe63e80a19f108f6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95dragonflyC95amd64.go
+FileChecksum: SHA1: 7a780c2ea8a193b8f9366de260b26aeb6413819d
+FileChecksum: SHA256: abc38443f1763edaf06a5e74377a0d0fe3a7c8cab09e02d4480fb837fc2b7bdb
+FileChecksum: SHA512: 5c729984453080a52bff54720adeb9aafcf976f0dcf21e91aab69a1b1d4a1c7b58f8de8aac05faf1c339541f032b76e14fd869c300cd1098f8db2aba8bebc2f9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm.go
+FileChecksum: SHA1: 73d2aa36295cc8b0e4503dafcc13a662df14b47e
+FileChecksum: SHA256: 3cf62e25dfc6f0af3e80b8e61a6baf01b12cd31791f0abaa05bf4a0c44310b37
+FileChecksum: SHA512: c6ccc6678446567ddd590e312cf9d948ff34aa467b2677ed5e22fcee1abcefef99b7a9e0db2397d0a462f3ae72014c83cf43109b2ee411dc47a38947bd7bff58
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm.go
+FileChecksum: SHA1: ad012f47fcfa94efbba8e6c827812da8275247c8
+FileChecksum: SHA256: 6022aab01ddb54639c302116b592e0502de44d816ab912e9736fd81b89ca503a
+FileChecksum: SHA512: f1fefcb03ae59f705c5e8e2799214daae265899e3bfe0d0de5a4f50ebe57bd6bd437f564087d2a5721157b2f34428d0694c6051cc1a11d48a3874c87f73fd1eb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95amd64.go
+FileChecksum: SHA1: e99bf29575b8fe6cc44621e8ba6e94194867d80a
+FileChecksum: SHA256: c2286d4de65abf28f2a1a87ea2e451fe30a53afc27d4ecaeec306a38e9615e04
+FileChecksum: SHA512: e57f956499b817dabcb2afef8abece6f704021678d20c927b1897f384f223f9e9b13ef968706589cd216c43a1c5e6da1fb9488d076682eafc3707c12cf9e837e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95386.go
+FileChecksum: SHA1: ea9ae8fd61032cfbefce65f36eff54a1d6bacfc5
+FileChecksum: SHA256: db34ce504c3c0e21ca290370d263bb31051cd64300b160b6e310709892064bd8
+FileChecksum: SHA512: 8b3081c0250e8576a74baf4719c2a78f73ed4a21ca600e9165132f7ce76fa6754e9e08a763889ab7eb012ad3b764481d9afbfc20c58f17138a07ee88ff14fc8e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm64.go
+FileChecksum: SHA1: f3cc6ec25874055518358739e1a164dc679f8232
+FileChecksum: SHA256: f3ae277cdbc4df7a3c0b7f0ad3e9ebf71be66979ab470fa25e421faa029b5dee
+FileChecksum: SHA512: 4576b9d17f15c81419cf19995bcc2a798784a9674c2a2666b3b49b8346cb15abacdccb3f7011d3f3a7d071969ababa84ba87359a2fbcee1d375b97cef4b8d80c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linux.go
+FileChecksum: SHA1: 7d18d39a7cc06031930698c679a6b074ca09cf71
+FileChecksum: SHA256: 8f0b2b3dd6f87b11cf6283a7482893b2e8320345f3199683ae6c55a039303bf2
+FileChecksum: SHA512: 67f780fb3d6a633f2020bcf329b6fbbe890257cbf27e659d5f9b8e711d66df35b298ad84bb34858390e2afe2f2678d03cf0e0c09c0f67a274dd7a03915515750
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95386.go
+FileChecksum: SHA1: 2e6ca7ec5f39137ce94b49509bc1e53c9b1d6260
+FileChecksum: SHA256: 8498a7444e3ff14e1adc77a8b87a8652ad6dea8549a01d5e9d9ff3a0734479a8
+FileChecksum: SHA512: 8bf052b94f03a694250c0d13f3c8ad4a8976de7b7db9cd1d95dec50f86df5afd85ca000143940f9015a576cc1615bea73cfce7db7d568ff9fbe03affd45d4cfd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm64.go
+FileChecksum: SHA1: 84cef2e3d6e381a12fc3eb1aa6ca26c0fe1ee7db
+FileChecksum: SHA256: ad24c38656cb121dabeca47b11bd49b1839ecf733b938c1ef4013132cf319c13
+FileChecksum: SHA512: 33b6b035b89987888e0848e06b6c77ce0e3de5a36f7044059c50e17a86bff6a387d1c22170491898641dff53ba9364aeed359f088aa7816ff94366e9d05f8385
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95amd64.go
+FileChecksum: SHA1: aebf4df26c24fa42cd4e7642861e0d93536b593d
+FileChecksum: SHA256: b6a1a4b6e3906da688e71f3d1c70b3d1d2067f02ca3e6db029bf86e3274bf07d
+FileChecksum: SHA512: d82503c1c49d6229b9d0148283e563f1618f331aa0c250265e27308a32565e2fa38ebf2b3c035ad23d5fb3af3870c5afe73e8e7492fc08749fb5848a2aa436de
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm.go
+FileChecksum: SHA1: 631fcba71d3dc469caa9769b0336fdd436c23dca
+FileChecksum: SHA256: c9d389393fb7f2ca8678fe6697a55fac75d25ce6ba7617c5f4dc074a37df3cf5
+FileChecksum: SHA512: 052f433b3464e249d393eb38316f0ab07449f93f396d4208ea6ee2bdf832d1e9f5f292f6296bdb7733333b0a92b3848c7c59d738219084a0522e3401dfdef4fc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64le.go
+FileChecksum: SHA1: 21617ea93b03fc54b730c57a7db2df87f82b697f
+FileChecksum: SHA256: 325b673e4b5c6a47bd416faf519b6bafe05878133c2cd154c46e6e4a1dbdc303
+FileChecksum: SHA512: c63bc8cf8e4c7ba36da3b2c7d12b336881a7bc9705c88d0a10a2388c6d12f9d13d2664d722599c4e82f6a94306e7e5ec768211888d71b98752c3830600e1d52a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips.go
+FileChecksum: SHA1: bc47a96d361e468d016157bef0df5d39478f6dcb
+FileChecksum: SHA256: 794ee5333f6ccf7be048f47171a94442eba006601a51f345c7c49e0b0f68cf74
+FileChecksum: SHA512: dab39e9e300ae3629b1a9e23ab1a2e35d64489655485088e9d646665a7a26be5e1d7a1e98a160b9f3a29182521a9c5db86cd418bdc5af2f7fb778d312b0158a0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64.go
+FileChecksum: SHA1: 7233b6b3787ec4cae67f62c044b573a83302ac6c
+FileChecksum: SHA256: 27ee26bcad3b27d43ae67c0b7a303b0ff7b620d683c0b39e34287d877f735b2d
+FileChecksum: SHA512: 0654f6455867a3895fcb98f25f9e6cbaf46fc828c96726c791b5008b29ceebaf898d6d2ab35787a36af27cfb7d7f0db7271b5245cf116c81596bb25ca27c9b81
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mipsle.go
+FileChecksum: SHA1: edb072f90db736d66aa5a7517a92d569a24a90c1
+FileChecksum: SHA256: 7ccebd83c92022ebffb29e38d0ea7a59c1216faedc7180b4ed70db764723af42
+FileChecksum: SHA512: e81cb195e3addab6486e5a38c976441c497b5d3689c35c1fa88e3439e74611f088dce663a8e200d46545d817c4dcac1d3440e6256b1ba01d1cd85c6b6601c42f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64.go
+FileChecksum: SHA1: 6d9579a47ae55d0b678c07a4f01eba80e36ddb9b
+FileChecksum: SHA256: fd6d487ed6b7606a27c80617063dd833397387ab928c55dfc1a9937d8b57a31c
+FileChecksum: SHA512: 3750ae119558478646e728785234a0e0787a2ad1c00824988e1179bd9b87cdc7600c0fe124a74df223f965f629a8a52db5e7f22020d48e2189f82ae6e0911905
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95riscv64.go
+FileChecksum: SHA1: d59f589e6a484ec8489a11bf087cf7a9d67282aa
+FileChecksum: SHA256: de7a45aa5a5f82568d5eeae7d78e3e3dbe8a66af60e64abc5014c9cc576fa043
+FileChecksum: SHA512: 11c72838965d701e571e51281e1ad3de27bc24bc59ab841de7c4a928c6a2e0d56ff8f7a0f98e983f28c44328fb647cd46668ed2bd9efe173e4e6c21672babf8f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95s390x.go
+FileChecksum: SHA1: c4ec87c6dd1ef670548522d53a7a7b4cf816f4ca
+FileChecksum: SHA256: 4d3e088f4ad187d462bf1f88fce494e98afbfc5871b845d6d235479beef660cf
+FileChecksum: SHA512: 7cc1d6d168904c6b3c8e911ec2b521a1569e0a5f22ccab00aefac08a1b909b001396a38a73e0bbc2bde9354495e4085ced56660f7070403f4d66c71703acf4d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64le.go
+FileChecksum: SHA1: 29212df10ecb3072c21b390087ce74bfbc44a6b9
+FileChecksum: SHA256: bb91c01b2126f9c24dd1557f431b3a5d7ffdcb8afade150138e4b969413bd5e8
+FileChecksum: SHA512: d5aece3bbc35cdefed93030032c7f55b938a9787678915009a4b0cb98d1a3c31e14033dbefb38ca64e6f7b1c3f2ee00b404c3052a3be74626fe6815252009358
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95386.go
+FileChecksum: SHA1: 1127a7e9db20ad9d862bb3cd62c80168cddf2f7c
+FileChecksum: SHA256: d139f1c5fde823ff53163bb5ac837715c932687c2fad25291180308e763938d2
+FileChecksum: SHA512: 5a4fe435eba7264f14a0bf816a52c2ad3758202bce5de658cbb25002b82db05bfb95d1ce0aeb68ff71e7ef0e37028376946c7125e5b2ec156231174a6cbb09e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95amd64.go
+FileChecksum: SHA1: 6b0871f3e428703ae3f09b2dbfdfd0ded9ef495f
+FileChecksum: SHA256: 796b6834ebce385f2f267dc86a4cef5e6cd2622ab638b14961b029724d7147ac
+FileChecksum: SHA512: 404cb1e9146ab7e73d3814c513c6255e7e796150cdc408bd1e145531ae8e4522fcb9c1facc2f2731aed2f340da28e0a8990902578e22e61ba56847ca43915d59
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm.go
+FileChecksum: SHA1: 4d678f7fa83ff32fc99b05122c24ba4bfe8db316
+FileChecksum: SHA256: 35af9d2dc0ad32c163767af0343e49112bcd4f7d3053e880e6a14854a293a501
+FileChecksum: SHA512: ed26d52823c78f113894dc2766d9e39badd226a6aee801e89fde25c11bc1750fa71fd4a166e890aa2def5034bc30db44b54173e3e0c0c8d03af71871b66d3c31
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95sparc64.go
+FileChecksum: SHA1: ec03b2ab15964ab1e227b874e7d4f0187ed6ba6d
+FileChecksum: SHA256: 36439cd6742f4328fe52feebb5aa96f3108e75027fb5d4cf1c791720e28509d3
+FileChecksum: SHA512: 4a34857daea030f1ed95aedb747174639f6000c930ae8a56044a6b556c58de198cecd15983efa186dae76f5a8788e80c28c2bd0a52549eef1759e0accc5a2ca6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95amd64.go
+FileChecksum: SHA1: 1c1288982a40946d06f97cf51abc156dcdfdedd6
+FileChecksum: SHA256: af061ec89d09afe4ce29532ebf0aeb57a653bc435fcc5b727803c7287ee3bdce
+FileChecksum: SHA512: 6559093104d3a5666ba66e2ccd3ab7f3d6cbfe7c2707ccda131f5f9d6054fc32acdd6d165e95d761c4f615e795ffba2ffb9c475541160d881ff960d12f8e19b4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm64.go
+FileChecksum: SHA1: ca1eab4b7c42ff3cdefde0ca8a0d96912d5fd235
+FileChecksum: SHA256: 6f951b07880f193d7d612ffe724db3503658ce539bba21d852873898eea96f8b
+FileChecksum: SHA512: 1608e30cf3ccfccc79d1c2f959e7135bd45dd948c4755eee180e80d97591ba32536b27c43cedebcbf6197fb033e9e1562cda7fe81a1c9092ca8e9c2ea87b79c8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95386.go
+FileChecksum: SHA1: 5d8d0490817405d99f27f727a4fe67e2da868c12
+FileChecksum: SHA256: c3f9d4a1b0314c67519577234453d522870a6458f8870e452e06fc5df7a260f9
+FileChecksum: SHA512: 2e4daead058eb4b2e60872f55589b5bec86adf64afd0db137e15a8d3b43a5d2d157211754738d2067b159409a47214544e1847c926c18c44af63807c37a3b413
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm64.go
+FileChecksum: SHA1: be407749522a5e1d8dbc44d55c88e66b0349d294
+FileChecksum: SHA256: e48771110b7875bd99a876cd9f23f3ef0a582388dda9c8853164a03ed8759ffa
+FileChecksum: SHA512: 1f030e759773fc9b98a8dc7e4997c167793605352b85549e3b610a8f262495cefc8b7b41fa171d1682f421090921b48a5e98a6d278cf8a74cc2a4c7790220351
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm.go
+FileChecksum: SHA1: a09b53c18974c9331e6ded6e794cc16bc57fdccd
+FileChecksum: SHA256: 1ca1c7ba821079c9dc20c5d0d4f944c0ab317059d56fed71a9236ce9e489135a
+FileChecksum: SHA512: dbf66e757e91fcbd00db6abea62895168db0494a4945b98d94371b5cd345ba488eff1491155bbd8ab520b802fcdbb73b931348d30cd9f892f9217e174fdba451
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95solarisC95amd64.go
+FileChecksum: SHA1: eff9cd5af4a0b493bc8ccf956a5ba3a904b21669
+FileChecksum: SHA256: c827f19894dda3766724498fb9cce0ac68256d032d6fd91cd2e599cc05870701
+FileChecksum: SHA512: 8f898eb1e3c45fc3736f4c03cb5636c11f67fee39d710c73f9968d9e58a6a47390747213907831dbd4b033ceca397ebfe3d870e4d9a3492d1561d35d531e8ee1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95armnnC95linux.go
+FileChecksum: SHA1: 01711f63d7b6b43d70fda371ad0c7235079b9f8e
+FileChecksum: SHA256: 7d3fbfc769af2b1cc05b45491d209900872150976008a1f0e1edecf89f774d82
+FileChecksum: SHA512: 3e5e3196a3d495d78a90ef7311a89abcf8f372194725ebff7c8d9f01b0c8001eb6f7f0c58cf349dc02b03962e1019194e79fd8a83fe44486ad2ddc04cd8d8310
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95armnnC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95linuxC95arm64.go
+FileChecksum: SHA1: d426ee2cd50047f351f64fd9cf0bc86c1647b1a2
+FileChecksum: SHA256: 731e8904fff8c05b1b90219bdf8e463411bb8de8cb2a94228332ea60974f2c95
+FileChecksum: SHA512: 2bb816ea236b9a38505484d624f0e397a1f7f375a70d81ac961feef543c687703f34649e95d489b5bc999b6510d53c69430ca2e5511b8c85cfdb15434a001b29
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnC95linux.go
+FileChecksum: SHA1: 650ba3d33c894ed562d9dbce8aa6b74cda2f4306
+FileChecksum: SHA256: 4d160349cad85abceeb8768a93a03fb15b2c00a0c0467ad2fc30038ea6e10b8d
+FileChecksum: SHA512: fc1e265ced1ea4bfd36ac75c07779e3ffc4be6e401f0d5f5716a158f6cfca990c5b2f5e30b754eea3dfac3f88136f87321936e1cf0efdc756c109dff133a1538
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95mips64.go
+FileChecksum: SHA1: 3368bd9aec803607f45878624d86cbe976b370d5
+FileChecksum: SHA256: 8cd0ea2ea5573c303ffd322beba50e6c66183069fd5d580113cc10adf0a60408
+FileChecksum: SHA512: 82f9ba2dab1edfaffacf3e9a8f888a062084ab97683e666a4a99c7db75f6e97b5adcbc770454dbb4170a89f13045bbb777fdbc8c52b5496ed3232dc25b6710d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zerrorsC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_x86_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95x86C95linux.go
+FileChecksum: SHA1: 1edc32cc84cd4fcce1fef3c0cd50fcb76c5523bf
+FileChecksum: SHA256: 650347c4f5479953b14f52388e61c528031210fc831116b7fba46fc1d6bcb9a5
+FileChecksum: SHA512: dcdfe8542a7fcd2da21a8651fc4e4a72da540ce99bf424c3e30a72a04a25a27038347816a9c2d2949a095784d7ee25b7f8fc333db3b4c00e051dd2bd5bb49d42
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95x86C95linux.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc.go
+FileChecksum: SHA1: 8cd11e8a20101cd0aa2d5b57bb8a74941df64361
+FileChecksum: SHA256: fc0f89b78849924fba83d2dd684d430e5b8ba1788a14d9a691b064c68d80a268
+FileChecksum: SHA512: 300887ac6f82491d872134ec7033ac6f08272ad2bec73a8b4de6fb435d8281be8cabe2995a6a5b1b16a60c02216adaad0ab81233d94829c68d0daf952d543a2d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64.go
+FileChecksum: SHA1: 2f0589ac4ab989070ddbcb76a34db4df07a4bc5d
+FileChecksum: SHA256: 33afd55b417f08aa08e9994e9eef36184ba9505c4b55a1b5f8fae0ea77161784
+FileChecksum: SHA512: 62167730af269466bf8e7f8ab80c7290ffa7cc7fb97419b0df9b0ba884b6dbfda4cd62f779099c8bfc597160b1df108e56d9a80e6f49411bfd65d0757b16f323
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnleC95linux.go
+FileChecksum: SHA1: 3af854105d96155b843b970c82890e1b01fca773
+FileChecksum: SHA256: dd2357dcc25d87fa8c859763fe25132f2e8efb32c13ba391d8d360c0d493fd04
+FileChecksum: SHA512: 69cb886941cdce0ea5e786dba2d0b400eff6d3777b502ac1a39d32da49f4b541e4a339b8ab50d50ba01158313588fc6303ab5e0c006b832528dadfa75b99032d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zptraceC95mipsnnleC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.go
+FileChecksum: SHA1: 21ac44cb71ed4763fbe597854a4f2796f4c94558
+FileChecksum: SHA256: 0293c22f49f3d0f40c82cd5bfd6cce65958d47b34b44d658616e20e77f51d124
+FileChecksum: SHA512: 2ef864fd0e353d227fb636dfd87497d518162d238290f058c04e505e490c1bfd4e5ca7c1cb1ce6ccdfddc4f56f19263e91d1b7ef91f0a2a68c4b36f0eb756c75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.s
+FileChecksum: SHA1: 2ec0d08891fc6066245a55e430c344b9dd5fef81
+FileChecksum: SHA256: 0aabd07db08bf8ff83c6154fe98c79a35d1b0160b2390e9039ee1400ad860f5d
+FileChecksum: SHA512: ca62cbdc60180e7fa9112fb9182a4fd49a131112903f9dfa6cf59c71b478bc00864dc8924faf0ada56ceefd06f641c8bcccc2a941edcde4bf151509bf16551bd
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gc.go
+FileChecksum: SHA1: eddbb9145c579dc9e5f2f0a6640c45ebe6de1f11
+FileChecksum: SHA256: bd29391b79c5a3b3ece0f9827e48323bbbfd9dd2c1a9bfaab0e93a1e6119526e
+FileChecksum: SHA512: 45ca00f38f1b5629d68ac7c5cb54d8995c45eb40afc575f885fe1b605ff52828b11e0a8a2be34c39e0bd2ef48ac6a4e26599db1b5f253aa58a5c1be935ade809
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gc.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.s
+FileChecksum: SHA1: 040c9f21bf298373c6471ce7fdf78ba165f51ca8
+FileChecksum: SHA256: 8dab384cf81a77db48943209cd6f420744bd5e78ac3cf5bd0fa6bc9307e406c1
+FileChecksum: SHA512: 9bfb30e1675c83c51221e48ffdeb0efccbd0610e43dc7a9607643ffadde249135feb6806893dab242b063d05fe3b7d13d947022f0585ff5f532e1953896794e6
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.go
+FileChecksum: SHA1: 72ac17a21168eaf5b6619a6262368219da9cb176
+FileChecksum: SHA256: 60e9da25ae12f0b220554a993b965ad15e8c1415936f89ca2b6add3a831de98d
+FileChecksum: SHA512: 848c199e2bf4e25a0025a1820df0abeca81ceedb052f424b6d6f8d19f6d0c955f6056b460a66228c485bbe04fa0ca547123dd3080ea9f72af880abbd50b93573
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gccgo.go
+FileChecksum: SHA1: 67de6af8237ed1375854f09c463509fe223e29b4
+FileChecksum: SHA256: ec315284c437b19512264894baf9ce1c7c64340a9bc053cefe0089563710bfc9
+FileChecksum: SHA512: 13174b1fc01e6fbbd6bef8516a2e45568741ad794a708ad466219610b32a12975e12ed87e95dbd3078946bcf361e982ef9ea4641ce0b2dc61248c821b7b03a32
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95aixC95ppc64C95gccgo.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.s
+FileChecksum: SHA1: 2d4291c3127806a10653c467d41e7ac83491b0ef
+FileChecksum: SHA256: 489454dfc0a7553e905c03d3871ca6f6638e0fdc3ac5d107e00beef26882445c
+FileChecksum: SHA512: 64fefcbc98b01b0b93852b5c8408cf7064e3feb87749401e4d56fb2679a37df7627b47c3228797bae4449039f488275acb90aef42bf6243eb32066556b0d955b
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.go
+FileChecksum: SHA1: 2a0b1a520acdad3b72e8d2dd1fede7aed265b93e
+FileChecksum: SHA256: 3c3c9c5bad4b854de451a6b7099f384cacb5181701efc0d64f8d9ae86b638417
+FileChecksum: SHA512: 72b2d1661b6711829ca4c5c58fb0a28a446db9762b2e519162860c9cb70fdd5c26991a4afab637f4475a7a538d5d503a3b5dfc6669702c54ba5f43f924730bf2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.go
+FileChecksum: SHA1: f1f06c2534a6a072a2aaf2fdb2f51c834f9909ee
+FileChecksum: SHA256: 447ee31f3ab0bd61f6cff6a3ba7dd4e9da7e381ee1206ed5881a4138c352fea2
+FileChecksum: SHA512: 542d10971d8a6836b6315d79a6dd006e9763f91443135781b33d27095a7521a648b9be0bea0b63e05ef692f5cec576c50ed3ad70869ec5b442e805d02f28f7e7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.s
+FileChecksum: SHA1: ad0a6f96e045167e3ac971943c4bdf818253c1df
+FileChecksum: SHA256: 8594dec602f0474279d4e2243c079f3c791bcd2a878a58e78d31c82f9663b41f
+FileChecksum: SHA512: f2d3c62ec6f881b832d4fee333f8fc46c7726cca15b34c8d1494710b55f85b18b33a7db7911152b1207138ede1b9a09057d203f76b5b8a60f472934db192d6a3
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.s
+FileChecksum: SHA1: 07c20d3926175b7b53f6dcaff7728b3b470db02c
+FileChecksum: SHA256: d0378c26818b831c4e80123c812332f9ee31e40098cc5a769d52ccba5b54616a
+FileChecksum: SHA512: 5d7331ae95a6af20fee77ca3274a2b5848f3d41f977bf11388f1dabd6eb420da36eb8fce1ff8e27bcc8a8e73e186cb2516824810a378c08bd8ed708888dd3f50
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.go
+FileChecksum: SHA1: a08f2e5d7ad98bf4f03c9c6d060b3cb155aad695
+FileChecksum: SHA256: b5baaca448c93aac0ad351720097330592b06ac11c96ce62f46225b66e60d04a
+FileChecksum: SHA512: f7368ad6339184d319e6693630f2cfa7415031f7d63da7b238d8ce6be78d594c87a573015268292a357d6c82378f82f15efddf8389d24418fb80a8827711ef13
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.s
+FileChecksum: SHA1: d918b53a9ebf922696c54cfebfe796dd59707592
+FileChecksum: SHA256: 69c73094b3c89fab57120634baff58c81d3734443bf58034841a7dbc2ba38fbf
+FileChecksum: SHA512: ed5cc6b805285f3dc3437a410b739da17157afaeb76dc8e7f78d6ca1c4bed67b2bbb5852a11456fad57b0129db0baa065a2013c93a654daacf466ab63534c1fa
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.s
+FileChecksum: SHA1: 76f5f1eebd22a7e5af15de0b3373d8407c82b650
+FileChecksum: SHA256: aabe9c06e74674ef8cba4529feeb2c4641d089e7fe6b32b28ec31afd3f8d3cfd
+FileChecksum: SHA512: b6698740571f38161f9de2a0e73e3838558af750746831e2dca47f6e28efafb8df3efe373ea34770e5794657627c2f82be0f3c99d98c3db0b763b2c05d111806
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.go
+FileChecksum: SHA1: 45a77a0f82ba447456f45f06219fd0d6c99bf93e
+FileChecksum: SHA256: 358cc3fce35d633ecf6c34abab0e8e450644f6236052be3afc25d6cd05874ac1
+FileChecksum: SHA512: 41baf2db1a6464553196569da605bba1a6215edf060b2294ea669c5bfd4763f21cf64c27873e3c540d8802047f90f6fd47cd1822d034444746e41f7fa28daf07
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.1C9513.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.s
+FileChecksum: SHA1: 923e633dbcd60b1fefb26f2723c1d6228780db52
+FileChecksum: SHA256: f9b22c197a913e4d36b1cd81a34ee0e289905d061ead48235d996d765babb53a
+FileChecksum: SHA512: 7f557134d8ff753851561c4bdea3edeabcd9414e659f0b23bf529f465a820f4f07c7314996a7cb8776e8b6dddaf2f576e5a936faaac0543fc2c96faa96471aa4
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.s
+FileName: vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95dragonflyC95amd64.go
+FileChecksum: SHA1: eae1ead8826e314f0db5b677e576165b1dada52f
+FileChecksum: SHA256: 99e5e1bfed9acca550fc11257823c0cbc0584e2cb4f42b8d28a7fa154ed2d697
+FileChecksum: SHA512: d6c6229a6f52644f978c131f5b990bd0d0b79fa9071177f62f26074679ccc477f372e9fb25f7f3a69c0621d58bd11a253495e674240f0473685b2bf29ca13b73
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.go
+FileChecksum: SHA1: f12b4e5b8f519082856be9f61bf74bc9160d3018
+FileChecksum: SHA256: 7e20ad6e277fab0873fae8d18dc8044bbcfc1888cc099988258ce24c95ea14b0
+FileChecksum: SHA512: 1ae818943d08905e612db532d78f99561059c2e6f34d8fa3eb9c4ee2d6f212fc3ce88ba4295ed60576a9d63ad5d59ec602b7e3452c2d2e2fbbb6490a0a04f083
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.go
+FileChecksum: SHA1: 0e706b9d899205233824de7b8da282be89337045
+FileChecksum: SHA256: b5c30a1deb80d28c125907f847b79b47b68a93e7e0c27cf0fa09278ecfcb7c7a
+FileChecksum: SHA512: b022492bdf175acc9e2c1193e77e41c93a827fcda4583a06704a0e7893f75cf9a594bfed2d1b05226ddea641c6afaacedd1283cd59a3400ea60d1b31b810cd1b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95amd64.go
+FileChecksum: SHA1: f89f4ffd134223aa46c8925e3f7ee2fe1218af05
+FileChecksum: SHA256: b70ca41bebc47498ff56b51dc741b868ac394c2fafe46fb032dd0ef324512d00
+FileChecksum: SHA512: 148f0ae3dde5332b61840b5c45591d70d82bac9f49a394d9e9d6c1439e615fc041c6e1ea368e49c5060d26478f8ac894ba9d803772619e6e65ce45ebb15e4532
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm.go
+FileChecksum: SHA1: 63eeb99e5ddc9dac0c45e77773df94d5402627d0
+FileChecksum: SHA256: 799ef6d19b021a40a998a9183bcbce04b7e0636cb89a9ec486ea567e146afeca
+FileChecksum: SHA512: 3e5c3860342f7f729eb71c8a3ffc48a040c351a81ed467badf2bef3e191dd9eaaabfc1a1f80aa7f9196ecb458e386f7dc19486158f3643f8faa1e858001008d1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95illumosC95amd64.go
+FileChecksum: SHA1: 435348c2eebe9d0a845a13d57e417ac8f67e27db
+FileChecksum: SHA256: b23fa55f31c26d94d05e9d4083780696c36b77e0b03cf797c48d96e2d137c26b
+FileChecksum: SHA512: 61fdb2325b79657a1b1d81b4ddfcb31a29911b464cf8123b9a6e9daddf507dd141a474b9ff0be7a7e6e07b733373c06311387efe2785b89b0f1a072f1a3d9459
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95illumosC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95386.go
+FileChecksum: SHA1: dcde63a6f1695d623d8ea61a64811dced919c1de
+FileChecksum: SHA256: fa85949e2bf38264ee048cae3e2c2d3dea8901ed152a8d1b63336bb628cb7918
+FileChecksum: SHA512: e63c6311ac2460c0b328ccb4ba510996e205007f5d4760c0a044b40e05a2ceedbf3db4125efd91aac7bb9c6a80b2b6250d9ec54d8a19617d705867e63690925d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linux.go
+FileChecksum: SHA1: 1061bcd544b819bc08706f94c562e72b0adbae91
+FileChecksum: SHA256: cffb3f534e57d936d9f9ead18f56b3fbec15b8e1ba57f61cf1545e51fbb8c956
+FileChecksum: SHA512: dd0e5bf05cabe3d6aec9a7eb7a772dfb7b6b79789b1ccd554baa98c55ee8ead33520d3c5af79cf51e3c94652d8f7152554a5c1a88ac86cd8115d8d149fd4f618
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linux.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95386.go
+FileChecksum: SHA1: 18a34a1ec99a1a49bac8d18345065fad3cb4da56
+FileChecksum: SHA256: 4830c34f311d8bbddb8f3eec95a05313af338bcb9a7c5feac1ebb4c20db14bd0
+FileChecksum: SHA512: 89813b0622d9a5961bab1c1b543fab8dcab13fd47522e424a2e4850dc4c13010ef26234b8e8c21af746880dc55d6185bf528f95c367a5cfc54b352e9fca77a1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95amd64.go
+FileChecksum: SHA1: 786413c46d4b1e274c066f2669a531f898a89125
+FileChecksum: SHA256: 0c12cc54d6043f9cd27ce23a0e0f199fa65ba5f0a1d4f1327b785425c6d48173
+FileChecksum: SHA512: 7b185fda6794ef00632372a5d204c79d1ee14997a3f2fba357fb297ad360fb937c333be15dc2d0721c6d4d1b7ed89a13cad05a23ab3f72d8f80af307f235abb9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm64.go
+FileChecksum: SHA1: 189ef111e671156e59a79fd10d832f2b13b616e5
+FileChecksum: SHA256: 102525c0b60b93e1b86bee458ae000a334d989e2d5ff2bf82f350a110f4ba147
+FileChecksum: SHA512: bd994318800e4ae4dd2552fb03decf16a09093b159404b46e9555b22a399ff9e044662cc2415b51d9cbc4428e1e88b62f3a260587bed81a932ef90cb7327537d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips.go
+FileChecksum: SHA1: 1a91a27ae4e964266438de7c763e6f2b2949a9b1
+FileChecksum: SHA256: f19bcbe3adc42861655f994690e5bdad1e658cdc54d51d208f64e49e2a7b3b79
+FileChecksum: SHA512: eec58ed9f7814ec5125ada6054de7929a90cce0a88abee14c86d9f9c1421ddee57dbfab79bd199a9d0a69f9cb8150ad9072091d6606e4d6404546156034baa50
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64.go
+FileChecksum: SHA1: 7fca732b3b4cd058d693bea99a63e45e83397e04
+FileChecksum: SHA256: 37ae15d57a979e0e25bf18572bd8a5f588e4f397e1939eb730b8455e5f34040f
+FileChecksum: SHA512: baca13a2c0a6f082a3947e25dbfb4d8ba91dc043833c014f1f7bde6897a7d2835fb445c21c6a686c8e4a1aacd3509b0f99fc31c4bf21e08f6d931ebadced18c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm.go
+FileChecksum: SHA1: 72a35e682604240c37978d83ac8a4767c8e21dcf
+FileChecksum: SHA256: efe850325343fb8e40b02decc0c0e63d25fe44101f3808b6b273a86de34d3885
+FileChecksum: SHA512: 84103e52d5768c11cce608a4cf943dd778de9010d0f9b907b54ec5bdb758a6151c05c46927b203b4a57aefcf7dfc1d043c3689e806f12c52516c7ab1f29f9953
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mipsle.go
+FileChecksum: SHA1: 415312cd9371f0787449025a753d44cc0a7c74d5
+FileChecksum: SHA256: 4df6a9e0f43920b200b645275101e32b7964215f4f08160a509562ef6e09fac4
+FileChecksum: SHA512: 47fad464ed54b62ea983da3626c21eaf58641ad4c3700c5588bd89cc197cc84c8f513e13417d7116e8a084aa1ab0f39ca66837123d000b972839ccbc08c30f98
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64.go
+FileChecksum: SHA1: 16ec31c9eb3aa6bb6d3974db10f1b3934c7ea0a4
+FileChecksum: SHA256: 479d84be1743402139366dd9172185dad098cb3622f6fc77c11dc1287364e74e
+FileChecksum: SHA512: e57bb27a326b197b9f11603caaa647a74542627827fc29ac488d3eedd3a7ec64bd6f430b4958eb22f09e4d25bbd0421e68f670e03d0f403f000fbf7ba3cb3747
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64le.go
+FileChecksum: SHA1: 193626421a354d5af959dc57a9a761d259162aca
+FileChecksum: SHA256: 714328e04a8d2ca9b1c23e36c68705f77bea69b20b6f8c3d0d09045a0599a084
+FileChecksum: SHA512: 76537611f8a0a41d11cc2b939c582d9500ee481ee988a0c7430cf8755c9ce095df7d65a22a33c77af69dd55c3cc5a64c420d9d6f01c3db8c2d8a46990aae3c63
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm64.go
+FileChecksum: SHA1: d8789afa88a48e8fd0f749b6e8213c3448574fc9
+FileChecksum: SHA256: 1889062aae445715f70dbf1cb539c5b21119c4d2239f42f3cc80227d680402a2
+FileChecksum: SHA512: b36ba428ce61b38e6b71ffabd566be37c1f9c6bc8273e31a611365d9ce5b32bc7de663a385a4b6c37f7d971fbe12c61baf34f91e21f8fbf62696531b265e127a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95riscv64.go
+FileChecksum: SHA1: ef179f13fe7e9a93f788d259fc725854fcf5baa2
+FileChecksum: SHA256: 020b58e6a4e58f3eef044f70d016fafe807447382ca3507c88245300706aceea
+FileChecksum: SHA512: 1354fb3d13a6066c95ac3b51f3b5bbc71b573b53d9d8c4207be4547ed3e4bab0d43bb9e00c949f44a2e579e93534b13b2e3ef450174663770c326a060b55bd85
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95s390x.go
+FileChecksum: SHA1: 09d4e640cc7b9e069b9fb7cddeec4dc0a963ac19
+FileChecksum: SHA256: f1a4140ec3f777f51354977d732082cf215cc34bdc759a7fe717d79eb182b686
+FileChecksum: SHA512: c97b8e071c69e26618d74c7a0efb69b644591791daa45c044cbc2c18fda4ba55dacce92425ea2e366d95630cf58f9ca7bbc47dc37af623d78bcc3c5275b6f71d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64le.go
+FileChecksum: SHA1: 2452188f33c061a5488fbd4be3017a88daabf45d
+FileChecksum: SHA256: d6fe287ed5f95bf18b1b668fc81eb1c785acae522290847f0b741475986d3133
+FileChecksum: SHA512: 8610ea4f2e03e92a96b2fad48239b0556fc4e464982e0fb30794bbd9c6fdff2045d47047092952d8b1137a191f569fcb8b4a3546e97f955e93fef15e9790d7ff
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95amd64.go
+FileChecksum: SHA1: 99b9114d303aeac83d53be7736c64d3e22068b75
+FileChecksum: SHA256: a2438e5186211dbe9f1b1f31069a9cc34f8868042549c3eb546c0a89e2cadf64
+FileChecksum: SHA512: a0d14c29e9702e178b20218625b198d707396bd1fb2a0e86e29e0e10c3095afedee4b1c127a27899da25fefa838a427e6e2e240539c951392adde7e788cb4362
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95386.go
+FileChecksum: SHA1: e22009550d97ee0cd36b2c16aa18ad25dec42267
+FileChecksum: SHA256: d450e32217e9b0bda189d50bc70727f9f751d208e22b7d2e4ff5c68c2b65fb18
+FileChecksum: SHA512: 59761595bf1029a929a2758fbafb7aca55f9cc9b7013893af763e67dd43b184200cb7ecba0a8bf125c0c641646c756f9d42cd9bf879ce72908501206fca1acc2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm64.go
+FileChecksum: SHA1: 7a40bde5c03f75368592d83905d9d4d72708bd64
+FileChecksum: SHA256: 106801910bda1bebada81cd8d7cc238677e075582d0a602d344dbae846810193
+FileChecksum: SHA512: 5be61e448a145784557864d9c322af1c039a7b80399b20e836487e17e5289fec65d14c25f7ed4becff69becf758eb52fd74f8ef422f26da803f0759f872a6529
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95sparc64.go
+FileChecksum: SHA1: e1b34c694dd1941279e6109be319ce8d1cf40b74
+FileChecksum: SHA256: 306048ffaa9c1c235c0f1e1abb75d8724eadf58b375f7ade52199631b0f3550a
+FileChecksum: SHA512: e3f512f4174f7a187514bc7d04e11398da5cf413a4dca30d2b0949f0401b2bae4923c46427fefa70c4daade1c376076eac662544f32e95b5afd5664c24f07615
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95amd64.go
+FileChecksum: SHA1: f811154e66e3788af66b9bedf258c1bfd1385190
+FileChecksum: SHA256: 0f0adeda090d405ac1e24cf953ec72bd3397cb9f7bc48623e9e63cf72c01b61a
+FileChecksum: SHA512: 312f01da189183a7febf0b80b727a025c9936b259b6fa9eda1f41efa1d58c94a26c0c8ae89a648d17474816e6d972ce4339f52d1dc526a86d37ff25847c14f8d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm.go
+FileChecksum: SHA1: 818a2e005bc0e1c4fc19f9c12772328a353a0f3a
+FileChecksum: SHA256: 3f6079e4ea3c96073e388e23c326d45d215e988c122837c254668d1e51c5d0fc
+FileChecksum: SHA512: 3c3043e93ce1a8e3d7cea74678fba0e435771bd92a660f68f6076bc77d3e968b6d7ebcdb881a04c4c0ffed9510c40a2f056e77e7d842ddf684fc4360bd59c829
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm.go
+FileChecksum: SHA1: 666523a1a17e8124969078b33eda0065575d40a7
+FileChecksum: SHA256: 79efef2cfae2cdcf27d684c3c1735e7e55b98174fa32625506fdba4e7e718744
+FileChecksum: SHA512: f8b02ea65a47b72cb5811ea2f10b743918d3613f25c84a54e47860672ad690851cbd8cfecd059e357923cda1bd79d58df4ee1a7eb4da9c8640526c3803bba358
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95386.go
+FileChecksum: SHA1: 343be679a50df63b635280c43307080d91af6ca9
+FileChecksum: SHA256: e5dc95300ffc17ff740685f705cc6aecc6976c405302752a7bb580936e7ec32f
+FileChecksum: SHA512: c7d492db84fbd8c248c869adddf764598d5c3c7c19ed0ea14554f6aabe4debe75a07901754113c97b5057c334f22b68d08b1a5815a6832c43a8ea0989c5749fb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95mips64.go
+FileChecksum: SHA1: e0760d18f7e71a1eaa83f95a59480c2686a09c98
+FileChecksum: SHA256: f482de03157d37366aab4ce27fc9136e977641c717a584a3dff0a2e2482360a9
+FileChecksum: SHA512: f6e35931cc01c86dc344f27c79176b2f425c1e0e1803fb89f38737536e912ac9c91a24b9da5b9610d09494cfab6df4790e8e0ac53d3137d82ff61236fc2622c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95solarisC95amd64.go
+FileChecksum: SHA1: 9eb263c8280c99daeb01a170e272920a684f4729
+FileChecksum: SHA256: de99c60d356b29beec0c57d9f54403615e5b58d3b3000ed28d94121451e1a1f7
+FileChecksum: SHA512: 3ef680d7774158cf1511373a5be8bb7d3dd9b1f4592e43927a3a414cc4f3167802b940e8e64afc0cfda8b2b2227ec250a814fb9ad92f86ccbcdc95f582390a89
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm64.go
+FileChecksum: SHA1: d528fad7c171ee26db041eb992e6d98a469f6117
+FileChecksum: SHA256: 045c1e97da08190638a56e3df9f8030eb5e397065bb1db6e0e9055724f71691f
+FileChecksum: SHA512: 22d085a6b300c28771b8b7f1536bb7e5e66d4674cf5aad4cae3e8bc1961abeee0b7c20c6020fd3114eb7f29e5de37c03c4d3430db88c26ad13423fb441072a3d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsyscallC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95386.go
+FileChecksum: SHA1: 818c652b157bf36ef2a1e1f9bd31aeff4132a51a
+FileChecksum: SHA256: 3cc3f1f0481a864007681638ed376d0736664d738a57570d368f64d3f6b6f71b
+FileChecksum: SHA512: 43acd5e6a2db385a55ba9d286dba9237130cc38e2e6ac1649dd84cd1eb32ec0d9306dd9e021b09157854766d21e869a3ffe4a14bfec49ea412b3c68597b331a9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm64.go
+FileChecksum: SHA1: 0c0344ef849499f76f530744a3dfd1e407fde751
+FileChecksum: SHA256: 56cce95a55b36e0f687abad2a1648f60e99446c4977dcb641e6afc18cc7b7322
+FileChecksum: SHA512: e04cec25145bb61324ca59ffce025afea7ceac7397111f5faaed5abe86b25fe025519de461875093f2e569a6be3ec71cee03c2ecf7bb0b475482ab829d891796
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm.go
+FileChecksum: SHA1: 0751863563b1a3b2879c8b42ed476e9f2058e856
+FileChecksum: SHA256: b2ce330e243d78a0ad325e2388b384bb9e8455fc195db114bd87bae4d789a039
+FileChecksum: SHA512: 0084e2abaae98fc1c6eabd72bd04294a9e92fc38491fca47e8386759efe8b6ccbc8950277995055b341c647ea43562911fc55e00f5ee17921f412cf8d24b3073
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95386.go
+FileChecksum: SHA1: 472c2e80265d05706966b17347e43ed672ca1e21
+FileChecksum: SHA256: f7a304bd0a8f625e41fb7088656b6d1a86fb78470376bc4d26dc1b6fffbf7503
+FileChecksum: SHA512: 50a65c9448b775b8308ef1c577b4e74f1c5064884f2a3225f8b1e26f40958b22a0158e9d53c6830bdf03b428105ab7371fae23971d096b2fe8d2a563c934998b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95amd64.go
+FileChecksum: SHA1: 124d555d56d8b59d1d50f2a473b6add91186104e
+FileChecksum: SHA256: c64d9a193d6d7c2146a9994587a92c40b59ba5eeb2b054c24ed2b2b2d260d026
+FileChecksum: SHA512: 06bb46986c8729e3348ad039753f7a99d5acb8b8f19c76db0b6b2b62827ff42aeee47168a52e3d853703ae168bd1c800173f827bde42a533e32be938e7066e2c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm.go
+FileChecksum: SHA1: 2b41bea835e624ccbd6ced7de18eeb6434cf578d
+FileChecksum: SHA256: 06b1fc59b8040e318a937f04be697c6a568d6904805a033312c54e019a19089c
+FileChecksum: SHA512: a4a1a4359cd504699367c30edd6095c3d37b0fe7cba928065da4b79196101e914324aef12418122742a9f69638f604edc23d029f2ff46aed37110dd6b875d89a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm64.go
+FileChecksum: SHA1: 300f73224dcd0bff5da5af42d8f21eb4e0ef5fe3
+FileChecksum: SHA256: 83d29a5c317a302c76bed1ddb3cdcb402351b7dc6fe7395623840b139915a981
+FileChecksum: SHA512: 0980664b36371dcf9768edef2ebaad02a7da7d9ccb0abb744729875a04df8fbea7ab9cd355543fb22b3d10d25f2d0dfd8fce9c9426864c17152f57b5daefa1b9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95amd64.go
+FileChecksum: SHA1: 6ff1462ca4c7385f14153e723a9b3c4eb1452605
+FileChecksum: SHA256: f5dc0249266adb96775f31a3472dca6281e63e92dc2c531c9247ba28ad6d50f3
+FileChecksum: SHA512: eea817ab4f22c31f0ff52944dcdc41b6200a72f8a4c8120058be1be8bf9209236daac32cd8deffabb2e74d3f8f76784d8bb41b3d323bdb896f2fc435e82fed47
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95dragonflyC95amd64.go
+FileChecksum: SHA1: e924534669c09c582f442638fca7c9a5beb3dd97
+FileChecksum: SHA256: 45dbc3773b1ac344fed1b3f9b8403f04668790afb2b6b85427db6038d2bf4632
+FileChecksum: SHA512: e98d10edad35f93444969d123f1d9e9dd8df90e8319fa857611d430f4611365eb35f86faf7a5d10af994aae2679b8d6916996a810a5fd36d772d1ca322fb05d5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95386.go
+FileChecksum: SHA1: eccb9f6ebcce2cd1b7ad266207fa9325944ddaef
+FileChecksum: SHA256: 6eebff45d6862e3b93ba35ee2de3865e9ee790c493798935abe7f62d2979a4a7
+FileChecksum: SHA512: d9d121ace410845a76359e8dc9df7772e1c2d717e1a8677e516047568f34e4a29af21177790a3e5775d91bf5e9306730984a54fd60310d56ad1671c3f6548211
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95amd64.go
+FileChecksum: SHA1: ab3f064fdad9c9877d94fa3dd7b6fdb07f2214b0
+FileChecksum: SHA256: 98816fec33552ec235329da5117040c4b73ed00a1b69346b22377fb944457395
+FileChecksum: SHA512: 3b45d36d014097defc3b6387e4a0a7cb25d8a859e78eadad7da6f4f245d4d90b01aed0abd29251864eb87b8abc1084c694e9b865655f276b3f2ac26abf613562
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95mips64.go
+FileChecksum: SHA1: 4b29277fa74466e9341a225f884ba8d2e2fe202c
+FileChecksum: SHA256: a28dc7784a23edb7fb26bf012b69019577265fce7fb09358df365cd356bceaaf
+FileChecksum: SHA512: 4bae9836e717194a32402c0a501a77cd1c93bd564f752a68caf0f5927512d51f23c21944c2ebbf23af9389b929348195c1529b6247a8eae0579c06a3d3ee8706
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysctlC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95386.go
+FileChecksum: SHA1: 8be1e024de70e261f5a7c40c9eb3c5ef50a7802e
+FileChecksum: SHA256: 5dade50135eefd685032e0efec9a912f1cb23579de221fe93c43ba54a437c58a
+FileChecksum: SHA512: dfd738c50044802e594a066707a0229a8868d368b395b8ad94eae302c9c2fbbd11eaee5fc83ba61f812b29f103b2f319c1bf10dfa77362b0db99364e9c5791fa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95amd64.go
+FileChecksum: SHA1: d54904f289bb17be343047c0b3c0bad582fcbde2
+FileChecksum: SHA256: 1b2dec6d0801803018684fee4bbb45048d6f7c4b0ca2010bf00c108db068b138
+FileChecksum: SHA512: a82d946540b22c59958fe35c194864bf22995a92a87b5dc6667a092ebc8a3af00b2df0ff0186fa5fb4a0280e891271c835094f149a369469a8fc779ac0e7f30b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm.go
+FileChecksum: SHA1: 8ba8d9bde6fb8ff95852c6ecc7313b4d983b8b96
+FileChecksum: SHA256: db85858547cc8b87fe22b8351398487902bc83d532ed3fe1bc2fc193596809c0
+FileChecksum: SHA512: 914e5c79833518014bd08d87109abfe19db93339a518bac686146ddbdec64d6b5bbcd866c0147cce91eff960e1d9b6ae4f60123e0e6e19ed6a4871973dc87e9d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm64.go
+FileChecksum: SHA1: efb92a04d63a684c9c19fa50c56819ff4f9e89ec
+FileChecksum: SHA256: 6f62083cfef586ed0830046c557670016a57f78dafbff2bb36dbf23177e209f5
+FileChecksum: SHA512: 91a77012328a108f2a072b061cdda1a374f389749018c0baf9f8314681ccec0228c7ed2c171f1a4ad3cf605b353dc3cd2bcf11ecec796c5f741a232d9477bae1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips.go
+FileChecksum: SHA1: 90916485ddd768a335d8e4590f638fe1a9263ca6
+FileChecksum: SHA256: ee499a655529250123abb4a168ff999719ffe92a94f23e67a64ed0f620f775ab
+FileChecksum: SHA512: ec45b2aaea2490b979f97f157a961cf124453d3dba2dddfb407de511c5061912e603ad2dd77f10e90d6766894f033f9e9f6580903e46b83470133e5832316f06
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm64.go
+FileChecksum: SHA1: ca1b5b0576f8735b4c35db40f72138d60e3dad24
+FileChecksum: SHA256: 3f2ad505826c380f3f55570670c8e397f8fc5ea4102e40b617ce74c43fbdf153
+FileChecksum: SHA512: 6911037bcfe408c4e9c787eeba2017f7ca55f37705361cc1a9169c4e454b915846c9b45fc8fea9e409aa4f1782a5cfd771c0f2ce7bd2ae868a5d7cbe566633c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64le.go
+FileChecksum: SHA1: 2c929d0ca480fe85d0b8b9fba077158b7c0acae8
+FileChecksum: SHA256: 7f5ab8c5b2777db5261531712984ac1f2c97f5fa1cb7d685cc604f1f8cc852b0
+FileChecksum: SHA512: 84721a6c32c9cf5ef3ddba5f6eecc70cecea8772e007e83002cf23187d14631a0b4f98ee53c73aef6971da908acbd22cfc03242a6cb0b8cd1c3f897913ad9017
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mipsle.go
+FileChecksum: SHA1: 0c8ba443f4759263fc169c701c1be21b8350cf97
+FileChecksum: SHA256: 22aba05d26d1eab025a087c715097e2b2013913b43cc3ef17a85d3e0fe89a423
+FileChecksum: SHA512: 2f6a89172dac515ab599b7d46f2e7c72d279030bdb01dea6b05fd52f9fdb4bfc6bc3016de66cbb6afad6d8596bcca6b9fba3afbbfcd866e2ff9168202c1f4bd5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm.go
+FileChecksum: SHA1: d17a0b0538b892a76c34af99bfb5a1d6382edcc5
+FileChecksum: SHA256: 94bdaf0b8a0bde810486fc943905a950deb4ea3d8fd61c7e0f7b4cf4cfc2bddf
+FileChecksum: SHA512: cad616d7ce3538a21bcbd3d17ba9e2af3a1a8e9fb1fa18cc0c48141a44e6c8f67665e0f53bb4fa3b1e34da3605b82550f3dc4592634ae3bf91869064454ccbd3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64le.go
+FileChecksum: SHA1: 60b1afb771cb591a44f68503f97fbdc4b4771a11
+FileChecksum: SHA256: d7a97aea487cbd43e4b7fbe65cbd5c6793bd4362ad827f54bee2a4d54fc4329f
+FileChecksum: SHA512: 71187cb6c7e69d928b15dac77b45148845c6bdea421bc086860530bdb591ce9809149c9a2399b930e947e82c48a272a5e5c5c266d7e838e8298a8b29b7f046dc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64.go
+FileChecksum: SHA1: 918ee527e6e276279f7db97fdc704cfc07fbea60
+FileChecksum: SHA256: 269a3c49f92e7c3bf6786fd556b3335bfbb8db5f2f96a2aada5eceaa4a7efb23
+FileChecksum: SHA512: 8ca525d736fdbb9486f9d85d1b4a3a199e8dec225504fe9711a3cfd2d3584e70eb8d04b629e02244fe6d25547fd247479ed900c7daed4330bc4a327b209e46f3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95riscv64.go
+FileChecksum: SHA1: 9bbee584d3e791499c09b18a05afe152e3cfb86e
+FileChecksum: SHA256: 5f7cd30d93dd099251b59610fc406bea8c08287a76b2ea0e94053edde1d56dee
+FileChecksum: SHA512: 96f8ff6614a106f9cd1d5b084f779451161a02bee654aeac5464dacb5ab78510fa20d1a574732a65da92028730c1ba660ee7dc13014ab82eef82213f6592b180
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95s390x.go
+FileChecksum: SHA1: 35b8d175bd1e2cfb65f1a8da65eb4d5d2f214deb
+FileChecksum: SHA256: 0fa03737497b03bdbce90e893e36909fc94f62f4034bb11b6726bf2d06c635df
+FileChecksum: SHA512: ebef3b34ff0f63fbef04c4ce5f0673eda3c28480f760de3f6a42e46d57f112e97d13f9c5b8af8adc1ff39e90f5744e2773554fa9c2b7ec781e73211cb00c3966
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95386.go
+FileChecksum: SHA1: 1cab17054ad8e5a1e0c37210ec59937cdb28972a
+FileChecksum: SHA256: 2dcdc268848d468653e4aa384280f819af4960a85f8b17deec510160a1d156db
+FileChecksum: SHA512: 776473aeb433e8981c646d675fcec2d3cf0ec9b5d9d15ee0e733afae80203b560d50e6943e5345dda7e433c0660bcf647ab1ecbe8413bcd197ca5910c2e2b939
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64.go
+FileChecksum: SHA1: 5d10e670c588cfecfd9f69e6ac55150320bc666b
+FileChecksum: SHA256: fccf5e98076d676bd41c6937134794d8be76e41251abe6013f3a420b389468ff
+FileChecksum: SHA512: c1b11cfa1bd8523a2cc2bcca7e81773b084e442edd12acc9a4a4199328c648b1f2f988a275a8a671ec82c86b06b5fbf214d2122ca22906ee3ea2e87e8e81b03f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm.go
+FileChecksum: SHA1: 8c7b26184d2d7bd1848bc1cd588356abf0b897f1
+FileChecksum: SHA256: 21960dc0e4addd676c8f2bc5eac521495dafaae8a3ef9378b7e58b13412e8061
+FileChecksum: SHA512: 01e57d0635a2cc9d67eed985633ad71b8811d87b0f7072980a9896759788195b4ec17ccb32804b56a1704a0bbce3334e80ae76722798c928c3f23c74fb8c5988
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm64.go
+FileChecksum: SHA1: e6fd6074bf3ecbc94beaf706f3e1a2bb29bdbd6c
+FileChecksum: SHA256: 835abd953bdd9e638a1eb8a362ad6e93458fd9aab7cf965dfa662883afb4b8b4
+FileChecksum: SHA512: 880fa4f720066f53902ac2dd23c36cfbf8b2f63809036e3e302d0f27da5ed5e738a978fbce5aa612fe5cdd4c20f6e77917a1c7e32b5cd8844b538a3425deec05
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95386.go
+FileChecksum: SHA1: 098df6d27e28b25369eaabc8936d2d8be115d9f9
+FileChecksum: SHA256: 1f1a9c78ea3aa86d00c14150ea1d1d5c7f81f4a7bd04b507eca647c216ffb4b8
+FileChecksum: SHA512: 5b4ddcc46d5526c984dcf230b5747c4bd34999ff17fbb5080becd54a4832c2190a951c95d8defda0c0d0b23cc318e3ace7bdd28e51347dd879c74c3b7bffdb98
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95amd64.go
+FileChecksum: SHA1: c78488eb9ea39bfb970437a442735aab471d64f6
+FileChecksum: SHA256: c509db8feb0ada3b098d571d4010baf1e6141368e96de8beadf0f6a486f754fa
+FileChecksum: SHA512: 04e692cb9268cee2608af8b02ee328ed34f7747d69a67bf372d5354d2bf9a9576f9968ef59098b4b7239b41fd3e913cbd4ee5ce2da121616c5dec4f8182cb65c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95sparc64.go
+FileChecksum: SHA1: 2f25f42738542f788e3b18fa47dea18dbdeeb688
+FileChecksum: SHA256: 6942e33df06c3cc0c6b0738e46f78c72cda665b7a179f945f382f0cfb9f6ec0a
+FileChecksum: SHA512: b7e5a2dbbe3e5677852e44deb5645f8dbd31fa73c659463cfbb89e091d6b942d8d6832cae43f83c5391bdd14f544c8ce549949975c7298869592b616e3ca2cab
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm64.go
+FileChecksum: SHA1: 21e5904b41c15dc1099ec51c25efc9b61bef58b0
+FileChecksum: SHA256: 3dbae5a96a107a885f62afd1fe1815d2fad0a1b8d3400450e9a480a34f7e47b1
+FileChecksum: SHA512: 0beb360bb3fc4e53fabd116087b7b330e97d997276b3a72dc14bf822f33aa70a15d8118ae1048da3ebf903a5d97772981369422b714686d2810e42e315c8fa57
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95mips64.go
+FileChecksum: SHA1: 4cea0e06f377a36060c8f4c40869ede353b6bca3
+FileChecksum: SHA256: 14d86fafb9ed8e7626435d62ddc66f966a736cd5b455a8fe9199590316fbdbd6
+FileChecksum: SHA512: f4d634b78608b8387738a096a3364cd1d74260775a9f3081e2a99400e9426772ef039956dd0c4daebd93fe979dd78c1b5951cb56ba507f221050696ec3239415
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95amd64.go
+FileChecksum: SHA1: 8b323c4962db6d4e41ba04c703699c66daaf1311
+FileChecksum: SHA256: f80c40f86ae780847739af6cf588e139f689b4c0c247b8573134a25c14f47f75
+FileChecksum: SHA512: 8f811a5c1ac884fae5d7457e1e2bb8aad1d445d586464b26b03029ded4495bd3f8b683d5aa4d9d331f1a64bdc4af2b3f462a05bf31fb3f34780719666a8a912b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm.go
+FileChecksum: SHA1: bbd02d0e44699a332a190a0cd61c4d5a864c0571
+FileChecksum: SHA256: f20e8f2aee152b5254b72589af04ab7588d45421ed2f7a38f24cc19c7393d940
+FileChecksum: SHA512: 4c5f683020d255017006278ba38ebf95f13b076261b72cef77afc5e8cde379db742a72b9966661152d8133f76ce66188438100561d1f493845bd12a8d8737af2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-zsysnumC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc64.go
+FileChecksum: SHA1: cff7775ad1cd329b84fa9bd4f3816871f0dece22
+FileChecksum: SHA256: 4e7e907cfffaab9d21307bc28931db4f86faac1d94fb60c5fc67cedcf6b32188
+FileChecksum: SHA512: 833201210ae61173186858aabf114b5ddb2f8bf994e232bf863e7f96d87f027e47910a5c7ed026d1d12089010dc69999aef6d424a56b1fcf5b496ecf86fe68c2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95386.go
+FileChecksum: SHA1: 6b32d5bc32be9011688c33266dc01b1a62ceb77d
+FileChecksum: SHA256: 1155eff7d3f7dd13525d7bee749929fcd6a468d4a943fab735108f3fd6ef7235
+FileChecksum: SHA512: de121c034a2542323e1fc0006a2ac4cd8e70a6a2efd8aba30d3af12249762d9946e62aacf884a185a73fdcfb02bb05454ea36e90abef31165e82b2705484990c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95amd64.go
+FileChecksum: SHA1: 59d9c553dc50d11385a87ba2d7c5de7ae7d5056f
+FileChecksum: SHA256: b568cced4c6926705129a0971582d73c56dac5fa91f6781fc15e74be8b29e03a
+FileChecksum: SHA512: 7ccd91c148bc3a5e82e320a6aeb599594f1dcc4c1580ffea236a8cd602d61a80788bad1fa7b752d4d9abc600eec9a6dac04c79a5c2c664d62d94836c846cd876
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc.go
+FileChecksum: SHA1: f5b42804ad702b89b6994df1e2216b769891ec8d
+FileChecksum: SHA256: bc74b31a0e1c7dddf9cf46f7b693f06a311f0f66a369cef663a80628687c6af8
+FileChecksum: SHA512: ce9c43c2e545890789bea0f9184bd5ffe5ad9096a30beb951c021fd2e1cc3971fa10d18373633de42fb57eadc187a28612974d4419fd33bab59f4a0eea126418
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95aixC95ppc.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm64.go
+FileChecksum: SHA1: c17c69b6cb5eef1cb6e49e723fcaf2a77322b4fa
+FileChecksum: SHA256: 9e80dff9394d452ded0a9bc7495e073591f9eeda8ab0188bb1a814c56cb0f5ae
+FileChecksum: SHA512: 60b00c31671c4253be812b7dd5baea5cecdb0b04f3afaf505600506ed4f9a4bde0685f78f1d2622c8fb2df0cdea2808f1457e912517a2d3ae34fd29d0fb65523
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95dragonflyC95amd64.go
+FileChecksum: SHA1: 9ab1d61a40c20891de620e46c8f2d5c1795a58bb
+FileChecksum: SHA256: 889d895d36a004558666fe17d843ac0fd37eabc21a03ae7a0dec270072c6f5ca
+FileChecksum: SHA512: f99006ceaba4b9879ff43b00338b9e1d5d1d6d82cfd0b12f51a0ccd758b6c81a53620ff57ad0f1a907daa3a25d4c9d3940881270424180bd4fb8d900c6035d2e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95dragonflyC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95386.go
+FileChecksum: SHA1: 172ec5cc7f21b7235172307f1c59cfdada94eaae
+FileChecksum: SHA256: c9778ec3de7fe95b7ad5d0a82320b19f33bb2f838c45cb364f022eb4f00b9693
+FileChecksum: SHA512: d4cf2b7c186d4047357be7b4aa28eea6548f69599dfb81ac5e951d2278f6508d755267721660ca5e517eff2d16e8be1c68f3437e74c93b03291e5592340aa5be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95amd64.go
+FileChecksum: SHA1: 5dddf94acdaf1c6f48c155d06ef09b269e8d03e5
+FileChecksum: SHA256: 008491deded8566470f104ed688fc1e4205d623961960c739351633b36449436
+FileChecksum: SHA512: 63e9359e89b65d8111da0a5361cc1f0c853d183c19bfb35ba453fd03618901532c915b446bc3067b9c8cb815730a1e0c320143adbb0340f0a5cdcb0e7924b9c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm.go
+FileChecksum: SHA1: 29b910bc321f3e81ce4dbd304fdb09b6e4922aa0
+FileChecksum: SHA256: 13afea08247561d9fae004d0bea5356840aa2563b83f79c1c10caea63683e019
+FileChecksum: SHA512: 823977c427e3f2ab87ba79163e083e39df94131e86a3623ea169e737ba7cb37c8ff1b6145d0472d7fd799e9286e0f09da90127157f2b38841c9405604044764a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95darwinC95arm.go
+FileName: compiled-binary
+SPDXID: SPDXRef-File-sample-golang-prov-compiled-binary
+FileChecksum: SHA1: 074fc192c2a7da0012b3904d40e1c6f845162361
+FileChecksum: SHA256: f2e59e0e82c6a1b2c18ceea1dcb739f680f50ad588759217fc564b6aa5234791
+FileChecksum: SHA512: 421e6441e9515d200e88c2469eaeb21b86618d0f00102dd6f46a64b7e42e46e11500d744c834d3434f14df81ae0c109588dfae397ce2a9b632a6053331d1b96c
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-compiled-binary
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm64.go
+FileChecksum: SHA1: b91d42073f1c4494b9ed2c3d97f8b0c2b885269b
+FileChecksum: SHA256: f05eb0491d138356ea9d0a369f626f22bcabde57708ffc05250cd367038daf4f
+FileChecksum: SHA512: 23a12b0170f2d37a54aa154953532a4681336bde1313c645cd910dc310b493f1109a321cccebbf36162d1b8a745231f49b7874ab3d58c5e08d4f3e8cbf36d59d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95amd64.go
+FileChecksum: SHA1: a2c693c986ae30a5ee5c858a8caa90085fe38c07
+FileChecksum: SHA256: ba47e2f26caf5a47a21a592e0261d29ad9b70cc47447556699840fc8fbe4507e
+FileChecksum: SHA512: afff850a452dbb444710f47e5891cdf6ce8a5b7a2d394f0c4a7d4cac8788a70d2b10261c5eb03beaa911b2c07df0a198a115916eb0ca5988fbf2385debb35fda
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm.go
+FileChecksum: SHA1: 21e8e2d7c41a3e3c532f61bebf0790f648cc3f73
+FileChecksum: SHA256: ec0740b7eb251a94571085f9bd27b058bac89f7e13162ef3ca763827c68e9d14
+FileChecksum: SHA512: d6b7cd6ef5bddb99a8b566597edd5e6c48533a1c291f6b4def065c29fec211ea8c9ab9143bb7b0328ca5f61642fba3c3f63f3834d53e79be20308acd510c572c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm.go
+FileChecksum: SHA1: 8d0163014e2a4f07916b0ec368855a2da6334f42
+FileChecksum: SHA256: 2e1ac6e0709af6bb1856c43def0c7ac874fae3660cc001d3861f8a460716783d
+FileChecksum: SHA512: 13885e0686341b4ca8a3a4c3f11edb9fb8a63cf93536a05d26b53c6eab64eeac537a57ba892130520eb77dc14f7ad286dacaf2ce9a186e1d96569399868e5ffe
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95freebsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95386.go
+FileChecksum: SHA1: 7f4dfb45e2483b92e400e113f748dac71991e59a
+FileChecksum: SHA256: 1d82d80f71c55fcc81db5327f0499a8dcfb35e3490439ac4a9caa37f65bb4544
+FileChecksum: SHA512: 521bb5ea47b85270df12f1ffd882b91d6f3f32e9aa9d7ccb75663557d85e5e7ee153470941bd4f5ed525b3e4726f43b28dadc6d22100ef0ab508fac418a20395
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mips.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips.go
+FileChecksum: SHA1: a81a79d55237d064573bc337a698794c183b258a
+FileChecksum: SHA256: 7324c1ad72a926e786c16f19ae87a984b3173d2da5776e63fb34a87f294c8a38
+FileChecksum: SHA512: ef239af16f4bbbbb254a7fefcfb23eea0147ede62d44f5432a61d7cc658f1972731c5823f6381bd2b6dfe6f757d331d186521e42c3b4b35b7301363aeb49c2f1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64.go
+FileChecksum: SHA1: 38141c74c6522a9d463db67269c9bb1e02f8cca3
+FileChecksum: SHA256: 5c482ba65790ae6554c15dbb40b2074309baf92035fef0a74078933887da4f1f
+FileChecksum: SHA512: c8d1c33c0cc866df16641c10251eb20d4d7457ec2396642f1b37ac433312842d290dda9624a25619339f27bbbefd378bdc3d5d4cddc760c1b0c4914e45995d4d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64le.go
+FileChecksum: SHA1: 74a029fdb6587c1781638c75eb8b6e251eb0f945
+FileChecksum: SHA256: e828893d451d57d4f5bf37beac209b598aeab87eff09e54fe5ff59ef6017bc2c
+FileChecksum: SHA512: be0b123e1f5841cfe0d0b577cc0b7de2aa9fea8a2f6e37cc26750df574ffb280b69ce8bcc6536371508eac822c3af3a8a23b407978d50b1ef0f0fd6954d04276
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mips64le.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mipsle.go
+FileChecksum: SHA1: 88ef96b4e14029987c9b173b4c97af7173a5165e
+FileChecksum: SHA256: 3046528bc28298a78a1a66ce81ce5ea9a688cec5306d0481ab3fdbce708c30c7
+FileChecksum: SHA512: 3598b475153cbe06f4220a37f9c5c76839a6988b35c04140080eb4c317d740b2d321b388d9a36ceb16a8569864fa849c9f8da5508aca3482f0b0629d3983a06e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95mipsle.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linux.go
+FileChecksum: SHA1: e14448f519b7daa7bae2c7f99ceee6d1a06ca65c
+FileChecksum: SHA256: c9c66b5bfe81ff224622664a6b2aa5b9f6e3f82b8348114f9aee2e8e4eee5c09
+FileChecksum: SHA512: 9b2adab03fe0d3ec639af271430713dbb8d87b5bd5043b59292d5a64d589b7a4c6d5104eb681d41a8b0da00a8531de4f8bd7b79d3558f84a1e9ef8e71e00da95
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linux.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95riscv64.go
+FileChecksum: SHA1: 6cc3e7fc7a7bde961fa7cbb7b852bc1cf5a820ce
+FileChecksum: SHA256: f87ee01a240cf74186bc4743a60e8b9fa7d862a897c030e4aceaff78b7b0d55b
+FileChecksum: SHA512: ceee5f748415fbcccb41be4dc81cdd3f05be768fb39b6b183141bbbbf89ba4071bb120753c238c90fa0870aa230d9e7ca678c1bf2827a3ae1e5ea19fdb6d5714
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95riscv64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64le.go
+FileChecksum: SHA1: c742e9ddb2af7f8ebdc872411e30a90177206451
+FileChecksum: SHA256: 3b3ee4ddc752429c67e4c0468e0ae6e31e06ca2b84ae45196cd184d624bcaafa
+FileChecksum: SHA512: 470ea3b54226c0dac4821c05c8c0074647ceb743455d815a5133f5fa24a5b6b4caef215473a05123123a93e1b340adced40f7ea2e89c009c76a661207f8b38df
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64le.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm64.go
+FileChecksum: SHA1: bd271db971ce053cafac8eec83775548a8c9f866
+FileChecksum: SHA256: ec69ae56b49b483d66d14b044768a687bb4981c923d42bd27667c0c1262f891c
+FileChecksum: SHA512: ebda9f8b1e9650ce829090eef2c435dfb225b5fdf132bf3d5378062da8f7c11e84a4294e55b1071ac7a39dbb78f51ec314f71c9e6dd3744fa34a1f479b4d801c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95s390x.go
+FileChecksum: SHA1: 39f1a5b8a62cedb7d7b0e0da66d12598fd4ddc12
+FileChecksum: SHA256: d8c743c0c98c33b5cfbb0b5bb68e34efcb98e2b95a5319a913910a73dbe5abb8
+FileChecksum: SHA512: 73186c459b8976d84df950832a36a7e387cfd510c67cd97ea951809c61e5b252ce98febefe57a9dae40ff084149ad43b2ba7a6eeb3f7202054dee28d3387d016
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95s390x.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64.go
+FileChecksum: SHA1: 5e970e4e9b61a4e8cf52fe9f9b4225f3cebd5596
+FileChecksum: SHA256: d777a30b79b93d039b2d0b60e5c4dba00b33e539b913d20b5cda2bd9323bdc24
+FileChecksum: SHA512: 8376d9c7a17a842eaf140d9f248ea025e8a1d486d6269d47dc492764812bf5d69a938504fc56952c752a281777b12dd40d23e65960a2bec6cccdba2e79dd40e4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95ppc64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm.go
+FileChecksum: SHA1: 39502738063b1298f3fabc90d91f9af0bfa9b58d
+FileChecksum: SHA256: 685f5b25a6cf22910c12f77ae0c5cd1a5987e441c1657cb42c96d75bfd87b6ff
+FileChecksum: SHA512: 3515889343c3ebf86718fb488365e1f1661b7561c5bc04d20ca99ee3b7a2bca60ab09f975b5d1b8e4cc959752580753b6093b1dde09ac1769d9f1440fe70bf4b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm64.go
+FileChecksum: SHA1: c20cfdd2dc23d417a8ce7f2b5d089c407b5c9a3e
+FileChecksum: SHA256: 3ca94263554f7353cc1f3bb9c20e4f2de38972bde9ec7dfb81006042526a3383
+FileChecksum: SHA512: 79cb17ca47fb3e67f30fb781269c6cc0b9f56ebdbb7efa67b4387972e41ca4db892b71e8f94aff4010ce61476c0924de915b68417ae336058122ffe9671a0fb9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95sparc64.go
+FileChecksum: SHA1: 93b366fc127f505165117096baf0c148e79bce05
+FileChecksum: SHA256: d323f58715e92de00c2401fce23062e5d2e43b900f6c17ab1b47d701b91933c2
+FileChecksum: SHA512: 03efbe0dcb06b282750d6a9f4d376ad491e3737b5003535ee4fa441176982e72caf3831c2e6fc62d08c0ffa7ea21799ad5a09e28c768d96bf9fadad1c2238e00
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95linuxC95sparc64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95386.go
+FileChecksum: SHA1: ff9f8a46d0e45358dd6aa0af26f8c14369174617
+FileChecksum: SHA256: f17a0d21e5db9acc785fbc700a0395759ba2398888d50a53472a24d6824ec848
+FileChecksum: SHA512: 756aac25166d250ae306065f9adeb3262b14cc5a08f115a68407433a28ca7b50f11b92ddce9ad4d49688ebd06f9c85bc1a428e68802d887f8cb9374e60037a3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95386.go
+FileChecksum: SHA1: 884102a7c78cb8bb8bc62bacb70a4c3bd2a9d997
+FileChecksum: SHA256: 7f151028967e43b0736cd5cbf28ccb8141431d9d0071d43fb34e0a9cf70158cb
+FileChecksum: SHA512: a1687ccb713f380c71e02ad4219fc34f73bdec1cbe044254aa6ed44b390edd439ba7155212a47a6f525f4b4e2512fc7eae6104294b89fe2ded35160f0afb7791
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95386.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm.go
+FileChecksum: SHA1: 6cedbfd732796198d442a2ff491902c2e06669c3
+FileChecksum: SHA256: 618422436f8659da0da2f792ca8b3779aefd783966ec53fda0af7ef8e837b448
+FileChecksum: SHA512: b44ddf78a2c3abff77dbfdf6b1833418f21eb4eed899e59967fd46e12d611c49e7e11765be5eeafa7b761a0fccefdc3170e9cd7fff734fd9138f582794df0b13
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95mips64.go
+FileChecksum: SHA1: fc40bbe59d57725eecc8a7c081df6de1d0efe4a6
+FileChecksum: SHA256: b5d168705bc232fe495366dfccce9e3dc1624a56b75b75942c76ec4340ce87a3
+FileChecksum: SHA512: 411901801daf4a5c73a88358882bf55827f315f91e831f23f8efe01cd903428a5f0d7a00d4a00ade229bcfbc1d4c3f3ed31e0a76b4776f673f171e88b9909bca
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95mips64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95solarisC95amd64.go
+FileChecksum: SHA1: be19ebcd56b93eee5aa92535e4ab5abf448e8eb5
+FileChecksum: SHA256: a6f6c2ae70bec39293ead4bb0982353bc4d82430b82a97370c1f754a61b73b34
+FileChecksum: SHA512: 67a3f92796ac5f2972c546ea0502e2fd3e45a8c46874ef39a0d449838be0d7e56e2c93cb6a0708919cafbe26652bf9d34c1e1875a2598bbe33ebe9646bbf8dd4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95solarisC95amd64.go
+FileName: vendor/golang.org/x/sys/windows/aliases.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-aliases.go
+FileChecksum: SHA1: e5e5e00f78a3f22c5076f87b3aa0306f51ec4785
+FileChecksum: SHA256: 1ed908469d018fc34605124b47418422091f4aae525cd91561a9d94787934050
+FileChecksum: SHA512: 733c3e3700085069940389a4f4eca3c74f76c93f8540c6dada43d55adc4f08efddbdac0a98c37a540130b5aae88c610e3a53258ba433099ae1b2a412972283b1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-aliases.go
+FileName: vendor/golang.org/x/sys/windows/dll_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-dllC95windows.go
+FileChecksum: SHA1: 6fae96457cb1b1da6df04935b40aa1400bdea532
+FileChecksum: SHA256: 7e3312a47a7835c1a3eb37126c2ad0a59508e897f9a6e2ffc8daafe9d422bb90
+FileChecksum: SHA512: 4a5bb066a9f4986122928103e8dda9386538e2cfdd8283cc615d795cc4f6deac635a750c4099a8dfeb3964a328a8a9e7b6c1bc4df5d9f22cc847ebfa8d96ec79
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-dllC95windows.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95amd64.go
+FileChecksum: SHA1: 210b2e9a8b384b2a975a8521094177eec8b29cc6
+FileChecksum: SHA256: 65c69808ea92ef8510915c2856c237f8eefae71e60326feefb97addefafb007e
+FileChecksum: SHA512: a857c06f6bd7fdfa13e4d77d6ac037b0dfa67bb6900c61c6311bfdb413a0aabde2bb9fc9fb0bb5d16482bd781e13a4699d898477045441e06051a81fa042722e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm64.go
+FileChecksum: SHA1: 28ad918b6302cc60569d0c5a4c1f88d7d1af1600
+FileChecksum: SHA256: 90cffdb84cfd9fd2a1cbbe4d4c3c5b6b3d680c3ab83345d11b09bf6896600b45
+FileChecksum: SHA512: c3c98b54fdf99d2fd698de47d1d719e02f317d246f8d8882a5667d9630dc559ff84a38db8f53c237e1e913d51fdf45e55466bc62a6ee2b4b33a1fc46d9863ee4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95openbsdC95arm64.go
+FileName: vendor/golang.org/x/sys/windows/env_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-envC95windows.go
+FileChecksum: SHA1: f8502f233ac1815792399474070acb52f99c1086
+FileChecksum: SHA256: 69a9e0a6f465c88b24699ea8b6f587c679895ff2d34ff5a6a85c4635192f0a89
+FileChecksum: SHA512: 32fa02e38d450fc0af1c4cea70153b0a24dc07cd09687059a89ff8b9ec22cd8014c51f852dd6ec9cb1f95a6d15d55248c1bab4c47342d05a8a3723672d8328e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-envC95windows.go
+FileName: vendor/golang.org/x/sys/windows/eventlog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-eventlog.go
+FileChecksum: SHA1: 3ce2b39fa9a823de73c2a2129e6c0620023aaa01
+FileChecksum: SHA256: 36e6102d274d20dbb5f740376453bb6ab13e02c86e2be706857a07a236b5682e
+FileChecksum: SHA512: 020521f8d914f1731912f6560de4296bb2916a73e44a2f04b760a15f034d2ba8819c501bef307a01939bc2acab4bbebaf1ad14dee3d9e517f88109a7994f440d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-eventlog.go
+FileName: vendor/golang.org/x/sys/windows/exec_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-execC95windows.go
+FileChecksum: SHA1: dcae2b3a07bd1b6744d1f7093b9775fdc2d33ad6
+FileChecksum: SHA256: fd58dc33d892badcfd5238722dbaa3b71b0d5e3ffa7a23b36015037530d56146
+FileChecksum: SHA512: f7dda2b3f43f8f3076b3596fd198d706deb546f0bf58a883b9d6c9c8f7b42cbb54089d407a238ef07633b68df32aac20e4329690288e3b1a9b7046c386cd28da
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-execC95windows.go
+FileName: vendor/golang.org/x/sys/windows/memory_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-memoryC95windows.go
+FileChecksum: SHA1: 1a42b4f8cbc56b1bd0ba5b4e7b9529d25298cb97
+FileChecksum: SHA256: 82907ddb3340e172e94dabf6ef67c7ebad86a6ab64b6e7f120316342306125e3
+FileChecksum: SHA512: 612314881ae9a6654228dccf99d977dfac606491b2c5b08acf07837f52f2efe189c3aaaa661748405547af5569acca5acac5a1c760761b66fbb54a4a7686f32c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-memoryC95windows.go
+FileName: vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95amd64.go
+FileChecksum: SHA1: 63cff8a88677412bd8d49bc02ac31be0b31d3d15
+FileChecksum: SHA256: 2fd474c806420a79486659d6d788708abf1984ec9d02db2e3286975f3cecb60f
+FileChecksum: SHA512: a5644356ce3c74b4b7f2c20a23de9bfcf1dd97768123f5e3da26d73c18110b52349046f4e45a3c67560dbfa5fee9f0a531b90967712478edb832802764dfd7c1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-unix-ztypesC95netbsdC95amd64.go
+FileName: vendor/golang.org/x/sys/windows/empty.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-empty.s
+FileChecksum: SHA1: 11cbc3d132fe501a67234bf084d6246520e24fba
+FileChecksum: SHA256: 5975f1c94dad8747a68ec8f25132a881c75767037383d6ccf7f71482027df255
+FileChecksum: SHA512: f7dba19418cea0624a375d32fd0990343adb2c0860ba9fe8e85218a36c918a8e1d28247d8e266ce0698db9d9d601d3fbd2207d25b6004a3ecc7d7fdf01e0ff0d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-empty.s
+FileName: vendor/golang.org/x/sys/windows/mksyscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mksyscall.go
+FileChecksum: SHA1: 38bd26aea2ce77a9a7c25120435aaa7936faea4a
+FileChecksum: SHA256: 75e3e06901fe36bbfbbf63c7ae085cc90e2db6a0181042e852e4f31c31471574
+FileChecksum: SHA512: a939cefe546be202e4db4436f47470ee34a8aceba904cae3c1b70137bca07bb7ac02e6a1377de7d093f070a8c80390081d148605c1f21f9a695fb1d8b8e5f7fd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mksyscall.go
+FileName: vendor/golang.org/x/sys/windows/race.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race.go
+FileChecksum: SHA1: 9e762e679b01380bea7131da343b5b30cf4f52a8
+FileChecksum: SHA256: 42c5afa9e5a630f46ed19d1f86ed902e0d6502413b42cf641d7ef703c0c2db6a
+FileChecksum: SHA512: 508830765ec8efbff9717bcb3af2d677816a58136ef661fb681b9daa26be1bdded07f7de19db4d57b556c0601be463471b45da20856214e5c5f8a3e954e75f77
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race.go
+FileName: vendor/golang.org/x/sys/windows/race0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race0.go
+FileChecksum: SHA1: ebda10ca4665e783dcce5eca71e69849a76d10f3
+FileChecksum: SHA256: f483ad20eef4aedcabc598060fa414eab96f19e3391d1d65d9aec420d64ffd9d
+FileChecksum: SHA512: bd5d88414ac86160cb5a33bc5a912696ef91e0469e79d1f38f67a2b070775c1bc93b5d3fd2bdcd961d37a788929c842d786901857847399c5b297af47961cfd7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-race0.go
+FileName: vendor/golang.org/x/sys/windows/registry/key.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-key.go
+FileChecksum: SHA1: cf78f212f4748f573d0805a8f3c7101d0f7af23e
+FileChecksum: SHA256: 1175aabee8d434d7df9215187c0f6abe247aef5bd66d8f6dc1aec9d033543f47
+FileChecksum: SHA512: a2da7de5b14ec54c6cc009c8ac1d716a5a879fcefe8a10dba9551a0c18186f074687b8bd496259d085c6253e1031d90bf2be3e37753916761f3b2a0afe14ba5d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-key.go
+FileName: vendor/golang.org/x/sys/windows/registry/mksyscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-mksyscall.go
+FileChecksum: SHA1: de70a6826e91ed83de7c7845f9afbf54a13c9afd
+FileChecksum: SHA256: 461d175a0c8f4b059283e7a805d51045cff1b222d7850c5fd710c2cfd36fd328
+FileChecksum: SHA512: f8c5f7f7f6e28e7df1bcdb3024e39f635148a933a3bc2c9e56f07975f414a55b83737c26f2a87cdd254286ea8830c4d0c6f3f117bb0bf808a271f1c21a580af4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-mksyscall.go
+FileName: vendor/golang.org/x/sys/windows/registry/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-syscall.go
+FileChecksum: SHA1: 10d163b3c86f81db37c567eb6f233bee6552015d
+FileChecksum: SHA256: cff387d9d893472d8a44a41b0caf0d899dfd6f473754e88993bfbe055bba322a
+FileChecksum: SHA512: bfc182e3c4b2c7574d23ff94c9ee85af54605ebf259c07dd3322c68010660d9e8f1fe886d7aad4703f3f67917363c956723031df7587de0ada5e50236e93c9eb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-syscall.go
+FileName: vendor/golang.org/x/sys/windows/mkerrors.bash
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkerrors.bash
+FileChecksum: SHA1: 0fda141880bde8e04f5c7174646d80dd03e0ec97
+FileChecksum: SHA256: 804b6eb1e92950f9581554dbc9ac86bd6e8ee9230d5cec1610c8990b2ec7cf0c
+FileChecksum: SHA512: 3e969d77ed2d8f0a49035123a00b4c3c53b5a7b547a0ec8feab567f69e76836e81173d6c7d17ad4283b4ca0a1921d14b55c38656d03fcaed7b12959e21931bfa
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkerrors.bash
+FileName: vendor/golang.org/x/sys/windows/security_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-securityC95windows.go
+FileChecksum: SHA1: f0a5e1e876a7b0f1bcfb4eec9a016a3adb3e3db1
+FileChecksum: SHA256: fd0e4b53729aa5e757ec26b823eb5046465cc044bb352332a631af67d4d6e6c1
+FileChecksum: SHA512: 5cb450cd409a8dab7f18b79466100bef950729b6790635677691fe3c22b8cc7759a029559ec54d607b39248ab5b1d693e2087a7e507dce84f813257a19251695
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-securityC95windows.go
+FileName: vendor/golang.org/x/sys/windows/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-service.go
+FileChecksum: SHA1: e90c1c1e935a66eb14a7aa0cbc053a6fd097b28f
+FileChecksum: SHA256: 11f1923bc1304d7be713395a6eba87fb421725947a1f5ce291e2c04dd9e2eebb
+FileChecksum: SHA512: 9528b651f68d46ea68ab071a33f1c3a967d51f514d5237de2258c705a3ee5b5f01c1e817df94d2e98d5a2643fe55b749e295b31fc20cf350247d61a1f8bc0869
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-service.go
+FileName: vendor/golang.org/x/sys/windows/registry/value.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-value.go
+FileChecksum: SHA1: a3c78d4cda98c90d151739a9aefb8d1645e0c406
+FileChecksum: SHA256: a4a711683eb91f48f9c4d2aeafabd0ca406e0ae20fe4394721a71fb15817e1e6
+FileChecksum: SHA512: 7551cbfd196ce9989c864803c28d0f6048cfb6c8e41d20ca3769b72faf00bb7bf798e7fc6e01693b820848346983f9b4bf0bff110c969504d4e6d4caf3b33940
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-value.go
+FileName: vendor/golang.org/x/sys/windows/mkknownfolderids.bash
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkknownfolderids.bash
+FileChecksum: SHA1: 47befa9cca71a351a3d2f10d930793103af1089a
+FileChecksum: SHA256: 3b7f6ac42ae1e73aa8d06d4f89f18b91916f153b030e9c01e15d41959b6b5fc6
+FileChecksum: SHA512: a3fdf99010bdb0931ee52f90d88d3b3a956594ea450fd6a455ce9847fe0956867eac1a871869bd396ecc683864bc0347b9d22bb3880175e21e8b9b4f0b1d6475
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-mkknownfolderids.bash
+FileName: vendor/golang.org/x/sys/windows/svc/event.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-event.go
+FileChecksum: SHA1: 9ed79510a8d9de2e66462790935e49baa9a90c75
+FileChecksum: SHA256: 6922816cb0ed1cd9450b83326f2c2dca91c1776b0b593bcdba74330e70dd0e57
+FileChecksum: SHA512: 628c1797b88d86e148db27342580435d9b3069a7c64c5b94bb3752010fe6d308817f07341a031eac5d519465bccc687eb6bb7f36db48aad022f75a136461851e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-event.go
+FileName: vendor/golang.org/x/sys/windows/str.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-str.go
+FileChecksum: SHA1: e0412c7ae5a8a37dee649eb5334848c9634f13bd
+FileChecksum: SHA256: a979ea38da92c56dc17baa7fce72bb82ac4353867d47c5240cee4404bf356875
+FileChecksum: SHA512: 06fb0133dc58c397cbf06696d976600fa9a257d5d90560f9a38dd9b24dd22d4fe21821ced69c8e631e4f9990c38b78ebdc182f2b69af595e11c8227ae8db87bd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-str.go
+FileName: vendor/golang.org/x/sys/windows/svc/eventlog/log.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-log.go
+FileChecksum: SHA1: a169ef7205085cbb970a49593cecf898f5c5db3d
+FileChecksum: SHA256: 43c2f4dd4a8853ced566d5ded602b083d6ae7f0a1dea9cdab4a453f4b9046f7c
+FileChecksum: SHA512: 44774b635e4c186ac8ebd243d30228a677e450d5af266fad9d57819ac0721ff3f9b1fc4d02b3d6442d5b635713d497d6f901443f1431632c40d32886e85298d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-log.go
+FileName: vendor/golang.org/x/sys/windows/svc/eventlog/install.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-install.go
+FileChecksum: SHA1: ea782aa61b886dbd85aa3e8a20796be94a124ae7
+FileChecksum: SHA256: 5ee399b7a87feb954aa54ec30af1168f407a4c8aa451fb6ed9e6dcfcdb75b59d
+FileChecksum: SHA512: fdd9c64209e395c1641fe662edd12ea7094e8ba07f0d1d9792344e84a84a25e6fb62af6f3ef80f3ad48ffd658cea0a5415123871f0855f55e3ebb335f41da56e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-eventlog-install.go
+FileName: vendor/golang.org/x/sys/windows/svc/go12.c
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.c
+FileChecksum: SHA1: 4ca2262628c61e2027ed83fa2a5f402552a4e5ac
+FileChecksum: SHA256: 1b2da90d219fa20c82bdaf50bfbad2d21b7240a23db88df850ca7b6e672e92db
+FileChecksum: SHA512: dd89e733d1b863d5dd94b7a6f03d130e5e5f9956e50b9627f5bb6f9e8446223765bfe81362a53aa43b7933481c2a612dfaa74d73dc188330c441068aca7c55d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.c
+FileName: vendor/golang.org/x/sys/windows/svc/go12.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.go
+FileChecksum: SHA1: db2a0fd8ae766bf14f1fa2d308f35f9e5aaf60ec
+FileChecksum: SHA256: eb75915c6f6e3abf638720b452bdad4caab5aab30119ae65753459bd7aed85c9
+FileChecksum: SHA512: 116a549447201518d297df58a2b1d45539eb695548d0d651be4daf8ef615cff8798d23053e38bd7e81eabd40ef34faa0389fa6d48ece917dcd83a46b9ef451e8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go12.go
+FileName: vendor/golang.org/x/sys/windows/registry/zsyscall_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-zsyscallC95windows.go
+FileChecksum: SHA1: 6958a3cf13e80de899d3df5ce102d1babc448be6
+FileChecksum: SHA256: 465f93935dc8f41633e71546c7166d922780a780d265d06e5144084c9249733b
+FileChecksum: SHA512: 74dc96da1a83246e5dba93605797cd868440a38f230ed5d41754285b440a46652dd664b93dbc6a36a331c7978617d964c3d8b6c9d7ba9e78bdefa596ff0a31fa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-registry-zsyscallC95windows.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/mgr.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-mgr.go
+FileChecksum: SHA1: c442007ade3672ba5b673d0ba785b7824dfd9be9
+FileChecksum: SHA256: a166966550645f5162b9b095c897b5109d5292726e24889a13dd4e7959b2d424
+FileChecksum: SHA512: 9ef35b4839326b035fc4fa7eaac775847946d854b8f6ab5e281f13086419efd4e1598bae2c122e99cf74bd5f487cd69972a01df3bac2872bd9ad1d7bdde76206
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-mgr.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/recovery.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-recovery.go
+FileChecksum: SHA1: 4f79f7b2e07044b810f1383c9c1acff111042bcf
+FileChecksum: SHA256: 407faccbb472bb63079da2ccdd7be81f18767cc1174f22f8881b963cc1b54eee
+FileChecksum: SHA512: 81659bc38b5b2671961afd26670b98e70cf79160ccbccc2eb2e708b7752646713df2c9b5e95260c6affd59e8cf3312209a8a36d22ded4e5fbb34721f330a94aa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-recovery.go
+FileName: vendor/golang.org/x/sys/windows/svc/go13.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go13.go
+FileChecksum: SHA1: 58f4bd5b4011db2d8d58c5e10a503ebb711b76f6
+FileChecksum: SHA256: 75cab8f19c90b33574f64f59d7a926425648e38ef178362be7f5df1752ec92f9
+FileChecksum: SHA512: c0099c640a4af284f691f06ed13f7f5607ed120fa2146783e4d054f77ab4a751bd371d4a8bbcce8b92fc46c8b9a9c1320b5a0a2b14774024a5c1751335ce34a4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-go13.go
+FileName: vendor/golang.org/x/sys/windows/setupapierrors_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-setupapierrorsC95windows.go
+FileChecksum: SHA1: 436a97d64a058dcf82cdf856d4c763093b80d7c3
+FileChecksum: SHA256: 725a91556b9733aced0d776a95a00ed0d91d7ef6c2c2c137235fa1b62225cabf
+FileChecksum: SHA512: fcfdc58d0b48c4eaff23407b8334a7e27a4b2599a50fbe4c881a9b29ffa58faad7e3101186172032c3c0b80084cee49aae0a9c9904f94f4caaa5d59729df5d86
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-setupapierrorsC95windows.go
+FileName: vendor/golang.org/x/sys/windows/svc/security.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-security.go
+FileChecksum: SHA1: 4da5215624b4998619adb9fda4c0318c9781741d
+FileChecksum: SHA256: cfeb4e898d7ea9dd539da578e9e03d9911e39b2f093656a852193fd0f05f22f5
+FileChecksum: SHA512: ffc8354ba603ab64b6106df1ce3137b3e39e57e455391d5829a29c7219bba338fd54df5ecad60f195109e3c63618a667be826ffa37644e25f8b71105fb851c36
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-security.go
+FileName: vendor/golang.org/x/sys/windows/svc/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-service.go
+FileChecksum: SHA1: 9b63efc826f731182c67aea57a542934967a7d97
+FileChecksum: SHA256: eb513ede8a0a994ae003b87adc5cb64a7623020166a3db1028d61296fa2d9ac1
+FileChecksum: SHA512: f014d7c595cf94abfe6b144d945133ecd19fdb3a61b856270e76777b837893ed2d1165b1351cef371d92455fcd4f2ce197d254dacace4ddb389f243f9afddea0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-service.go
+FileName: vendor/golang.org/x/sys/windows/svc/sys_386.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95386.s
+FileChecksum: SHA1: e85c364bf90fe6b73176008fbcc8926a6d06e589
+FileChecksum: SHA256: 60ef09de8cf9672f6e2fca6b526a0b36c863eb9ee11dd1f4c95462e3d664caed
+FileChecksum: SHA512: 729613883871db97f01a956e654c553c4393626038b2c5beb8e079b701a96ae917850d4854517f631c25c0a91dcab137631a98a6ac5d12bab928b6d231dbabac
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95386.s
+FileName: vendor/golang.org/x/sys/windows/svc/sys_amd64.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95amd64.s
+FileChecksum: SHA1: 59fb11f442c2dee6e99eefed36ef182ad203820d
+FileChecksum: SHA256: e7fd25a47e1e85709b1b340f15839937ffd9a1dd7ed03f67be35af0a14eb71de
+FileChecksum: SHA512: 6be61c1b142323bbff107d81510e527ea418fb482e79980ef9c394c95caefd74b9ee1f81690a7fd0beab2ae5b943e1c42ea9dd0d1142485acf1beb8ee3853cac
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95amd64.s
+FileName: vendor/golang.org/x/sys/windows/syscall.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscall.go
+FileChecksum: SHA1: 1f71ffcb90c5372bc5af1e63a148f8a51027dbf8
+FileChecksum: SHA256: 870a4e27224aa6f110058b4b7756ef315ec0dc96060892f9d2a6fb49c3d72d82
+FileChecksum: SHA512: 0f2ea786c93d784906ccc31d0d9afad3a9ef81e2682bf9d490472a58bec942cbaaabe087f5e4fbc7e08fc309d37e6e96710a5c9cfcc6254a5682046028cc6a64
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscall.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-config.go
+FileChecksum: SHA1: 4eee8a3c979271d17733e6841d6352e25ce9b0b8
+FileChecksum: SHA256: 0362e7b9f59a7380410cf29b7e1f4ace8616357da42e82a1fab02851522e0124
+FileChecksum: SHA512: cf38d765f8b43e5e8f1e8bd64acc5782742540cb7840c651a8738f285acbadda22aca6bdc3b3713097736e1f146cea585cf7a52dc445850034843692079f9edd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-config.go
+FileName: vendor/golang.org/x/sys/windows/syscall_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscallC95windows.go
+FileChecksum: SHA1: eb681f3652c4349ede05708c0aeab32edcf07919
+FileChecksum: SHA256: ca562e567f5a493ed4617dbfe804db2e229c5ab4bb261415163984b84a8fcac4
+FileChecksum: SHA512: 2c99d1d804af01e0eda414080212cabc03e10bdcfcbb7f042add6ed2d058df3b57c5528e657d52169d9028e680dad9f86d019fd0e461927e2c5eee31bac80219
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-syscallC95windows.go
+FileName: vendor/golang.org/x/sys/windows/types_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windows.go
+FileChecksum: SHA1: 8b834b9e974377a4725a1d42843f3ca4bc7e0e38
+FileChecksum: SHA256: fe170ab50efa1aaa307bf3e1d41d66bb6f57f02c33b8212bf5bf8755583dbebb
+FileChecksum: SHA512: 6e536127f1a6f840c5e4d7a82e2cb4d4e53223fd7112037ff2cf5bf562634b2dff221c2b8b5d1aa2d536a714592a65f4b69acb0b05e25ffb66720d444bfed62f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windows.go
+FileName: vendor/golang.org/x/sys/windows/svc/mgr/service.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-service.go
+FileChecksum: SHA1: a126682d154fffdcadffa7faad68f232babb1493
+FileChecksum: SHA256: ddaae837e153a587ae70589add91cfb75c5cb251468238302bedad50a375c9ec
+FileChecksum: SHA512: 24a9674c942e0132ba0cd25174e807caf5c8488e153ce814845d81a5a44b2c18d31996ccab2bdf47dc49b9d6f65d2494f8c4c9c6cb05ab2f7441b211bae5e760
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-mgr-service.go
+FileName: vendor/golang.org/x/sys/windows/svc/sys_arm.s
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95arm.s
+FileChecksum: SHA1: bf05c7141ea16a0cab13e6b4c5c47a4f36839796
+FileChecksum: SHA256: 9ec3d8a5463f4e35021e7f51d53e28615324c2dba126cf5412710c8a56b8ba7c
+FileChecksum: SHA512: bdda832369951173b674ded432497b29b243609709597e2b39e8af39ccccbe881afeaa39a8ebc3c286668682079012761c925497029c1d3c03deaa31c360884d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-svc-sysC95arm.s
+FileName: vendor/golang.org/x/sys/windows/types_windows_arm.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95arm.go
+FileChecksum: SHA1: 3c107dc5bf98770e232e68957082f4edacbbe4f1
+FileChecksum: SHA256: e4dade4b688c7dea2a0d89a819d6917f3ab7be2514e462d7eb2fc2052cdc625c
+FileChecksum: SHA512: cdb23cc75756d71090099bb11ebfcd6423c7cd3964162e364ebd6b632414d57f4ec2d80cbcdc5328f94ddd284f6070a7aec6b44dbb9c34bba8c125e79e526210
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95arm.go
+FileName: vendor/golang.org/x/sys/windows/zknownfolderids_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zknownfolderidsC95windows.go
+FileChecksum: SHA1: aac1a33e936a6f37039017ff09f3aecf75041bca
+FileChecksum: SHA256: 3815bbaa8adf5400041954decc56e8889eb56eb20bfc30053e7799703af0fc95
+FileChecksum: SHA512: 5f00ea49d6052e8173c685b0d951119839098b75ab78ef2aed78196755d3007b6a25dd5a79407a019b5dc9ce1e76c297e6a4c99ce7ca30d26818522b48f55023
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zknownfolderidsC95windows.go
+FileName: vendor/golang.org/x/sys/windows/types_windows_amd64.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95amd64.go
+FileChecksum: SHA1: 60d993369512552dfba790c5ab90571fd4285323
+FileChecksum: SHA256: c375406875cabc6447a9a8ca917eccab2227ea33a17ac3ed02a3a8fca0af8ce1
+FileChecksum: SHA512: ad7c80879c4e21a29d1c8a44f59238f419fdcd5fa4dd02bac0ef034e20dd3c664ae51240fee1e1555155fadb1eb80c1a366336e638ecd47b7e3a4df3df5b802e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95amd64.go
+FileName: vendor/golang.org/x/term/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-AUTHORS
+FileName: vendor/golang.org/x/term/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTING.md
+FileChecksum: SHA1: 9b74d788ee920c4a230b46d3e74714da15462d0e
+FileChecksum: SHA256: 6f509e4bff3be1f056f1d8d5224c5e8eefd61fdf62c57fb1d0c8c6ce369e56e4
+FileChecksum: SHA512: aa9b1028732a658cc51c8ca77378fad73fd5de89cec067aed8cc39ce12075ab4a85f1e7490b2ce5b81b5c1b95e00ed435ff7ffa19356fa8c4ff1719ef4be67a1
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTING.md
+FileName: vendor/golang.org/x/term/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-CONTRIBUTORS
+FileName: vendor/golang.org/x/sys/windows/types_windows_386.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95386.go
+FileChecksum: SHA1: 0f929877d2068f4b5b41baa9e9c5e95350c08c8f
+FileChecksum: SHA256: 02d259fd40882f68a35913b0c1d3320054804d92a4a7a4e6b86b1816c1b90258
+FileChecksum: SHA512: 43baa3e300126538e0f25e4acf893ecec028d50f0629b4df682185e6be3d32fa2900adb547eb391986156d6524d6de4e6836653431e8b21da2289c19206a7c0b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-typesC95windowsC95386.go
+FileName: vendor/golang.org/x/term/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-PATENTS
+FileName: vendor/golang.org/x/sys/windows/zsyscall_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zsyscallC95windows.go
+FileChecksum: SHA1: 7ce5e950790e6963f32ba915a007c059f4cc72b8
+FileChecksum: SHA256: a9214631fbb4075a950f2ad58595573c9413ad9316a5cf1b04f076546244a289
+FileChecksum: SHA512: 8e886b071ca87c7ac1ac43af3ef9ccf194275a41c009ad4fb424c70508984d096814b42871b195902f4451f92bac27275d26dae477de078c958fb2f997aa5cfa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zsyscallC95windows.go
+FileName: vendor/golang.org/x/term/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-README.md
+FileChecksum: SHA1: 80e42defd262b25d2231ec2f16f5e0d8dab245ac
+FileChecksum: SHA256: dc6056ecb2f38bbecf042329bb70f3798834411bd8851bcf9434876f9b7e1c49
+FileChecksum: SHA512: 965619fb7ac342a5107e02bba0fab5bf5489eb5862d984dcfa1b48b50a3835cd340a430ade4d184a51d53c3647ac647422f7e39ba10df32d937f0c9fe29cbe57
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-README.md
+FileName: vendor/golang.org/x/term/term.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-term.go
+FileChecksum: SHA1: 1b645878fc30cc576a74d815ce42d1477c8c2713
+FileChecksum: SHA256: f5c204ae48e92fbc77604dc5e47448fccae46f92ed7297784be76a76f9bfe2b2
+FileChecksum: SHA512: 5cb55ce1b44151e034245d6b70d0167a1b16ba113f38352cea19d46b25510c2c345500766a2bd5f19c45b287a18a19a44d5051029b04188ecd389d11bc6d9f85
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-term.go
+FileName: vendor/golang.org/x/term/term_plan9.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95plan9.go
+FileChecksum: SHA1: d701d03fd7adfafc43fa7cbae4051e2ed128f7a0
+FileChecksum: SHA256: d2317483f1077eaab2f6a33c1b31704cb072fbdad75b5bca67aac8f0a8dd175e
+FileChecksum: SHA512: 3cd4a7f57c795eff18565e623159a4f28eb636c01257298ede53535499f16fb83b45b6d77a6c154763b06022c0156c03a4f3e81500d9204f5c83f3a020575635
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95plan9.go
+FileName: vendor/golang.org/x/term/term_solaris.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95solaris.go
+FileChecksum: SHA1: bcb179176cae96143cc740425d281648828341d3
+FileChecksum: SHA256: 1766d8547f1aed10b595b463e801aad012f976576de2ab39c6e8634a65bb7d8a
+FileChecksum: SHA512: b7131816a27922e79310cce16f570d6b6da87f459806a942dae949528fa8599c54f2aed44bf767af22c42b361fd1ed91121a52c2da942ca73a29aa87ac9ac6b0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95solaris.go
+FileName: vendor/golang.org/x/term/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-LICENSE
+FileName: vendor/golang.org/x/term/term_unix_bsd.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95bsd.go
+FileChecksum: SHA1: 70a2d632541f61fd028a406b78d032feddfeb8e0
+FileChecksum: SHA256: 8c4aec715810b3ca0880a43b6fc2ec3adadb009e0f0379c05fcfce963f818457
+FileChecksum: SHA512: a097ff3cf5ddd77f53a8e6d0818e0f663ded778c3e681d4890cca7bd1975e99f144969f68a62afcc569f9c00551ae7ef1ce41c687d6437a774c968ac6e3705e2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95bsd.go
+FileName: vendor/golang.org/x/term/term_unix_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95linux.go
+FileChecksum: SHA1: 6f221a088fd57e795ec49d9630a5878704580548
+FileChecksum: SHA256: 1b97cc798b7ffe742de08f1478ed0138b003287299b894b34010c2fa3edbfee5
+FileChecksum: SHA512: 1123b92621c05e37fecd43d7fbf9c55e2b72990eaa8abf3e3fad055d84be6ce9e90e4e1019d4f0f6d65d9d21ba264cb92aef1f21ce077eda748a9ad82ad8682a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95linux.go
+FileName: vendor/golang.org/x/term/term_unix_zos.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95zos.go
+FileChecksum: SHA1: 9e1922a35001441a9fb84da147c9aee212bc3d4d
+FileChecksum: SHA256: ff5557e699c9fdd35d48cc9f396abc5947a269f68c7052ceedc49d6d55d08c33
+FileChecksum: SHA512: 3bd241e6aa0c4df850439f53308ddecaa5feb2a1a7345880d024d2218d41f83ff216593a8b16344966bf5969b79e6d8f86b9e92729d6b1f21ae1c758a8461ee5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95zos.go
+FileName: vendor/golang.org/x/term/term_unix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unix.go
+FileChecksum: SHA1: a8bc1dbf078b349ec575f420593ec5e2b50591f2
+FileChecksum: SHA256: be81eb889875801a27c1b038de4d021762ba30be7d274503b9bb2b15bfed1f42
+FileChecksum: SHA512: e463ce9934e3e05ce794acba63c6d7cd60df71a2880af51881e451b038a2605380ea47114d94b63ce0e1a3899da086b500037265f87002623fdbff6b63ca0b37
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unix.go
+FileName: vendor/golang.org/x/term/term_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95windows.go
+FileChecksum: SHA1: 9f4518b934cc971e0a13d0ebc9200f55e970fa98
+FileChecksum: SHA256: e1d8fbef7e3e5c93700cd15cacd44bed66aaea51b72e70da3eb50655e7018f20
+FileChecksum: SHA512: 327862807243386e79a6530292ce8566b174e0cbb17226cf97003e1dfdb160a3330cb53a318067d5db22552ed2c91231abe59aa917ce4eafcc18397adb8d20ba
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95windows.go
+FileName: vendor/golang.org/x/term/term_unix_aix.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95aix.go
+FileChecksum: SHA1: 6f221a088fd57e795ec49d9630a5878704580548
+FileChecksum: SHA256: 1b97cc798b7ffe742de08f1478ed0138b003287299b894b34010c2fa3edbfee5
+FileChecksum: SHA512: 1123b92621c05e37fecd43d7fbf9c55e2b72990eaa8abf3e3fad055d84be6ce9e90e4e1019d4f0f6d65d9d21ba264cb92aef1f21ce077eda748a9ad82ad8682a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unixC95aix.go
+FileName: vendor/golang.org/x/term/terminal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-terminal.go
+FileChecksum: SHA1: 5c6d03311df4df1d16255a94a1cd593ac541a07b
+FileChecksum: SHA256: 83876d06e519d375e298b9b9b72fa5996402925b521ab6f5e364d00d49786352
+FileChecksum: SHA512: 4e6ec4c993bbd2d5606ec512fcc476803a76ae74fe45d5a98bb0a7fd30720f39ad3039228c22e256fc96d97df9a32a625098a7c750d5cf0c063634bdadc4f118
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-terminal.go
+FileName: vendor/golang.org/x/text/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-CONTRIBUTORS
+FileChecksum: SHA1: f09740ff46df61de932b77cb283fea09c8849292
+FileChecksum: SHA256: 9a8de5acb21b2911cc799e14f943b8974b281f503637cf92aeee4f01aa568e03
+FileChecksum: SHA512: 3741a8a46d9cb4b87e6e54caf2dcf3180a2bbec1119a7dbc093dbfcd527d2c668b0ecd369fac2bd8cb60da0da19dd10d3db4e7beea6b4895ac0620ab51b2e6a0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-CONTRIBUTORS
+FileName: vendor/golang.org/x/term/term_unsupported.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unsupported.go
+FileChecksum: SHA1: 3e3f12dcd55a87b2099ae01bf97907a15ce2a66f
+FileChecksum: SHA256: ee08bec9a60fee72932ff6ad0987cc3e7fc833b85dcb4b387d635df9da881ccb
+FileChecksum: SHA512: 3a122c6d484f055246938c2260866b9c10874837d28d43f89abe07a6a8c111f8804edcf38102ff44fba9819c939ede22bf83f93c939f885b1eebf3a20747dc56
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-term-termC95unsupported.go
+FileName: vendor/golang.org/x/text/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-LICENSE
+FileChecksum: SHA1: d6a5f1ecaedd723c325a2063375b3517e808a2b5
+FileChecksum: SHA256: 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067
+FileChecksum: SHA512: 5bbb2d94184f661d95ac3db758b72a9ce25d409b1179264634bf0612f797424b15a3f6e02069442a75561ca5054e4c4111b158b8dce4d545a7348f6392506a35
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-LICENSE
+FileName: vendor/golang.org/x/sys/windows/zerrors_windows.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zerrorsC95windows.go
+FileChecksum: SHA1: fe933b6c458b02a0b25865a6e8401e412b3d160a
+FileChecksum: SHA256: 7e8a3410b5b555b95f5fe31a52c32aff856bbd8ec3980ede5eb6195aa1e428e8
+FileChecksum: SHA512: 1cb80aff565572116c595f383f8670a41e395724562689c05a3d48772fac09e8419f98b1213fde82171506b0ce2976cc7f65445dcc5911bd6ed1220d47bb6645
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-sys-windows-zerrorsC95windows.go
+FileName: vendor/golang.org/x/text/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-AUTHORS
+FileChecksum: SHA1: 4c4b3b81193d555e75fb0fb443ec48dce29f9b68
+FileChecksum: SHA256: b82446c166daa6932dc33418961ed7a7f06c5a9fee17e9d214e16079e3442757
+FileChecksum: SHA512: 07c6cc0c4dc4993dee74251fdc015ddf2dcfc0bf42a958eec9819588e559f43a6d5cd0ed268e4e778271e7c272e37df84d23eb08ca623ad04cce8beb340afa84
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-AUTHORS
+FileName: vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule10.0.0.go
+FileChecksum: SHA1: a0c100c5fb2f44b5ef9c7a3fb1f1a8a14dab6045
+FileChecksum: SHA256: 2d8bf3b869ce1cd76417e6bb02d54bb26fe6e170485ff7519bebaefb8dc0210e
+FileChecksum: SHA512: 5407df8d83243e450694ed43f1fe98d1b4e53ac1cad12df9bec09b2909a560f5394153beaa5929dfca34d9eb18d3218c1545b1f1fa26b0582517903ee3df28f2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule10.0.0.go
+FileName: vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule9.0.0.go
+FileChecksum: SHA1: 4a0fb3c739c72bd34771fc112e6863ca4fd48100
+FileChecksum: SHA256: f77822027a5728e6cd742a132ad29afc33b37c42ad30d791f9ec906988a680b8
+FileChecksum: SHA512: 2347c3235ec858f963321150cb5a05fe9a2e6d46b39ad42f1e3affd22f93132573fcb5d7bc2832d9c8c952a4580d2e9a60d1c2a58c18879a2a1b9ecfa5118b03
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule9.0.0.go
+FileName: vendor/golang.org/x/text/transform/transform.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-transform-transform.go
+FileChecksum: SHA1: b64b143bd0de4a866b18bc4cfd29b50ffc86af74
+FileChecksum: SHA256: 7716301e210f42b764ec78f4adffb05075f1d5103446a40b8a38043f5a7abd88
+FileChecksum: SHA512: 7574d7534190c3b3bd9554bf46c83da9adf98497553e64bed832eaefa38b8199648c5bb66d205193cc0000fc1298d6cc8e66b2ab43188f51c192d98257d550e1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-transform-transform.go
+FileName: vendor/golang.org/x/text/unicode/bidi/bidi.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bidi.go
+FileChecksum: SHA1: cb8318cb564d15624b007e2e209c1c7c3a46e445
+FileChecksum: SHA256: f1c6f1e2261041560e30747c9a1c25313f7dff9fcd5772a6c261915aa70f00a2
+FileChecksum: SHA512: a0365b33af605a091637b98bfeca210192e43776cb65dd4aa61c1a9a3768e6bdd870030c37385374c5f176c32459d057d883bc68370a56c9ae8511939bff556b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bidi.go
+FileName: vendor/golang.org/x/text/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-PATENTS
+FileName: vendor/golang.org/x/text/secure/bidirule/bidirule.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule.go
+FileChecksum: SHA1: 061c4e451018f5b19bb91d334a3e73ed510b6b27
+FileChecksum: SHA256: 93ef75e5b5e4db48b975d5cea783612062377761c918e658a612adb3b7753f21
+FileChecksum: SHA512: 8107275865c2f018390ea6a21689a30a4ed64c0283bbcbfa3544eace2295d3be1b8ff86244cbe6dd2b4e29cea4eb0d06ba1f399a5a06063dae935ce4c109c89e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-secure-bidirule-bidirule.go
+FileName: vendor/golang.org/x/text/unicode/bidi/bracket.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bracket.go
+FileChecksum: SHA1: 02c68165f0fd75bcae96a4a45152271e985841ce
+FileChecksum: SHA256: 5caa24f9c4e04a54d18875468f976b4b7c09c8700e88286f2fd96828f134107e
+FileChecksum: SHA512: 50742ff084a9ca2b9ec94d70fccf47d348d6e6dd62d26d77315f4657d23473b028edca47141002f3b7bec353cb28a13380445f7f8d6a684ec0791c3d6a5316fb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-bracket.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables10.0.0.go
+FileChecksum: SHA1: 7946c00270b6dfe6c225b2589603a1b6272967cc
+FileChecksum: SHA256: 503f1dac71a22a001f19b122b7251e505e76a10a9e64779a904cbde4aeca5f14
+FileChecksum: SHA512: 56204285dc7fa380bf4fd0c62257cdcf59b108cc3ff7f2e6705e59a8d3d2f8852a62747ea7332b03c903f1a53a564370b9c465bc312248bb41e6488c2f019b3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables10.0.0.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables11.0.0.go
+FileChecksum: SHA1: b29fd4bd1e1cb3fb0bf4c8c97d24dc08eb1c564a
+FileChecksum: SHA256: aa1183dd484b9634964a047433eb2bb75c089702f90fe84a397c230b5900f62a
+FileChecksum: SHA512: d39ddf4e8cae5d038311924cbc4e16af937732f16022092923412153185ebb48a33da78cd51d285cedf3c91f6f24bdb80ddda77a0d401eb10ae57e5e5e8a0e74
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables11.0.0.go
+FileName: vendor/golang.org/x/text/unicode/bidi/prop.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-prop.go
+FileChecksum: SHA1: d6db596f11903b700f29808f8e9a34b1c055d061
+FileChecksum: SHA256: f6391b2f69a1ae2a0ac1f0599a90b260ec350a19f73ad5d6572660100b5950bc
+FileChecksum: SHA512: c235884a6a761c8cef969fcc16fb4494a1c4afd758545c97d4ba8b8f16467e3bdc8623e212db0acf5307f0506cc89c4de44e6d6dafc5e5f7f198627108b224f3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-prop.go
+FileName: vendor/golang.org/x/text/unicode/bidi/trieval.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-trieval.go
+FileChecksum: SHA1: b253888a551ac1d9d32ef5964044241be971c30a
+FileChecksum: SHA256: c05303e6fb896826645d38c3f5ebe5a4f284450b87a899f67638f74310ef7807
+FileChecksum: SHA512: c0e1f36d7a902e56fc0ac57910361d0502ba0db4102b6a43b63b68b684d80ef44925a9467bf84b00d895e843d065c6ff5d6dcaba0836d1a5da7150920efcc903
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-trieval.go
+FileName: vendor/golang.org/x/text/unicode/norm/composition.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-composition.go
+FileChecksum: SHA1: baa60e49f7e4d41b5d5502c48f361eb734fe3907
+FileChecksum: SHA256: 3d1be52960f2693926472819b747646e7d2371d2bb5f53097cf9d46c913052df
+FileChecksum: SHA512: 6a1398a85461e7eabf575007239019a6eaf6ec7e7cd2ded09f1cada1252c58a55302491a0e1ca6bdf0ee51a3be316c0ef82e477e6726bcd9b6c194bbd63a3dae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-composition.go
+FileName: vendor/golang.org/x/text/unicode/bidi/core.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-core.go
+FileChecksum: SHA1: 4ac871bb1a1e6be2c7f083f59328428228bdbba4
+FileChecksum: SHA256: 0343fdcaa06a771e32374a31a826fbb9daf0ef3847e63de110d1bf637b3aaa6f
+FileChecksum: SHA512: 4196926e39c9ec33a104d870ba524373662426d9f7296588e780cdf73f9bf2930e5e00529ff56343413d68079f489a3da80dc8bb7bec6cbd1cc65153e9aa8aea
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-core.go
+FileName: vendor/golang.org/x/text/unicode/norm/input.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-input.go
+FileChecksum: SHA1: c0f3107583d060c2a4f08bcdf73264f8862185ea
+FileChecksum: SHA256: 965b431790bb139543d71a9c497920ef7d9a15af417456a2bbd0cdb629330e8d
+FileChecksum: SHA512: 56302c6e1f63f4594a28793f55faec455764f541685c1e7606ace42f2dbc0d90f72cedc398731dd83185773966c75b9e5dd4f3e9684503ee62993cfe145a9114
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-input.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables12.0.0.go
+FileChecksum: SHA1: 2c530334ffe8b90337a5a3a478a02bbf89913a20
+FileChecksum: SHA256: c1e4de3f02fd06440ecf4b7a1eaef9f76a61b0691e6f75d379114826f1362c82
+FileChecksum: SHA512: b71e6070d8a4543be8c4c6bd3d777a85dd0be9093921c4a7e0208e6572ef2955bc65cef7fe31e80620bb4a6347cd4e14acfbb6aa58d15eb834ce0c5de404f567
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables12.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/iter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-iter.go
+FileChecksum: SHA1: 2d448fa0fb84411bc6e19931ccd948e49e41f1bf
+FileChecksum: SHA256: 16a40d326f9b37c5430a18894f718007728ce8324afb08d8c0a17ce7289714b0
+FileChecksum: SHA512: 9f6b374ba35ba57a9ea69f9a03d3d4e6d606d1d0651935fcaece4fcbf458911e343550cb303f923d56c80c979c0b8d8e64e48e906b3ad4cc20ab00b282d20913
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-iter.go
+FileName: vendor/golang.org/x/text/unicode/norm/normalize.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-normalize.go
+FileChecksum: SHA1: fa19fc432cc913315da023de4dec64c61e1dc25f
+FileChecksum: SHA256: 0eddfc82ef448e108e85db6be3a7969f6fe464726a11807bd6066702d81fb92e
+FileChecksum: SHA512: ce0ecccdfa27da8aaa0994fa2e6fab5b5a31c871bed14fb0d1525b8d8221a07048f644030785a43e0a58d4a8f93a93884226e24519449d4cf22c6136644fa37c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-normalize.go
+FileName: vendor/golang.org/x/text/unicode/norm/readwriter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-readwriter.go
+FileChecksum: SHA1: 22fc95ce71255d6959293a4ef70fab1631433647
+FileChecksum: SHA256: d600d1f6cff2536dbb49a0f6bb8c06f6fc05f2754dad2dc05f1d44f9e8e48a35
+FileChecksum: SHA512: 7cbfc63410333ae33b8c864d35f98f70544f277081cc05535c6420bfa3d6f5e3a1c57bcd91b2403ae1f72a1404467a6c63eed5efe1b45419b22d4593694c94ea
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-readwriter.go
+FileName: vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables9.0.0.go
+FileChecksum: SHA1: 9afb58cc69562f651135ecfb00dd47cef12c8060
+FileChecksum: SHA256: 18dc2618e483e18d2319f12e8faacf0b0e55b093f69a3d8ddd0d7dadff961def
+FileChecksum: SHA512: 0514211cf0d59f0ac89dfa063339ea3739de5c04222dda9f04aa7b9e77d1920376eeb735f2b4e671ca16340acfd0b6cef1e3584bf909f3d826bfe458931772c1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-bidi-tables9.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/forminfo.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-forminfo.go
+FileChecksum: SHA1: 23b8d97db1e5a8c2c8157571a10b7d564567f9c4
+FileChecksum: SHA256: b831b829a79b47f18ec401d3e2a62ce35dcae81ab171f41b55d2158d8d8aebb0
+FileChecksum: SHA512: d1bc17b406aa27f922241d30d6454f7288bb60f3b05f29cf4ed3d0da1c08bc59f719139fd0ca1e3835882eca28798bce683a6b7800e9c2b4916788e9e87402c0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-forminfo.go
+FileName: vendor/golang.org/x/text/unicode/norm/tables11.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables11.0.0.go
+FileChecksum: SHA1: 42a79a8de252d0999bd7a549914954399041dbe2
+FileChecksum: SHA256: 19da18bd18ffd59ec4e4b0e488823b4cc24da40180353fdf357479d01c9ac5cc
+FileChecksum: SHA512: 13877980c6f2ad27da96d367a5a5c1e35bf6b9c2995f7e073a4fe1ed1f09855299eb5a9e0f734c4b95eaeb4961d96f34a6885863208d8882e55f6b6bf0324ebf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables11.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/tables10.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables10.0.0.go
+FileChecksum: SHA1: 341cd04184dabd1bf4125289423aff07b1fabcc8
+FileChecksum: SHA256: 3cbcc89df18775b46c603a75541701b037763113c1e2e128742577a21b2a1d3f
+FileChecksum: SHA512: 71a85a672cc7589c5e347df6aa1695730d40615833b69cc6c889662b65c1263be9785e962e07b106d7f8a97e3a919e940b666d4b9ee700a9abda137b22586988
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables10.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/transform.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-transform.go
+FileChecksum: SHA1: 8d2453a461aceaa8ec6a287e478efe806b8211e9
+FileChecksum: SHA256: 6f8014595643e2acae76d47ed6abe8ace969a0c9070dbfa5a89c86bebcec812d
+FileChecksum: SHA512: b4c63084ccf822f30bd62cd8ce274f3e4271afbda07ae01fa31b4785635dabc5c1730e36c18027db438e73cd214df2152fc21f9c2d290b5fa38d5d94c1161043
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-transform.go
+FileName: vendor/golang.org/x/text/unicode/norm/tables9.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables9.0.0.go
+FileChecksum: SHA1: fe5c97c28516ea4ded682a460081256a5f7733d2
+FileChecksum: SHA256: ded58558f8b4f57faca8ced746791893e9d2ebea91a1c65549b262c47f2fb172
+FileChecksum: SHA512: a4dd3e856df61bdf74b939bb3a7eece063455d2f1609c6c9332b0bebf2c40edee118e62e85ea71f10f5c73e92b4728c39af9632817c9fc3b17f29a20b5ae0363
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables9.0.0.go
+FileName: vendor/google.golang.org/genproto/googleapis/rpc/status/status.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-googleapis-rpc-status-status.pb.go
+FileChecksum: SHA1: 39fcace7a6f5277f91cac00dd686a53b1d94bf2b
+FileChecksum: SHA256: 4f58c41015ff946dbabae152d0e743635f3fc69cce09711a74547617174ee3d8
+FileChecksum: SHA512: dba72ae3b546bc4c6cdd13528a300d4cba75c7ad0e033b20a88ce4813c5f0c1bd0b458988839ec10ea1e51907ae223af748ef320108425f15a9274fcd1ae82a9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-googleapis-rpc-status-status.pb.go
+FileName: vendor/google.golang.org/genproto/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-LICENSE
+FileChecksum: SHA1: 2b8b815229aa8a61e483fb4ba0588b8b6c491890
+FileChecksum: SHA256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30
+FileChecksum: SHA512: 98f6b79b778f7b0a15415bd750c3a8a097d650511cb4ec8115188e115c47053fe700f578895c097051c9bc3dfb6197c2b13a15de203273e1a3218884f86e90e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-genproto-LICENSE
+FileName: vendor/google.golang.org/grpc/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-.travis.yml
+FileChecksum: SHA1: 57ba5e324cabcf41f10d82a51ac81418b75ecd56
+FileChecksum: SHA256: 4137d59239d482e9ae69ef8b8d5251eee6397187b4f13d954ddf3f5e5254e2c3
+FileChecksum: SHA512: 066fc071fc2310941a35ef0ebe02b062be57e01f370013a0c0c840b92cee50473847a62cb63a4bac3bc08744c22aadb87dbee8d950d622918df7bbf9a2f9c254
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-.travis.yml
+FileName: vendor/google.golang.org/grpc/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-AUTHORS
+FileChecksum: SHA1: 5165eaa04f21ebe576cccb7a7cafa5d3ed6be1df
+FileChecksum: SHA256: 627c695f80fdac6412d66e6ad4160a4acb41923ca7ee3fd7e112e105f0ff46b9
+FileChecksum: SHA512: e9122b592a763796c5f8e86abefbc829ae80ac8ffc886a219cb2c7f7cd0505ccfc6525f0474b08cf8ac9f35be93ffc82e1871e077452482e5a5558d9a9dfe698
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-AUTHORS
+FileName: vendor/google.golang.org/grpc/CODE-OF-CONDUCT.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CODE-OF-CONDUCT.md
+FileChecksum: SHA1: cce47ae9353087cd1a9c6993696ff1c25f0e8068
+FileChecksum: SHA256: 4fcdab8c8ca45051e248fe4ce3dbd9ea9155cc8f406cf9ec9770b6e5818fbc45
+FileChecksum: SHA512: de19b2cb3f85b1eb155052a94ba34629326df90c62e776b15f0941dbef8507a5673aa272460ecf46ad054d19e2523f155fd0a3286da83947a9706f23b92d05ef
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CODE-OF-CONDUCT.md
+FileName: vendor/google.golang.org/grpc/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CONTRIBUTING.md
+FileChecksum: SHA1: c0f9adb786f46093b19dbbec3fee9896c7402467
+FileChecksum: SHA256: 994155a28a77b58a3af3adcc9408ac8891084cb9bc1166ea863fc75a5871fdc4
+FileChecksum: SHA512: 395360bc318db241023f8b870182d01bce450094a68ccc1614d3ca90ede2e650760b9c8e3e3c1812de557ab0568df52ca0be834e863973615a7fd0bce9dd94d0
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-CONTRIBUTING.md
+FileName: vendor/google.golang.org/grpc/GOVERNANCE.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-GOVERNANCE.md
+FileChecksum: SHA1: 9bad58b1f7f31e6ccb036ce9797c5e3d9540d596
+FileChecksum: SHA256: ce4685b7bfbbd256299aeb74c7396f963aa4885094bdaf62f025c0948659314b
+FileChecksum: SHA512: f935fd28b7b54bd17b760457f7ed0704ce9f981263fe63f916b50a04cbfb9485d9a6922fe083b5511c971af342342832abf7e6836a423b41c9070420757861ac
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-GOVERNANCE.md
+FileName: vendor/google.golang.org/grpc/MAINTAINERS.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-MAINTAINERS.md
+FileChecksum: SHA1: 06ad8e449879db1a6a2a1961aa66fbfd73a83ece
+FileChecksum: SHA256: 1ebdda6fd307486a9232591b31ec8bf6a2eba1bbcfbd96e967f8f4293b4200bd
+FileChecksum: SHA512: 978310e728981f8cc761417c1672b392d1b469756218a54fd4f4dc97de7b34a5936bc655c038a80900a4eab945159ad5280ae15eba9033408701710451857265
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-MAINTAINERS.md
+FileName: vendor/google.golang.org/grpc/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-LICENSE
+FileChecksum: SHA1: 2b8b815229aa8a61e483fb4ba0588b8b6c491890
+FileChecksum: SHA256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30
+FileChecksum: SHA512: 98f6b79b778f7b0a15415bd750c3a8a097d650511cb4ec8115188e115c47053fe700f578895c097051c9bc3dfb6197c2b13a15de203273e1a3218884f86e90e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-LICENSE
+FileName: vendor/golang.org/x/text/unicode/norm/tables12.0.0.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables12.0.0.go
+FileChecksum: SHA1: 8c99ca6817a7870a57e38cae0f0079f8262e7b2f
+FileChecksum: SHA256: 5973818052a654983eb8fa540fd5a22c00092ada84e572e96f7d14739ba76301
+FileChecksum: SHA512: 9c1d3da42939918953e3ba2297e390adcd6311635f5e19b012b50439e76b70dd774f085b4e67b92aaa3fd0e2cd1ab196dbc76afed84c17947b3b911c9f9e479b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-tables12.0.0.go
+FileName: vendor/golang.org/x/text/unicode/norm/trie.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-trie.go
+FileChecksum: SHA1: 4c06ba84cb28e93069f73758a64ad5be449c0bd1
+FileChecksum: SHA256: 4ea42392d710be96fd3275f672326293e8c801156ef558c11030f9cb7f0c86da
+FileChecksum: SHA512: 0761b755da2cddac9dde4d43160e0c401b7e78e8cacc893e8a0565e81085a679178750d72ccde8a7932251736271c15cdd20bbf12e893767274b395e3bfdd946
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-golang.org-x-text-unicode-norm-trie.go
+FileName: vendor/google.golang.org/grpc/backoff/backoff.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff-backoff.go
+FileChecksum: SHA1: 2b196480da6586f8f35de339c5d7e4c6b14b0974
+FileChecksum: SHA256: d26dd968b8efbc07ac8a08c8a236c94923182f3279a9fdf8d9f2187f66e5815c
+FileChecksum: SHA512: 234ffc7781e4c7b366bfc1de4ac23cb562b8edd0446ad6b3a07827a935054f04dca1d1d85fd501069afb33ae1c85273883b1be6152a80125ce2f93c2eeba0c8b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff-backoff.go
+FileName: vendor/google.golang.org/grpc/Makefile
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-Makefile
+FileChecksum: SHA1: cc66830d3e018c64f1e9934b7ac489fb2979bbe4
+FileChecksum: SHA256: 8a732300a3939712929e2da79a0b14bc609bbc595bf85b7d14e04d2fe0314bab
+FileChecksum: SHA512: fd2369a6a81028e32c15414d42ebbca124c858c45e5e17b100470ebd57f2759f80ddf0b87e2f2d5f34b8b309aedb455005595c18018c78ba7e549ec6b2bdd1e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-Makefile
+FileName: vendor/google.golang.org/grpc/backoff.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff.go
+FileChecksum: SHA1: f5f1b3ae9fbfbf7a6c87ebf9d817479f831ea309
+FileChecksum: SHA256: b8c0dc7204d6e01e896bf3e1cd8352ce47dcf58fb73a60ac49654f2c08dcb041
+FileChecksum: SHA512: 297ee0d687317901270c4e15712bddd3433d9b08a927b5a0e75f16fbaf765be7e3e1acdfd1e864686bda90c6bede249865c3b05a666358c9ca0c3971f4ea8d48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-backoff.go
+FileName: vendor/google.golang.org/grpc/balancer/balancer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-balancer.go
+FileChecksum: SHA1: 5503f9ac4da8c33554c4ec3e19c606643e07b764
+FileChecksum: SHA256: 40494f29d7581e70306c50f0c1d6b409952183141ecf6dc2a0cd889a54928462
+FileChecksum: SHA512: b5d49b702d69e3bf9e6513c35f761f181d72e99ca59cec81e7e6ac1cab4aabeb46e2c02b49943c69800416eadcca5fc0a2660289cbae8c36cd1cfeeee826a848
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-balancer.go
+FileName: vendor/google.golang.org/grpc/attributes/attributes.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-attributes-attributes.go
+FileChecksum: SHA1: 5a09299d7838cd6f1c4fc63ab721beaedbe6e2fc
+FileChecksum: SHA256: 966412e8572d661ce846b77fea340be2e5cfd931e19e5c1b6affca8059b30290
+FileChecksum: SHA512: 1899cb1228b8e2b8febd4aadf3fe2ebff47cf0857af365df142d003e03f8ceb8f04fef18cd33d863c41de4d454e596617aaf66228a4c1f1ca61ea4f17004ee08
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-attributes-attributes.go
+FileName: vendor/google.golang.org/grpc/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-README.md
+FileChecksum: SHA1: 3c1e4e217ea36c57f1527e4360d61b66b2e35d01
+FileChecksum: SHA256: 0b258803cedaef03c3740a49519eb2efbdf9e5c4bda910f519f02bc9fe69dd46
+FileChecksum: SHA512: 0a31f1b11b1b7acadcfe004095780491aba428dedc5c25ff7f5af503e7681d44d61700be9f294665ff5f385bb6b3fdd90d2f0f77c19a4d480a4c3917e4026e01
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-README.md
+FileName: vendor/google.golang.org/grpc/balancer/grpclb/state/state.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-grpclb-state-state.go
+FileChecksum: SHA1: 4b96c02430ce59a6e8fc90d3933b2baea557a704
+FileChecksum: SHA256: 7447144585bd37c687d70841c3a7dac38eb1c5997c6f13be222818d55a9f72b4
+FileChecksum: SHA512: 3acb315027ae893bba00c182a465e5ff67a7cfe4d71e4bd0b99c221d5b90d709e37daa6364d8c2f129626c1488c232f52dbdf87aa26efb1578e775b50c00ca0c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-grpclb-state-state.go
+FileName: vendor/google.golang.org/grpc/balancer/roundrobin/roundrobin.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-roundrobin-roundrobin.go
+FileChecksum: SHA1: 149a3daac8332811f25fd607c4af2cdbefca57a1
+FileChecksum: SHA256: 794a9fc90606c41494ec6d260193bbb7ed1220e9965258259044cd2e5d30a822
+FileChecksum: SHA512: 93a98e787cdc6cfb4acaf4f352b4d45c9edbd6febb16916f3a20b8777977e8c1ee864ef1aef87bff64e0abc7deb55c13b7ce1a027da7743c12e16e7772998f50
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-roundrobin-roundrobin.go
+FileName: vendor/google.golang.org/grpc/balancer_conn_wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancerC95connC95wrappers.go
+FileChecksum: SHA1: f581ba0cb5b2aa09ff186e598b0977973266ba6d
+FileChecksum: SHA256: f21f4ea4f9cb433cd461cc4cb1d1234ff82ac380748779b884139f894e9f72ca
+FileChecksum: SHA512: e05f4d8fdcb3cf513a6a3b488419abfa26c71287cdf440175519d48abf8de6e0d7bbd579029152ed3c92fd85aba7d2a575d0e7a60e90cc1b2dcab78eadeecefe
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancerC95connC95wrappers.go
+FileName: vendor/google.golang.org/grpc/call.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-call.go
+FileChecksum: SHA1: 8fb8d9f087e5454d094866d8ff18b4dd79506917
+FileChecksum: SHA256: 5edd8d1326bdddcba418b7382d6342bdf769d816c15d6b12520a1a05323506ce
+FileChecksum: SHA512: 5a7ef144f5abf1af063736ae031d2318f093605efb3d16fc2f64325d17622ca569bc404e8cfc6c68980db4a634c5dc295639a9b032c1041258a682fdf8f44fe3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-call.go
+FileName: vendor/google.golang.org/grpc/balancer/base/base.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-base.go
+FileChecksum: SHA1: b03fe272632298be12e8cd17236ebec849bd0f59
+FileChecksum: SHA256: e222da7aeb4c7341c59bcff314ec7c01b8900d3b2c27b3f1cb6dc5b55839f266
+FileChecksum: SHA512: 5038961111563dd4edb65418d545de69fa03f212ff360dedc0b4e7769e8a6cff786f4a0c622751eba973833300e9723f0b2e3a599492e4257254b2ad34c82ee1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-base.go
+FileName: vendor/google.golang.org/grpc/codec.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codec.go
+FileChecksum: SHA1: 86aa9be9939412affc1f21513bfff3bf57ac00b7
+FileChecksum: SHA256: 628e8e44ab71441b0318d37263a3f5e263660dcddcd2aeba8c1b09b1e74d946f
+FileChecksum: SHA512: c911d31a004b0a992c215d3d7ad2273612fd060222c9f8890b248fba3c218c9fa01fd1b3872f3058c7e03b8ef5d929a88e826c76675982c936e2bdfc1e748183
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codec.go
+FileName: vendor/google.golang.org/grpc/codegen.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codegen.sh
+FileChecksum: SHA1: b9cccbd30d5056c753efc0ae41a16e33926ce0e3
+FileChecksum: SHA256: 102bb98c61afdf98bed837f033de3cf4fe701a8175dee36e1f495479b02442c1
+FileChecksum: SHA512: 5c207b36da3272629d9d88402bca3836239bd3e77c6cb79351a9f3c2346f9c3f996498ad5f34f5baace56f59b401fdd73b40da0bc668565db9ae8765a0fc8de7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codegen.sh
+FileName: vendor/google.golang.org/grpc/binarylog/grpc_binarylog_v1/binarylog.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-binarylog-grpcC95binarylogC95v1-binarylog.pb.go
+FileChecksum: SHA1: 41d195650704ec32665a4976c829e75cf33101af
+FileChecksum: SHA256: 5db98fd5ecada788f9866e953e0ddb3193830b2edfa36b09c7c21e9af59e5ac2
+FileChecksum: SHA512: 8d808df59404ab793ba153262fc79810c4ee9c3c2c8ada13cb61b7439cf2c01aad705ec7d2834c7736ebb2d4c55bad8de737107163cc07b5e54fd28f935ca558
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-binarylog-grpcC95binarylogC95v1-binarylog.pb.go
+FileName: vendor/google.golang.org/grpc/balancer/base/balancer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-balancer.go
+FileChecksum: SHA1: 3c8c38d6d9bab6c53f17a9141d2340c4f24304f0
+FileChecksum: SHA256: f910845bf658e5a5160515d5a870ec4a23ce340bea63955427718d48942881ab
+FileChecksum: SHA512: 7d2c964f675badc1964fe4dc7454f15a04d48ab70b47203e4e6670718a90986bd4c398eac1ecde271af61c7d9dcc971ddc84ba77ea00b89b5b7d47ee31fb5e1e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-balancer-base-balancer.go
+FileName: vendor/google.golang.org/grpc/codes/codes.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codes.go
+FileChecksum: SHA1: 50542f701d0cc5d551fcaf90ed77323a1e243190
+FileChecksum: SHA256: c3f5ce76fec8085dc677754a774a38845c659316e9e0240d1741913968cf8618
+FileChecksum: SHA512: 05b2ab9a33c7f7a5d45438345b001c73593f8e68278a81c80e2c66c2e27898e648bff7d758ae13052202a6a07f326df36bd534f60a21e97e6d038c15b2c6e8e3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codes.go
+FileName: vendor/google.golang.org/grpc/connectivity/connectivity.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-connectivity-connectivity.go
+FileChecksum: SHA1: 40c243f6e2816026efa5411cb6c380c245dd5b99
+FileChecksum: SHA256: 0eb8cfe940c02c0936e3798e6db6ecc91998b4d5ef00d8a175c5157e5b4e9f08
+FileChecksum: SHA512: b04e655c870c5b50aeef709292cc510432d0d994e567d997b47d56ccc32abf1de6c8b6675e948579eeff9f9063afb4f041bf9909b370530f6b77e01a30cb158a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-connectivity-connectivity.go
+FileName: vendor/google.golang.org/grpc/credentials/go12.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-go12.go
+FileChecksum: SHA1: 546818c7e36e7e31a74ffe15f2f73364c7c20827
+FileChecksum: SHA256: 149e7337c88c0927792c359c87f54036f23467daa940d4fce52b34b3f3d58068
+FileChecksum: SHA512: 4f8a8a66bf70ad37c07dc5fc49cc4897bbbc0af9a0a7608131932c7d90ecab3d5ea76741a27daf6e5b2e2300ff8fa35b6ba388b0d364aca344eff8d266ace76e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-go12.go
+FileName: vendor/google.golang.org/grpc/credentials/credentials.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-credentials.go
+FileChecksum: SHA1: d6f39e8ecde7c0c131038498b3d8b8177726c87a
+FileChecksum: SHA256: ef6e0b952900aae74dbaa3275ba61b228405d1b742260473778334a1c1613532
+FileChecksum: SHA512: 4db27debed4540d2eab78a939f3c84aff2a251e4216a10cd11cf6b515d7a868889d1892e0f93d9d7193b774885c3980a8d652754b75f22e6925e356785cd0c5b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-credentials.go
+FileName: vendor/google.golang.org/grpc/credentials/tls.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-tls.go
+FileChecksum: SHA1: 160cb0c1fcac19b39bb1106f3dbbf818e7620cea
+FileChecksum: SHA256: 1a166929b514a7bc053bf712cdcabda18b6f39e4532e19448507d77d3ec40990
+FileChecksum: SHA512: 2977462f1db5ea1a6b18c579401be7c30183d4ba7f3229f47354ab94851d2469e15d8e23661ae48bc72c8ab6e7276dcd79de7a3d4ada9af8dfba4e3d3082ac46
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-credentials-tls.go
+FileName: vendor/google.golang.org/grpc/clientconn.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-clientconn.go
+FileChecksum: SHA1: 4cadb8fe34193e238cb60bb64504529c1cf17aa3
+FileChecksum: SHA256: e510530203da651b7fd997ffac3a96f32de78686a4112f8498edfc0e7afdc62c
+FileChecksum: SHA512: 34c34cfe685dcde1bb9dbd24f2983f69a669de6b1b5e4f8ba473dee2555330a4e5587d4bbbd4d851ffbc63aa138947d4b098bbb9778f104be1bf6f8afaadaff2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-clientconn.go
+FileName: vendor/google.golang.org/grpc/encoding/encoding.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-encoding.go
+FileChecksum: SHA1: 54f81bb3ca41986db5e5fd9ad1abb9a4c321328f
+FileChecksum: SHA256: 100133ce64bc4f3a2180201da4b7edb2fb2e3caa592b3e3cdcca4ed8d6899d49
+FileChecksum: SHA512: 7c1175706d0382ee900b5e1d4936a427ef66be98d9ab6eeac658ab0730e6e57ff200e0074f39e736a1d957fa39f35596b3d78d217e3a3b347632cbf33f95481f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-encoding.go
+FileName: vendor/google.golang.org/grpc/codes/code_string.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codeC95string.go
+FileChecksum: SHA1: 94a11747b35c677b2f2adf612fbbd0a9fff0529f
+FileChecksum: SHA256: bd2f6ea0ae1432cad5678e7edb7edfdcc62fc34152cfe1a7d1af928755fed03a
+FileChecksum: SHA512: 76bc4964cd923b2cc985065602f141dc9a132dd13e8ddf5b5740066fca9e6f184d99057a6b1e0d87d841c5c7506b2dc7c9993c56167ff5f715c8658496131d3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-codes-codeC95string.go
+FileName: vendor/google.golang.org/grpc/grpclog/component.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-component.go
+FileChecksum: SHA1: 8b0790b72a94b5f1157ca74c81ae6b3b1923fa28
+FileChecksum: SHA256: 791f56afd828994be316d5b88a746a554db601ae8552e9ea97c71b5dedcfc54d
+FileChecksum: SHA512: af21fc72cd06afd846e2166e3a7d8fabbc5e03c48d6a803b24a656748c0f1bae798b28e4a2da044166f91e1a48162c6e609c51a82e6bcff9a5f36707d6019618
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-component.go
+FileName: vendor/google.golang.org/grpc/grpclog/grpclog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-grpclog.go
+FileChecksum: SHA1: 3d1cd2ad6a91d3d980cb4e14b1d4097e935dce0e
+FileChecksum: SHA256: 23a81dc8d636c55e4f5c3ecabccaf0d602d77f8b2b98e77037d6c946c05607b6
+FileChecksum: SHA512: 232b68f5468bfd656e24225dbf0f6a78fe8f2e40984a8a9a63f579000a1a868adef789d78d49d0df20e90d592193513599685764fd3d334542bdde893b484873
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-grpclog.go
+FileName: vendor/google.golang.org/grpc/grpclog/logger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-logger.go
+FileChecksum: SHA1: 81cf0d094f94a121cc6818718f69896087b633c7
+FileChecksum: SHA256: a5f9eafe385618dc63cb7d07a240c7d80301f07badbac8cb2a0ab99b7d9f1f2a
+FileChecksum: SHA512: 1bcc3c48920b17e9021b06254071e6c1132c7f5be1f71213b9fd0cd134c545efc37e7f643dd128b5162822835b12186f01fc5c6d4c51a7dc6682d0ba5e79c636
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-logger.go
+FileName: vendor/google.golang.org/grpc/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-doc.go
+FileChecksum: SHA1: aa90058672478f906e06d52cb9858696caf70f5d
+FileChecksum: SHA256: 4eb6e1fd43b343fe3693219f26461ff95efe2226c7700ffce246d8684eca6470
+FileChecksum: SHA512: 39ad9129d16c1a3a2db16d6504d241b2086ca5d97cc02ff7078ce1e3ee6c4d876b5f1a65a5ea86cb95a0168f7c3db0349e5cce1c91a79f46c8ef9f2c6c413c34
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-doc.go
+FileName: vendor/google.golang.org/grpc/install_gae.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-installC95gae.sh
+FileChecksum: SHA1: 6892d53a577fe9d45c77eed2ec7305fb95640468
+FileChecksum: SHA256: b80b8066f4253fa9b89e27f98581a4a38c0acaab547f0aa73971465d40226681
+FileChecksum: SHA512: f955ad8c0ff9b0f2c15fce1a22a19b84d7c13231635280f508b1f40c6457d9e4ffea628b53aa2688bd56e850734a35a3b364c3609b76d678156148cf861f96c9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-installC95gae.sh
+FileName: vendor/google.golang.org/grpc/interceptor.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-interceptor.go
+FileChecksum: SHA1: 620264879be7aabaa2f8c164568b0da112384f9b
+FileChecksum: SHA256: f1f4160b8024b39959904f3c982d0180c1cfe7b15f780eb24a0ebf54f99508dd
+FileChecksum: SHA512: ece85d3daa40f9fcfeee6b1ad4ec837309f0ead08274ca536fb95fbd88074038abf043269649b404401843a827830b65b8fb2eab725c5288704bad62ed42de65
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-interceptor.go
+FileName: vendor/google.golang.org/grpc/grpclog/loggerv2.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-loggerv2.go
+FileChecksum: SHA1: 755ee56ecd477e327b73aa45f493dace8eb819c7
+FileChecksum: SHA256: e3b74a1c93f07379572166c533d9594e7e1049f942ede3f1cb0bcf6749c70e51
+FileChecksum: SHA512: 5ef33ec95f9671c6d702d31a3ad396b4e08381c4ac958fb7220bfa82808aa289f830f6d92bf1ea5df2f593c093c08d3fd4114dd5778bc93c5132ebf5f8e6b25e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-grpclog-loggerv2.go
+FileName: vendor/google.golang.org/grpc/internal/backoff/backoff.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-backoff-backoff.go
+FileChecksum: SHA1: 3073067c90b3d953975936d6388b27dfeb358df4
+FileChecksum: SHA256: 4b13e7d5008c1fdbaa4f1b3b93f7ca64a5ada160eb8cee56b217dce6cf30a3ea
+FileChecksum: SHA512: ec0786ced5c0493bb68a5e5cceb7b6a21273b4fb11aa23f5c56c6adcc06c40a9e002390e32b0d2a37fe0e6334db79eec8c7e96dade0205b3241f269457a04819
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-backoff-backoff.go
+FileName: vendor/google.golang.org/grpc/internal/balancerload/load.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-balancerload-load.go
+FileChecksum: SHA1: ea3f04f141c0765d39a8aa10a288a6b14056acf0
+FileChecksum: SHA256: bd4572c51584f1fe5fb0013f3bc75276857fd70e54d879b76984afd20a4e1088
+FileChecksum: SHA512: d41f16ce7f722f256e74173091b365fed28d28e8381bcd7b1adeb7c24db1ba5d31ed02831d2062c81fcdc454bfc68f0444d599adb175e6458533815f6b8bab7c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-balancerload-load.go
+FileName: vendor/google.golang.org/grpc/dialoptions.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-dialoptions.go
+FileChecksum: SHA1: 26ff23b5cbb6a322e9a924fe53768a101a2cdc6b
+FileChecksum: SHA256: c83b9a8537064a2de502bc6bb012ba33e92a101f1833c53a0031407ffed8b3c3
+FileChecksum: SHA512: f358418537fdb6dad0f7e2899238a87c0375d1537d370dac50d98bb5df2b3b04c3c92193128ccc45b38b0543619a93f4ae4546b2ae3261b259214e2724990098
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-dialoptions.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/binarylog_testutil.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylogC95testutil.go
+FileChecksum: SHA1: a982925475dea5c9543c823df9ce4659cfee7d71
+FileChecksum: SHA256: 0490bfd3780ebf38e67f9b2c297759708f2f67b91a6db40b27baefa85efc258e
+FileChecksum: SHA512: e1f66d44eb9b2f7d77e53677139058d7fd6b0e1c93756299367a842279960728ab0ceb82fd955727ca81cb042111cca40d477342397fcb6ba8d307ac29f9e448
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylogC95testutil.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/env_config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-envC95config.go
+FileChecksum: SHA1: cfa4d1e61614641ba17d492d195bd0a1ae7dd9a8
+FileChecksum: SHA256: 8e55916d6ca93cf07dbaa76842a41e2ae5fd3a1ab1a2085c4f0eefd57299b097
+FileChecksum: SHA512: e2bcc1033a3449f47eaa113225f8bbfddfec28d7af5dde24dda6f26b9c1ace5873697c1d0046a75132cec9c4bd0a1799d8ccc87f332c8c05efb5015586290073
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-envC95config.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/sink.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-sink.go
+FileChecksum: SHA1: 9e875ccfa399ddc819e620c6c05c0fb64b22f5ad
+FileChecksum: SHA256: 4f275e3631b1ef69f994cca1f8024da9f9f539451d09fa97a8c429277789d423
+FileChecksum: SHA512: ab7d4c7fe74612a4017ea7af86a80e83875dd780d286b66b9430511a061f545d3af4c01413f9579f466dd075c0d14e89ecb1497a6a9fd9dec486bbd430979376
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-sink.go
+FileName: vendor/google.golang.org/grpc/encoding/proto/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-proto-proto.go
+FileChecksum: SHA1: 10a443d9b0012604cff76a65d741f518a429f361
+FileChecksum: SHA256: 6dc6b77dfa0194fce97afa03266fe582eaac8e8f4910600d3aaa2bb0cac938ac
+FileChecksum: SHA512: 3d13956f71c74181948a0c104241273fdc5e3be3368c375cecab163a29f7218c7aab52cb5053d30851b427ec9f9676ecd44e33ee749ec87cc345754017daec22
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-encoding-proto-proto.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/binarylog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylog.go
+FileChecksum: SHA1: 50eaef1ff44c4825526c7b8192054906b9354c69
+FileChecksum: SHA256: c6047626863e34d5e8a1e40584d60d4e1aa5fe63b825252b65bdaf74d0fb3222
+FileChecksum: SHA512: b961ca04a26e37548dafc7d2515963f1db492092abf97b10ad4f023fd93b4885527b297a45de31e624e34b3d7aca15c06dcabdaf1e09312aeaa69206255c3bd0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-binarylog.go
+FileName: vendor/google.golang.org/grpc/internal/buffer/unbounded.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-buffer-unbounded.go
+FileChecksum: SHA1: 73ee8ff26a4045ba66b06d4131748c97f2fe2aef
+FileChecksum: SHA256: a4989096a5660c6cba636398617b79652b463ee93323887cb413ff42061da63a
+FileChecksum: SHA512: 4e693360d522509bf819733bed77f63ee47b897c01cacef8f82aaed3e18f9e751270b9afd4018dba3a65aae5e62f4dd6635a978ee1d4b9685d40bbd17e844683
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-buffer-unbounded.go
+FileName: vendor/google.golang.org/grpc/internal/binarylog/method_logger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-methodC95logger.go
+FileChecksum: SHA1: 27d36baa44a742ee2b0d3fadf123bce206e4962b
+FileChecksum: SHA256: f650ecc3a25eb8dbf2598fe9004c51eac7ac24a1bf486b8dec061a3008193f0d
+FileChecksum: SHA512: 51f2554435860585d585a8dd941aeaca2ce6e77be592eb04669f26303c4019c150fe44208982c99f5aa167f5e3ec1818f765c50982cc31c2f286167beacc4986
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-binarylog-methodC95logger.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/funcs.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-funcs.go
+FileChecksum: SHA1: dcc7b959363b18f3153db8486076d0d5cfcaa9c2
+FileChecksum: SHA256: 78e69cea9ee4fc649ab40b42c5a92ca20b8a5573b20c05c1223e759cf91e6176
+FileChecksum: SHA512: 037609b0da0e586d50e1adf3935bb36c8b9fec9f2a87978cca72670b866fd89d30e2f4adf8f970899f5318bdfbf1475fdda449601e25a0f04d50f5a231f54be6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-funcs.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/types.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-types.go
+FileChecksum: SHA1: de07860381eb8aee1e97135a51edb743106df608
+FileChecksum: SHA256: 1fb4d3d14618ec6306d153ae3c2d9eb31119fee89e523fd3dfed8f1bcbc3ac38
+FileChecksum: SHA512: f245a1f83be470b8bea1afb29262c50ca59205a5fc6aba8536400ee7cd2f4a4fe4ce631dbd35938a8e29453175b0492f006d06fefeb1daa8d6816e3d79fc1e70
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-types.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/util_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95linux.go
+FileChecksum: SHA1: a47f2448e99af1dc1b39d969117f57766f2392f1
+FileChecksum: SHA256: 2bc2e3170e1f6387d5ac5eb17a58d88d3858b1fc6a9ae46e99e9d234ec36b39a
+FileChecksum: SHA512: f41d3fe7b013d8b3ff189834bd88ef010bf610b08cdea37498fc7caba79d123a0bf9aea33b6ea4cc7e74d230c9ba9ae8a4f2a5cf7196c706b5f1459941bc083a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95linux.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/logging.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-logging.go
+FileChecksum: SHA1: 896b385ddacc60d3057f9c24aba7801dc5bc2de2
+FileChecksum: SHA256: 47c112a979cf7aad84a561439a153ae8f7baec1395a0568772679ea8fc717ec1
+FileChecksum: SHA512: dd157fd570ab39dd459430537eda9c5cc9c4ec2e49718adfeeec60c929ef3aea197787520068ee71ea3a8bfff943e757b27a260d019005817439d1eb9473b2d0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-logging.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/types_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95linux.go
+FileChecksum: SHA1: 73d4d3d847b1a7f34314feb4eb5bcff566cde9d6
+FileChecksum: SHA256: 3989e080c308c5f4fea5d3a843e57eb4c0d6d5fd9c947429934562b100ffca17
+FileChecksum: SHA512: 2cfcd0ae016ad88174e107247a836e09843229195610d034f113d8d71f732d15b7d13ff4e691b46cfc464d45f5459ccacdea7b716aaf68de007adb42fdfa4a07
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95linux.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/util_nonlinux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95nonlinux.go
+FileChecksum: SHA1: dcf6679c0759f9db0aa5c029363b35bc4229aaf9
+FileChecksum: SHA256: c019cb5478b0ba7f0845d6d7c0431018991786bb5b3f5cef90746659e9b90f22
+FileChecksum: SHA512: 831be928a867af30d2781db2aa1795fca6bcf90dbea28b9c29404361e129825896f2e073739b3c7024dad9da2dbbcb6ad7e748c24c59bdc619f82c912685f4a6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-utilC95nonlinux.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/spiffe_appengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffeC95appengine.go
+FileChecksum: SHA1: d4f21bd8763c0bcc3ac427432017104d0d77f2cc
+FileChecksum: SHA256: b69fd87dce0b85fffb5a6103746cb4373d1cb00a36fcc28dd59045f67c047ed7
+FileChecksum: SHA512: b1e8dfd93a37d95375d76a96b747594d006dfc52d1a54b836a14015a714a5c6ede012daf5360e514efa6b30fbff479805c5dfc4e1e8c62ec2a68a70dad5cf909
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffeC95appengine.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/spiffe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffe.go
+FileChecksum: SHA1: a88dec66bd5cd62561673573a3bd3c5eddc58eeb
+FileChecksum: SHA256: fa67dd5c33eff6788b6f4df033f93df3bfd9a889e79a0ddb2ed38ce0fd3918ac
+FileChecksum: SHA512: 68dbd2ecd4671d6e9e8c288ef78c9d3c4353fd9fe60a102318de130bdacf8ad5d58668d73d82f1fbdfc9d21cb5e0f241aee3cfd92f36625217938439c2f8b37c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-spiffe.go
+FileName: vendor/google.golang.org/grpc/internal/channelz/types_nonlinux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95nonlinux.go
+FileChecksum: SHA1: 269234bd1d683935a68b0b59f978ca39192daecd
+FileChecksum: SHA256: 54aee314800de43d73f9c916b2c48de000341cd22805e068b214314d89f129dd
+FileChecksum: SHA512: 37bf4b799551c2d871b3f181bce05ca1b420ab27c11866d686c9c3aa9dfd85d3d694496440fd843dff8457fef5118280defd2199ead80cab8f7b8feeffaaf540
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-channelz-typesC95nonlinux.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-util.go
+FileChecksum: SHA1: efb947a37223db7c8b9c232ba2f7d829da199274
+FileChecksum: SHA256: 48b6a59c6e58c8ae48aa0fb6fd8cb4899c639105963ee73084b33bfac75b62b4
+FileChecksum: SHA512: 22a083b7f88a205116561fdc505ebfcafb2a9be0c209f8203c653405575e06c26d2a9044a659f68e67fc03bc5605b320cad360fd6018f86e7ad03cf8e7c211db
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-util.go
+FileName: vendor/google.golang.org/grpc/internal/envconfig/envconfig.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-envconfig-envconfig.go
+FileChecksum: SHA1: 533e61158760300a94bdc780a90fd6b9ecbd35f6
+FileChecksum: SHA256: e4290d160874845ad177cdab28ad7120212c196e8bbcba0f3375fb19f4735f97
+FileChecksum: SHA512: bc35499aecb5c7f3f90052e29aff2339e2f49cad0d4ae19601bd1608aebc4c97df421ea468c6f4bdfd31eba81fae04caf1ad0fcd78326a16626ea53276128c39
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-envconfig-envconfig.go
+FileName: vendor/google.golang.org/grpc/internal/grpclog/grpclog.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-grpclog.go
+FileChecksum: SHA1: 24b199f7d0bc90d2cf008b548dd4c21cf3cf0480
+FileChecksum: SHA256: 8250fc8e0efcc9095ada91afbd7b4acdbb2bb8b18be07195129be0059b908763
+FileChecksum: SHA512: 569eaf96c5a2f3612afa912b3c52e57912c6ab2f8141fffff2478f68a06cd8359fbe1ad23d07494ffbb7033de247d2f4c9f0b0af4c483e759afad1a297f3944c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-grpclog.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/syscallconn.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconn.go
+FileChecksum: SHA1: 112576f31b223c854a12a72721a2fd30802c2643
+FileChecksum: SHA256: fea260a95b21d76850bfd18fbfe25171d25964d273751c155eeca481f5bf081f
+FileChecksum: SHA512: 6e764643008067458af4b5ec1c49b98500114d47dc79b7598198c944b47153c05afdabab60557b735c804963c8f613113126d61b286706eda5a74420b199f902
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconn.go
+FileName: vendor/google.golang.org/grpc/internal/grpcsync/event.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcsync-event.go
+FileChecksum: SHA1: 22629b67fd5758011ac353cf8fbc689b542eab6b
+FileChecksum: SHA256: 99ed14dcf3a34ecae26da53696149cd961e148d9a524e13506485d97ef5f8fcd
+FileChecksum: SHA512: b1215b0aceaf244888bac609dd2413293eeba2019208b58b567b97ef300c7f2610fcae88cad800997c45347632c647fe2232d7a429c2e056ee90345005fc6c77
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcsync-event.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/encode_duration.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-encodeC95duration.go
+FileChecksum: SHA1: ad1b6ae47354e7e955cf40ba43ac474662636d4a
+FileChecksum: SHA256: 8f52f54c8f8a7385082931ce46f6274b1da1dffc44f0ee7cbbc89b761bb49813
+FileChecksum: SHA512: c64c4d481b30f6c7a6eb84837c6ccf4ea9ab38b6b2e905aa5f615cccf68acde028f4246ee16104a72529b3cc6940790ceff19aacead40d850124f0ab7ba2b8fa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-encodeC95duration.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/metadata.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-metadata.go
+FileChecksum: SHA1: 4ea5d40ace3df19322d41b82ebf28563694293a9
+FileChecksum: SHA256: a141ed371944b5f4edd385c3b3138283543d166e5b6cf90d1b33987f702a885e
+FileChecksum: SHA512: 1b35641f296c9f932618ea2fbf4820aab0ac70a762572cc0ce28467e1b1a72dd6ccad25fc16745baaac5590f4ccb96b995a3362bc4f688e7c0fc280c26cffd29
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-metadata.go
+FileName: vendor/google.golang.org/grpc/internal/credentials/syscallconn_appengine.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconnC95appengine.go
+FileChecksum: SHA1: 4c07b732e27a5186142bf375593be0858d76e993
+FileChecksum: SHA256: 6a04fb92ba85ad2fbab859326dddfb86fd69e682074099cbb5d0c3bbcdfcee77
+FileChecksum: SHA512: e48413f8be6d2428635e04d8f1628b1c475d542544701798fe1f94d095c85f4fb5d0c1fd62e5d66490ffce3dae2c66e938bc5e03b40df70e384e2bb9caf8a8b7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-credentials-syscallconnC95appengine.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/target.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-target.go
+FileChecksum: SHA1: 5a37976f86abc1548b299616b5708a81c274e5f1
+FileChecksum: SHA256: 035dec3b009c29ca666131d0eabd1556c75efc9f38aa6b4193a24d967846cee2
+FileChecksum: SHA512: 21b5fbe84189136e9f66576609f1f4dce8e548eef760bf91ba6f6d35e4734f918badb1667827dfba335de1f1666dc241c4404246a1f77ce7630222e75f9d0dd5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-target.go
+FileName: vendor/google.golang.org/grpc/internal/grpcrand/grpcrand.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcrand-grpcrand.go
+FileChecksum: SHA1: 2695c598a662de95adcf7e171c0b9b3eb04e92c7
+FileChecksum: SHA256: 987a05611f33d7a61167036cdddf3549997ad7c2f8c6e779aad3c114b57c0571
+FileChecksum: SHA512: 9ce418548fd2c1818595d33e81ad647f452bc446307d868c93cf2e92671d5485af134caf1e58a297872560376f82df378ab911d8ff56b38f28992546e454238c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcrand-grpcrand.go
+FileName: vendor/google.golang.org/grpc/internal/internal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-internal.go
+FileChecksum: SHA1: 0c0f0a52160dda0195a0ec501fb620096d468cc1
+FileChecksum: SHA256: d153017458273b6c8ef22522a5f4901bcf99c10ab08ebe5270c05fd8ce67ff4a
+FileChecksum: SHA512: b9aeb3e97203d3bc7166a59b251538767c2bd086d6f7f93c1928940742c98d251cfc0d94a2e75f39221fa2e151341f2832515f2f62a1d7df46c2dabb674a75c4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-internal.go
+FileName: vendor/google.golang.org/grpc/internal/resolver/dns/go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-go113.go
+FileChecksum: SHA1: 74f3842814836bf99c9c16833f072817540ef918
+FileChecksum: SHA256: 14bd369062a5cba64efb103747da971b5e190a0eaf4666c72683f00fdc6f760e
+FileChecksum: SHA512: 7d098639416f1c6d27d79a267b38ee8b76510b78892c145c702e87683cdd41d2b474bc59e72811299988a4e5a8e1af27303f88ed4de83f7195b097e388b04270
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-go113.go
+FileName: vendor/google.golang.org/grpc/internal/resolver/dns/dns_resolver.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-dnsC95resolver.go
+FileChecksum: SHA1: ee3c8037d348ac17bb010ba974ecb3a3a6218ce8
+FileChecksum: SHA256: 887b02ccd7e96b6a7ae2b8d1837e88227f56e9bdb798b694f3b8dcea87ef4e2f
+FileChecksum: SHA512: 32c4d6106a074b9be8248b961a4439a840458b6f9e9998efdada36fc55c0561d1cb62835be09a8d38d8a9fbb2f6ada2ad1a50ac1812e030671b05d47487c197f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-dns-dnsC95resolver.go
+FileName: vendor/google.golang.org/grpc/internal/grpclog/prefixLogger.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-prefixLogger.go
+FileChecksum: SHA1: 0b14331703eb60bac9b576185fec81495694b47b
+FileChecksum: SHA256: aec4e50ef9761f18798d6754ef7144d1c0feab640d7f36cd9542ce119f169ee9
+FileChecksum: SHA512: d08496f8b8e6aea6a2a9085bda98ddc4b0b8549aa6f4a48b06632504321a197cac23f78c0126af05d3724302bfae3cedc20d951dd00972d1a9612ca808892e75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpclog-prefixLogger.go
+FileName: vendor/google.golang.org/grpc/internal/resolver/passthrough/passthrough.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-passthrough-passthrough.go
+FileChecksum: SHA1: c0c99dc6d11835cf92d9ffdbea82bf6c1f3b5dbe
+FileChecksum: SHA256: 3560ede4c713505ce9014dd762f5051482a212b54b1d8002cff67244912f6b5b
+FileChecksum: SHA512: 17ea17b191cee9640cc5f688f9a2816811437e2a249deaf9c11082716a5000280ce3ce81a445c4b7565cd27519f1ec575760ef0d6c19dbe7e5920785761b1089
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-resolver-passthrough-passthrough.go
+FileName: vendor/google.golang.org/grpc/internal/status/status.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-status-status.go
+FileChecksum: SHA1: 7ff65a5ea21b0ccc7280b0b96c2655513a0d4e1e
+FileChecksum: SHA256: 7c432bb4475f94529307fd3ce5f4cc0428227e584b99cc54df7c3825ad1f7e45
+FileChecksum: SHA512: 568100d1357373c4e3ecaba240b8cbf7b3b6c87931ef9d03f492d360b289b34580cc6a11adef86993d5e53bb79977c72cba71daf245a5635010396d233f47612
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-status-status.go
+FileName: vendor/google.golang.org/grpc/internal/syscall/syscall_linux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95linux.go
+FileChecksum: SHA1: fd21044a6c751cf1ec846efa20ebd23327f1235e
+FileChecksum: SHA256: 1ad47ea29907a86dbbc81dd92ec61e40eb8cd17c310f93b715e7fd7522f55758
+FileChecksum: SHA512: 2040ecd95c958382ab2d21fc40ae7d591b8af348b17f70c267e6ff967f02233e0528e729076306b2e88702461ad5fc73d6363a82d253d2724bedb7b1ff992fb7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95linux.go
+FileName: vendor/google.golang.org/grpc/internal/transport/bdp_estimator.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-bdpC95estimator.go
+FileChecksum: SHA1: 354b9e528ba8dc52a1cca71c47110158b0942825
+FileChecksum: SHA256: 01a7332c6ea43122862b91c7e69ca4a2aa91b11ee9c094fc2ffe1ba6edad75f3
+FileChecksum: SHA512: abc0033c20218654200736bd34c70d2ce4cb1e95456b264dcae5b375d049fcfcb3a4e0c3c9db6f8793d2d274a5c3a616d7448630e8a4b155f34b998deeb8cead
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-bdpC95estimator.go
+FileName: vendor/google.golang.org/grpc/internal/syscall/syscall_nonlinux.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95nonlinux.go
+FileChecksum: SHA1: cfbfab0d25570bfbbbda16b5903dedee2d84f405
+FileChecksum: SHA256: 5d744dfc96d65eb09aea71066013a1e74a6c9a3e9939c6589a8ed6bae72cb893
+FileChecksum: SHA512: b5c43052b57f25445681381d3fcf92836b39eaef9a16b161c5c28be994b0d4de525d1f2cd0140d5e915a72f76717a34c6750c2aa06e227314e8729b4ba107d3c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-syscall-syscallC95nonlinux.go
+FileName: vendor/google.golang.org/grpc/internal/serviceconfig/serviceconfig.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-serviceconfig-serviceconfig.go
+FileChecksum: SHA1: 18ed1f340ab5f2e1404f0f532f1a0668c8c5f4fa
+FileChecksum: SHA256: cbde864d14d7db12a0fe6171beb8c7bb73fd9094e2f924e07d4abbb198f644fe
+FileChecksum: SHA512: 7fb757200f0420f97945756a387d0a7cdcf136b3919f3a0e7e1b363a14eba879f17a4f8d04b68cd7f0911a83a930e4aad99753b19a0483af7b95742b59eb168d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-serviceconfig-serviceconfig.go
+FileName: vendor/google.golang.org/grpc/internal/grpcutil/method.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-method.go
+FileChecksum: SHA1: 994989f19f5ae1834d69c43c0495dce125210f53
+FileChecksum: SHA256: ee61215f9fe77ddea33a7b8a5060a0c3ef30cd61ad82c0d1d862c29a2007c54b
+FileChecksum: SHA512: b8908b249581160729475db7ee354ba7d480cc294b9d7cd6a34bb996a5feb5cea3fc4cbe3786cd95312b37fdf38a4d93dc20d7cc8e5d6710b4731ad038bed81a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-grpcutil-method.go
+FileName: vendor/google.golang.org/grpc/internal/transport/flowcontrol.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-flowcontrol.go
+FileChecksum: SHA1: 55567d3d3cb067679e762719538fd156ca0f5766
+FileChecksum: SHA256: ef06a1890146989320b9035ab65f403ddb6f9efa95ccf7ce01cbbe201403d3f1
+FileChecksum: SHA512: 923750d896ee259ff69703f453ccaa5b0bd5596df18ca5e0c308f8d2935708d340d21ec8de11139b0dd4479e10c991da5a495966812e6e3fb69d07d0a32c8e09
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-flowcontrol.go
+FileName: vendor/google.golang.org/grpc/internal/transport/handler_server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-handlerC95server.go
+FileChecksum: SHA1: d59cec986f743cf83aeb38f12cd8105d66960098
+FileChecksum: SHA256: b8d04f9cf317b00247af277a58ecbb4d80d91d1e0799386d2341c1eedc658c2e
+FileChecksum: SHA512: 93d62f389560a313b63ca896b01ac6964c7a33a65352e78ee61724ce962eb3193fd626199d25be7aefd3fa4f8f50f611f3762db1109393140b111af9620f2739
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-handlerC95server.go
+FileName: vendor/google.golang.org/grpc/internal/transport/defaults.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-defaults.go
+FileChecksum: SHA1: 0844058a0ca9d3435fddc1d6ea92db9bea02ea56
+FileChecksum: SHA256: ef002dcc0f89dcc9001cf7cbdb6b17d8d688f2bda3eee4efefe762c0c6416e5a
+FileChecksum: SHA512: 503b19e721a22f83ff79958373411774146f42e2f63851f99773cb60f8e8fab6bff21c6c595a61bc0340a31261a3ff32f8d58133735c9f053b37ffdbe331d6ca
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-defaults.go
+FileName: vendor/google.golang.org/grpc/internal/transport/http_util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-httpC95util.go
+FileChecksum: SHA1: 6f8a40661928283b06d2aff11566d24021760177
+FileChecksum: SHA256: d3a8928f725740496662c76b56b3f16c01b6d70e3a732294d3a6607b6503fad7
+FileChecksum: SHA512: 8a17c3b19ad0403ea10ff09681a025888aa9f85c70694855a82a8776861f66a116c2b2718e699b14e6951ea4441c2c61ada927014577d9bba2288c04e2c7b75a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-httpC95util.go
+FileName: vendor/google.golang.org/grpc/internal/transport/transport.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-transport.go
+FileChecksum: SHA1: 05b90a8a5533be4296647efde3b3cd8354564262
+FileChecksum: SHA256: dc26762504631addca15484952c9ad2d3f2bac86751c88472129c3b59e873759
+FileChecksum: SHA512: ced80e7b2977433da30a7ae5f97958c14a2d852ccfaeddd182199974fa482426472781f42ce2d056d2e51f6b067e068704b66aa81f0cf0e686be41fa8de2e71f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-transport.go
+FileName: vendor/google.golang.org/grpc/internal/transport/controlbuf.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-controlbuf.go
+FileChecksum: SHA1: a97a03c23ee7c344a096a5b25df12520f470c6a0
+FileChecksum: SHA256: e4e866c8b48bb86d5fe9fac04ba58986d58e6d7586c09107a437a6b4d85ff69a
+FileChecksum: SHA512: 14a6881e6b0bd2092abe31a2687eb9451a662dcd63294f33dee64346416ff5ba97d88eb5ed75cc087c5320d80361e97c3f6ee9d2055bf749e065f5adb068e527
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-controlbuf.go
+FileName: vendor/google.golang.org/grpc/metadata/metadata.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-metadata-metadata.go
+FileChecksum: SHA1: 43eef1469d21b43d0ce3ef90fec3a1a5b254d246
+FileChecksum: SHA256: 26cdf86e67d66a1032f0794587eaf945adc50996acad89c81a25e6a433f52de1
+FileChecksum: SHA512: 6bdee2c402d5aac0fa847b80acf663123d2d76bd1a652a9d2f99a2af795b4909266ce2849ef8d28fc5bf299e5b2c230f84102b933e9b80c0b9fc114c2c0f8bcc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-metadata-metadata.go
+FileName: vendor/google.golang.org/grpc/peer/peer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-peer-peer.go
+FileChecksum: SHA1: 658a7342468635627b646d92203ffacf86506abb
+FileChecksum: SHA256: ed94208f37d2983e302932057c07ba30e31c04923159148bd61f071f8b33a12c
+FileChecksum: SHA512: 0953b31767c7e653f738bcf5cead1004e1479f3860c0397bc3835dfa68a62d1be87cc11de55099bbecda25254bc4d8896c0095fb05dff37b89d6b7ab4a1e3524
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-peer-peer.go
+FileName: vendor/google.golang.org/grpc/picker_wrapper.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickerC95wrapper.go
+FileChecksum: SHA1: e90416b3306eaa1f7356d78a6ae3fe13c9fbd586
+FileChecksum: SHA256: eb40834d411e13836844a31de61dd01a8c6fcafb0942f6bfebd15811dc7882ed
+FileChecksum: SHA512: 02f197e5ef038ed8cb51c3e0c4ba83b811c48ed2b7fb71c1fd372e6d97d5a67d809226cb0e4e0da560ab084ac9bc90e0b52a4336ef77a8c317e4a62db026dec7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickerC95wrapper.go
+FileName: vendor/google.golang.org/grpc/keepalive/keepalive.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-keepalive-keepalive.go
+FileChecksum: SHA1: 61b20924d9b7a73bb3d473d8a1914873755d3aae
+FileChecksum: SHA256: a1aa59ff1fb63be104a97cd4d9bf4e62d5440d7ff4492f0148ab5f4bff2e96a1
+FileChecksum: SHA512: 6241215b97e22111b6706337f72206a1066b61a60ff3c61821f117f257f52d0bf0c5b6133ca083843ae2c450f5cd394991a85b2448337bfc5e62ce26c9f11044
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-keepalive-keepalive.go
+FileName: vendor/google.golang.org/grpc/preloader.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-preloader.go
+FileChecksum: SHA1: ae4264ada7fa66980c586282f8a2f60e0db07734
+FileChecksum: SHA256: 05b7a7a8f36c66907ad5eb206a143867dd95ce2344c18646eb4f0c99ee0c6281
+FileChecksum: SHA512: 9fb23e62b2a60b6495866640fae7c57076d997a881b5d343dbe43180ce51c7b46e68dc6572ea0883e01aa5d38f071f1ae21e0d53fafc5aafead603d58924ad08
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-preloader.go
+FileName: vendor/google.golang.org/grpc/internal/transport/http2_server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95server.go
+FileChecksum: SHA1: 0a8e3d787afe90a46746cb8b0dffa79ef351ecae
+FileChecksum: SHA256: 04431d2e109cf9f33e3b58e588b10f56556f12bc0fff647f490210ddd0149726
+FileChecksum: SHA512: 8e1262f37fb52ae0925502fc0666a74497ca9f570852ab1ab5c066d9791a82d694994878c4543b8a38e345df81a6f229d467cdc1bd73a40a9adc033201dff7be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95server.go
+FileName: vendor/google.golang.org/grpc/regenerate.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-regenerate.sh
+FileChecksum: SHA1: c53cfa6ea3a29cf3b3672174f1bd70b680ea43d1
+FileChecksum: SHA256: 63a1c1371c91dd40b1313023b49aef467edde24df2dd99d134a3623a59f9f98e
+FileChecksum: SHA512: ecb23264fa4b0a27304131748527129a0d61028fa7fdbd00aeba35485aae2e5a803eb85f4faa800ca6b3a6703559784fb36698dacc50672e7b739d43cf52d268
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-regenerate.sh
+FileName: vendor/google.golang.org/grpc/internal/transport/http2_client.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95client.go
+FileChecksum: SHA1: 8fafec181fca92f175a4fe3dbf346fed3fc551a5
+FileChecksum: SHA256: 777d7501e0bf812b736da70692f3fb0277ab4c76d4f0b57a08b266fbe6df8fce
+FileChecksum: SHA512: bd539d977f6f5874cfeef63a7827071d8420b1379c831303d597b199c351dfc465b474eeccaa71c6e8e5832268d11c9ad57f21b98ebed244de1b0d74e99de2a8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-internal-transport-http2C95client.go
+FileName: vendor/google.golang.org/grpc/proxy.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-proxy.go
+FileChecksum: SHA1: 59fca658e8d8181f86e8118e33f55ac8200463b7
+FileChecksum: SHA256: d1ce4e5bcc80ddded7b7b2f05da2ea13981375d010f1f15589353190861b27c1
+FileChecksum: SHA512: cd37552f1a37f5bf7a0f23ba457c9d1e7202e5f9ed0d0543630a9210530ce8e600e082026c24bfd228545c1a0230f34396b9f20d4e547e50d0bc5a15fa8f6190
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-proxy.go
+FileName: vendor/google.golang.org/grpc/resolver/resolver.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolver-resolver.go
+FileChecksum: SHA1: 08ff6883fb565a22adfd5890a7215ffbbe58bf5c
+FileChecksum: SHA256: 6283df8ac40996312ce876d6eddbd65733e86da49625dd15b9056c46d630cc3a
+FileChecksum: SHA512: a4d1cd370d51901413b3f013893201ed5d0cca5f6b0e97d48d9e03550a63642f4e07861720508b1348e11cbbfbe7fe1ec1ce94befb28c33d7d93b86729cd308b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolver-resolver.go
+FileName: vendor/google.golang.org/grpc/resolver_conn_wrapper.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolverC95connC95wrapper.go
+FileChecksum: SHA1: 9c1dd3f18f6d414af2dd548e5c023aa225ad15e4
+FileChecksum: SHA256: 4c0f54d36620b8cf162ad52c82cb2f44ad42f37c23483c03b3486acccef802be
+FileChecksum: SHA512: ba6470e99ac979e0476c5aadec89e49577d8c93122b8eba9626eb25357d56d0dcc8cc97d2be4f8c72870b3d6ea8cabd247ee40d6ebc581a5b2f3d35320c71cf6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-resolverC95connC95wrapper.go
+FileName: vendor/google.golang.org/grpc/pickfirst.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickfirst.go
+FileChecksum: SHA1: 238d689aff0add19921fba4e2720a7bb2ca46f10
+FileChecksum: SHA256: 9843cbf1ce87f292e1a680a9591fdd313e2ce6d172dbcf8ea082796743beaaf5
+FileChecksum: SHA512: 7351023e6fba0cb9ed38dc45b84f235f01c9d05864330a36d4d10b6daa2808c390e4052feb587cfbac3fa8ff9decb2b9579a9babbb8bf779aa74b47c0e0fc3de
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-pickfirst.go
+FileName: vendor/google.golang.org/grpc/serviceconfig/serviceconfig.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceconfig-serviceconfig.go
+FileChecksum: SHA1: 750139269c86c706fc7c96af996ce82304fb0455
+FileChecksum: SHA256: d8100f7e633c602c140dbf669a060f5f50700fd16cc6b40a5f097361515f63eb
+FileChecksum: SHA512: 2ce0ec2ff8c6977e43db303498ae0595bb49f58b3d1743971d9c1fa20ac6819fffa758981713dad189037a98ff9b39ee57d56614c93a59e9547819b82d176056
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceconfig-serviceconfig.go
+FileName: vendor/google.golang.org/grpc/rpc_util.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-rpcC95util.go
+FileChecksum: SHA1: 6dfc4d1f3dc30f0f47419ca1b29bce54530df68d
+FileChecksum: SHA256: b7d5055ee5554abb8bd5d1abc68cd4a0d9ba92fa1468fa974bd10dba4fce74c4
+FileChecksum: SHA512: b8d4f0025237f64f8d63f82dea07316632340d55155bc05015cfde8de6f3b70f2f3874590ae447adb84bfa81ed968bec59ed31ca3a3c0aa562ae993a51e35f62
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-rpcC95util.go
+FileName: vendor/google.golang.org/grpc/service_config.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceC95config.go
+FileChecksum: SHA1: d7266942d3da58639650fe888c7fd99a83a40405
+FileChecksum: SHA256: 24f5045cdf85bd728099395c10df88f1caf67b28d8109f851320611e4f924cb9
+FileChecksum: SHA512: d0ecc05f653a00cdd297d91b69486db573c6b37740beb13384dac6bdd0bde4551184e2a23724f341e587777aac06ba421a4c842d5fcd484dfccf3fe7384cb2e9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-serviceC95config.go
+FileName: vendor/google.golang.org/grpc/status/status.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-status-status.go
+FileChecksum: SHA1: 6489a3dbfbb68f66733e6a3d1958564628761a27
+FileChecksum: SHA256: 352bc233e86c30952c39872f81d5a841e0d4f1a2ea46ef86b0462e46450972cb
+FileChecksum: SHA512: f9861754f9352146aeb81186a446756bfdcda5d92e092592c43f9e42be2fb1f64a3856350bcd81f6dfa11f0e7653ae9eb48275b2af10467c75678d506ac0017c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-status-status.go
+FileName: vendor/google.golang.org/grpc/stats/stats.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-stats.go
+FileChecksum: SHA1: 70585fef55eaaf8775a12392361a5572f65cdebd
+FileChecksum: SHA256: 7a74a576f08c9775f3ec91fac387886a61380a8ab4686d5131f81b47e65c935a
+FileChecksum: SHA512: 5307966a81bfa722265c6accd8d5d6ea02c69a432ea4a262f5463cc06f13e721a4affaffcc43360a7b04186d962e1cf3cd9b7ee8c4c4110aadfb0237a3cf6518
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-stats.go
+FileName: vendor/google.golang.org/grpc/tap/tap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-tap-tap.go
+FileChecksum: SHA1: 7d781da5c4a76c9812ce8c3c61f74aa56f8d717f
+FileChecksum: SHA256: 3033d851c8266eaa387ea7bcce52e60c1b2dfd9e88792f32bdcebc54d7cefadf
+FileChecksum: SHA512: 1256af7372f3025b3b0c25d8ffe43afd76a2cddd7e00d646e0eb87daa81a1aa512e367e0bd622d273aeb205d0e3cb60dbaa62665a6484ee5973cebfcd6877fc8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-tap-tap.go
+FileName: vendor/google.golang.org/grpc/trace.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-trace.go
+FileChecksum: SHA1: 8d34b1be1a90485f0311027851fbd023a3d293b6
+FileChecksum: SHA256: e4d243701bb810f0081983e4b01a4eb427968be63dfc981e6b9e418fcf25f4ac
+FileChecksum: SHA512: 292ce9bb5750be45a67d20ff922cccc9c7a61470633d034bba18027646004e923f372619bb06c36ba1aed26facdd83ec9acb90a99236f25728770c483ed2bf27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-trace.go
+FileName: vendor/google.golang.org/grpc/stream.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stream.go
+FileChecksum: SHA1: 6a9f356a389c2166610fb6aa3c46e13b909dee88
+FileChecksum: SHA256: 7035d13927f566a25c7ae6d7ad1fc07ee3efe93b54a1022edc93e6e8a98ebb52
+FileChecksum: SHA512: 29e4b018d62999633fc76b506225eccbc6908b9499e294375b05bc1d5c12d7317d403f4e1eaf37289b502aee3412eba9f44999a8a846f45ef8c6a0d3fe1080c6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stream.go
+FileName: vendor/google.golang.org/grpc/server.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-server.go
+FileChecksum: SHA1: fbca68144f3c81281ed7e6eba3a8c80fa31fc3b9
+FileChecksum: SHA256: a57275855bc81ac97824e641bf8c60d877e9388b8fa26edd1eac521dc840ee5b
+FileChecksum: SHA512: e003bc348af9069ce898f324b5d71d4816d69fd77f3bb80e37377be7953b3f03cf7313fd51898b481cb21e6a746db8f430f2f5bd782aa632682ef0aaba98fe3e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-server.go
+FileName: vendor/google.golang.org/grpc/vet.sh
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-vet.sh
+FileChecksum: SHA1: 334b5e1a24275287313c2c2a2de0e908499c54bf
+FileChecksum: SHA256: 9432d0457bb5acbee7da80110c4353938327c7a670792b3da5000286d49dde3f
+FileChecksum: SHA512: dc44f2f6cb58221988f6ed19f124f8949c093ec898fb547a1986c5770d31c22eedf63909c6f76cbe14a268bc51ee5fc081392fd189321e3a5d6b303c1735dd71
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-vet.sh
+FileName: vendor/google.golang.org/grpc/stats/handlers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-handlers.go
+FileChecksum: SHA1: c586fd0c6bfaeea8083a5de4418a101e1f95c81a
+FileChecksum: SHA256: 6d76e5dc6a39ff72cb9757781ee936e4aefcedaa00066c5164e9f2ea33fb8f9f
+FileChecksum: SHA512: 14ddd2db5c8ae44a605247236940af1077844cb268cd4353152356eaffe7b484c8717dd1dc5053a94ee213989cec1a4fc281c3fb017557e196b8b840c0f5052b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-stats-handlers.go
+FileName: vendor/google.golang.org/protobuf/CONTRIBUTORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-CONTRIBUTORS
+FileChecksum: SHA1: 39097573c311def5445e4dccaf3189987465bc83
+FileChecksum: SHA256: fa714cb1012a065fbe08b174eb1f5604327bd24d42dab2c461878ce36f68d0c9
+FileChecksum: SHA512: 36fcb4e290cf69db05fec038f7939a7bb888d458c4d814cb368f207210359c921e2bc563720d8add09039fc2ffbe3bacb96e4b80c248f643d0ac4808d8e4a718
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-CONTRIBUTORS
+FileName: vendor/google.golang.org/protobuf/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-LICENSE
+FileChecksum: SHA1: 74850a25a5319bdddc0d998eb8926c18bada282b
+FileChecksum: SHA256: 4835612df0098ca95f8e7d9e3bffcb02358d435dbb38057c844c99d7f725eb20
+FileChecksum: SHA512: c5772c80cc7f4338e35220b9ae0c83aaf9eebd3a643d8b5420415120de3973309d71b4b74702f2fe59f494fa8f6b43fe925ada3e5885f3e06c59ce8198628fa4
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-LICENSE
+FileName: vendor/google.golang.org/grpc/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-version.go
+FileChecksum: SHA1: f77b13d38fa0ee0e7471b56fa6ebf461fefe08da
+FileChecksum: SHA256: 0e18e7d9a68de844c138c91277d142e08ba878d79063802b78fffe26a605e41e
+FileChecksum: SHA512: 01fc1543498e988632d6449ed3872f77deefb5578a2f6bb818608c6daac48f080fbf346e9fcd053c28b29886076de116fa81a30beac3e5c7e8a79fca43fb3437
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-grpc-version.go
+FileName: vendor/google.golang.org/protobuf/AUTHORS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-AUTHORS
+FileChecksum: SHA1: 5d22291302558cc1dfe4729c69bac627252d3c10
+FileChecksum: SHA256: 5aa3167c44245f0b12b27195d85c6a8c8e067cfdd511059daa4d7b3c5b232129
+FileChecksum: SHA512: d9bfd664efaa0ec0cb4c3c4e5b850aa374692c1abcac7e818b8c9fe32c431200b6042639feed3c6a32d7ab1caf94e7a50a9ec21f3423e759b25ae89e0aa439e0
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-AUTHORS
+FileName: vendor/google.golang.org/protobuf/encoding/prototext/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-decode.go
+FileChecksum: SHA1: 216893c0721155cb40890afdfa9ca2cecbdbadc3
+FileChecksum: SHA256: 7091ef15fee93b1a47a05291c8c8a32a907d9657623fa62115811775a3b13763
+FileChecksum: SHA512: 429a64f7da0125a9ffa4e9684b7848698840d8e28bde1e9a72e4e803c7b3e4fd4428d0c093abcac81c2f990551ba17ba4253784c93e741fd1b5e861a945ca8d2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-decode.go
+FileName: vendor/google.golang.org/protobuf/PATENTS
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-PATENTS
+FileChecksum: SHA1: 4eca45b612f7d86f2f598f238074a0dac9b72bc9
+FileChecksum: SHA256: 96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc
+FileChecksum: SHA512: c15bbad668d0cfbb752645504e15cc5a4d613dedb28be825f39769a9c06cba19180140d0d6d8087c0e8489dc1363d8bd99aefc1f6579e7f103e0e8f81f5262c2
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-PATENTS
+FileName: vendor/google.golang.org/protobuf/internal/descfmt/stringer.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descfmt-stringer.go
+FileChecksum: SHA1: 99117b7409d71ef691f6792346432aeba3259293
+FileChecksum: SHA256: 883fe3b2b6f0524e08bb53ddaacc799e94f1ba1ee75ffcff195ff0ce695e6c41
+FileChecksum: SHA512: c19a8886ddd53e7d95f5871783952286003ba9e075e3377afc699dce9d1ca199a4f1122f23f489f6365e79a689fbb87a0e5264f55e1c8c265c6c96bade5fb6c7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descfmt-stringer.go
+FileName: vendor/google.golang.org/protobuf/encoding/prototext/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-doc.go
+FileChecksum: SHA1: 1fd96af262da70401f5f90e7d757144a84b304a0
+FileChecksum: SHA256: 48657fec4cff435f30956a1dc6c1b639550ed5fffe1633f1c976645c67d199e7
+FileChecksum: SHA512: 61477d6ff4d7cb592ba63641ec345a479c481a845923f4dc79d0891051b61fa2f5d6c465fc979d906c681c5f354217c65039edc60810889b3753b1e251b4d78b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-doc.go
+FileName: vendor/google.golang.org/protobuf/internal/detrand/rand.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-detrand-rand.go
+FileChecksum: SHA1: fcbcd45a31f7d7af37be9e9c3f7c2f40670fc4ca
+FileChecksum: SHA256: 60da5b516689c1ae2e4dc69a18d13da3fbf061de5601e573d309470b2cf5b285
+FileChecksum: SHA512: 635bdfe87f48a132aab5b9fcd078a67871057175289e8cff04efd4906c5eb63f30dd4b7fb689802513dd61f8404f605272a33d74e9fce1f8d748ed0673b42f26
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-detrand-rand.go
+FileName: vendor/google.golang.org/protobuf/encoding/protowire/wire.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-protowire-wire.go
+FileChecksum: SHA1: b23add4c95c8df946b3c72c2a58ed9a97ae2157f
+FileChecksum: SHA256: 7f75267a3c37ee9084214838bfbcac23a4aa12a73b464b473993dbb590cffc5a
+FileChecksum: SHA512: a72871fd34988fe891c9665c514309743e944701e87bc187f08d70ed774f84c6e264a7ac9eba4492012bb954819eb96053fb59a5778036479e0153bd57885349
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-protowire-wire.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/defval/default.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-defval-default.go
+FileChecksum: SHA1: 6960553c4047c30bafbdffc9022a4933b82912fe
+FileChecksum: SHA256: 1654b54a991774654dd487974fad73134df4bb761f6274625405b5df227aaff7
+FileChecksum: SHA512: 48fcefa2af803f2df9a99062187af185a73a230759ab2ae7a8ffc1d5fbe947bb85ddf809ce5ec26bc882f9cffdd14bfeebf15327d99e03acc11fe00eeb30a4e0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-defval-default.go
+FileName: vendor/google.golang.org/protobuf/internal/descopts/options.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descopts-options.go
+FileChecksum: SHA1: 1d29b0dca6dd037c8dba4f65e1f412e1ab009bf3
+FileChecksum: SHA256: 2651135e9b29304bc99186fd689774f7fffb2fa808a350b81e719d8e82fa6e0f
+FileChecksum: SHA512: 207b8d8189df4af6fd650c0dc1a8dd03f4837b887fa57056f20366529b1e19693962655baea20aa85d9283cc9a638073f946c96024e878717866288357618a16
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-descopts-options.go
+FileName: vendor/google.golang.org/protobuf/encoding/prototext/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-encode.go
+FileChecksum: SHA1: 44455450f60fee85327cecb5a84fdfb0e20cadf5
+FileChecksum: SHA256: 1d85163f1372dccc3a5036ea559933d823e62b5c868bcc19c475c082676b5b18
+FileChecksum: SHA512: 926b71912936e51d357d8637fa57457d05f0d61a962192dab64c21c9958f9bd78b39cf8d5004964ce4f1c9b2413ed0b4fac75fc281cee375a2bf209130237124
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-encoding-prototext-encode.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95number.go
+FileChecksum: SHA1: f350fae4d531c7143cbc82efd4234b015206f6d9
+FileChecksum: SHA256: 7081ffa31d68f26214cc3eceb6ee6c51f582cd55aa66077fef8cfd6d85a18bae
+FileChecksum: SHA512: 27d7916e3b30ea427b67061897f69362f6f92d308ac0f42be967363a4be092291565d444297f5784b9755b004116399c3a4b4e0d4171936a3d2045b7c1cd7d75
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95number.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95string.go
+FileChecksum: SHA1: 87a76c352c35e302001126f67ae498a00f0f6335
+FileChecksum: SHA256: 5974107818845d7d94c39cd275985dfbcd55b9eba4d731e182715f985370e7ba
+FileChecksum: SHA512: 7b7f8f286bc3b96f525aacfa5983a7f1011c904f7c4e86934a117cf040bcd37b848560af65e79cd06198df624ccf442e38839638b986f193f3f1827cc290714e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95string.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95token.go
+FileChecksum: SHA1: 7b9a4099f2c75a473c07e61ded9ff9572d32cd09
+FileChecksum: SHA256: b51ba5d349f6c36f99544020733af26dbcb476bd73548cd943c14286fae2c475
+FileChecksum: SHA512: 56015c3625830db84bcc1a1c549bab6cb9b431aeb775c7efdaf786712fef6e76949cc4d8fb5ec8fd3ec42160eeeb0d357d48c05a8b49d66cafde6d6ff5341bd3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decodeC95token.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-doc.go
+FileChecksum: SHA1: dea93ac2f10089e368d70432d7342c024de29f0f
+FileChecksum: SHA256: fc115fc57c3d85737cb918275fa806e9f76044b6cce31a762b10c81c28642fbd
+FileChecksum: SHA512: 655b40422e56b450baa8d11aee04d773ae67d0befc44fd3b77511761ac0b0a60b0409a0dcc450bad117c7dbd24dc65e2fd44fbe4ee894a9149078b57fbfd8170
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-doc.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-encode.go
+FileChecksum: SHA1: 5a5e16df9fc9bd1703aec2502dc1e274709a4e9c
+FileChecksum: SHA256: 0c15cfad72e75b3e18a3de52b8ca74dc83d3d5c7fb1c14b0879aeb27ab711582
+FileChecksum: SHA512: f96a355630abcab597794bcc3d4504738df9a320c2ff5c14c16bd32d3b3b48b066b3751d2d6976e2d9c937ca05dace34f73e4efc2081de116b93d49f5ec0d7c6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-encode.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-tag-tag.go
+FileChecksum: SHA1: bf4aea5b3d10b9f102f5ead390d65d5bd3f3459f
+FileChecksum: SHA256: 8ecb481c311f3abd192446423423242735dcba2ae7e0b1e49debbacc757adf2d
+FileChecksum: SHA512: 6c84bb98ec657a4cfbc070de417cc900ec1a958f7f33a87e9fecc213d1153f0becf8eb3cb68f40c334fa000b6655bbc682a7fd20c1e17c447fa13b500e92758b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-tag-tag.go
+FileName: vendor/google.golang.org/protobuf/internal/errors/errors.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-errors.go
+FileChecksum: SHA1: a2a5667a227c1c9cfa87cc53f38eb16769ff06f2
+FileChecksum: SHA256: 4a096a248dca8bfa90792a02d60b4daf8da42be074e3befd88180bcc2d694a4b
+FileChecksum: SHA512: 259d57e0e498e5f7684adc3e21a4f8357700b1008fd35d0ce35be129af19d230b44980c483cc9b8de05de2fb2ab2e9548a7d2b795690a6ba0b7ce37511f4bba6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-errors.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/text/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decode.go
+FileChecksum: SHA1: 401dc0867ff44c1ee701fd5e189116323eb310e5
+FileChecksum: SHA256: 75f2c279cadde77316f6e5d466fabe43a77d6fb3147ce8484276e548ab685012
+FileChecksum: SHA512: 5dd4895a42c231f8545226232c15130e99d54cbcf3f78a7f8c6291bf39c3100ab45efd706ca6785bb6b15fdbc3ff4633bfda6743f1e870927c6f7b03de3f22a2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-text-decode.go
+FileName: vendor/google.golang.org/protobuf/internal/fieldsort/fieldsort.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-fieldsort-fieldsort.go
+FileChecksum: SHA1: c21a99e7fe542209de82003f333fea17603d8473
+FileChecksum: SHA256: cdd29688c33c65d70e798a6763d6ea27396362cd5ad15950790af1e849a6551c
+FileChecksum: SHA512: 315cb78f16a7fb78771483c99abe41db861081cc0de8e935dbcecfce96645c532c4a5faab8c627a9b72693a4a5e82c67e4a25836a2471a060d911b2b33e88f74
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-fieldsort-fieldsort.go
+FileName: vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-messageset-messageset.go
+FileChecksum: SHA1: 11e6e0cf515c1e17e9b4e0e6af469fc69356ecb7
+FileChecksum: SHA256: 39d683c207c00c122445354716740ca9b0079b0f1c2e2e2fbe2499bf018b0b97
+FileChecksum: SHA512: d150b22df227154f2ccd4e17d32c26cbae529d37af2790d6dd5087fc4c32a65acf45a60562d07e4defc66a985f95e61bbcfa6feeddc35749fb03c620ed05adc9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-encoding-messageset-messageset.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-desc.go
+FileChecksum: SHA1: c24662672341a046bbfc3575063cbb270fa89fab
+FileChecksum: SHA256: 0cc4e6b4ad261a37d52de44f243110571384aeba989eb509891199bb74cbfc01
+FileChecksum: SHA512: d942991a6c30d084772c43ca8c227777ecb404f05bde486392f8d7f3e03e49e49e625bc4bf7d998f2ca4643f099d823de5df95c00814a1cc451a2eb8167d6b76
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-desc.go
+FileName: vendor/google.golang.org/protobuf/internal/errors/is_go112.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go112.go
+FileChecksum: SHA1: 5b1030f6bb66fe378160644e38896d6e178ba497
+FileChecksum: SHA256: 0d6f25629954b9e3d383d56e774c68550ebd8e20e89c9f207cc5a6cc838c4482
+FileChecksum: SHA512: c6e4a8dad621fb2520d281df40373cf8dcb2bd11003e92ffaafde62d4d89003b489bb395193e550310b8e898b55544cb5d53fa8063da0f31ee2ac8dd6c388f44
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go112.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95lazy.go
+FileChecksum: SHA1: 6239786aebbc4617b6c26deb484196a66e2e06e6
+FileChecksum: SHA256: 8d5254e7b6286d098973559a54abebfc452c81a06ff395c5bc46c534128852bd
+FileChecksum: SHA512: 4c3816b8fba8f5cda595eea713df15d33596ca8dcd33e28ef24c15c8c4ec7a499b572617a0c64e15b7a42c824839a03f0e6a067c0f88257b7871c7ac9c927aa6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95lazy.go
+FileName: vendor/google.golang.org/protobuf/internal/errors/is_go113.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go113.go
+FileChecksum: SHA1: 9d5d4967a44f4356e581f16fec75d250151a57b0
+FileChecksum: SHA256: 2d37408ce4ebba95fee6f4bf289e6767d66894c0fa5e38a314b70ebbbb3b372c
+FileChecksum: SHA512: d31147569e696407c6c96fbc75049d2a880f0c62165c542e7e8289a5a525530d938d723ec051e5a1f609a9bb4a1be87d7b8c787a829c827a0355796d07a93f94
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-errors-isC95go113.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95list.go
+FileChecksum: SHA1: 266ef93fde08199e1aea4bd46dc94c5fdb334e3a
+FileChecksum: SHA256: d7962034bcd203a308d80052c3ab23571139f204beabc0f93e7f5ac3953571cc
+FileChecksum: SHA512: 607f2f7241fff0fa0dc866023393050549bd9a8c1bb4c1e119eec01d88f39795fd5044aa506f4859a7853bc277584d3fe6a1b57fc393bb08016f54f06ad07e92
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95list.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95listC95gen.go
+FileChecksum: SHA1: f480e3298ce82f3e63ce46a7de9834233d74eab6
+FileChecksum: SHA256: bc8c9019bb55e10c2da04f2214398e0dc825daebf69d90c434b42b3f4c24a8f4
+FileChecksum: SHA512: 2f340112c561c8f069799f4d3c2e7cf2796da0fd472f74a168320f382f85d3d7e3fad6a075c2eec8521793b0f5a9ae786656a0df04f3f564a1ca8858d5358e4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95listC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/build.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-build.go
+FileChecksum: SHA1: ed1dc1f2557d919e39ed25884c343322ba49bc4f
+FileChecksum: SHA256: a183ad6b34b9e979fbe725df61f38a844503bd073a639166c5a0e874704dbee5
+FileChecksum: SHA512: f18773775f6195f49de57c423f97bf9622497034ef2b4fbc1f8b4cc827d19a2cdf10084936cb9250252e6698c0ddc51ca786fd0abab97f326a0748ebc3322226
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-build.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95init.go
+FileChecksum: SHA1: 9e382627cb220dd17c073ac85597407d2f4ca572
+FileChecksum: SHA256: 8477391f43325a8ddabeefd7fff03cc69b409f88ac454729838419692860f2dc
+FileChecksum: SHA512: 3f38b80a6eb77841c5774f61ef813d1f5ac7594e06122224c6f1bf0ad101a8b811f00e082e43bb1e1ea735fb1d310b58c06e0aef270aa9a50421b807945ef95a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-descC95init.go
+FileName: vendor/google.golang.org/protobuf/internal/flags/flags.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-flags.go
+FileChecksum: SHA1: 46605df1458084fe4e9d8275fc25211422b62d09
+FileChecksum: SHA256: 4921e802d873d589e4970b0924c1a78a3fd6f9ddda980789537e7b9cd666b56d
+FileChecksum: SHA512: 63001e76cf5cf8f20b50452b73511cca71d14477bdbfffe0cde3f92301a95ecbcb5e22ef18d616e0ee75b370ab9e0965ea7ddf48aebfdb9cfb160b553334de06
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-flags.go
+FileName: vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95disable.go
+FileChecksum: SHA1: e11f2a0c0516fba370b459e88236cf7fd10556ee
+FileChecksum: SHA256: 2168c4c8a4d610875ace5bfadace10d4276561bd1edf34c9d8daa42933e8a1b8
+FileChecksum: SHA512: 56c275ec3bd2e03fb735857a090f67a643395016572f0d00ef1d95f24a75a9f6de43972a5b2e4639ab34bdae6e7735468b8bb6df621c71933ec12be500333f88
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95disable.go
+FileName: vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95enable.go
+FileChecksum: SHA1: 29919d987f49bf9e90ea8da93a3182e1d7b48878
+FileChecksum: SHA256: 5d1a8091ca4c06c18bb4f4f6835a1efd9c697dda7097bf54c5d799e0ce3eb44d
+FileChecksum: SHA512: bce8d92b8661f53d67a6d25ff6efc0dbdf0b203accba58e7649dece32e31dff5875339c75935d7bc9fc57c3f889f6a99dc6b910cbf57072fafe0474e7f6061e7
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-flags-protoC95legacyC95enable.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/any_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-anyC95gen.go
+FileChecksum: SHA1: 3214e57f5dd07c5d354f395b7fed4ae742902506
+FileChecksum: SHA256: e52abb175ed291da379fe73582a640b13d08ae426b51f6e40a82fc07ef4494f2
+FileChecksum: SHA512: 75eaa8d508c81f08595b4512d0a13e9ded319c10d9269b7c6d63ebda5d215d0f2cc4772e749a43792a9248eb68537385046027c2fbff1c3f100499dbd77d56b5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-anyC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/api_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-apiC95gen.go
+FileChecksum: SHA1: d7703fbf3ac2bb1e1564335c5bcd63325bc35f5d
+FileChecksum: SHA256: 110c84dd0ceffab873b9612e87932b577d5e840e80bc7c8cc4f829e6399f1695
+FileChecksum: SHA512: 89cc0d2dbb53bb43cef13e9eaa1d956670139a7bb57aa9eb38a08f6edee0015803f43e632f0670f5956bc1f32d189a5704b171329b4d8479de8d84beadde2388
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-apiC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-doc.go
+FileChecksum: SHA1: 4c63bfea4f448d663d3dd85a2fefe31b5e38f3fb
+FileChecksum: SHA256: 4491a99a2b0ee5ccf8dbd9bdccc1cb3ed84e38abbbafb72f3567b1438bca663f
+FileChecksum: SHA512: 02562dcf6ec1a7141e36b10b2c63d1c6460caf88ca398b66a25577db98063e1b2f5bc7a11bc69b3bc8809637003b2bf236185cb278cfc4a2fee4637e458e5a48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-doc.go
+FileName: vendor/google.golang.org/protobuf/internal/filetype/build.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filetype-build.go
+FileChecksum: SHA1: e185efde219425dfda417fd37c5268da3478e5b9
+FileChecksum: SHA256: cfb37abe6c4ecdb27d8da0b7613255facfb24b4b1b2bfe9eb48ab8a1ac0204b3
+FileChecksum: SHA512: 738975695f73641a25d018d0d2bd9c74907f2893b39ed97e3edc624ffe72e5b7d4e464a8e646261fc72cb56bc6f387373afa7d9f0808cfae4b558ddabc0fdaec
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filetype-build.go
+FileName: vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-placeholder.go
+FileChecksum: SHA1: 0cf4210b9884026a1dbddb37198fceec24ae25ed
+FileChecksum: SHA256: dbe84bae63e6274cffb777fb23739c70c05c321e8b93411ba2681d93de6ada0f
+FileChecksum: SHA512: 5347b19b1fae6c670a4515ed68f5e220fdfd96f2b5a559998a0796f139b02ea1a8bdd233b2f8154a07f6e18df2e8267111e2b32f7c25d8587d27ec5c7afe750d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-filedesc-placeholder.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-descriptorC95gen.go
+FileChecksum: SHA1: 9efff2cdc184d867dca9e44fb4edbfd3f6e0e164
+FileChecksum: SHA256: 5dd35c07b1c4a73f32eda1344ccab783b3a587795af14d92f0c484b1ecee8422
+FileChecksum: SHA512: 8e12c60291af21b8120d3ff0f4a84f050cff3f079f6f961303ae1e7c3a79b179658e65211e0f38f3ae4719a829f2b10f9a9eb3fae3714c5c8edbe52353b74fae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-descriptorC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-fieldC95maskC95gen.go
+FileChecksum: SHA1: c091886806ec52feb492645d1780615b3a8a17ac
+FileChecksum: SHA256: 97ac7e90145a527f1b53e26868cb2257af5ca000103dcf20ff6374693512d5de
+FileChecksum: SHA512: f2b2ba14dd96f597b10f1da22c82f1ec5bdb4c47590d8293cc39d7b6b88bdd5a0ecdff799c0170be549ca5e32d13716babf50a9ca313af2c0781acee61ee598e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-fieldC95maskC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/goname.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-goname.go
+FileChecksum: SHA1: 355cba29131612f7b8432e2aca31006cb9f53cc2
+FileChecksum: SHA256: 26d956b899ec5eb6c8a5ecfa9f6a004d15f3175c851ad23676c29fb005b5b4e6
+FileChecksum: SHA512: ef32c29b18d05a5d677a8a13a31b7f7cd8f4dae29fbf02b632d6b0ff20f8b00d07f18717f0c382e16f3c4987ee7e0c8dc17d2858f918edd1db6c24533a72159b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-goname.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/duration_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-durationC95gen.go
+FileChecksum: SHA1: 228b43ec0c1711da5ef245a07750c3f05c6e4cf6
+FileChecksum: SHA256: 223477c7c21d3aba70b6afaad202499d35dd28d97bb3096649d398ec09ffbd20
+FileChecksum: SHA512: 687c67d5a910dfba1a690f8a49208c80e78baa690cb39e0423750027795544374001a932c350844a1deffe9bdb00be18b0f0b8c89adaa0b2eeb5673b38dd7de8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-durationC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/empty_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-emptyC95gen.go
+FileChecksum: SHA1: 3de0f568fbb2f7822263d6e6694403357f7e842a
+FileChecksum: SHA256: 1bb2b55b36ca99633efc148681988dbd738bfc6d09b88c92bed6392a4a16e80c
+FileChecksum: SHA512: d49bc4c57b18659b581015e2f1708b5795750d8e3589abd8c59c3ae3e37a88e575520b3ac48f4f4e9dbc482725901ead059f85c52b0f8fa0a204f560d7accbbf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-emptyC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-sourceC95contextC95gen.go
+FileChecksum: SHA1: b2037f6dbd476e4144a92579c180273feb8656ed
+FileChecksum: SHA256: e0aac89c39dea4892ba50ea5316728a8c582ba9a1434406c5aa047c0e90bcdd0
+FileChecksum: SHA512: fc208ab120acac6f90369f10ee52e87f95df5239335e8038f7b1f00770e9c9fddda7aa3f9c158b0419c768c08cbe878ee0402837435ef0603b5ade4d6e359a54
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-sourceC95contextC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/map_entry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-mapC95entry.go
+FileChecksum: SHA1: a6de4f7e4de7dc2fb29e0784dbe376979d8b9163
+FileChecksum: SHA256: 2af7de53dc0177c7a8b3491dae6472e2fe0bcebf4cf0f9d57a5ba67039da33bd
+FileChecksum: SHA512: 8d5119e0d9feceaff8efe58dbef814681431f6503640fe740db730b9b66168d5e2931a562820f392dab84fcf12abe1af4d68c32d4c72edfa3e701cb9fec928f1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-mapC95entry.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/struct_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-structC95gen.go
+FileChecksum: SHA1: 008fbf54939ad44cfb3d403f65c176237cf46b03
+FileChecksum: SHA256: a0fb714ad17ad4d6b920df4ba5fc74611b39aec33c55117b2aab0b9758af2a3c
+FileChecksum: SHA512: eada74e14ec98d52921889195959969c0a6f6ebb2224a31fe83b74b251c43b8ff94b339e14d40c50ad833183840e96c370899dce50cdc4631393a576533a1759
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-structC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-timestampC95gen.go
+FileChecksum: SHA1: 63f533db34c0e24288a73386611a39ad53b9e649
+FileChecksum: SHA256: 5652b719e792955d360f4b5c8f8889923976b55f86e13dd233edf366fdd71e2a
+FileChecksum: SHA512: aada3bf2d97b4fac2a38b5b13c7f814110088f7da4f17b8aab25bdf38c3115a524434edf46f86a237c8a01dbb247f69f5edbea51a5f10071ad606437e13f06e9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-timestampC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappersC95gen.go
+FileChecksum: SHA1: b921184ef62a280978760da13750e83d6e0a15f7
+FileChecksum: SHA256: eaa8ad201d3ef370a565fea90ae9f5bef6efec40c7fa58a53e7efe635731e887
+FileChecksum: SHA512: d00aadb1c1f6cbbba30c1fdd50a883a62b9720838004dde7e79d8781edf3f4d7fec44bceb3eef300f90e4a4b0a58d96c7e0bf47c881b3e8f3d89cd6dd3192808
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappersC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappers.go
+FileChecksum: SHA1: 3d25faa8ba752004da6c2940fa449ff75abfb64b
+FileChecksum: SHA256: a028064c8e6ef7b3ed36da09f6f8b2334f866fff8e9f002655cb18789f0ce45c
+FileChecksum: SHA512: 3d2ceeb259961bf88f2ea8ad0ab82de7c22f0abed426770ba7c20a4aeaf86c5fa8aba0b876e2993519335064ecd00c87c72a18c89a6075d2976e5272cf72774c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-wrappers.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95extension.go
+FileChecksum: SHA1: 23332e923b42063072d5e2d0ff76570779b6eede
+FileChecksum: SHA256: a552d86147ef4cbc7e7c54cb65c499c4f7cd6a9903e57634f65b20c7534b6467
+FileChecksum: SHA512: 3534b69f6fb01d2cd808d523ee15650482719250e7362a1368851eb73d123b9ce136cdd0ae0d6b40343dccb48d0a776edf39b1cab2a4bae6893422d292976e2a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95extension.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/checkinit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-checkinit.go
+FileChecksum: SHA1: 6df4dc83ee6a94c3a8987ed73c9d740f51c79c4c
+FileChecksum: SHA256: 64684ff7583c9f962304a8e2867f76e2533d72990c6acba13d3241f2ba54c292
+FileChecksum: SHA512: bd6c8ae2f3cbb1b4e5c06ca1489ead3266bb8cfb6dbf50a94b75f479179fa7a8896b9cd39b3b577f810de422480ae149090704890017932be76cf4cbb22e2073
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-checkinit.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/api_export.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-apiC95export.go
+FileChecksum: SHA1: 146c3f4cd1e6a4513f97c6bea552f5edeb87cf07
+FileChecksum: SHA256: f6a6059e4e7b6de5833ef14061318975823ef08fd737ad7e6089f840d15e1e34
+FileChecksum: SHA512: d8d1a2197809fcadc74cdaddd5ef18b47921d04fb0b1735cc87acda7350a3facc70a3d57450485f7608489515146cf9f3e53943b1c8c5f381fa5df10558c9c05
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-apiC95export.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_field.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95field.go
+FileChecksum: SHA1: 91421c771c85770fad4d8cfece36295cb62e631a
+FileChecksum: SHA256: 13cbfaad91710d66fc403b383d9644d4fcf4d59a47fba426773224ef95f43f34
+FileChecksum: SHA512: 01554e088a0ebaad8da91a3bccbf3d6a52f845ce8719e1ac3f1374a135394a69975cbb988c220f507c427ca12e1988f6a2e0c72c78e978f3fab4d54b210fb52c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95field.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_map.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95map.go
+FileChecksum: SHA1: 9db384b9d613b181c54d015ebd388f36e2796a71
+FileChecksum: SHA256: a050eb4e3892722b8d24ae67e0c22e4f3ed58fa67bd4858465df8dbfaa24caa9
+FileChecksum: SHA512: 580c539a97c0ce9c37efa20c38b8f7278e0acb8ee7a90ae628452b9bfb8020bff10b779584b0f0d64a91b7ed87d14cbf4a6b9311c3c39937b719f36695aff06d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95map.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_map_go111.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go111.go
+FileChecksum: SHA1: a755ee6533052e0bd0fac3eb6d20debef2ac841d
+FileChecksum: SHA256: bf9dfddec7c35dcbe1c8c3d76aac0983c4f9ca9ea65e434dfbb70c1461c0dceb
+FileChecksum: SHA512: ed19058c40acfa3c1d93b5a13d30f92a2c1f0fe6de6a69d7081a13c9ecf98c08da2191afbf589f9e135b39820b10373c2a3703e650158ef17c863366c73d415d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go111.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_map_go112.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go112.go
+FileChecksum: SHA1: 7558cad8aa71d4e38b216d72b5bf8ab85996b38d
+FileChecksum: SHA256: c43a8545068c36a1d98803ac5c3b3e1a3d487942776f6055048c5d59f94a9522
+FileChecksum: SHA512: 6ff3c4c3df02f12dd316ca11eabe1f76d0ddfd15c8b4821e8e6fe4c16e62826adca43160491f8e3295ae40175a4ea1ff30e17cdcdc0d8108576b5eef38cba3dd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95mapC95go112.go
+FileName: vendor/google.golang.org/protobuf/internal/genid/type_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-typeC95gen.go
+FileChecksum: SHA1: 94e73e111c7ccefb2b526a4960e5cda9a9ab2e59
+FileChecksum: SHA256: 404f307673e4c7b413e001d3c54d130af682ac8e99089c69f489d6b262455664
+FileChecksum: SHA512: 4e272763c5f12835db043a2e1e7af1ea1b100a78206f2fc69325f066a551e2724f1ff35c629ac2d979ce92a5b6205ae2368ddbf3b6333c177f89613c1b8445ef
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-genid-typeC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95reflect.go
+FileChecksum: SHA1: ff20fdec2937e4f955d07772eabc0a92207d53a0
+FileChecksum: SHA256: 989b7c6585b90fde885382dc12509f66bce7b54af8390bb69eefe491d605f98c
+FileChecksum: SHA512: 853e8771c1735c720aa7dfc6f038b904c6937f7f30130a9a0e6a375ab7dd671c3894dc8fb488474ec1df139eaf5808a2c4d84c2a46d4c7ce663e7a00fce98c38
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95reflect.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95gen.go
+FileChecksum: SHA1: 3f0d7df34e0583df3d29b21e52c9fb477062a24e
+FileChecksum: SHA256: 96172851c39db379c10764c478bc4886f8ac50142f133fdc911f677e38247d58
+FileChecksum: SHA512: 344a7a1765effb08384f084cc4009443533a68ecc650c3209b59fd26e00d83ada03b94171ab0c55b948c958ac2e404bcb0e49cb00fd444c61494de1078ee552a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_tables.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95tables.go
+FileChecksum: SHA1: 345a04d08cd94a09c5c6581f25842b9ebb9dde68
+FileChecksum: SHA256: 857c898b4f81b8a8a93edaad2690843e83384b3f391de66481a29c558a3574e4
+FileChecksum: SHA512: 1a9502bd56733c03103e6a80040efe777bc0568cec52d84981c987c38682e23bf8cc488573968c76acfc4496a5612b9fba4040f0fb3466b0794151a09a7d6155
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95tables.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95messageset.go
+FileChecksum: SHA1: 0015b22560f69125e5ed2bdb210c8169371a6618
+FileChecksum: SHA256: 6fd0efef27a6e026da67e46e7e4c28041db83efd9156e99d2bedae0582b87f8b
+FileChecksum: SHA512: 1d332a799d848cbd515e8d6d3555a10f4d71bd5572f6829319224eada0dfd9cb7d333640e8ff73e8c3a1c809379134dbdc34c2a68105edf6f19be6ac8f8dd4c5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95messageset.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/convert_list.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95list.go
+FileChecksum: SHA1: 6d159686a420beb38523b9e8698320b435ccd9ad
+FileChecksum: SHA256: ac8f4cf0eb458da8b83a7ade28f150907406914b9393588e6c829750834ce2d0
+FileChecksum: SHA512: 77599421e68b097bb5b0ccf3957767adf5d6ac2180d3226ba413e82a54ddb6f1bc89142a27330285d4a7a8a0402999483011ad8c270c7cf8936a5e146183e8f6
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95list.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/convert_map.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95map.go
+FileChecksum: SHA1: b1d85198ab56b7b7f121a86b7dbd8575df3d3ce2
+FileChecksum: SHA256: 5bc0e0170581e322c513eab85d3e2e271047c1295de2ca89d6287674063b9976
+FileChecksum: SHA512: d38407f2f9eaacd7a4b6d7a02c94727fcccd5e954d50ab4821b0a3060e78796e17756d1cd58a3ab8b557f38e80dbc609d91c716e39078f8a32d6dae4e08bae1b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convertC95map.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_message.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95message.go
+FileChecksum: SHA1: b0dc4af0c6fc8bd13d83e29564f50643faca3d41
+FileChecksum: SHA256: c6b9af4d1704a2ff0378d366286d51e6da9bb1d88595142228323cbdb429e99a
+FileChecksum: SHA512: f75004f778eceacad4802ea600c13d76ac37f4e38271e054afd4a786232839cd0f72fc5640825978dee7a48fb37bcd793dce0ead0bcb803f233c137be5646844
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95message.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-encode.go
+FileChecksum: SHA1: 4480928773f491d38054b7b39758a899681fe416
+FileChecksum: SHA256: be10b62cab10282e29dafbdf40de57bd8a5e7d326c7bdd04d4eeab64e9397162
+FileChecksum: SHA512: 8e3c8f858a48cdeabf4087dd6659427c1298a03fdc3959f38889f0f89fbca69df225db4f4b0f334d067b6b83c223151c63303154123709fad80e34471868420f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-encode.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/enum.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-enum.go
+FileChecksum: SHA1: 87e02ad44537f3e30914f7eeee05ae4e5e928b23
+FileChecksum: SHA256: d499b32c2e5c492e283cf2fd90b88cd2c5ef0c55a08b8cc358f2b4fab2287e3d
+FileChecksum: SHA512: f608f8710ba88018af13bcc99114aa7b3b7023ccc8244c7907bafc1973259d77e9dd238b7467ee397e832e21407d972bc2f0832c1d7b674fdeeb4051adc58b96
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-enum.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95unsafe.go
+FileChecksum: SHA1: fb61fa096c94cea2327826c7f9bdd118ed391a25
+FileChecksum: SHA256: 7b86a7c6defaeef07021d858fce644b69bf18dff4f9bf5d519658ad00650ecfe
+FileChecksum: SHA512: 435f14393af72d272aa068c782fc61f35e75dc69322728ed19a142a0b2190284c3d3a2a4911706ba88c385c2ff7338c060ea3546ff81652bbfcde53bbbb1556b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-codecC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/convert.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convert.go
+FileChecksum: SHA1: 6fff1b7c6bc0461eab48a97a584be6880be042fa
+FileChecksum: SHA256: 1a8f6eff297e3c48f129eed851e0516ff1a5a8c97047992da32bdfb4871b283c
+FileChecksum: SHA512: 3b1e18fd6ee4327517def3944d0aef16e25423000f9beff68b84fd921678d8a8f1ba474e7e5672454fe6cfefcc9950e22dec2970ea6b31883d9cc35779f0ad4f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-convert.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95enum.go
+FileChecksum: SHA1: 55d0492c6ea18b8a183dcdf07ced41dd5e557e18
+FileChecksum: SHA256: 035b9f9e4a9f1c71225e1540a424552dc2e4528dc94d1e94f73563d3b8cbbe1d
+FileChecksum: SHA512: 5ccf1feab594db7b2812bacc11e29d252331d3687d2da7f6f551c27d56136d59ad13719cd7e8f32ed554426fe9a144de9b17f53a8324c91d0f075760144dcde1
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95enum.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_export.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95export.go
+FileChecksum: SHA1: 9866fb054fa6a6d1d6c76d945433b0fdf77e5ab5
+FileChecksum: SHA256: 1b4d0af8633ad25a085e2d4ed9b39262cd511a305f439d3dd478310acf5daf00
+FileChecksum: SHA512: ada4cef3af0ce98aaddd4696e324591b603731e6d6b6c79c943741b061b04915f8645b586aa0ad2f2b09c26c04bf3d802fbc21d31d23022768f1fdd011f9641c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95export.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95extension.go
+FileChecksum: SHA1: 29010b281ef662e461ba35e2675ace4896529bc1
+FileChecksum: SHA256: c42ce87090e3ee5612ee47e32339456276559071a8b543fa527cb47721dee086
+FileChecksum: SHA512: 726b156f108c4bfadd95af7539bc9a5c39a7746c0f3d92e21aaf80e720ef8ac11ce2130bccdff2918789903fa8e375ee401251a9cd3ec44a65ddc0103773bb1a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95extension.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_file.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95file.go
+FileChecksum: SHA1: 8cbb08d9edf7e6d87daa27447fef57d1b9153b87
+FileChecksum: SHA256: 907e47c605566c44c46476adfc3ddd33aae23bb1c81b19091f0f96dcda0d0471
+FileChecksum: SHA512: d0a00b47576a4764f0c80876e0a58cd9f866e304b1126312317b0eb49c45007fffa197eeb64968072a1eb13cd6e4f504c4087e4a38afb6922f2c04250e67c317
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95file.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-decode.go
+FileChecksum: SHA1: 2ef2ddb4095e55c32e8ca4eae3c1026cf7c5945a
+FileChecksum: SHA256: 10a0c32c2a6c9f4d65c40ce31a7cfa7bcdc3db04e13cba5fa90e04d0933cb9b6
+FileChecksum: SHA512: 0fe276b61a3a38f55f6e2290d3ba1a34178fd625dfc84f503976c47b5fc7d46c13d0740ee403a11ee338984c687ee4962184c4403ccf0441c10bd6a1284d4ddf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-decode.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/merge_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-mergeC95gen.go
+FileChecksum: SHA1: 75df6d283138282f50f1e5add85939e7bdd1f0fd
+FileChecksum: SHA256: 8eddd46272d1cf5e7de3e55f1c92646ad0fc1e2be9d5929633aa5b0813b5780e
+FileChecksum: SHA512: e40adf817850956831e71c9ba84d4f45cecbeaa0f073b587c53a342b90bf8851de90c8a2a8658babff837ff123a96ea1096531494fdd5df319ace8727bd4af57
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-mergeC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-message.go
+FileChecksum: SHA1: 63bb6808f0f4e82067445e096eea9dafc6d9ecc1
+FileChecksum: SHA256: 2ce38722d4a101c595fd88a2c71e50dbee7784785c7c96ced4b7867315ac4983
+FileChecksum: SHA512: 4567fd768200a3362dc0be5bf42b7080f820ba0c84ad9b970b788c6b3476c6120b7e9c2349baa23703cd083e31f4d057f82253329c06b3fa5c65121c846189cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-message.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflect.go
+FileChecksum: SHA1: ee67918822bed16ae69901f02471737229795138
+FileChecksum: SHA256: 29f7c4c1463afe3e7da25e6b1770526f2cc450b66a17739d5cf25e949e37bebe
+FileChecksum: SHA512: 101046cf6a782e92c5e54328da26d5257b455f571abb9e62fc369c3a3860a0338820a869d318dd2c219451e3f6dc75dc0e63dba8fd445d06b21f4757e72667d9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflect.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-extension.go
+FileChecksum: SHA1: 0b91389aadb44fbb46fd82f65f3d15af1b983613
+FileChecksum: SHA256: 3b0e023a19f78cb2f05ea6cf16a1a430be43652d9b562c733ff9700780f8ebe5
+FileChecksum: SHA512: 3a69693b1e21cfcb0195d1208325bc925d9915c0ecd3545e95b3396811032cd6fc9b8eecb4850b5d1e88547549df13d2119a2fb6e0f256006e40218135e42bfd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-extension.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95gen.go
+FileChecksum: SHA1: ecbd6b7120db2db739023f820cc02ba4f2e7959a
+FileChecksum: SHA256: bc5a44b88a0e99d73ab973562309ec6070ac1e8cf704eaf8819bbe10fa608d02
+FileChecksum: SHA512: 9339cd56cb5c7b1ceb50cd768c292fa5979756b11511a3fbc76331e27d5a6edb21a890f586ff0841ca1b5b2aed0d7c61ddff42fa683e9b32eaa57b3143756f2c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95gen.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/legacy_message.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95message.go
+FileChecksum: SHA1: 2c96a5652053759e7d73231355f96790d8b6bb22
+FileChecksum: SHA256: 4d726b41b0d60e5f85876eacd2bb9ec219e2e417b007baa8e54de90041655dad
+FileChecksum: SHA512: a4eecaf192d06d6a1256ea1ad49ffe01339d681f911fd5bf262f08cca2c7bcc46b20cadbb1a0586f579ca542c7ebe5c8290e0f6e6f8446135f29539d4e89b7b2
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-legacyC95message.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/pointer_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95reflect.go
+FileChecksum: SHA1: 56d873b615f3c30a075ef61ecc0e826b75d51754
+FileChecksum: SHA256: 780c03c6b9327347ac4cf5497a3b0aa7a0e3d7d91fe54036fea4a34b58d5b41d
+FileChecksum: SHA512: ea41bf672907498b7a01c8d260e6307f4b14e5183098815a79eca830fc4a58875ead6157d3ff10ee24a5e4121c3b89b9912269a835c2fcfe8fc2acc004202f73
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95reflect.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95unsafe.go
+FileChecksum: SHA1: 605c4811b7db4e9b39432ffdfbee4ea2edaa6b9e
+FileChecksum: SHA256: 0e5ee86a2ea9f20902d587c4bb5d3e17669283cb4f945436d4a7064a7761bec6
+FileChecksum: SHA512: 05e3a5cf046e8330402faa2252c18bc43824b059c9ecf43dd90f3807a82f73a17535c9e196ad94c45f3748e1f02057bb5789dd81ca9193dc12a99f44ee6c252f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-pointerC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/validate.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-validate.go
+FileChecksum: SHA1: ee403ac6cfbf6e8b94d6327528ff8322efe1a1d6
+FileChecksum: SHA256: ebdfaab6cbb8346ba1c084c0c1a46c8628440acac40e91f3bbf3ee57be650def
+FileChecksum: SHA512: f2fbb31fbb3d62084e0b390626cf6336bd6c0ce2a8816cb5860d104c7cb30b04fb18872d909e5cb778593b2c4aa7e56bba176e8fb10aaebb31db41fe9aa158be
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-validate.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/merge.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-merge.go
+FileChecksum: SHA1: 72b127edf43f4b36af78d16009c80bcc3e1a87e1
+FileChecksum: SHA256: d30337d862091897415bd9d65e0cc17b9340df2c730475d68313eeac4f8f2426
+FileChecksum: SHA512: 821c54e460f16c47687d807d1c3c1982a9c60adaecbcc215521807b09d20aa35d68afd1635a29a268db0cb6f986fef720667a8bddf587977f21c75af6062504a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-merge.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/weak.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-weak.go
+FileChecksum: SHA1: 212a8666ddb9d4e1b505fdf64023adf0b55763ae
+FileChecksum: SHA256: 26a805271f86ba6d2cdb90501965fc18a5e9297f69f927abebc2e1a85c65b12a
+FileChecksum: SHA512: 79939fc5b20298411f3eb377010e67d96175ce3ee416a265924255db22dc1f2fba33cbd6a3edb124ad8ea8adc622d3addf4fde6f8d15e301b81167d82f757fe8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-weak.go
+FileName: vendor/google.golang.org/protobuf/internal/mapsort/mapsort.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-mapsort-mapsort.go
+FileChecksum: SHA1: 075c3c1d06e5839dc40f541e59e3fdb995d3f4b2
+FileChecksum: SHA256: 99192d4436c189a7f2d37448300b50ee69c139343ad3d13b4792b2b213351b2e
+FileChecksum: SHA512: 5857f9e71dbffc369ff3499e432a57aa260bc27c70f4c0dbe7227beecb17a9b28f896ed095280bd4859f898fb2ed3b80fa6787df68e4c6c9ca3f1a7907199d4b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-mapsort-mapsort.go
+FileName: vendor/google.golang.org/protobuf/internal/set/ints.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-set-ints.go
+FileChecksum: SHA1: ad30f4e7126ac93707388032515989f196974621
+FileChecksum: SHA256: 5876c26b3c816d4f662b737731e89d3a44317c798c6c5400526c32387292e16d
+FileChecksum: SHA512: 69123d060f54c2e3df69cb3854317638d94e5e90a53391bbab9c203d519bad958c78ed52b1387ab839a1737ac3f2156b2ffeae751c35e297d67897acb05a601f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-set-ints.go
+FileName: vendor/google.golang.org/protobuf/internal/strs/strings.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-strings.go
+FileChecksum: SHA1: c29c49fa58955359a66736b65ea91bb1541eaccf
+FileChecksum: SHA256: 1101429ecd8fb7c5e6d7d75451973a8b74209f95332d5cf976d73602a4193085
+FileChecksum: SHA512: ed3c7b6eb92a8d5206097cc3caeb47d9f5882f7599f2e5e2373bddb053bb5da282775c0cbd659faeded96bd175eabdb2ae03c8156d900531255d44ea1a68954b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-strings.go
+FileName: vendor/google.golang.org/protobuf/internal/strs/strings_pure.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95pure.go
+FileChecksum: SHA1: 31e50ec38964540e34a89005be9ff7a8ddd40a81
+FileChecksum: SHA256: 8035cef39b9c9a3721fc275b2dd48c483b98c2440c511a4a6ffaca43bd9d09c0
+FileChecksum: SHA512: 937a1db39aa994f4dfd260375912cf82596f3c5f630f431ea3381d3d0194dc64e75997f4f2f616c5b7bcf531e0a35b38a5141f5efd4fe2ea39b9a9cfddd57909
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95pure.go
+FileName: vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95unsafe.go
+FileChecksum: SHA1: 06a5303b6982a8937a553fd4332da6d123a47ce9
+FileChecksum: SHA256: 4f4a1ad62c6473a2f1e2febd195355354f267eb2bc35eb981093453a63d4e362
+FileChecksum: SHA512: f99f6e00bf6172da240af697abe7428aeecc94d14dc418cb5d53941f2ebec7d46a11063327f5622ecabb491b3ec11ec6046002d2187a1fc9873d9e5ae39dc1f4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-strs-stringsC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/internal/version/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-version-version.go
+FileChecksum: SHA1: ce7888ddab60e35741eea11b1112f9560cc224f6
+FileChecksum: SHA256: b145c89e1e2dc628d95ab1273c018274a417a95664566df93f64d012fad89cc9
+FileChecksum: SHA512: 7e3684958469e134fe141e9e80440ae10611700ef1c233f58913e6e5f39a3768518ab4f9dccb0ad91b4e0ba4d4e7cae9e83fb2d32ffa5a98a814e41ca6c46203
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-version-version.go
+FileName: vendor/google.golang.org/protobuf/proto/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decode.go
+FileChecksum: SHA1: d9f1d0f16b5d8aa8cb0a824c9d19e256dc365c58
+FileChecksum: SHA256: 144ef539a0ec9d0f5bed130574466cb61b14362021c8544fe7dbd3d9d5b7e1eb
+FileChecksum: SHA512: dce6fd204e0aac37058e8eca7b44044239a3c0569b79888994f9f394e8d5ed19b26ba3fe3463324afc7de005e5a86f7c33211686d1990273e77431a590ed0a1b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decode.go
+FileName: vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95field.go
+FileChecksum: SHA1: 188db9bd9299dc9f57c32c9c3c2e8b0210f14e88
+FileChecksum: SHA256: d26280244346aa029990e319891b48d8fc6d29e620924afdd981b918e7385122
+FileChecksum: SHA512: 90a8465feb14aa253276e617df37e975781d3aaaed9c71879c6624499d4e3972068405e74038378f42a43233624abd07d65057b115483749f2bac686cb5b7aaf
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-impl-messageC95reflectC95field.go
+FileName: vendor/google.golang.org/protobuf/proto/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-doc.go
+FileChecksum: SHA1: 9482cba8da6e6ed2661b52d96050805c747a7b85
+FileChecksum: SHA256: 0716184bdb416018aca164c2b03e188dcd3f70d5a6c0cc0b8130b0d07ed029bb
+FileChecksum: SHA512: e4be5f0868131545bf4b9ef1ff488c21ad8d6defb58a72837b244a17677b9a0193a116341972ae656bde7594df787d07413efe16c65046cfd43be5c378cbba18
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-doc.go
+FileName: vendor/google.golang.org/protobuf/proto/decode_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decodeC95gen.go
+FileChecksum: SHA1: 07a2190521d3e60c1f27936551bde8ec218b6f67
+FileChecksum: SHA256: 6c57ab97a6e3f33c7e46589933c4d8e2a152b0f9784aa3a2cf52a19181ea2153
+FileChecksum: SHA512: ea5586404d205644660bc20bef8fa979dde83e6eb8a1aafbb2d29cd3650fb19a82d55a1e8a59bdc701fad440bef5bc32cf7b690b39317f04260276c1997de546
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-decodeC95gen.go
+FileName: vendor/google.golang.org/protobuf/proto/encode_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encodeC95gen.go
+FileChecksum: SHA1: d87c35ae8387bf9306d2f8b88d16ab8b168c449d
+FileChecksum: SHA256: 8a5d8bc917c21a19c1c5ef4b58f747880cfe1321de1294662d0ee2c903c7dc9e
+FileChecksum: SHA512: a9375b42be331ee254efb5282cac3c824cdb6a2efd89d5f4bb39b0bf892a6f80c7712822153959abfe7a982e6e75c02a79814ce525d599a81ea8b4a5db8ce56d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encodeC95gen.go
+FileName: vendor/google.golang.org/protobuf/proto/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encode.go
+FileChecksum: SHA1: dc5c923620a91ae52a22238e7ea76ad11715cc4e
+FileChecksum: SHA256: 149e16b14c8f6c34fe2ebd1cc631d983f144e81287fca79c68c6314d7f4bba2c
+FileChecksum: SHA512: cbaeb783855cdc468680efcd7126ef1d65a421ba1de5f362becfdeacc8145a87ee5752b86adf847c147cc6d4749624dfa11891482aad71689e3ca442163bb226
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-encode.go
+FileName: vendor/google.golang.org/protobuf/proto/checkinit.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-checkinit.go
+FileChecksum: SHA1: cea6dfa3d616416eb8ef17253a262928559b64f4
+FileChecksum: SHA256: f95547595ee464a0d2f2bfae729afb61c91c5ed3bc64f089949b4b1555a71b9b
+FileChecksum: SHA512: 25f8c11583c24858a4a88aae676ace93060f7fff37153f8f157e0f211f58659f336dce65f6d4b5b67e5e63b21039462db519913009fbe79b1121d9a64e3092a3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-checkinit.go
+FileName: vendor/google.golang.org/protobuf/proto/extension.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-extension.go
+FileChecksum: SHA1: b95c5edf3bdb45dfd88a4ae5d096c1ee28b4ab83
+FileChecksum: SHA256: 54aa0b5cff2b460eaa7ad03a9c1c19fa8abf92052e2927b6895b0fcd8de60e15
+FileChecksum: SHA512: ae9e6b8ba757e0b67ffc248d2044878bb5e1058480dd9aeeddb9d7ff75fdc7d4257694362167b6d9dc6fb5b76cad351d044bf513a4f6c307d674166df2e14912
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-extension.go
+FileName: vendor/google.golang.org/protobuf/internal/pragma/pragma.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-pragma-pragma.go
+FileChecksum: SHA1: 5ba291cd9426ff392f5de5562286feec4e27ed0b
+FileChecksum: SHA256: d3babf1e4b0b32f721a0dd3e6c3e31fc573d550fd9a1d51e543f40482b0fc6f5
+FileChecksum: SHA512: 20ec67356fb0a20c3cb332fd0f0b609329bbbb4d2c1ba9caf1af081e7a7aaf366318de41228074a476cca023088042dea973db8e7c18e5935cbfc943a1964ad9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-internal-pragma-pragma.go
+FileName: vendor/google.golang.org/protobuf/proto/equal.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-equal.go
+FileChecksum: SHA1: 416ed353e36a06b93a2853dd6d768199d2c358b7
+FileChecksum: SHA256: 87d5e91624fc63cc1fed9ba8520bf9520434abe5a99508967e98b79243f94b62
+FileChecksum: SHA512: 747f577464f6c172d76aa375fa2e3a4ba436b7f9451f03b07986021cce30986a556231268c30b2e04482dead461d93fb9bd7377d5d826c15eee78b5dfac6eb60
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-equal.go
+FileName: vendor/google.golang.org/protobuf/proto/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-proto.go
+FileChecksum: SHA1: 893c7245c083dc97fe2229c139bd40a82d9a840d
+FileChecksum: SHA256: 230d666f013efd1c1ebc4f174a2bf25eefc8503c4ecbe9841428115535b054c1
+FileChecksum: SHA512: 7e42da18a7e6e0611f9a6111fb24ba8207ca39b3018f9578386c50d3fff538b0352f709d96aae0d280ee74ae2d04dbc81d9edf65f73e0ac8a38e5ec0bac00a22
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-proto.go
+FileName: vendor/google.golang.org/protobuf/proto/proto_methods.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95methods.go
+FileChecksum: SHA1: fa1d99dc9eca391375ebecac9344ca67b45e2186
+FileChecksum: SHA256: 403b59ebc34a0604c7d749afcd073337ab76cd0d17a1942df5e912e02084739e
+FileChecksum: SHA512: 1ca8e34899900f70fb08b94f99dcb4897d004a951cfe3ef3981420f1d67b30f198ba978a5472868f1e190b8ee30a8e9fab75dd6749c6052a88d3d2f6c9134542
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95methods.go
+FileName: vendor/google.golang.org/protobuf/proto/messageset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-messageset.go
+FileChecksum: SHA1: da4113e7f44d1895bbce2ede67dfc3c166e45730
+FileChecksum: SHA256: 97634bd5df21b92fc28b4bb234c4fc946de62760d0eccbebf111b3cdd9d68b07
+FileChecksum: SHA512: a518e01178bee2c13ec948427a20d235c3f829847046cfee54743c9023056c3e0206dfb2d2209a76a9269b7d98c6a1b628b90193a8862ca341ef2821ac87e3ad
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-messageset.go
+FileName: vendor/google.golang.org/protobuf/proto/merge.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-merge.go
+FileChecksum: SHA1: 0ce7f57710448bb4ffacbd292e20877128cdfea9
+FileChecksum: SHA256: e61f30b779711ef188c14da74baae4da23447c99b75b33e24aefe2f2fe0e772b
+FileChecksum: SHA512: a7786cb43a176b2e28532ddbccd52d5f9d7abc2b943329c8a42153cb5bf3118ceb83d19570561e859078331dfdc83e286543b7cc4b3fa081e4b6d8a7451248e4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-merge.go
+FileName: vendor/google.golang.org/protobuf/proto/size.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-size.go
+FileChecksum: SHA1: d1387fb5b0dfa051f2ba04b1cae993c0159af374
+FileChecksum: SHA256: ad7a512e3f9a9eb61e2500461935410cfffe8782976d76d124e2f593e7f55bd6
+FileChecksum: SHA512: 458562ae87f1877e820dd4681270b12d0d89054013633d289dbb59f4ba2f3acbeac37f4f0fba6a49f393758e3d97fb1d4896efb55b62f9a0dfd3cc917c1820b3
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-size.go
+FileName: vendor/google.golang.org/protobuf/proto/proto_reflect.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95reflect.go
+FileChecksum: SHA1: 4902dc472aac21b257eaa029138212197be89ddd
+FileChecksum: SHA256: 9601a278763c963509a7bab893a298263c1389aa9632b943dcabc876c583ad09
+FileChecksum: SHA512: 7b219b47f592de2466bd3dc3e721dbc5b82dd73dd2cd9881db279ce0083da6b61a8dcf086e18c6d008e61e1d15009ce99f7c3c710fbae5b835fb5d565006df2d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-protoC95reflect.go
+FileName: vendor/google.golang.org/protobuf/proto/reset.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-reset.go
+FileChecksum: SHA1: 826e3b1dabd222d91fe768b630fdab05fd06f132
+FileChecksum: SHA256: 45097aa639f3c64a5533572cb1968d3870c985b3e0b021ce5c0c3b4934768604
+FileChecksum: SHA512: 216bd4cf04bf3b5fdeef20202b6378468aa35f74dc641edc54b4473b9b647ed09bdf21392bd02a03182a94658f56f0669ac3cb39047cb1286e0ae3cd0be475a9
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-reset.go
+FileName: vendor/google.golang.org/protobuf/proto/size_gen.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-sizeC95gen.go
+FileChecksum: SHA1: b89348b5c3f8ea25cef26a3eeaecdaa9a2c87949
+FileChecksum: SHA256: e8def0182318c353c022c973eec36615c121078ac405b059c7f02fad71c86b8d
+FileChecksum: SHA512: 5322df15bee00808b8dbfa9e6d172c24d8e11113a208e85ed5dc7a6e14a21703d89b78afbaded5ea1962825e0ecb3978a067293305d5d014f74ac130e081fcda
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-sizeC95gen.go
+FileName: vendor/google.golang.org/protobuf/proto/wrappers.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-wrappers.go
+FileChecksum: SHA1: 97e52a945bc5f096aaa0454f1471191e33d84221
+FileChecksum: SHA256: 7068ed0c35932f990aa75bf00d30f6a2d2a3c2c89ebd14ac07aec523013fafb4
+FileChecksum: SHA512: d3e7901422aaf18f94ced3784f97c77cb66643bbb57ec8a2f4bf3a5686cc745cf19b717dd8e55d0fba368463cb319f4c440dd5cae1bfded6dca2153384dd4206
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-proto-wrappers.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/source.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-source.go
+FileChecksum: SHA1: cd29f3aff286f67a80f9751e5ba404fe2e5297cf
+FileChecksum: SHA256: 2fa59e93c1d892b567212f8bb412d170c194ed75af21371ad9179d9cc9976feb
+FileChecksum: SHA512: 7bde59e72d93d1361c9bb558eb50ca90421fdd4409d2cfb7c01a0a33957f58b067936e36eaa8dabdb02d7c91aa8d2fae14c2507f8c79539aa81763f0a140da26
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-source.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/type.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-type.go
+FileChecksum: SHA1: 0ad55d5b6876a79cd31954654bc6c617a1bfd054
+FileChecksum: SHA256: 970bdcc58e3abb2d51a74973f7284d346540d2adbead499342b6bb983e858d04
+FileChecksum: SHA512: fa3c43ae8faa7769a3612669f5fd35f6cf954f9c5cbf888279abf7673f8c080dedc867cdc10726693fe2ec14dd473fb5dd7fc221f4b996d780e858fa772795ae
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-type.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-value.go
+FileChecksum: SHA1: 54d7fae57e0325ebd3a2f79a7d8fdd362f25dcbb
+FileChecksum: SHA256: d2ab197e32f28cae1ecaf4ca63b54e28b374cdb9ae7468e2c1864837934ac14d
+FileChecksum: SHA512: 15dd8bf28cc19bfa4880f2e79e0b1b3c2d883cf6edbfea2500bdc729585e4d6301d793ae672c694ff2a219ca98fb90116be41e8c162177cf76a22681f4e79dba
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-value.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value_pure.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95pure.go
+FileChecksum: SHA1: f1b3edd391cac8ead6d4174933625d5d912b1bb0
+FileChecksum: SHA256: de6c6ff68af94520900db7f63dc0b60f84dcc0b6522adf29f1b0b7148bd51347
+FileChecksum: SHA512: 2cb2d2aef27da0f4136a9cae250ba6d7da9f37502d18d85920052dc8dfd5f73b8a1d5995b1002f78d0ab3286953b166d5a301209c17010ee166cb04237e2e3f8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95pure.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-proto.go
+FileChecksum: SHA1: 29e6f657c3d8bdc066261889a5fe9ae1a5b98937
+FileChecksum: SHA256: 61759143558734b5ee8e2b0332a2c84c0d92ceb1f2722e125e8a4b99d607b4ed
+FileChecksum: SHA512: 7313f2056b221d16ba734dfb5e82f67c6f1cdc68facce12a94956fa3fee11361b7bcf3ea3fc590374483953550bae419be702854f5c178df799bcb60eef69cad
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-proto.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoregistry-registry.go
+FileChecksum: SHA1: 6e1e7733787ec946963a8c1752d047755c7fa4b2
+FileChecksum: SHA256: 6bf92e3eeaa276ed0acc6a194bba21d8f965cf771393d7c224d2baa5b35d2983
+FileChecksum: SHA512: 383b112d990b8391a9817339ca36a129c44f1e2f87a8398fca8e8cd3c1dd1e63bb8ce59ea56156b972aec0649f46e31fd89a2409652aacc95e8aae234aa3e68b
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoregistry-registry.go
+FileName: vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-legacy.go
+FileChecksum: SHA1: 8fa48080d16dad3e6ded79a41906f6135b5ee76f
+FileChecksum: SHA256: 9d79e425272f9fa102c269f4cb7f8cbe405d0f2a9af075e150235df30b3bd617
+FileChecksum: SHA512: e3ae8d75b10853cd7c72064c3c1d37b70f66871574b0610c0469a48eb207dd2c21f0d464324e8c924250cdb05af57afdbea5acb683e95285651e8b2d03b08cd5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-legacy.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95union.go
+FileChecksum: SHA1: 24079e0834f83114edea45ce906814cfd98f47cc
+FileChecksum: SHA256: e90cca45918b151ac9dd54862aacff55c37401b6590d8deb3b0ce9028e26b57d
+FileChecksum: SHA512: e90817684489e9002173b4ff94e80336d622b90248abcda0fad5a969511621f7c983d79e2472c4f6f0c6bc9669dab5b3508fcb4e41b080e2c33cff430b1ccd96
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95union.go
+FileName: vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-impl.go
+FileChecksum: SHA1: dbcc4b5a06fb53c466858ab7104fe429b2ab95e5
+FileChecksum: SHA256: 5b70e0a626c02c8b783df9b03ddb813cbda5ee46e20de1f24019941366270d68
+FileChecksum: SHA512: 4a99868e15f170efb7a17aa90781f1b48cf839f977c451b17627cccea373d628200d0c120b529a4537f39167066141af09d15a659c7ed92287c269fc96434a68
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-impl.go
+FileName: vendor/google.golang.org/protobuf/runtime/protoimpl/version.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-version.go
+FileChecksum: SHA1: c6b746d28024a8b67b654d4244060fccb5b0ef64
+FileChecksum: SHA256: 6ac8af48d058eb904fdfd5e255f619aebd35c9d4a279c8d5dc3bdebaaba9e4c4
+FileChecksum: SHA512: 2f6ef690218c2cb13543b34fb241f18b2e5ebc436b87e1295b21290802939b610e7bfc95676a95b170faf0cf917382b7fbbe999aa4edd560bdd368a016e00b4e
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoimpl-version.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-methods.go
+FileChecksum: SHA1: 80ab680937fcb418f6b1e4ec42763d10c8e5ead0
+FileChecksum: SHA256: eb6b6f74acb6b712f6107d24583b743b188d5b244b55a229f6293063165353f5
+FileChecksum: SHA512: 0d2a8bf00fa5e7adc80b5b94671abe95f92ee27c2b2d98d7398ff5f1f75c1f778f4a54692d082737d92004c3d2d5ca66e287c6c66f65f009b777c8eed640ae51
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-methods.go
+FileName: vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95unsafe.go
+FileChecksum: SHA1: e2b010e0ba7754aade8244b42dba2c06589ad8ff
+FileChecksum: SHA256: 2d9860294bf3358dba75335dcbe79f3da35e41ba9e7218fddf61283ccf98dc2c
+FileChecksum: SHA512: b93665520fea0af2b759862704f8ff7067f781d6cd4354c0ec0871e3a1141c31f9c59fe01a5d9a825742c2045a4e2bd012a8f2eea30450e5a15d9ac90af1aea8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-reflect-protoreflect-valueC95unsafe.go
+FileName: vendor/google.golang.org/protobuf/types/known/durationpb/duration.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-durationpb-duration.pb.go
+FileChecksum: SHA1: dff77855ce08874ddce02ebab663f4218fedac96
+FileChecksum: SHA256: c967ad2abda5c54e96212c9e9d4a3532ab41cb5c999f642210d6694d8fa4e525
+FileChecksum: SHA512: 9624285eebc5cdf93845b73288c5ff7ca7d32632fa17d1eb3c50ca4969a6ce87aa2c33fcd1a9f6027f018a2ffa5aecbeaf6d99a27a825b774fde992c60ab6585
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-durationpb-duration.pb.go
+FileName: vendor/google.golang.org/protobuf/types/known/timestamppb/timestamp.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-timestamppb-timestamp.pb.go
+FileChecksum: SHA1: 815d9ef3aad14bcf1c8dc28a10b6b89c1da84899
+FileChecksum: SHA256: a59c0ba465252c50aecbbe3e93073f81e42ab7e857701e28f10e3f389e501668
+FileChecksum: SHA512: b76887faa438c7c7e442af258c62ff2f7f486e7ff097e93759670aa8eb401f1196b266a3dce6e7fdd6aba0fd1551bb6414134e23f91fd00b086d3170ce36d16b
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-timestamppb-timestamp.pb.go
+FileName: vendor/gopkg.in/square/go-jose.v2/.gitignore
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitignore
+FileChecksum: SHA1: 1b7a5b2180edf87945d3aa1a714ffb1c01debf61
+FileChecksum: SHA256: 47acde1b5e6615f91624cd3ad60598f70a848bcbc3297c258d5734cd002f7eea
+FileChecksum: SHA512: 0d2023428b2d359034d172b20355152fc75c01d0a4d58249fe53189fec2218bec901d639ddfb4d277db78dd33affa97639839e2c82952674f066748dd4806133
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitignore
+FileName: vendor/google.golang.org/protobuf/runtime/protoiface/methods.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-methods.go
+FileChecksum: SHA1: f7b1aba0cba5e8ee84f1e3a7c765a007da013914
+FileChecksum: SHA256: a6fc53cd7f7cf789c5dbb2699348feedaf8e6464db64a2cbab79b1dd2d6a4774
+FileChecksum: SHA512: 1124b2f38db825f305204f1e399a649a7a6fb2a09f3d0b0a711f96aea8db4be9993e03523cde411d13a8c07e9eeebb9b84c97d08f5735c4b4557e1e8a648be8d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-runtime-protoiface-methods.go
+FileName: vendor/gopkg.in/square/go-jose.v2/BUG-BOUNTY.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-BUG-BOUNTY.md
+FileChecksum: SHA1: 01997e41f3c6e24fdfe24d14ee6da4ad4e726dd2
+FileChecksum: SHA256: dc2ccd625b02e966ba7d664fb57d1b84d6569a8ce11aea29d5d7d85cfa683e5f
+FileChecksum: SHA512: 4c4a2fb8beb1fb9c680ed4dc3238436a99ed9483a886ea6ba176b7a5dd1c5bb3fe81a87177ff2cf3dc7ce1cc869f81dcd215fc41a80f7a5e23e63e306dc84460
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-BUG-BOUNTY.md
+FileName: vendor/google.golang.org/protobuf/types/known/anypb/any.pb.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-anypb-any.pb.go
+FileChecksum: SHA1: dd280a6db7de284232dd1fabe70bcd88ffb38171
+FileChecksum: SHA256: 007e3a5bcb989faaea82b86d16ecd4558135458cfd89a77b1ba31774f7f8b696
+FileChecksum: SHA512: de01e8cdafd67b9a39143a7d5acab0f71df9946b4fd0769c74fe60e34de295f07300cea564c419baa78474447d6ff2819305b647e7a91ae1821942b431f1be0a
+FileType: SOURCE
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-google.golang.org-protobuf-types-known-anypb-any.pb.go
+FileName: vendor/gopkg.in/square/go-jose.v2/.gitcookies.sh.enc
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitcookies.sh.enc
+FileChecksum: SHA1: 370b9d518c92c29d3a726c286fec0819d98e7916
+FileChecksum: SHA256: a8fadc1819593e453f81a2176db9b3fc25c43ef0da034527aae95f3330ffa0a9
+FileChecksum: SHA512: 594ab6122d0c05a5869312ab2ca59469f9fc9f2f47b421e895818db5c4819c196316b9cbab694d0b49abc44333bb8e99b7255438dc43792db1cca635c903ab5d
+FileType: OTHER
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.gitcookies.sh.enc
+FileName: vendor/gopkg.in/square/go-jose.v2/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-README.md
+FileChecksum: SHA1: a17dd4858e5998890ea4bb0a8fd9789cddae23d5
+FileChecksum: SHA256: d5d4c8331e8ea6dd0f4e0eb94a13fd35572de1e38920ba38530bdd99c5a0d250
+FileChecksum: SHA512: ee293e9481c147dfa1c076f9f29605e4eb34b3378c18a54bc5962971488cc158ffc583d8e894119914eb28e207d5b599c5e9ccde58d9145f22f3175f55a8fd38
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-README.md
+FileName: vendor/gopkg.in/square/go-jose.v2/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.travis.yml
+FileChecksum: SHA1: 9ee06615546963bbc9b4d04b772b36ed00492520
+FileChecksum: SHA256: 93524449d1834c23da20f0024d71c78468ea389f1bcac8461a505ee25eb947fb
+FileChecksum: SHA512: 6ecfb0bd9e66f5cf9690593e5b226c55fc5d591b76634238e0cf9f3a54aefef68cc4fc04b819853e6c57817f5e1310942a38a94db43538b8fc82a12abbe7bab0
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-.travis.yml
+FileName: vendor/gopkg.in/square/go-jose.v2/CONTRIBUTING.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-CONTRIBUTING.md
+FileChecksum: SHA1: 14ead06ceb60bb0d96ffbb6e8483545f4bec4b17
+FileChecksum: SHA256: 030393eb005c29885b19fb97be10faec14638391683dc9c8d1afbe41edc91ce0
+FileChecksum: SHA512: 92c12e5ce9e047f103ca17e44efc3dc0269aa422fe210501811edc3cb7c5e8cb903c599152029bfa39854992cf9b424ae03dac9c84e484a7a40b1346dad5510c
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-CONTRIBUTING.md
+FileName: vendor/gopkg.in/square/go-jose.v2/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-LICENSE
+FileChecksum: SHA1: 2b8b815229aa8a61e483fb4ba0588b8b6c491890
+FileChecksum: SHA256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30
+FileChecksum: SHA512: 98f6b79b778f7b0a15415bd750c3a8a097d650511cb4ec8115188e115c47053fe700f578895c097051c9bc3dfb6197c2b13a15de203273e1a3218884f86e90e8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-LICENSE
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/cbc_hmac.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-cbcC95hmac.go
+FileChecksum: SHA1: abc6b7ae2994bb42e708efd9f4ec9f611f2c0a51
+FileChecksum: SHA256: f25841a12013152249a0446621b3300636d62e18b3b06ac3fd0ea9ca6c322bea
+FileChecksum: SHA512: 4dddd226f7238e4ae39f6ee64cc282b2ae9209d2cc10233bea63f3dd5a7a71f126871c8c895cccfc505908ce5e97a097b28d6bd87a97b2fab4382a2bd99e6a3f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-cbcC95hmac.go
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/ecdh_es.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-ecdhC95es.go
+FileChecksum: SHA1: 4f7b0d774e944beca8e9b96e9780d182a72b58e1
+FileChecksum: SHA256: 14f403591026951c84d3e11a2a328c2785d393e0372a4bbf59a4ffff383582b5
+FileChecksum: SHA512: 610164a24ada379c9b2c10c7f439486191f4e76da68bb96f772ed50da1ae277be2ac70729f416bab0ca94e553ae63426812bbd3dc4efc264b87e8ba3bf3c9c25
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-ecdhC95es.go
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/key_wrap.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-keyC95wrap.go
+FileChecksum: SHA1: f957aef82759a9e9057020e4a6b555484a8cc2f1
+FileChecksum: SHA256: 53aa8437cf834453ada71481af17f2e3a7cd4ff6af376c34dcc8995887dd7e17
+FileChecksum: SHA512: 4813702e2821310f43efeb3a988d7ea7d639268e0cb119bb083661f373e35d2ace197fefeecb5db4b48a2cf8d3a983af32842f03f2b1eb6e0e8b8b04c2040724
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-keyC95wrap.go
+FileName: vendor/gopkg.in/square/go-jose.v2/asymmetric.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-asymmetric.go
+FileChecksum: SHA1: 213e47278ec13f7f2723f6e85a4a8593019a31fa
+FileChecksum: SHA256: c657e055c2ad7ab0b8a33801d2bcc66b094d6c2e6c96a42041540477eccc5de7
+FileChecksum: SHA512: 8f9b58e78150e87bd66600fa7cf5ea4f92d7bb3c4745a7036cdf74b253a09291bc10bc25304a330e427a0b4794d65a15943567c75f177a00653137bd14576ae4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-asymmetric.go
+FileName: vendor/gopkg.in/square/go-jose.v2/cipher/concat_kdf.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-concatC95kdf.go
+FileChecksum: SHA1: ed19b64073c6e38e5e2a9a687657cad576d5fb1d
+FileChecksum: SHA256: 84608a8c5a5f7fde7ec993a5c3fcecc5a0c7e1781b11c651c9aecd83c424b20a
+FileChecksum: SHA512: ebdeac637f45dc64dbbdacfb6d31fbd7517a328711a352414462c728896677283ca2b16d693a4d68c6491e5683eaa03d817181c7758544ed35b31acde1732f5a
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-cipher-concatC95kdf.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-LICENSE
+FileChecksum: SHA1: 7f7a12bcfc16fab2522aa1a562fd3d2aee429d3b
+FileChecksum: SHA256: dd26a7abddd02e2d0aba97805b31f248ef7835d9e10da289b22e3b8ab78b324d
+FileChecksum: SHA512: df64739ed62fc2c441d15387a595211c0090e5694c17f93b7e289d78c2e6e123edd0373ea04f8f4d4ae21a079dc7c71c82f448d7c9e734e88c54607507e13de8
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: BSD-3-Clause
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-LICENSE
+FileName: vendor/gopkg.in/square/go-jose.v2/crypter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-crypter.go
+FileChecksum: SHA1: c938606a1741b6149dcf7d334353eeed33f1b7c0
+FileChecksum: SHA256: 0651665683d6677c7c2e98f99bccf04cdfce3b68a5fea8d7f1def8954c35aa80
+FileChecksum: SHA512: eb1ca1bd2d80a6e1e6f67ab1bf63bd1850b007165d29a5e084497b9b9894687db315aa5e81a1ff483c6b4c063d178c92c27ee6468d8c416074dcecc137c3412c
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-crypter.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-README.md
+FileChecksum: SHA1: 8c81372fd464832eb90491ae1ac86890c574b3e1
+FileChecksum: SHA256: e5c0051f54aec2c7bacdcd3b216bc3f9c8d1a3f9c4583370e74ea9137b0849b8
+FileChecksum: SHA512: 69418d186b2d64f69c9865f31a4688194fdd54be49ddd4f92ff70089f1d4467a7bf48241c4b78640f661103b13a8671ab72e92656de30463837aa0b7f7b06a07
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-README.md
+FileName: vendor/gopkg.in/square/go-jose.v2/json/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-decode.go
+FileChecksum: SHA1: 964d222562d07c0a37da46b170d677c4b42b8b0f
+FileChecksum: SHA256: a9c1be43e2acc94eb0c60c3afb7e1e050436fc3207d6556ff2361c138c783549
+FileChecksum: SHA512: c257f02927ed9a601b2cf87bc7b07a307f3db0afd88aaac03f9a41d24a06d1e615d8102b14948770bacd7e6c3fc77f21bcb104b40e583a38309ee8e80c5ec935
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-decode.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/indent.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-indent.go
+FileChecksum: SHA1: ab41112d0dbca2a0d49ea8e823edf69103484668
+FileChecksum: SHA256: fe95485e51867d61a5b6096bb8288fc6af2ee057f700688354b04dc71d44f5de
+FileChecksum: SHA512: 7585084fa738454d92ab8f6e3af525642ec66435800bc3e30721c0c5ec885e4a83b60ca1a042599bc670b5c79ef26e44169c95c8a2022f6d2d5ce005d20dc65d
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-indent.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-encode.go
+FileChecksum: SHA1: 0a2acac0de5cf17ff708871570b271a7f98dac4b
+FileChecksum: SHA256: 46c1bf443e005b4b1bb55279c9d07dd0e12bd2189d8f3d0bf5ba28a9539db50c
+FileChecksum: SHA512: 4887c630d24c04760db4458aa0cc70929655adcc72170d801d62710abb8ecb0e950c1f5cffff423761752730036cb053faa672526739921370bb58c6332f75f4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-encode.go
+FileName: vendor/gopkg.in/square/go-jose.v2/encoding.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-encoding.go
+FileChecksum: SHA1: 2da1e4c28d168cf07e3513c06bfcb6ba1664c579
+FileChecksum: SHA256: b3cf59b27ccf20d76d572d301ff63714f0864e740614558715715bafc2a56f53
+FileChecksum: SHA512: 8c9bef1f8527378897ae1d7eb210985981a1737dbda91f314b8d02af83b486ada2b298094cdeb9d320204b759633a3d54e310bb2144ae510c194c8b7599aae20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-encoding.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/stream.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-stream.go
+FileChecksum: SHA1: 0cbe8df28d725aee271bc6b85811f52197872aeb
+FileChecksum: SHA256: 99bd38c9547c4044c27351e4810e65f005e73d87e03224d524b484c637bd779e
+FileChecksum: SHA512: 18b6b4151ab2586bbb917f6fbecef0ab7984a399f963412e24122c6e0d9e94790e58e2a01671df16a4ac126ea1b35bb5851d6140a2ce30454151d42c2fef04d4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-stream.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/tags.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-tags.go
+FileChecksum: SHA1: c8266bd6f628dc384c4cd0df60585ff562009dc9
+FileChecksum: SHA256: 2fa51c15e906895f21a9055bab4571573a68091b795335a814f0d4ba87403658
+FileChecksum: SHA512: 3afa78c044a397c387302d3074052d57e6791a887487f5eae5de28920c2df4d80ded366f92f8df046671a95304778f7ce56538713391893f0d8cb7b35be16259
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-tags.go
+FileName: vendor/gopkg.in/square/go-jose.v2/jwk.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwk.go
+FileChecksum: SHA1: ef63af14e3dfffb190af877b7574575614f7582d
+FileChecksum: SHA256: 115e2d98cd60cc698442227a6b5c8db2fb67927b3e3da37a447a242f1a83a5a8
+FileChecksum: SHA512: 8321164c7080bc38d812f3bb2bae70f032d0978c468e32e5efab60795b969e15dfa7ed9ea6a3c3bde8a9ed02e4cf931495ee5914f14a2a80c45d518c12f73e84
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwk.go
+FileName: vendor/gopkg.in/square/go-jose.v2/doc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-doc.go
+FileChecksum: SHA1: 8e7de39b824ccdc164a8b7c871f4a8ac2ed954ae
+FileChecksum: SHA256: b4a5a6daa59a326abb2096b816dd0a096971a3c6fa83e8272a5407293b3878b8
+FileChecksum: SHA512: cf336e14865613e933011ab29afaa71b5840778df7f1a1d83d8402696b0f95d8c2d053123fa0d47646ffc1a7c19f8e8dec63e02f432ea87de18e99309665a553
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-doc.go
+FileName: vendor/gopkg.in/square/go-jose.v2/opaque.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-opaque.go
+FileChecksum: SHA1: b1584a9f081eb74b000f86ebea05128b601344a8
+FileChecksum: SHA256: 8cfbae928eae043b2a1649042bf658740dd4563c913dad4561e9027d76312577
+FileChecksum: SHA512: 6c538b16f22418e83e3cb05368865b14e97f9086370e1ca404ac9602185771fb86f4922370739222a0c00329710b4bbb6b50887058ec5a3a297c54d2aa71f3cc
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-opaque.go
+FileName: vendor/gopkg.in/square/go-jose.v2/shared.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-shared.go
+FileChecksum: SHA1: ef2e9b8ce7239192a07b07e05b01cd8d82be8996
+FileChecksum: SHA256: 77f6ed85a89744338fa6ac25dded129e3b1cc0dc0b8496464dadda8b0de0c553
+FileChecksum: SHA512: 252f801fc6562db53412c7463706ad810413ed1d8440db8e640118e89e8b8917ae114c1763a9a9c9d723e8b7043f0262074bd0ebf2dfa38a6838ba18317371b0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-shared.go
+FileName: vendor/gopkg.in/square/go-jose.v2/json/scanner.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-scanner.go
+FileChecksum: SHA1: 75e362ae5514a1c3058bc4834f3215037432063e
+FileChecksum: SHA256: 0a3842b88d6007dee4259f87a64607ea348e651c0ba66f0f28e273fd424f2866
+FileChecksum: SHA512: f340523646fb5c4fed22d0a0761635e21b4fa9e1207e7e341783139704b6e319497d0c3a472c1120f99ea808a288ce895a0b34d6e0ff8af4d60e17607bc0bb47
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-json-scanner.go
+FileName: vendor/gopkg.in/square/go-jose.v2/jwe.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwe.go
+FileChecksum: SHA1: 40c0ddc099d5fb5a7b40cc42f1c4147ad55b96d1
+FileChecksum: SHA256: ad229a6732b205ab9067e01486f4b7ca3801dd6ae799604bd090a5f204b96c7e
+FileChecksum: SHA512: 7fb893b8e375b467d8824234bea5a66d9f9df1004d8f7fdfa926c1604b5e79d959e397772c87bd6caf1f19f8b0c9d402ce641ab33ecbf29cb9524a51663a10bd
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jwe.go
+FileName: vendor/gopkg.in/square/go-jose.v2/symmetric.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-symmetric.go
+FileChecksum: SHA1: f3f1615af95d02ba27796cbb70752bac020a0a86
+FileChecksum: SHA256: 45951bba93b71bbad3ff6a148b5950d6fb763bc3718e8cecb100bdd893b2efef
+FileChecksum: SHA512: 07d3c16e828a8468882d24b82110947da05984a401310a13dc4deebc132590ee1724a41df2d9a6d875471c390b53a0f11e35a1f504c8c54d8e62aafdbcd05bed
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-symmetric.go
+FileName: vendor/gopkg.in/yaml.v2/.travis.yml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-.travis.yml
+FileChecksum: SHA1: ab8a36f36f7620ad8daf1ee0eeee6a3e6b844925
+FileChecksum: SHA256: 4498df3841540440e4e2628bcfe10f0393b2f027ebf356e60e6c59ec76007278
+FileChecksum: SHA512: 2f970fad1bd3292bd2282630e762d15b0c6a5f28b36162895ac97acad63059d9d50f7320138bec8f93c8ac6c0ad083378d41e7c9a4f8d836fffda946b2959b80
+FileType: TEXT
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-.travis.yml
+FileName: vendor/gopkg.in/square/go-jose.v2/signing.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-signing.go
+FileChecksum: SHA1: b17ac4ed332766aed73be1e618493a4a28618716
+FileChecksum: SHA256: 47b67edeb89790b7f5a77e50d0bc2f0c7688ab928012340c5b0d4495c375bb69
+FileChecksum: SHA512: 1e3b68c2e1adae489e50eb22b611b18d0cc3fc34a36063b9e265b45bce0a6c0fe4c0f37a5b35bfc753b4fcb2c60a4ec734bca3834dfe5c9f6a636ce4cb8c3f27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-signing.go
+FileName: vendor/gopkg.in/yaml.v2/LICENSE.libyaml
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE.libyaml
+FileChecksum: SHA1: ad00ce7340d89dc13ccc59920ef75cb55af5b164
+FileChecksum: SHA256: a94710b55e03b5285f77d048c5ba61bb9d6ee04a06c0eb90e68821e11b0c707a
+FileChecksum: SHA512: 23bad0c02554da78129321f3866b30b0cf40dab958be2c0381387cf18c10664bf51daccd9025babba3aa8371c5c40ff32c6872f37c50f725d8e6fb80f1285e2b
+FileType: OTHER
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: MIT
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE.libyaml
+FileName: vendor/gopkg.in/yaml.v2/NOTICE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-NOTICE
+FileChecksum: SHA1: 9522d95b2b9b284285cc3fb6ecc445aa3ee5e785
+FileChecksum: SHA256: f6c2dd3a67b576eafb89b80200b8b1627230bf3821a0c14cb99a22ac19107d00
+FileChecksum: SHA512: 0261b6b6b8b991cb95f2d78775955a028236b9322f26087971442e54bd9219386be327b48f4c0311d8825b141579a8a527775f897c5768168d0ba5f850dfd6bb
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-NOTICE
+FileName: vendor/gopkg.in/yaml.v2/README.md
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-README.md
+FileChecksum: SHA1: 3a0f2e1c80c53e11b4c3c08bfc59483820cc2e45
+FileChecksum: SHA256: 588e691973b0ad855f4fa4d070debf76e3c8246edc8da6e0b17dd42ab1ad697a
+FileChecksum: SHA512: 64ba12bd5613ef298407b41ecb849b16b53e6666cb9bdd41ae2422d0cd39025ea5a9630f5e3bf0c81d0c0bc32b95eb8758250ae466681aceac4e8645483526d5
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-README.md
+FileName: vendor/gopkg.in/square/go-jose.v2/jws.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jws.go
+FileChecksum: SHA1: c728cfe398613ce511427af69a8c89a90bc9f7bb
+FileChecksum: SHA256: 107b525587ed2f9f62ed5b7882ac7b532b106850b3886ce2f7bc5001d9f637fb
+FileChecksum: SHA512: deedf82a6e752eae0c4e0a68b3cc92ab077d53c88602bc191be403433693af44a011393d8829537de5ea1f9402e94031367182a396ea7f03e4890b9a55cd0deb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-square-go-jose.v2-jws.go
+FileName: vendor/gopkg.in/yaml.v2/apic.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-apic.go
+FileChecksum: SHA1: 47bf8a3c9a65064f29408d74b54ec7ca98b08d6a
+FileChecksum: SHA256: a3917d33b1dce8254f04bef0907189428b0182364e4815b737d60b98249d198a
+FileChecksum: SHA512: ca0e0403151cac119d4a83324a436417f2e2da2f0688682027c550b0131e3193158a1f47119c87a458cfcd4cc5e58b8876ca60a36753b178ecbf208d7407ad20
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-apic.go
+FileName: vendor/gopkg.in/yaml.v2/encode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-encode.go
+FileChecksum: SHA1: f6002ace1524d0b87305982c2a484c7342c9843f
+FileChecksum: SHA256: 6f842189d0530a22bd146824cf266e9c4fda56b9ba5186238c0bf539537f3a56
+FileChecksum: SHA512: 9f827e41f3f2f220559983e82ee72fedce65ba4021338d21e9aca09158fbf542e1bf7ad5f6e8a964a03dbcc3cb71ad89d2f68ecd9c7881f3ec617b9a99908faa
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-encode.go
+FileName: vendor/gopkg.in/yaml.v2/emitterc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-emitterc.go
+FileChecksum: SHA1: 5a555844f9a82349f56b836ae4c43a7f826a5953
+FileChecksum: SHA256: 6311bafb0626f9d174ff1071f537e1a240d23c24c42a74f8d04230a9bfbedbb5
+FileChecksum: SHA512: fdfae155e19f0879e22d722ec457f5f409f98466e3399c8403a2566ca5259b4fe433914c6ffe5d50b57508e50c53abe417319825bf84d99f047cefbd23dbf718
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-emitterc.go
+FileName: vendor/gopkg.in/yaml.v2/LICENSE
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE
+FileChecksum: SHA1: 92170cdc034b2ff819323ff670d3b7266c8bffcd
+FileChecksum: SHA256: b40930bbcf80744c86c46a12bc9da056641d722716c378f5659b9e555ef833e1
+FileChecksum: SHA512: 389080b6132d3eaae780648d6998390d8cc71908561bce09578e27c542aa1a9f3122e01f640c5b01bee73004c23aa4e9f2066fe5ee0ca2072c2420578b28d71f
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: NOASSERTION
+LicenseInfoInFile: Apache-2.0
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-LICENSE
+FileName: vendor/gopkg.in/yaml.v2/readerc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-readerc.go
+FileChecksum: SHA1: 70d0493a00ff07f4b6a845114fedb868fb0d5e92
+FileChecksum: SHA256: 68ca782bd29c03d67a91c69439d04238390829f9f27520fd1fa2f0f208049e59
+FileChecksum: SHA512: 860f9e93dbe53a2033d9390af91bd1f9564d1d9823c0b5c66a4252a7c61dff31ecb477fca32e8825165d8a77e9d8fca0a2d774af55b84fe1db9d84d577f53d48
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-readerc.go
+FileName: vendor/gopkg.in/yaml.v2/resolve.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-resolve.go
+FileChecksum: SHA1: 908875a50f962f085b43e8980bfb2d053ea203d9
+FileChecksum: SHA256: 2b102c842cd923bbf9b2424a314558391b9afc73bd5bf7a0ce51cd27b9087326
+FileChecksum: SHA512: 4576461ac48b81d8fa6b7e6e3b1440e0792e6879027ce93b01c8f7367646159527f50c9f0be3a621eda14b6b1b748b810bf07161ca0a7f16a14f2aa341060708
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-resolve.go
+FileName: vendor/gopkg.in/yaml.v2/sorter.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-sorter.go
+FileChecksum: SHA1: 90bcd8cb75622c82d3748fb922801474fd33d8a5
+FileChecksum: SHA256: 69dd002fd057894a61545c8d1144f1baa1d9607870269208fcebd10d7a5de44a
+FileChecksum: SHA512: edd018839221a096d48a642b75556fb76625e6c26f7eb57ad84baa191217931936d9512014a0706e5ea499c05cbc7b43c7cc3e12a7e9a70aa461c3e4e8e84ed5
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-sorter.go
+FileName: vendor/gopkg.in/yaml.v2/writerc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-writerc.go
+FileChecksum: SHA1: 11e4cecd8c359c98535e97bbfe24042e39ce36da
+FileChecksum: SHA256: fbdc6dffbce4d3bddd5a872b8396b0a31eaded2cdd394f8728dec515d2620f7a
+FileChecksum: SHA512: 7377a1e04ec98b0dd5ab66d4b2a80ed1e1cbcfecefa4b435d2e388a25c1eae927d717afa13d70ca65fd8470d761bc1b77c76d9ee4d89f52d1d073491c4390468
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-writerc.go
+FileName: vendor/gopkg.in/yaml.v2/yaml.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yaml.go
+FileChecksum: SHA1: 8ef4f257fe4665b4f8956d9b1e6fa8ea7969044c
+FileChecksum: SHA256: b905eb379b8a9a4d3d744b74846f407829bb60de3a42e89945f56b7840227eca
+FileChecksum: SHA512: bc416855c00b2ec8330dca4dd89d393c8716b813f0681159fd9763bc99c722e833da522eafd0c40b13b9801490da375e049304c4f1ae9322b933e7ee994a78e4
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yaml.go
+FileName: vendor/gopkg.in/yaml.v2/decode.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-decode.go
+FileChecksum: SHA1: 9323da7483c14dbed06f44e6725d33ae1957df4d
+FileChecksum: SHA256: c0eb5cc60c4bc108e0ad3f89992f09a05b42b7920e28223a6edcccff6cee1d4c
+FileChecksum: SHA512: eadc7bb27c9cf5aac77888e1dbf6663bbdcc9ce8350df76927ca907d74fb79e0d5aba57eaaabe1a2aeb15d4ff787fc685203b14faca6f2167a2ac7a392685eb0
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-decode.go
+FileName: vendor/gopkg.in/yaml.v2/yamlh.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlh.go
+FileChecksum: SHA1: 1d35ca760ee834bb74da05ff5989770bafc7a322
+FileChecksum: SHA256: ffcc127f978e2ceca9941f6c6ed1f10982950db45f7a18253614b7b3707093d5
+FileChecksum: SHA512: d5a416c4ac6bded77fc860a656f5b02590a84370b8a2a289ed4687f396250f6fa51c70c12c2319bcbe9abee12e26bffc88bdb4fd7ceb156c7b1cf9712bb1babb
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlh.go
+FileName: vendor/gopkg.in/yaml.v2/yamlprivateh.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlprivateh.go
+FileChecksum: SHA1: 570be0d85cb2334709368a301d177df9fc017265
+FileChecksum: SHA256: c46816f21e39a76697c4caccc8534cdbbdba930896786cdb7762d29867f38a5c
+FileChecksum: SHA512: 0fd8c89450a849c0bf18218b419887b83d3ef103db1e60a5ce6f90634e440c05fd3bf685fdff82c0114031042b28b939898eb82f397ae105f664bd2afc80b83f
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-yamlprivateh.go
+FileName: vendor/modules.txt
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-modules.txt
+FileChecksum: SHA1: 650cc0653c5cf5f1bfd5035732c51d8f97ecdfa8
+FileChecksum: SHA256: 41ca8fec97d3fb23995d1d364b8482632571086588fd1f9f15a5ae4b7ccae8c2
+FileChecksum: SHA512: 8f521bf1555e53eef7ee04fe5bdb914b28bc24edbb63bb9a94e510d4d9f4275c42a9efd7c038332dbd1fb1bc25cd296a96566a1844553dde070519233014acf1
+FileType: TEXT
+FileType: DOCUMENTATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-modules.txt
+FileName: vendor/gopkg.in/yaml.v2/parserc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-parserc.go
+FileChecksum: SHA1: 3b96d11389106e05cb3ba62750b93d3847f51e45
+FileChecksum: SHA256: db4e41cfe88f747f8da7bcee943ab1e96cc33fc7d6a4b64cc2ac9902a0b34295
+FileChecksum: SHA512: c46da429e9641af5a91a93892ab4838977e2b89297c96418393ab16077a9dd37d35e18ac395b0dc53be54c3b69e04fd5d301c1ae30f184b1c9764011809f66a8
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-parserc.go
+FileName: vendor/gopkg.in/yaml.v2/scannerc.go
+SPDXID: SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-scannerc.go
+FileChecksum: SHA1: ea3084be1fb2ea29da1706e6291249e91e62f51f
+FileChecksum: SHA256: 9963b0d9edfb8cef2eaa5ea57ac40216cfca4fadf8c8cbb84c2e4b961aeea09b
+FileChecksum: SHA512: 10a3b8acccfdb4435eefc22bd9651418093b83f8a89f6cdea9880e3abed9c636991601e2eb40dd0c095188ca31e6c66fb6755012d88951c3727f41f35307bb27
+FileType: SOURCE
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-vendor-gopkg.in-yaml.v2-scannerc.go
+FileName: builder
+SPDXID: SPDXRef-File-sample-golang-prov-builder
+FileChecksum: SHA1: e368d88074d6f39d85dab4ff7df0c2d580d7f853
+FileChecksum: SHA256: f7af23a8b90b70d0546880bb45f17099e79353cea4e88513c6983106a4a63782
+FileChecksum: SHA512: 9a82cdf27fed0cb270125eb9be0710a9c1bac2c3d77e32dd625e9637a5de3c639e6f7c5fb50f5c1f12a19807e8b389b5b57fe1630c3abf95e6e6f5e6c440daa6
+FileType: BINARY
+FileType: APPLICATION
+LicenseConcluded: Apache-2.0
+LicenseInfoInFile: NONE
+FileCopyrightText: NOASSERTION
+
+Relationship: SPDXRef-Package-sample-golang-prov CONTAINS SPDXRef-File-sample-golang-prov-builder
+##### Package: go.mozilla.org/pkcs7
+
+PackageName: go.mozilla.org/pkcs7
+SPDXID: SPDXRef-Package-gomod-go.mozilla.org-pkcs7-v0.0.0-20200128120323-432b2356ecb1
+PackageDownloadLocation: https://proxy.golang.org/go.mozilla.org/pkcs7/@v/v0.0.0-20200128120323-432b2356ecb1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: MIT
+PackageVersion: v0.0.0-20200128120323-432b2356ecb1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/go.mozilla.org/pkcs7@v0.0.0-20200128120323-432b2356ecb1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: The MIT License (MIT)
+
+Copyright (c) 2015 Andrew Smith
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-go.mozilla.org-pkcs7-v0.0.0-20200128120323-432b2356ecb1
+##### Package: github.com/kardianos/service
+
+PackageName: github.com/kardianos/service
+SPDXID: SPDXRef-Package-gomod-github.com-kardianos-service-v1.2.1
+PackageDownloadLocation: https://proxy.golang.org/github.com/kardianos/service/@v/v1.2.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Zlib
+PackageVersion: v1.2.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/service@v1.2.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2015 Daniel Theophanes
+
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+
+ 3. This notice may not be removed or altered from any source
+ distribution.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-kardianos-service-v1.2.1
+##### Package: gopkg.in/yaml.v2
+
+PackageName: gopkg.in/yaml.v2
+SPDXID: SPDXRef-Package-gomod-gopkg.in-yaml.v2-v2.4.0
+PackageDownloadLocation: https://proxy.golang.org/gopkg.in/yaml.v2/@v/v2.4.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v2.4.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/gopkg.in/yaml.v2@v2.4.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "{}"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright {yyyy} {name of copyright owner}
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-gopkg.in-yaml.v2-v2.4.0
+##### Package: github.com/containers/ocicrypt
+
+PackageName: github.com/containers/ocicrypt
+SPDXID: SPDXRef-Package-gomod-github.com-containers-ocicrypt-v1.1.3
+PackageDownloadLocation: https://proxy.golang.org/github.com/containers/ocicrypt/@v/v1.1.3.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.1.3
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/ocicrypt@v1.1.3
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ https://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ https://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-containers-ocicrypt-v1.1.3
+##### Package: golang.org/x/crypto
+
+PackageName: golang.org/x/crypto
+SPDXID: SPDXRef-Package-gomod-golang.org-x-crypto-v0.0.0-20210322153248-0c34fe9e7dc2
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/crypto/@v/v0.0.0-20210322153248-0c34fe9e7dc2.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20210322153248-0c34fe9e7dc2
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/crypto@v0.0.0-20210322153248-0c34fe9e7dc2
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-crypto-v0.0.0-20210322153248-0c34fe9e7dc2
+##### Package: gopkg.in/square/go-jose.v2
+
+PackageName: gopkg.in/square/go-jose.v2
+SPDXID: SPDXRef-Package-gomod-gopkg.in-square-go-jose.v2-v2.5.1
+PackageDownloadLocation: https://proxy.golang.org/gopkg.in/square/go-jose.v2/@v/v2.5.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v2.5.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/gopkg.in/go-jose.v2@v2.5.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-gopkg.in-square-go-jose.v2-v2.5.1
+##### Package: github.com/pkg/errors
+
+PackageName: github.com/pkg/errors
+SPDXID: SPDXRef-Package-gomod-github.com-pkg-errors-v0.9.1
+PackageDownloadLocation: https://proxy.golang.org/github.com/pkg/errors/@v/v0.9.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-2-Clause
+PackageVersion: v0.9.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/errors@v0.9.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2015, Dave Cheney
+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.
+
+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 HOLDER 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-pkg-errors-v0.9.1
+##### Package: github.com/golang/protobuf
+
+PackageName: github.com/golang/protobuf
+SPDXID: SPDXRef-Package-gomod-github.com-golang-protobuf-v1.4.3
+PackageDownloadLocation: https://proxy.golang.org/github.com/golang/protobuf/@v/v1.4.3.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.4.3
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/protobuf@v1.4.3
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright 2010 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.
+
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-golang-protobuf-v1.4.3
+##### Package: github.com/google/uuid
+
+PackageName: github.com/google/uuid
+SPDXID: SPDXRef-Package-gomod-github.com-google-uuid-v1.3.0
+PackageDownloadLocation: https://proxy.golang.org/github.com/google/uuid/@v/v1.3.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.3.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/uuid@v1.3.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2009,2014 Google Inc. 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-google-uuid-v1.3.0
+##### Package: google.golang.org/grpc
+
+PackageName: google.golang.org/grpc
+SPDXID: SPDXRef-Package-gomod-google.golang.org-grpc-v1.33.2
+PackageDownloadLocation: https://proxy.golang.org/google.golang.org/grpc/@v/v1.33.2.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.33.2
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/google.golang.org/grpc@v1.33.2
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-google.golang.org-grpc-v1.33.2
+##### Package: golang.org/x/sys
+
+PackageName: golang.org/x/sys
+SPDXID: SPDXRef-Package-gomod-golang.org-x-sys-v0.0.0-20201119102817-f84b799fce68
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/sys/@v/v0.0.0-20201119102817-f84b799fce68.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20201119102817-f84b799fce68
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/sys@v0.0.0-20201119102817-f84b799fce68
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-sys-v0.0.0-20201119102817-f84b799fce68
+##### Package: github.com/opencontainers/image-spec
+
+PackageName: github.com/opencontainers/image-spec
+SPDXID: SPDXRef-Package-gomod-github.com-opencontainers-image-spec-v1.0.2
+PackageDownloadLocation: https://proxy.golang.org/github.com/opencontainers/image-spec/@v/v1.0.2.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.0.2
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/image-spec@v1.0.2
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ Copyright 2016 The Linux Foundation.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-opencontainers-image-spec-v1.0.2
+##### Package: golang.org/x/net
+
+PackageName: golang.org/x/net
+SPDXID: SPDXRef-Package-gomod-golang.org-x-net-v0.0.0-20210226172049-e18ecbb05110
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/net/@v/v0.0.0-20210226172049-e18ecbb05110.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20210226172049-e18ecbb05110
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/net@v0.0.0-20210226172049-e18ecbb05110
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-net-v0.0.0-20210226172049-e18ecbb05110
+##### Package: google.golang.org/genproto
+
+PackageName: google.golang.org/genproto
+SPDXID: SPDXRef-Package-gomod-google.golang.org-genproto-v0.0.0-20200526211855-cb27e3aa2013
+PackageDownloadLocation: https://proxy.golang.org/google.golang.org/genproto/@v/v0.0.0-20200526211855-cb27e3aa2013.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v0.0.0-20200526211855-cb27e3aa2013
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/google.golang.org/genproto@v0.0.0-20200526211855-cb27e3aa2013
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-google.golang.org-genproto-v0.0.0-20200526211855-cb27e3aa2013
+##### Package: golang.org/x/text
+
+PackageName: golang.org/x/text
+SPDXID: SPDXRef-Package-gomod-golang.org-x-text-v0.3.3
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/text/@v/v0.3.3.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.3.3
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/text@v0.3.3
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-text-v0.3.3
+##### Package: github.com/sirupsen/logrus
+
+PackageName: github.com/sirupsen/logrus
+SPDXID: SPDXRef-Package-gomod-github.com-sirupsen-logrus-v1.7.0
+PackageDownloadLocation: https://proxy.golang.org/github.com/sirupsen/logrus/@v/v1.7.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: MIT
+PackageVersion: v1.7.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/logrus@v1.7.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: The MIT License (MIT)
+
+Copyright (c) 2014 Simon Eskildsen
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-sirupsen-logrus-v1.7.0
+##### Package: github.com/miekg/pkcs11
+
+PackageName: github.com/miekg/pkcs11
+SPDXID: SPDXRef-Package-gomod-github.com-miekg-pkcs11-v1.1.1
+PackageDownloadLocation: https://proxy.golang.org/github.com/miekg/pkcs11/@v/v1.1.1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.1.1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/pkcs11@v1.1.1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2013 Miek Gieben. 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 Miek Gieben 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-miekg-pkcs11-v1.1.1
+##### Package: github.com/stefanberger/go-pkcs11uri
+
+PackageName: github.com/stefanberger/go-pkcs11uri
+SPDXID: SPDXRef-Package-gomod-github.com-stefanberger-go-pkcs11uri-v0.0.0-20201008174630-78d3cae3a980
+PackageDownloadLocation: https://proxy.golang.org/github.com/stefanberger/go-pkcs11uri/@v/v0.0.0-20201008174630-78d3cae3a980.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v0.0.0-20201008174630-78d3cae3a980
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/go-pkcs11uri@v0.0.0-20201008174630-78d3cae3a980
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ https://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-stefanberger-go-pkcs11uri-v0.0.0-20201008174630-78d3cae3a980
+##### Package: github.com/opencontainers/go-digest
+
+PackageName: github.com/opencontainers/go-digest
+SPDXID: SPDXRef-Package-gomod-github.com-opencontainers-go-digest-v1.0.0
+PackageDownloadLocation: https://proxy.golang.org/github.com/opencontainers/go-digest/@v/v1.0.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: Apache-2.0
+PackageVersion: v1.0.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/github.com/go-digest@v1.0.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText:
+ Apache License
+ Version 2.0, January 2004
+ https://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ Copyright 2019, 2020 OCI Contributors
+ Copyright 2016 Docker, Inc.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ https://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-github.com-opencontainers-go-digest-v1.0.0
+##### Package: google.golang.org/protobuf
+
+PackageName: google.golang.org/protobuf
+SPDXID: SPDXRef-Package-gomod-google.golang.org-protobuf-v1.25.0
+PackageDownloadLocation: https://proxy.golang.org/google.golang.org/protobuf/@v/v1.25.0.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v1.25.0
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/google.golang.org/protobuf@v1.25.0
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: Copyright (c) 2018 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-google.golang.org-protobuf-v1.25.0
+##### Package: golang.org/x/term
+
+PackageName: golang.org/x/term
+SPDXID: SPDXRef-Package-gomod-golang.org-x-term-v0.0.0-20201126162022-7de9c90e9dd1
+PackageDownloadLocation: https://proxy.golang.org/golang.org/x/term/@v/v0.0.0-20201126162022-7de9c90e9dd1.zip
+FilesAnalyzed: false
+PackageLicenseConcluded: BSD-3-Clause
+PackageVersion: v0.0.0-20201126162022-7de9c90e9dd1
+ExternalRef: PACKAGE-MANAGER purl pkg:golang/golang.org/term@v0.0.0-20201126162022-7de9c90e9dd1
+PackageLicenseDeclared: NOASSERTION
+PackageCopyrightText: 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.
+
+
+
+
+Relationship: SPDXRef-Package-sample-golang-prov DEPENDS_ON SPDXRef-Package-gomod-golang.org-x-term-v0.0.0-20201126162022-7de9c90e9dd1
+
+Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-Package-sample-golang-prov
+
diff --git a/syft/rekor/test-fixtures/test-certs/der-cert-1.der b/syft/rekor/test-fixtures/test-certs/der-cert-1.der
new file mode 100644
index 00000000000..dc10f3ab160
Binary files /dev/null and b/syft/rekor/test-fixtures/test-certs/der-cert-1.der differ
diff --git a/syft/rekor/test-fixtures/test-certs/invalid-cert-format.txt b/syft/rekor/test-fixtures/test-certs/invalid-cert-format.txt
new file mode 100644
index 00000000000..ab8e31465ba
--- /dev/null
+++ b/syft/rekor/test-fixtures/test-certs/invalid-cert-format.txt
@@ -0,0 +1,22 @@
+-----BEGIN CERTIFICATE-----
+MIIDqzCCApOgAwIBAgIhAMcgWouBWdOhzJ2U0m2YU5hC45/PsQJK1VM1zb5/5m4e
+MA0GCSqGSIb3DQEBBQUAMGoxCTAHBgNVBAYTADEJMAcGA1UECgwAMQkwBwYDVQQL
+DAAxETAPBgNVBAMMCGZha2VjZXJ0MSEwHwYJKoZIhvcNAQkBFhJmYWtlY2VydEBn
+bWFpbC5jb20xETAPBgNVBAMMCGZha2VjZXJ0MB4XDTIyMDgwMzAxMjU1NloXDTMy
+MDgwMzAxMjU1NlowVzEJMAcGA1UEBhMAMQkwBwYDVQQKDAAxCTAHBgNVBAsMADER
+MA8GA1UEAwwIZmFrZWNlcnQxITAfBgkqhkiG9w0BCQEWEmZha2VjZXJ0QGdtYWls
+LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALnqWP8fZ4t6WLMe
+bB2ZxSri39C5QqkXB65s+3m0Ckf4qHnefZ8AlUXS61YQeMledY5spix7ZLJ6a6ix
+CmLDCsDQCUSro9uahmMeqFzR7rLkg8lPSl4qDGYnDczYmeJMO//LglguqVUyv08c
+fQF1qlKlv4L2pR+VS+YTuIuaMbCV9GkC6N4yEAE+Vo9WmyV+7DBPGbYZGji6SBfu
+zxLo4ALUx09i9dQyIMwAJNyRk8n/Ks7FPsdrs99Zgr2KSDGrdoFh67gbQOMHpLEm
+7VBioIxGunuyIfBBM+YXCdmH+BszaWpxqnvy0DeDc4/bgoc+ec9CpTSlyMM3at+L
+oudNdjcCAwEAAaNPME0wHQYDVR0OBBYEFCAHE41qMx/m2iqtI7YKLFu1kZ1qMB8G
+A1UdIwQYMBaAFCAHE41qMx/m2iqtI7YKLFu1kZ1qMAsGA1UdEQQEMAKCADANBgkq
+hkiG9w0BAQUFAAOCAQEATX1Q7dLBUpF35w943awkbp1s6gPuA1NvHEJR90Qt3Nze
+jODeKI73ZoRsCzBYPVdNFjhxGr1n2S10YKf8g6FUmKd7SHKAT1G3qPokgU1CQAKz
+gzPN+OgTaM3RrNw4oBYj6cK8kmWbZYpBzwH0sdTBr6qS+ITYuFUur4ig/Jpgy47u
+WhRHR4yxViMe1/oKTg78SquHJ6nxi5AOs0bZhD3XJTPiyAgASAV8eEyoCjUSCcdA
+3JwUgcoK0c3ob6QfEWcz5Esv5B8C9v6HR5/WIghN9tyZC0qG5DPhh6An9RcbquBO
+i8DyQsrCK7f9oiqzm/yGIaQxBcxqdllZA8Cb9Ct
+-----END CERTIFICATE-----
\ No newline at end of file
diff --git a/syft/rekor/test-fixtures/test-certs/self-signed-cert.pem b/syft/rekor/test-fixtures/test-certs/self-signed-cert.pem
new file mode 100644
index 00000000000..4ef406a2c82
--- /dev/null
+++ b/syft/rekor/test-fixtures/test-certs/self-signed-cert.pem
@@ -0,0 +1,22 @@
+-----BEGIN CERTIFICATE-----
+MIIDqzCCApOgAwIBAgIhAMcgWouBWdOhzJ2U0m2YU5hC45/PsQJK1VM1zb5/5m4e
+MA0GCSqGSIb3DQEBBQUAMGoxCTAHBgNVBAYTADEJMAcGA1UECgwAMQkwBwYDVQQL
+DAAxETAPBgNVBAMMCGZha2VjZXJ0MSEwHwYJKoZIhvcNAQkBFhJmYWtlY2VydEBn
+bWFpbC5jb20xETAPBgNVBAMMCGZha2VjZXJ0MB4XDTIyMDgwMzAxMjU1NloXDTMy
+MDgwMzAxMjU1NlowVzEJMAcGA1UEBhMAMQkwBwYDVQQKDAAxCTAHBgNVBAsMADER
+MA8GA1UEAwwIZmFrZWNlcnQxITAfBgkqhkiG9w0BCQEWEmZha2VjZXJ0QGdtYWls
+LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALnqWP8fZ4t6WLMe
+bB2ZxSri39C5QqkXB65s+3m0Ckf4qHnefZ8AlUXS61YQeMledY5spix7ZLJ6a6ix
+CmLDCsDQCUSro9uahmMeqFzR7rLkg8lPSl4qDGYnDczYmeJMO//LglguqVUyv08c
+fQF1qlKlv4L2pR+VS+YTuIuaMbCV9GkC6N4yEAE+Vo9WmyV+7DBPGbYZGji6SBfu
+zxLo4ALUx09i9dQyIMwAJNyRk8n/Ks7FPsdrs99Zgr2KSDGrdoFh67gbQOMHpLEm
+7VBioIxGunuyIfBBM+YXCdmH+BszaWpxqnvy0DeDc4/bgoc+ec9CpTSlyMM3at+L
+oudNdjcCAwEAAaNPME0wHQYDVR0OBBYEFCAHE41qMx/m2iqtI7YKLFu1kZ1qMB8G
+A1UdIwQYMBaAFCAHE41qMx/m2iqtI7YKLFu1kZ1qMAsGA1UdEQQEMAKCADANBgkq
+hkiG9w0BAQUFAAOCAQEATX1Q7dLBUpF35w943awkbp1s6gPuA1NvHEJR90Qt3Nze
+jODeKI73ZoRsCzBYPVdNFjhxGr1n2S10YKf8g6FUmKd7SHKAT1G3qPokgU1CQAKz
+gzPN+OgTaM3RrNw4oBYj6cK8kmWbZYpBzwH0sdTBr6qS+ITYuFUur4ig/Jpgy47u
+WhRHR4yxViMe1/oKTg78SquHJ6nxi5AOs0bZhD3XJTPiyAgASAV8eEyoCjUSCcdA
+3JwUgcoK0c3ob6QfEWcz5Esv5B8C9v6HR5/WIghN9tyZC0qG5DPhh6An9RcbquBO
+i8DyQsrCK7f9oiqzm/yGIaQxBcxqdllZA8Cb9CtR3w==
+-----END CERTIFICATE-----
\ No newline at end of file
diff --git a/syft/rekor/utils.go b/syft/rekor/utils.go
new file mode 100644
index 00000000000..514036f5416
--- /dev/null
+++ b/syft/rekor/utils.go
@@ -0,0 +1,160 @@
+package rekor
+
+import (
+ "bytes"
+ "encoding/base64"
+ "encoding/json"
+ "errors"
+ "fmt"
+ "regexp"
+
+ "github.com/in-toto/in-toto-golang/in_toto"
+ "github.com/sigstore/rekor/pkg/generated/models"
+ "github.com/spdx/tools-golang/spdx"
+ "github.com/spdx/tools-golang/tvloader"
+)
+
+var (
+ GoogleSbomPredicateType = "google.com/sbom"
+ sha256Check = regexp.MustCompile(`^[a-fA-F0-9]{64}$`)
+)
+
+type digest struct {
+ Sha256 string
+}
+
+type sbomEntry struct {
+ Format string
+ Digest digest
+ URI string
+}
+
+type buildMetadata struct {
+ ArtifactSourceRepo string `json:"artifact-source-repo,omitempty"`
+ ArtifactSourceRepoCommit string `json:"artifact-source-repo-commit omitempty"`
+ AttestationGeneratorRepo string `json:"attestation-generator-repo,omitempty"`
+ AttestationGeneratorRepoCommit string `json:"attestation-generator-repo-commit,omitempty"`
+}
+
+// corresponds to predicate type = "google.com/sbom"
+type GoogleSbomPredicate struct {
+ Sboms []sbomEntry
+ BuildMetadata buildMetadata `json:"build-metadata,omitempty"`
+}
+
+type InTotoAttestation struct {
+ in_toto.StatementHeader
+ Predicate GoogleSbomPredicate `json:"predicate,omitempty"`
+}
+
+type sbomWithMetadata struct {
+ executableSha256 string
+ sha1 string
+ rekorEntry string // uuid used to retrieve the sbom
+ spdx *spdx.Document2_2
+}
+
+// parseEntry parses the entry body to a struct
+//
+// Precondition: entry is not nil
+func parseEntry(entry *models.LogEntryAnon) (*models.IntotoV001Schema, error) {
+ if entry.Body == nil {
+ return nil, errors.New("entry body is nil")
+ }
+ bodyEncoded, ok := entry.Body.(string)
+ if !ok {
+ return nil, errors.New("attempted to parse entry body as string, but failed")
+ }
+
+ bodyDecoded, err := base64.StdEncoding.DecodeString(bodyEncoded)
+ if err != nil {
+ return nil, fmt.Errorf("error base64 decoding body: %w", err)
+ }
+
+ intoto := &models.Intoto{}
+ if err = intoto.UnmarshalBinary(bodyDecoded); err != nil {
+ return nil, fmt.Errorf("error unmarshaling json entry body to intoto: %w", err)
+ }
+
+ if intoto.APIVersion == nil || *intoto.APIVersion != "0.0.1" {
+ return nil, fmt.Errorf("intoto schema version %v not supported", *intoto.APIVersion)
+ }
+
+ specBytes, err := json.Marshal(intoto.Spec)
+ if err != nil {
+ return nil, fmt.Errorf("error marshaling intoto spec to json: %w", err)
+ }
+
+ intotoV001 := &models.IntotoV001Schema{}
+ if err = intotoV001.UnmarshalBinary(specBytes); err != nil {
+ return nil, fmt.Errorf("error unmarshaling intoto spec to intotoV001 schema: %w", err)
+ }
+
+ return intotoV001, nil
+}
+
+// validateAttestation does some checks that the attestation contains the necessary fields to proceed
+//
+// Precondition: att is not nil
+func validateAttestation(att *InTotoAttestation) error {
+ // even if predicate type is not GoogleSbomPredicateType, attempt to proceed
+ invalidPredType := false
+ if att.PredicateType != GoogleSbomPredicateType {
+ invalidPredType = true
+ }
+ var err error
+ if len(att.Subject) == 0 {
+ err = errors.New("subject of attestation found on rekor is nil. Ignoring log entry")
+ } else if len(att.Subject) > 1 {
+ err = errors.New("attestation found on rekor contains multiple subjects, which is not supported. Ignoring log entry")
+ } else if _, ok := att.Subject[0].Digest["sha256"]; !ok {
+ err = errors.New("attestation subject does not contain a sha256")
+ } else if len(att.Predicate.Sboms) == 0 {
+ err = errors.New("attestation predicate found on rekor does not contain any sboms")
+ }
+
+ if err != nil {
+ if invalidPredType {
+ return fmt.Errorf("the attestation predicate type (%v) is not the accepted type (%v)", att.PredicateType, GoogleSbomPredicateType)
+ }
+ return err
+ }
+ return nil
+}
+
+// parseAndValidateAttestation parses the entry's attestation to an attestation struct and validates the attestation predicate
+//
+// Precondition: entry is not nil
+func parseAndValidateAttestation(entry *models.LogEntryAnon) (*InTotoAttestation, error) {
+ attAnon := entry.Attestation
+ if attAnon == nil {
+ return nil, errors.New("attestation is nil")
+ }
+
+ attDecoded := string(attAnon.Data)
+ att := &InTotoAttestation{}
+
+ if err := json.Unmarshal([]byte(attDecoded), att); err != nil {
+ return nil, fmt.Errorf("error unmarshaling attestation to inTotoAttestation type: %w", err)
+ }
+ if err := validateAttestation(att); err != nil {
+ return nil, err
+ }
+
+ return att, nil
+}
+
+func parseSbom(spdxBytes *[]byte) (*spdx.Document2_2, error) {
+ // remove all SHA512 hashes because spdx/tools-golang does not support
+ // PR fix is filed but not merged: https://github.com/spdx/tools-golang/pull/139
+
+ regex := regexp.MustCompile("\n.*SHA512.*")
+
+ modifiedSpdxBytes := regex.ReplaceAll(*spdxBytes, nil)
+ sbom, err := tvloader.Load2_2(bytes.NewReader(modifiedSpdxBytes))
+ if err != nil {
+ return nil, fmt.Errorf("error loading sbomBytes into spdx.Document2_2 type: %w", err)
+ }
+
+ return sbom, nil
+}
diff --git a/syft/rekor/utils_test.go b/syft/rekor/utils_test.go
new file mode 100644
index 00000000000..ea77f0c7b83
--- /dev/null
+++ b/syft/rekor/utils_test.go
@@ -0,0 +1,107 @@
+package rekor
+
+import (
+ "fmt"
+ "os"
+ "testing"
+
+ "github.com/sigstore/rekor/pkg/generated/client"
+ "github.com/sigstore/rekor/pkg/generated/models"
+ "github.com/sigstore/sigstore/pkg/cryptoutils"
+ "github.com/stretchr/testify/assert"
+)
+
+func Test_verifyCert(t *testing.T) {
+ tests := []struct {
+ name string
+ certFile string
+ }{
+ {
+ name: "self signed cert",
+ certFile: "test-fixtures/test-certs/self-signed-cert.pem",
+ },
+ }
+
+ for _, test := range tests {
+ t.Run(test.name, func(t *testing.T) {
+ certFile, err := os.Open(test.certFile)
+ assert.NoError(t, err, "reading test data")
+ certs, err := cryptoutils.LoadCertificatesFromPEM(certFile)
+ assert.NoError(t, err, "parsing certificate")
+ cert := certs[0]
+ if cert == nil {
+ assert.Fail(t, "reading test data")
+ }
+
+ rekorClient := &client.Rekor{}
+
+ err = verifyCert(rekorClient, cert)
+ assert.Error(t, err)
+ })
+ }
+}
+
+func Test_parseAndValidateAttestation(t *testing.T) {
+ tests := []struct {
+ name string
+ inputAttFile string
+ expectedOutput *InTotoAttestation
+ expectedErr string
+ expectedLog string
+ }{
+ {
+ name: "subject field is nil",
+ inputAttFile: "test-fixtures/attestations/attestation-1.json",
+ expectedErr: "subject of attestation found on rekor is nil",
+ },
+ {
+ name: "invalid attestation json",
+ inputAttFile: "test-fixtures/attestations/attestation-2.json",
+ expectedErr: "error unmarshaling attestation to inTotoAttestation type",
+ },
+ {
+ name: "multiple subjects",
+ inputAttFile: "test-fixtures/attestations/attestation-3.json",
+ expectedErr: "multiple subjects",
+ },
+ {
+ name: "no predicate",
+ inputAttFile: "test-fixtures/attestations/attestation-4.json",
+ expectedErr: "attestation predicate found on rekor does not contain any sboms",
+ },
+ {
+ name: "invalid pred type and no predicate",
+ inputAttFile: "test-fixtures/attestations/attestation-5.json",
+ expectedErr: fmt.Sprintf("the attestation predicate type (foobar pred type) is not the accepted type (%v)", GoogleSbomPredicateType),
+ },
+ {
+ name: "no subject digest",
+ inputAttFile: "test-fixtures/attestations/attestation-6.json",
+ expectedErr: "attestation subject does not contain a sha256",
+ },
+ }
+
+ for _, test := range tests {
+ t.Run(test.name, func(t *testing.T) {
+
+ bytes, err := os.ReadFile(test.inputAttFile)
+ if err != nil {
+ assert.FailNow(t, "error reading test data")
+ }
+
+ logEntryAnon := &models.LogEntryAnon{
+ Attestation: &models.LogEntryAnonAttestation{Data: bytes},
+ }
+
+ output, err := parseAndValidateAttestation(logEntryAnon)
+ assert.Equal(t, test.expectedOutput, output)
+ if test.expectedErr != "" {
+ assert.ErrorContains(t, err, test.expectedErr)
+ } else {
+ assert.NoError(t, err)
+ }
+ })
+ }
+}
+
+// do validation of hash in subject
diff --git a/syft/rekor/verify.go b/syft/rekor/verify.go
new file mode 100644
index 00000000000..1a4c8285d77
--- /dev/null
+++ b/syft/rekor/verify.go
@@ -0,0 +1,130 @@
+package rekor
+
+import (
+ "crypto/sha256"
+ "crypto/x509"
+ "encoding/hex"
+ "errors"
+ "fmt"
+ "time"
+
+ "github.com/sigstore/cosign/pkg/cosign"
+ "github.com/sigstore/rekor/pkg/generated/client"
+ "github.com/sigstore/rekor/pkg/generated/models"
+ "github.com/sigstore/sigstore/pkg/cryptoutils"
+ "github.com/sigstore/sigstore/pkg/fulcioroots"
+)
+
+// verifyCert verifies that the certificate chains up to the fulcio root.
+//
+// Precondition: rekorClient and cert are not nil
+func verifyCert(rekorClient *client.Rekor, cert *x509.Certificate) error {
+ rootCerts, err := fulcioroots.Get()
+ if err != nil {
+ return fmt.Errorf("error getting fulcio roots: %w", err)
+ }
+
+ intCerts, err := fulcioroots.GetIntermediates()
+ if err != nil {
+ return fmt.Errorf("error getting fulcio intermediate certs: %w", err)
+ }
+
+ certCheckOpts := &cosign.CheckOpts{
+ RekorClient: rekorClient,
+ RootCerts: rootCerts,
+ IntermediateCerts: intCerts,
+ }
+
+ _, err = cosign.ValidateAndUnpackCert(cert, certCheckOpts)
+ return err
+}
+
+// verifyEntryTimestamp returns an error if the log entry timestamp is not within the certificate valid time range.
+//
+// Precondition: entry and entry.IntegratedTime is not nil
+func verifyEntryTimestamp(cert *x509.Certificate, entry *models.LogEntryAnon) error {
+ time := time.Unix(*entry.IntegratedTime, 0)
+ return cosign.CheckExpiry(cert, time)
+}
+
+// verifyAttestationHash returns an error if the hash of the attestation we have is not equal to the payloadHash in the entry body
+//
+// **** Note that this does NOT verify the signature over the attestation. We trust Rekor for this. ****
+func verifyAttestationHash(encounteredAttestation string, intotoV001 *models.IntotoV001Schema) error {
+ if intotoV001 == nil || intotoV001.Content == nil || intotoV001.Content.PayloadHash == nil || intotoV001.Content.PayloadHash.Algorithm == nil {
+ return errors.New("IntotoV001Schema value is missing fields")
+ }
+
+ if alg := *intotoV001.Content.PayloadHash.Algorithm; alg != "sha256" {
+ return errors.New("hash algorithm is not sha256")
+ }
+ expectedHash := *intotoV001.Content.PayloadHash.Value
+
+ attBytes := []byte(encounteredAttestation)
+ hash := sha256.Sum256(attBytes)
+ encounteredHash := hex.EncodeToString(hash[:])
+
+ if encounteredHash != expectedHash {
+ return fmt.Errorf("%v does not equal %v", encounteredHash, expectedHash)
+ }
+ return nil
+}
+
+// Verify verifies that the certificate is valid, the log entry timestamp is valid, and the attestation hash is correct.
+//
+// Precondition: entry and rekorClient are not nil
+func verify(rekorClient *client.Rekor, entry *models.LogEntryAnon) error {
+ intotoV001, err := parseEntry(entry)
+ if err != nil {
+ return fmt.Errorf("log entry body could not be parsed: %w", err)
+ }
+
+ certString := intotoV001.PublicKey
+ if certString == nil {
+ return errors.New("entry does not contain a certificate")
+ }
+ pemBytes := []byte(string(*certString))
+ certs, err := cryptoutils.UnmarshalCertificatesFromPEMLimited(pemBytes, 1)
+ if err != nil {
+ return fmt.Errorf("certificate could not be parsed: %w", err)
+ }
+ cert := certs[0]
+ if cert == nil {
+ return fmt.Errorf("certificate could not be parsed: %w", err)
+ }
+
+ if err = verifyCert(rekorClient, cert); err != nil {
+ return fmt.Errorf("certificate could not be verified: %w", err)
+ }
+
+ if err = verifyEntryTimestamp(cert, entry); err != nil {
+ return fmt.Errorf("certificate timestamp could not be verified: %w", err)
+ }
+
+ if err = verifyAttestationHash(string(entry.Attestation.Data), intotoV001); err != nil {
+ return fmt.Errorf("the attestation hash could not be verified: %w", err)
+ }
+
+ return nil
+}
+
+// VerifySbomHash verifies that the hash of the first SBOM in the attestation is equal to the hash of sbomBytes
+func verifySbomHash(att *InTotoAttestation, sbomBytes *[]byte) error {
+ if att == nil {
+ return errors.New("attestation is nil")
+ }
+ if len(att.Predicate.Sboms) == 0 {
+ return errors.New("attestation has no sboms")
+ }
+
+ // take entry at index 0 because we currently do not handle multiple sboms within one attestation
+ expectedHash := att.Predicate.Sboms[0].Digest.Sha256
+
+ hash := sha256.Sum256(*sbomBytes)
+ decodedHash := hex.EncodeToString(hash[:])
+
+ if decodedHash != expectedHash {
+ return fmt.Errorf("%v is not equal to %v", decodedHash, expectedHash)
+ }
+ return nil
+}
diff --git a/syft/rekor/verify_test.go b/syft/rekor/verify_test.go
new file mode 100644
index 00000000000..3294f27690b
--- /dev/null
+++ b/syft/rekor/verify_test.go
@@ -0,0 +1,44 @@
+package rekor
+
+import (
+ "crypto/x509"
+ "os"
+ "testing"
+
+ "github.com/sigstore/rekor/pkg/generated/models"
+ "github.com/stretchr/testify/assert"
+)
+
+func Test_verifyEntryTimestamp(t *testing.T) {
+ var time int64 = 1656444102
+
+ tests := []struct {
+ name string
+ certFilePath string
+ entry models.LogEntryAnon
+ }{
+ {
+ name: "invalid timestamp",
+ certFilePath: "test-fixtures/test-certs/der-cert-1.der",
+ entry: models.LogEntryAnon{IntegratedTime: &time},
+ },
+ }
+
+ for _, test := range tests {
+ t.Run(test.name, func(t *testing.T) {
+
+ // parse test cert
+ certBytes, err := os.ReadFile(test.certFilePath)
+ if err != nil {
+ t.Fatal("reading test data")
+ }
+ cert, err := x509.ParseCertificate(certBytes)
+ if err != nil {
+ t.Fatal("reading test data")
+ }
+
+ err = verifyEntryTimestamp(cert, &test.entry)
+ assert.Error(t, err)
+ })
+ }
+}
diff --git a/test/integration/rekor_cataloger_test.go b/test/integration/rekor_cataloger_test.go
new file mode 100644
index 00000000000..2a2761aa760
--- /dev/null
+++ b/test/integration/rekor_cataloger_test.go
@@ -0,0 +1,34 @@
+package integration
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+
+ "github.com/anchore/syft/syft/artifact"
+ "github.com/anchore/syft/syft/rekor"
+ "github.com/anchore/syft/syft/source"
+)
+
+func TestRekorCataloger(t *testing.T) {
+ sbom, _ := catalogFixtureImage(t, "image-rekor", source.SquashedScope, []string{"all"})
+
+ expectedExternalRelationships := 1
+ var foundExternalRelationship artifact.Relationship
+ foundExternalRelationships := 0
+ for _, rel := range sbom.Relationships {
+ if _, ok := rel.To.(rekor.ExternalRef); ok {
+ foundExternalRelationships += 1
+ foundExternalRelationship = rel
+ }
+ }
+ assert.Equal(t, expectedExternalRelationships, foundExternalRelationships)
+
+ if foundExternalRelationships > 0 {
+ // assert that the found external relationship is FROM a coordinates. spdx22json/to_format_model.go depends on this
+ if _, ok := foundExternalRelationship.From.(source.Coordinates); !ok {
+ assert.FailNow(t, "the rekor-cataloger surfaced a relationship that is not FROM a coordinates")
+ }
+ }
+
+}
diff --git a/test/integration/test-fixtures/image-rekor/Dockerfile b/test/integration/test-fixtures/image-rekor/Dockerfile
new file mode 100644
index 00000000000..1b9d72f8961
--- /dev/null
+++ b/test/integration/test-fixtures/image-rekor/Dockerfile
@@ -0,0 +1,2 @@
+# An image containing the example sample-golang-prov binary from https://github.com/lumjjb/sample-golang-prov
+FROM docker.io/mdeicas/sample-golang-prov:latest