diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 486d233aaf5267d4397e38c6db9a4502cfa67697..3b1466948e54ae11a0deebf58bd9e7984aa8c9ba 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,8 +24,8 @@ lint:
     - golangci-lint --version
     - golangci-lint run
   before_script:
-    - ln -s /builds /go/src/code.vereign.com
-    - cd /go/src/code.vereign.com/${CI_PROJECT_PATH}
+    - ln -s /builds /go/src/gitlab.com
+    - cd /go/src/gitlab.com/${CI_PROJECT_PATH}
 
 unit tests:
   image: golang:1.17.7
@@ -37,8 +37,8 @@ unit tests:
     - go test $(go list ./... | grep -v /integration) -race -coverprofile=coverage.out
     - go tool cover -func=coverage.out
   before_script:
-    - ln -s /builds /go/src/code.vereign.com
-    - cd /go/src/code.vereign.com/${CI_PROJECT_PATH}
+    - ln -s /builds /go/src/gitlab.com
+    - cd /go/src/gitlab.com/${CI_PROJECT_PATH}
 
 amd64:
   extends: .docker-build
diff --git a/README.md b/README.md
index 0f14b4374d5223fba5633212d94a4559ca78c0d0..6728f8e3ba05c69a02e5f138a94af9a0badd4b8c 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-[![pipeline status](https://code.vereign.com/gaiax/tsa/signer/badges/main/pipeline.svg)](https://code.vereign.com/gaiax/tsa/signer/-/commits/main)
-[![coverage report](https://code.vereign.com/gaiax/tsa/signer/badges/main/coverage.svg)](https://code.vereign.com/gaiax/tsa/signer/-/commits/main)
+[![pipeline status](https://gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/badges/main/pipeline.svg)](https://gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/-/commits/main)
+[![coverage report](https://gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/badges/main/coverage.svg)](https://gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/-/commits/main)
 
 # signer
 
diff --git a/cmd/signer/main.go b/cmd/signer/main.go
index e2589139641fa64f637fc537c8c90b2cc80a7a56..e0cd6ae0396d5b4ae0fd12eafd51c242cf8836c7 100644
--- a/cmd/signer/main.go
+++ b/cmd/signer/main.go
@@ -17,19 +17,19 @@ import (
 	goa "goa.design/goa/v3/pkg"
 	"golang.org/x/sync/errgroup"
 
-	"code.vereign.com/gaiax/tsa/golib/graceful"
-	goahealth "code.vereign.com/gaiax/tsa/signer/gen/health"
-	goahealthsrv "code.vereign.com/gaiax/tsa/signer/gen/http/health/server"
-	goaopenapisrv "code.vereign.com/gaiax/tsa/signer/gen/http/openapi/server"
-	goasignersrv "code.vereign.com/gaiax/tsa/signer/gen/http/signer/server"
-	"code.vereign.com/gaiax/tsa/signer/gen/openapi"
-	goasigner "code.vereign.com/gaiax/tsa/signer/gen/signer"
-	"code.vereign.com/gaiax/tsa/signer/internal/clients/vault"
-	"code.vereign.com/gaiax/tsa/signer/internal/config"
-	"code.vereign.com/gaiax/tsa/signer/internal/decoder"
-	"code.vereign.com/gaiax/tsa/signer/internal/service"
-	"code.vereign.com/gaiax/tsa/signer/internal/service/health"
-	"code.vereign.com/gaiax/tsa/signer/internal/service/signer"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/graceful"
+	goahealth "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/health"
+	goahealthsrv "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/http/health/server"
+	goaopenapisrv "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/http/openapi/server"
+	goasignersrv "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/http/signer/server"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/openapi"
+	goasigner "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/signer"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/clients/vault"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/config"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/decoder"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/service"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/service/health"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/service/signer"
 )
 
 var Version = "0.0.0+development"
diff --git a/deployment/ci/Dockerfile b/deployment/ci/Dockerfile
index 49b266aa8e18251305ca69db6eff6bcf94356ae8..7169cf65466fd20b4f7bdeb02f271ab52477e95d 100644
--- a/deployment/ci/Dockerfile
+++ b/deployment/ci/Dockerfile
@@ -1,10 +1,8 @@
-FROM golang:1.17.10-alpine3.15 as builder
-
-ENV GOPRIVATE=code.vereign.com
+FROM golang:1.19-alpine3.15 as builder
 
 RUN apk add git
 
-WORKDIR /go/src/code.vereign.com/gaiax/tsa/signer
+WORKDIR /go/src/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer
 
 ADD . .
 
diff --git a/deployment/compose/Dockerfile b/deployment/compose/Dockerfile
index e76e76df3df9c4a860e2ebe4adabd15c432511e8..4d395eede72eb37e83919f226fb97bc417354539 100644
--- a/deployment/compose/Dockerfile
+++ b/deployment/compose/Dockerfile
@@ -1,16 +1,13 @@
-FROM golang:1.17.10
-
-ENV GO111MODULE=on
-ENV GOPRIVATE=code.vereign.com
+FROM golang:1.19
 
 RUN go install github.com/canthefason/go-watcher/cmd/watcher@v0.2.4
 
-ADD . /go/src/code.vereign.com/gaiax/tsa/signer
+ADD . /go/src/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer
 
-WORKDIR /go/src/code.vereign.com/gaiax/tsa/signer
+WORKDIR /go/src/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer
 
 RUN go install -mod=vendor ./cmd/signer/...
 
 EXPOSE 8080
 
-ENTRYPOINT ["sh", "-c", "/go/bin/watcher -run code.vereign.com/gaiax/tsa/signer/cmd/signer -watch code.vereign.com/gaiax/tsa/signer"]
+ENTRYPOINT ["sh", "-c", "/go/bin/watcher -run gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/cmd/signer -watch gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer"]
diff --git a/gen/health/client.go b/gen/health/client.go
index bb0e5706f2754d9fc8bd037964ea478043b4b541..e3c1470eaad804726bbb17d3e76e99cfdbee953c 100644
--- a/gen/health/client.go
+++ b/gen/health/client.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // health client
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package health
 
diff --git a/gen/health/endpoints.go b/gen/health/endpoints.go
index b66a04df6f8ff3a3e45fa2a989a4d0a1fa73b713..f05c59704228a8bae5ee5b30ef84b2ae0f228de5 100644
--- a/gen/health/endpoints.go
+++ b/gen/health/endpoints.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // health endpoints
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package health
 
diff --git a/gen/health/service.go b/gen/health/service.go
index 850780bb472589537e64938a2c227e5ae50e5172..d15d570bc3ef9585eb0ac60e286933874609d7a2 100644
--- a/gen/health/service.go
+++ b/gen/health/service.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // health service
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package health
 
diff --git a/gen/http/cli/signer/cli.go b/gen/http/cli/signer/cli.go
index 0b3d8af82a5a7f87936835e1da6db67a5f08324b..4bfb84b12a92789ace581773d655cfb5af263c53 100644
--- a/gen/http/cli/signer/cli.go
+++ b/gen/http/cli/signer/cli.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // signer HTTP client CLI support package
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package cli
 
@@ -13,8 +14,8 @@ import (
 	"net/http"
 	"os"
 
-	healthc "code.vereign.com/gaiax/tsa/signer/gen/http/health/client"
-	signerc "code.vereign.com/gaiax/tsa/signer/gen/http/signer/client"
+	healthc "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/http/health/client"
+	signerc "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/http/signer/client"
 	goahttp "goa.design/goa/v3/http"
 	goa "goa.design/goa/v3/pkg"
 )
diff --git a/gen/http/health/client/cli.go b/gen/http/health/client/cli.go
index aa9f69829f163dc692e4b4eb19ad99fbe2793113..32fe712dc0a8ab6bed5550667910f8fabfd12377 100644
--- a/gen/http/health/client/cli.go
+++ b/gen/http/health/client/cli.go
@@ -1,8 +1,9 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // health HTTP client CLI support package
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
diff --git a/gen/http/health/client/client.go b/gen/http/health/client/client.go
index 49d1e85f6399eb40fecb09592d173ff48da75a89..b65d08c9f904a3c26239d5ba981b73f767ef35f6 100644
--- a/gen/http/health/client/client.go
+++ b/gen/http/health/client/client.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // health client HTTP transport
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
 
diff --git a/gen/http/health/client/encode_decode.go b/gen/http/health/client/encode_decode.go
index 4b455f0d329f35142436ded1e84b89c7d615ebcb..62f630e6e2f7d7259abbd4b39201841f08a6672c 100644
--- a/gen/http/health/client/encode_decode.go
+++ b/gen/http/health/client/encode_decode.go
@@ -1,16 +1,17 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // health HTTP client encoders and decoders
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
 
 import (
 	"bytes"
 	"context"
-	"io/ioutil"
+	"io"
 	"net/http"
 	"net/url"
 
@@ -38,13 +39,13 @@ func (c *Client) BuildLivenessRequest(ctx context.Context, v interface{}) (*http
 func DecodeLivenessResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error) {
 	return func(resp *http.Response) (interface{}, error) {
 		if restoreBody {
-			b, err := ioutil.ReadAll(resp.Body)
+			b, err := io.ReadAll(resp.Body)
 			if err != nil {
 				return nil, err
 			}
-			resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+			resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			defer func() {
-				resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+				resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			}()
 		} else {
 			defer resp.Body.Close()
@@ -53,7 +54,7 @@ func DecodeLivenessResponse(decoder func(*http.Response) goahttp.Decoder, restor
 		case http.StatusOK:
 			return nil, nil
 		default:
-			body, _ := ioutil.ReadAll(resp.Body)
+			body, _ := io.ReadAll(resp.Body)
 			return nil, goahttp.ErrInvalidResponse("health", "Liveness", resp.StatusCode, string(body))
 		}
 	}
@@ -80,13 +81,13 @@ func (c *Client) BuildReadinessRequest(ctx context.Context, v interface{}) (*htt
 func DecodeReadinessResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error) {
 	return func(resp *http.Response) (interface{}, error) {
 		if restoreBody {
-			b, err := ioutil.ReadAll(resp.Body)
+			b, err := io.ReadAll(resp.Body)
 			if err != nil {
 				return nil, err
 			}
-			resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+			resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			defer func() {
-				resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+				resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			}()
 		} else {
 			defer resp.Body.Close()
@@ -95,7 +96,7 @@ func DecodeReadinessResponse(decoder func(*http.Response) goahttp.Decoder, resto
 		case http.StatusOK:
 			return nil, nil
 		default:
-			body, _ := ioutil.ReadAll(resp.Body)
+			body, _ := io.ReadAll(resp.Body)
 			return nil, goahttp.ErrInvalidResponse("health", "Readiness", resp.StatusCode, string(body))
 		}
 	}
diff --git a/gen/http/health/client/paths.go b/gen/http/health/client/paths.go
index c82620cdc86e591d8671001bad4cde0a7e5ac900..7a5da261785fd1a385c9bac03cdc6a2432efe657 100644
--- a/gen/http/health/client/paths.go
+++ b/gen/http/health/client/paths.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // HTTP request path constructors for the health service.
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
 
diff --git a/gen/http/health/client/types.go b/gen/http/health/client/types.go
index e6c98d0a01138e483c5bcd37b907add720cc9d9a..a689e6ab1d1101aee0d3b6444aa7cc55c21940a8 100644
--- a/gen/http/health/client/types.go
+++ b/gen/http/health/client/types.go
@@ -1,8 +1,9 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // health HTTP client types
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
diff --git a/gen/http/health/server/encode_decode.go b/gen/http/health/server/encode_decode.go
index ae0ba7b1ddcf0c1910f3f2502a38ed543a2d551c..4a3c1e8798bb35f5ac12f348eb42499c6d61eab7 100644
--- a/gen/http/health/server/encode_decode.go
+++ b/gen/http/health/server/encode_decode.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // health HTTP server encoders and decoders
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package server
 
diff --git a/gen/http/health/server/paths.go b/gen/http/health/server/paths.go
index 33c101b2b5892f802c43133aaa8e635c2cab452f..38a581170b6da4a3680fa1ddd231b09d2a5008fd 100644
--- a/gen/http/health/server/paths.go
+++ b/gen/http/health/server/paths.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // HTTP request path constructors for the health service.
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package server
 
diff --git a/gen/http/health/server/server.go b/gen/http/health/server/server.go
index 171c5f1d88032ffecc9fc24d668ccd91a18e1802..6e2752397a591ebc79a6e8a54b3fe55806299a9b 100644
--- a/gen/http/health/server/server.go
+++ b/gen/http/health/server/server.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // health HTTP server
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package server
 
@@ -11,7 +12,7 @@ import (
 	"context"
 	"net/http"
 
-	health "code.vereign.com/gaiax/tsa/signer/gen/health"
+	health "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/health"
 	goahttp "goa.design/goa/v3/http"
 	goa "goa.design/goa/v3/pkg"
 )
diff --git a/gen/http/health/server/types.go b/gen/http/health/server/types.go
index 0a75ad3f117dd2e29f632d72eb1e6c7ce622639a..89fd17d2da2da8414b73449cadb1aa9db6f44db6 100644
--- a/gen/http/health/server/types.go
+++ b/gen/http/health/server/types.go
@@ -1,8 +1,9 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // health HTTP server types
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package server
diff --git a/gen/http/openapi/client/client.go b/gen/http/openapi/client/client.go
index 1a75f8637c051c0d438cea70ffd198aac0c0ad26..297dcb865ba24a3e5a0766d124a58f128642459e 100644
--- a/gen/http/openapi/client/client.go
+++ b/gen/http/openapi/client/client.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // openapi client HTTP transport
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
 
diff --git a/gen/http/openapi/client/encode_decode.go b/gen/http/openapi/client/encode_decode.go
index ba2361b0329733fb6ddfa4f90d7b190eb7f91389..7713f76e7cc100b25e72c3fa7a14e2f460364364 100644
--- a/gen/http/openapi/client/encode_decode.go
+++ b/gen/http/openapi/client/encode_decode.go
@@ -1,8 +1,9 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // openapi HTTP client encoders and decoders
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
diff --git a/gen/http/openapi/client/paths.go b/gen/http/openapi/client/paths.go
index 93caf0ea4c33fd0bacf9040362696f45d4840450..dd228730040610a1ae3e32a2eddc15fd7b4c6906 100644
--- a/gen/http/openapi/client/paths.go
+++ b/gen/http/openapi/client/paths.go
@@ -1,8 +1,9 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // HTTP request path constructors for the openapi service.
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
diff --git a/gen/http/openapi/client/types.go b/gen/http/openapi/client/types.go
index 89bf15b12a34b7d2e43f3a14b38d831fedf63783..1281fb406ebdf49f67b7f3be6d0e2356b68df3ba 100644
--- a/gen/http/openapi/client/types.go
+++ b/gen/http/openapi/client/types.go
@@ -1,8 +1,9 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // openapi HTTP client types
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
diff --git a/gen/http/openapi/server/paths.go b/gen/http/openapi/server/paths.go
index 76f5b1a676e8d4679ac35aeebaaa8979334c22f2..cf04351f5e832f479d8e55ddea352a468fe86eec 100644
--- a/gen/http/openapi/server/paths.go
+++ b/gen/http/openapi/server/paths.go
@@ -1,8 +1,9 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // HTTP request path constructors for the openapi service.
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package server
diff --git a/gen/http/openapi/server/server.go b/gen/http/openapi/server/server.go
index 037d0d35f250218f9e4ef7f9f218ae6cb6d177cf..9368973abaca69bd59afe77e9a156de6e35b68e3 100644
--- a/gen/http/openapi/server/server.go
+++ b/gen/http/openapi/server/server.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // openapi HTTP server
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package server
 
@@ -11,7 +12,7 @@ import (
 	"context"
 	"net/http"
 
-	openapi "code.vereign.com/gaiax/tsa/signer/gen/openapi"
+	openapi "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/openapi"
 	goahttp "goa.design/goa/v3/http"
 )
 
diff --git a/gen/http/openapi/server/types.go b/gen/http/openapi/server/types.go
index 87eac8c61dcdd9763aaacc9e353842e652eb1eeb..b15db0b98c2b24cec84b97fde2f666375cb8f70e 100644
--- a/gen/http/openapi/server/types.go
+++ b/gen/http/openapi/server/types.go
@@ -1,8 +1,9 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // openapi HTTP server types
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package server
diff --git a/gen/http/signer/client/cli.go b/gen/http/signer/client/cli.go
index daf05a559a0bdbd13ad0c00ded07c4f159faef60..7e61ec0b390248272a2ce9ec7837a38821d032ab 100644
--- a/gen/http/signer/client/cli.go
+++ b/gen/http/signer/client/cli.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // signer HTTP client CLI support package
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
 
@@ -11,7 +12,7 @@ import (
 	"encoding/json"
 	"fmt"
 
-	signer "code.vereign.com/gaiax/tsa/signer/gen/signer"
+	signer "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/signer"
 	goa "goa.design/goa/v3/pkg"
 )
 
diff --git a/gen/http/signer/client/client.go b/gen/http/signer/client/client.go
index fe0c2d5f9b6264fd391f75a8780539f9f8969ac7..842f4425ee4580dfc88145ecc860cb9a28c9c868 100644
--- a/gen/http/signer/client/client.go
+++ b/gen/http/signer/client/client.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // signer client HTTP transport
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
 
diff --git a/gen/http/signer/client/encode_decode.go b/gen/http/signer/client/encode_decode.go
index 3b5cc6898171888960292426aeeaa36905ce940c..5f87aae6d66d6fa2e0f74b6b174d4c67239c40bf 100644
--- a/gen/http/signer/client/encode_decode.go
+++ b/gen/http/signer/client/encode_decode.go
@@ -1,20 +1,21 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // signer HTTP client encoders and decoders
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
 
 import (
 	"bytes"
 	"context"
-	"io/ioutil"
+	"io"
 	"net/http"
 	"net/url"
 
-	signer "code.vereign.com/gaiax/tsa/signer/gen/signer"
+	signer "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/signer"
 	goahttp "goa.design/goa/v3/http"
 	goa "goa.design/goa/v3/pkg"
 )
@@ -61,13 +62,13 @@ func EncodeCredentialProofRequest(encoder func(*http.Request) goahttp.Encoder) f
 func DecodeCredentialProofResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error) {
 	return func(resp *http.Response) (interface{}, error) {
 		if restoreBody {
-			b, err := ioutil.ReadAll(resp.Body)
+			b, err := io.ReadAll(resp.Body)
 			if err != nil {
 				return nil, err
 			}
-			resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+			resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			defer func() {
-				resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+				resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			}()
 		} else {
 			defer resp.Body.Close()
@@ -84,7 +85,7 @@ func DecodeCredentialProofResponse(decoder func(*http.Response) goahttp.Decoder,
 			}
 			return body, nil
 		default:
-			body, _ := ioutil.ReadAll(resp.Body)
+			body, _ := io.ReadAll(resp.Body)
 			return nil, goahttp.ErrInvalidResponse("signer", "CredentialProof", resp.StatusCode, string(body))
 		}
 	}
@@ -132,13 +133,13 @@ func EncodePresentationProofRequest(encoder func(*http.Request) goahttp.Encoder)
 func DecodePresentationProofResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error) {
 	return func(resp *http.Response) (interface{}, error) {
 		if restoreBody {
-			b, err := ioutil.ReadAll(resp.Body)
+			b, err := io.ReadAll(resp.Body)
 			if err != nil {
 				return nil, err
 			}
-			resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+			resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			defer func() {
-				resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+				resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			}()
 		} else {
 			defer resp.Body.Close()
@@ -155,7 +156,7 @@ func DecodePresentationProofResponse(decoder func(*http.Response) goahttp.Decode
 			}
 			return body, nil
 		default:
-			body, _ := ioutil.ReadAll(resp.Body)
+			body, _ := io.ReadAll(resp.Body)
 			return nil, goahttp.ErrInvalidResponse("signer", "PresentationProof", resp.StatusCode, string(body))
 		}
 	}
@@ -204,13 +205,13 @@ func EncodeCreatePresentationRequest(encoder func(*http.Request) goahttp.Encoder
 func DecodeCreatePresentationResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error) {
 	return func(resp *http.Response) (interface{}, error) {
 		if restoreBody {
-			b, err := ioutil.ReadAll(resp.Body)
+			b, err := io.ReadAll(resp.Body)
 			if err != nil {
 				return nil, err
 			}
-			resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+			resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			defer func() {
-				resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+				resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			}()
 		} else {
 			defer resp.Body.Close()
@@ -227,7 +228,7 @@ func DecodeCreatePresentationResponse(decoder func(*http.Response) goahttp.Decod
 			}
 			return body, nil
 		default:
-			body, _ := ioutil.ReadAll(resp.Body)
+			body, _ := io.ReadAll(resp.Body)
 			return nil, goahttp.ErrInvalidResponse("signer", "CreatePresentation", resp.StatusCode, string(body))
 		}
 	}
@@ -270,13 +271,13 @@ func EncodeVerifyCredentialRequest(encoder func(*http.Request) goahttp.Encoder)
 func DecodeVerifyCredentialResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error) {
 	return func(resp *http.Response) (interface{}, error) {
 		if restoreBody {
-			b, err := ioutil.ReadAll(resp.Body)
+			b, err := io.ReadAll(resp.Body)
 			if err != nil {
 				return nil, err
 			}
-			resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+			resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			defer func() {
-				resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+				resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			}()
 		} else {
 			defer resp.Body.Close()
@@ -298,7 +299,7 @@ func DecodeVerifyCredentialResponse(decoder func(*http.Response) goahttp.Decoder
 			res := NewVerifyCredentialVerifyResultOK(&body)
 			return res, nil
 		default:
-			body, _ := ioutil.ReadAll(resp.Body)
+			body, _ := io.ReadAll(resp.Body)
 			return nil, goahttp.ErrInvalidResponse("signer", "VerifyCredential", resp.StatusCode, string(body))
 		}
 	}
@@ -342,13 +343,13 @@ func EncodeVerifyPresentationRequest(encoder func(*http.Request) goahttp.Encoder
 func DecodeVerifyPresentationResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error) {
 	return func(resp *http.Response) (interface{}, error) {
 		if restoreBody {
-			b, err := ioutil.ReadAll(resp.Body)
+			b, err := io.ReadAll(resp.Body)
 			if err != nil {
 				return nil, err
 			}
-			resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+			resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			defer func() {
-				resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+				resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			}()
 		} else {
 			defer resp.Body.Close()
@@ -370,7 +371,7 @@ func DecodeVerifyPresentationResponse(decoder func(*http.Response) goahttp.Decod
 			res := NewVerifyPresentationVerifyResultOK(&body)
 			return res, nil
 		default:
-			body, _ := ioutil.ReadAll(resp.Body)
+			body, _ := io.ReadAll(resp.Body)
 			return nil, goahttp.ErrInvalidResponse("signer", "VerifyPresentation", resp.StatusCode, string(body))
 		}
 	}
@@ -407,13 +408,13 @@ func (c *Client) BuildGetKeyRequest(ctx context.Context, v interface{}) (*http.R
 func DecodeGetKeyResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error) {
 	return func(resp *http.Response) (interface{}, error) {
 		if restoreBody {
-			b, err := ioutil.ReadAll(resp.Body)
+			b, err := io.ReadAll(resp.Body)
 			if err != nil {
 				return nil, err
 			}
-			resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+			resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			defer func() {
-				resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+				resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			}()
 		} else {
 			defer resp.Body.Close()
@@ -435,7 +436,7 @@ func DecodeGetKeyResponse(decoder func(*http.Response) goahttp.Decoder, restoreB
 			res := NewGetKeyVerificationMethodOK(&body)
 			return res, nil
 		default:
-			body, _ := ioutil.ReadAll(resp.Body)
+			body, _ := io.ReadAll(resp.Body)
 			return nil, goahttp.ErrInvalidResponse("signer", "GetKey", resp.StatusCode, string(body))
 		}
 	}
@@ -462,13 +463,13 @@ func (c *Client) BuildGetKeysRequest(ctx context.Context, v interface{}) (*http.
 func DecodeGetKeysResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error) {
 	return func(resp *http.Response) (interface{}, error) {
 		if restoreBody {
-			b, err := ioutil.ReadAll(resp.Body)
+			b, err := io.ReadAll(resp.Body)
 			if err != nil {
 				return nil, err
 			}
-			resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+			resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			defer func() {
-				resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+				resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			}()
 		} else {
 			defer resp.Body.Close()
@@ -496,7 +497,7 @@ func DecodeGetKeysResponse(decoder func(*http.Response) goahttp.Decoder, restore
 			res := NewGetKeysVerificationMethodOK(body)
 			return res, nil
 		default:
-			body, _ := ioutil.ReadAll(resp.Body)
+			body, _ := io.ReadAll(resp.Body)
 			return nil, goahttp.ErrInvalidResponse("signer", "GetKeys", resp.StatusCode, string(body))
 		}
 	}
@@ -523,13 +524,13 @@ func (c *Client) BuildIssuerDIDRequest(ctx context.Context, v interface{}) (*htt
 func DecodeIssuerDIDResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error) {
 	return func(resp *http.Response) (interface{}, error) {
 		if restoreBody {
-			b, err := ioutil.ReadAll(resp.Body)
+			b, err := io.ReadAll(resp.Body)
 			if err != nil {
 				return nil, err
 			}
-			resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+			resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			defer func() {
-				resp.Body = ioutil.NopCloser(bytes.NewBuffer(b))
+				resp.Body = io.NopCloser(bytes.NewBuffer(b))
 			}()
 		} else {
 			defer resp.Body.Close()
@@ -551,7 +552,7 @@ func DecodeIssuerDIDResponse(decoder func(*http.Response) goahttp.Decoder, resto
 			res := NewIssuerDIDResultOK(&body)
 			return res, nil
 		default:
-			body, _ := ioutil.ReadAll(resp.Body)
+			body, _ := io.ReadAll(resp.Body)
 			return nil, goahttp.ErrInvalidResponse("signer", "IssuerDID", resp.StatusCode, string(body))
 		}
 	}
diff --git a/gen/http/signer/client/paths.go b/gen/http/signer/client/paths.go
index 08c5f8b2a8576e1cd90a97355fc7dc911d1627fb..346445cb1b69410506289b469631c8e056ecf809 100644
--- a/gen/http/signer/client/paths.go
+++ b/gen/http/signer/client/paths.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // HTTP request path constructors for the signer service.
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
 
diff --git a/gen/http/signer/client/types.go b/gen/http/signer/client/types.go
index 2e79abf31ce705d16cf82b389d1f3b19db5a0ee2..771241c82e9897623b0dc4562f501fe20c937d3e 100644
--- a/gen/http/signer/client/types.go
+++ b/gen/http/signer/client/types.go
@@ -1,14 +1,15 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // signer HTTP client types
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package client
 
 import (
-	signer "code.vereign.com/gaiax/tsa/signer/gen/signer"
+	signer "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/signer"
 	goa "goa.design/goa/v3/pkg"
 )
 
diff --git a/gen/http/signer/server/encode_decode.go b/gen/http/signer/server/encode_decode.go
index 9c858ff07d14804137499707e6c4ad4716e5ee2b..f29518c99ed7080c4c63fe478218f3baa13fe16e 100644
--- a/gen/http/signer/server/encode_decode.go
+++ b/gen/http/signer/server/encode_decode.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // signer HTTP server encoders and decoders
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package server
 
@@ -12,7 +13,7 @@ import (
 	"io"
 	"net/http"
 
-	signer "code.vereign.com/gaiax/tsa/signer/gen/signer"
+	signer "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/signer"
 	goahttp "goa.design/goa/v3/http"
 	goa "goa.design/goa/v3/pkg"
 )
diff --git a/gen/http/signer/server/paths.go b/gen/http/signer/server/paths.go
index dc2e4c7caf72092c3028825e55cb81503c7f9b69..a649c3884acca74bc400bceee20af963370d8e71 100644
--- a/gen/http/signer/server/paths.go
+++ b/gen/http/signer/server/paths.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // HTTP request path constructors for the signer service.
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package server
 
diff --git a/gen/http/signer/server/server.go b/gen/http/signer/server/server.go
index 31aec1aae5f4700c2e2bda9c54f90a2661098d1a..ec710a80020106b7d66df81181c374f61b92bef5 100644
--- a/gen/http/signer/server/server.go
+++ b/gen/http/signer/server/server.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // signer HTTP server
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package server
 
@@ -11,7 +12,7 @@ import (
 	"context"
 	"net/http"
 
-	signer "code.vereign.com/gaiax/tsa/signer/gen/signer"
+	signer "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/signer"
 	goahttp "goa.design/goa/v3/http"
 	goa "goa.design/goa/v3/pkg"
 )
diff --git a/gen/http/signer/server/types.go b/gen/http/signer/server/types.go
index 94f73a3de3e2a1b88a60e2ab171c0205eaeaff62..0aebdff6e6e17ddde054f978d3504f9dd630d920 100644
--- a/gen/http/signer/server/types.go
+++ b/gen/http/signer/server/types.go
@@ -1,14 +1,15 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // signer HTTP server types
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package server
 
 import (
-	signer "code.vereign.com/gaiax/tsa/signer/gen/signer"
+	signer "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/signer"
 	goa "goa.design/goa/v3/pkg"
 )
 
diff --git a/gen/openapi/client.go b/gen/openapi/client.go
index e21ad8fa3e157b720c42fadf1c1b075b0c7ce5ad..b879de9ab93aa2da19f8bc12114c21b966834f1f 100644
--- a/gen/openapi/client.go
+++ b/gen/openapi/client.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // openapi client
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package openapi
 
diff --git a/gen/openapi/endpoints.go b/gen/openapi/endpoints.go
index e16abd2099a4bc7a8bb7da1f35e5cb994fe96616..df0ae3ac8f14371fd1e12c3a792f9de68637f398 100644
--- a/gen/openapi/endpoints.go
+++ b/gen/openapi/endpoints.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // openapi endpoints
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package openapi
 
diff --git a/gen/openapi/service.go b/gen/openapi/service.go
index 86bb0e92cbad51f193706e2296a7fbb3b1a63307..03b0ddf513e2d5742942750d4f8ab2ebacdcdc81 100644
--- a/gen/openapi/service.go
+++ b/gen/openapi/service.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // openapi service
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package openapi
 
diff --git a/gen/signer/client.go b/gen/signer/client.go
index 6b9aa2663b7a07f510ab4c7759d943407e4bc84b..8cb2a4050edec9a7644a0d7d680405b76ae86d51 100644
--- a/gen/signer/client.go
+++ b/gen/signer/client.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // signer client
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package signer
 
diff --git a/gen/signer/endpoints.go b/gen/signer/endpoints.go
index 0bf6f9fef22900cf7613b165b1600009b6378e6e..dd7962111fda78adcba01c3984089c10a17fec47 100644
--- a/gen/signer/endpoints.go
+++ b/gen/signer/endpoints.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // signer endpoints
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package signer
 
diff --git a/gen/signer/service.go b/gen/signer/service.go
index 7a73342aee09f084c621354fd798451e13ebe9a0..45c3360d682f16b65c135cec6583d178ed041a7c 100644
--- a/gen/signer/service.go
+++ b/gen/signer/service.go
@@ -1,9 +1,10 @@
-// Code generated by goa v3.7.6, DO NOT EDIT.
+// Code generated by goa v3.8.5, DO NOT EDIT.
 //
 // signer service
 //
 // Command:
-// $ goa gen code.vereign.com/gaiax/tsa/signer/design
+// $ goa gen
+// gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 package signer
 
diff --git a/go.mod b/go.mod
index 2f6aad0fb93c22d65c5711e53288bda1897e5032..e1b98f82e807ddead2e99cde715e91f33d7b8bf4 100644
--- a/go.mod
+++ b/go.mod
@@ -1,19 +1,19 @@
-module code.vereign.com/gaiax/tsa/signer
+module gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer
 
-go 1.17
+go 1.19
 
 require (
-	code.vereign.com/gaiax/tsa/golib v0.0.0-20220615064316-ca49265d8b0e
 	github.com/hashicorp/vault/api v1.0.4
 	github.com/hyperledger/aries-framework-go v0.1.8
 	github.com/kelseyhightower/envconfig v1.4.0
 	github.com/piprate/json-gold v0.4.1-0.20210813112359-33b90c4ca86c
 	github.com/prometheus/client_golang v1.12.2
 	github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693
-	github.com/stretchr/testify v1.7.0
+	github.com/stretchr/testify v1.8.0
+	gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib v0.0.0-20220913103832-19b72aa5e623
 	go.uber.org/zap v1.21.0
-	goa.design/goa/v3 v3.7.6
-	golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
+	goa.design/goa/v3 v3.8.5
+	golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4
 )
 
 require (
@@ -32,9 +32,9 @@ require (
 	github.com/google/uuid v1.3.0 // indirect
 	github.com/gopherjs/gopherjs v1.17.2 // indirect
 	github.com/gorilla/websocket v1.5.0 // indirect
-	github.com/hashicorp/errwrap v1.0.0 // indirect
+	github.com/hashicorp/errwrap v1.1.0 // indirect
 	github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
-	github.com/hashicorp/go-multierror v1.0.0 // indirect
+	github.com/hashicorp/go-multierror v1.1.1 // indirect
 	github.com/hashicorp/go-retryablehttp v0.5.4 // indirect
 	github.com/hashicorp/go-rootcerts v1.0.1 // indirect
 	github.com/hashicorp/go-sockaddr v1.0.2 // indirect
@@ -73,14 +73,13 @@ require (
 	go.uber.org/atomic v1.7.0 // indirect
 	go.uber.org/multierr v1.6.0 // indirect
 	golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
-	golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
-	golang.org/x/net v0.0.0-20220531201128-c960675eff93 // indirect
-	golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
+	golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
+	golang.org/x/net v0.0.0-20220802222814-0bcc04d9c69b // indirect
+	golang.org/x/sys v0.0.0-20220803195053-6e608f9ce704 // indirect
 	golang.org/x/text v0.3.7 // indirect
 	golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
-	golang.org/x/tools v0.1.10 // indirect
-	golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect
-	google.golang.org/protobuf v1.28.0 // indirect
+	golang.org/x/tools v0.1.12 // indirect
+	google.golang.org/protobuf v1.28.1 // indirect
 	gopkg.in/square/go-jose.v2 v2.3.1 // indirect
 	gopkg.in/yaml.v3 v3.0.1 // indirect
 )
diff --git a/go.sum b/go.sum
index 7f5171502126efa15c4d9f96b2ad7068907d2825..89bd3d4371156c622f6d21792bc47be20d8e4c2c 100644
--- a/go.sum
+++ b/go.sum
@@ -30,8 +30,6 @@ cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0Zeo
 cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk=
 cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs=
 cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0=
-code.vereign.com/gaiax/tsa/golib v0.0.0-20220615064316-ca49265d8b0e h1:Tf+6cXb+hh/EsoNLyeGJ/T+hhJMn8Hdbo43cVkeAQZ4=
-code.vereign.com/gaiax/tsa/golib v0.0.0-20220615064316-ca49265d8b0e/go.mod h1:bDorhOdL8/uRy56rvdBLWiRiOKlDjC5tQvpS5eN6wzo=
 dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
 github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
 github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
@@ -177,16 +175,18 @@ github.com/gopherjs/gopherjs v1.17.2 h1:fQnZVsXk8uxXIStYb0N4bGk7jeyTalG/wsZjQ25d
 github.com/gopherjs/gopherjs v1.17.2/go.mod h1:pRRIvn/QzFLrKfvEz3qUuEhtE/zLCWfreZ6J5gM2i+k=
 github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
 github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
-github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=
 github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
+github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
+github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
 github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80=
 github.com/hashicorp/go-cleanhttp v0.5.1 h1:dH3aiDG9Jvb5r5+bYHsikaOUIpcM0xvgMXVoDkXMzJM=
 github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80=
 github.com/hashicorp/go-hclog v0.0.0-20180709165350-ff2cf002a8dd/go.mod h1:9bjs9uLqI8l75knNv3lV1kA55veR+WUPSiKIWcQHudI=
 github.com/hashicorp/go-hclog v0.8.0/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ=
 github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60=
-github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=
 github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk=
+github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo=
+github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM=
 github.com/hashicorp/go-plugin v1.0.1/go.mod h1:++UyYGoz3o5w9ZzAdZxtQKrWWP+iqPBn3cQptSMzBuY=
 github.com/hashicorp/go-retryablehttp v0.5.4 h1:1BZvpawXoJCWX6pNtow9+rpEj+3itIlutiqnntI6jOE=
 github.com/hashicorp/go-retryablehttp v0.5.4/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs=
@@ -242,10 +242,11 @@ github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6
 github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
 github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
 github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
+github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
 github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
 github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
+github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
 github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
-github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
 github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d h1:Zj+PHjnhRYWBK6RqCDBcAhLXoi3TzC27Zad/Vn+gnVQ=
 github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d/go.mod h1:WZy8Q5coAB1zhY9AOBJP0O6J4BuDfbupUDavKY+I3+s=
 github.com/manveru/gobdd v0.0.0-20131210092515-f1a17fdd710b h1:3E44bLeN8uKYdfQqVQycPnaVviZdBLbizFhU49mtbe4=
@@ -286,7 +287,6 @@ github.com/multiformats/go-varint v0.0.5 h1:XVZwSo04Cs3j/jS0uAEPpT3JY6DzMcVLLoWO
 github.com/multiformats/go-varint v0.0.5/go.mod h1:3Ls8CIEsrijN6+B7PbrXRPxHRPuXSrVKRY101jdMZYE=
 github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
 github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
-github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=
 github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA=
 github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
 github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
@@ -340,19 +340,22 @@ github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6Mwd
 github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88=
 github.com/smartystreets/assertions v1.13.0 h1:Dx1kYM01xsSqKPno3aqLnrwac2LetPvN23diwyr69Qs=
 github.com/smartystreets/assertions v1.13.0/go.mod h1:wDmR7qL282YbGsPy6H/yAsesrxfxaaSlJazyFLYVFx8=
-github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=
+github.com/smartystreets/goconvey v1.7.2 h1:9RBaZCeXEQ3UselpuwUQHltGVXvdwm6cv1hgR6gDIPg=
 github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI=
 github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
 github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693 h1:wD1IWQwAhdWclCwaf6DdzgCAe9Bfz1M+4AHRd7N786Y=
 github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693/go.mod h1:6hSY48PjDm4UObWmGLyJE9DxYVKTgR9kbCspXXJEhcU=
 github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
 github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
+github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
 github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
 github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
 github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
 github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
-github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
 github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
+github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
+github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
+github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
 github.com/teserakt-io/golang-ed25519 v0.0.0-20210104091850-3888c087a4c8 h1:RBkacARv7qY5laaXGlF4wFB/tk5rnthhPb8oIBGoagY=
 github.com/teserakt-io/golang-ed25519 v0.0.0-20210104091850-3888c087a4c8/go.mod h1:9PdLyPiZIiW3UopXyRnPYyjUXSpiQNHRLu8fOsR3o8M=
 github.com/tidwall/gjson v1.6.7 h1:Mb1M9HZCRWEcXQ8ieJo7auYyyiSux6w9XN3AdTpxJrE=
@@ -373,6 +376,8 @@ github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9dec
 github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
 github.com/zach-klippenstein/goregen v0.0.0-20160303162051-795b5e3961ea h1:CyhwejzVGvZ3Q2PSbQ4NRRYn+ZWv5eS1vlaEusT+bAI=
 github.com/zach-klippenstein/goregen v0.0.0-20160303162051-795b5e3961ea/go.mod h1:eNr558nEUjP8acGw8FFjTeWvSgU1stO7FAO6eknhHe4=
+gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib v0.0.0-20220913103832-19b72aa5e623 h1:VuWLKBdO5bTGimppwkk6v+cJZ6onc2J16hBXHf048GU=
+gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib v0.0.0-20220913103832-19b72aa5e623/go.mod h1:5BPRkziGjdCI9xVfJBGY+7Ea51gtiEEs7+rbYeC8lnY=
 go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
 go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
 go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
@@ -386,8 +391,8 @@ go.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4=
 go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=
 go.uber.org/zap v1.21.0 h1:WefMeulhovoZ2sYXz7st6K0sLj7bBhpiFaud4r4zST8=
 go.uber.org/zap v1.21.0/go.mod h1:wjWOCqI0f2ZZrJF/UufIOkiC8ii6tm1iqIsLo76RfJw=
-goa.design/goa/v3 v3.7.6 h1:xwiPiwtcfm1GK4+GgxSJseHQWAqnoeeGdsv0YAquIEs=
-goa.design/goa/v3 v3.7.6/go.mod h1:Fc2yyfyUZbGUL7PYOioLdT9JVN7dbdhkDwo5v7xoKc8=
+goa.design/goa/v3 v3.8.5 h1:Y0/6ZwmwZftqQBOlBANU9mP4R+h2gIQUyfQMEs98pGU=
+goa.design/goa/v3 v3.8.5/go.mod h1:+tEl2wNEL54TMAQQ5Mu5il1zl20/7k89XMUv8hVJfa8=
 golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
 golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
 golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
@@ -434,8 +439,8 @@ golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzB
 golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
 golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
 golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
-golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 h1:kQgndtyPBW/JIYERgdxfwMYh3AVStj88WQTlNDi2a+o=
-golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY=
+golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 h1:6zppjxzCulZykYSLyVDYbneBfbaBIQPYMevg0bEwv2s=
+golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
 golang.org/x/net v0.0.0-20180719180050-a680a1efc54d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
 golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
 golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
@@ -469,8 +474,8 @@ golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81R
 golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
 golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
 golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
-golang.org/x/net v0.0.0-20220531201128-c960675eff93 h1:MYimHLfoXEpOhqd/zgoA/uoXzHB86AEky4LAx5ij9xA=
-golang.org/x/net v0.0.0-20220531201128-c960675eff93/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
+golang.org/x/net v0.0.0-20220802222814-0bcc04d9c69b h1:3ogNYyK4oIQdIKzTu68hQrr4iuVxF3AxKl9Aj/eDrw0=
+golang.org/x/net v0.0.0-20220802222814-0bcc04d9c69b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk=
 golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
 golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
 golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
@@ -487,8 +492,9 @@ golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJ
 golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ=
 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 h1:uVc8UZUe6tr40fFVnUP5Oj+veunVezqYl9z7DYw9xzw=
+golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
 golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
 golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
@@ -533,8 +539,8 @@ golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7w
 golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a h1:dGzPydgVsqGcTRVwiLJ1jVbufYwmzD3LfVPLKsKg+0k=
-golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220803195053-6e608f9ce704 h1:Y7NOhdqIOU8kYI7BxsgL38d0ot0raxvcW+EMQU2QrT4=
+golang.org/x/sys v0.0.0-20220803195053-6e608f9ce704/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
 golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
 golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
@@ -591,14 +597,13 @@ golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc
 golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
 golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE=
 golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
-golang.org/x/tools v0.1.10 h1:QjFRCZxdOhBJ/UNgnBZLbNV13DlbnK0quyivTnXJM20=
-golang.org/x/tools v0.1.10/go.mod h1:Uh6Zz+xoGYZom868N8YTex3t7RhtHDBrE8Gzo9bV56E=
+golang.org/x/tools v0.1.12 h1:VveCTK38A2rkS8ZqFY25HIDFscX5X9OoEhJd3quQmXU=
+golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
 golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
 golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
 golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
 golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
 golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df h1:5Pf6pFKu98ODmgnpvkJ3kFUOQGGLIzLIkbzUHp47618=
-golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8=
 google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=
 google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=
 google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
@@ -680,14 +685,14 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj
 google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
 google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
 google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
-google.golang.org/protobuf v1.28.0 h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw=
-google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
+google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w=
+google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
 gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
 gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d/go.mod h1:cuepJuh7vyXfUyUwEgHQXw849cJrilpS5NeIjOWESAw=
 gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
 gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
+gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=
 gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
-gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU=
 gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
 gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
 gopkg.in/square/go-jose.v2 v2.3.1 h1:SK5KegNXmKmqE342YYN2qPHEnUYeoMiXXl1poUlI+o4=
diff --git a/goagen.sh b/goagen.sh
index ec5a7dcdaefa14e0924a189e0fc118bc66ef9fdf..c1c49dff67265f476fa54537c01b13ab4b537e3c 100755
--- a/goagen.sh
+++ b/goagen.sh
@@ -9,7 +9,7 @@ STORED_GOFLAGS=$(go env GOFLAGS)
 go env -w GOFLAGS=-mod=mod
 
 # execute goa code generation
-goa gen code.vereign.com/gaiax/tsa/signer/design
+goa gen gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/design
 
 # restore the value of GOFLAGS
 go env -w GOFLAGS=$STORED_GOFLAGS
diff --git a/integration/integration_test.go b/integration/integration_test.go
index 03515f3de7c01677a67146ff093021ff9c646bea..5d5836bfe5705c8508341df031dc64f5925e9fb3 100644
--- a/integration/integration_test.go
+++ b/integration/integration_test.go
@@ -12,7 +12,7 @@ import (
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/require"
 
-	"code.vereign.com/gaiax/tsa/signer/integration/internal/client"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/integration/internal/client"
 )
 
 var (
diff --git a/internal/clients/vault/client.go b/internal/clients/vault/client.go
index 43b09ff00a196d171d64f267fd911211fbb39639..ce85ea1884acbe9f4106a7f2cc93e6f98deb762d 100644
--- a/internal/clients/vault/client.go
+++ b/internal/clients/vault/client.go
@@ -10,8 +10,8 @@ import (
 
 	vaultpkg "github.com/hashicorp/vault/api"
 
-	"code.vereign.com/gaiax/tsa/golib/errors"
-	"code.vereign.com/gaiax/tsa/signer/internal/service/signer"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/errors"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/service/signer"
 )
 
 const (
diff --git a/internal/clients/vault/client_test.go b/internal/clients/vault/client_test.go
index 6bad834b69415ea3a15e4ef2f46a1da9dd56b65e..59798288019c3045e08fd6e91122c94274bece1a 100644
--- a/internal/clients/vault/client_test.go
+++ b/internal/clients/vault/client_test.go
@@ -8,9 +8,9 @@ import (
 
 	"github.com/stretchr/testify/assert"
 
-	"code.vereign.com/gaiax/tsa/golib/errors"
-	"code.vereign.com/gaiax/tsa/signer/internal/clients/vault"
-	"code.vereign.com/gaiax/tsa/signer/internal/service/signer"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/errors"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/clients/vault"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/service/signer"
 )
 
 func TestClient_Key(t *testing.T) {
diff --git a/internal/decoder/bytes_decoder_test.go b/internal/decoder/bytes_decoder_test.go
index aec17dfc573cc96f84d155005eb2c17486c33709..83a28cc268080947d78173ff7d7c4f22036de542 100644
--- a/internal/decoder/bytes_decoder_test.go
+++ b/internal/decoder/bytes_decoder_test.go
@@ -7,7 +7,7 @@ import (
 
 	"github.com/stretchr/testify/assert"
 
-	"code.vereign.com/gaiax/tsa/signer/internal/decoder"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/decoder"
 )
 
 func TestBytesDecoder_Decode(t *testing.T) {
diff --git a/internal/service/error_response.go b/internal/service/error_response.go
index cbe74c6bb5180af664d93f5d00912f61ce8b85d3..6d013e786c04bc77db35ba2b968fec4fc96a5f37 100644
--- a/internal/service/error_response.go
+++ b/internal/service/error_response.go
@@ -4,7 +4,7 @@ import (
 	goahttp "goa.design/goa/v3/http"
 	goa "goa.design/goa/v3/pkg"
 
-	"code.vereign.com/gaiax/tsa/golib/errors"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/errors"
 )
 
 func NewErrorResponse(err error) goahttp.Statuser {
diff --git a/internal/service/signer/proof.go b/internal/service/signer/proof.go
index 6c7b4f445eb3552899ccfc5686469326a93ba4b4..667088b105e835a5fc4ff805838cdcd4d46d1fd3 100644
--- a/internal/service/signer/proof.go
+++ b/internal/service/signer/proof.go
@@ -10,7 +10,7 @@ import (
 	"github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/jsonwebsignature2020"
 	"github.com/hyperledger/aries-framework-go/pkg/doc/verifiable"
 
-	"code.vereign.com/gaiax/tsa/golib/errors"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/errors"
 )
 
 func (s *Service) addCredentialProof(ctx context.Context, requestedKey *string, vc *verifiable.Credential) (*verifiable.Credential, error) {
diff --git a/internal/service/signer/service.go b/internal/service/signer/service.go
index e15d71c48edb00a8019a8602761e177481283667..3711cb601e630006aecca635481824f7e2ad9fdc 100644
--- a/internal/service/signer/service.go
+++ b/internal/service/signer/service.go
@@ -22,8 +22,8 @@ import (
 	"github.com/square/go-jose/v3"
 	"go.uber.org/zap"
 
-	"code.vereign.com/gaiax/tsa/golib/errors"
-	"code.vereign.com/gaiax/tsa/signer/gen/signer"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/errors"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/signer"
 )
 
 //go:generate counterfeiter . Vault
diff --git a/internal/service/signer/service_test.go b/internal/service/signer/service_test.go
index 6d36bae56127bdfab25bd97a80b8b8a5d191ffa0..8e75e401c0b65fd69cedf2a36a8d95c1f2a0bc59 100644
--- a/internal/service/signer/service_test.go
+++ b/internal/service/signer/service_test.go
@@ -14,11 +14,11 @@ import (
 	"github.com/stretchr/testify/require"
 	"go.uber.org/zap"
 
-	"code.vereign.com/gaiax/tsa/golib/errors"
-	"code.vereign.com/gaiax/tsa/golib/ptr"
-	goasigner "code.vereign.com/gaiax/tsa/signer/gen/signer"
-	"code.vereign.com/gaiax/tsa/signer/internal/service/signer"
-	"code.vereign.com/gaiax/tsa/signer/internal/service/signer/signerfakes"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/errors"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/ptr"
+	goasigner "gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/gen/signer"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/service/signer"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/service/signer/signerfakes"
 )
 
 func TestService_IssuerDID(t *testing.T) {
diff --git a/internal/service/signer/signerfakes/fake_vault.go b/internal/service/signer/signerfakes/fake_vault.go
index fd7bd0ac0646faa7ae8b7433943b57a56d03503c..c82f64e9e893281310b0bde0de5f10da43406981 100644
--- a/internal/service/signer/signerfakes/fake_vault.go
+++ b/internal/service/signer/signerfakes/fake_vault.go
@@ -5,7 +5,7 @@ import (
 	"context"
 	"sync"
 
-	"code.vereign.com/gaiax/tsa/signer/internal/service/signer"
+	"gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/signer/internal/service/signer"
 )
 
 type FakeVault struct {
diff --git a/vendor/code.vereign.com/gaiax/tsa/golib/LICENSE b/vendor/code.vereign.com/gaiax/tsa/golib/LICENSE
deleted file mode 100644
index 8f9447e57d0f67d2744ad21a604d9c7f318f93dd..0000000000000000000000000000000000000000
Binary files a/vendor/code.vereign.com/gaiax/tsa/golib/LICENSE and /dev/null differ
diff --git a/vendor/github.com/hashicorp/errwrap/errwrap.go b/vendor/github.com/hashicorp/errwrap/errwrap.go
index a733bef18c0590ec04a0e0aff46acf6f6610cf76..44e368e569224106c3a812eccc2fe76fb00226af 100644
Binary files a/vendor/github.com/hashicorp/errwrap/errwrap.go and b/vendor/github.com/hashicorp/errwrap/errwrap.go differ
diff --git a/vendor/github.com/hashicorp/go-multierror/.travis.yml b/vendor/github.com/hashicorp/go-multierror/.travis.yml
deleted file mode 100644
index 304a835955898cf85439160814cd37263809c97f..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/hashicorp/go-multierror/.travis.yml and /dev/null differ
diff --git a/vendor/github.com/hashicorp/go-multierror/README.md b/vendor/github.com/hashicorp/go-multierror/README.md
index ead5830f7b7646190b14677e96d8e6a475e4e2af..71dd308ed8117bab855eae370146a729afcc4237 100644
Binary files a/vendor/github.com/hashicorp/go-multierror/README.md and b/vendor/github.com/hashicorp/go-multierror/README.md differ
diff --git a/vendor/github.com/hashicorp/go-multierror/append.go b/vendor/github.com/hashicorp/go-multierror/append.go
index 775b6e753e77bc610c91f94b61e4c4a411d1a6ff..3e2589bfde0c882b491697b60d98ce699c7d1499 100644
Binary files a/vendor/github.com/hashicorp/go-multierror/append.go and b/vendor/github.com/hashicorp/go-multierror/append.go differ
diff --git a/vendor/github.com/hashicorp/go-multierror/group.go b/vendor/github.com/hashicorp/go-multierror/group.go
new file mode 100644
index 0000000000000000000000000000000000000000..9c29efb7f87e911e2787146940ffbf74a447dba9
Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/group.go differ
diff --git a/vendor/github.com/hashicorp/go-multierror/multierror.go b/vendor/github.com/hashicorp/go-multierror/multierror.go
index 89b1422d1d17a7d5940a2dede2844448f70e52d0..f54574326461616e1e344fb46888c858f9ed1af3 100644
Binary files a/vendor/github.com/hashicorp/go-multierror/multierror.go and b/vendor/github.com/hashicorp/go-multierror/multierror.go differ
diff --git a/vendor/github.com/stretchr/testify/assert/assertion_compare.go b/vendor/github.com/stretchr/testify/assert/assertion_compare.go
index 41649d26792461a0e999695e0c91a15d72b5898a..95d8e59da69bf8e207db7af447a2f792db6f5625 100644
Binary files a/vendor/github.com/stretchr/testify/assert/assertion_compare.go and b/vendor/github.com/stretchr/testify/assert/assertion_compare.go differ
diff --git a/vendor/github.com/stretchr/testify/assert/assertion_compare_can_convert.go b/vendor/github.com/stretchr/testify/assert/assertion_compare_can_convert.go
new file mode 100644
index 0000000000000000000000000000000000000000..da867903e2fa8796c0d0b58adaee3465c0b2eb0f
Binary files /dev/null and b/vendor/github.com/stretchr/testify/assert/assertion_compare_can_convert.go differ
diff --git a/vendor/github.com/stretchr/testify/assert/assertion_compare_legacy.go b/vendor/github.com/stretchr/testify/assert/assertion_compare_legacy.go
new file mode 100644
index 0000000000000000000000000000000000000000..1701af2a3c89c238c4e2af7d48af2abac0bf4f87
Binary files /dev/null and b/vendor/github.com/stretchr/testify/assert/assertion_compare_legacy.go differ
diff --git a/vendor/github.com/stretchr/testify/assert/assertion_format.go b/vendor/github.com/stretchr/testify/assert/assertion_format.go
index 4dfd1229a8617f401e11efa0ad461447f31c1b3e..7880b8f9433308d40a2703ab84f9c6e7f906f0d2 100644
Binary files a/vendor/github.com/stretchr/testify/assert/assertion_format.go and b/vendor/github.com/stretchr/testify/assert/assertion_format.go differ
diff --git a/vendor/github.com/stretchr/testify/assert/assertion_forward.go b/vendor/github.com/stretchr/testify/assert/assertion_forward.go
index 25337a6f07e6e05f3f29e5493cc2ba71cc474abb..339515b8bfb9a8f50fede5742574687af8bcb5f3 100644
Binary files a/vendor/github.com/stretchr/testify/assert/assertion_forward.go and b/vendor/github.com/stretchr/testify/assert/assertion_forward.go differ
diff --git a/vendor/github.com/stretchr/testify/assert/assertion_order.go b/vendor/github.com/stretchr/testify/assert/assertion_order.go
index 1c3b47182a726afbfb1890c5119144bad1bcf8c9..75944878358568654acef8e7d73cbe96cd146d05 100644
Binary files a/vendor/github.com/stretchr/testify/assert/assertion_order.go and b/vendor/github.com/stretchr/testify/assert/assertion_order.go differ
diff --git a/vendor/github.com/stretchr/testify/assert/assertions.go b/vendor/github.com/stretchr/testify/assert/assertions.go
index bcac4401f57fb271d4a0909e607d56d51c606e59..fa1245b18973813eb1733379db6480d448873c3d 100644
Binary files a/vendor/github.com/stretchr/testify/assert/assertions.go and b/vendor/github.com/stretchr/testify/assert/assertions.go differ
diff --git a/vendor/github.com/stretchr/testify/require/require.go b/vendor/github.com/stretchr/testify/require/require.go
index 51820df2e6726fe50df902ff53c6a2a08bc344e8..880853f5a2c59901bcb82fb099bb0f1eace5b2fe 100644
Binary files a/vendor/github.com/stretchr/testify/require/require.go and b/vendor/github.com/stretchr/testify/require/require.go differ
diff --git a/vendor/github.com/stretchr/testify/require/require_forward.go b/vendor/github.com/stretchr/testify/require/require_forward.go
index ed54a9d83f35e103201daa02cf50a42a95f36877..960bf6f2cabfe777267733dcd6b321529cac3402 100644
Binary files a/vendor/github.com/stretchr/testify/require/require_forward.go and b/vendor/github.com/stretchr/testify/require/require_forward.go differ
diff --git a/vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/LICENSE b/vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/LICENSE
new file mode 100644
index 0000000000000000000000000000000000000000..a8f4e435352f4103076d3c4a4b44faeb2e961617
Binary files /dev/null and b/vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/LICENSE differ
diff --git a/vendor/code.vereign.com/gaiax/tsa/golib/errors/errors.go b/vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/errors/errors.go
similarity index 100%
rename from vendor/code.vereign.com/gaiax/tsa/golib/errors/errors.go
rename to vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/errors/errors.go
diff --git a/vendor/code.vereign.com/gaiax/tsa/golib/errors/shortid.go b/vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/errors/shortid.go
similarity index 100%
rename from vendor/code.vereign.com/gaiax/tsa/golib/errors/shortid.go
rename to vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/errors/shortid.go
diff --git a/vendor/code.vereign.com/gaiax/tsa/golib/graceful/graceful.go b/vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/graceful/graceful.go
similarity index 94%
rename from vendor/code.vereign.com/gaiax/tsa/golib/graceful/graceful.go
rename to vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/graceful/graceful.go
index 7e7387d98d5546cf30d4b7c51240c9b64f6e5381..75e8402ae34ac60313f784d149e47f144f2587c7 100644
Binary files a/vendor/code.vereign.com/gaiax/tsa/golib/graceful/graceful.go and b/vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/graceful/graceful.go differ
diff --git a/vendor/code.vereign.com/gaiax/tsa/golib/ptr/ptr.go b/vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/ptr/ptr.go
similarity index 100%
rename from vendor/code.vereign.com/gaiax/tsa/golib/ptr/ptr.go
rename to vendor/gitlab.com/gaia-x/data-infrastructure-federation-services/tsa/golib/ptr/ptr.go
diff --git a/vendor/goa.design/goa/v3/dsl/attribute.go b/vendor/goa.design/goa/v3/dsl/attribute.go
index 614da35e126de19baf62dbe61ae08db10d3bfb01..d3d76235d141c235f80111159d1d03922b8929c5 100644
Binary files a/vendor/goa.design/goa/v3/dsl/attribute.go and b/vendor/goa.design/goa/v3/dsl/attribute.go differ
diff --git a/vendor/goa.design/goa/v3/dsl/meta.go b/vendor/goa.design/goa/v3/dsl/meta.go
index 5c84be3114a4e8bf3b9cce48ea035db6a1146985..a7fd6e0aeb09911e6fc20436ce52f5a442d6a82d 100644
Binary files a/vendor/goa.design/goa/v3/dsl/meta.go and b/vendor/goa.design/goa/v3/dsl/meta.go differ
diff --git a/vendor/goa.design/goa/v3/dsl/payload.go b/vendor/goa.design/goa/v3/dsl/payload.go
index 7509be80205a2aea5b46b13380721a52e407cefd..eea7ca3755ed34af8e5de53ab30dec39f4da40be 100644
Binary files a/vendor/goa.design/goa/v3/dsl/payload.go and b/vendor/goa.design/goa/v3/dsl/payload.go differ
diff --git a/vendor/goa.design/goa/v3/dsl/result.go b/vendor/goa.design/goa/v3/dsl/result.go
index 829a33582e2ff819a2585f6a94e79a35abe94b8c..02cc4c9e9c2b8a362b8370f5f256d482d9c03767 100644
Binary files a/vendor/goa.design/goa/v3/dsl/result.go and b/vendor/goa.design/goa/v3/dsl/result.go differ
diff --git a/vendor/goa.design/goa/v3/dsl/result_type.go b/vendor/goa.design/goa/v3/dsl/result_type.go
index fafb1b84db9406177d3ea4efa9cb1a5aca51cfc3..725f19e5b610e3453e42a396b9a14dfd455af490 100644
Binary files a/vendor/goa.design/goa/v3/dsl/result_type.go and b/vendor/goa.design/goa/v3/dsl/result_type.go differ
diff --git a/vendor/goa.design/goa/v3/dsl/user_type.go b/vendor/goa.design/goa/v3/dsl/user_type.go
index 70e5296a644a313e9be55d0bed9793bb3539a4d9..1d85983362f0ea6ed4fb3d343d248ae33e8f2a25 100644
Binary files a/vendor/goa.design/goa/v3/dsl/user_type.go and b/vendor/goa.design/goa/v3/dsl/user_type.go differ
diff --git a/vendor/goa.design/goa/v3/expr/attribute.go b/vendor/goa.design/goa/v3/expr/attribute.go
index 004e41c675169a01fb7be805c338d86e376380c8..75d638f8cd5c2360a4a1744abd95c1adf3743eeb 100644
Binary files a/vendor/goa.design/goa/v3/expr/attribute.go and b/vendor/goa.design/goa/v3/expr/attribute.go differ
diff --git a/vendor/goa.design/goa/v3/expr/dup.go b/vendor/goa.design/goa/v3/expr/dup.go
index 3eeffc1395c62b22a352534a1bbb59883ca8ba71..f14c0e47f3470197d9f586582a87cd1d2f8195b9 100644
Binary files a/vendor/goa.design/goa/v3/expr/dup.go and b/vendor/goa.design/goa/v3/expr/dup.go differ
diff --git a/vendor/goa.design/goa/v3/expr/hasher.go b/vendor/goa.design/goa/v3/expr/hasher.go
index 0bbc28c30a9410dfe8dadc39b8d5a6591abf9965..8376b4ad5a96f11fe38e9bf45293eb790d93b1d1 100644
Binary files a/vendor/goa.design/goa/v3/expr/hasher.go and b/vendor/goa.design/goa/v3/expr/hasher.go differ
diff --git a/vendor/goa.design/goa/v3/expr/helpers.go b/vendor/goa.design/goa/v3/expr/helpers.go
index 7d1aa419cd86a8b2956be82ce8f7ae57dd0f674d..72be56a5cd992c684dc2f11f83ab7ad609c8c255 100644
Binary files a/vendor/goa.design/goa/v3/expr/helpers.go and b/vendor/goa.design/goa/v3/expr/helpers.go differ
diff --git a/vendor/goa.design/goa/v3/expr/http_body_types.go b/vendor/goa.design/goa/v3/expr/http_body_types.go
index 9a624df94bded88fa7536e4d3512309a8d3f3743..8bb52e8e0354255efd3dbcb034e2b2e75b6a10d2 100644
Binary files a/vendor/goa.design/goa/v3/expr/http_body_types.go and b/vendor/goa.design/goa/v3/expr/http_body_types.go differ
diff --git a/vendor/goa.design/goa/v3/expr/mapped_attribute.go b/vendor/goa.design/goa/v3/expr/mapped_attribute.go
index 3146d3e231a80e9dc83b9b5e4bd1d34a39fd5773..a9bcdae235499efe7a0b33d5d67ae4403e52679f 100644
Binary files a/vendor/goa.design/goa/v3/expr/mapped_attribute.go and b/vendor/goa.design/goa/v3/expr/mapped_attribute.go differ
diff --git a/vendor/goa.design/goa/v3/expr/method.go b/vendor/goa.design/goa/v3/expr/method.go
index 4d6a422f624587d9d0332bae8325cf74befa02df..95d57156656cb0169ed403463295888a00fcc622 100644
Binary files a/vendor/goa.design/goa/v3/expr/method.go and b/vendor/goa.design/goa/v3/expr/method.go differ
diff --git a/vendor/goa.design/goa/v3/expr/result_type.go b/vendor/goa.design/goa/v3/expr/result_type.go
index 0a8761d22bd0f878f3d4f2ece36ffdfe37f8c184..ffcd24ac9e531958f4b27adc3dbb0e754d683d99 100644
Binary files a/vendor/goa.design/goa/v3/expr/result_type.go and b/vendor/goa.design/goa/v3/expr/result_type.go differ
diff --git a/vendor/goa.design/goa/v3/expr/testing.go b/vendor/goa.design/goa/v3/expr/testing.go
index 79e537a6da8a6e74e47b16e664b92c7a6b4f49fe..f88c599b1405b1349b0f82d20c82c1aaf167c403 100644
Binary files a/vendor/goa.design/goa/v3/expr/testing.go and b/vendor/goa.design/goa/v3/expr/testing.go differ
diff --git a/vendor/goa.design/goa/v3/http/client.go b/vendor/goa.design/goa/v3/http/client.go
index 1022c0a61cbfa41513b40a58edaa70729fa9b94c..e3f73d1eec8d92a7daf70857b41417fa2752f782 100644
Binary files a/vendor/goa.design/goa/v3/http/client.go and b/vendor/goa.design/goa/v3/http/client.go differ
diff --git a/vendor/goa.design/goa/v3/http/encoding.go b/vendor/goa.design/goa/v3/http/encoding.go
index 778af1cf66e1e69b188649cd468bf8a7f82fabff..fa87dfa0b24b2cc29f174e421e6ba068b69312a2 100644
Binary files a/vendor/goa.design/goa/v3/http/encoding.go and b/vendor/goa.design/goa/v3/http/encoding.go differ
diff --git a/vendor/goa.design/goa/v3/http/mux.go b/vendor/goa.design/goa/v3/http/mux.go
index 6d4e4cfdf2475403c00fbdf96b19a02700216a18..29d06b85f3db0adc6f1faeca90c7fa9ec8764a86 100644
Binary files a/vendor/goa.design/goa/v3/http/mux.go and b/vendor/goa.design/goa/v3/http/mux.go differ
diff --git a/vendor/goa.design/goa/v3/pkg/error.go b/vendor/goa.design/goa/v3/pkg/error.go
index 25ac470d1705eeb8379aabeda1bba616bdd84788..b057f99c304e3a82726316bb1aa012fc354d2d1a 100644
Binary files a/vendor/goa.design/goa/v3/pkg/error.go and b/vendor/goa.design/goa/v3/pkg/error.go differ
diff --git a/vendor/goa.design/goa/v3/pkg/version.go b/vendor/goa.design/goa/v3/pkg/version.go
index 8300800be18045fbefbe38169c5418153bc42c79..0415e9569bc02cdff574fe226d5e43d71fab3e35 100644
Binary files a/vendor/goa.design/goa/v3/pkg/version.go and b/vendor/goa.design/goa/v3/pkg/version.go differ
diff --git a/vendor/golang.org/x/mod/module/module.go b/vendor/golang.org/x/mod/module/module.go
index 355b5a456854ffacbed82fe1e0253bff003f7dd2..c26d1d29ec3d0e1ea663232a15368d5797ede4f3 100644
Binary files a/vendor/golang.org/x/mod/module/module.go and b/vendor/golang.org/x/mod/module/module.go differ
diff --git a/vendor/golang.org/x/net/AUTHORS b/vendor/golang.org/x/net/AUTHORS
deleted file mode 100644
index 15167cd746c560e5b3d3b233a169aa64d3e9101e..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/net/AUTHORS and /dev/null differ
diff --git a/vendor/golang.org/x/net/CONTRIBUTORS b/vendor/golang.org/x/net/CONTRIBUTORS
deleted file mode 100644
index 1c4577e9680611383f46044d17fa343a96997c3c..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/net/CONTRIBUTORS and /dev/null differ
diff --git a/vendor/golang.org/x/net/http2/client_conn_pool.go b/vendor/golang.org/x/net/http2/client_conn_pool.go
index c936843eafa151d3164dcc2481d66a42cface736..780968d6c19b8442a9f0e8fe3370f82b7f5a5f26 100644
Binary files a/vendor/golang.org/x/net/http2/client_conn_pool.go and b/vendor/golang.org/x/net/http2/client_conn_pool.go differ
diff --git a/vendor/golang.org/x/net/http2/frame.go b/vendor/golang.org/x/net/http2/frame.go
index 0178647ee0a3fec74dbff2d4ea141f721c17ceb7..184ac45feb70836ba7289c3a443ed3cc0e1062a0 100644
Binary files a/vendor/golang.org/x/net/http2/frame.go and b/vendor/golang.org/x/net/http2/frame.go differ
diff --git a/vendor/golang.org/x/net/http2/hpack/encode.go b/vendor/golang.org/x/net/http2/hpack/encode.go
index 97f17831fc55b8c944d501320dbc5d2f03016e39..6886dc163cba59157acd727c1b9295493c1e1f33 100644
Binary files a/vendor/golang.org/x/net/http2/hpack/encode.go and b/vendor/golang.org/x/net/http2/hpack/encode.go differ
diff --git a/vendor/golang.org/x/net/http2/hpack/hpack.go b/vendor/golang.org/x/net/http2/hpack/hpack.go
index 85f18a2b0a8616295fdb1e69c9df352bf944e436..ebdfbee964ae38b90ec4a04dc8c200770b9d47e0 100644
Binary files a/vendor/golang.org/x/net/http2/hpack/hpack.go and b/vendor/golang.org/x/net/http2/hpack/hpack.go differ
diff --git a/vendor/golang.org/x/net/http2/http2.go b/vendor/golang.org/x/net/http2/http2.go
index 479ba4b2b11c98a34e961439abe9ae388c5a52f4..6f2df281872ed15106b59e82294428ecdaf4f453 100644
Binary files a/vendor/golang.org/x/net/http2/http2.go and b/vendor/golang.org/x/net/http2/http2.go differ
diff --git a/vendor/golang.org/x/sync/AUTHORS b/vendor/golang.org/x/sync/AUTHORS
deleted file mode 100644
index 15167cd746c560e5b3d3b233a169aa64d3e9101e..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/sync/AUTHORS and /dev/null differ
diff --git a/vendor/golang.org/x/sync/CONTRIBUTORS b/vendor/golang.org/x/sync/CONTRIBUTORS
deleted file mode 100644
index 1c4577e9680611383f46044d17fa343a96997c3c..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/sync/CONTRIBUTORS and /dev/null differ
diff --git a/vendor/golang.org/x/sync/errgroup/errgroup.go b/vendor/golang.org/x/sync/errgroup/errgroup.go
index 9857fe53d3c91c527ee9b363df2c6d3ed8c52576..4c0850a45aa1444fdbe87df5484b8a01c0bc3c54 100644
Binary files a/vendor/golang.org/x/sync/errgroup/errgroup.go and b/vendor/golang.org/x/sync/errgroup/errgroup.go differ
diff --git a/vendor/golang.org/x/sys/AUTHORS b/vendor/golang.org/x/sys/AUTHORS
deleted file mode 100644
index 15167cd746c560e5b3d3b233a169aa64d3e9101e..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/sys/AUTHORS and /dev/null differ
diff --git a/vendor/golang.org/x/sys/CONTRIBUTORS b/vendor/golang.org/x/sys/CONTRIBUTORS
deleted file mode 100644
index 1c4577e9680611383f46044d17fa343a96997c3c..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/sys/CONTRIBUTORS and /dev/null differ
diff --git a/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c
index e363c7d1319782c7ea58c87367a4f99528ff4c32..a4605e6d12e897f8a22e1044c0a903cfcdf5c3de 100644
Binary files a/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c and b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c differ
diff --git a/vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go b/vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go
new file mode 100644
index 0000000000000000000000000000000000000000..dd10eb79feefa88588aa818a1b2e7b777c4c4dc9
Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go differ
diff --git a/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s b/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s
new file mode 100644
index 0000000000000000000000000000000000000000..d560019ea29e1e8c47c7aa01da02688bca0d2534
Binary files /dev/null and b/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s differ
diff --git a/vendor/golang.org/x/sys/unix/asm_linux_loong64.s b/vendor/golang.org/x/sys/unix/asm_linux_loong64.s
index 6abd48eef0df15081800bd3be2d5fa674b9dbaa9..565357288a81c1bc8d28c8d970af25160e2e399f 100644
Binary files a/vendor/golang.org/x/sys/unix/asm_linux_loong64.s and b/vendor/golang.org/x/sys/unix/asm_linux_loong64.s differ
diff --git a/vendor/golang.org/x/sys/unix/errors_freebsd_386.go b/vendor/golang.org/x/sys/unix/errors_freebsd_386.go
deleted file mode 100644
index 761db66efece2fcc791b5e39a4172a0c51a652bf..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/sys/unix/errors_freebsd_386.go and /dev/null differ
diff --git a/vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go
deleted file mode 100644
index 070f44b651048ab08531581c1abeaa0f79b965ba..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go and /dev/null differ
diff --git a/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go b/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go
deleted file mode 100644
index 856dca32543861dbb1200eabaa4530aa0fc05798..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go and /dev/null differ
diff --git a/vendor/golang.org/x/sys/unix/errors_freebsd_arm64.go b/vendor/golang.org/x/sys/unix/errors_freebsd_arm64.go
deleted file mode 100644
index 946dcf3fc7ecab145f43f366836a1f037013552b..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/sys/unix/errors_freebsd_arm64.go and /dev/null differ
diff --git a/vendor/golang.org/x/sys/unix/mkall.sh b/vendor/golang.org/x/sys/unix/mkall.sh
index ee73623489b07f54e90c2f5622f89d0c97448a49..dcef4de6f18634ea2ae06ccea042db2655913fd5 100644
Binary files a/vendor/golang.org/x/sys/unix/mkall.sh and b/vendor/golang.org/x/sys/unix/mkall.sh differ
diff --git a/vendor/golang.org/x/sys/unix/mkerrors.sh b/vendor/golang.org/x/sys/unix/mkerrors.sh
index d888fb770364d86e83eafa81510ee2f185aa161c..2ab44aa659175b206e5500398a104ffe91fff4bc 100644
Binary files a/vendor/golang.org/x/sys/unix/mkerrors.sh and b/vendor/golang.org/x/sys/unix/mkerrors.sh differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_aix.go b/vendor/golang.org/x/sys/unix/syscall_aix.go
index ad22c33db3db302da5d805efbe2e125d0f5a2736..2db1b51e99f04098055f018b1ead48b497cef57e 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_aix.go and b/vendor/golang.org/x/sys/unix/syscall_aix.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_bsd.go b/vendor/golang.org/x/sys/unix/syscall_bsd.go
index 9c87c5f07f8c885378ca306cc7bf28c9ea923964..eda42671f195432fc99bd91b5cc200fc621d4c65 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_bsd.go and b/vendor/golang.org/x/sys/unix/syscall_bsd.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_darwin.go b/vendor/golang.org/x/sys/unix/syscall_darwin.go
index e5448cc93caa540b4cf603d4e85d6f7f8923e8d2..4f87f16ea7cfbe3c8127ac14016bb3216cd4baed 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_darwin.go and b/vendor/golang.org/x/sys/unix/syscall_darwin.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd.go b/vendor/golang.org/x/sys/unix/syscall_freebsd.go
index 6f6c510f4130d046dd6da063e581168ea4bd8ae6..de7c23e0648ada4c712c3a791e66be90196ada7b 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_freebsd.go and b/vendor/golang.org/x/sys/unix/syscall_freebsd.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go
index 342fc32b1686a2d8d6cfe7e8958735e7c6aae30c..c3c4c698e0720914e30fed628cec8ea39434a6ac 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go and b/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go
index a32d5aa4aed44564ea32ac4395b7b4c750d7ca10..82be61a2f98b15362e96bdebf214509c3a751452 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go and b/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go
index 1e36d39abe0189642fa4aeb8824ed20528aff15b..cd58f1026c057c84f093e8fa1d65d5704c4089e6 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go and b/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go
index a09a1537bd6f3d9e0a3fa6211073866905f70762..d6f538f9e007703e8b871e17191727bd4125bbfa 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go and b/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go
new file mode 100644
index 0000000000000000000000000000000000000000..8ea6e96100aceb87036f561d9e278250ef9d657c
Binary files /dev/null and b/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_illumos.go b/vendor/golang.org/x/sys/unix/syscall_illumos.go
index 8d5f294c425047719923573422cc5e4f6c383b98..e48244a9c9a54f711013f39837190956cfa9b435 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_illumos.go and b/vendor/golang.org/x/sys/unix/syscall_illumos.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_linux.go b/vendor/golang.org/x/sys/unix/syscall_linux.go
index c8d2032125179991b3988cb961514d0af7cd4dc4..ecb0f27fb805e5ce517f5006ae4171aae56950a5 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_linux.go and b/vendor/golang.org/x/sys/unix/syscall_linux.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go b/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go
index 28ba7b8cb7188c597122bdfba72f2d2a6844dab6..0b69c3eff9665c8ee55fb2a9025549956227c839 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go and b/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go b/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go
index 8ff7adba03927bc7f03b4351ae5b9cd0f975c5d9..925a748a39bd8cfb0b04bff4c477dbb2884e3d90 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go and b/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go b/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go
index 30f285343ee44f5577641d6bad1b1e3ec8719338..1378489f8d7ffd1fa6d6c42e2f0f7918b5431090 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go and b/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_solaris.go b/vendor/golang.org/x/sys/unix/syscall_solaris.go
index 5c2003cec654d2df3dd383506d34b3a76188bb1e..b5ec457cdccb67c37be641f19379efb966a8ef46 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_solaris.go and b/vendor/golang.org/x/sys/unix/syscall_solaris.go differ
diff --git a/vendor/golang.org/x/sys/unix/syscall_unix.go b/vendor/golang.org/x/sys/unix/syscall_unix.go
index 70508afc1d1c754f79e7e60ce7a5d265cd7cffc4..1ff5060b512324567a22c253f6a20f0b49d69472 100644
Binary files a/vendor/golang.org/x/sys/unix/syscall_unix.go and b/vendor/golang.org/x/sys/unix/syscall_unix.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go b/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go
index 440900112cd42098c79710f8a691ffb20e35e3f1..f8c2c5138748ba918652ba2f6f0b2daba13a94d3 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go and b/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go
index 64520d31226b94632d384575d93f8ed4e05ad4bd..96310c3be1b0a43bcb6b62250b8aeef78a1c28ef 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go and b/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go b/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go
index 99e9a0e06e95f785edf015ae06ebea1d5e313a4c..777b69defa04d021432716cfa04a88db95fc6fc3 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go and b/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go b/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go
index 4c837711493ff1bc346f749e9ea163a860abb16e..c557ac2db317ab67195166d5283b2b8d125a4974 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go and b/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go b/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go
new file mode 100644
index 0000000000000000000000000000000000000000..341b4d96265b16413f9966fe25c7c2238d3013d6
Binary files /dev/null and b/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux.go b/vendor/golang.org/x/sys/unix/zerrors_linux.go
index c0a43f8ba6fcd3e7dbba81154d53c33a54a600ca..785d693eb32856f12d223724f9fb00586248104f 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux.go and b/vendor/golang.org/x/sys/unix/zerrors_linux.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_386.go b/vendor/golang.org/x/sys/unix/zerrors_linux_386.go
index 1b305fab1b8391bbfc232612edde0a08832146b1..274e2dabdfed7410974b7bef1895b2c62bfc5bf1 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_386.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_386.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
index 6bcdef5dd6bc0f68c9422cf25fb9140beac3d385..95b6eeedfece1ee7b5a4fbff3e7a2ee545e47292 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go b/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
index e65df0f8d193764174ebf82330732f917379e09c..918cd130ec8b3d5b104962cece13cfe7d8bd0c4b 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
index c7021115aa986632d69f63b4721d55f8666a7b04..3907dc5a90e5cff06ca9270c1657b4c50d332cf7 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go
index 0d83a1cd45dbc423908562a99ae35972a4dbb8d3..03d5c105a3850c513cf9884c8c1532ff0d4d54dd 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
index 7f44a495b7e699f7631cea5aadf8cd5b2fc531fd..bd794e0108ebc61a6bf64d8dbb875f5504dace00 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
index 2f92b4e48ed7aacfd99d5761a665e02ef53e6835..6c741b054765ea8eaf366a6960da54b5d078a6a6 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
index f5367a966b30b97dc534dad16f012767ce227142..807b8cd2a8d3ea48bcf690757e19c6766007c0c2 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
index 2e22337d7cff8924127710b08a3e81aab7f0aa78..a39e4f5c206de1ca2fac2b88a24fbbd5a63b5136 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go
index 858c4f30f5b516508db287bc368e9029afdd04e8..c0fcda86b4cecf1c5198dd0ef7de1b1c16a3a66e 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
index af2a7ba6e61524efa950a0defd44f54929b15a8e..f3b72407aa66aeeccbc3ed3722dd46b34057e680 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
index eaa2eb8e2469bcd4ed6317be16ba9f3ed3f3250e..72f2a45d5038442eab471d0d03c8ea8479535f83 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
index faaa9f06378bd084d02daf917eba13f0faa1fdf7..45b214b4d3a8d115e4ee81b3a0a57057bc71e668 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go b/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
index 0d161f0b75fe17bd5c9957aa388f317e326241f7..1897f207bb389468d2d4d926ea5fe7b029767b95 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go differ
diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
index 4fd497a3e39a91dd97446c2b3c46a6a199475ce3..1fb7a3953a9ef7b0a40dbfbb64fc9a50eccd7635 100644
Binary files a/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go and b/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go
index e9d9997eeda96355b4bc499cf01a08591fabb85d..039c4aa06c2ccd1090e2d48fa14a1243a374e98d 100644
Binary files a/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go and b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go
index edd373b1a562ecb409511eff8306c0c98ff83859..0535d3cfdf2bd0033c14c0cc4323fbe568eeb697 100644
Binary files a/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go and b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go
index 82e9764b25710e15b0a76249526f891b4c0269aa..1018b522170410170ee61050236f568ad6843cab 100644
Binary files a/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go and b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go
index a6479acd1fc848b6aa91877614c49234314b6ae2..3802f4b379a5d6566d89e4fcc59cc9b16ddb1da0 100644
Binary files a/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go and b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go
new file mode 100644
index 0000000000000000000000000000000000000000..8a2db7da9f3eb5a15cc42673555e1d225ad5a251
Binary files /dev/null and b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go b/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go
index 8cdfbe71e6816b23017ccf9e182df54eac90bc4c..523f2ba03e4c37f8de4cedb718c81c870e8cfa47 100644
Binary files a/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go and b/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go b/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go
index a1a9bcbbdf614cfbaa210a4ceeb5500785a842b3..1239cc2de9c7b79c7f957b3997130a7490f2a838 100644
Binary files a/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go and b/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
index d12f4fbfea5f08bd19ceafcc46e773913c1005b7..fdf53f8daf3b54a7b139eccb207caeb4670e1cdd 100644
Binary files a/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go and b/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go
index 59d5dfc2092223dae026178367b50faaa6c23482..4e0d96107b9ebf9f2290a8d533a33d3a3b4cb99a 100644
Binary files a/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go and b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go
index 342d471d2eb1ab844309af2e231533d8a9961898..01636b838d30ffb92ab0f8703372ac0324ab3590 100644
Binary files a/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go and b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go
index e2e3d72c5b04f3a4d27d3289b98ee00ec1a0bd6d..ad99bc106a86fe9f81a6f3370c197b42d605a558 100644
Binary files a/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go and b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go
index 61ad5ca3c19b606c4aab7f893939e95c9306e84b..89dcc42747657cb1d98a7f92f2933a5de7404623 100644
Binary files a/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go and b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go
new file mode 100644
index 0000000000000000000000000000000000000000..ee37aaa0c906a9aa4ce2639ef660682986717c2a
Binary files /dev/null and b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go
index e443f9a322c86400757477130148daa791a2cc85..44a764c9917c1184f4baf2dee9cc1fbbf9f0c7f9 100644
Binary files a/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go and b/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go differ
diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go
index c3a5af8623b8bfd1572d52503093cf5c33797617..3a9c96b28820039df61a8cb7438b519bff2d8258 100644
Binary files a/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go and b/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go
index 885842c0eb402751bd9eff281ca71516471aa527..e2a64f0991a00124f18fce599ca837fd28b9c588 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go and b/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go b/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go
index b23c02337db3d619930afe899c28e2df7855d697..34aa775219f04f9c014ca6fab2bf12ea880b401b 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go and b/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go b/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go
index 4eec078e52490863cf2ce9f794afffcd71a453e6..dea0c9a607d83ba6357e5685e34b44dee09be5c8 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go and b/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go
index 7622904a532f45f8ef0eb7d37c4dcad01fee1310..da0ea0d608a89431a8b6823419507a32248a74bf 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go and b/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go b/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go
index 19223ce8ecf906522e85e2c5f466f6d041897436..da8f7404509c06a159a34c46539159df0db3a526 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go and b/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go b/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go
index 8e3e33f6790587e60208a6cf5f804f8005820320..d69988e5e58e978ed3464eda9f6759e362a16690 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go and b/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go b/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go
new file mode 100644
index 0000000000000000000000000000000000000000..d6fd9e88382e5e035e486914f6f24597e758527a
Binary files /dev/null and b/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux.go b/vendor/golang.org/x/sys/unix/ztypes_linux.go
index 9962d26bb30c9e36d9577459636dd5e4ac4ade74..f6de1eedbdf60549d65d5030939686697cbae28d 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux.go and b/vendor/golang.org/x/sys/unix/ztypes_linux.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_386.go b/vendor/golang.org/x/sys/unix/ztypes_linux_386.go
index 4948362f2c2242c58605cfc8436844c69d43df78..7551af4831817e4da15251ad40704972fa4cb75e 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_386.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_386.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go
index f64345e0e2f3a4a1f910402a6fb5d4a215ccf630..3e738ac0bbf523542c0b627106cddbe7f473f8bb 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go b/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
index 72469c79e7500ff2ec493860f1e81351e4b64d78..6183eef4a40b251e33cb9b6cd6bd8da5d5561120 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go b/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go
index 68f072283a07bb6ac32fb454a39c682a7612ca52..968cecb17e885ac8599924ee2b64c733e4bec8b4 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go b/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go
index 090ae46c6757ede1c8ef196c1f22aa1246257f68..8fe4c522a9cc4fe855017d491497366da5bf4050 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go b/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go
index 03604cca135a55054ecbc65cf68ddd56d1413c16..11426a3010b59bde3f3d3b730780beb1238c8fd5 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go b/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go
index fe57a7b26539d604bad3e154cf7717c03925ec63..ad1c3b3de59789aecebf4f8d59ec99d51bc64d59 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go b/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
index 3f0db4da81e7a8588761227b10b3fd34e8c41d19..15fd84e4dd06cfd1a4e6d67882bec12b36606219 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go b/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go
index 70ecd3b239f871eec15543da700ce6f761502b49..49c49825ab32cbf6ea9e017730dfb965bb563e4f 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go b/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go
index 4e700120db906c846fed42be1d08618669456b71..cd36d0da26a87cbb0c60df94c7e00607b78eea53 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go b/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
index 34a57c69928d520dadc7f4f53cca2c887aa58294..8c6fce039501447994d1522ed52a3c48cc6bb784 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go b/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go
index 6b84a47296f6713e76b7155e1937df811fb6f861..20910f2ad78c663be344e8127aba7571ca9e8799 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go b/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go
index c4a305fe2e7d606d33c8f2fc6b8d92fcc8e3fe2d..71b7b3331db7e82d4fa155932af886056a94c219 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go b/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go
index a1f1e4c9e18bc5191135de1893c6c6ff7f7fe2e0..71184cc2cda8ca8427304753c05063b3995abf91 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go b/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go
index df95ebf3a1b6ac996fd794a2e8972b8d75f798c4..06156285d9e7ee2409eae8121e9a5e3660f5a91b 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go and b/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go differ
diff --git a/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go
index ad4aad27968699379e0961876f91342d35d2b1d8..c1a9b83ad5e06b3f088f3a8b34704985d16ef45d 100644
Binary files a/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go and b/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go differ
diff --git a/vendor/golang.org/x/sys/windows/syscall_windows.go b/vendor/golang.org/x/sys/windows/syscall_windows.go
index 636e5de60e32f483da0ec6edb7a2dd82fb64d47c..e27913817a71c9c81cab7c7ea4f73fd101cb725f 100644
Binary files a/vendor/golang.org/x/sys/windows/syscall_windows.go and b/vendor/golang.org/x/sys/windows/syscall_windows.go differ
diff --git a/vendor/golang.org/x/sys/windows/types_windows.go b/vendor/golang.org/x/sys/windows/types_windows.go
index e19471c6a852fa58e91d9d288ce8231f4b83a065..f9eaca528ed7d6c48f759e4c869fcb06879167b0 100644
Binary files a/vendor/golang.org/x/sys/windows/types_windows.go and b/vendor/golang.org/x/sys/windows/types_windows.go differ
diff --git a/vendor/golang.org/x/sys/windows/zsyscall_windows.go b/vendor/golang.org/x/sys/windows/zsyscall_windows.go
index 68f52c1e61e9e7aaaae7324c94d83e972b888768..52d4742cb9407012b6247258bb8292437798b99f 100644
Binary files a/vendor/golang.org/x/sys/windows/zsyscall_windows.go and b/vendor/golang.org/x/sys/windows/zsyscall_windows.go differ
diff --git a/vendor/golang.org/x/text/cases/cases.go b/vendor/golang.org/x/text/cases/cases.go
new file mode 100644
index 0000000000000000000000000000000000000000..752cdf03167329ce9b6d1374022d185c96cd0b8f
Binary files /dev/null and b/vendor/golang.org/x/text/cases/cases.go differ
diff --git a/vendor/golang.org/x/text/cases/context.go b/vendor/golang.org/x/text/cases/context.go
new file mode 100644
index 0000000000000000000000000000000000000000..e9aa9e1936fa2c7adbfb498afca839f855100b41
Binary files /dev/null and b/vendor/golang.org/x/text/cases/context.go differ
diff --git a/vendor/golang.org/x/text/cases/fold.go b/vendor/golang.org/x/text/cases/fold.go
new file mode 100644
index 0000000000000000000000000000000000000000..85cc434fac0f67c6517fdec8cc4d521faf4c1776
Binary files /dev/null and b/vendor/golang.org/x/text/cases/fold.go differ
diff --git a/vendor/golang.org/x/text/cases/icu.go b/vendor/golang.org/x/text/cases/icu.go
new file mode 100644
index 0000000000000000000000000000000000000000..2dc84b39efad2d2a8555a1fdf23df2e9aa07bf61
Binary files /dev/null and b/vendor/golang.org/x/text/cases/icu.go differ
diff --git a/vendor/golang.org/x/text/cases/info.go b/vendor/golang.org/x/text/cases/info.go
new file mode 100644
index 0000000000000000000000000000000000000000..87a7c3e9557823a58afa4b0bc507f9e33846bf06
Binary files /dev/null and b/vendor/golang.org/x/text/cases/info.go differ
diff --git a/vendor/golang.org/x/text/cases/map.go b/vendor/golang.org/x/text/cases/map.go
new file mode 100644
index 0000000000000000000000000000000000000000..0f7c6a14bb73c5a7a70230281b079cb26e45ef0e
Binary files /dev/null and b/vendor/golang.org/x/text/cases/map.go differ
diff --git a/vendor/golang.org/x/text/cases/tables10.0.0.go b/vendor/golang.org/x/text/cases/tables10.0.0.go
new file mode 100644
index 0000000000000000000000000000000000000000..ca9923105e3db63549d403a9a8483cbb1352a599
Binary files /dev/null and b/vendor/golang.org/x/text/cases/tables10.0.0.go differ
diff --git a/vendor/golang.org/x/text/cases/tables11.0.0.go b/vendor/golang.org/x/text/cases/tables11.0.0.go
new file mode 100644
index 0000000000000000000000000000000000000000..b1106b41713e6ac047363db7ef41340781244c3a
Binary files /dev/null and b/vendor/golang.org/x/text/cases/tables11.0.0.go differ
diff --git a/vendor/golang.org/x/text/cases/tables12.0.0.go b/vendor/golang.org/x/text/cases/tables12.0.0.go
new file mode 100644
index 0000000000000000000000000000000000000000..ae7dc2407228150426b5e4c2e12cde8033fec365
Binary files /dev/null and b/vendor/golang.org/x/text/cases/tables12.0.0.go differ
diff --git a/vendor/golang.org/x/text/cases/tables13.0.0.go b/vendor/golang.org/x/text/cases/tables13.0.0.go
new file mode 100644
index 0000000000000000000000000000000000000000..cd874775b397510011f0de74a919590ca1775701
Binary files /dev/null and b/vendor/golang.org/x/text/cases/tables13.0.0.go differ
diff --git a/vendor/golang.org/x/text/cases/tables9.0.0.go b/vendor/golang.org/x/text/cases/tables9.0.0.go
new file mode 100644
index 0000000000000000000000000000000000000000..636d5d14dfe12ebca3170c3f7f93d485ec8b1187
Binary files /dev/null and b/vendor/golang.org/x/text/cases/tables9.0.0.go differ
diff --git a/vendor/golang.org/x/text/cases/trieval.go b/vendor/golang.org/x/text/cases/trieval.go
new file mode 100644
index 0000000000000000000000000000000000000000..99e0396288153926046cf9737c2139755581e67a
Binary files /dev/null and b/vendor/golang.org/x/text/cases/trieval.go differ
diff --git a/vendor/golang.org/x/text/internal/internal.go b/vendor/golang.org/x/text/internal/internal.go
new file mode 100644
index 0000000000000000000000000000000000000000..3cddbbdda8cabd338c0da8ff2602c7bff9e7b34b
Binary files /dev/null and b/vendor/golang.org/x/text/internal/internal.go differ
diff --git a/vendor/golang.org/x/text/internal/language/common.go b/vendor/golang.org/x/text/internal/language/common.go
new file mode 100644
index 0000000000000000000000000000000000000000..cdfdb7497185e489d2edc03526a0bd3e450144ed
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/common.go differ
diff --git a/vendor/golang.org/x/text/internal/language/compact.go b/vendor/golang.org/x/text/internal/language/compact.go
new file mode 100644
index 0000000000000000000000000000000000000000..46a0015074f2469b917d4983cf73bebacbedf131
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/compact.go differ
diff --git a/vendor/golang.org/x/text/internal/language/compact/compact.go b/vendor/golang.org/x/text/internal/language/compact/compact.go
new file mode 100644
index 0000000000000000000000000000000000000000..1b36935ef7be1945b8e75f5c74c95f88c7462b5d
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/compact/compact.go differ
diff --git a/vendor/golang.org/x/text/internal/language/compact/language.go b/vendor/golang.org/x/text/internal/language/compact/language.go
new file mode 100644
index 0000000000000000000000000000000000000000..83816a72a8a0653a886857659aaf2dbcab5f1aa9
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/compact/language.go differ
diff --git a/vendor/golang.org/x/text/internal/language/compact/parents.go b/vendor/golang.org/x/text/internal/language/compact/parents.go
new file mode 100644
index 0000000000000000000000000000000000000000..8d810723c75b476ea8f953fba4560c512a866fce
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/compact/parents.go differ
diff --git a/vendor/golang.org/x/text/internal/language/compact/tables.go b/vendor/golang.org/x/text/internal/language/compact/tables.go
new file mode 100644
index 0000000000000000000000000000000000000000..fe7ad9ea7c843a4ec21cb9b68f095f76eb3290d1
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/compact/tables.go differ
diff --git a/vendor/golang.org/x/text/internal/language/compact/tags.go b/vendor/golang.org/x/text/internal/language/compact/tags.go
new file mode 100644
index 0000000000000000000000000000000000000000..ca135d295aef839ca685f2bbe77db80631e78163
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/compact/tags.go differ
diff --git a/vendor/golang.org/x/text/internal/language/compose.go b/vendor/golang.org/x/text/internal/language/compose.go
new file mode 100644
index 0000000000000000000000000000000000000000..4ae78e0fa5fa984eb4141efec035c1b5ce264213
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/compose.go differ
diff --git a/vendor/golang.org/x/text/internal/language/coverage.go b/vendor/golang.org/x/text/internal/language/coverage.go
new file mode 100644
index 0000000000000000000000000000000000000000..9b20b88feb876da5f431824cf64ea05b4432d947
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/coverage.go differ
diff --git a/vendor/golang.org/x/text/internal/language/language.go b/vendor/golang.org/x/text/internal/language/language.go
new file mode 100644
index 0000000000000000000000000000000000000000..6105bc7fadc11148c74d33ed45d978b659dc69ac
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/language.go differ
diff --git a/vendor/golang.org/x/text/internal/language/lookup.go b/vendor/golang.org/x/text/internal/language/lookup.go
new file mode 100644
index 0000000000000000000000000000000000000000..6294b81524cdbd265a275cbbfde86c48ea96a840
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/lookup.go differ
diff --git a/vendor/golang.org/x/text/internal/language/match.go b/vendor/golang.org/x/text/internal/language/match.go
new file mode 100644
index 0000000000000000000000000000000000000000..75a2dbca76434aa39d322b6049afa867440c003d
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/match.go differ
diff --git a/vendor/golang.org/x/text/internal/language/parse.go b/vendor/golang.org/x/text/internal/language/parse.go
new file mode 100644
index 0000000000000000000000000000000000000000..47ee0fed174f22d8e07542716ea146c12d894092
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/parse.go differ
diff --git a/vendor/golang.org/x/text/internal/language/tables.go b/vendor/golang.org/x/text/internal/language/tables.go
new file mode 100644
index 0000000000000000000000000000000000000000..a19480c5ba6a40313139448de0cf711fc7c42d13
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/tables.go differ
diff --git a/vendor/golang.org/x/text/internal/language/tags.go b/vendor/golang.org/x/text/internal/language/tags.go
new file mode 100644
index 0000000000000000000000000000000000000000..e7afd3188e6abe6e1c2ac93e07411d97df47c0a7
Binary files /dev/null and b/vendor/golang.org/x/text/internal/language/tags.go differ
diff --git a/vendor/golang.org/x/text/internal/match.go b/vendor/golang.org/x/text/internal/match.go
new file mode 100644
index 0000000000000000000000000000000000000000..1cc004a6d5f2ec26ffd87ed581008fbd14223cf2
Binary files /dev/null and b/vendor/golang.org/x/text/internal/match.go differ
diff --git a/vendor/golang.org/x/text/internal/tag/tag.go b/vendor/golang.org/x/text/internal/tag/tag.go
new file mode 100644
index 0000000000000000000000000000000000000000..b5d348891d8c1544e434824196ef28a1143287c6
Binary files /dev/null and b/vendor/golang.org/x/text/internal/tag/tag.go differ
diff --git a/vendor/golang.org/x/text/language/coverage.go b/vendor/golang.org/x/text/language/coverage.go
new file mode 100644
index 0000000000000000000000000000000000000000..a24fd1a4d699d102506d638723fd80aa9aada32c
Binary files /dev/null and b/vendor/golang.org/x/text/language/coverage.go differ
diff --git a/vendor/golang.org/x/text/language/doc.go b/vendor/golang.org/x/text/language/doc.go
new file mode 100644
index 0000000000000000000000000000000000000000..8afecd50e12e35e993cf573eaaf0f46db2cacc1f
Binary files /dev/null and b/vendor/golang.org/x/text/language/doc.go differ
diff --git a/vendor/golang.org/x/text/language/go1_1.go b/vendor/golang.org/x/text/language/go1_1.go
new file mode 100644
index 0000000000000000000000000000000000000000..c7435583b5f2d92788b5629172193da25f6ec6c3
Binary files /dev/null and b/vendor/golang.org/x/text/language/go1_1.go differ
diff --git a/vendor/golang.org/x/text/language/go1_2.go b/vendor/golang.org/x/text/language/go1_2.go
new file mode 100644
index 0000000000000000000000000000000000000000..77aaaa299eb11214ec8cc44c2a6fd28508f7eff2
Binary files /dev/null and b/vendor/golang.org/x/text/language/go1_2.go differ
diff --git a/vendor/golang.org/x/text/language/language.go b/vendor/golang.org/x/text/language/language.go
new file mode 100644
index 0000000000000000000000000000000000000000..289b3a36d524b618b37e68fcef30ff0a750aefd6
Binary files /dev/null and b/vendor/golang.org/x/text/language/language.go differ
diff --git a/vendor/golang.org/x/text/language/match.go b/vendor/golang.org/x/text/language/match.go
new file mode 100644
index 0000000000000000000000000000000000000000..f734921349ca6b45a2a8274160d70e66fa145b56
Binary files /dev/null and b/vendor/golang.org/x/text/language/match.go differ
diff --git a/vendor/golang.org/x/text/language/parse.go b/vendor/golang.org/x/text/language/parse.go
new file mode 100644
index 0000000000000000000000000000000000000000..59b04100806a9186164d246b5f61f1f9d2f3bba7
Binary files /dev/null and b/vendor/golang.org/x/text/language/parse.go differ
diff --git a/vendor/golang.org/x/text/language/tables.go b/vendor/golang.org/x/text/language/tables.go
new file mode 100644
index 0000000000000000000000000000000000000000..96b57f610adffcb88329695c09bd1a10e75e69c9
Binary files /dev/null and b/vendor/golang.org/x/text/language/tables.go differ
diff --git a/vendor/golang.org/x/text/language/tags.go b/vendor/golang.org/x/text/language/tags.go
new file mode 100644
index 0000000000000000000000000000000000000000..42ea7926660588bcf49928720e58c6913271a321
Binary files /dev/null and b/vendor/golang.org/x/text/language/tags.go differ
diff --git a/vendor/golang.org/x/tools/AUTHORS b/vendor/golang.org/x/tools/AUTHORS
deleted file mode 100644
index 15167cd746c560e5b3d3b233a169aa64d3e9101e..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/tools/AUTHORS and /dev/null differ
diff --git a/vendor/golang.org/x/tools/CONTRIBUTORS b/vendor/golang.org/x/tools/CONTRIBUTORS
deleted file mode 100644
index 1c4577e9680611383f46044d17fa343a96997c3c..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/tools/CONTRIBUTORS and /dev/null differ
diff --git a/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go b/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go
index a5c6d6d4fa06cbc49cb7be1aea89cea6d5f821cb..9fa5aa192c297bb702169d3977da696436d33902 100644
Binary files a/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go and b/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go differ
diff --git a/vendor/golang.org/x/tools/go/ast/astutil/imports.go b/vendor/golang.org/x/tools/go/ast/astutil/imports.go
index 2087ceec9cfd6c0e2a9b2d8b8ca669d9a9d54635..18d1adb05ddc981c0613bac1f20f5cd68255ba8a 100644
Binary files a/vendor/golang.org/x/tools/go/ast/astutil/imports.go and b/vendor/golang.org/x/tools/go/ast/astutil/imports.go differ
diff --git a/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go b/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go
index 6d9ca23e2b02c4fd99e0136df1c998d4597e7eaa..f430b21b9b9aec2763a8b0555a6cc89bd005ddcd 100644
Binary files a/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go and b/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go differ
diff --git a/vendor/golang.org/x/tools/go/gcexportdata/gcexportdata.go b/vendor/golang.org/x/tools/go/gcexportdata/gcexportdata.go
index cec819d641060ed74a32cfd115b591675004606a..2ed25a750248ee32104e225c7423d03384671a20 100644
Binary files a/vendor/golang.org/x/tools/go/gcexportdata/gcexportdata.go and b/vendor/golang.org/x/tools/go/gcexportdata/gcexportdata.go differ
diff --git a/vendor/golang.org/x/tools/go/gcexportdata/importer.go b/vendor/golang.org/x/tools/go/gcexportdata/importer.go
index efe221e7e1423e370d968eb512be02bb7ea6601e..37a7247e26867306df8cb607c0643e0975e8ed7a 100644
Binary files a/vendor/golang.org/x/tools/go/gcexportdata/importer.go and b/vendor/golang.org/x/tools/go/gcexportdata/importer.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/gcimporter/bexport.go b/vendor/golang.org/x/tools/go/internal/gcimporter/bexport.go
index 0a3cdb9a3b81c8aa88f7b3addfd030a5734a3f61..196cb3f9b41a31b185e6e2f1b9274bb7437ea298 100644
Binary files a/vendor/golang.org/x/tools/go/internal/gcimporter/bexport.go and b/vendor/golang.org/x/tools/go/internal/gcimporter/bexport.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/gcimporter/gcimporter.go b/vendor/golang.org/x/tools/go/internal/gcimporter/gcimporter.go
index 3ab66830d747c984a8ca0face61812d4be3b7837..e96c39600d16b0a0ff326a06de25445ad615a5f9 100644
Binary files a/vendor/golang.org/x/tools/go/internal/gcimporter/gcimporter.go and b/vendor/golang.org/x/tools/go/internal/gcimporter/gcimporter.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/gcimporter/iexport.go b/vendor/golang.org/x/tools/go/internal/gcimporter/iexport.go
index 209553409cb5f4e31a730a6b8b0b17a0679d3bb0..9a4ff329e1280909d857016874145f10e72b731a 100644
Binary files a/vendor/golang.org/x/tools/go/internal/gcimporter/iexport.go and b/vendor/golang.org/x/tools/go/internal/gcimporter/iexport.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/gcimporter/iimport.go b/vendor/golang.org/x/tools/go/internal/gcimporter/iimport.go
index 84cfb807d739e48d79b88d6937253dbf5b786743..4caa0f55d9de2a1a5db63eb0abe3b5785fd6c376 100644
Binary files a/vendor/golang.org/x/tools/go/internal/gcimporter/iimport.go and b/vendor/golang.org/x/tools/go/internal/gcimporter/iimport.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/gcimporter/unified_no.go b/vendor/golang.org/x/tools/go/internal/gcimporter/unified_no.go
new file mode 100644
index 0000000000000000000000000000000000000000..286bf445483d8ed2cc02985bc1e16fed22093deb
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/gcimporter/unified_no.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/gcimporter/unified_yes.go b/vendor/golang.org/x/tools/go/internal/gcimporter/unified_yes.go
new file mode 100644
index 0000000000000000000000000000000000000000..b5d69ffbe682d12cd588e44963201e69bbf3d8b1
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/gcimporter/unified_yes.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/gcimporter/ureader_no.go b/vendor/golang.org/x/tools/go/internal/gcimporter/ureader_no.go
new file mode 100644
index 0000000000000000000000000000000000000000..8eb20729c2ad5a727ee314b291b8a30343e90a5a
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/gcimporter/ureader_no.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/gcimporter/ureader_yes.go b/vendor/golang.org/x/tools/go/internal/gcimporter/ureader_yes.go
new file mode 100644
index 0000000000000000000000000000000000000000..3c1a4375435a79f34c736e3631f68d2e8d41c5da
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/gcimporter/ureader_yes.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/pkgbits/codes.go b/vendor/golang.org/x/tools/go/internal/pkgbits/codes.go
new file mode 100644
index 0000000000000000000000000000000000000000..f0cabde96eba92f937f973f45c36a346cae36ce7
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/pkgbits/codes.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/pkgbits/decoder.go b/vendor/golang.org/x/tools/go/internal/pkgbits/decoder.go
new file mode 100644
index 0000000000000000000000000000000000000000..2bc793668ec902f0c4838284f1c51896f70ebcee
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/pkgbits/decoder.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/pkgbits/doc.go b/vendor/golang.org/x/tools/go/internal/pkgbits/doc.go
new file mode 100644
index 0000000000000000000000000000000000000000..c8a2796b5e4cb2c724228dbc919e6d0ffb4da3f3
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/pkgbits/doc.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/pkgbits/encoder.go b/vendor/golang.org/x/tools/go/internal/pkgbits/encoder.go
new file mode 100644
index 0000000000000000000000000000000000000000..c50c838caaecd10929f46975feba32f3ef25903f
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/pkgbits/encoder.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/pkgbits/flags.go b/vendor/golang.org/x/tools/go/internal/pkgbits/flags.go
new file mode 100644
index 0000000000000000000000000000000000000000..654222745facd222bec7f8c9989c1fb5f5e204af
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/pkgbits/flags.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/pkgbits/frames_go1.go b/vendor/golang.org/x/tools/go/internal/pkgbits/frames_go1.go
new file mode 100644
index 0000000000000000000000000000000000000000..5294f6a63edd7dcb5617fcd42a44f6b8dd241996
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/pkgbits/frames_go1.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/pkgbits/frames_go17.go b/vendor/golang.org/x/tools/go/internal/pkgbits/frames_go17.go
new file mode 100644
index 0000000000000000000000000000000000000000..2324ae7adfe20de927093f5ed2410a4681a46cbc
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/pkgbits/frames_go17.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/pkgbits/reloc.go b/vendor/golang.org/x/tools/go/internal/pkgbits/reloc.go
new file mode 100644
index 0000000000000000000000000000000000000000..7a8f04ab3fc665448d6ffc97f5cf6271ee39c5c5
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/pkgbits/reloc.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/pkgbits/support.go b/vendor/golang.org/x/tools/go/internal/pkgbits/support.go
new file mode 100644
index 0000000000000000000000000000000000000000..ad26d3b28cae1e3d2c0e97be8090bf19811d6cd5
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/pkgbits/support.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/pkgbits/sync.go b/vendor/golang.org/x/tools/go/internal/pkgbits/sync.go
new file mode 100644
index 0000000000000000000000000000000000000000..5bd51ef717007b7d9b0ff183ad6aa487cef066d3
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/pkgbits/sync.go differ
diff --git a/vendor/golang.org/x/tools/go/internal/pkgbits/syncmarker_string.go b/vendor/golang.org/x/tools/go/internal/pkgbits/syncmarker_string.go
new file mode 100644
index 0000000000000000000000000000000000000000..4a5b0ca5f2ffcb514daa620b8b3177ecfa28e44b
Binary files /dev/null and b/vendor/golang.org/x/tools/go/internal/pkgbits/syncmarker_string.go differ
diff --git a/vendor/golang.org/x/tools/go/packages/doc.go b/vendor/golang.org/x/tools/go/packages/doc.go
index 4bfe28a51ff520c88d0b1f37724d9e1e85b9b603..da4ab89fe63f1fd40823c0dc0d7bec392a02a3b0 100644
Binary files a/vendor/golang.org/x/tools/go/packages/doc.go and b/vendor/golang.org/x/tools/go/packages/doc.go differ
diff --git a/vendor/golang.org/x/tools/go/packages/golist.go b/vendor/golang.org/x/tools/go/packages/golist.go
index 0e1e7f11fee8c102578eb752d48bccf676adb821..de881562de1d76193f637a9632cdc404092efb5e 100644
Binary files a/vendor/golang.org/x/tools/go/packages/golist.go and b/vendor/golang.org/x/tools/go/packages/golist.go differ
diff --git a/vendor/golang.org/x/tools/go/packages/loadmode_string.go b/vendor/golang.org/x/tools/go/packages/loadmode_string.go
index 7ea37e7eeac3c3acf27a65c879fc1793d54d8b74..5c080d21b54a9a1534d10d8a9eea76883530e2dd 100644
Binary files a/vendor/golang.org/x/tools/go/packages/loadmode_string.go and b/vendor/golang.org/x/tools/go/packages/loadmode_string.go differ
diff --git a/vendor/golang.org/x/tools/go/packages/packages.go b/vendor/golang.org/x/tools/go/packages/packages.go
index 1b5424e78f7a0e656548f4d6dc0b2e10cdd45d4a..a93dc6add4d8e7764f4db3fa24eae59788b9408b 100644
Binary files a/vendor/golang.org/x/tools/go/packages/packages.go and b/vendor/golang.org/x/tools/go/packages/packages.go differ
diff --git a/vendor/golang.org/x/tools/imports/forward.go b/vendor/golang.org/x/tools/imports/forward.go
index 8be18a66b3c2577f54d614e57a0f273f87913b5f..d2547c7433822575e310d227c1433540642c6caf 100644
Binary files a/vendor/golang.org/x/tools/imports/forward.go and b/vendor/golang.org/x/tools/imports/forward.go differ
diff --git a/vendor/golang.org/x/tools/internal/fastwalk/fastwalk.go b/vendor/golang.org/x/tools/internal/fastwalk/fastwalk.go
index 9887f7e7a016e02f84e1eaf82d5745c537a64200..798fe599be4ce56e63d78a72cb85ecb578e1ab7f 100644
Binary files a/vendor/golang.org/x/tools/internal/fastwalk/fastwalk.go and b/vendor/golang.org/x/tools/internal/fastwalk/fastwalk.go differ
diff --git a/vendor/golang.org/x/tools/internal/gocommand/invoke.go b/vendor/golang.org/x/tools/internal/gocommand/invoke.go
index f75336834658436e6eda0c495abf952be2f0d35b..67256dc3974cc2ea302a88380422b030a5cd0eba 100644
Binary files a/vendor/golang.org/x/tools/internal/gocommand/invoke.go and b/vendor/golang.org/x/tools/internal/gocommand/invoke.go differ
diff --git a/vendor/golang.org/x/tools/internal/gopathwalk/walk.go b/vendor/golang.org/x/tools/internal/gopathwalk/walk.go
index 925ff53560ad4da2c4fdc40ea15184a813790499..168405322683bb0b6a9a45dd21395dbac8ec6a59 100644
Binary files a/vendor/golang.org/x/tools/internal/gopathwalk/walk.go and b/vendor/golang.org/x/tools/internal/gopathwalk/walk.go differ
diff --git a/vendor/golang.org/x/tools/internal/imports/fix.go b/vendor/golang.org/x/tools/internal/imports/fix.go
index d859617b77452019e9be84cd50f3764448e7fb63..9e373d64ebcdc55b0b7565b3bd2db47e40a81934 100644
Binary files a/vendor/golang.org/x/tools/internal/imports/fix.go and b/vendor/golang.org/x/tools/internal/imports/fix.go differ
diff --git a/vendor/golang.org/x/tools/internal/imports/imports.go b/vendor/golang.org/x/tools/internal/imports/imports.go
index 25973989e620ebefeaa3b8baa56f10db2765efc4..95a88383a7922bddcce8e68085dbb59c7a576528 100644
Binary files a/vendor/golang.org/x/tools/internal/imports/imports.go and b/vendor/golang.org/x/tools/internal/imports/imports.go differ
diff --git a/vendor/golang.org/x/tools/internal/imports/mod.go b/vendor/golang.org/x/tools/internal/imports/mod.go
index 2bcf41f5fa7107486c728d51743927be909b4908..46693f243393e4270db0348be3b95c57c3e89cdb 100644
Binary files a/vendor/golang.org/x/tools/internal/imports/mod.go and b/vendor/golang.org/x/tools/internal/imports/mod.go differ
diff --git a/vendor/golang.org/x/tools/internal/imports/sortimports.go b/vendor/golang.org/x/tools/internal/imports/sortimports.go
index dc52372e48aea130a3d3c33082fc35cb93976d27..85144db1dfa2545aeb9b2f46bef85f104a18280f 100644
Binary files a/vendor/golang.org/x/tools/internal/imports/sortimports.go and b/vendor/golang.org/x/tools/internal/imports/sortimports.go differ
diff --git a/vendor/golang.org/x/tools/internal/imports/zstdlib.go b/vendor/golang.org/x/tools/internal/imports/zstdlib.go
index 7de2be9b4b7f51516424d7fab441b767e5f6e66a..437fbb78dbde89d819f00d19ab20ec26e97e94c0 100644
Binary files a/vendor/golang.org/x/tools/internal/imports/zstdlib.go and b/vendor/golang.org/x/tools/internal/imports/zstdlib.go differ
diff --git a/vendor/golang.org/x/tools/internal/packagesinternal/packages.go b/vendor/golang.org/x/tools/internal/packagesinternal/packages.go
index 9702094c59edd4d8bf06196d717d5a2f6f2c22cd..d9950b1f0bef933eb164bfe95944a94f53667833 100644
Binary files a/vendor/golang.org/x/tools/internal/packagesinternal/packages.go and b/vendor/golang.org/x/tools/internal/packagesinternal/packages.go differ
diff --git a/vendor/golang.org/x/tools/internal/typeparams/common.go b/vendor/golang.org/x/tools/internal/typeparams/common.go
index ab6b30b83e45bdc3dbaed76ed63dd9d516ad33b8..25a1426d30ec2f5e2e3334b53393d3d06001542e 100644
Binary files a/vendor/golang.org/x/tools/internal/typeparams/common.go and b/vendor/golang.org/x/tools/internal/typeparams/common.go differ
diff --git a/vendor/golang.org/x/tools/internal/typeparams/coretype.go b/vendor/golang.org/x/tools/internal/typeparams/coretype.go
new file mode 100644
index 0000000000000000000000000000000000000000..993135ec90e89688852e112f97b133b39196280a
Binary files /dev/null and b/vendor/golang.org/x/tools/internal/typeparams/coretype.go differ
diff --git a/vendor/golang.org/x/tools/internal/typeparams/normalize.go b/vendor/golang.org/x/tools/internal/typeparams/normalize.go
index 090f142a5f34b4ad4c9ccadeb626ec99b1ba21b3..9c631b6512ded4241e8ff854a50c4b965d119d31 100644
Binary files a/vendor/golang.org/x/tools/internal/typeparams/normalize.go and b/vendor/golang.org/x/tools/internal/typeparams/normalize.go differ
diff --git a/vendor/golang.org/x/tools/internal/typeparams/termlist.go b/vendor/golang.org/x/tools/internal/typeparams/termlist.go
index 10857d504c4faf4fb00998d7c97092c0e08423fa..933106a23dd433629208b854a639ced0175dc6ba 100644
Binary files a/vendor/golang.org/x/tools/internal/typeparams/termlist.go and b/vendor/golang.org/x/tools/internal/typeparams/termlist.go differ
diff --git a/vendor/golang.org/x/xerrors/LICENSE b/vendor/golang.org/x/xerrors/LICENSE
deleted file mode 100644
index e4a47e17f143b5b29fb29b6c23421ac67e4a6154..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/LICENSE and /dev/null differ
diff --git a/vendor/golang.org/x/xerrors/PATENTS b/vendor/golang.org/x/xerrors/PATENTS
deleted file mode 100644
index 733099041f84fa1e58611ab2e11af51c1f26d1d2..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/PATENTS and /dev/null differ
diff --git a/vendor/golang.org/x/xerrors/README b/vendor/golang.org/x/xerrors/README
deleted file mode 100644
index aac7867a560b8f999243acd99b75af4d56ffe119..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/README and /dev/null differ
diff --git a/vendor/golang.org/x/xerrors/adaptor.go b/vendor/golang.org/x/xerrors/adaptor.go
deleted file mode 100644
index 4317f2483313167ef4577dc668e3a7270066f6d6..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/adaptor.go and /dev/null differ
diff --git a/vendor/golang.org/x/xerrors/codereview.cfg b/vendor/golang.org/x/xerrors/codereview.cfg
deleted file mode 100644
index 3f8b14b64e83f940ab7b05e8c542fd821b376d3f..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/codereview.cfg and /dev/null differ
diff --git a/vendor/golang.org/x/xerrors/doc.go b/vendor/golang.org/x/xerrors/doc.go
deleted file mode 100644
index 2ef99f5a87bf5b8397495ba49d5db417739e22cd..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/doc.go and /dev/null differ
diff --git a/vendor/golang.org/x/xerrors/errors.go b/vendor/golang.org/x/xerrors/errors.go
deleted file mode 100644
index e88d3772d8611f90009664490c88e6ae1634dd72..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/errors.go and /dev/null differ
diff --git a/vendor/golang.org/x/xerrors/fmt.go b/vendor/golang.org/x/xerrors/fmt.go
deleted file mode 100644
index 6df18669fac3eac0abdd93b0e6a8d0611a4ee19d..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/fmt.go and /dev/null differ
diff --git a/vendor/golang.org/x/xerrors/format.go b/vendor/golang.org/x/xerrors/format.go
deleted file mode 100644
index 1bc9c26b97fdfba224fc44b18b31f0dbc90d35d2..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/format.go and /dev/null differ
diff --git a/vendor/golang.org/x/xerrors/frame.go b/vendor/golang.org/x/xerrors/frame.go
deleted file mode 100644
index 0de628ec501f65ba6bd9b9df321f4eb3c8294d2b..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/frame.go and /dev/null differ
diff --git a/vendor/golang.org/x/xerrors/internal/internal.go b/vendor/golang.org/x/xerrors/internal/internal.go
deleted file mode 100644
index 89f4eca5df7bc746a9186e7f071694378ce2f05c..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/internal/internal.go and /dev/null differ
diff --git a/vendor/golang.org/x/xerrors/wrap.go b/vendor/golang.org/x/xerrors/wrap.go
deleted file mode 100644
index 9842758ca7c48d5441d1d2a7a9f48e03021a75eb..0000000000000000000000000000000000000000
Binary files a/vendor/golang.org/x/xerrors/wrap.go and /dev/null differ
diff --git a/vendor/google.golang.org/protobuf/AUTHORS b/vendor/google.golang.org/protobuf/AUTHORS
deleted file mode 100644
index 2b00ddba0dfee1022198444c16670d443840ef86..0000000000000000000000000000000000000000
Binary files a/vendor/google.golang.org/protobuf/AUTHORS and /dev/null differ
diff --git a/vendor/google.golang.org/protobuf/CONTRIBUTORS b/vendor/google.golang.org/protobuf/CONTRIBUTORS
deleted file mode 100644
index 1fbd3e976faf5af5bbd1d8268a70399234969ae4..0000000000000000000000000000000000000000
Binary files a/vendor/google.golang.org/protobuf/CONTRIBUTORS and /dev/null differ
diff --git a/vendor/google.golang.org/protobuf/encoding/protojson/decode.go b/vendor/google.golang.org/protobuf/encoding/protojson/decode.go
index 07da5db3450e82404c8995fbe37faa270d161384..5f28148d805b38dd889740ced0da56947c89a469 100644
Binary files a/vendor/google.golang.org/protobuf/encoding/protojson/decode.go and b/vendor/google.golang.org/protobuf/encoding/protojson/decode.go differ
diff --git a/vendor/google.golang.org/protobuf/encoding/protojson/encode.go b/vendor/google.golang.org/protobuf/encoding/protojson/encode.go
index ba971f07810c62ec82fe02fc615b56de00bc18f3..d09d22e139bcef66f24d11a60e0a5342bfeb82c4 100644
Binary files a/vendor/google.golang.org/protobuf/encoding/protojson/encode.go and b/vendor/google.golang.org/protobuf/encoding/protojson/encode.go differ
diff --git a/vendor/google.golang.org/protobuf/encoding/protojson/well_known_types.go b/vendor/google.golang.org/protobuf/encoding/protojson/well_known_types.go
index 72924a9050cfbf4441b5ef499a69ed6088307425..c85f8469480a7ff5ca9925defc5d9f8cba40ea08 100644
Binary files a/vendor/google.golang.org/protobuf/encoding/protojson/well_known_types.go and b/vendor/google.golang.org/protobuf/encoding/protojson/well_known_types.go differ
diff --git a/vendor/google.golang.org/protobuf/encoding/prototext/decode.go b/vendor/google.golang.org/protobuf/encoding/prototext/decode.go
index 179d6e8fc1ce08d85d26a775af68c5247690b74b..4921b2d4a76f15ed9466df45eace7561f284e3ed 100644
Binary files a/vendor/google.golang.org/protobuf/encoding/prototext/decode.go and b/vendor/google.golang.org/protobuf/encoding/prototext/decode.go differ
diff --git a/vendor/google.golang.org/protobuf/encoding/prototext/encode.go b/vendor/google.golang.org/protobuf/encoding/prototext/encode.go
index 8d5304dc5b3201879acd8e06eb343e8cf7b7c97d..ebf6c65284ddf5ae537ce869bdbaf0fe7dfd70de 100644
Binary files a/vendor/google.golang.org/protobuf/encoding/prototext/encode.go and b/vendor/google.golang.org/protobuf/encoding/prototext/encode.go differ
diff --git a/vendor/google.golang.org/protobuf/encoding/protowire/wire.go b/vendor/google.golang.org/protobuf/encoding/protowire/wire.go
index 9c61112f58d139e916fa4951ac7c5f7ca21809dd..ce57f57ebd48618b56ffa34ed4d20453bc0b0c58 100644
Binary files a/vendor/google.golang.org/protobuf/encoding/protowire/wire.go and b/vendor/google.golang.org/protobuf/encoding/protowire/wire.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go b/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go
index 360c63329d4dc624ff6519b0300fa5fe249430bd..db5248e1b512b8e5ae04a0e28ae22b565fade26c 100644
Binary files a/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go and b/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go b/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go
index fdd9b13f2fcfff920328fd36823e6de0d9f200d0..328dc733b042da804c272128835c1195c4e78ccd 100644
Binary files a/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go and b/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go b/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go
index c1866f3c1a78cb0e68111373968d119e345f8e21..a6693f0a2f39ca7b0216f9841dfe517282fed29e 100644
Binary files a/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go and b/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go b/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go
index 38f1931c6fd1a9975ff084e3fda1dbdff010556b..373d208374f80d375b56c0d6d2cbff4ca153706b 100644
Binary files a/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go and b/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go b/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go
index 37803773fa390d6ea7be88beb9cfad8d35972699..427c62d037fcaf75776b047f1a13c9bf3925ec2a 100644
Binary files a/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go and b/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go b/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go
index f2d90b78999f30232bf7ad5ce590344a2d5dc6b3..81a5d8c861390d27188737715537b3a33332bb55 100644
Binary files a/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go and b/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go b/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go
index 0ce8d6fb83d9ed269fab1988f5e4cd0a85b5dedf..7ae6c2a3c26d30ac5b72cdb3f66f27d076562b1b 100644
Binary files a/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go and b/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/build.go b/vendor/google.golang.org/protobuf/internal/filedesc/build.go
index b293b6947361d084a79be85040ee85efbe513030..7cac1c19016f9c4cd6c51ece7939a081aa2eda18 100644
Binary files a/vendor/google.golang.org/protobuf/internal/filedesc/build.go and b/vendor/google.golang.org/protobuf/internal/filedesc/build.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/desc.go b/vendor/google.golang.org/protobuf/internal/filedesc/desc.go
index 98ab142aeee6780e6e71c6ad4dfa3f63e27a6b67..7c3689baee8a553d0bc0141c22a34335a16d4c51 100644
Binary files a/vendor/google.golang.org/protobuf/internal/filedesc/desc.go and b/vendor/google.golang.org/protobuf/internal/filedesc/desc.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go b/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go
index 66e1fee5224327e2da0538e11445584cf9742281..4a1584c9d29fd811996a0565d8af83764f70944d 100644
Binary files a/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go and b/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go b/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go
index 198451e3ec941da54e5856717b9bfa6c6ca05c6c..736a19a75bc73475acf0ff889adc5f8d7d25661d 100644
Binary files a/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go and b/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go b/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go
index aa294fff99a8f8df907f1263e855afafaab4cc97..e3b6587da63aba1d1c35af27f826e15d9b83c31d 100644
Binary files a/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go and b/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go b/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go
index dbf2c605bfe54b9882800e3e5ee88094a8ef0566..28240ebc5c4abfb96263020d1c7dd87eadc51415 100644
Binary files a/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go and b/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/filetype/build.go b/vendor/google.golang.org/protobuf/internal/filetype/build.go
index 0a0dd35de5a7c49b93079526a5ef1483de5470e0..f0e38c4ef4e08678a903b4ff06615945a2a1338a 100644
Binary files a/vendor/google.golang.org/protobuf/internal/filetype/build.go and b/vendor/google.golang.org/protobuf/internal/filetype/build.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/api_export.go b/vendor/google.golang.org/protobuf/internal/impl/api_export.go
index abee5f30e9fd0ea18daed09e3030aa53f4608f03..a371f98de143f2f64687b4027835d1dfcf8a0ffd 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/api_export.go and b/vendor/google.golang.org/protobuf/internal/impl/api_export.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/checkinit.go b/vendor/google.golang.org/protobuf/internal/impl/checkinit.go
index b82341e575cb334ed4381504b2b516509201ccac..bff041edc946c601ff0a79b9977718a2e0e4e7b9 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/checkinit.go and b/vendor/google.golang.org/protobuf/internal/impl/checkinit.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go b/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go
index 08d35170b66cc6768261b2bac2e422ba490fbc5b..e74cefdc506fbf54d03c51716362847ead3eed3c 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go and b/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_field.go b/vendor/google.golang.org/protobuf/internal/impl/codec_field.go
index cb4b482d166f5571887f5584b345764a82e336a0..3fadd241e1c44a2a7147698c60b1e069ca800474 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/codec_field.go and b/vendor/google.golang.org/protobuf/internal/impl/codec_field.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_map.go b/vendor/google.golang.org/protobuf/internal/impl/codec_map.go
index c1245fef487651a967fbf27bfe03344321c7a705..111b9d16f993be81d69935995c1f8c9265b8b3e2 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/codec_map.go and b/vendor/google.golang.org/protobuf/internal/impl/codec_map.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_message.go b/vendor/google.golang.org/protobuf/internal/impl/codec_message.go
index cd40527ff646203e19747ff7b823fc7750bd427c..6b2fdbb739a23c39489c5c826f1b3aaf5acb72e8 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/codec_message.go and b/vendor/google.golang.org/protobuf/internal/impl/codec_message.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go b/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go
index e89971238879f2bfb7e6229257b065c4737912ed..576dcf3aac50aea4b0220e04a04f9caee9704199 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go and b/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/convert.go b/vendor/google.golang.org/protobuf/internal/impl/convert.go
index acd61bb50b2ca04c04ce77b7ebc403d779dea121..11a6128ba56bd0ebeb8342703e2ac6740cdd192c 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/convert.go and b/vendor/google.golang.org/protobuf/internal/impl/convert.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/convert_list.go b/vendor/google.golang.org/protobuf/internal/impl/convert_list.go
index 6fccab520e59a4e55f76c3e14a02f5b748a6d6b4..f89136516f96d49b3e7ec0a7be4cada65619143b 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/convert_list.go and b/vendor/google.golang.org/protobuf/internal/impl/convert_list.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/convert_map.go b/vendor/google.golang.org/protobuf/internal/impl/convert_map.go
index de06b2593f89ac7ce22b66a1fadeec7b0ccee030..f30b0a0576de3cf2a4638dd1d10b92c1fd5f90f8 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/convert_map.go and b/vendor/google.golang.org/protobuf/internal/impl/convert_map.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/decode.go b/vendor/google.golang.org/protobuf/internal/impl/decode.go
index c65b0325c17e45ab18df0a39e85b322c56c41db6..cda0520c275cbd24742658432cfa39869eff2199 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/decode.go and b/vendor/google.golang.org/protobuf/internal/impl/decode.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/enum.go b/vendor/google.golang.org/protobuf/internal/impl/enum.go
index 8c1eab4bfd869fdd14e424e77e072624f771c12d..5f3ef5ad732f69793ae5d3e9682eb5b042d04735 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/enum.go and b/vendor/google.golang.org/protobuf/internal/impl/enum.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/extension.go b/vendor/google.golang.org/protobuf/internal/impl/extension.go
index e904fd993657c613484e0b3d127cd7cdb1548c87..cb25b0bae1d71f33cd9c056fa057edae8e629005 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/extension.go and b/vendor/google.golang.org/protobuf/internal/impl/extension.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go b/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go
index f7d7ffb51039e8e466defa40cf4eefce7a352c8a..c2a803bb2f929bdf458bf08a52f9259e99343f59 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go and b/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go b/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go
index e3fb0b578586cd3dfe17c27586c753a6b29dfbe8..9b64ad5bba285901f6fc6fc9123af2691dc473d3 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go and b/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go b/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go
index 49e723161c018390b836b4f5a44ca6caaa89e58c..87b30d0504c177e0e309948ea11937c9394a6b6e 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go and b/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go b/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go
index 029feeefd792ba5a6c7230df231c715a36600146..61c483fac06ef862eb4cd56c9b08273870ade5e4 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go and b/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/merge.go b/vendor/google.golang.org/protobuf/internal/impl/merge.go
index c65bbc0446ea8309cc5b2e6186138e172a5c6d34..7e65f64f28e37dc03ce4a132f64275358760dbbf 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/merge.go and b/vendor/google.golang.org/protobuf/internal/impl/merge.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/message.go b/vendor/google.golang.org/protobuf/internal/impl/message.go
index a104e28e858fa12dc5e2e95c2e7c0d6c06cde3b1..4f5fb67a0ddb63fef62d6f0d5eb11d6cbf3bce74 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/message.go and b/vendor/google.golang.org/protobuf/internal/impl/message.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go b/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go
index 9488b726131366509be747a136d4ba01bfcdf98a..d9ea010bef9af9e0651a52785cbe705d60799ad5 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go and b/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go b/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go
index 343cf872197f76f7c1a40c4eff2b2f14c93792d3..5e736c60efc731a8a70025480a903e370a709a48 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go and b/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/validate.go b/vendor/google.golang.org/protobuf/internal/impl/validate.go
index 08cfb6054b4318cdb22338fc558addef1e734c06..a24e6bbd7a5f9d8df17a2563b2254797e0dc771f 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/validate.go and b/vendor/google.golang.org/protobuf/internal/impl/validate.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/impl/weak.go b/vendor/google.golang.org/protobuf/internal/impl/weak.go
index 009cbefd1ed2ced72387cd6ffea24697e14535af..eb79a7ba94c096e5c6afd8b80bb25f5b37bc40a9 100644
Binary files a/vendor/google.golang.org/protobuf/internal/impl/weak.go and b/vendor/google.golang.org/protobuf/internal/impl/weak.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/order/order.go b/vendor/google.golang.org/protobuf/internal/order/order.go
index 2a24953f6a47a856a905cafe688c2480fc5333c2..33745ed0625417cfbc7307db51f34d013b2586bb 100644
Binary files a/vendor/google.golang.org/protobuf/internal/order/order.go and b/vendor/google.golang.org/protobuf/internal/order/order.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/order/range.go b/vendor/google.golang.org/protobuf/internal/order/range.go
index c8090e0c547f6c6e9eed09ea8c4340bbc61cb0f2..1665a68e5b7c457cea8fc55fc151e7e01361351c 100644
Binary files a/vendor/google.golang.org/protobuf/internal/order/range.go and b/vendor/google.golang.org/protobuf/internal/order/range.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go b/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go
index 56a8a4ed3c9d1e2e03d1d88d036809fe900f8532..fea589c457e9476bb6a8f4a5df9df47a3f24fa77 100644
Binary files a/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go and b/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go differ
diff --git a/vendor/google.golang.org/protobuf/internal/version/version.go b/vendor/google.golang.org/protobuf/internal/version/version.go
index 3d40d5249e9652c50b7c3848c4c6a592e29e8145..b480c5010f1d027257573c9d5caebfd5b99b6a35 100644
Binary files a/vendor/google.golang.org/protobuf/internal/version/version.go and b/vendor/google.golang.org/protobuf/internal/version/version.go differ
diff --git a/vendor/google.golang.org/protobuf/proto/decode.go b/vendor/google.golang.org/protobuf/proto/decode.go
index 11bf7173be92246910045759d578165af83a7396..48d47946bb1ad9106edc75c0bea4400a5f71b23d 100644
Binary files a/vendor/google.golang.org/protobuf/proto/decode.go and b/vendor/google.golang.org/protobuf/proto/decode.go differ
diff --git a/vendor/google.golang.org/protobuf/proto/doc.go b/vendor/google.golang.org/protobuf/proto/doc.go
index c52d8c4ab79ff703bb1a9737d3e36092efa87221..08d2a46f53525f1b634c996759e9b760feaf4eb5 100644
Binary files a/vendor/google.golang.org/protobuf/proto/doc.go and b/vendor/google.golang.org/protobuf/proto/doc.go differ
diff --git a/vendor/google.golang.org/protobuf/proto/encode.go b/vendor/google.golang.org/protobuf/proto/encode.go
index d18239c23723a8768a38d9bdb22cad8d8131a799..bf7f816d0e862d51574a7784f24cd5c6f48e95aa 100644
Binary files a/vendor/google.golang.org/protobuf/proto/encode.go and b/vendor/google.golang.org/protobuf/proto/encode.go differ
diff --git a/vendor/google.golang.org/protobuf/proto/equal.go b/vendor/google.golang.org/protobuf/proto/equal.go
index 4dba2b969972908bd31d2f9e9de8fe9cfab3209b..67948dd1df8cc66f2747557112fcd421941e0925 100644
Binary files a/vendor/google.golang.org/protobuf/proto/equal.go and b/vendor/google.golang.org/protobuf/proto/equal.go differ
diff --git a/vendor/google.golang.org/protobuf/reflect/protodesc/desc_resolve.go b/vendor/google.golang.org/protobuf/reflect/protodesc/desc_resolve.go
index cebb36cdade61af0093cfc2deb9a358e5dc19216..27d7e35012d3a7feca696277e773c805846e078e 100644
Binary files a/vendor/google.golang.org/protobuf/reflect/protodesc/desc_resolve.go and b/vendor/google.golang.org/protobuf/reflect/protodesc/desc_resolve.go differ
diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go
index dd85915bd4bfb502184551ec8250a69246c56c50..55aa14922b0156c092c95229e40d9162a453ce2e 100644
Binary files a/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go and b/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go differ
diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go
index 121ba3a07bba9378f18ceece15ec4a9c809d3435..0b99428855fe9499b9bb4dc57e49c5bebfb2d624 100644
Binary files a/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go and b/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go differ
diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go
index 8e53c44a9188a4de64217bba50872de70bedfd11..3867470d30ac04f1ceb9e226cffded54ee5f42e1 100644
Binary files a/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go and b/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go differ
diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go
index eb7764c307c05b1af7d75739afc97fb8b5a710f1..ca8e28c5bc8b97e7f0a5c956ac700cb26eef3945 100644
Binary files a/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go and b/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go differ
diff --git a/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go b/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go
index 59f024c444fc82ae2f2e4e14f60ac899cb82cecb..58352a6978beeef17095e9adaba380ac5e73fb17 100644
Binary files a/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go and b/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go differ
diff --git a/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go b/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go
index ff094e1ba44b297d717b2c53a9584b317bcd12ac..a105cb23e03312f005f02ce3fd70cbca9a05cb55 100644
Binary files a/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go and b/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go differ
diff --git a/vendor/modules.txt b/vendor/modules.txt
index 0611fbc3ae3c8f2f3fdeb56193ba0b1bfc2201d5..df98364b26c22ab80334a232b7ee4b271469020a 100644
Binary files a/vendor/modules.txt and b/vendor/modules.txt differ