Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Cai <jcai@gitlab.com>2019-09-04 04:06:24 +0300
committerJohn Cai <jcai@gitlab.com>2019-09-06 18:55:03 +0300
commitfe1bf69855cdf5b2b0c379efdbaea22520937fa6 (patch)
treeb4498396fe0f51622dee3fc9551631b789153c68
parentc7873d949803dbffe99ca840ee0dd6a7346bf45e (diff)
Add RenameRepository RPC
-rw-r--r--internal/service/repository/rename.go57
-rw-r--r--internal/service/repository/rename_test.go111
-rw-r--r--internal/testhelper/testhelper.go5
-rw-r--r--proto/go/gitalypb/repository-service.pb.go491
-rw-r--r--proto/repository-service.proto13
-rw-r--r--ruby/proto/gitaly/repository-service_pb.rb8
-rw-r--r--ruby/proto/gitaly/repository-service_services_pb.rb1
7 files changed, 500 insertions, 186 deletions
diff --git a/internal/service/repository/rename.go b/internal/service/repository/rename.go
new file mode 100644
index 000000000..10bbee028
--- /dev/null
+++ b/internal/service/repository/rename.go
@@ -0,0 +1,57 @@
+package repository
+
+import (
+ "context"
+ "errors"
+ "os"
+ "path/filepath"
+
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+ "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
+)
+
+func (s *server) RenameRepository(ctx context.Context, in *gitalypb.RenameRepositoryRequest) (*gitalypb.RenameRepositoryResponse, error) {
+ if err := validateRenameRepositoryRequest(in); err != nil {
+ return nil, helper.ErrInvalidArgument(err)
+ }
+
+ fromFullPath, err := helper.GetRepoPath(in.GetRepository())
+ if err != nil {
+ return nil, helper.ErrInvalidArgument(err)
+ }
+
+ toFullPath, err := helper.GetPath(&gitalypb.Repository{StorageName: in.GetRepository().GetStorageName(), RelativePath: in.GetRelativePath()})
+ if err != nil {
+ return nil, helper.ErrInvalidArgument(err)
+ }
+
+ if _, err = os.Stat(toFullPath); !os.IsNotExist(err) {
+ return nil, helper.ErrPreconditionFailed(errors.New("destination already exists"))
+ }
+
+ if err = os.MkdirAll(filepath.Dir(toFullPath), 0755); err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ if err = os.Rename(fromFullPath, toFullPath); err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ return &gitalypb.RenameRepositoryResponse{}, nil
+}
+
+func validateRenameRepositoryRequest(in *gitalypb.RenameRepositoryRequest) error {
+ if in.GetRepository() == nil {
+ return errors.New("from repository is empty")
+ }
+
+ if in.GetRelativePath() == "" {
+ return errors.New("destination relative path is empty")
+ }
+
+ if helper.ContainsPathTraversal(in.GetRelativePath()) {
+ return errors.New("relative_path contains path traversal")
+ }
+
+ return nil
+}
diff --git a/internal/service/repository/rename_test.go b/internal/service/repository/rename_test.go
new file mode 100644
index 000000000..de025d938
--- /dev/null
+++ b/internal/service/repository/rename_test.go
@@ -0,0 +1,111 @@
+package repository
+
+import (
+ "path/filepath"
+ "testing"
+
+ "github.com/stretchr/testify/require"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+ "gitlab.com/gitlab-org/gitaly/internal/testhelper"
+ "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
+ "google.golang.org/grpc/codes"
+)
+
+func TestRenameRepositorySuccess(t *testing.T) {
+ server, serverSocketPath := runRepoServer(t)
+ defer server.Stop()
+
+ client, conn := newRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ tempDir, cleanupTempDir := testhelper.TempDir(t, "", t.Name())
+ defer cleanupTempDir()
+
+ destinationPath := filepath.Join(tempDir, "a", "new", "location")
+
+ req := &gitalypb.RenameRepositoryRequest{Repository: testRepo, RelativePath: destinationPath}
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ _, err := client.RenameRepository(ctx, req)
+ require.NoError(t, err)
+
+ newDirectory, err := helper.GetPath(&gitalypb.Repository{StorageName: "default", RelativePath: destinationPath})
+ require.NoError(t, err)
+ require.DirExists(t, newDirectory)
+
+ require.True(t, helper.IsGitDirectory(newDirectory), "moved Git repository has been corrupted")
+
+ // ensure the git directory that got renamed contains a sha in the seed repo
+ testhelper.MustReachGitObject(t, newDirectory, "913c66a37b4a45b9769037c55c2d238bd0942d2e")
+}
+
+func TestRenameRepositoryDestinationExists(t *testing.T) {
+ server, serverSocketPath := runRepoServer(t)
+ defer server.Stop()
+
+ client, conn := newRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ destinationRepo, destinationRepoPath, cleanupDestinationRepo := testhelper.NewTestRepo(t)
+ defer cleanupDestinationRepo()
+
+ _, sha := testhelper.CreateCommitOnNewBranch(t, destinationRepoPath)
+
+ req := &gitalypb.RenameRepositoryRequest{Repository: testRepo, RelativePath: destinationRepo.GetRelativePath()}
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ _, err := client.RenameRepository(ctx, req)
+ testhelper.RequireGrpcError(t, err, codes.FailedPrecondition)
+
+ // ensure the git directory that already existed didn't get overwritten
+ testhelper.MustReachGitObject(t, destinationRepoPath, sha)
+}
+
+func TestRenameRepositoryInvalidRequest(t *testing.T) {
+ server, serverSocketPath := runRepoServer(t)
+ defer server.Stop()
+
+ client, conn := newRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ testCases := []struct {
+ desc string
+ req *gitalypb.RenameRepositoryRequest
+ }{
+ {
+ desc: "empty repository",
+ req: &gitalypb.RenameRepositoryRequest{Repository: nil, RelativePath: "/tmp/abc"},
+ },
+ {
+ desc: "empty destination relative path",
+ req: &gitalypb.RenameRepositoryRequest{Repository: testRepo, RelativePath: ""},
+ },
+ {
+ desc: "destination relative path contains path traversal",
+ req: &gitalypb.RenameRepositoryRequest{Repository: testRepo, RelativePath: "../usr/bin"},
+ },
+ }
+
+ for _, tc := range testCases {
+ t.Run(tc.desc, func(t *testing.T) {
+ _, err := client.RenameRepository(ctx, tc.req)
+ testhelper.RequireGrpcError(t, err, codes.InvalidArgument)
+ })
+ }
+}
diff --git a/internal/testhelper/testhelper.go b/internal/testhelper/testhelper.go
index e776fb5b2..54e41ce3a 100644
--- a/internal/testhelper/testhelper.go
+++ b/internal/testhelper/testhelper.go
@@ -501,3 +501,8 @@ func TempDir(t *testing.T, dir, prefix string) (string, func() error) {
return os.RemoveAll(dirPath)
}
}
+
+// MustReachGitObject is a test assertion that fails unless the git repo in repoPath contains sha
+func MustReachGitObject(t testing.TB, repoPath, sha string) {
+ MustRunCommand(t, nil, "git", "-C", repoPath, "cat-file", "-e", sha)
+}
diff --git a/proto/go/gitalypb/repository-service.pb.go b/proto/go/gitalypb/repository-service.pb.go
index 15b81767f..dc65a20a9 100644
--- a/proto/go/gitalypb/repository-service.pb.go
+++ b/proto/go/gitalypb/repository-service.pb.go
@@ -3750,6 +3750,84 @@ func (m *RemoveRepositoryResponse) XXX_DiscardUnknown() {
var xxx_messageInfo_RemoveRepositoryResponse proto.InternalMessageInfo
+type RenameRepositoryRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
+ RelativePath string `protobuf:"bytes,2,opt,name=relative_path,json=relativePath,proto3" json:"relative_path,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *RenameRepositoryRequest) Reset() { *m = RenameRepositoryRequest{} }
+func (m *RenameRepositoryRequest) String() string { return proto.CompactTextString(m) }
+func (*RenameRepositoryRequest) ProtoMessage() {}
+func (*RenameRepositoryRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_e9b1768cf174c79b, []int{81}
+}
+
+func (m *RenameRepositoryRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_RenameRepositoryRequest.Unmarshal(m, b)
+}
+func (m *RenameRepositoryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_RenameRepositoryRequest.Marshal(b, m, deterministic)
+}
+func (m *RenameRepositoryRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_RenameRepositoryRequest.Merge(m, src)
+}
+func (m *RenameRepositoryRequest) XXX_Size() int {
+ return xxx_messageInfo_RenameRepositoryRequest.Size(m)
+}
+func (m *RenameRepositoryRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_RenameRepositoryRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_RenameRepositoryRequest proto.InternalMessageInfo
+
+func (m *RenameRepositoryRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+func (m *RenameRepositoryRequest) GetRelativePath() string {
+ if m != nil {
+ return m.RelativePath
+ }
+ return ""
+}
+
+type RenameRepositoryResponse struct {
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *RenameRepositoryResponse) Reset() { *m = RenameRepositoryResponse{} }
+func (m *RenameRepositoryResponse) String() string { return proto.CompactTextString(m) }
+func (*RenameRepositoryResponse) ProtoMessage() {}
+func (*RenameRepositoryResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_e9b1768cf174c79b, []int{82}
+}
+
+func (m *RenameRepositoryResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_RenameRepositoryResponse.Unmarshal(m, b)
+}
+func (m *RenameRepositoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_RenameRepositoryResponse.Marshal(b, m, deterministic)
+}
+func (m *RenameRepositoryResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_RenameRepositoryResponse.Merge(m, src)
+}
+func (m *RenameRepositoryResponse) XXX_Size() int {
+ return xxx_messageInfo_RenameRepositoryResponse.Size(m)
+}
+func (m *RenameRepositoryResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_RenameRepositoryResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_RenameRepositoryResponse proto.InternalMessageInfo
+
func init() {
proto.RegisterEnum("gitaly.GetArchiveRequest_Format", GetArchiveRequest_Format_name, GetArchiveRequest_Format_value)
proto.RegisterEnum("gitaly.GetRawChangesResponse_RawChange_Operation", GetRawChangesResponse_RawChange_Operation_name, GetRawChangesResponse_RawChange_Operation_value)
@@ -3836,197 +3914,202 @@ func init() {
proto.RegisterType((*CloneFromPoolInternalResponse)(nil), "gitaly.CloneFromPoolInternalResponse")
proto.RegisterType((*RemoveRepositoryRequest)(nil), "gitaly.RemoveRepositoryRequest")
proto.RegisterType((*RemoveRepositoryResponse)(nil), "gitaly.RemoveRepositoryResponse")
+ proto.RegisterType((*RenameRepositoryRequest)(nil), "gitaly.RenameRepositoryRequest")
+ proto.RegisterType((*RenameRepositoryResponse)(nil), "gitaly.RenameRepositoryResponse")
}
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor_e9b1768cf174c79b) }
var fileDescriptor_e9b1768cf174c79b = []byte{
- // 2951 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4b, 0x73, 0xdc, 0xc6,
- 0xf1, 0x17, 0xb8, 0x24, 0x77, 0xb7, 0x77, 0x29, 0x2d, 0x87, 0x14, 0xb9, 0x84, 0x48, 0x51, 0x82,
- 0x64, 0x59, 0x7e, 0x51, 0x32, 0xf5, 0xaf, 0xfa, 0xbb, 0xfe, 0x8f, 0x72, 0xf1, 0x4d, 0x5a, 0xe2,
- 0x23, 0x20, 0x55, 0x2a, 0xab, 0xca, 0x05, 0x83, 0xd8, 0x59, 0x2e, 0xb2, 0x58, 0xcc, 0x7a, 0x80,
- 0x15, 0x4d, 0x9f, 0x72, 0x48, 0xaa, 0x7c, 0x4a, 0xc5, 0x27, 0x57, 0xe5, 0x9c, 0x4f, 0x90, 0x5b,
- 0x2a, 0x95, 0x7b, 0xee, 0x39, 0xe5, 0x4b, 0xe4, 0x03, 0xf8, 0x92, 0xd4, 0x3c, 0x16, 0x03, 0x2c,
- 0x80, 0xb5, 0x5c, 0x60, 0x9c, 0x1b, 0xa6, 0xbb, 0xa7, 0xbb, 0xa7, 0xe7, 0xd9, 0xbf, 0x06, 0x34,
- 0x29, 0xee, 0x93, 0xc0, 0x0d, 0x09, 0xbd, 0xfa, 0x28, 0xc0, 0xf4, 0x8d, 0xeb, 0xe0, 0xb5, 0x3e,
- 0x25, 0x21, 0x41, 0xd3, 0x17, 0x6e, 0x68, 0x7b, 0x57, 0x7a, 0x3d, 0xe8, 0xd8, 0x14, 0xb7, 0x04,
- 0xd5, 0x38, 0x84, 0x45, 0x33, 0xea, 0xb1, 0xf3, 0xb5, 0x1b, 0x84, 0x81, 0x89, 0xbf, 0x1a, 0xe0,
- 0x20, 0x44, 0xeb, 0x00, 0x4a, 0x59, 0x53, 0xbb, 0xa7, 0x3d, 0xae, 0xad, 0xa3, 0x35, 0xa1, 0x65,
- 0x4d, 0x75, 0x32, 0x63, 0x52, 0xc6, 0x3a, 0x34, 0xd3, 0xea, 0x82, 0x3e, 0xf1, 0x03, 0x8c, 0x16,
- 0x60, 0x1a, 0x73, 0x0a, 0xd7, 0x55, 0x31, 0x65, 0xcb, 0x38, 0xe2, 0x7d, 0x6c, 0xa7, 0x7b, 0xe0,
- 0x3b, 0x14, 0xf7, 0xb0, 0x1f, 0xda, 0x5e, 0x11, 0x1f, 0xee, 0xc0, 0x52, 0x86, 0x3e, 0xe1, 0x84,
- 0xe1, 0xc1, 0xac, 0x60, 0xee, 0x0e, 0xbc, 0x22, 0x56, 0xd0, 0x03, 0x98, 0x71, 0x28, 0xb6, 0x43,
- 0x6c, 0x9d, 0xbb, 0x61, 0xcf, 0xee, 0x37, 0x27, 0xf8, 0xa0, 0xea, 0x82, 0xb8, 0xc9, 0x69, 0xc6,
- 0x3c, 0xa0, 0xb8, 0x35, 0xe9, 0x43, 0x1f, 0x6e, 0xef, 0xd9, 0xf4, 0xdc, 0xbe, 0xc0, 0x5b, 0xc4,
- 0xf3, 0xb0, 0x13, 0xfe, 0xdb, 0xfd, 0x68, 0xc2, 0xc2, 0xa8, 0x45, 0xe9, 0xcb, 0x36, 0xdc, 0xdc,
- 0xf2, 0xb0, 0xed, 0x0f, 0xfa, 0x45, 0x42, 0x3e, 0x0b, 0xb7, 0x22, 0x2d, 0x52, 0xf1, 0x73, 0xb8,
- 0xad, 0x84, 0x4f, 0xdd, 0x6f, 0x70, 0x11, 0xfd, 0x1f, 0xc2, 0xc2, 0xa8, 0x32, 0xb9, 0xa8, 0x10,
- 0x4c, 0x06, 0xee, 0x37, 0x98, 0xeb, 0x29, 0x99, 0xfc, 0xdb, 0xe8, 0xc2, 0xd2, 0x46, 0xbf, 0xef,
- 0x5d, 0xed, 0xb9, 0xa1, 0x1d, 0x86, 0xd4, 0x3d, 0x1f, 0x84, 0xb8, 0xc8, 0xaa, 0x46, 0x3a, 0x54,
- 0x28, 0x7e, 0xe3, 0x06, 0x2e, 0xf1, 0x79, 0x78, 0xeb, 0x66, 0xd4, 0x36, 0x96, 0x41, 0xcf, 0x32,
- 0x26, 0xa3, 0xf0, 0xa7, 0x09, 0x40, 0xbb, 0x38, 0x74, 0x3a, 0x26, 0xee, 0x91, 0xb0, 0x48, 0x0c,
- 0xd8, 0xf6, 0xa1, 0x5c, 0x09, 0x77, 0xa1, 0x6a, 0xca, 0x16, 0x9a, 0x87, 0xa9, 0x36, 0xa1, 0x0e,
- 0x6e, 0x96, 0xf8, 0xc4, 0x8b, 0x06, 0x5a, 0x84, 0xb2, 0x4f, 0xac, 0xd0, 0xbe, 0x08, 0x9a, 0x93,
- 0x62, 0xb7, 0xf9, 0xe4, 0xcc, 0xbe, 0x08, 0x50, 0x13, 0xca, 0xa1, 0xdb, 0xc3, 0x64, 0x10, 0x36,
- 0xa7, 0xee, 0x69, 0x8f, 0xa7, 0xcc, 0x61, 0x93, 0x75, 0x09, 0x82, 0x8e, 0xd5, 0xc5, 0x57, 0xcd,
- 0x69, 0x61, 0x21, 0x08, 0x3a, 0xcf, 0xf1, 0x15, 0x5a, 0x85, 0x5a, 0xd7, 0x27, 0x97, 0xbe, 0xd5,
- 0x21, 0x6c, 0xf7, 0x96, 0x39, 0x13, 0x38, 0x69, 0x9f, 0x51, 0xd0, 0x12, 0x54, 0x7c, 0x62, 0xf5,
- 0xe9, 0xc0, 0xc7, 0xcd, 0x2a, 0xb7, 0x56, 0xf6, 0xc9, 0x09, 0x6b, 0xa2, 0x67, 0x30, 0x23, 0xfc,
- 0xb4, 0xfa, 0x36, 0xb5, 0x7b, 0x41, 0x13, 0xf8, 0x60, 0x6f, 0xaa, 0xc1, 0xf2, 0xb8, 0xd4, 0x85,
- 0xd0, 0x09, 0x97, 0xf9, 0x6c, 0xb2, 0x52, 0x69, 0x54, 0x8d, 0xdb, 0x30, 0x97, 0x08, 0x9d, 0x0c,
- 0xe9, 0x21, 0x2c, 0x6e, 0xf1, 0xb5, 0x1d, 0x8b, 0x53, 0x81, 0xa5, 0xa5, 0x43, 0x33, 0xad, 0x4e,
- 0x9a, 0xfa, 0xa7, 0x06, 0xb3, 0x7b, 0x38, 0xdc, 0xa0, 0x4e, 0xc7, 0x7d, 0x53, 0x68, 0xf2, 0xee,
- 0x40, 0xd5, 0x21, 0xbd, 0x9e, 0x1b, 0x5a, 0x6e, 0x4b, 0xce, 0x5f, 0x45, 0x10, 0x0e, 0x5a, 0x6c,
- 0x66, 0xfb, 0x14, 0xb7, 0xdd, 0xaf, 0xf9, 0x14, 0x56, 0x4d, 0xd9, 0x42, 0x9f, 0xc0, 0x74, 0x9b,
- 0xd0, 0x9e, 0x1d, 0xf2, 0x29, 0xbc, 0xb9, 0x7e, 0x6f, 0x68, 0x24, 0xe5, 0xd3, 0xda, 0x2e, 0x97,
- 0x33, 0xa5, 0x3c, 0xdb, 0x15, 0x7d, 0x3b, 0xec, 0xf0, 0x19, 0xae, 0x9b, 0xfc, 0xdb, 0x78, 0x06,
- 0xd3, 0x42, 0x0a, 0x95, 0xa1, 0xf4, 0xfa, 0xe0, 0xa4, 0x71, 0x83, 0x7d, 0x9c, 0x6d, 0x98, 0x0d,
- 0x0d, 0x01, 0x4c, 0x9f, 0x6d, 0x98, 0xd6, 0xde, 0xeb, 0xc6, 0x04, 0xaa, 0x41, 0x99, 0x7d, 0x6f,
- 0xbe, 0x5e, 0x6f, 0x94, 0x8c, 0xc7, 0x80, 0xe2, 0xc6, 0xd4, 0xa6, 0x6b, 0xd9, 0xa1, 0xcd, 0xc7,
- 0x5e, 0x37, 0xf9, 0x37, 0x9b, 0x96, 0x7d, 0x3b, 0x78, 0x41, 0x1c, 0xdb, 0xdb, 0xa4, 0xb6, 0xef,
- 0x74, 0x0a, 0x6d, 0x39, 0xe3, 0x29, 0x34, 0xd3, 0xea, 0xa4, 0xf9, 0x79, 0x98, 0x7a, 0x63, 0x7b,
- 0x03, 0x2c, 0xef, 0x11, 0xd1, 0x30, 0xfe, 0xa6, 0x41, 0x93, 0xaf, 0x97, 0x53, 0x32, 0xa0, 0x0e,
- 0x16, 0xbd, 0x8a, 0xcc, 0xd9, 0xa7, 0x30, 0x1b, 0x70, 0x55, 0x56, 0xac, 0xeb, 0x44, 0x6e, 0xd7,
- 0x86, 0x10, 0x36, 0x13, 0x47, 0xb3, 0x54, 0x70, 0xce, 0x9d, 0xe1, 0xd3, 0x5b, 0x37, 0xeb, 0x41,
- 0xcc, 0x41, 0xb4, 0x02, 0x10, 0xda, 0xf4, 0x02, 0x87, 0x16, 0xc5, 0x6d, 0x3e, 0xd1, 0x75, 0xb3,
- 0x2a, 0x28, 0x26, 0x6e, 0x1b, 0xcf, 0x60, 0x29, 0x63, 0x50, 0xea, 0x46, 0xa5, 0x38, 0x18, 0x78,
- 0xe1, 0xf0, 0x46, 0x15, 0x2d, 0x63, 0x03, 0x6a, 0xbb, 0x81, 0xd3, 0x2d, 0x12, 0xff, 0x87, 0x50,
- 0x17, 0x2a, 0x54, 0xcc, 0x31, 0xa5, 0x84, 0xca, 0x39, 0x17, 0x0d, 0xe3, 0x8f, 0x1a, 0xdc, 0x7a,
- 0x45, 0x5d, 0xb6, 0x79, 0xda, 0x45, 0x42, 0xdd, 0x80, 0x12, 0x1b, 0xbd, 0x38, 0x5b, 0xd9, 0x67,
- 0xe2, 0xc8, 0x2d, 0x25, 0x8f, 0x5c, 0x74, 0x1f, 0xea, 0xc4, 0x6b, 0x59, 0x11, 0x5f, 0x04, 0xad,
- 0x46, 0xbc, 0x96, 0x39, 0x14, 0x89, 0x0e, 0xc5, 0xa9, 0xd8, 0xa1, 0xf8, 0xd9, 0x64, 0x65, 0xba,
- 0x51, 0x36, 0x9a, 0xd0, 0x50, 0x3e, 0x8b, 0xe1, 0x7d, 0x36, 0x59, 0xd1, 0x1a, 0x13, 0x46, 0x07,
- 0xe6, 0x77, 0x5d, 0xbf, 0x75, 0x88, 0xe9, 0x05, 0xde, 0xb4, 0x83, 0x42, 0x3b, 0x7e, 0x19, 0xaa,
- 0x43, 0x07, 0x83, 0xe6, 0xc4, 0xbd, 0x12, 0x9b, 0xd6, 0x88, 0x60, 0x7c, 0x00, 0xb7, 0x47, 0x2c,
- 0xa9, 0xad, 0x75, 0x6e, 0x07, 0x62, 0x69, 0x57, 0x4d, 0xfe, 0x6d, 0x7c, 0xab, 0xc1, 0xac, 0x38,
- 0xa3, 0x76, 0x09, 0xed, 0xfe, 0x27, 0x97, 0x34, 0x7b, 0xd0, 0xc4, 0x3d, 0x89, 0x1e, 0x55, 0x4b,
- 0x07, 0x81, 0x89, 0x99, 0xb3, 0x07, 0xfe, 0x09, 0x25, 0x17, 0x14, 0x07, 0x41, 0xc1, 0xe3, 0x92,
- 0x72, 0x75, 0xb1, 0xe3, 0x52, 0x10, 0x0e, 0x5a, 0xc6, 0xff, 0x83, 0x9e, 0x65, 0x4d, 0x06, 0x70,
- 0x15, 0x6a, 0xae, 0x6f, 0xf5, 0x25, 0x59, 0x6e, 0x0c, 0x70, 0x23, 0x41, 0xe1, 0xec, 0xe9, 0x57,
- 0x03, 0x3b, 0xe8, 0x5c, 0x9b, 0xb3, 0x01, 0x57, 0x17, 0x73, 0x56, 0x10, 0x86, 0xce, 0xa6, 0xad,
- 0xbd, 0xad, 0xb3, 0x6d, 0xb8, 0x3b, 0x7a, 0x3b, 0xed, 0x52, 0xd2, 0x7b, 0x69, 0xbe, 0x28, 0xb8,
- 0xdd, 0x06, 0xd4, 0x93, 0xbe, 0xb2, 0x4f, 0xe3, 0x3e, 0xac, 0xe6, 0xda, 0x91, 0x93, 0x7c, 0x00,
- 0x73, 0x42, 0x64, 0x73, 0xe0, 0xb7, 0xbc, 0x42, 0xcf, 0xb9, 0xf7, 0x61, 0x3e, 0xa9, 0x6a, 0xcc,
- 0xbd, 0x82, 0x01, 0xf1, 0xdd, 0xba, 0x45, 0xfc, 0xb6, 0x7b, 0x51, 0x70, 0x9e, 0xda, 0x03, 0xcf,
- 0xb3, 0xf8, 0xcd, 0x28, 0xe7, 0x89, 0x11, 0x4e, 0xd8, 0xed, 0xf8, 0x01, 0xcc, 0x25, 0xcc, 0x8c,
- 0x3d, 0xf6, 0xbe, 0x9d, 0x80, 0xc6, 0x29, 0x0e, 0x8b, 0xbb, 0xf4, 0x09, 0x94, 0xb1, 0x1f, 0x52,
- 0x17, 0x8b, 0x23, 0xa2, 0xb6, 0x7e, 0x77, 0xd8, 0x61, 0x54, 0xfd, 0xda, 0x8e, 0x1f, 0xd2, 0x2b,
- 0x73, 0x28, 0xae, 0xff, 0x46, 0x83, 0x29, 0x4e, 0x62, 0x93, 0xc9, 0x9e, 0x6c, 0xe2, 0xc0, 0x60,
- 0x9f, 0x68, 0x05, 0xaa, 0xfc, 0x4a, 0xb4, 0x82, 0x90, 0x8a, 0x81, 0xee, 0xdf, 0x30, 0x2b, 0x9c,
- 0x74, 0x1a, 0x52, 0x74, 0x1f, 0x6a, 0x82, 0xed, 0xfa, 0xe1, 0xb3, 0x75, 0x7e, 0xba, 0x4e, 0xed,
- 0xdf, 0x30, 0x81, 0x13, 0x0f, 0x18, 0x0d, 0xad, 0x82, 0x68, 0x59, 0xe7, 0x84, 0x78, 0xe2, 0x01,
- 0xb9, 0x7f, 0xc3, 0x14, 0x5a, 0x37, 0x09, 0xf1, 0x36, 0xcb, 0xf2, 0x0a, 0x36, 0xe6, 0x60, 0x36,
- 0xe6, 0xaa, 0x5c, 0x2a, 0x5f, 0xc0, 0xdc, 0x36, 0xf6, 0xf0, 0x75, 0x4c, 0x1a, 0x82, 0xc9, 0x2e,
- 0xbe, 0x12, 0xe1, 0xa9, 0x9a, 0xfc, 0xdb, 0x58, 0x80, 0xf9, 0xa4, 0x7a, 0x69, 0xd6, 0x61, 0x89,
- 0x5f, 0x10, 0x12, 0x8a, 0xb7, 0x06, 0x41, 0x48, 0x7a, 0xfb, 0x84, 0x74, 0x83, 0x82, 0xc6, 0xf9,
- 0x7a, 0x9c, 0x88, 0xad, 0xc7, 0x65, 0xd0, 0xb3, 0x8c, 0x48, 0x17, 0x8e, 0xa0, 0xb9, 0x69, 0x3b,
- 0xdd, 0x41, 0xff, 0x7a, 0x3c, 0x30, 0x9e, 0xc0, 0x52, 0x86, 0xbe, 0x31, 0xdb, 0xa5, 0x0b, 0xf7,
- 0xb3, 0x36, 0x72, 0xe1, 0x3d, 0x9b, 0x19, 0x8b, 0x87, 0x60, 0x8c, 0x33, 0x26, 0x63, 0xb2, 0x0f,
- 0x88, 0xdd, 0x75, 0x2f, 0x5c, 0x07, 0xfb, 0x85, 0xee, 0x54, 0x63, 0x0b, 0xe6, 0x12, 0x9a, 0x64,
- 0x1c, 0x3e, 0x04, 0xe4, 0x09, 0x92, 0x15, 0x74, 0x08, 0x0d, 0x2d, 0xdf, 0xee, 0x0d, 0x6f, 0xd0,
- 0x86, 0xe4, 0x9c, 0x32, 0xc6, 0x91, 0xdd, 0xe3, 0x53, 0xb4, 0x87, 0xc3, 0x03, 0xbf, 0x4d, 0x36,
- 0xae, 0x23, 0x39, 0x34, 0xfe, 0x17, 0x96, 0x32, 0xf4, 0x49, 0xd7, 0xee, 0x02, 0xa8, 0xac, 0x50,
- 0x4e, 0x54, 0x8c, 0xc2, 0x9c, 0xd9, 0xb2, 0x3d, 0x67, 0xe0, 0xd9, 0x21, 0xde, 0xea, 0x60, 0xa7,
- 0x1b, 0x0c, 0x7a, 0x45, 0x9c, 0xf9, 0x6f, 0x58, 0xca, 0xd0, 0x27, 0x9d, 0xd1, 0xa1, 0xe2, 0x48,
- 0x9a, 0x8c, 0x4e, 0xd4, 0x66, 0x93, 0xb4, 0x87, 0xc3, 0x53, 0xdf, 0xee, 0x07, 0x1d, 0x52, 0x04,
- 0x90, 0x30, 0xde, 0x83, 0xb9, 0x84, 0xa6, 0x31, 0x8b, 0xf5, 0x3b, 0x0d, 0x1e, 0x64, 0x2d, 0xa0,
- 0x6b, 0x70, 0x83, 0xe5, 0xa4, 0x9d, 0x30, 0xec, 0x5b, 0xea, 0xa2, 0x2b, 0xb3, 0xf6, 0x4b, 0xea,
- 0xb1, 0x8b, 0x80, 0xb3, 0xec, 0x41, 0xd8, 0x91, 0x29, 0x17, 0x97, 0xdd, 0x18, 0x84, 0x1d, 0xe3,
- 0x11, 0x3c, 0x1c, 0xef, 0x92, 0x5c, 0xd5, 0xbf, 0xd3, 0x60, 0x7e, 0x0f, 0x87, 0xa6, 0x7d, 0xb9,
- 0xd5, 0xb1, 0xfd, 0x8b, 0x62, 0x00, 0xc3, 0x03, 0x98, 0x69, 0x53, 0xd2, 0xb3, 0x12, 0x28, 0x43,
- 0xd5, 0xac, 0x33, 0x62, 0xf4, 0xa6, 0x5d, 0x85, 0x5a, 0x48, 0xac, 0xc4, 0xab, 0xb8, 0x6a, 0x42,
- 0x48, 0x86, 0x02, 0xc6, 0x5f, 0x26, 0xe1, 0xf6, 0x88, 0x4b, 0x32, 0xf8, 0xfb, 0x50, 0xa3, 0xf6,
- 0xa5, 0xe5, 0x08, 0x72, 0x53, 0xe3, 0x77, 0xcd, 0xbb, 0xb1, 0x74, 0x32, 0xdd, 0x67, 0x2d, 0x22,
- 0x99, 0x40, 0x23, 0xae, 0xfe, 0xf7, 0x12, 0x54, 0x23, 0x0e, 0x5a, 0x84, 0xf2, 0xb9, 0x47, 0xce,
- 0xd9, 0xc3, 0x47, 0x2c, 0xa8, 0x69, 0xd6, 0x3c, 0x68, 0x45, 0xb0, 0xcc, 0x84, 0x82, 0x65, 0xd0,
- 0x0a, 0x54, 0x7c, 0x7c, 0x29, 0xae, 0x5f, 0xee, 0xfc, 0xe6, 0x44, 0x53, 0x33, 0xcb, 0x3e, 0xbe,
- 0x64, 0x37, 0x30, 0x63, 0xb3, 0x57, 0x3d, 0x67, 0x4f, 0x2a, 0x36, 0xf1, 0x5a, 0x9c, 0x7d, 0x0c,
- 0x55, 0xd2, 0xc7, 0xd4, 0x0e, 0xd9, 0xd8, 0xa7, 0x78, 0x3e, 0xfc, 0xf1, 0x5b, 0x0e, 0x60, 0xed,
- 0x78, 0xd8, 0xd1, 0x54, 0x3a, 0x58, 0xcc, 0x59, 0x4c, 0x94, 0x52, 0x01, 0x7a, 0xd4, 0xa9, 0x7d,
- 0x19, 0xc9, 0xb3, 0x55, 0xc4, 0x9c, 0xea, 0x91, 0x16, 0xe6, 0xb8, 0xc7, 0x14, 0x77, 0xe8, 0x90,
- 0xb4, 0x30, 0x07, 0x3d, 0xf0, 0xa5, 0x60, 0x55, 0x04, 0xcb, 0xc7, 0x97, 0x9c, 0xf5, 0x10, 0x6e,
- 0x0e, 0x47, 0x6a, 0x9d, 0x5f, 0xb1, 0x9d, 0x5f, 0x15, 0x99, 0x9f, 0x1c, 0xeb, 0x26, 0xa3, 0x31,
- 0xa9, 0xe1, 0x80, 0xa5, 0x14, 0x08, 0x29, 0x39, 0x64, 0x2e, 0x65, 0xb8, 0x50, 0x55, 0xee, 0xd4,
- 0xa0, 0xfc, 0xf2, 0xe8, 0xf9, 0xd1, 0xf1, 0xab, 0xa3, 0xc6, 0x0d, 0x54, 0x85, 0xa9, 0x8d, 0xed,
- 0xed, 0x9d, 0x6d, 0x91, 0xbf, 0x6f, 0x1d, 0x9f, 0x1c, 0xec, 0x6c, 0x8b, 0xfc, 0x7d, 0x7b, 0xe7,
- 0xc5, 0xce, 0xd9, 0xce, 0x76, 0xa3, 0x84, 0xea, 0x50, 0x39, 0x3c, 0xde, 0x3e, 0xd8, 0x65, 0xac,
- 0x49, 0xc6, 0x32, 0x77, 0x8e, 0x36, 0x0e, 0x77, 0xb6, 0x1b, 0x53, 0xa8, 0x01, 0xf5, 0xb3, 0xcf,
- 0x4f, 0x76, 0xac, 0xad, 0xfd, 0x8d, 0xa3, 0xbd, 0x9d, 0xed, 0xc6, 0xb4, 0xf1, 0x06, 0x9a, 0xa7,
- 0xd8, 0xa6, 0x4e, 0x67, 0xd7, 0xf5, 0x70, 0xb0, 0x79, 0xc5, 0x8e, 0xcb, 0x22, 0xab, 0x7a, 0x1e,
- 0xa6, 0xbe, 0x1a, 0x60, 0x99, 0x61, 0x54, 0x4d, 0xd1, 0x18, 0xe6, 0x7a, 0xa5, 0x28, 0xd7, 0x33,
- 0x3e, 0x86, 0xa5, 0x0c, 0xbb, 0xea, 0x05, 0xd6, 0x66, 0x64, 0xbe, 0x68, 0xeb, 0xa6, 0x68, 0x18,
- 0x7f, 0xd0, 0xe0, 0x4e, 0xa2, 0xcf, 0x16, 0xf1, 0x43, 0xec, 0x87, 0x3f, 0x83, 0xbb, 0xe8, 0x3d,
- 0x68, 0x38, 0x9d, 0x81, 0xdf, 0xc5, 0x2c, 0x05, 0x15, 0x5e, 0x4a, 0x8c, 0xed, 0x96, 0xa4, 0x47,
- 0x87, 0xc4, 0x15, 0x2c, 0x67, 0x7b, 0x29, 0x07, 0xd7, 0x84, 0x72, 0xcf, 0x0e, 0x9d, 0x4e, 0x34,
- 0xbc, 0x61, 0x13, 0xad, 0x00, 0xf0, 0x4f, 0x2b, 0x76, 0xe9, 0x56, 0x39, 0x65, 0xdb, 0x0e, 0x6d,
- 0x74, 0x0f, 0xea, 0xd8, 0x6f, 0x59, 0xa4, 0x6d, 0x71, 0x9a, 0xc4, 0xfe, 0x00, 0xfb, 0xad, 0xe3,
- 0xf6, 0x21, 0xa3, 0x18, 0x7f, 0xd5, 0xe0, 0xd6, 0x09, 0xc5, 0x12, 0x41, 0x13, 0x51, 0xc9, 0x4c,
- 0xff, 0xb4, 0x9f, 0x80, 0x68, 0x7c, 0x0a, 0xb3, 0x11, 0x58, 0xf1, 0x36, 0xf9, 0xe3, 0x10, 0xc7,
- 0x88, 0x14, 0x3c, 0x83, 0x1a, 0x39, 0xff, 0x25, 0x76, 0x42, 0xab, 0xcf, 0x5e, 0x96, 0xa5, 0x64,
- 0xd7, 0x63, 0xce, 0x3a, 0x21, 0xc4, 0x33, 0x81, 0x44, 0xdf, 0x06, 0x82, 0x86, 0x1a, 0x89, 0x8c,
- 0xec, 0x77, 0x1a, 0x4c, 0x0b, 0x60, 0x70, 0x98, 0xcd, 0x68, 0x51, 0x36, 0xc3, 0x4e, 0x1f, 0xfe,
- 0x04, 0x10, 0x13, 0xc9, 0xbf, 0xd1, 0xff, 0xc0, 0x52, 0x74, 0xe8, 0x13, 0xea, 0x7e, 0xc3, 0x37,
- 0x94, 0xd5, 0xc1, 0x76, 0x0b, 0x53, 0x79, 0x96, 0x2e, 0x0e, 0x2f, 0x81, 0x88, 0xbf, 0xcf, 0xd9,
- 0xe8, 0x1d, 0xb8, 0xd9, 0x73, 0xd9, 0xcb, 0xdf, 0xa2, 0xb8, 0xdd, 0xb3, 0xfb, 0x41, 0x73, 0x92,
- 0x3f, 0x47, 0x67, 0x04, 0xd5, 0x14, 0x44, 0xe3, 0xb7, 0x1a, 0x2c, 0x70, 0x2f, 0xf7, 0xcf, 0xce,
- 0x4e, 0x8a, 0x03, 0xbe, 0x8f, 0x12, 0x80, 0x6f, 0x1a, 0x33, 0x1d, 0x02, 0xc0, 0x31, 0x44, 0xb7,
- 0x94, 0x40, 0x74, 0x8d, 0x25, 0x58, 0x4c, 0xf9, 0x23, 0xe3, 0x77, 0x0a, 0x2b, 0x7b, 0x38, 0x14,
- 0x01, 0xdf, 0x76, 0x29, 0x76, 0xae, 0x03, 0xa6, 0xff, 0x2f, 0xb8, 0x9b, 0xa7, 0x74, 0x0c, 0x5c,
- 0xff, 0x7b, 0x0d, 0xe6, 0xb7, 0x3c, 0xe2, 0x63, 0x76, 0xcf, 0xf2, 0xc9, 0x2f, 0x14, 0xb4, 0x49,
- 0xbe, 0xb2, 0x26, 0x72, 0x57, 0x16, 0xe7, 0xc7, 0x82, 0x5b, 0x1a, 0x17, 0x5c, 0x63, 0x11, 0x6e,
- 0x8f, 0xf8, 0x26, 0x03, 0xf8, 0x67, 0x0d, 0x96, 0x13, 0x9c, 0x03, 0x3f, 0xc4, 0xd4, 0xb7, 0x7f,
- 0x16, 0xef, 0x33, 0x37, 0x72, 0xe9, 0x27, 0xe0, 0x38, 0xab, 0xb0, 0x92, 0xe3, 0xbc, 0x42, 0xd9,
- 0x59, 0x24, 0xde, 0x5c, 0x1f, 0xca, 0x9e, 0x56, 0x27, 0x4c, 0xad, 0xff, 0x63, 0x85, 0xd7, 0xe4,
- 0x86, 0xd5, 0x1d, 0x51, 0xb4, 0x44, 0x5f, 0x42, 0x63, 0xb4, 0x92, 0x88, 0x56, 0xd3, 0x56, 0x12,
- 0x25, 0x4b, 0xfd, 0x5e, 0xbe, 0x80, 0x1c, 0x57, 0xf5, 0x87, 0xef, 0x1f, 0x4f, 0x55, 0x26, 0x74,
- 0xed, 0x63, 0xe4, 0x0c, 0x4b, 0x81, 0xb1, 0x3a, 0x21, 0x8a, 0x6b, 0xc8, 0x2c, 0x49, 0xea, 0xf7,
- 0xc7, 0x48, 0x24, 0x8c, 0x68, 0xcc, 0xc8, 0x11, 0x80, 0xaa, 0x00, 0xa2, 0xa5, 0x64, 0xdf, 0x58,
- 0x0d, 0x52, 0xd7, 0xb3, 0x58, 0x69, 0x7d, 0xaf, 0xe1, 0x66, 0xb2, 0x92, 0x87, 0x56, 0xa2, 0x57,
- 0x50, 0x56, 0x4d, 0x51, 0xbf, 0x9b, 0xc7, 0xce, 0xd4, 0x9d, 0xac, 0xb2, 0x29, 0xdd, 0x99, 0xa5,
- 0x3c, 0xa5, 0x3b, 0xbb, 0x38, 0x17, 0xd7, 0xdd, 0x06, 0x94, 0x2e, 0x93, 0xa1, 0x28, 0x96, 0xb9,
- 0xf5, 0x3a, 0xdd, 0x18, 0x27, 0x92, 0xb6, 0xf3, 0x0b, 0xa8, 0xc5, 0x8a, 0x46, 0x28, 0x8a, 0x6a,
- 0xba, 0x08, 0xa7, 0xdf, 0xc9, 0xe4, 0xa5, 0x55, 0x7e, 0x09, 0x8d, 0xd1, 0x8c, 0x40, 0xad, 0xc4,
- 0x9c, 0x52, 0x94, 0x5a, 0x89, 0xb9, 0xc5, 0xa5, 0x98, 0x85, 0x13, 0x00, 0x55, 0x65, 0x51, 0x8b,
- 0x24, 0x55, 0xe6, 0x51, 0x8b, 0x24, 0x5d, 0x94, 0x89, 0xe9, 0x7b, 0xaa, 0x31, 0x9f, 0x47, 0xcb,
- 0x27, 0xca, 0xe7, 0x9c, 0x3a, 0x8d, 0xf2, 0x39, 0xaf, 0xf2, 0x32, 0xb2, 0x7b, 0x52, 0x85, 0x09,
- 0xb5, 0x7b, 0xf2, 0x0a, 0x31, 0x6a, 0xf7, 0xe4, 0x56, 0x35, 0xe2, 0x81, 0xf9, 0x3f, 0x98, 0xdc,
- 0x0d, 0x9c, 0x2e, 0x9a, 0x8b, 0x7a, 0xa9, 0xb2, 0x86, 0x3e, 0x9f, 0x24, 0xa6, 0x7b, 0xef, 0x43,
- 0x65, 0x08, 0xf4, 0xa3, 0xc5, 0xa1, 0xf0, 0x48, 0xb9, 0x42, 0x6f, 0xa6, 0x19, 0x69, 0x4d, 0xaf,
- 0x60, 0x26, 0x01, 0xd7, 0xa3, 0xe5, 0xc8, 0x76, 0x46, 0xbd, 0x40, 0x5f, 0xc9, 0xe1, 0xa6, 0xa3,
- 0x78, 0x04, 0xa0, 0xf0, 0x74, 0x35, 0xf3, 0x29, 0xb4, 0x5f, 0xcd, 0x7c, 0x06, 0xfc, 0x9e, 0xdc,
- 0x66, 0x69, 0x6c, 0x5c, 0x6d, 0xb3, 0x5c, 0x94, 0x5e, 0x6d, 0xb3, 0x7c, 0x68, 0x3d, 0xee, 0x37,
- 0xb7, 0x33, 0x0a, 0x6b, 0xc7, 0xed, 0xe4, 0x00, 0xec, 0x71, 0x3b, 0x79, 0xa8, 0x78, 0xdc, 0xce,
- 0x20, 0x5d, 0xec, 0x95, 0xb8, 0x34, 0x7a, 0x94, 0xb7, 0xc3, 0x92, 0x00, 0xb9, 0xfe, 0xee, 0x8f,
- 0xca, 0xa5, 0xc3, 0xf8, 0x12, 0xea, 0x71, 0x80, 0x1a, 0xdd, 0x49, 0xea, 0x48, 0xa0, 0x69, 0xfa,
- 0x72, 0x36, 0x53, 0x6a, 0xad, 0xfc, 0xf0, 0xfd, 0xe3, 0xc9, 0x8a, 0xd6, 0xd0, 0x9e, 0x6a, 0xe8,
- 0x57, 0x1a, 0xe8, 0xf9, 0x80, 0x19, 0x7a, 0x6f, 0x9c, 0xa7, 0x49, 0x9b, 0xef, 0xbf, 0x8d, 0x68,
- 0x6a, 0x5c, 0x8f, 0x35, 0x76, 0x3e, 0xc6, 0x70, 0x6e, 0x75, 0x3e, 0xa6, 0x31, 0x76, 0x75, 0x3e,
- 0x66, 0x00, 0xe3, 0xf1, 0x60, 0x3d, 0x87, 0x6a, 0x04, 0x01, 0xa3, 0x66, 0x1e, 0x80, 0xad, 0x2f,
- 0x65, 0x70, 0xd2, 0xca, 0xce, 0xa0, 0x1e, 0xc7, 0x76, 0x55, 0xe4, 0x33, 0x00, 0x65, 0x15, 0xf9,
- 0x4c, 0x38, 0x78, 0xe4, 0x56, 0x50, 0xc0, 0x61, 0xec, 0x56, 0x48, 0xe1, 0x92, 0xb1, 0x5b, 0x21,
- 0x8d, 0x34, 0xc6, 0x57, 0x26, 0xe6, 0xbf, 0x06, 0x24, 0x61, 0x3f, 0x14, 0xaf, 0xd0, 0x67, 0x22,
- 0x8c, 0xea, 0xfc, 0xcb, 0xc5, 0x0c, 0x63, 0x46, 0x9e, 0x6a, 0xec, 0x98, 0x4d, 0x01, 0x7a, 0xca,
- 0x4c, 0x1e, 0x76, 0xa8, 0xcc, 0xe4, 0xa2, 0x81, 0xf1, 0xb1, 0xec, 0x40, 0x59, 0xfe, 0xbe, 0x83,
- 0x16, 0xa2, 0x8e, 0x89, 0xbf, 0x82, 0xf4, 0xc5, 0x14, 0x3d, 0x1d, 0xe5, 0x53, 0xa8, 0xc5, 0x90,
- 0x3f, 0x14, 0xbf, 0xac, 0x46, 0x10, 0x3d, 0x15, 0xe5, 0x0c, 0xa8, 0x30, 0x19, 0x80, 0x5f, 0xb3,
- 0x77, 0xf6, 0x18, 0x40, 0x0e, 0x7d, 0x30, 0x6e, 0x2b, 0x8c, 0xda, 0xfd, 0xf0, 0xed, 0x84, 0xd3,
- 0x63, 0xfb, 0x1c, 0x66, 0x12, 0x28, 0x93, 0xba, 0x01, 0xb2, 0x40, 0x40, 0x75, 0x03, 0x64, 0x42,
- 0x53, 0xc9, 0x11, 0xfa, 0x30, 0x9f, 0x05, 0x12, 0xa0, 0x07, 0x6a, 0xc3, 0xe4, 0x02, 0x1d, 0xfa,
- 0xc3, 0xf1, 0x42, 0x59, 0xf6, 0x30, 0xcc, 0xa6, 0xe0, 0x16, 0xb5, 0xa4, 0xf2, 0x10, 0x20, 0xb5,
- 0xa4, 0x72, 0xb1, 0x9a, 0xa4, 0x99, 0x0e, 0xa0, 0x74, 0xa1, 0x04, 0xc5, 0x5e, 0xcf, 0x39, 0x95,
- 0x1a, 0x75, 0x45, 0x8c, 0xa9, 0xb3, 0x24, 0xce, 0x34, 0x0c, 0xb3, 0xa9, 0x22, 0x89, 0x1a, 0x50,
- 0x5e, 0x3d, 0x46, 0x0d, 0x28, 0xb7, 0xc2, 0x92, 0x1c, 0xd0, 0x3e, 0x54, 0x86, 0x30, 0x84, 0x7a,
- 0x4e, 0x8c, 0x40, 0x2c, 0xea, 0x39, 0x91, 0x42, 0x2c, 0x62, 0x8b, 0xe9, 0x0b, 0xb8, 0x35, 0x92,
- 0x97, 0xa3, 0xbb, 0x89, 0x77, 0x51, 0x0a, 0x40, 0xd0, 0x57, 0x73, 0xf9, 0x69, 0xf5, 0x14, 0x16,
- 0xb2, 0xd3, 0x70, 0xf4, 0x4e, 0x6c, 0x59, 0xe6, 0xe7, 0xfe, 0xfa, 0xa3, 0x1f, 0x13, 0x4b, 0x1f,
- 0x21, 0xaf, 0x60, 0x26, 0x91, 0x50, 0xaa, 0xfd, 0x91, 0x95, 0xda, 0xab, 0xfd, 0x91, 0x9d, 0x5c,
- 0xc7, 0x06, 0x43, 0x46, 0x12, 0xf0, 0x61, 0xa6, 0x8a, 0x1e, 0x66, 0xaa, 0x18, 0xc9, 0xc2, 0xf5,
- 0x77, 0x7e, 0x44, 0x2a, 0xf3, 0xb9, 0x3f, 0x9a, 0xaa, 0xc6, 0x13, 0xcf, 0xcc, 0x9c, 0x38, 0x9e,
- 0x78, 0x66, 0x67, 0xb9, 0x31, 0x0b, 0x9b, 0x4f, 0x5f, 0x33, 0x69, 0xcf, 0x3e, 0x5f, 0x73, 0x48,
- 0xef, 0x89, 0xf8, 0xfc, 0x88, 0xd0, 0x8b, 0x27, 0x42, 0xc7, 0x13, 0xfe, 0x67, 0xee, 0x93, 0x0b,
- 0x22, 0xdb, 0xfd, 0xf3, 0xf3, 0x69, 0x4e, 0x7a, 0xf6, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf7,
- 0x13, 0x59, 0x6b, 0xde, 0x2b, 0x00, 0x00,
+ // 2994 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xcb, 0x6f, 0xdc, 0xd6,
+ 0xd5, 0x37, 0x35, 0x92, 0x66, 0xe6, 0xcc, 0xc8, 0x1e, 0x5d, 0xc9, 0xd2, 0x88, 0xd6, 0xc3, 0xa6,
+ 0x1d, 0xc7, 0x79, 0xc9, 0x8e, 0xfc, 0x01, 0x5f, 0xf0, 0x3d, 0x10, 0xe8, 0x2d, 0xc5, 0xd6, 0xa3,
+ 0x94, 0x0c, 0x23, 0x06, 0x02, 0x86, 0xe2, 0xdc, 0xd1, 0xb0, 0xe2, 0xf0, 0x4e, 0x2e, 0x39, 0x52,
+ 0x94, 0x55, 0x17, 0x2d, 0x90, 0x55, 0xd1, 0xac, 0x02, 0x74, 0xdd, 0xbf, 0xa0, 0xbb, 0xa2, 0xe8,
+ 0xbe, 0xcb, 0x02, 0x5d, 0xf5, 0x5f, 0xc9, 0xa6, 0xc5, 0x7d, 0x0c, 0x2f, 0x39, 0x24, 0x27, 0x0e,
+ 0xa8, 0xa6, 0x3b, 0xde, 0x73, 0xce, 0x3d, 0xe7, 0xdc, 0x73, 0x9f, 0xe7, 0x77, 0x08, 0x4d, 0x8a,
+ 0x7b, 0x24, 0x70, 0x43, 0x42, 0xaf, 0x3f, 0x0a, 0x30, 0xbd, 0x74, 0x1d, 0xbc, 0xda, 0xa3, 0x24,
+ 0x24, 0x68, 0xf2, 0xdc, 0x0d, 0x6d, 0xef, 0x5a, 0xaf, 0x07, 0x1d, 0x9b, 0xe2, 0x96, 0xa0, 0x1a,
+ 0x07, 0x30, 0x6f, 0x46, 0x3d, 0xb6, 0xbf, 0x76, 0x83, 0x30, 0x30, 0xf1, 0x57, 0x7d, 0x1c, 0x84,
+ 0x68, 0x0d, 0x40, 0x29, 0x6b, 0x6a, 0xf7, 0xb5, 0x27, 0xb5, 0x35, 0xb4, 0x2a, 0xb4, 0xac, 0xaa,
+ 0x4e, 0x66, 0x4c, 0xca, 0x58, 0x83, 0x66, 0x5a, 0x5d, 0xd0, 0x23, 0x7e, 0x80, 0xd1, 0x1c, 0x4c,
+ 0x62, 0x4e, 0xe1, 0xba, 0x2a, 0xa6, 0x6c, 0x19, 0x87, 0xbc, 0x8f, 0xed, 0x5c, 0xec, 0xfb, 0x0e,
+ 0xc5, 0x5d, 0xec, 0x87, 0xb6, 0x57, 0xc4, 0x87, 0x7b, 0xb0, 0x90, 0xa1, 0x4f, 0x38, 0x61, 0x78,
+ 0x30, 0x2d, 0x98, 0x3b, 0x7d, 0xaf, 0x88, 0x15, 0xf4, 0x10, 0xa6, 0x1c, 0x8a, 0xed, 0x10, 0x5b,
+ 0x67, 0x6e, 0xd8, 0xb5, 0x7b, 0xcd, 0x31, 0x3e, 0xa8, 0xba, 0x20, 0x6e, 0x70, 0x9a, 0x31, 0x0b,
+ 0x28, 0x6e, 0x4d, 0xfa, 0xd0, 0x83, 0xbb, 0xbb, 0x36, 0x3d, 0xb3, 0xcf, 0xf1, 0x26, 0xf1, 0x3c,
+ 0xec, 0x84, 0xff, 0x76, 0x3f, 0x9a, 0x30, 0x37, 0x6c, 0x51, 0xfa, 0xb2, 0x05, 0xb7, 0x37, 0x3d,
+ 0x6c, 0xfb, 0xfd, 0x5e, 0x91, 0x90, 0x4f, 0xc3, 0x9d, 0x48, 0x8b, 0x54, 0xfc, 0x02, 0xee, 0x2a,
+ 0xe1, 0x13, 0xf7, 0x1b, 0x5c, 0x44, 0xff, 0x87, 0x30, 0x37, 0xac, 0x4c, 0x2e, 0x2a, 0x04, 0xe3,
+ 0x81, 0xfb, 0x0d, 0xe6, 0x7a, 0x4a, 0x26, 0xff, 0x36, 0x2e, 0x60, 0x61, 0xbd, 0xd7, 0xf3, 0xae,
+ 0x77, 0xdd, 0xd0, 0x0e, 0x43, 0xea, 0x9e, 0xf5, 0x43, 0x5c, 0x64, 0x55, 0x23, 0x1d, 0x2a, 0x14,
+ 0x5f, 0xba, 0x81, 0x4b, 0x7c, 0x1e, 0xde, 0xba, 0x19, 0xb5, 0x8d, 0x45, 0xd0, 0xb3, 0x8c, 0xc9,
+ 0x28, 0xfc, 0x69, 0x0c, 0xd0, 0x0e, 0x0e, 0x9d, 0x8e, 0x89, 0xbb, 0x24, 0x2c, 0x12, 0x03, 0xb6,
+ 0x7d, 0x28, 0x57, 0xc2, 0x5d, 0xa8, 0x9a, 0xb2, 0x85, 0x66, 0x61, 0xa2, 0x4d, 0xa8, 0x83, 0x9b,
+ 0x25, 0x3e, 0xf1, 0xa2, 0x81, 0xe6, 0xa1, 0xec, 0x13, 0x2b, 0xb4, 0xcf, 0x83, 0xe6, 0xb8, 0xd8,
+ 0x6d, 0x3e, 0x39, 0xb5, 0xcf, 0x03, 0xd4, 0x84, 0x72, 0xe8, 0x76, 0x31, 0xe9, 0x87, 0xcd, 0x89,
+ 0xfb, 0xda, 0x93, 0x09, 0x73, 0xd0, 0x64, 0x5d, 0x82, 0xa0, 0x63, 0x5d, 0xe0, 0xeb, 0xe6, 0xa4,
+ 0xb0, 0x10, 0x04, 0x9d, 0x17, 0xf8, 0x1a, 0xad, 0x40, 0xed, 0xc2, 0x27, 0x57, 0xbe, 0xd5, 0x21,
+ 0x6c, 0xf7, 0x96, 0x39, 0x13, 0x38, 0x69, 0x8f, 0x51, 0xd0, 0x02, 0x54, 0x7c, 0x62, 0xf5, 0x68,
+ 0xdf, 0xc7, 0xcd, 0x2a, 0xb7, 0x56, 0xf6, 0xc9, 0x31, 0x6b, 0xa2, 0xe7, 0x30, 0x25, 0xfc, 0xb4,
+ 0x7a, 0x36, 0xb5, 0xbb, 0x41, 0x13, 0xf8, 0x60, 0x6f, 0xab, 0xc1, 0xf2, 0xb8, 0xd4, 0x85, 0xd0,
+ 0x31, 0x97, 0xf9, 0x6c, 0xbc, 0x52, 0x69, 0x54, 0x8d, 0xbb, 0x30, 0x93, 0x08, 0x9d, 0x0c, 0xe9,
+ 0x01, 0xcc, 0x6f, 0xf2, 0xb5, 0x1d, 0x8b, 0x53, 0x81, 0xa5, 0xa5, 0x43, 0x33, 0xad, 0x4e, 0x9a,
+ 0xfa, 0xa7, 0x06, 0xd3, 0xbb, 0x38, 0x5c, 0xa7, 0x4e, 0xc7, 0xbd, 0x2c, 0x34, 0x79, 0xf7, 0xa0,
+ 0xea, 0x90, 0x6e, 0xd7, 0x0d, 0x2d, 0xb7, 0x25, 0xe7, 0xaf, 0x22, 0x08, 0xfb, 0x2d, 0x36, 0xb3,
+ 0x3d, 0x8a, 0xdb, 0xee, 0xd7, 0x7c, 0x0a, 0xab, 0xa6, 0x6c, 0xa1, 0x4f, 0x60, 0xb2, 0x4d, 0x68,
+ 0xd7, 0x0e, 0xf9, 0x14, 0xde, 0x5e, 0xbb, 0x3f, 0x30, 0x92, 0xf2, 0x69, 0x75, 0x87, 0xcb, 0x99,
+ 0x52, 0x9e, 0xed, 0x8a, 0x9e, 0x1d, 0x76, 0xf8, 0x0c, 0xd7, 0x4d, 0xfe, 0x6d, 0x3c, 0x87, 0x49,
+ 0x21, 0x85, 0xca, 0x50, 0x7a, 0xb3, 0x7f, 0xdc, 0xb8, 0xc5, 0x3e, 0x4e, 0xd7, 0xcd, 0x86, 0x86,
+ 0x00, 0x26, 0x4f, 0xd7, 0x4d, 0x6b, 0xf7, 0x4d, 0x63, 0x0c, 0xd5, 0xa0, 0xcc, 0xbe, 0x37, 0xde,
+ 0xac, 0x35, 0x4a, 0xc6, 0x13, 0x40, 0x71, 0x63, 0x6a, 0xd3, 0xb5, 0xec, 0xd0, 0xe6, 0x63, 0xaf,
+ 0x9b, 0xfc, 0x9b, 0x4d, 0xcb, 0x9e, 0x1d, 0xbc, 0x24, 0x8e, 0xed, 0x6d, 0x50, 0xdb, 0x77, 0x3a,
+ 0x85, 0xb6, 0x9c, 0xf1, 0x0c, 0x9a, 0x69, 0x75, 0xd2, 0xfc, 0x2c, 0x4c, 0x5c, 0xda, 0x5e, 0x1f,
+ 0xcb, 0x7b, 0x44, 0x34, 0x8c, 0xbf, 0x6b, 0xd0, 0xe4, 0xeb, 0xe5, 0x84, 0xf4, 0xa9, 0x83, 0x45,
+ 0xaf, 0x22, 0x73, 0xf6, 0x29, 0x4c, 0x07, 0x5c, 0x95, 0x15, 0xeb, 0x3a, 0x96, 0xdb, 0xb5, 0x21,
+ 0x84, 0xcd, 0xc4, 0xd1, 0x2c, 0x15, 0x9c, 0x71, 0x67, 0xf8, 0xf4, 0xd6, 0xcd, 0x7a, 0x10, 0x73,
+ 0x10, 0x2d, 0x01, 0x84, 0x36, 0x3d, 0xc7, 0xa1, 0x45, 0x71, 0x9b, 0x4f, 0x74, 0xdd, 0xac, 0x0a,
+ 0x8a, 0x89, 0xdb, 0xc6, 0x73, 0x58, 0xc8, 0x18, 0x94, 0xba, 0x51, 0x29, 0x0e, 0xfa, 0x5e, 0x38,
+ 0xb8, 0x51, 0x45, 0xcb, 0x58, 0x87, 0xda, 0x4e, 0xe0, 0x5c, 0x14, 0x89, 0xff, 0x23, 0xa8, 0x0b,
+ 0x15, 0x2a, 0xe6, 0x98, 0x52, 0x42, 0xe5, 0x9c, 0x8b, 0x86, 0xf1, 0x47, 0x0d, 0xee, 0xbc, 0xa6,
+ 0x2e, 0xdb, 0x3c, 0xed, 0x22, 0xa1, 0x6e, 0x40, 0x89, 0x8d, 0x5e, 0x9c, 0xad, 0xec, 0x33, 0x71,
+ 0xe4, 0x96, 0x92, 0x47, 0x2e, 0x7a, 0x00, 0x75, 0xe2, 0xb5, 0xac, 0x88, 0x2f, 0x82, 0x56, 0x23,
+ 0x5e, 0xcb, 0x1c, 0x88, 0x44, 0x87, 0xe2, 0x44, 0xec, 0x50, 0xfc, 0x6c, 0xbc, 0x32, 0xd9, 0x28,
+ 0x1b, 0x4d, 0x68, 0x28, 0x9f, 0xc5, 0xf0, 0x3e, 0x1b, 0xaf, 0x68, 0x8d, 0x31, 0xa3, 0x03, 0xb3,
+ 0x3b, 0xae, 0xdf, 0x3a, 0xc0, 0xf4, 0x1c, 0x6f, 0xd8, 0x41, 0xa1, 0x1d, 0xbf, 0x08, 0xd5, 0x81,
+ 0x83, 0x41, 0x73, 0xec, 0x7e, 0x89, 0x4d, 0x6b, 0x44, 0x30, 0x3e, 0x80, 0xbb, 0x43, 0x96, 0xd4,
+ 0xd6, 0x3a, 0xb3, 0x03, 0xb1, 0xb4, 0xab, 0x26, 0xff, 0x36, 0xbe, 0xd5, 0x60, 0x5a, 0x9c, 0x51,
+ 0x3b, 0x84, 0x5e, 0xfc, 0x27, 0x97, 0x34, 0x7b, 0xd0, 0xc4, 0x3d, 0x89, 0x1e, 0x55, 0x0b, 0xfb,
+ 0x81, 0x89, 0x99, 0xb3, 0xfb, 0xfe, 0x31, 0x25, 0xe7, 0x14, 0x07, 0x41, 0xc1, 0xe3, 0x92, 0x72,
+ 0x75, 0xb1, 0xe3, 0x52, 0x10, 0xf6, 0x5b, 0xc6, 0xff, 0x83, 0x9e, 0x65, 0x4d, 0x06, 0x70, 0x05,
+ 0x6a, 0xae, 0x6f, 0xf5, 0x24, 0x59, 0x6e, 0x0c, 0x70, 0x23, 0x41, 0xe1, 0xec, 0xc9, 0x57, 0x7d,
+ 0x3b, 0xe8, 0xdc, 0x98, 0xb3, 0x01, 0x57, 0x17, 0x73, 0x56, 0x10, 0x06, 0xce, 0xa6, 0xad, 0xbd,
+ 0xad, 0xb3, 0x6d, 0x58, 0x1e, 0xbe, 0x9d, 0x76, 0x28, 0xe9, 0xbe, 0x32, 0x5f, 0x16, 0xdc, 0x6e,
+ 0x7d, 0xea, 0x49, 0x5f, 0xd9, 0xa7, 0xf1, 0x00, 0x56, 0x72, 0xed, 0xc8, 0x49, 0xde, 0x87, 0x19,
+ 0x21, 0xb2, 0xd1, 0xf7, 0x5b, 0x5e, 0xa1, 0xe7, 0xdc, 0xfb, 0x30, 0x9b, 0x54, 0x35, 0xe2, 0x5e,
+ 0xc1, 0x80, 0xf8, 0x6e, 0xdd, 0x24, 0x7e, 0xdb, 0x3d, 0x2f, 0x38, 0x4f, 0xed, 0xbe, 0xe7, 0x59,
+ 0xfc, 0x66, 0x94, 0xf3, 0xc4, 0x08, 0xc7, 0xec, 0x76, 0xfc, 0x00, 0x66, 0x12, 0x66, 0x46, 0x1e,
+ 0x7b, 0xdf, 0x8e, 0x41, 0xe3, 0x04, 0x87, 0xc5, 0x5d, 0xfa, 0x04, 0xca, 0xd8, 0x0f, 0xa9, 0x8b,
+ 0xc5, 0x11, 0x51, 0x5b, 0x5b, 0x1e, 0x74, 0x18, 0x56, 0xbf, 0xba, 0xed, 0x87, 0xf4, 0xda, 0x1c,
+ 0x88, 0xeb, 0xbf, 0xd1, 0x60, 0x82, 0x93, 0xd8, 0x64, 0xb2, 0x27, 0x9b, 0x38, 0x30, 0xd8, 0x27,
+ 0x5a, 0x82, 0x2a, 0xbf, 0x12, 0xad, 0x20, 0xa4, 0x62, 0xa0, 0x7b, 0xb7, 0xcc, 0x0a, 0x27, 0x9d,
+ 0x84, 0x14, 0x3d, 0x80, 0x9a, 0x60, 0xbb, 0x7e, 0xf8, 0x7c, 0x8d, 0x9f, 0xae, 0x13, 0x7b, 0xb7,
+ 0x4c, 0xe0, 0xc4, 0x7d, 0x46, 0x43, 0x2b, 0x20, 0x5a, 0xd6, 0x19, 0x21, 0x9e, 0x78, 0x40, 0xee,
+ 0xdd, 0x32, 0x85, 0xd6, 0x0d, 0x42, 0xbc, 0x8d, 0xb2, 0xbc, 0x82, 0x8d, 0x19, 0x98, 0x8e, 0xb9,
+ 0x2a, 0x97, 0xca, 0x17, 0x30, 0xb3, 0x85, 0x3d, 0x7c, 0x13, 0x93, 0x86, 0x60, 0xfc, 0x02, 0x5f,
+ 0x8b, 0xf0, 0x54, 0x4d, 0xfe, 0x6d, 0xcc, 0xc1, 0x6c, 0x52, 0xbd, 0x34, 0xeb, 0xb0, 0xc4, 0x2f,
+ 0x08, 0x09, 0xc5, 0x9b, 0xfd, 0x20, 0x24, 0xdd, 0x3d, 0x42, 0x2e, 0x82, 0x82, 0xc6, 0xf9, 0x7a,
+ 0x1c, 0x8b, 0xad, 0xc7, 0x45, 0xd0, 0xb3, 0x8c, 0x48, 0x17, 0x0e, 0xa1, 0xb9, 0x61, 0x3b, 0x17,
+ 0xfd, 0xde, 0xcd, 0x78, 0x60, 0x3c, 0x85, 0x85, 0x0c, 0x7d, 0x23, 0xb6, 0xcb, 0x05, 0x3c, 0xc8,
+ 0xda, 0xc8, 0x85, 0xf7, 0x6c, 0x66, 0x2c, 0x1e, 0x81, 0x31, 0xca, 0x98, 0x8c, 0xc9, 0x1e, 0x20,
+ 0x76, 0xd7, 0xbd, 0x74, 0x1d, 0xec, 0x17, 0xba, 0x53, 0x8d, 0x4d, 0x98, 0x49, 0x68, 0x92, 0x71,
+ 0xf8, 0x10, 0x90, 0x27, 0x48, 0x56, 0xd0, 0x21, 0x34, 0xb4, 0x7c, 0xbb, 0x3b, 0xb8, 0x41, 0x1b,
+ 0x92, 0x73, 0xc2, 0x18, 0x87, 0x76, 0x97, 0x4f, 0xd1, 0x2e, 0x0e, 0xf7, 0xfd, 0x36, 0x59, 0xbf,
+ 0x89, 0xe4, 0xd0, 0xf8, 0x5f, 0x58, 0xc8, 0xd0, 0x27, 0x5d, 0x5b, 0x06, 0x50, 0x59, 0xa1, 0x9c,
+ 0xa8, 0x18, 0x85, 0x39, 0xb3, 0x69, 0x7b, 0x4e, 0xdf, 0xb3, 0x43, 0xbc, 0xd9, 0xc1, 0xce, 0x45,
+ 0xd0, 0xef, 0x16, 0x71, 0xe6, 0xbf, 0x61, 0x21, 0x43, 0x9f, 0x74, 0x46, 0x87, 0x8a, 0x23, 0x69,
+ 0x32, 0x3a, 0x51, 0x9b, 0x4d, 0xd2, 0x2e, 0x0e, 0x4f, 0x7c, 0xbb, 0x17, 0x74, 0x48, 0x11, 0x40,
+ 0xc2, 0x78, 0x0f, 0x66, 0x12, 0x9a, 0x46, 0x2c, 0xd6, 0xef, 0x34, 0x78, 0x98, 0xb5, 0x80, 0x6e,
+ 0xc0, 0x0d, 0x96, 0x93, 0x76, 0xc2, 0xb0, 0x67, 0xa9, 0x8b, 0xae, 0xcc, 0xda, 0xaf, 0xa8, 0xc7,
+ 0x2e, 0x02, 0xce, 0xb2, 0xfb, 0x61, 0x47, 0xa6, 0x5c, 0x5c, 0x76, 0xbd, 0x1f, 0x76, 0x8c, 0xc7,
+ 0xf0, 0x68, 0xb4, 0x4b, 0x72, 0x55, 0xff, 0x4e, 0x83, 0xd9, 0x5d, 0x1c, 0x9a, 0xf6, 0xd5, 0x66,
+ 0xc7, 0xf6, 0xcf, 0x8b, 0x01, 0x0c, 0x0f, 0x61, 0xaa, 0x4d, 0x49, 0xd7, 0x4a, 0xa0, 0x0c, 0x55,
+ 0xb3, 0xce, 0x88, 0xd1, 0x9b, 0x76, 0x05, 0x6a, 0x21, 0xb1, 0x12, 0xaf, 0xe2, 0xaa, 0x09, 0x21,
+ 0x19, 0x08, 0x18, 0x7f, 0x19, 0x87, 0xbb, 0x43, 0x2e, 0xc9, 0xe0, 0xef, 0x41, 0x8d, 0xda, 0x57,
+ 0x96, 0x23, 0xc8, 0x4d, 0x8d, 0xdf, 0x35, 0xef, 0xc6, 0xd2, 0xc9, 0x74, 0x9f, 0xd5, 0x88, 0x64,
+ 0x02, 0x8d, 0xb8, 0xfa, 0x3f, 0x4a, 0x50, 0x8d, 0x38, 0x68, 0x1e, 0xca, 0x67, 0x1e, 0x39, 0x63,
+ 0x0f, 0x1f, 0xb1, 0xa0, 0x26, 0x59, 0x73, 0xbf, 0x15, 0xc1, 0x32, 0x63, 0x0a, 0x96, 0x41, 0x4b,
+ 0x50, 0xf1, 0xf1, 0x95, 0xb8, 0x7e, 0xb9, 0xf3, 0x1b, 0x63, 0x4d, 0xcd, 0x2c, 0xfb, 0xf8, 0x8a,
+ 0xdd, 0xc0, 0x8c, 0xcd, 0x5e, 0xf5, 0x9c, 0x3d, 0xae, 0xd8, 0xc4, 0x6b, 0x71, 0xf6, 0x11, 0x54,
+ 0x49, 0x0f, 0x53, 0x3b, 0x64, 0x63, 0x9f, 0xe0, 0xf9, 0xf0, 0xc7, 0x6f, 0x39, 0x80, 0xd5, 0xa3,
+ 0x41, 0x47, 0x53, 0xe9, 0x60, 0x31, 0x67, 0x31, 0x51, 0x4a, 0x05, 0xe8, 0x51, 0xa7, 0xf6, 0x55,
+ 0x24, 0xcf, 0x56, 0x11, 0x73, 0xaa, 0x4b, 0x5a, 0x98, 0xe3, 0x1e, 0x13, 0xdc, 0xa1, 0x03, 0xd2,
+ 0xc2, 0x1c, 0xf4, 0xc0, 0x57, 0x82, 0x55, 0x11, 0x2c, 0x1f, 0x5f, 0x71, 0xd6, 0x23, 0xb8, 0x3d,
+ 0x18, 0xa9, 0x75, 0x76, 0xcd, 0x76, 0x7e, 0x55, 0x64, 0x7e, 0x72, 0xac, 0x1b, 0x8c, 0xc6, 0xa4,
+ 0x06, 0x03, 0x96, 0x52, 0x20, 0xa4, 0xe4, 0x90, 0xb9, 0x94, 0xe1, 0x42, 0x55, 0xb9, 0x53, 0x83,
+ 0xf2, 0xab, 0xc3, 0x17, 0x87, 0x47, 0xaf, 0x0f, 0x1b, 0xb7, 0x50, 0x15, 0x26, 0xd6, 0xb7, 0xb6,
+ 0xb6, 0xb7, 0x44, 0xfe, 0xbe, 0x79, 0x74, 0xbc, 0xbf, 0xbd, 0x25, 0xf2, 0xf7, 0xad, 0xed, 0x97,
+ 0xdb, 0xa7, 0xdb, 0x5b, 0x8d, 0x12, 0xaa, 0x43, 0xe5, 0xe0, 0x68, 0x6b, 0x7f, 0x87, 0xb1, 0xc6,
+ 0x19, 0xcb, 0xdc, 0x3e, 0x5c, 0x3f, 0xd8, 0xde, 0x6a, 0x4c, 0xa0, 0x06, 0xd4, 0x4f, 0x3f, 0x3f,
+ 0xde, 0xb6, 0x36, 0xf7, 0xd6, 0x0f, 0x77, 0xb7, 0xb7, 0x1a, 0x93, 0xc6, 0x25, 0x34, 0x4f, 0xb0,
+ 0x4d, 0x9d, 0xce, 0x8e, 0xeb, 0xe1, 0x60, 0xe3, 0x9a, 0x1d, 0x97, 0x45, 0x56, 0xf5, 0x2c, 0x4c,
+ 0x7c, 0xd5, 0xc7, 0x32, 0xc3, 0xa8, 0x9a, 0xa2, 0x31, 0xc8, 0xf5, 0x4a, 0x51, 0xae, 0x67, 0x7c,
+ 0x0c, 0x0b, 0x19, 0x76, 0xd5, 0x0b, 0xac, 0xcd, 0xc8, 0x7c, 0xd1, 0xd6, 0x4d, 0xd1, 0x30, 0xfe,
+ 0xa0, 0xc1, 0xbd, 0x44, 0x9f, 0x4d, 0xe2, 0x87, 0xd8, 0x0f, 0x7f, 0x06, 0x77, 0xd1, 0x7b, 0xd0,
+ 0x70, 0x3a, 0x7d, 0xff, 0x02, 0xb3, 0x14, 0x54, 0x78, 0x29, 0x31, 0xb6, 0x3b, 0x92, 0x1e, 0x1d,
+ 0x12, 0xd7, 0xb0, 0x98, 0xed, 0xa5, 0x1c, 0x5c, 0x13, 0xca, 0x5d, 0x3b, 0x74, 0x3a, 0xd1, 0xf0,
+ 0x06, 0x4d, 0xb4, 0x04, 0xc0, 0x3f, 0xad, 0xd8, 0xa5, 0x5b, 0xe5, 0x94, 0x2d, 0x3b, 0xb4, 0xd1,
+ 0x7d, 0xa8, 0x63, 0xbf, 0x65, 0x91, 0xb6, 0xc5, 0x69, 0x12, 0xfb, 0x03, 0xec, 0xb7, 0x8e, 0xda,
+ 0x07, 0x8c, 0x62, 0xfc, 0x55, 0x83, 0x3b, 0xc7, 0x14, 0x4b, 0x04, 0x4d, 0x44, 0x25, 0x33, 0xfd,
+ 0xd3, 0x7e, 0x02, 0xa2, 0xf1, 0x29, 0x4c, 0x47, 0x60, 0xc5, 0xdb, 0xe4, 0x8f, 0x03, 0x1c, 0x23,
+ 0x52, 0xf0, 0x1c, 0x6a, 0xe4, 0xec, 0x97, 0xd8, 0x09, 0xad, 0x1e, 0x7b, 0x59, 0x96, 0x92, 0x5d,
+ 0x8f, 0x38, 0xeb, 0x98, 0x10, 0xcf, 0x04, 0x12, 0x7d, 0x1b, 0x08, 0x1a, 0x6a, 0x24, 0x32, 0xb2,
+ 0xdf, 0x69, 0x30, 0x29, 0x80, 0xc1, 0x41, 0x36, 0xa3, 0x45, 0xd9, 0x0c, 0x3b, 0x7d, 0xf8, 0x13,
+ 0x40, 0x4c, 0x24, 0xff, 0x46, 0xff, 0x03, 0x0b, 0xd1, 0xa1, 0x4f, 0xa8, 0xfb, 0x0d, 0xdf, 0x50,
+ 0x56, 0x07, 0xdb, 0x2d, 0x4c, 0xe5, 0x59, 0x3a, 0x3f, 0xb8, 0x04, 0x22, 0xfe, 0x1e, 0x67, 0xa3,
+ 0x77, 0xe0, 0x76, 0xd7, 0x65, 0x2f, 0x7f, 0x8b, 0xe2, 0x76, 0xd7, 0xee, 0x05, 0xcd, 0x71, 0xfe,
+ 0x1c, 0x9d, 0x12, 0x54, 0x53, 0x10, 0x8d, 0xdf, 0x6a, 0x30, 0xc7, 0xbd, 0xdc, 0x3b, 0x3d, 0x3d,
+ 0x2e, 0x0e, 0xf8, 0x3e, 0x4e, 0x00, 0xbe, 0x69, 0xcc, 0x74, 0x00, 0x00, 0xc7, 0x10, 0xdd, 0x52,
+ 0x02, 0xd1, 0x35, 0x16, 0x60, 0x3e, 0xe5, 0x8f, 0x8c, 0xdf, 0x09, 0x2c, 0xed, 0xe2, 0x50, 0x04,
+ 0x7c, 0xcb, 0xa5, 0xd8, 0xb9, 0x09, 0x98, 0xfe, 0xbf, 0x60, 0x39, 0x4f, 0xe9, 0x08, 0xb8, 0xfe,
+ 0xf7, 0x1a, 0xcc, 0x6e, 0x7a, 0xc4, 0xc7, 0xec, 0x9e, 0xe5, 0x93, 0x5f, 0x28, 0x68, 0xe3, 0x7c,
+ 0x65, 0x8d, 0xe5, 0xae, 0x2c, 0xce, 0x8f, 0x05, 0xb7, 0x34, 0x2a, 0xb8, 0xc6, 0x3c, 0xdc, 0x1d,
+ 0xf2, 0x4d, 0x06, 0xf0, 0xcf, 0x1a, 0x2c, 0x26, 0x38, 0xfb, 0x7e, 0x88, 0xa9, 0x6f, 0xff, 0x2c,
+ 0xde, 0x67, 0x6e, 0xe4, 0xd2, 0x4f, 0xc0, 0x71, 0x56, 0x60, 0x29, 0xc7, 0x79, 0x85, 0xb2, 0xb3,
+ 0x48, 0x5c, 0xde, 0x1c, 0xca, 0x9e, 0x56, 0x27, 0x4d, 0x51, 0x66, 0xca, 0xe7, 0x67, 0xfe, 0x0d,
+ 0x98, 0xe2, 0xf7, 0x3a, 0xf6, 0xec, 0xd0, 0xbd, 0xc4, 0xf1, 0x54, 0xbf, 0x3e, 0x20, 0xf2, 0x74,
+ 0x9f, 0xfb, 0x33, 0x6c, 0x53, 0xf8, 0xb3, 0xf6, 0xb7, 0x65, 0x5e, 0x23, 0x1c, 0x54, 0x9b, 0x44,
+ 0x11, 0x15, 0x7d, 0x09, 0x8d, 0xe1, 0xca, 0x26, 0x5a, 0x49, 0xbb, 0x92, 0x28, 0xa1, 0xea, 0xf7,
+ 0xf3, 0x05, 0xe4, 0xe0, 0xab, 0x3f, 0x7c, 0xff, 0x64, 0xa2, 0x32, 0xa6, 0x6b, 0x1f, 0x23, 0x67,
+ 0x50, 0x9a, 0x8c, 0xd5, 0x2d, 0x51, 0x5c, 0x43, 0x66, 0x89, 0x54, 0x7f, 0x30, 0x42, 0x22, 0x61,
+ 0x44, 0x63, 0x46, 0x0e, 0x01, 0x54, 0x45, 0x12, 0x2d, 0x24, 0xfb, 0xc6, 0x6a, 0xa2, 0xba, 0x9e,
+ 0xc5, 0x4a, 0xeb, 0x7b, 0x03, 0xb7, 0x93, 0x95, 0x45, 0xb4, 0x14, 0xbd, 0xca, 0xb2, 0x6a, 0x9c,
+ 0xfa, 0x72, 0x1e, 0x3b, 0x53, 0x77, 0xb2, 0xea, 0xa7, 0x74, 0x67, 0x96, 0x16, 0x95, 0xee, 0xec,
+ 0x62, 0x61, 0x5c, 0x77, 0x1b, 0x50, 0xba, 0x6c, 0x87, 0xa2, 0x58, 0xe6, 0xd6, 0x0f, 0x75, 0x63,
+ 0x94, 0x48, 0xda, 0xce, 0x2f, 0xa0, 0x16, 0x2b, 0x62, 0xa1, 0x28, 0xaa, 0xe9, 0xa2, 0xa0, 0x7e,
+ 0x2f, 0x93, 0x97, 0x56, 0xf9, 0x25, 0x34, 0x86, 0x33, 0x14, 0xb5, 0x12, 0x73, 0x4a, 0x63, 0x6a,
+ 0x25, 0xe6, 0x16, 0xbb, 0x62, 0x16, 0x8e, 0x01, 0x54, 0xd5, 0x47, 0x2d, 0x92, 0x54, 0xd9, 0x49,
+ 0x2d, 0x92, 0x74, 0x91, 0x28, 0xa6, 0xef, 0x99, 0xc6, 0x7c, 0x1e, 0x2e, 0xe7, 0x28, 0x9f, 0x73,
+ 0xea, 0x46, 0xca, 0xe7, 0xbc, 0x4a, 0xd0, 0xd0, 0xee, 0x49, 0x15, 0x4a, 0xd4, 0xee, 0xc9, 0x2b,
+ 0x0c, 0xa9, 0xdd, 0x93, 0x5b, 0x65, 0x89, 0x07, 0xe6, 0xff, 0x60, 0x7c, 0x27, 0x70, 0x2e, 0xd0,
+ 0x4c, 0xd4, 0x4b, 0x95, 0x59, 0xf4, 0xd9, 0x24, 0x31, 0xdd, 0x7b, 0x0f, 0x2a, 0x83, 0xc2, 0x03,
+ 0x9a, 0x1f, 0x08, 0x0f, 0x95, 0x4f, 0xf4, 0x66, 0x9a, 0x91, 0xd6, 0xf4, 0x1a, 0xa6, 0x12, 0xe5,
+ 0x03, 0xb4, 0x18, 0xd9, 0xce, 0xa8, 0x5f, 0xe8, 0x4b, 0x39, 0xdc, 0x74, 0x14, 0x0f, 0x01, 0x14,
+ 0xbe, 0xaf, 0x66, 0x3e, 0x55, 0x7d, 0x50, 0x33, 0x9f, 0x51, 0x0e, 0x48, 0x6e, 0xb3, 0x34, 0x56,
+ 0xaf, 0xb6, 0x59, 0x6e, 0xd5, 0x40, 0x6d, 0xb3, 0x7c, 0xa8, 0x3f, 0xee, 0x37, 0xb7, 0x33, 0x0c,
+ 0xb3, 0xc7, 0xed, 0xe4, 0x00, 0xfe, 0x71, 0x3b, 0x79, 0x28, 0x7d, 0xdc, 0x4e, 0x3f, 0x5d, 0x7c,
+ 0x96, 0x38, 0x39, 0x7a, 0x9c, 0xb7, 0xc3, 0x92, 0x80, 0xbd, 0xfe, 0xee, 0x8f, 0xca, 0xa5, 0xc3,
+ 0xf8, 0x0a, 0xea, 0x71, 0xc0, 0x1c, 0xdd, 0x4b, 0xea, 0x48, 0xa0, 0x7b, 0xfa, 0x62, 0x36, 0x53,
+ 0x6a, 0xad, 0xfc, 0xf0, 0xfd, 0x93, 0xf1, 0x8a, 0xd6, 0xd0, 0x9e, 0x69, 0xe8, 0x57, 0x1a, 0xe8,
+ 0xf9, 0x00, 0x1e, 0x7a, 0x6f, 0x94, 0xa7, 0x49, 0x9b, 0xef, 0xbf, 0x8d, 0x68, 0x6a, 0x5c, 0x4f,
+ 0x34, 0x76, 0x3e, 0xc6, 0x70, 0x77, 0x75, 0x3e, 0xa6, 0x31, 0x7f, 0x75, 0x3e, 0x66, 0x00, 0xf5,
+ 0xf1, 0x60, 0xbd, 0x80, 0x6a, 0x04, 0x49, 0xa3, 0x66, 0x1e, 0xa0, 0xae, 0x2f, 0x64, 0x70, 0xd2,
+ 0xca, 0x4e, 0xa1, 0x1e, 0xc7, 0x9a, 0x55, 0xe4, 0x33, 0x00, 0x6e, 0x15, 0xf9, 0x4c, 0x78, 0x7a,
+ 0xe8, 0x56, 0x50, 0x40, 0x66, 0xec, 0x56, 0x48, 0xe1, 0xa4, 0xb1, 0x5b, 0x21, 0x8d, 0x7c, 0xc6,
+ 0x57, 0x26, 0xe6, 0xbf, 0x2a, 0x24, 0x61, 0x48, 0x14, 0xff, 0x63, 0x20, 0x13, 0xf1, 0x54, 0xe7,
+ 0x5f, 0x2e, 0x86, 0x19, 0x33, 0xf2, 0x4c, 0x63, 0xc7, 0x6c, 0x0a, 0x60, 0x54, 0x66, 0xf2, 0xb0,
+ 0x4c, 0x65, 0x26, 0x17, 0x9d, 0x8c, 0x8f, 0x65, 0x1b, 0xca, 0xf2, 0x77, 0x22, 0x34, 0x17, 0x75,
+ 0x4c, 0xfc, 0xa5, 0xa4, 0xcf, 0xa7, 0xe8, 0xe9, 0x28, 0x9f, 0x40, 0x2d, 0x86, 0x44, 0xa2, 0xf8,
+ 0x65, 0x35, 0x84, 0x30, 0xaa, 0x28, 0x67, 0x40, 0x97, 0xc9, 0x00, 0xfc, 0x9a, 0xbd, 0xfb, 0x47,
+ 0x00, 0x84, 0xe8, 0x83, 0x51, 0x5b, 0x61, 0xd8, 0xee, 0x87, 0x6f, 0x27, 0x9c, 0x1e, 0xdb, 0xe7,
+ 0x30, 0x95, 0x40, 0xbd, 0xd4, 0x0d, 0x90, 0x05, 0x4a, 0xaa, 0x1b, 0x20, 0x13, 0x2a, 0x4b, 0x8e,
+ 0xd0, 0x87, 0xd9, 0x2c, 0xd0, 0x02, 0x3d, 0x54, 0x1b, 0x26, 0x17, 0x78, 0xd1, 0x1f, 0x8d, 0x16,
+ 0xca, 0xb2, 0x87, 0x61, 0x3a, 0x05, 0xff, 0xa8, 0x25, 0x95, 0x87, 0x48, 0xa9, 0x25, 0x95, 0x8b,
+ 0x1d, 0x25, 0xcd, 0x74, 0x00, 0xa5, 0x0b, 0x37, 0x28, 0xf6, 0x7a, 0xce, 0xa9, 0x1c, 0xa9, 0x2b,
+ 0x62, 0x44, 0xdd, 0x27, 0x71, 0xa6, 0x61, 0x98, 0x4e, 0x15, 0x6d, 0xd4, 0x80, 0xf2, 0xea, 0x43,
+ 0x6a, 0x40, 0xb9, 0x15, 0x9f, 0xe4, 0x80, 0xf6, 0xa0, 0x32, 0x80, 0x45, 0xd4, 0x73, 0x62, 0x08,
+ 0xf2, 0x51, 0xcf, 0x89, 0x14, 0x82, 0x12, 0x5b, 0x4c, 0x5f, 0xc0, 0x9d, 0x21, 0x9c, 0x00, 0x2d,
+ 0x27, 0xde, 0x45, 0x29, 0x40, 0x43, 0x5f, 0xc9, 0xe5, 0xa7, 0xd5, 0x53, 0x98, 0xcb, 0x86, 0x05,
+ 0xd0, 0x3b, 0xb1, 0x65, 0x99, 0x8f, 0x45, 0xe8, 0x8f, 0x7f, 0x4c, 0x2c, 0x7d, 0x84, 0xbc, 0x86,
+ 0xa9, 0x44, 0x82, 0xab, 0xf6, 0x47, 0x16, 0xd4, 0xa0, 0xf6, 0x47, 0x76, 0xb2, 0x1f, 0x1b, 0x0c,
+ 0x19, 0x02, 0x04, 0x06, 0x99, 0x33, 0x7a, 0x94, 0xa9, 0x62, 0x08, 0x15, 0xd0, 0xdf, 0xf9, 0x11,
+ 0xa9, 0xcc, 0xe7, 0xfe, 0x70, 0xea, 0x1c, 0x4f, 0x3c, 0x33, 0x73, 0xf4, 0x78, 0xe2, 0x99, 0x93,
+ 0x75, 0x0f, 0x5b, 0x48, 0x26, 0xc3, 0x71, 0x0b, 0x99, 0xa9, 0x79, 0xdc, 0x42, 0x76, 0x1e, 0x1d,
+ 0xb3, 0xb0, 0xf1, 0xec, 0x0d, 0x93, 0xf6, 0xec, 0xb3, 0x55, 0x87, 0x74, 0x9f, 0x8a, 0xcf, 0x8f,
+ 0x08, 0x3d, 0x7f, 0x2a, 0x74, 0x3c, 0xe5, 0xff, 0x22, 0x3f, 0x3d, 0x27, 0xb2, 0xdd, 0x3b, 0x3b,
+ 0x9b, 0xe4, 0xa4, 0xe7, 0xff, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x8d, 0x5d, 0xcc, 0x2f, 0xd0, 0x2c,
+ 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -4081,6 +4164,7 @@ type RepositoryServiceClient interface {
CloneFromPool(ctx context.Context, in *CloneFromPoolRequest, opts ...grpc.CallOption) (*CloneFromPoolResponse, error)
CloneFromPoolInternal(ctx context.Context, in *CloneFromPoolInternalRequest, opts ...grpc.CallOption) (*CloneFromPoolInternalResponse, error)
RemoveRepository(ctx context.Context, in *RemoveRepositoryRequest, opts ...grpc.CallOption) (*RemoveRepositoryResponse, error)
+ RenameRepository(ctx context.Context, in *RenameRepositoryRequest, opts ...grpc.CallOption) (*RenameRepositoryResponse, error)
}
type repositoryServiceClient struct {
@@ -4685,6 +4769,15 @@ func (c *repositoryServiceClient) RemoveRepository(ctx context.Context, in *Remo
return out, nil
}
+func (c *repositoryServiceClient) RenameRepository(ctx context.Context, in *RenameRepositoryRequest, opts ...grpc.CallOption) (*RenameRepositoryResponse, error) {
+ out := new(RenameRepositoryResponse)
+ err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/RenameRepository", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// RepositoryServiceServer is the server API for RepositoryService service.
type RepositoryServiceServer interface {
RepositoryExists(context.Context, *RepositoryExistsRequest) (*RepositoryExistsResponse, error)
@@ -4727,6 +4820,7 @@ type RepositoryServiceServer interface {
CloneFromPool(context.Context, *CloneFromPoolRequest) (*CloneFromPoolResponse, error)
CloneFromPoolInternal(context.Context, *CloneFromPoolInternalRequest) (*CloneFromPoolInternalResponse, error)
RemoveRepository(context.Context, *RemoveRepositoryRequest) (*RemoveRepositoryResponse, error)
+ RenameRepository(context.Context, *RenameRepositoryRequest) (*RenameRepositoryResponse, error)
}
// UnimplementedRepositoryServiceServer can be embedded to have forward compatible implementations.
@@ -4853,6 +4947,9 @@ func (*UnimplementedRepositoryServiceServer) CloneFromPoolInternal(ctx context.C
func (*UnimplementedRepositoryServiceServer) RemoveRepository(ctx context.Context, req *RemoveRepositoryRequest) (*RemoveRepositoryResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveRepository not implemented")
}
+func (*UnimplementedRepositoryServiceServer) RenameRepository(ctx context.Context, req *RenameRepositoryRequest) (*RenameRepositoryResponse, error) {
+ return nil, status.Errorf(codes.Unimplemented, "method RenameRepository not implemented")
+}
func RegisterRepositoryServiceServer(s *grpc.Server, srv RepositoryServiceServer) {
s.RegisterService(&_RepositoryService_serviceDesc, srv)
@@ -5618,6 +5715,24 @@ func _RepositoryService_RemoveRepository_Handler(srv interface{}, ctx context.Co
return interceptor(ctx, in, info, handler)
}
+func _RepositoryService_RenameRepository_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(RenameRepositoryRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(RepositoryServiceServer).RenameRepository(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.RepositoryService/RenameRepository",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(RepositoryServiceServer).RenameRepository(ctx, req.(*RenameRepositoryRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _RepositoryService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.RepositoryService",
HandlerType: (*RepositoryServiceServer)(nil),
@@ -5742,6 +5857,10 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
MethodName: "RemoveRepository",
Handler: _RepositoryService_RemoveRepository_Handler,
},
+ {
+ MethodName: "RenameRepository",
+ Handler: _RepositoryService_RenameRepository_Handler,
+ },
},
Streams: []grpc.StreamDesc{
{
diff --git a/proto/repository-service.proto b/proto/repository-service.proto
index e4c558135..a1aadad3f 100644
--- a/proto/repository-service.proto
+++ b/proto/repository-service.proto
@@ -248,6 +248,12 @@ service RepositoryService {
target_repository_field: "1"
};
}
+ rpc RenameRepository(RenameRepositoryRequest) returns (RenameRepositoryResponse) {
+ option (op_type) = {
+ op: MUTATOR
+ target_repository_field: "1"
+ };
+ }
}
message RepositoryExistsRequest {
@@ -647,3 +653,10 @@ message RemoveRepositoryRequest {
message RemoveRepositoryResponse {
}
+message RenameRepositoryRequest {
+ Repository repository = 1;
+ string relative_path = 2;
+}
+
+message RenameRepositoryResponse{
+}
diff --git a/ruby/proto/gitaly/repository-service_pb.rb b/ruby/proto/gitaly/repository-service_pb.rb
index 45bbb1275..ff1d34735 100644
--- a/ruby/proto/gitaly/repository-service_pb.rb
+++ b/ruby/proto/gitaly/repository-service_pb.rb
@@ -317,6 +317,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
end
add_message "gitaly.RemoveRepositoryResponse" do
end
+ add_message "gitaly.RenameRepositoryRequest" do
+ optional :repository, :message, 1, "gitaly.Repository"
+ optional :relative_path, :string, 2
+ end
+ add_message "gitaly.RenameRepositoryResponse" do
+ end
end
module Gitaly
@@ -405,4 +411,6 @@ module Gitaly
CloneFromPoolInternalResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolInternalResponse").msgclass
RemoveRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRepositoryRequest").msgclass
RemoveRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRepositoryResponse").msgclass
+ RenameRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RenameRepositoryRequest").msgclass
+ RenameRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RenameRepositoryResponse").msgclass
end
diff --git a/ruby/proto/gitaly/repository-service_services_pb.rb b/ruby/proto/gitaly/repository-service_services_pb.rb
index 30aa32255..0963f51b8 100644
--- a/ruby/proto/gitaly/repository-service_services_pb.rb
+++ b/ruby/proto/gitaly/repository-service_services_pb.rb
@@ -54,6 +54,7 @@ module Gitaly
rpc :CloneFromPool, CloneFromPoolRequest, CloneFromPoolResponse
rpc :CloneFromPoolInternal, CloneFromPoolInternalRequest, CloneFromPoolInternalResponse
rpc :RemoveRepository, RemoveRepositoryRequest, RemoveRepositoryResponse
+ rpc :RenameRepository, RenameRepositoryRequest, RenameRepositoryResponse
end
Stub = Service.rpc_stub_class