From 2602f5d1c2f8cf31461ba6c36b0de38d1bda5138 Mon Sep 17 00:00:00 2001 From: John Cai Date: Fri, 15 May 2020 18:44:19 -0700 Subject: [PATCH 1/2] Gitaly Bundle Create and Unpack methods --- go.sum | 1 + internal/git/bundle/create.go | 138 +++++ internal/git/bundle/create_test.go | 60 +++ internal/git/bundle/unpack.go | 153 ++++++ internal/service/repository/backups.go | 12 + proto/go/gitalypb/repository-service.pb.go | 485 +++++++++++------- proto/repository-service.proto | 12 + ruby/proto/gitaly/repository-service_pb.rb | 8 + .../gitaly/repository-service_services_pb.rb | 1 + 9 files changed, 687 insertions(+), 183 deletions(-) create mode 100644 internal/git/bundle/create.go create mode 100644 internal/git/bundle/create_test.go create mode 100644 internal/git/bundle/unpack.go create mode 100644 internal/service/repository/backups.go diff --git a/go.sum b/go.sum index 9b07eaada71..d1902774ca1 100644 --- a/go.sum +++ b/go.sum @@ -49,6 +49,7 @@ github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMn github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/client9/reopen v1.0.0 h1:8tpLVR74DLpLObrn2KvsyxJY++2iORGR17WLUdSzUws= github.com/client9/reopen v1.0.0/go.mod h1:caXVCEr+lUtoN1FlsRiOWdfQtdRHIYfcb0ai8qKWtkQ= +github.com/cloudflare/tableflip v0.0.0-20190329062924-8392f1641731/go.mod h1:erh4dYezoMVbIa52pi7i1Du7+cXOgqNuTamt10qvMoA= github.com/cloudflare/tableflip v1.2.1-0.20200514155827-4baec9811f2b h1:PF1TsqplD1wyV3nBSzRHP3teTQFtaWl3jaENrGqZ+lI= github.com/cloudflare/tableflip v1.2.1-0.20200514155827-4baec9811f2b/go.mod h1:vhhSlJqV8uUnxGkRSgyvGthfGlkAwJ4UuSV51fSrCQY= github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd h1:qMd81Ts1T2OTKmB4acZcyKaMtRnY5Y44NuXGX2GFJ1w= diff --git a/internal/git/bundle/create.go b/internal/git/bundle/create.go new file mode 100644 index 00000000000..652541671db --- /dev/null +++ b/internal/git/bundle/create.go @@ -0,0 +1,138 @@ +package bundle + +import ( + "bufio" + "bytes" + "context" + "fmt" + "io" + "os" + "path/filepath" + "strings" + + "gitlab.com/gitlab-org/gitaly/internal/git" + "gitlab.com/gitlab-org/gitaly/internal/git/catfile" + "gitlab.com/gitlab-org/gitaly/internal/helper" + "gitlab.com/gitlab-org/gitaly/internal/safe" + "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb" +) + +const ( + header = "# gitaly bundle v1" +) + +func Create(ctx context.Context, repo *gitalypb.Repository) ([]byte, error) { + repoPath, err := helper.GetPath(repo) + if err != nil { + return nil, fmt.Errorf("getting repo path: %w", err) + } + + bundleRefsPath := filepath.Join(repoPath, ".gitaly_bundle", "refs") + if err = os.MkdirAll(filepath.Dir(bundleRefsPath), 0755); err != nil { + return nil, fmt.Errorf("mkdir -p %s: %w", bundleRefsPath, err) + } + + var b bytes.Buffer + + if _, err = b.WriteString(header); err != nil { + return nil, fmt.Errorf("writing to buffer: %w", err) + } + if _, err = b.Write([]byte("\n")); err != nil { + return nil, fmt.Errorf("writing to buffer: %w", err) + } + + bundleRefsWriter, err := safe.CreateFileWriter(bundleRefsPath) + if err != nil { + return nil, fmt.Errorf("creating bundle refs writer %w", err) + } + + refWriter := io.MultiWriter(bundleRefsWriter, &b) + + cmd, err := git.SafeCmd(ctx, repo, nil, git.SubCmd{ + Name: "for-each-ref", + Flags: []git.Option{git.ValueFlag{ + Name: "--format", + Value: "%(objectname) %(refname)", + }}, + }) + if err != nil { + return nil, fmt.Errorf("creating for-each-ref command: %w", err) + } + + var objectIDs bytes.Buffer + + s := bufio.NewScanner(cmd) + + for s.Scan() { + line := strings.SplitN(s.Text(), " ", 2) + objectIDs.WriteString(line[0]) + objectIDs.Write([]byte("\n")) + refWriter.Write([]byte(s.Text())) + refWriter.Write([]byte("\n")) + } + + if err = s.Err(); err != nil { + return nil, fmt.Errorf("reading output of for-each-ref: %w", err) + } + + if err = cmd.Wait(); err != nil { + return nil, fmt.Errorf("running for-each-ref: %w", err) + } + + if _, err = os.Stat(bundleRefsPath); err == nil { + c, err := catfile.New(ctx, repo) + if err != nil { + return nil, fmt.Errorf("creating catfile batch: %w", err) + } + defer c.Close() + + f, err := os.Open(bundleRefsPath) + + if err != nil { + return nil, fmt.Errorf("opening bundle refs file: %w", err) + } + defer f.Close() + + s = bufio.NewScanner(f) + for s.Scan() { + line := s.Text() + if line == "" { + break + } + if strings.HasPrefix(line, "#") { + continue + } + lineSplit := strings.SplitN(line, " ", 2) + + _, err := c.Info(lineSplit[0]) + if catfile.IsNotFound(err) { + continue + } + objectIDs.WriteString(fmt.Sprintf("^%s\n", lineSplit[0])) + } + + if err = f.Close(); err != nil { + return nil, fmt.Errorf("closing bundle refs file: %w", err) + } + } + + b.Write([]byte("\n")) + + cmd, err = git.SafeBareCmd(ctx, git.CmdStream{In: &objectIDs, Out: &b}, nil, []git.Option{git.ValueFlag{Name: "-C", Value: repoPath}}, git.SubCmd{ + Name: "pack-objects", + Flags: []git.Option{git.Flag{Name: "--thin"}, git.Flag{Name: "--stdout"}, git.Flag{Name: "--non-empty"}, git.Flag{Name: "--delta-base-offset"}}, + }) + if err != nil { + return nil, fmt.Errorf("creating pack-objects command: %w", err) + } + + if err = cmd.Wait(); err != nil { + return nil, fmt.Errorf("running pack-objects command: %w", err) + } + + if err = bundleRefsWriter.Commit(); err != nil { + return nil, fmt.Errorf("writing new bundle refs file: %w", err) + } + + return b.Bytes(), nil +} diff --git a/internal/git/bundle/create_test.go b/internal/git/bundle/create_test.go new file mode 100644 index 00000000000..14283b0c978 --- /dev/null +++ b/internal/git/bundle/create_test.go @@ -0,0 +1,60 @@ +package bundle + +import ( + "bytes" + "os" + "testing" + + "github.com/stretchr/testify/require" + "gitlab.com/gitlab-org/gitaly/internal/testhelper" +) + +func TestCreateFull(t *testing.T) { + testRepo, _, cleanup := testhelper.NewTestRepo(t) + defer cleanup() + + ctx, cancel := testhelper.Context() + defer cancel() + + _, err := Create(ctx, testRepo) + require.NoError(t, err) +} + +func TestCreateIncremental(t *testing.T) { + testRepo, _, cleanup := testhelper.NewTestRepo(t) + defer cleanup() + + ctx, cancel := testhelper.Context() + defer cancel() + + _, err := Create(ctx, testRepo) + require.NoError(t, err) + + b, err := Create(ctx, testRepo) + require.NoError(t, err) + + bytes := bytes.SplitN(b, []byte("\n\n"), 2) + require.Empty(t, bytes[1]) +} + +func TestUnpack(t *testing.T) { + testRepo, _, cleanup := testhelper.NewTestRepo(t) + defer cleanup() + + ctx, cancel := testhelper.Context() + defer cancel() + + b, err := Create(ctx, testRepo) + require.NoError(t, err) + + emptyRepo, emptyRepoPath, _ := testhelper.InitBareRepo(t) + // defer cleanup() + + t.Logf("EMPTY REPO: %v\n", emptyRepoPath) + require.NoError(t, Unpack(ctx, emptyRepo, b)) +} + +func TestMain(m *testing.M) { + testhelper.Configure() + os.Exit(m.Run()) +} diff --git a/internal/git/bundle/unpack.go b/internal/git/bundle/unpack.go new file mode 100644 index 00000000000..759e45397cf --- /dev/null +++ b/internal/git/bundle/unpack.go @@ -0,0 +1,153 @@ +package bundle + +import ( + "bufio" + "bytes" + "context" + "fmt" + "io" + "strings" + + "gitlab.com/gitlab-org/gitaly/internal/git" + "gitlab.com/gitlab-org/gitaly/internal/git/updateref" + "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb" +) + +func Unpack(ctx context.Context, repo *gitalypb.Repository, bundle []byte) error { + r := bufio.NewReader(bytes.NewReader(bundle)) + + line, err := readLine(r) + if err != nil { + return err + } + + const header = "# gitaly bundle v1" + if line != header { + return fmt.Errorf("invalid header %q", line) + } + + // Ref dump is at the head of the bundle so we must consume it first + newRefs, err := refMapFromReader(r) + if err != nil { + return err + } + + // There may not be a pack file, for instance if the only change is a ref deletion. + const magic = "PACK" + if b, err := r.Peek(len(magic)); err == nil && string(b) == magic { + // TODO use --keep to prevent concurrent repack/gc from deleting this + // packfile before we apply the ref update below? + + cmd, err := git.SafeStdinCmd(ctx, repo, nil, git.SubCmd{ + Name: "index-pack", + Flags: []git.Option{ + git.Flag{ + Name: "--stdin", + }, + git.Flag{ + Name: "--fix-thin", + }, + git.Flag{ + Name: "--keep", + }, + }, + Args: nil, + PostSepArgs: nil, + }) + if err != nil { + return err + } + + if _, err = io.Copy(cmd, r); err != nil { + return err + } + + if err = cmd.Wait(); err != nil { + return err + } + } + + updater, err := updateref.New(ctx, repo) + if err != nil { + return err + } + + oldRefs, err := currentRefs(ctx, repo) + if err != nil { + return err + } + + for ref, oid := range newRefs { + if err = updater.Update(ref, oid, "0000000000000000000000000000000000000000"); err != nil { + return err + } + } + + for ref := range oldRefs { + if _, ok := newRefs[ref]; ok { + continue + } + if err = updater.Delete(ref); err != nil { + return err + } + } + + if err = updater.Wait(); err != nil { + return err + } + + return nil + +} + +func refMapFromReader(r *bufio.Reader) (map[string]string, error) { + result := make(map[string]string) + var err error + + for { + line, err := readLine(r) + if err != nil || line == "" { + break + } + + split := strings.SplitN(line, " ", 2) + if len(split) != 2 { + return nil, fmt.Errorf("invalid ref line %q", line) + } + result[split[1]] = split[0] + } + + return result, err +} + +func readLine(r *bufio.Reader) (string, error) { + b, err := r.ReadBytes('\n') + if err != nil { + return "", err + } + + return string(b)[:len(b)-1], err +} + +func currentRefs(ctx context.Context, repo *gitalypb.Repository) (map[string]string, error) { + cmd, err := git.SafeCmd(ctx, repo, nil, git.SubCmd{ + Name: "for-each-ref", + Flags: []git.Option{ + git.ValueFlag{ + Name: "--format", + Value: "%(objectname) %(refname)", + }, + }, + }) + + if err != nil { + return nil, err + } + + refs, err := refMapFromReader(bufio.NewReader(cmd)) + if err == io.EOF { + err = nil + } + + return refs, err +} diff --git a/internal/service/repository/backups.go b/internal/service/repository/backups.go new file mode 100644 index 00000000000..5542c340a64 --- /dev/null +++ b/internal/service/repository/backups.go @@ -0,0 +1,12 @@ +package repository + +import ( + "context" + + "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb" +) + +func (s *server) CreateFullBackup(ctx context.Context, in *gitalypb.CreateFullBackupRequest) (*gitalypb.CreateFullBackupResponse, error) { + + return &gitalypb.CreateFullBackupResponse{}, nil +} diff --git a/proto/go/gitalypb/repository-service.pb.go b/proto/go/gitalypb/repository-service.pb.go index 392502bae1f..5a386a33a47 100644 --- a/proto/go/gitalypb/repository-service.pb.go +++ b/proto/go/gitalypb/repository-service.pb.go @@ -3804,6 +3804,84 @@ func (m *OptimizeRepositoryResponse) XXX_DiscardUnknown() { var xxx_messageInfo_OptimizeRepositoryResponse proto.InternalMessageInfo +type CreateFullBackupRequest struct { + Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"` + PostUrl string `protobuf:"bytes,2,opt,name=post_url,json=postUrl,proto3" json:"post_url,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CreateFullBackupRequest) Reset() { *m = CreateFullBackupRequest{} } +func (m *CreateFullBackupRequest) String() string { return proto.CompactTextString(m) } +func (*CreateFullBackupRequest) ProtoMessage() {} +func (*CreateFullBackupRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_e9b1768cf174c79b, []int{83} +} + +func (m *CreateFullBackupRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateFullBackupRequest.Unmarshal(m, b) +} +func (m *CreateFullBackupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateFullBackupRequest.Marshal(b, m, deterministic) +} +func (m *CreateFullBackupRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateFullBackupRequest.Merge(m, src) +} +func (m *CreateFullBackupRequest) XXX_Size() int { + return xxx_messageInfo_CreateFullBackupRequest.Size(m) +} +func (m *CreateFullBackupRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CreateFullBackupRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_CreateFullBackupRequest proto.InternalMessageInfo + +func (m *CreateFullBackupRequest) GetRepository() *Repository { + if m != nil { + return m.Repository + } + return nil +} + +func (m *CreateFullBackupRequest) GetPostUrl() string { + if m != nil { + return m.PostUrl + } + return "" +} + +type CreateFullBackupResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CreateFullBackupResponse) Reset() { *m = CreateFullBackupResponse{} } +func (m *CreateFullBackupResponse) String() string { return proto.CompactTextString(m) } +func (*CreateFullBackupResponse) ProtoMessage() {} +func (*CreateFullBackupResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_e9b1768cf174c79b, []int{84} +} + +func (m *CreateFullBackupResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateFullBackupResponse.Unmarshal(m, b) +} +func (m *CreateFullBackupResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateFullBackupResponse.Marshal(b, m, deterministic) +} +func (m *CreateFullBackupResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateFullBackupResponse.Merge(m, src) +} +func (m *CreateFullBackupResponse) XXX_Size() int { + return xxx_messageInfo_CreateFullBackupResponse.Size(m) +} +func (m *CreateFullBackupResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CreateFullBackupResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_CreateFullBackupResponse 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) @@ -3892,198 +3970,203 @@ func init() { proto.RegisterType((*ReplicateRepositoryResponse)(nil), "gitaly.ReplicateRepositoryResponse") proto.RegisterType((*OptimizeRepositoryRequest)(nil), "gitaly.OptimizeRepositoryRequest") proto.RegisterType((*OptimizeRepositoryResponse)(nil), "gitaly.OptimizeRepositoryResponse") + proto.RegisterType((*CreateFullBackupRequest)(nil), "gitaly.CreateFullBackupRequest") + proto.RegisterType((*CreateFullBackupResponse)(nil), "gitaly.CreateFullBackupResponse") } func init() { proto.RegisterFile("repository-service.proto", fileDescriptor_e9b1768cf174c79b) } var fileDescriptor_e9b1768cf174c79b = []byte{ - // 2966 bytes of a gzipped FileDescriptorProto + // 3013 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5b, 0x6f, 0x1c, 0xc7, 0xb1, 0xd6, 0xf2, 0xb6, 0xbb, 0xc5, 0x95, 0xb4, 0x6c, 0x52, 0xe2, 0xee, 0x88, 0x14, 0xa5, 0x91, 0x2c, 0xcb, 0xb6, 0x4c, 0xc9, 0xd2, 0x01, 0x8e, 0xcf, 0x39, 0x38, 0x08, 0xb8, 0xbc, 0xeb, 0x42, 0xd2, 0x43, 0x2a, 0x86, 0x05, 0x18, 0xe3, 0xd9, 0xd9, 0x5e, 0xee, 0x84, 0xb3, 0xd3, 0xab, 0x99, - 0x5e, 0xd2, 0x34, 0x92, 0x87, 0x04, 0xf0, 0x53, 0x00, 0x03, 0x01, 0x82, 0x38, 0x8f, 0x79, 0xce, - 0x2f, 0xc8, 0x4b, 0x10, 0xe4, 0x25, 0xff, 0xc1, 0x7f, 0x25, 0x4f, 0x41, 0x5f, 0x66, 0x7a, 0xae, - 0x6b, 0x05, 0xbb, 0x70, 0xde, 0xa6, 0xab, 0xab, 0xab, 0xaa, 0xab, 0xab, 0x2f, 0xf5, 0xd5, 0x40, - 0xc3, 0xc7, 0x03, 0x12, 0x38, 0x94, 0xf8, 0x97, 0x1f, 0x07, 0xd8, 0x3f, 0x77, 0x6c, 0xbc, 0x3e, - 0xf0, 0x09, 0x25, 0x68, 0xee, 0xd4, 0xa1, 0x96, 0x7b, 0xa9, 0x81, 0xeb, 0x78, 0x54, 0xd0, 0xb4, - 0x5a, 0xd0, 0xb3, 0x7c, 0xdc, 0x11, 0x2d, 0xfd, 0x18, 0x96, 0x8d, 0x68, 0xf4, 0xf6, 0xd7, 0x4e, - 0x40, 0x03, 0x03, 0xbf, 0x1d, 0xe2, 0x80, 0xa2, 0x4f, 0x01, 0x94, 0xe0, 0x46, 0xe9, 0x4e, 0xe9, - 0xe1, 0xfc, 0x53, 0xb4, 0x2e, 0x24, 0xae, 0xab, 0x41, 0xad, 0x99, 0x3f, 0xfe, 0xe3, 0x51, 0xc9, - 0x88, 0xf1, 0xea, 0x4f, 0xa1, 0x91, 0x15, 0x1a, 0x0c, 0x88, 0x17, 0x60, 0x74, 0x13, 0xe6, 0x30, - 0xa7, 0x70, 0x89, 0x15, 0x43, 0xb6, 0xf4, 0x13, 0x3e, 0xc6, 0xb2, 0xcf, 0xf6, 0x3d, 0xdb, 0xc7, - 0x7d, 0xec, 0x51, 0xcb, 0x1d, 0xdf, 0x92, 0x5b, 0xd0, 0xcc, 0x91, 0x2a, 0x4c, 0xd1, 0x7d, 0x58, - 0x10, 0x9d, 0x3b, 0x43, 0x77, 0x7c, 0x5d, 0xe8, 0x1e, 0x5c, 0xb5, 0x7d, 0x6c, 0x51, 0x6c, 0xb6, - 0x1d, 0xda, 0xb7, 0x06, 0x8d, 0x29, 0x3e, 0xc1, 0x9a, 0x20, 0xb6, 0x38, 0x4d, 0x5f, 0x02, 0x14, - 0xd7, 0x29, 0x2d, 0x39, 0x87, 0x1b, 0xbb, 0x96, 0xdf, 0xb6, 0x4e, 0xf1, 0x26, 0x71, 0x5d, 0x6c, - 0xd3, 0x9f, 0xc8, 0x9a, 0x06, 0xdc, 0x4c, 0xeb, 0x95, 0x16, 0x3d, 0x87, 0x6b, 0x9b, 0x2e, 0xb6, - 0xbc, 0xe1, 0x60, 0xfc, 0x45, 0x58, 0x80, 0xeb, 0x91, 0x2c, 0x29, 0xfe, 0x33, 0xb8, 0xa1, 0x86, - 0x1c, 0x3b, 0xdf, 0xe0, 0xf1, 0xb5, 0x3c, 0x82, 0x9b, 0x69, 0x91, 0x32, 0xe4, 0x10, 0xcc, 0x04, - 0xce, 0x37, 0x98, 0x4b, 0x9b, 0x36, 0xf8, 0xb7, 0xfe, 0x16, 0x9a, 0x1b, 0x83, 0x81, 0x7b, 0xb9, - 0xeb, 0x50, 0x8b, 0x52, 0xdf, 0x69, 0x0f, 0x29, 0x1e, 0x3f, 0xf2, 0x91, 0x06, 0x15, 0x1f, 0x9f, - 0x3b, 0x81, 0x43, 0x3c, 0xee, 0xf0, 0x9a, 0x11, 0xb5, 0xf5, 0x15, 0xd0, 0xf2, 0x54, 0x4a, 0x8f, - 0xfc, 0x6d, 0x0a, 0xd0, 0x0e, 0xa6, 0x76, 0xcf, 0xc0, 0x7d, 0x42, 0xc7, 0xf7, 0x07, 0xdb, 0x68, - 0x3e, 0x17, 0xc5, 0x0d, 0xa9, 0x1a, 0xb2, 0x85, 0x96, 0x60, 0xb6, 0x4b, 0x7c, 0x1b, 0x37, 0xa6, - 0x79, 0x40, 0x88, 0x06, 0x5a, 0x86, 0xb2, 0x47, 0x4c, 0x6a, 0x9d, 0x06, 0x8d, 0x19, 0xb1, 0x2f, - 0x3d, 0x72, 0x62, 0x9d, 0x06, 0xa8, 0x01, 0x65, 0xea, 0xf4, 0x31, 0x19, 0xd2, 0xc6, 0xec, 0x9d, - 0xd2, 0xc3, 0x59, 0x23, 0x6c, 0xb2, 0x21, 0x41, 0xd0, 0x33, 0xcf, 0xf0, 0x65, 0x63, 0x4e, 0x68, - 0x08, 0x82, 0xde, 0x0b, 0x7c, 0x89, 0xd6, 0x60, 0xfe, 0xcc, 0x23, 0x17, 0x9e, 0xd9, 0x23, 0x6c, - 0x9f, 0x97, 0x79, 0x27, 0x70, 0xd2, 0x1e, 0xa3, 0xa0, 0x26, 0x54, 0x3c, 0x62, 0x0e, 0xfc, 0xa1, - 0x87, 0x1b, 0x55, 0xae, 0xad, 0xec, 0x91, 0x23, 0xd6, 0x44, 0xcf, 0xe0, 0xaa, 0xb0, 0xd3, 0x1c, - 0x58, 0xbe, 0xd5, 0x0f, 0x1a, 0xc0, 0xa7, 0x7c, 0x4d, 0x4d, 0x99, 0x7b, 0xa7, 0x26, 0x98, 0x8e, - 0x38, 0xcf, 0xf3, 0x99, 0x4a, 0xa5, 0x5e, 0xd5, 0x6f, 0xc0, 0x62, 0xc2, 0x81, 0xd2, 0xb1, 0xc7, - 0xb0, 0xbc, 0xc9, 0x63, 0x5e, 0x79, 0x6b, 0xfc, 0x60, 0xd3, 0xa0, 0x91, 0x15, 0x2a, 0x15, 0x7e, - 0x3b, 0x05, 0x0b, 0xbb, 0x98, 0x6e, 0xf8, 0x76, 0xcf, 0x39, 0x9f, 0xc0, 0x42, 0xde, 0x82, 0xaa, - 0x4d, 0xfa, 0x7d, 0x87, 0x9a, 0x4e, 0x47, 0xae, 0x65, 0x45, 0x10, 0xf6, 0x3b, 0x6c, 0x95, 0x07, - 0x3e, 0xee, 0x3a, 0x5f, 0xf3, 0xe5, 0xac, 0x1a, 0xb2, 0x85, 0x3e, 0x85, 0xb9, 0x2e, 0xf1, 0xfb, - 0x16, 0xe5, 0xcb, 0x79, 0xed, 0xe9, 0x9d, 0x50, 0x55, 0xc6, 0xb2, 0xf5, 0x1d, 0xce, 0x67, 0x48, - 0x7e, 0xb6, 0x5b, 0x06, 0x16, 0xed, 0xf1, 0xd5, 0xae, 0x19, 0xfc, 0x5b, 0x7f, 0x06, 0x73, 0x82, - 0x0b, 0x95, 0x61, 0xfa, 0xcd, 0xfe, 0x51, 0xfd, 0x0a, 0xfb, 0x38, 0xd9, 0x30, 0xea, 0x25, 0x04, - 0x30, 0x77, 0xb2, 0x61, 0x98, 0xbb, 0x6f, 0xea, 0x53, 0x68, 0x1e, 0xca, 0xec, 0xbb, 0xf5, 0xe6, - 0x69, 0x7d, 0x5a, 0x7f, 0x08, 0x28, 0xae, 0x4c, 0x6d, 0xc6, 0x8e, 0x45, 0x2d, 0xee, 0x81, 0x9a, - 0xc1, 0xbf, 0xd9, 0x12, 0xed, 0x59, 0xc1, 0x4b, 0x62, 0x5b, 0x6e, 0xcb, 0xb7, 0x3c, 0xbb, 0x37, - 0x81, 0xad, 0xa8, 0x3f, 0x81, 0x46, 0x56, 0xa8, 0x34, 0x62, 0x09, 0x66, 0xcf, 0x2d, 0x77, 0x88, - 0xe5, 0x1d, 0x24, 0x1a, 0xfa, 0x0f, 0x25, 0x68, 0xf0, 0x08, 0x3a, 0x26, 0x43, 0xdf, 0xc6, 0x62, - 0xd4, 0xf8, 0xeb, 0xf7, 0x33, 0x58, 0x08, 0xb8, 0x40, 0x33, 0x26, 0x60, 0xaa, 0x48, 0x80, 0x51, - 0x17, 0xcc, 0x46, 0xe2, 0x28, 0x97, 0x02, 0xda, 0xdc, 0x24, 0xbe, 0xd4, 0x35, 0xa3, 0x16, 0xc4, - 0xcc, 0x44, 0xab, 0x00, 0xd4, 0xf2, 0x4f, 0x31, 0x35, 0x7d, 0xdc, 0xe5, 0x8b, 0x5e, 0x33, 0xaa, - 0x82, 0x62, 0xe0, 0xae, 0xfe, 0x0c, 0x9a, 0x39, 0x53, 0x53, 0x77, 0xb2, 0x8f, 0x83, 0xa1, 0x4b, - 0xc3, 0x3b, 0x59, 0xb4, 0xf4, 0x5d, 0x98, 0xdf, 0x09, 0xec, 0xb3, 0xf1, 0xd7, 0xe2, 0x3e, 0xd4, - 0x84, 0x20, 0xe5, 0x7f, 0xec, 0xfb, 0xc4, 0x97, 0x51, 0x20, 0x1a, 0xfa, 0x5f, 0x4a, 0x70, 0xfd, - 0x73, 0xdf, 0x61, 0x9b, 0xaa, 0x3b, 0xbe, 0xdb, 0xeb, 0x30, 0xcd, 0x3c, 0x21, 0x4e, 0x61, 0xf6, - 0x99, 0x38, 0x9c, 0xa7, 0x93, 0x87, 0x33, 0xba, 0x0b, 0x35, 0xe2, 0x76, 0xcc, 0xa8, 0x5f, 0x38, - 0x70, 0x9e, 0xb8, 0x1d, 0x23, 0x64, 0x89, 0x0e, 0xce, 0xd9, 0xd8, 0xc1, 0xf9, 0x7c, 0xa6, 0x32, - 0x57, 0x2f, 0xeb, 0x0d, 0xa8, 0x2b, 0xcb, 0xc5, 0x24, 0x9f, 0xcf, 0x54, 0x4a, 0xf5, 0x29, 0xdd, - 0x83, 0xa5, 0x1d, 0xc7, 0xeb, 0xbc, 0xc2, 0xfe, 0x29, 0x6e, 0x59, 0xc1, 0x04, 0xce, 0x83, 0x15, - 0xa8, 0x86, 0x66, 0x06, 0x8d, 0xa9, 0x3b, 0xd3, 0x6c, 0xa1, 0x23, 0x82, 0xfe, 0x11, 0xdc, 0x48, - 0xe9, 0x53, 0x1b, 0xaf, 0x6d, 0x05, 0x22, 0xe4, 0xab, 0x06, 0xff, 0xd6, 0xbf, 0x2b, 0xc1, 0x82, - 0x38, 0xc7, 0x76, 0x88, 0x7f, 0xf6, 0x9f, 0x0f, 0x75, 0xf6, 0x3c, 0x8a, 0xdb, 0x13, 0x3d, 0xd4, - 0x9a, 0xfb, 0x81, 0x81, 0x99, 0xc9, 0xfb, 0xde, 0x91, 0x4f, 0x4e, 0x7d, 0x1c, 0x04, 0x13, 0x39, - 0x58, 0x7d, 0x2e, 0x34, 0x76, 0xb0, 0x0a, 0xc2, 0x7e, 0x47, 0xff, 0x7f, 0xd0, 0xf2, 0x74, 0x4a, - 0x67, 0xae, 0xc1, 0xbc, 0xe3, 0x99, 0x03, 0x49, 0x96, 0xdb, 0x06, 0x9c, 0x88, 0x51, 0x98, 0x7c, - 0xfc, 0x76, 0x68, 0x05, 0xbd, 0x09, 0x9b, 0x1c, 0x70, 0xa1, 0x31, 0x93, 0x05, 0x21, 0x34, 0x39, - 0xab, 0xf3, 0x5d, 0x4d, 0x76, 0xe1, 0x76, 0xfa, 0x4e, 0xdb, 0xf1, 0x49, 0xff, 0xb5, 0xf1, 0x72, - 0x22, 0x9b, 0x71, 0xe8, 0xbb, 0xd2, 0x62, 0xf6, 0xa9, 0xdf, 0x85, 0xb5, 0x42, 0x6d, 0x72, 0xd9, - 0x0f, 0x61, 0x51, 0xb0, 0xb4, 0x86, 0x5e, 0xc7, 0x9d, 0xc0, 0x13, 0xf1, 0x43, 0x58, 0x4a, 0x0a, - 0x1c, 0x71, 0x27, 0x7d, 0x37, 0x05, 0xf5, 0x63, 0x4c, 0x37, 0x89, 0xd7, 0x75, 0x4e, 0xc7, 0x77, - 0xc0, 0xa7, 0x50, 0xc6, 0x1e, 0xf5, 0x1d, 0x2c, 0xb6, 0xec, 0xfc, 0xd3, 0xdb, 0xe1, 0xb0, 0xb4, - 0x92, 0xf5, 0x6d, 0x8f, 0xfa, 0x97, 0x46, 0xc8, 0xae, 0x7d, 0x5b, 0x82, 0x59, 0x4e, 0x62, 0x4e, - 0x64, 0x8f, 0x2d, 0xb1, 0x81, 0xd9, 0x27, 0x5a, 0x85, 0x2a, 0xbf, 0xba, 0xcc, 0x80, 0xfa, 0xc2, - 0xb9, 0x7b, 0x57, 0x8c, 0x0a, 0x27, 0x1d, 0x53, 0x1f, 0xdd, 0x85, 0x79, 0xd1, 0xed, 0x78, 0xf4, - 0xd9, 0x53, 0x7e, 0xe6, 0xcd, 0xee, 0x5d, 0x31, 0x80, 0x13, 0xf7, 0x19, 0x0d, 0xad, 0x81, 0x68, - 0x99, 0x6d, 0x42, 0x5c, 0xf1, 0xf4, 0xdb, 0xbb, 0x62, 0x08, 0xa9, 0x2d, 0x42, 0xdc, 0x56, 0x59, - 0x5e, 0x95, 0xfa, 0x22, 0x2c, 0xc4, 0x4c, 0x95, 0x4b, 0x64, 0xc3, 0xe2, 0x16, 0x76, 0x31, 0xc5, - 0x93, 0xf2, 0x13, 0x82, 0x99, 0x33, 0x7c, 0x29, 0x9c, 0x54, 0x35, 0xf8, 0xb7, 0x7e, 0x13, 0x96, - 0x92, 0x4a, 0xa4, 0x72, 0x87, 0x25, 0x77, 0x01, 0x25, 0x3e, 0xde, 0x1c, 0x06, 0x94, 0xf4, 0xf7, - 0x08, 0x39, 0x0b, 0x26, 0x62, 0x02, 0x8f, 0x86, 0xa9, 0x58, 0x34, 0xac, 0x80, 0x96, 0xa7, 0x4a, - 0x1a, 0x72, 0x02, 0x8d, 0x96, 0x65, 0x9f, 0x0d, 0x07, 0x93, 0xb4, 0x43, 0x7f, 0x0c, 0xcd, 0x1c, - 0xa9, 0x23, 0x42, 0xf6, 0x2d, 0xdc, 0xcd, 0xdb, 0x52, 0x13, 0xda, 0x3d, 0xb9, 0x7e, 0xb9, 0x0f, - 0xfa, 0x28, 0x95, 0xd2, 0x3f, 0x07, 0x80, 0xd8, 0x9d, 0xf4, 0xd2, 0xb1, 0xb1, 0x37, 0x81, 0x1b, - 0x50, 0xdf, 0x84, 0xc5, 0x84, 0x3c, 0xe9, 0x93, 0x47, 0x80, 0x5c, 0x41, 0x32, 0x83, 0x1e, 0xf1, - 0xa9, 0xe9, 0x59, 0xfd, 0xf0, 0xbe, 0xab, 0xcb, 0x9e, 0x63, 0xd6, 0x71, 0x60, 0xf5, 0xf9, 0xa2, - 0xed, 0x62, 0xba, 0xef, 0x75, 0xc9, 0xc6, 0xe4, 0x12, 0x40, 0xfd, 0xff, 0xa0, 0x99, 0x23, 0x55, - 0x1a, 0x78, 0x1b, 0x40, 0x65, 0x7e, 0x72, 0xe9, 0x62, 0x14, 0x66, 0xd2, 0xa6, 0xe5, 0xda, 0x43, - 0xd7, 0xa2, 0x78, 0xb3, 0x87, 0xed, 0xb3, 0x60, 0xd8, 0x1f, 0xdf, 0xa4, 0xff, 0x86, 0x66, 0x8e, - 0x54, 0x69, 0x92, 0x06, 0x15, 0x5b, 0xd2, 0xa4, 0xa7, 0xa2, 0x36, 0x5b, 0xb6, 0x5d, 0x4c, 0x8f, - 0x3d, 0x6b, 0x10, 0xf4, 0xc8, 0xf8, 0x90, 0x84, 0xfe, 0x01, 0x2c, 0x26, 0xe4, 0x8d, 0x08, 0xe5, - 0xef, 0x4b, 0x70, 0x2f, 0x2f, 0xb0, 0x26, 0x66, 0x0c, 0xcb, 0x41, 0x7b, 0x94, 0x0e, 0x4c, 0x75, - 0x2d, 0x95, 0x59, 0xfb, 0xb5, 0xef, 0xb2, 0x4b, 0x96, 0x77, 0x59, 0x43, 0xda, 0x93, 0x69, 0x15, - 0xe7, 0xdd, 0x18, 0xd2, 0x9e, 0xfe, 0x00, 0xee, 0x8f, 0x36, 0x4c, 0xc6, 0xfc, 0x1f, 0x4a, 0xb0, - 0xb4, 0x8b, 0xa9, 0x61, 0x5d, 0x6c, 0xf6, 0x2c, 0xef, 0x74, 0x12, 0xe0, 0xc2, 0x3d, 0xb8, 0xda, - 0xf5, 0x49, 0xdf, 0x4c, 0x20, 0x0c, 0x55, 0xa3, 0xc6, 0x88, 0xd1, 0x2b, 0x75, 0x0d, 0xe6, 0x29, - 0x31, 0x13, 0xef, 0xdc, 0xaa, 0x01, 0x94, 0x84, 0x0c, 0xfa, 0x5f, 0x67, 0xe0, 0x46, 0xca, 0x30, - 0xb9, 0x10, 0x7b, 0x30, 0xef, 0x5b, 0x17, 0xa6, 0x2d, 0xc8, 0x8d, 0x12, 0xbf, 0xa7, 0xde, 0x8f, - 0x25, 0x8e, 0xd9, 0x31, 0xeb, 0x11, 0xc9, 0x00, 0x3f, 0xea, 0xd5, 0x7e, 0x98, 0x86, 0x6a, 0xd4, - 0x83, 0x96, 0xa1, 0xdc, 0x76, 0x49, 0x9b, 0x3d, 0x59, 0x44, 0x88, 0xcd, 0xb1, 0xe6, 0x7e, 0x27, - 0x02, 0x66, 0xa6, 0x14, 0x30, 0x83, 0x56, 0xa1, 0xe2, 0xe1, 0x0b, 0x93, 0xa7, 0xa0, 0xdc, 0xf8, - 0xd6, 0x54, 0xa3, 0x64, 0x94, 0x3d, 0x7c, 0x71, 0x64, 0x51, 0x96, 0xe6, 0x54, 0xd8, 0x3b, 0x9d, - 0x77, 0xcf, 0xa8, 0x6e, 0xe2, 0x76, 0x78, 0xf7, 0x21, 0x54, 0xc9, 0x00, 0xfb, 0x16, 0x65, 0x73, - 0x9f, 0xe5, 0x99, 0xef, 0x27, 0xef, 0x38, 0x81, 0xf5, 0xc3, 0x70, 0xa0, 0xa1, 0x64, 0x30, 0x9f, - 0x33, 0x9f, 0x28, 0xa1, 0x02, 0xea, 0xa8, 0xf9, 0xd6, 0x45, 0xc4, 0xcf, 0x62, 0x89, 0x19, 0xd5, - 0x27, 0x1d, 0xcc, 0xd1, 0x8e, 0x59, 0x6e, 0xd0, 0x2b, 0xd2, 0xc1, 0x1c, 0xea, 0xc0, 0x17, 0xa2, - 0xab, 0x22, 0xba, 0x3c, 0x7c, 0xc1, 0xbb, 0xee, 0xc3, 0xb5, 0x70, 0xa6, 0x66, 0xfb, 0x92, 0x9d, - 0x08, 0x55, 0x91, 0xd7, 0xc9, 0xb9, 0xb6, 0x18, 0x8d, 0x71, 0x85, 0x13, 0x96, 0x5c, 0x20, 0xb8, - 0xe4, 0x94, 0x39, 0x97, 0xee, 0x40, 0x55, 0x99, 0x33, 0x0f, 0xe5, 0xd7, 0x07, 0x2f, 0x0e, 0x0e, - 0x3f, 0x3f, 0xa8, 0x5f, 0x41, 0x55, 0x98, 0xdd, 0xd8, 0xda, 0xda, 0xde, 0x12, 0x99, 0xfa, 0xe6, - 0xe1, 0xd1, 0xfe, 0xf6, 0x96, 0xc8, 0xd4, 0xb7, 0xb6, 0x5f, 0x6e, 0x9f, 0x6c, 0x6f, 0xd5, 0xa7, - 0x51, 0x0d, 0x2a, 0xaf, 0x0e, 0xb7, 0xf6, 0x77, 0x58, 0xd7, 0x0c, 0xeb, 0x32, 0xb6, 0x0f, 0x36, - 0x5e, 0x6d, 0x6f, 0xd5, 0x67, 0x51, 0x1d, 0x6a, 0x27, 0x5f, 0x1c, 0x6d, 0x9b, 0x9b, 0x7b, 0x1b, - 0x07, 0xbb, 0xdb, 0x5b, 0xf5, 0x39, 0xfd, 0x97, 0xd0, 0x38, 0xc6, 0x96, 0x6f, 0xf7, 0x76, 0x1c, - 0x17, 0x07, 0xad, 0x4b, 0x76, 0x98, 0x8e, 0x1f, 0xdb, 0x4b, 0x30, 0xfb, 0x76, 0x88, 0x65, 0xb6, - 0x50, 0x35, 0x44, 0x23, 0xcc, 0xe1, 0xa6, 0xa3, 0x1c, 0x4e, 0xff, 0x04, 0x9a, 0x39, 0xda, 0x55, - 0x5a, 0xd9, 0x65, 0x64, 0x1e, 0xba, 0x35, 0x43, 0x34, 0xf4, 0x3f, 0x97, 0xe0, 0x56, 0x62, 0xcc, - 0x26, 0xf1, 0x28, 0xf6, 0xe8, 0x4f, 0x66, 0x34, 0xfa, 0x00, 0xea, 0x76, 0x6f, 0xe8, 0x9d, 0x61, - 0x96, 0x60, 0x0a, 0x5b, 0x25, 0xca, 0x76, 0x5d, 0xd2, 0xa3, 0x63, 0xe3, 0x12, 0x56, 0xf2, 0x6d, - 0x95, 0x53, 0x6c, 0x40, 0xb9, 0x6f, 0x51, 0xbb, 0x17, 0x4d, 0x32, 0x6c, 0xa2, 0x55, 0x00, 0xfe, - 0x69, 0xc6, 0x2e, 0xe9, 0x2a, 0xa7, 0x6c, 0x59, 0xd4, 0x42, 0x77, 0xa0, 0x86, 0xbd, 0x8e, 0x49, - 0xba, 0x26, 0xa7, 0x49, 0xf4, 0x0f, 0xb0, 0xd7, 0x39, 0xec, 0xbe, 0x62, 0x14, 0xfd, 0x77, 0x25, - 0x98, 0x13, 0xd8, 0x59, 0xf8, 0x5c, 0x2f, 0x45, 0xcf, 0x75, 0xb6, 0x55, 0xf9, 0x6d, 0x2a, 0x66, - 0xca, 0xbf, 0xd1, 0xff, 0x42, 0x33, 0x3a, 0x27, 0x89, 0xef, 0x7c, 0xc3, 0xa3, 0xcf, 0xec, 0x61, - 0xab, 0x83, 0x7d, 0x79, 0xf0, 0x2c, 0x87, 0xe7, 0x66, 0xd4, 0xbf, 0xc7, 0xbb, 0xd1, 0x7b, 0x70, - 0xad, 0xef, 0xb0, 0xac, 0xdf, 0xf4, 0x71, 0xb7, 0x6f, 0x0d, 0x82, 0xc6, 0x0c, 0x7f, 0xf1, 0x5d, - 0x15, 0x54, 0x43, 0x10, 0xf5, 0xdf, 0x97, 0xe0, 0x26, 0xc7, 0x2d, 0xf6, 0x4e, 0x4e, 0x8e, 0x26, - 0x85, 0x8c, 0x3e, 0x48, 0x20, 0xa3, 0x59, 0x70, 0x31, 0x44, 0x4a, 0x63, 0xd0, 0xe7, 0x74, 0x02, - 0xfa, 0xd4, 0x9b, 0xb0, 0x9c, 0xb1, 0x4a, 0x2e, 0xe0, 0x17, 0xb0, 0xba, 0x8b, 0xe9, 0x61, 0xfb, - 0x17, 0xd8, 0xa6, 0x5b, 0x8e, 0x8f, 0xed, 0xc9, 0x21, 0xdc, 0xff, 0x05, 0xb7, 0x8b, 0x44, 0x8f, - 0x40, 0xba, 0xff, 0x54, 0x82, 0xa5, 0x4d, 0x97, 0x78, 0x98, 0x5d, 0x53, 0x47, 0x84, 0xb8, 0x93, - 0x70, 0xe0, 0xcc, 0x80, 0xa5, 0x0b, 0xa9, 0xcc, 0x5e, 0x58, 0xc6, 0x55, 0xf0, 0xfe, 0x98, 0xa3, - 0xa7, 0x47, 0x39, 0x5a, 0x5f, 0x86, 0x1b, 0x29, 0x0b, 0xa5, 0x33, 0xff, 0x5e, 0x82, 0x95, 0x44, - 0xcf, 0xbe, 0x47, 0xb1, 0xef, 0x59, 0x3f, 0xe1, 0x1c, 0x72, 0x21, 0x8d, 0xe9, 0x7f, 0x03, 0xd2, - 0x58, 0x83, 0xd5, 0x82, 0x29, 0x28, 0x80, 0x9a, 0xf9, 0xe3, 0x7c, 0xd2, 0x00, 0x75, 0x56, 0xa8, - 0x54, 0xf8, 0x35, 0x53, 0xe8, 0xf1, 0x83, 0x73, 0x62, 0x0a, 0xf9, 0x45, 0x89, 0x5d, 0x8b, 0x3a, - 0xe7, 0x58, 0xdc, 0xce, 0xf2, 0x71, 0x12, 0x12, 0xd9, 0x5d, 0x25, 0xac, 0x4a, 0x6b, 0x96, 0x56, - 0xfd, 0xa6, 0xc4, 0x72, 0xac, 0x81, 0xeb, 0xd8, 0x93, 0xc5, 0xea, 0xd1, 0x87, 0x30, 0x27, 0x16, - 0x65, 0x04, 0x12, 0x25, 0x39, 0xf4, 0x55, 0xb8, 0x95, 0x6b, 0x83, 0xb4, 0xf1, 0x35, 0x34, 0x0f, - 0x07, 0xd4, 0xe9, 0xf3, 0x3d, 0x37, 0xb9, 0xc5, 0x5a, 0x01, 0x2d, 0x4f, 0xac, 0x50, 0xfa, 0xf4, - 0xb7, 0xb7, 0x79, 0x9d, 0x32, 0xac, 0x6c, 0x89, 0x02, 0x2f, 0xfa, 0x12, 0xea, 0xe9, 0x1a, 0x2b, - 0x5a, 0xcb, 0x6a, 0x4b, 0x94, 0x74, 0xb5, 0x3b, 0xc5, 0x0c, 0x72, 0x86, 0x73, 0xff, 0xfc, 0xfe, - 0xe1, 0x54, 0x65, 0x0a, 0x7d, 0x15, 0xd6, 0x46, 0x63, 0x85, 0x53, 0x14, 0x1f, 0x9e, 0x5b, 0xa9, - 0xd5, 0xee, 0x8e, 0xe0, 0x48, 0x68, 0x28, 0xa1, 0x17, 0x00, 0xaa, 0x12, 0x8a, 0x9a, 0xc9, 0x81, - 0xb1, 0x8a, 0xac, 0xa6, 0xe5, 0x75, 0xa5, 0x84, 0x7d, 0x0e, 0xd7, 0x92, 0x85, 0x4c, 0xb4, 0x1a, - 0x3d, 0xfb, 0xf2, 0x0a, 0xab, 0xda, 0xed, 0xa2, 0xee, 0xac, 0xe0, 0x64, 0x55, 0x51, 0x09, 0xce, - 0x2d, 0x60, 0x2a, 0xc1, 0xf9, 0xc5, 0xc8, 0x48, 0xb0, 0x0d, 0x28, 0x5b, 0x0d, 0x44, 0x91, 0xff, - 0x0a, 0x8b, 0x93, 0x9a, 0x3e, 0x8a, 0x25, 0xa5, 0xe4, 0x00, 0xe6, 0x63, 0x25, 0x31, 0x14, 0x79, - 0x32, 0x5b, 0x68, 0xd4, 0x6e, 0xe5, 0xf6, 0xa5, 0xe4, 0x7d, 0x09, 0xf5, 0x74, 0xf2, 0xa3, 0x82, - 0xae, 0xa0, 0xca, 0xa6, 0x82, 0xae, 0xb0, 0x62, 0x16, 0x8a, 0x7f, 0x05, 0xa0, 0x2a, 0x46, 0x2a, - 0x24, 0x32, 0x25, 0x2b, 0x15, 0x12, 0xd9, 0x02, 0x53, 0x28, 0xec, 0x09, 0xb7, 0x36, 0x5d, 0x01, - 0x52, 0xd6, 0x16, 0x14, 0x9c, 0x94, 0xb5, 0x45, 0xc5, 0xa3, 0xf8, 0x16, 0xc9, 0x94, 0x54, 0xd4, - 0x16, 0x29, 0x2a, 0x24, 0xa9, 0x2d, 0x52, 0x58, 0x8f, 0x89, 0xfc, 0xf1, 0x3f, 0x30, 0xb3, 0x13, - 0xd8, 0x67, 0x68, 0x31, 0x1a, 0xa2, 0xaa, 0x31, 0xda, 0x52, 0x92, 0x98, 0x1a, 0xba, 0x0d, 0x95, - 0xb0, 0x20, 0x81, 0x96, 0x43, 0xce, 0x54, 0x71, 0x45, 0x6b, 0x64, 0x3b, 0x52, 0x62, 0x4e, 0xe0, - 0x6a, 0xa2, 0x9a, 0x80, 0x56, 0x22, 0xad, 0x39, 0x45, 0x0d, 0x6d, 0xb5, 0xa0, 0x37, 0xe5, 0xb9, - 0x17, 0x00, 0x0a, 0xe5, 0x57, 0xeb, 0x9c, 0xa9, 0x44, 0xa8, 0x75, 0xce, 0x29, 0x0a, 0xc4, 0x36, - 0x52, 0x16, 0xa8, 0x57, 0x1b, 0xa9, 0xb0, 0x70, 0xa0, 0x36, 0x52, 0x31, 0xce, 0x1f, 0x59, 0xcc, - 0x95, 0xa4, 0xa1, 0xf5, 0xb8, 0x92, 0x02, 0xa8, 0x3f, 0xae, 0xa4, 0x08, 0x99, 0x8f, 0x94, 0xf8, - 0xd9, 0x4a, 0xb5, 0x84, 0xc4, 0xd1, 0x83, 0xa2, 0x3d, 0x94, 0x44, 0xe8, 0xb5, 0xf7, 0x7f, 0x94, - 0x2f, 0xe5, 0xbd, 0x63, 0xa8, 0xc5, 0x21, 0x71, 0x74, 0x2b, 0x29, 0x20, 0x81, 0x1d, 0x6a, 0x2b, - 0xf9, 0x9d, 0xc9, 0x69, 0x3c, 0x29, 0xa1, 0x5f, 0x81, 0x56, 0x8c, 0x0a, 0xa2, 0x0f, 0x46, 0xd9, - 0x98, 0x54, 0xf8, 0xe1, 0xbb, 0xb0, 0x26, 0x67, 0xf4, 0xb0, 0x84, 0xf6, 0xa0, 0x1a, 0x21, 0xd5, - 0xa8, 0x51, 0x84, 0xb3, 0x6b, 0xcd, 0x9c, 0x9e, 0x94, 0x77, 0x3e, 0x83, 0x5a, 0x1c, 0x79, 0x56, - 0xde, 0xc9, 0x01, 0xbd, 0x95, 0x77, 0x72, 0xc1, 0xea, 0xf8, 0x91, 0xac, 0xb0, 0xcb, 0xd8, 0x91, - 0x9c, 0x01, 0x48, 0x63, 0x47, 0x72, 0x16, 0xec, 0x8c, 0x82, 0xa6, 0xcd, 0x7f, 0x36, 0x48, 0x02, - 0x8e, 0x28, 0x5e, 0xed, 0xcf, 0x45, 0x38, 0xd5, 0x29, 0x54, 0x88, 0x56, 0xc6, 0xd6, 0xf3, 0x2b, - 0x58, 0xc8, 0x20, 0x88, 0x4a, 0x47, 0x11, 0x64, 0xa9, 0x74, 0x14, 0xc2, 0x8f, 0xd1, 0x2c, 0x5a, - 0x50, 0x96, 0xbf, 0x08, 0xa1, 0x9b, 0xd1, 0xa8, 0xc4, 0xff, 0x47, 0xda, 0x72, 0x86, 0x9e, 0xf2, - 0xec, 0x11, 0xcc, 0xc7, 0xe0, 0x45, 0x14, 0xbf, 0x23, 0x52, 0xb0, 0xa1, 0xf2, 0x6c, 0x0e, 0x1e, - 0x19, 0x9b, 0xf7, 0xaf, 0x59, 0xfa, 0x31, 0x02, 0xec, 0x43, 0x1f, 0x8d, 0x8a, 0xcf, 0xb4, 0xd2, - 0x47, 0xef, 0xc6, 0x9c, 0x9a, 0xd5, 0xcf, 0xe1, 0x6a, 0x02, 0xb8, 0x52, 0x27, 0x70, 0x1e, 0xba, - 0xa8, 0x4e, 0xe0, 0x5c, 0xb4, 0x2b, 0x36, 0xb7, 0x33, 0x58, 0xca, 0x03, 0x1a, 0xd0, 0x3d, 0xb5, - 0x2b, 0x0a, 0x21, 0x13, 0xed, 0xfe, 0x68, 0xa6, 0x8c, 0xb2, 0x36, 0x2c, 0x64, 0x50, 0x1b, 0x15, - 0x40, 0x45, 0x70, 0x92, 0x0a, 0xa0, 0x42, 0xc8, 0x27, 0xa6, 0x03, 0x03, 0xca, 0x96, 0x68, 0x50, - 0xec, 0x41, 0x5a, 0x50, 0x29, 0x52, 0x47, 0xf4, 0x88, 0x0a, 0x8f, 0x3a, 0x5c, 0xda, 0xb0, 0x90, - 0xa9, 0xca, 0xa8, 0xa9, 0x14, 0x95, 0x81, 0xd4, 0x54, 0x0a, 0x4b, 0x3a, 0xb1, 0xa9, 0xbc, 0x81, - 0xeb, 0x29, 0x78, 0x01, 0xdd, 0x4e, 0xbc, 0x1a, 0x32, 0x68, 0x88, 0xb6, 0x56, 0xd8, 0x9f, 0x8a, - 0x27, 0x02, 0x37, 0xf3, 0x41, 0x04, 0xf4, 0x5e, 0x2c, 0x74, 0x8a, 0xf1, 0x0b, 0xed, 0xc1, 0x8f, - 0xb1, 0xa5, 0xb6, 0xf6, 0x09, 0x5c, 0x4d, 0xe4, 0xbf, 0x2a, 0x80, 0xf3, 0x50, 0x09, 0x15, 0xc0, - 0xf9, 0x88, 0x40, 0x38, 0x0d, 0x37, 0x05, 0x19, 0x84, 0x59, 0x35, 0xba, 0x9f, 0x3b, 0x3e, 0x85, - 0x1b, 0x68, 0xef, 0xfd, 0x08, 0x57, 0xf6, 0xdd, 0x9b, 0xce, 0xa6, 0xe3, 0xc9, 0x56, 0x6e, 0xf2, - 0x1e, 0x4f, 0xb6, 0x0a, 0x12, 0xf1, 0x84, 0xf8, 0x64, 0x5a, 0x1c, 0x17, 0x9f, 0x9b, 0xaa, 0xc7, - 0xc5, 0x17, 0x64, 0xd4, 0xa1, 0xf8, 0x2e, 0x2c, 0xe6, 0x24, 0xb5, 0x28, 0x16, 0xf7, 0x45, 0x59, - 0xb7, 0x76, 0x6f, 0x24, 0x4f, 0xf6, 0x25, 0x96, 0x4d, 0x63, 0xd5, 0x0e, 0x2c, 0xcc, 0x9c, 0xd5, - 0x0e, 0x2c, 0xce, 0x82, 0x43, 0x25, 0xad, 0x27, 0x6f, 0x18, 0xb3, 0x6b, 0xb5, 0xd7, 0x6d, 0xd2, - 0x7f, 0x2c, 0x3e, 0x3f, 0x26, 0xfe, 0xe9, 0x63, 0x21, 0xe2, 0x31, 0xff, 0xad, 0xf9, 0xf1, 0x29, - 0x91, 0xed, 0x41, 0xbb, 0x3d, 0xc7, 0x49, 0xcf, 0xfe, 0x15, 0x00, 0x00, 0xff, 0xff, 0x33, 0xd8, - 0x52, 0x3b, 0x27, 0x2d, 0x00, 0x00, + 0x5e, 0xd2, 0x34, 0x92, 0x87, 0x04, 0xf0, 0xab, 0x81, 0x00, 0x41, 0x9c, 0xc7, 0x3c, 0xe7, 0x17, + 0xe4, 0x25, 0x08, 0xf2, 0x92, 0xff, 0xe0, 0xbf, 0x90, 0x9f, 0x90, 0xa7, 0xa0, 0x2f, 0x33, 0x3d, + 0xd7, 0xb5, 0x82, 0x5d, 0x38, 0x6f, 0xd3, 0xd5, 0xd5, 0x55, 0xd5, 0xd5, 0xd5, 0x97, 0xfa, 0x6a, + 0xa0, 0xe1, 0xe3, 0x01, 0x09, 0x1c, 0x4a, 0xfc, 0xcb, 0x8f, 0x03, 0xec, 0x9f, 0x3b, 0x36, 0x5e, + 0x1f, 0xf8, 0x84, 0x12, 0x34, 0x77, 0xea, 0x50, 0xcb, 0xbd, 0xd4, 0xc0, 0x75, 0x3c, 0x2a, 0x68, + 0x5a, 0x2d, 0xe8, 0x59, 0x3e, 0xee, 0x88, 0x96, 0x7e, 0x0c, 0xcb, 0x46, 0x34, 0x7a, 0xfb, 0x6b, + 0x27, 0xa0, 0x81, 0x81, 0xdf, 0x0e, 0x71, 0x40, 0xd1, 0xa7, 0x00, 0x4a, 0x70, 0xa3, 0x74, 0xa7, + 0xf4, 0x70, 0xfe, 0x29, 0x5a, 0x17, 0x12, 0xd7, 0xd5, 0xa0, 0xd6, 0xcc, 0x1f, 0xfe, 0xfe, 0xa8, + 0x64, 0xc4, 0x78, 0xf5, 0xa7, 0xd0, 0xc8, 0x0a, 0x0d, 0x06, 0xc4, 0x0b, 0x30, 0xba, 0x09, 0x73, + 0x98, 0x53, 0xb8, 0xc4, 0x8a, 0x21, 0x5b, 0xfa, 0x09, 0x1f, 0x63, 0xd9, 0x67, 0xfb, 0x9e, 0xed, + 0xe3, 0x3e, 0xf6, 0xa8, 0xe5, 0x8e, 0x6f, 0xc9, 0x2d, 0x68, 0xe6, 0x48, 0x15, 0xa6, 0xe8, 0x3e, + 0x2c, 0x88, 0xce, 0x9d, 0xa1, 0x3b, 0xbe, 0x2e, 0x74, 0x0f, 0xae, 0xda, 0x3e, 0xb6, 0x28, 0x36, + 0xdb, 0x0e, 0xed, 0x5b, 0x83, 0xc6, 0x14, 0x9f, 0x60, 0x4d, 0x10, 0x5b, 0x9c, 0xa6, 0x2f, 0x01, + 0x8a, 0xeb, 0x94, 0x96, 0x9c, 0xc3, 0x8d, 0x5d, 0xcb, 0x6f, 0x5b, 0xa7, 0x78, 0x93, 0xb8, 0x2e, + 0xb6, 0xe9, 0x4f, 0x64, 0x4d, 0x03, 0x6e, 0xa6, 0xf5, 0x4a, 0x8b, 0x9e, 0xc3, 0xb5, 0x4d, 0x17, + 0x5b, 0xde, 0x70, 0x30, 0xfe, 0x22, 0x2c, 0xc0, 0xf5, 0x48, 0x96, 0x14, 0xff, 0x19, 0xdc, 0x50, + 0x43, 0x8e, 0x9d, 0x6f, 0xf0, 0xf8, 0x5a, 0x1e, 0xc1, 0xcd, 0xb4, 0x48, 0x19, 0x72, 0x08, 0x66, + 0x02, 0xe7, 0x1b, 0xcc, 0xa5, 0x4d, 0x1b, 0xfc, 0x5b, 0x7f, 0x0b, 0xcd, 0x8d, 0xc1, 0xc0, 0xbd, + 0xdc, 0x75, 0xa8, 0x45, 0xa9, 0xef, 0xb4, 0x87, 0x14, 0x8f, 0x1f, 0xf9, 0x48, 0x83, 0x8a, 0x8f, + 0xcf, 0x9d, 0xc0, 0x21, 0x1e, 0x77, 0x78, 0xcd, 0x88, 0xda, 0xfa, 0x0a, 0x68, 0x79, 0x2a, 0xa5, + 0x47, 0xfe, 0x3a, 0x05, 0x68, 0x07, 0x53, 0xbb, 0x67, 0xe0, 0x3e, 0xa1, 0xe3, 0xfb, 0x83, 0x6d, + 0x34, 0x9f, 0x8b, 0xe2, 0x86, 0x54, 0x0d, 0xd9, 0x42, 0x4b, 0x30, 0xdb, 0x25, 0xbe, 0x8d, 0x1b, + 0xd3, 0x3c, 0x20, 0x44, 0x03, 0x2d, 0x43, 0xd9, 0x23, 0x26, 0xb5, 0x4e, 0x83, 0xc6, 0x8c, 0xd8, + 0x97, 0x1e, 0x39, 0xb1, 0x4e, 0x03, 0xd4, 0x80, 0x32, 0x75, 0xfa, 0x98, 0x0c, 0x69, 0x63, 0xf6, + 0x4e, 0xe9, 0xe1, 0xac, 0x11, 0x36, 0xd9, 0x90, 0x20, 0xe8, 0x99, 0x67, 0xf8, 0xb2, 0x31, 0x27, + 0x34, 0x04, 0x41, 0xef, 0x05, 0xbe, 0x44, 0x6b, 0x30, 0x7f, 0xe6, 0x91, 0x0b, 0xcf, 0xec, 0x11, + 0xb6, 0xcf, 0xcb, 0xbc, 0x13, 0x38, 0x69, 0x8f, 0x51, 0x50, 0x13, 0x2a, 0x1e, 0x31, 0x07, 0xfe, + 0xd0, 0xc3, 0x8d, 0x2a, 0xd7, 0x56, 0xf6, 0xc8, 0x11, 0x6b, 0xa2, 0x67, 0x70, 0x55, 0xd8, 0x69, + 0x0e, 0x2c, 0xdf, 0xea, 0x07, 0x0d, 0xe0, 0x53, 0xbe, 0xa6, 0xa6, 0xcc, 0xbd, 0x53, 0x13, 0x4c, + 0x47, 0x9c, 0xe7, 0xf9, 0x4c, 0xa5, 0x52, 0xaf, 0xea, 0x37, 0x60, 0x31, 0xe1, 0x40, 0xe9, 0xd8, + 0x63, 0x58, 0xde, 0xe4, 0x31, 0xaf, 0xbc, 0x35, 0x7e, 0xb0, 0x69, 0xd0, 0xc8, 0x0a, 0x95, 0x0a, + 0xbf, 0x9d, 0x82, 0x85, 0x5d, 0x4c, 0x37, 0x7c, 0xbb, 0xe7, 0x9c, 0x4f, 0x60, 0x21, 0x6f, 0x41, + 0xd5, 0x26, 0xfd, 0xbe, 0x43, 0x4d, 0xa7, 0x23, 0xd7, 0xb2, 0x22, 0x08, 0xfb, 0x1d, 0xb6, 0xca, + 0x03, 0x1f, 0x77, 0x9d, 0xaf, 0xf9, 0x72, 0x56, 0x0d, 0xd9, 0x42, 0x9f, 0xc2, 0x5c, 0x97, 0xf8, + 0x7d, 0x8b, 0xf2, 0xe5, 0xbc, 0xf6, 0xf4, 0x4e, 0xa8, 0x2a, 0x63, 0xd9, 0xfa, 0x0e, 0xe7, 0x33, + 0x24, 0x3f, 0xdb, 0x2d, 0x03, 0x8b, 0xf6, 0xf8, 0x6a, 0xd7, 0x0c, 0xfe, 0xad, 0x3f, 0x83, 0x39, + 0xc1, 0x85, 0xca, 0x30, 0xfd, 0x66, 0xff, 0xa8, 0x7e, 0x85, 0x7d, 0x9c, 0x6c, 0x18, 0xf5, 0x12, + 0x02, 0x98, 0x3b, 0xd9, 0x30, 0xcc, 0xdd, 0x37, 0xf5, 0x29, 0x34, 0x0f, 0x65, 0xf6, 0xdd, 0x7a, + 0xf3, 0xb4, 0x3e, 0xad, 0x3f, 0x04, 0x14, 0x57, 0xa6, 0x36, 0x63, 0xc7, 0xa2, 0x16, 0xf7, 0x40, + 0xcd, 0xe0, 0xdf, 0x6c, 0x89, 0xf6, 0xac, 0xe0, 0x25, 0xb1, 0x2d, 0xb7, 0xe5, 0x5b, 0x9e, 0xdd, + 0x9b, 0xc0, 0x56, 0xd4, 0x9f, 0x40, 0x23, 0x2b, 0x54, 0x1a, 0xb1, 0x04, 0xb3, 0xe7, 0x96, 0x3b, + 0xc4, 0xf2, 0x0e, 0x12, 0x0d, 0xfd, 0x87, 0x12, 0x34, 0x78, 0x04, 0x1d, 0x93, 0xa1, 0x6f, 0x63, + 0x31, 0x6a, 0xfc, 0xf5, 0xfb, 0x19, 0x2c, 0x04, 0x5c, 0xa0, 0x19, 0x13, 0x30, 0x55, 0x24, 0xc0, + 0xa8, 0x0b, 0x66, 0x23, 0x71, 0x94, 0x4b, 0x01, 0x6d, 0x6e, 0x12, 0x5f, 0xea, 0x9a, 0x51, 0x0b, + 0x62, 0x66, 0xa2, 0x55, 0x00, 0x6a, 0xf9, 0xa7, 0x98, 0x9a, 0x3e, 0xee, 0xf2, 0x45, 0xaf, 0x19, + 0x55, 0x41, 0x31, 0x70, 0x57, 0x7f, 0x06, 0xcd, 0x9c, 0xa9, 0xa9, 0x3b, 0xd9, 0xc7, 0xc1, 0xd0, + 0xa5, 0xe1, 0x9d, 0x2c, 0x5a, 0xfa, 0x2e, 0xcc, 0xef, 0x04, 0xf6, 0xd9, 0xf8, 0x6b, 0x71, 0x1f, + 0x6a, 0x42, 0x90, 0xf2, 0x3f, 0xf6, 0x7d, 0xe2, 0xcb, 0x28, 0x10, 0x0d, 0xfd, 0xcf, 0x25, 0xb8, + 0xfe, 0xb9, 0xef, 0xb0, 0x4d, 0xd5, 0x1d, 0xdf, 0xed, 0x75, 0x98, 0x66, 0x9e, 0x10, 0xa7, 0x30, + 0xfb, 0x4c, 0x1c, 0xce, 0xd3, 0xc9, 0xc3, 0x19, 0xdd, 0x85, 0x1a, 0x71, 0x3b, 0x66, 0xd4, 0x2f, + 0x1c, 0x38, 0x4f, 0xdc, 0x8e, 0x11, 0xb2, 0x44, 0x07, 0xe7, 0x6c, 0xec, 0xe0, 0x7c, 0x3e, 0x53, + 0x99, 0xab, 0x97, 0xf5, 0x06, 0xd4, 0x95, 0xe5, 0x62, 0x92, 0xcf, 0x67, 0x2a, 0xa5, 0xfa, 0x94, + 0xee, 0xc1, 0xd2, 0x8e, 0xe3, 0x75, 0x5e, 0x61, 0xff, 0x14, 0xb7, 0xac, 0x60, 0x02, 0xe7, 0xc1, + 0x0a, 0x54, 0x43, 0x33, 0x83, 0xc6, 0xd4, 0x9d, 0x69, 0xb6, 0xd0, 0x11, 0x41, 0xff, 0x08, 0x6e, + 0xa4, 0xf4, 0xa9, 0x8d, 0xd7, 0xb6, 0x02, 0x11, 0xf2, 0x55, 0x83, 0x7f, 0xeb, 0xdf, 0x95, 0x60, + 0x41, 0x9c, 0x63, 0x3b, 0xc4, 0x3f, 0xfb, 0xcf, 0x87, 0x3a, 0x7b, 0x1e, 0xc5, 0xed, 0x89, 0x1e, + 0x6a, 0xcd, 0xfd, 0xc0, 0xc0, 0xcc, 0xe4, 0x7d, 0xef, 0xc8, 0x27, 0xa7, 0x3e, 0x0e, 0x82, 0x89, + 0x1c, 0xac, 0x3e, 0x17, 0x1a, 0x3b, 0x58, 0x05, 0x61, 0xbf, 0xa3, 0xff, 0x3f, 0x68, 0x79, 0x3a, + 0xa5, 0x33, 0xd7, 0x60, 0xde, 0xf1, 0xcc, 0x81, 0x24, 0xcb, 0x6d, 0x03, 0x4e, 0xc4, 0x28, 0x4c, + 0x3e, 0x7e, 0x3b, 0xb4, 0x82, 0xde, 0x84, 0x4d, 0x0e, 0xb8, 0xd0, 0x98, 0xc9, 0x82, 0x10, 0x9a, + 0x9c, 0xd5, 0xf9, 0xae, 0x26, 0xbb, 0x70, 0x3b, 0x7d, 0xa7, 0xed, 0xf8, 0xa4, 0xff, 0xda, 0x78, + 0x39, 0x91, 0xcd, 0x38, 0xf4, 0x5d, 0x69, 0x31, 0xfb, 0xd4, 0xef, 0xc2, 0x5a, 0xa1, 0x36, 0xb9, + 0xec, 0x87, 0xb0, 0x28, 0x58, 0x5a, 0x43, 0xaf, 0xe3, 0x4e, 0xe0, 0x89, 0xf8, 0x21, 0x2c, 0x25, + 0x05, 0x8e, 0xb8, 0x93, 0xbe, 0x9b, 0x82, 0xfa, 0x31, 0xa6, 0x9b, 0xc4, 0xeb, 0x3a, 0xa7, 0xe3, + 0x3b, 0xe0, 0x53, 0x28, 0x63, 0x8f, 0xfa, 0x0e, 0x16, 0x5b, 0x76, 0xfe, 0xe9, 0xed, 0x70, 0x58, + 0x5a, 0xc9, 0xfa, 0xb6, 0x47, 0xfd, 0x4b, 0x23, 0x64, 0xd7, 0xbe, 0x2d, 0xc1, 0x2c, 0x27, 0x31, + 0x27, 0xb2, 0xc7, 0x96, 0xd8, 0xc0, 0xec, 0x13, 0xad, 0x42, 0x95, 0x5f, 0x5d, 0x66, 0x40, 0x7d, + 0xe1, 0xdc, 0xbd, 0x2b, 0x46, 0x85, 0x93, 0x8e, 0xa9, 0x8f, 0xee, 0xc2, 0xbc, 0xe8, 0x76, 0x3c, + 0xfa, 0xec, 0x29, 0x3f, 0xf3, 0x66, 0xf7, 0xae, 0x18, 0xc0, 0x89, 0xfb, 0x8c, 0x86, 0xd6, 0x40, + 0xb4, 0xcc, 0x36, 0x21, 0xae, 0x78, 0xfa, 0xed, 0x5d, 0x31, 0x84, 0xd4, 0x16, 0x21, 0x6e, 0xab, + 0x2c, 0xaf, 0x4a, 0x7d, 0x11, 0x16, 0x62, 0xa6, 0xca, 0x25, 0xb2, 0x61, 0x71, 0x0b, 0xbb, 0x98, + 0xe2, 0x49, 0xf9, 0x09, 0xc1, 0xcc, 0x19, 0xbe, 0x14, 0x4e, 0xaa, 0x1a, 0xfc, 0x5b, 0xbf, 0x09, + 0x4b, 0x49, 0x25, 0x52, 0xb9, 0xc3, 0x92, 0xbb, 0x80, 0x12, 0x1f, 0x6f, 0x0e, 0x03, 0x4a, 0xfa, + 0x7b, 0x84, 0x9c, 0x05, 0x13, 0x31, 0x81, 0x47, 0xc3, 0x54, 0x2c, 0x1a, 0x56, 0x40, 0xcb, 0x53, + 0x25, 0x0d, 0x39, 0x81, 0x46, 0xcb, 0xb2, 0xcf, 0x86, 0x83, 0x49, 0xda, 0xa1, 0x3f, 0x86, 0x66, + 0x8e, 0xd4, 0x11, 0x21, 0xfb, 0x16, 0xee, 0xe6, 0x6d, 0xa9, 0x09, 0xed, 0x9e, 0x5c, 0xbf, 0xdc, + 0x07, 0x7d, 0x94, 0x4a, 0xe9, 0x9f, 0x03, 0x40, 0xec, 0x4e, 0x7a, 0xe9, 0xd8, 0xd8, 0x9b, 0xc0, + 0x0d, 0xa8, 0x6f, 0xc2, 0x62, 0x42, 0x9e, 0xf4, 0xc9, 0x23, 0x40, 0xae, 0x20, 0x99, 0x41, 0x8f, + 0xf8, 0xd4, 0xf4, 0xac, 0x7e, 0x78, 0xdf, 0xd5, 0x65, 0xcf, 0x31, 0xeb, 0x38, 0xb0, 0xfa, 0x7c, + 0xd1, 0x76, 0x31, 0xdd, 0xf7, 0xba, 0x64, 0x63, 0x72, 0x09, 0xa0, 0xfe, 0x7f, 0xd0, 0xcc, 0x91, + 0x2a, 0x0d, 0xbc, 0x0d, 0xa0, 0x32, 0x3f, 0xb9, 0x74, 0x31, 0x0a, 0x33, 0x69, 0xd3, 0x72, 0xed, + 0xa1, 0x6b, 0x51, 0xbc, 0xd9, 0xc3, 0xf6, 0x59, 0x30, 0xec, 0x8f, 0x6f, 0xd2, 0x7f, 0x43, 0x33, + 0x47, 0xaa, 0x34, 0x49, 0x83, 0x8a, 0x2d, 0x69, 0xd2, 0x53, 0x51, 0x9b, 0x2d, 0xdb, 0x2e, 0xa6, + 0xc7, 0x9e, 0x35, 0x08, 0x7a, 0x64, 0x7c, 0x48, 0x42, 0xff, 0x00, 0x16, 0x13, 0xf2, 0x46, 0x84, + 0xf2, 0xf7, 0x25, 0xb8, 0x97, 0x17, 0x58, 0x13, 0x33, 0x86, 0xe5, 0xa0, 0x3d, 0x4a, 0x07, 0xa6, + 0xba, 0x96, 0xca, 0xac, 0xfd, 0xda, 0x77, 0xd9, 0x25, 0xcb, 0xbb, 0xac, 0x21, 0xed, 0xc9, 0xb4, + 0x8a, 0xf3, 0x6e, 0x0c, 0x69, 0x4f, 0x7f, 0x00, 0xf7, 0x47, 0x1b, 0x26, 0x63, 0xfe, 0xf7, 0x25, + 0x58, 0xda, 0xc5, 0xd4, 0xb0, 0x2e, 0x36, 0x7b, 0x96, 0x77, 0x3a, 0x09, 0x70, 0xe1, 0x1e, 0x5c, + 0xed, 0xfa, 0xa4, 0x6f, 0x26, 0x10, 0x86, 0xaa, 0x51, 0x63, 0xc4, 0xe8, 0x95, 0xba, 0x06, 0xf3, + 0x94, 0x98, 0x89, 0x77, 0x6e, 0xd5, 0x00, 0x4a, 0x42, 0x06, 0xfd, 0x2f, 0x33, 0x70, 0x23, 0x65, + 0x98, 0x5c, 0x88, 0x3d, 0x98, 0xf7, 0xad, 0x0b, 0xd3, 0x16, 0xe4, 0x46, 0x89, 0xdf, 0x53, 0xef, + 0xc7, 0x12, 0xc7, 0xec, 0x98, 0xf5, 0x88, 0x64, 0x80, 0x1f, 0xf5, 0x6a, 0x3f, 0x4c, 0x43, 0x35, + 0xea, 0x41, 0xcb, 0x50, 0x6e, 0xbb, 0xa4, 0xcd, 0x9e, 0x2c, 0x22, 0xc4, 0xe6, 0x58, 0x73, 0xbf, + 0x13, 0x01, 0x33, 0x53, 0x0a, 0x98, 0x41, 0xab, 0x50, 0xf1, 0xf0, 0x85, 0xc9, 0x53, 0x50, 0x6e, + 0x7c, 0x6b, 0xaa, 0x51, 0x32, 0xca, 0x1e, 0xbe, 0x38, 0xb2, 0x28, 0x4b, 0x73, 0x2a, 0xec, 0x9d, + 0xce, 0xbb, 0x67, 0x54, 0x37, 0x71, 0x3b, 0xbc, 0xfb, 0x10, 0xaa, 0x64, 0x80, 0x7d, 0x8b, 0xb2, + 0xb9, 0xcf, 0xf2, 0xcc, 0xf7, 0x93, 0x77, 0x9c, 0xc0, 0xfa, 0x61, 0x38, 0xd0, 0x50, 0x32, 0x98, + 0xcf, 0x99, 0x4f, 0x94, 0x50, 0x01, 0x75, 0xd4, 0x7c, 0xeb, 0x22, 0xe2, 0x67, 0xb1, 0xc4, 0x8c, + 0xea, 0x93, 0x0e, 0xe6, 0x68, 0xc7, 0x2c, 0x37, 0xe8, 0x15, 0xe9, 0x60, 0x0e, 0x75, 0xe0, 0x0b, + 0xd1, 0x55, 0x11, 0x5d, 0x1e, 0xbe, 0xe0, 0x5d, 0xf7, 0xe1, 0x5a, 0x38, 0x53, 0xb3, 0x7d, 0xc9, + 0x4e, 0x84, 0xaa, 0xc8, 0xeb, 0xe4, 0x5c, 0x5b, 0x8c, 0xc6, 0xb8, 0xc2, 0x09, 0x4b, 0x2e, 0x10, + 0x5c, 0x72, 0xca, 0x9c, 0x4b, 0x77, 0xa0, 0xaa, 0xcc, 0x99, 0x87, 0xf2, 0xeb, 0x83, 0x17, 0x07, + 0x87, 0x9f, 0x1f, 0xd4, 0xaf, 0xa0, 0x2a, 0xcc, 0x6e, 0x6c, 0x6d, 0x6d, 0x6f, 0x89, 0x4c, 0x7d, + 0xf3, 0xf0, 0x68, 0x7f, 0x7b, 0x4b, 0x64, 0xea, 0x5b, 0xdb, 0x2f, 0xb7, 0x4f, 0xb6, 0xb7, 0xea, + 0xd3, 0xa8, 0x06, 0x95, 0x57, 0x87, 0x5b, 0xfb, 0x3b, 0xac, 0x6b, 0x86, 0x75, 0x19, 0xdb, 0x07, + 0x1b, 0xaf, 0xb6, 0xb7, 0xea, 0xb3, 0xa8, 0x0e, 0xb5, 0x93, 0x2f, 0x8e, 0xb6, 0xcd, 0xcd, 0xbd, + 0x8d, 0x83, 0xdd, 0xed, 0xad, 0xfa, 0x9c, 0xfe, 0x4b, 0x68, 0x1c, 0x63, 0xcb, 0xb7, 0x7b, 0x3b, + 0x8e, 0x8b, 0x83, 0xd6, 0x25, 0x3b, 0x4c, 0xc7, 0x8f, 0xed, 0x25, 0x98, 0x7d, 0x3b, 0xc4, 0x32, + 0x5b, 0xa8, 0x1a, 0xa2, 0x11, 0xe6, 0x70, 0xd3, 0x51, 0x0e, 0xa7, 0x7f, 0x02, 0xcd, 0x1c, 0xed, + 0x2a, 0xad, 0xec, 0x32, 0x32, 0x0f, 0xdd, 0x9a, 0x21, 0x1a, 0xfa, 0x9f, 0x4a, 0x70, 0x2b, 0x31, + 0x66, 0x93, 0x78, 0x14, 0x7b, 0xf4, 0x27, 0x33, 0x1a, 0x7d, 0x00, 0x75, 0xbb, 0x37, 0xf4, 0xce, + 0x30, 0x4b, 0x30, 0x85, 0xad, 0x12, 0x65, 0xbb, 0x2e, 0xe9, 0xd1, 0xb1, 0x71, 0x09, 0x2b, 0xf9, + 0xb6, 0xca, 0x29, 0x36, 0xa0, 0xdc, 0xb7, 0xa8, 0xdd, 0x8b, 0x26, 0x19, 0x36, 0xd1, 0x2a, 0x00, + 0xff, 0x34, 0x63, 0x97, 0x74, 0x95, 0x53, 0xb6, 0x2c, 0x6a, 0xa1, 0x3b, 0x50, 0xc3, 0x5e, 0xc7, + 0x24, 0x5d, 0x93, 0xd3, 0x24, 0xfa, 0x07, 0xd8, 0xeb, 0x1c, 0x76, 0x5f, 0x31, 0x8a, 0xfe, 0xdb, + 0x12, 0xcc, 0x09, 0xec, 0x2c, 0x7c, 0xae, 0x97, 0xa2, 0xe7, 0x3a, 0xdb, 0xaa, 0xfc, 0x36, 0x15, + 0x33, 0xe5, 0xdf, 0xe8, 0x7f, 0xa1, 0x19, 0x9d, 0x93, 0xc4, 0x77, 0xbe, 0xe1, 0xd1, 0x67, 0xf6, + 0xb0, 0xd5, 0xc1, 0xbe, 0x3c, 0x78, 0x96, 0xc3, 0x73, 0x33, 0xea, 0xdf, 0xe3, 0xdd, 0xe8, 0x3d, + 0xb8, 0xd6, 0x77, 0x58, 0xd6, 0x6f, 0xfa, 0xb8, 0xdb, 0xb7, 0x06, 0x41, 0x63, 0x86, 0xbf, 0xf8, + 0xae, 0x0a, 0xaa, 0x21, 0x88, 0xfa, 0xef, 0x4a, 0x70, 0x93, 0xe3, 0x16, 0x7b, 0x27, 0x27, 0x47, + 0x93, 0x42, 0x46, 0x1f, 0x24, 0x90, 0xd1, 0x2c, 0xb8, 0x18, 0x22, 0xa5, 0x31, 0xe8, 0x73, 0x3a, + 0x01, 0x7d, 0xea, 0x4d, 0x58, 0xce, 0x58, 0x25, 0x17, 0xf0, 0x0b, 0x58, 0xdd, 0xc5, 0xf4, 0xb0, + 0xfd, 0x0b, 0x6c, 0xd3, 0x2d, 0xc7, 0xc7, 0xf6, 0xe4, 0x10, 0xee, 0xff, 0x82, 0xdb, 0x45, 0xa2, + 0x47, 0x20, 0xdd, 0x7f, 0x2c, 0xc1, 0xd2, 0xa6, 0x4b, 0x3c, 0xcc, 0xae, 0xa9, 0x23, 0x42, 0xdc, + 0x49, 0x38, 0x70, 0x66, 0xc0, 0xd2, 0x85, 0x54, 0x66, 0x2f, 0x2c, 0xe3, 0x2a, 0x78, 0x7f, 0xcc, + 0xd1, 0xd3, 0xa3, 0x1c, 0xad, 0x2f, 0xc3, 0x8d, 0x94, 0x85, 0xd2, 0x99, 0x7f, 0x2b, 0xc1, 0x4a, + 0xa2, 0x67, 0xdf, 0xa3, 0xd8, 0xf7, 0xac, 0x9f, 0x70, 0x0e, 0xb9, 0x90, 0xc6, 0xf4, 0xbf, 0x01, + 0x69, 0xac, 0xc1, 0x6a, 0xc1, 0x14, 0x14, 0x40, 0xcd, 0xfc, 0x71, 0x3e, 0x69, 0x80, 0x3a, 0x2b, + 0x54, 0x2a, 0xfc, 0x9a, 0x29, 0xf4, 0xf8, 0xc1, 0x39, 0x31, 0x85, 0xfc, 0xa2, 0xc4, 0xae, 0x45, + 0x9d, 0x73, 0x2c, 0x6e, 0x67, 0xf9, 0x38, 0x09, 0x89, 0xec, 0xae, 0x12, 0x56, 0xa5, 0x35, 0x4b, + 0xab, 0x7e, 0x53, 0x62, 0x39, 0xd6, 0xc0, 0x75, 0xec, 0xc9, 0x62, 0xf5, 0xe8, 0x43, 0x98, 0x13, + 0x8b, 0x32, 0x02, 0x89, 0x92, 0x1c, 0xfa, 0x2a, 0xdc, 0xca, 0xb5, 0x41, 0xda, 0xf8, 0x1a, 0x9a, + 0x87, 0x03, 0xea, 0xf4, 0xf9, 0x9e, 0x9b, 0xdc, 0x62, 0xad, 0x80, 0x96, 0x27, 0x56, 0x2a, 0xf5, + 0xc2, 0x02, 0xc6, 0xce, 0xd0, 0x75, 0x45, 0x46, 0x38, 0x91, 0xe7, 0xef, 0x80, 0x04, 0x34, 0xfe, + 0xfc, 0x65, 0xed, 0xd7, 0xbe, 0xab, 0x6a, 0x1b, 0x71, 0x7d, 0xc2, 0x96, 0xa7, 0xff, 0xb8, 0xcd, + 0x6b, 0xa6, 0x61, 0x95, 0x4d, 0x14, 0x9b, 0xd1, 0x97, 0x50, 0x4f, 0xd7, 0x7b, 0xd1, 0x5a, 0xd6, + 0x8c, 0x44, 0x79, 0x59, 0xbb, 0x53, 0xcc, 0x20, 0x27, 0x3e, 0xf7, 0xcf, 0xef, 0x1f, 0x4e, 0x55, + 0xa6, 0xd0, 0x57, 0x61, 0x9d, 0x36, 0x56, 0xc4, 0x45, 0xf1, 0xe1, 0xb9, 0x55, 0x63, 0xed, 0xee, + 0x08, 0x8e, 0x84, 0x86, 0x12, 0x7a, 0x01, 0xa0, 0xaa, 0xb2, 0xa8, 0x99, 0x1c, 0x18, 0xab, 0x0e, + 0x6b, 0x5a, 0x5e, 0x57, 0x4a, 0xd8, 0xe7, 0x70, 0x2d, 0x59, 0x54, 0x45, 0xab, 0xd1, 0x13, 0x34, + 0xaf, 0xc8, 0xab, 0xdd, 0x2e, 0xea, 0xce, 0x0a, 0x4e, 0x56, 0x38, 0x95, 0xe0, 0xdc, 0x62, 0xaa, + 0x12, 0x9c, 0x5f, 0x18, 0x8d, 0x04, 0xdb, 0x80, 0xb2, 0x95, 0x49, 0x14, 0xf9, 0xaf, 0xb0, 0x50, + 0xaa, 0xe9, 0xa3, 0x58, 0x52, 0x4a, 0x0e, 0x60, 0x3e, 0x56, 0x9e, 0x43, 0x91, 0x27, 0xb3, 0x45, + 0x4f, 0xed, 0x56, 0x6e, 0x5f, 0x4a, 0xde, 0x97, 0x50, 0x4f, 0x27, 0x62, 0x2a, 0xe8, 0x0a, 0x2a, + 0x7e, 0x2a, 0xe8, 0x0a, 0xab, 0x77, 0xa1, 0xf8, 0x57, 0x00, 0xaa, 0x7a, 0xa5, 0x42, 0x22, 0x53, + 0x3e, 0x53, 0x21, 0x91, 0x2d, 0x76, 0x85, 0xc2, 0x9e, 0x70, 0x6b, 0xd3, 0xd5, 0x28, 0x65, 0x6d, + 0x41, 0xf1, 0x4b, 0x59, 0x5b, 0x54, 0xc8, 0x8a, 0x6f, 0x91, 0x4c, 0x79, 0x47, 0x6d, 0x91, 0xa2, + 0xa2, 0x96, 0xda, 0x22, 0x85, 0xb5, 0xa1, 0xc8, 0x1f, 0xff, 0x03, 0x33, 0x3b, 0x81, 0x7d, 0x86, + 0x16, 0xa3, 0x21, 0xaa, 0x32, 0xa4, 0x2d, 0x25, 0x89, 0xa9, 0xa1, 0xdb, 0x50, 0x09, 0x8b, 0x23, + 0x68, 0x39, 0xe4, 0x4c, 0x15, 0x7a, 0xb4, 0x46, 0xb6, 0x23, 0x25, 0xe6, 0x04, 0xae, 0x26, 0x2a, + 0x1b, 0x68, 0x25, 0xd2, 0x9a, 0x53, 0x60, 0xd1, 0x56, 0x0b, 0x7a, 0x53, 0x9e, 0x7b, 0x01, 0xa0, + 0x2a, 0x0e, 0x6a, 0x9d, 0x33, 0x55, 0x11, 0xb5, 0xce, 0x39, 0x05, 0x8a, 0xd8, 0x46, 0xca, 0x16, + 0x0d, 0xd4, 0x46, 0x2a, 0x2c, 0x62, 0xa8, 0x8d, 0x54, 0x5c, 0x73, 0x88, 0x2c, 0xe6, 0x4a, 0xd2, + 0x30, 0x7f, 0x5c, 0x49, 0x41, 0xd9, 0x21, 0xae, 0xa4, 0xa8, 0x4a, 0x10, 0x29, 0xf1, 0xb3, 0x55, + 0x73, 0x09, 0xcf, 0xa3, 0x07, 0x45, 0x7b, 0x28, 0x59, 0x2d, 0xd0, 0xde, 0xff, 0x51, 0xbe, 0x94, + 0xf7, 0x8e, 0xa1, 0x16, 0x87, 0xe7, 0xd1, 0xad, 0xa4, 0x80, 0x04, 0x8e, 0xa9, 0xad, 0xe4, 0x77, + 0x26, 0xa7, 0xf1, 0xa4, 0x84, 0x7e, 0x05, 0x5a, 0x31, 0x42, 0x89, 0x3e, 0x18, 0x65, 0x63, 0x52, + 0xe1, 0x87, 0xef, 0xc2, 0x9a, 0x9c, 0xd1, 0xc3, 0x12, 0xda, 0x83, 0x6a, 0x84, 0x9a, 0xa3, 0x46, + 0x11, 0xe6, 0xaf, 0x35, 0x73, 0x7a, 0x52, 0xde, 0xf9, 0x0c, 0x6a, 0x71, 0x14, 0x5c, 0x79, 0x27, + 0x07, 0x80, 0x57, 0xde, 0xc9, 0x05, 0xce, 0xe3, 0x47, 0xb2, 0xc2, 0x51, 0x63, 0x47, 0x72, 0x06, + 0xac, 0x8d, 0x1d, 0xc9, 0x59, 0xe0, 0x35, 0x0a, 0x9a, 0x36, 0xff, 0xf1, 0x21, 0x09, 0x7e, 0xa2, + 0xf8, 0x9f, 0x07, 0xb9, 0x68, 0xab, 0x3a, 0x85, 0x0a, 0x91, 0xd3, 0xd8, 0x7a, 0x7e, 0x05, 0x0b, + 0x19, 0x34, 0x53, 0xe9, 0x28, 0x82, 0x4f, 0x95, 0x8e, 0x42, 0x28, 0x34, 0x9a, 0x45, 0x0b, 0xca, + 0xf2, 0x77, 0x25, 0x74, 0x33, 0x1a, 0x95, 0xf8, 0x17, 0x4a, 0x5b, 0xce, 0xd0, 0x53, 0x9e, 0x3d, + 0x82, 0xf9, 0x18, 0xd4, 0x89, 0xe2, 0x77, 0x44, 0x0a, 0xc2, 0x54, 0x9e, 0xcd, 0xc1, 0x46, 0x63, + 0xf3, 0xfe, 0x35, 0x4b, 0x85, 0x46, 0x00, 0x8f, 0xe8, 0xa3, 0x51, 0xf1, 0x99, 0x56, 0xfa, 0xe8, + 0xdd, 0x98, 0x53, 0xb3, 0xfa, 0x39, 0x5c, 0x4d, 0x80, 0x68, 0xea, 0x04, 0xce, 0x43, 0x3a, 0xd5, + 0x09, 0x9c, 0x8b, 0xbc, 0xc5, 0xe6, 0x76, 0x06, 0x4b, 0x79, 0xa0, 0x07, 0xba, 0xa7, 0x76, 0x45, + 0x21, 0x7c, 0xa3, 0xdd, 0x1f, 0xcd, 0x94, 0x51, 0xd6, 0x86, 0x85, 0x0c, 0x82, 0xa4, 0x02, 0xa8, + 0x08, 0xda, 0x52, 0x01, 0x54, 0x08, 0x3f, 0xc5, 0x74, 0x60, 0x40, 0xd9, 0x72, 0x11, 0x8a, 0x3d, + 0x48, 0x0b, 0xaa, 0x56, 0xea, 0x88, 0x1e, 0x51, 0x6d, 0x52, 0x87, 0x4b, 0x1b, 0x16, 0x32, 0x15, + 0x22, 0x35, 0x95, 0xa2, 0x92, 0x94, 0x9a, 0x4a, 0x61, 0x79, 0x29, 0x36, 0x95, 0x37, 0x70, 0x3d, + 0x05, 0x75, 0xa0, 0xdb, 0x89, 0x57, 0x43, 0x06, 0x99, 0xd1, 0xd6, 0x0a, 0xfb, 0x53, 0xf1, 0x44, + 0xe0, 0x66, 0x3e, 0xa0, 0x81, 0xde, 0x8b, 0x85, 0x4e, 0x31, 0x96, 0xa2, 0x3d, 0xf8, 0x31, 0xb6, + 0xd4, 0xd6, 0x3e, 0x81, 0xab, 0x89, 0x5c, 0x5c, 0x05, 0x70, 0x1e, 0x42, 0xa2, 0x02, 0x38, 0x1f, + 0x9d, 0x08, 0xa7, 0xe1, 0xa6, 0xe0, 0x8b, 0x30, 0xc3, 0x47, 0xf7, 0x73, 0xc7, 0xa7, 0x30, 0x0c, + 0xed, 0xbd, 0x1f, 0xe1, 0xca, 0xbe, 0x7b, 0xd3, 0x99, 0x7d, 0x3c, 0xd9, 0xca, 0x05, 0x12, 0xe2, + 0xc9, 0x56, 0x01, 0x28, 0x90, 0x10, 0x9f, 0x4c, 0xd1, 0xe3, 0xe2, 0x73, 0x61, 0x83, 0xb8, 0xf8, + 0x82, 0xec, 0x3e, 0x14, 0xdf, 0x85, 0xc5, 0x9c, 0x04, 0x1b, 0xc5, 0xe2, 0xbe, 0x08, 0x01, 0xd0, + 0xee, 0x8d, 0xe4, 0xc9, 0xbe, 0xc4, 0xb2, 0x29, 0xb5, 0xda, 0x81, 0x85, 0x59, 0xbc, 0xda, 0x81, + 0x23, 0x32, 0xf2, 0x4c, 0x0a, 0xa2, 0x32, 0xe5, 0x74, 0x0a, 0x92, 0xc9, 0xd9, 0xd3, 0x29, 0x48, + 0x36, 0xc9, 0x0e, 0xa3, 0xb5, 0xf5, 0xe4, 0x0d, 0x63, 0x75, 0xad, 0xf6, 0xba, 0x4d, 0xfa, 0x8f, + 0xc5, 0xe7, 0xc7, 0xc4, 0x3f, 0x7d, 0x2c, 0x04, 0x3c, 0xe6, 0x7f, 0x70, 0x3f, 0x3e, 0x25, 0xb2, + 0x3d, 0x68, 0xb7, 0xe7, 0x38, 0xe9, 0xd9, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x3a, 0xd6, 0xfe, + 0xc3, 0x12, 0x2e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -4139,6 +4222,7 @@ type RepositoryServiceClient interface { RenameRepository(ctx context.Context, in *RenameRepositoryRequest, opts ...grpc.CallOption) (*RenameRepositoryResponse, error) ReplicateRepository(ctx context.Context, in *ReplicateRepositoryRequest, opts ...grpc.CallOption) (*ReplicateRepositoryResponse, error) OptimizeRepository(ctx context.Context, in *OptimizeRepositoryRequest, opts ...grpc.CallOption) (*OptimizeRepositoryResponse, error) + CreateFullBackup(ctx context.Context, in *CreateFullBackupRequest, opts ...grpc.CallOption) (*CreateFullBackupResponse, error) } type repositoryServiceClient struct { @@ -4752,6 +4836,15 @@ func (c *repositoryServiceClient) OptimizeRepository(ctx context.Context, in *Op return out, nil } +func (c *repositoryServiceClient) CreateFullBackup(ctx context.Context, in *CreateFullBackupRequest, opts ...grpc.CallOption) (*CreateFullBackupResponse, error) { + out := new(CreateFullBackupResponse) + err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/CreateFullBackup", 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) @@ -4795,6 +4888,7 @@ type RepositoryServiceServer interface { RenameRepository(context.Context, *RenameRepositoryRequest) (*RenameRepositoryResponse, error) ReplicateRepository(context.Context, *ReplicateRepositoryRequest) (*ReplicateRepositoryResponse, error) OptimizeRepository(context.Context, *OptimizeRepositoryRequest) (*OptimizeRepositoryResponse, error) + CreateFullBackup(context.Context, *CreateFullBackupRequest) (*CreateFullBackupResponse, error) } // UnimplementedRepositoryServiceServer can be embedded to have forward compatible implementations. @@ -4924,6 +5018,9 @@ func (*UnimplementedRepositoryServiceServer) ReplicateRepository(ctx context.Con func (*UnimplementedRepositoryServiceServer) OptimizeRepository(ctx context.Context, req *OptimizeRepositoryRequest) (*OptimizeRepositoryResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method OptimizeRepository not implemented") } +func (*UnimplementedRepositoryServiceServer) CreateFullBackup(ctx context.Context, req *CreateFullBackupRequest) (*CreateFullBackupResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method CreateFullBackup not implemented") +} func RegisterRepositoryServiceServer(s *grpc.Server, srv RepositoryServiceServer) { s.RegisterService(&_RepositoryService_serviceDesc, srv) @@ -5707,6 +5804,24 @@ func _RepositoryService_OptimizeRepository_Handler(srv interface{}, ctx context. return interceptor(ctx, in, info, handler) } +func _RepositoryService_CreateFullBackup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CreateFullBackupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RepositoryServiceServer).CreateFullBackup(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/gitaly.RepositoryService/CreateFullBackup", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RepositoryServiceServer).CreateFullBackup(ctx, req.(*CreateFullBackupRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _RepositoryService_serviceDesc = grpc.ServiceDesc{ ServiceName: "gitaly.RepositoryService", HandlerType: (*RepositoryServiceServer)(nil), @@ -5835,6 +5950,10 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{ MethodName: "OptimizeRepository", Handler: _RepositoryService_OptimizeRepository_Handler, }, + { + MethodName: "CreateFullBackup", + Handler: _RepositoryService_CreateFullBackup_Handler, + }, }, Streams: []grpc.StreamDesc{ { diff --git a/proto/repository-service.proto b/proto/repository-service.proto index a243df77cb1..1504d75d41a 100644 --- a/proto/repository-service.proto +++ b/proto/repository-service.proto @@ -214,6 +214,11 @@ service RepositoryService { op: MUTATOR }; } + rpc CreateFullBackup(CreateFullBackupRequest) returns (CreateFullBackupResponse) { + option (op_type) = { + op: ACCESSOR + }; + } } message RepositoryExistsRequest { @@ -616,3 +621,10 @@ message OptimizeRepositoryRequest { } message OptimizeRepositoryResponse{} + +message CreateFullBackupRequest { + Repository repository = 1 [(target_repository)=true]; + string post_url = 2; +} + +message CreateFullBackupResponse{} diff --git a/ruby/proto/gitaly/repository-service_pb.rb b/ruby/proto/gitaly/repository-service_pb.rb index 3a4090fb596..7c2ed10d1a1 100644 --- a/ruby/proto/gitaly/repository-service_pb.rb +++ b/ruby/proto/gitaly/repository-service_pb.rb @@ -321,6 +321,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do end add_message "gitaly.OptimizeRepositoryResponse" do end + add_message "gitaly.CreateFullBackupRequest" do + optional :repository, :message, 1, "gitaly.Repository" + optional :post_url, :string, 2 + end + add_message "gitaly.CreateFullBackupResponse" do + end end module Gitaly @@ -411,4 +417,6 @@ module Gitaly ReplicateRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReplicateRepositoryResponse").msgclass OptimizeRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OptimizeRepositoryRequest").msgclass OptimizeRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OptimizeRepositoryResponse").msgclass + CreateFullBackupRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateFullBackupRequest").msgclass + CreateFullBackupResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateFullBackupResponse").msgclass end diff --git a/ruby/proto/gitaly/repository-service_services_pb.rb b/ruby/proto/gitaly/repository-service_services_pb.rb index d0bf97069b2..0ed9a7a4d84 100644 --- a/ruby/proto/gitaly/repository-service_services_pb.rb +++ b/ruby/proto/gitaly/repository-service_services_pb.rb @@ -55,6 +55,7 @@ module Gitaly rpc :RenameRepository, RenameRepositoryRequest, RenameRepositoryResponse rpc :ReplicateRepository, ReplicateRepositoryRequest, ReplicateRepositoryResponse rpc :OptimizeRepository, OptimizeRepositoryRequest, OptimizeRepositoryResponse + rpc :CreateFullBackup, CreateFullBackupRequest, CreateFullBackupResponse end Stub = Service.rpc_stub_class -- GitLab From fb1544e67b827544e4e330415a29f713786c7b72 Mon Sep 17 00:00:00 2001 From: John Cai Date: Sat, 16 May 2020 17:41:43 -0700 Subject: [PATCH 2/2] Backups RPC --- internal/praefect/helper_test.go | 5 +- internal/service/repository/backups.go | 67 +- .../repository}/bundle/create.go | 50 +- .../repository}/bundle/create_test.go | 20 +- .../repository}/bundle/unpack.go | 6 +- proto/go/gitalypb/repository-service.pb.go | 614 +++++++++++------- proto/repository-service.proto | 20 +- ruby/proto/gitaly/repository-service_pb.rb | 18 +- .../gitaly/repository-service_services_pb.rb | 3 +- 9 files changed, 518 insertions(+), 285 deletions(-) rename internal/{git => service/repository}/bundle/create.go (63%) rename internal/{git => service/repository}/bundle/create_test.go (67%) rename internal/{git => service/repository}/bundle/unpack.go (97%) diff --git a/internal/praefect/helper_test.go b/internal/praefect/helper_test.go index f82a67dee0e..ed96ab49690 100644 --- a/internal/praefect/helper_test.go +++ b/internal/praefect/helper_test.go @@ -109,7 +109,10 @@ func noopBackoffFunc() (backoff, backoffReset) { type nullNodeMgr struct{} -func (nullNodeMgr) GetShard(virtualStorageName string) (nodes.Shard, error) { return nodes.Shard{}, nil } +func (nullNodeMgr) GetShard(virtualStorageName string) (nodes.Shard, error) { + return nodes.Shard{}, nil +} + func (nullNodeMgr) EnableWrites(ctx context.Context, virtualStorageName string) error { return nil } type buildOptions struct { diff --git a/internal/service/repository/backups.go b/internal/service/repository/backups.go index 5542c340a64..e0e21317055 100644 --- a/internal/service/repository/backups.go +++ b/internal/service/repository/backups.go @@ -1,12 +1,75 @@ package repository import ( + "bytes" "context" + "fmt" + "net/http" + "strconv" + "gitlab.com/gitlab-org/gitaly/internal/helper" + "gitlab.com/gitlab-org/gitaly/internal/service/repository/bundle" "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb" ) -func (s *server) CreateFullBackup(ctx context.Context, in *gitalypb.CreateFullBackupRequest) (*gitalypb.CreateFullBackupResponse, error) { +func (s *server) CreateBackup(ctx context.Context, in *gitalypb.CreateBackupRequest) (*gitalypb.CreateBackupResponse, error) { + backupData, bundleFileWriter, err := bundle.Create(ctx, in.GetRepository()) + if err != nil { + return nil, helper.ErrInternalf("creating gitaly bundle: %w", err) + } + defer bundleFileWriter.Close() - return &gitalypb.CreateFullBackupResponse{}, nil + if backupData == nil { + return &gitalypb.CreateBackupResponse{}, nil + } + + req, err := http.NewRequest(http.MethodPost, in.GetPostUrl(), bytes.NewReader(backupData)) + if err != nil { + return nil, helper.ErrInternalf("creating post request: %w", err) + } + + req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", in.GetToken())) + req.Header.Set("Content-Type", "application/octet-stream") + req.Header.Set("Content-Length", strconv.Itoa(len(backupData))) + + var client http.Client + + resp, err := client.Do(req) + if err != nil { + return nil, helper.ErrInternalf("sending post request: %w", err) + } + + if resp.StatusCode != http.StatusOK { + bundleFileWriter.Close() + return nil, helper.ErrInternalf("failed to send data to endpoint with code: %d", resp.StatusCode) + } + + if err := bundleFileWriter.Commit(); err != nil { + return nil, helper.ErrInternalf("writing bundle ref file: %w", err) + } + + return &gitalypb.CreateBackupResponse{}, nil +} + +func (s *server) RestoreFromBackup(ctx context.Context, in *gitalypb.RestoreFromBackupRequest) (*gitalypb.RestoreFromBackupResponse, error) { + req, err := http.NewRequest(http.MethodGet, in.GetUrl(), nil) + if err != nil { + return nil, helper.ErrInternalf("http get %v: %w", in.GetUrl(), err) + } + req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", in.GetToken())) + + var c http.Client + + resp, err := c.Do(req) + if err != nil { + return nil, helper.ErrInternalf("http get %v: %w", in.GetUrl(), err) + } + + defer resp.Body.Close() + + if err = bundle.Unpack(ctx, in.GetRepository(), resp.Body); err != nil { + return nil, helper.ErrInternalf("restoring backup: %w", err) + } + + return &gitalypb.RestoreFromBackupResponse{}, nil } diff --git a/internal/git/bundle/create.go b/internal/service/repository/bundle/create.go similarity index 63% rename from internal/git/bundle/create.go rename to internal/service/repository/bundle/create.go index 652541671db..49b08a5eeb8 100644 --- a/internal/git/bundle/create.go +++ b/internal/service/repository/bundle/create.go @@ -18,32 +18,32 @@ import ( ) const ( - header = "# gitaly bundle v1" + Header = "# gitaly bundle v1" ) -func Create(ctx context.Context, repo *gitalypb.Repository) ([]byte, error) { +func Create(ctx context.Context, repo *gitalypb.Repository) ([]byte, *safe.FileWriter, error) { repoPath, err := helper.GetPath(repo) if err != nil { - return nil, fmt.Errorf("getting repo path: %w", err) + return nil, nil, fmt.Errorf("getting repo path: %w", err) } bundleRefsPath := filepath.Join(repoPath, ".gitaly_bundle", "refs") if err = os.MkdirAll(filepath.Dir(bundleRefsPath), 0755); err != nil { - return nil, fmt.Errorf("mkdir -p %s: %w", bundleRefsPath, err) + return nil, nil, fmt.Errorf("mkdir -p %s: %w", bundleRefsPath, err) } var b bytes.Buffer - if _, err = b.WriteString(header); err != nil { - return nil, fmt.Errorf("writing to buffer: %w", err) + if _, err = b.WriteString(Header); err != nil { + return nil, nil, fmt.Errorf("writing to buffer: %w", err) } if _, err = b.Write([]byte("\n")); err != nil { - return nil, fmt.Errorf("writing to buffer: %w", err) + return nil, nil, fmt.Errorf("writing to buffer: %w", err) } bundleRefsWriter, err := safe.CreateFileWriter(bundleRefsPath) if err != nil { - return nil, fmt.Errorf("creating bundle refs writer %w", err) + return nil, nil, fmt.Errorf("creating bundle refs writer %w", err) } refWriter := io.MultiWriter(bundleRefsWriter, &b) @@ -56,7 +56,7 @@ func Create(ctx context.Context, repo *gitalypb.Repository) ([]byte, error) { }}, }) if err != nil { - return nil, fmt.Errorf("creating for-each-ref command: %w", err) + return nil, nil, fmt.Errorf("creating for-each-ref command: %w", err) } var objectIDs bytes.Buffer @@ -72,24 +72,24 @@ func Create(ctx context.Context, repo *gitalypb.Repository) ([]byte, error) { } if err = s.Err(); err != nil { - return nil, fmt.Errorf("reading output of for-each-ref: %w", err) + return nil, nil, fmt.Errorf("reading output of for-each-ref: %w", err) } if err = cmd.Wait(); err != nil { - return nil, fmt.Errorf("running for-each-ref: %w", err) + return nil, nil, fmt.Errorf("running for-each-ref: %w", err) } if _, err = os.Stat(bundleRefsPath); err == nil { c, err := catfile.New(ctx, repo) if err != nil { - return nil, fmt.Errorf("creating catfile batch: %w", err) + return nil, nil, fmt.Errorf("creating catfile batch: %w", err) } defer c.Close() f, err := os.Open(bundleRefsPath) if err != nil { - return nil, fmt.Errorf("opening bundle refs file: %w", err) + return nil, nil, fmt.Errorf("opening bundle refs file: %w", err) } defer f.Close() @@ -112,27 +112,37 @@ func Create(ctx context.Context, repo *gitalypb.Repository) ([]byte, error) { } if err = f.Close(); err != nil { - return nil, fmt.Errorf("closing bundle refs file: %w", err) + return nil, nil, fmt.Errorf("closing bundle refs file: %w", err) } } b.Write([]byte("\n")) - cmd, err = git.SafeBareCmd(ctx, git.CmdStream{In: &objectIDs, Out: &b}, nil, []git.Option{git.ValueFlag{Name: "-C", Value: repoPath}}, git.SubCmd{ + var counter writerCounter + out := io.MultiWriter(&b, &counter) + + cmd, err = git.SafeBareCmd(ctx, git.CmdStream{In: &objectIDs, Out: out}, nil, []git.Option{git.ValueFlag{Name: "-C", Value: repoPath}}, git.SubCmd{ Name: "pack-objects", Flags: []git.Option{git.Flag{Name: "--thin"}, git.Flag{Name: "--stdout"}, git.Flag{Name: "--non-empty"}, git.Flag{Name: "--delta-base-offset"}}, }) if err != nil { - return nil, fmt.Errorf("creating pack-objects command: %w", err) + return nil, nil, fmt.Errorf("creating pack-objects command: %w", err) } if err = cmd.Wait(); err != nil { - return nil, fmt.Errorf("running pack-objects command: %w", err) + return nil, nil, fmt.Errorf("running pack-objects command: %w", err) } - if err = bundleRefsWriter.Commit(); err != nil { - return nil, fmt.Errorf("writing new bundle refs file: %w", err) + if counter == 0 { + return nil, nil, nil } - return b.Bytes(), nil + return b.Bytes(), bundleRefsWriter, nil +} + +type writerCounter int + +func (w *writerCounter) Write(b []byte) (int, error) { + *w += writerCounter(len(b)) + return len(b), nil } diff --git a/internal/git/bundle/create_test.go b/internal/service/repository/bundle/create_test.go similarity index 67% rename from internal/git/bundle/create_test.go rename to internal/service/repository/bundle/create_test.go index 14283b0c978..59ef3247a44 100644 --- a/internal/git/bundle/create_test.go +++ b/internal/service/repository/bundle/create_test.go @@ -1,7 +1,6 @@ package bundle import ( - "bytes" "os" "testing" @@ -16,8 +15,9 @@ func TestCreateFull(t *testing.T) { ctx, cancel := testhelper.Context() defer cancel() - _, err := Create(ctx, testRepo) + _, bundleRefWriter, err := Create(ctx, testRepo) require.NoError(t, err) + require.NoError(t, bundleRefWriter.Commit()) } func TestCreateIncremental(t *testing.T) { @@ -27,14 +27,14 @@ func TestCreateIncremental(t *testing.T) { ctx, cancel := testhelper.Context() defer cancel() - _, err := Create(ctx, testRepo) + _, bundleRefWriter, err := Create(ctx, testRepo) require.NoError(t, err) + require.NoError(t, bundleRefWriter.Commit()) - b, err := Create(ctx, testRepo) + b, _, err := Create(ctx, testRepo) require.NoError(t, err) - bytes := bytes.SplitN(b, []byte("\n\n"), 2) - require.Empty(t, bytes[1]) + require.Nil(t, b) } func TestUnpack(t *testing.T) { @@ -44,13 +44,13 @@ func TestUnpack(t *testing.T) { ctx, cancel := testhelper.Context() defer cancel() - b, err := Create(ctx, testRepo) + b, bundleRefWriter, err := Create(ctx, testRepo) require.NoError(t, err) + require.NoError(t, bundleRefWriter.Commit()) - emptyRepo, emptyRepoPath, _ := testhelper.InitBareRepo(t) - // defer cleanup() + emptyRepo, _, cleanup := testhelper.InitBareRepo(t) + defer cleanup() - t.Logf("EMPTY REPO: %v\n", emptyRepoPath) require.NoError(t, Unpack(ctx, emptyRepo, b)) } diff --git a/internal/git/bundle/unpack.go b/internal/service/repository/bundle/unpack.go similarity index 97% rename from internal/git/bundle/unpack.go rename to internal/service/repository/bundle/unpack.go index 759e45397cf..3e11b863ad5 100644 --- a/internal/git/bundle/unpack.go +++ b/internal/service/repository/bundle/unpack.go @@ -2,7 +2,6 @@ package bundle import ( "bufio" - "bytes" "context" "fmt" "io" @@ -13,8 +12,8 @@ import ( "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb" ) -func Unpack(ctx context.Context, repo *gitalypb.Repository, bundle []byte) error { - r := bufio.NewReader(bytes.NewReader(bundle)) +func Unpack(ctx context.Context, repo *gitalypb.Repository, bundle io.Reader) error { + r := bufio.NewReader(bundle) line, err := readLine(r) if err != nil { @@ -97,7 +96,6 @@ func Unpack(ctx context.Context, repo *gitalypb.Repository, bundle []byte) error } return nil - } func refMapFromReader(r *bufio.Reader) (map[string]string, error) { diff --git a/proto/go/gitalypb/repository-service.pb.go b/proto/go/gitalypb/repository-service.pb.go index 5a386a33a47..ca6c82c63a0 100644 --- a/proto/go/gitalypb/repository-service.pb.go +++ b/proto/go/gitalypb/repository-service.pb.go @@ -3804,83 +3804,177 @@ func (m *OptimizeRepositoryResponse) XXX_DiscardUnknown() { var xxx_messageInfo_OptimizeRepositoryResponse proto.InternalMessageInfo -type CreateFullBackupRequest struct { +type CreateBackupRequest struct { Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"` PostUrl string `protobuf:"bytes,2,opt,name=post_url,json=postUrl,proto3" json:"post_url,omitempty"` + Token string `protobuf:"bytes,3,opt,name=token,proto3" json:"token,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } -func (m *CreateFullBackupRequest) Reset() { *m = CreateFullBackupRequest{} } -func (m *CreateFullBackupRequest) String() string { return proto.CompactTextString(m) } -func (*CreateFullBackupRequest) ProtoMessage() {} -func (*CreateFullBackupRequest) Descriptor() ([]byte, []int) { +func (m *CreateBackupRequest) Reset() { *m = CreateBackupRequest{} } +func (m *CreateBackupRequest) String() string { return proto.CompactTextString(m) } +func (*CreateBackupRequest) ProtoMessage() {} +func (*CreateBackupRequest) Descriptor() ([]byte, []int) { return fileDescriptor_e9b1768cf174c79b, []int{83} } -func (m *CreateFullBackupRequest) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_CreateFullBackupRequest.Unmarshal(m, b) +func (m *CreateBackupRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateBackupRequest.Unmarshal(m, b) } -func (m *CreateFullBackupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_CreateFullBackupRequest.Marshal(b, m, deterministic) +func (m *CreateBackupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateBackupRequest.Marshal(b, m, deterministic) } -func (m *CreateFullBackupRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_CreateFullBackupRequest.Merge(m, src) +func (m *CreateBackupRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateBackupRequest.Merge(m, src) } -func (m *CreateFullBackupRequest) XXX_Size() int { - return xxx_messageInfo_CreateFullBackupRequest.Size(m) +func (m *CreateBackupRequest) XXX_Size() int { + return xxx_messageInfo_CreateBackupRequest.Size(m) } -func (m *CreateFullBackupRequest) XXX_DiscardUnknown() { - xxx_messageInfo_CreateFullBackupRequest.DiscardUnknown(m) +func (m *CreateBackupRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CreateBackupRequest.DiscardUnknown(m) } -var xxx_messageInfo_CreateFullBackupRequest proto.InternalMessageInfo +var xxx_messageInfo_CreateBackupRequest proto.InternalMessageInfo -func (m *CreateFullBackupRequest) GetRepository() *Repository { +func (m *CreateBackupRequest) GetRepository() *Repository { if m != nil { return m.Repository } return nil } -func (m *CreateFullBackupRequest) GetPostUrl() string { +func (m *CreateBackupRequest) GetPostUrl() string { if m != nil { return m.PostUrl } return "" } -type CreateFullBackupResponse struct { +func (m *CreateBackupRequest) GetToken() string { + if m != nil { + return m.Token + } + return "" +} + +type CreateBackupResponse struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } -func (m *CreateFullBackupResponse) Reset() { *m = CreateFullBackupResponse{} } -func (m *CreateFullBackupResponse) String() string { return proto.CompactTextString(m) } -func (*CreateFullBackupResponse) ProtoMessage() {} -func (*CreateFullBackupResponse) Descriptor() ([]byte, []int) { +func (m *CreateBackupResponse) Reset() { *m = CreateBackupResponse{} } +func (m *CreateBackupResponse) String() string { return proto.CompactTextString(m) } +func (*CreateBackupResponse) ProtoMessage() {} +func (*CreateBackupResponse) Descriptor() ([]byte, []int) { return fileDescriptor_e9b1768cf174c79b, []int{84} } -func (m *CreateFullBackupResponse) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_CreateFullBackupResponse.Unmarshal(m, b) +func (m *CreateBackupResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateBackupResponse.Unmarshal(m, b) +} +func (m *CreateBackupResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateBackupResponse.Marshal(b, m, deterministic) +} +func (m *CreateBackupResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateBackupResponse.Merge(m, src) +} +func (m *CreateBackupResponse) XXX_Size() int { + return xxx_messageInfo_CreateBackupResponse.Size(m) +} +func (m *CreateBackupResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CreateBackupResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_CreateBackupResponse proto.InternalMessageInfo + +type RestoreFromBackupRequest struct { + Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"` + Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` + Token string `protobuf:"bytes,3,opt,name=token,proto3" json:"token,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RestoreFromBackupRequest) Reset() { *m = RestoreFromBackupRequest{} } +func (m *RestoreFromBackupRequest) String() string { return proto.CompactTextString(m) } +func (*RestoreFromBackupRequest) ProtoMessage() {} +func (*RestoreFromBackupRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_e9b1768cf174c79b, []int{85} +} + +func (m *RestoreFromBackupRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RestoreFromBackupRequest.Unmarshal(m, b) +} +func (m *RestoreFromBackupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RestoreFromBackupRequest.Marshal(b, m, deterministic) +} +func (m *RestoreFromBackupRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RestoreFromBackupRequest.Merge(m, src) +} +func (m *RestoreFromBackupRequest) XXX_Size() int { + return xxx_messageInfo_RestoreFromBackupRequest.Size(m) +} +func (m *RestoreFromBackupRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RestoreFromBackupRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_RestoreFromBackupRequest proto.InternalMessageInfo + +func (m *RestoreFromBackupRequest) GetRepository() *Repository { + if m != nil { + return m.Repository + } + return nil +} + +func (m *RestoreFromBackupRequest) GetUrl() string { + if m != nil { + return m.Url + } + return "" +} + +func (m *RestoreFromBackupRequest) GetToken() string { + if m != nil { + return m.Token + } + return "" } -func (m *CreateFullBackupResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_CreateFullBackupResponse.Marshal(b, m, deterministic) + +type RestoreFromBackupResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *CreateFullBackupResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_CreateFullBackupResponse.Merge(m, src) + +func (m *RestoreFromBackupResponse) Reset() { *m = RestoreFromBackupResponse{} } +func (m *RestoreFromBackupResponse) String() string { return proto.CompactTextString(m) } +func (*RestoreFromBackupResponse) ProtoMessage() {} +func (*RestoreFromBackupResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_e9b1768cf174c79b, []int{86} +} + +func (m *RestoreFromBackupResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RestoreFromBackupResponse.Unmarshal(m, b) +} +func (m *RestoreFromBackupResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RestoreFromBackupResponse.Marshal(b, m, deterministic) +} +func (m *RestoreFromBackupResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RestoreFromBackupResponse.Merge(m, src) } -func (m *CreateFullBackupResponse) XXX_Size() int { - return xxx_messageInfo_CreateFullBackupResponse.Size(m) +func (m *RestoreFromBackupResponse) XXX_Size() int { + return xxx_messageInfo_RestoreFromBackupResponse.Size(m) } -func (m *CreateFullBackupResponse) XXX_DiscardUnknown() { - xxx_messageInfo_CreateFullBackupResponse.DiscardUnknown(m) +func (m *RestoreFromBackupResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RestoreFromBackupResponse.DiscardUnknown(m) } -var xxx_messageInfo_CreateFullBackupResponse proto.InternalMessageInfo +var xxx_messageInfo_RestoreFromBackupResponse proto.InternalMessageInfo func init() { proto.RegisterEnum("gitaly.GetArchiveRequest_Format", GetArchiveRequest_Format_name, GetArchiveRequest_Format_value) @@ -3970,203 +4064,207 @@ func init() { proto.RegisterType((*ReplicateRepositoryResponse)(nil), "gitaly.ReplicateRepositoryResponse") proto.RegisterType((*OptimizeRepositoryRequest)(nil), "gitaly.OptimizeRepositoryRequest") proto.RegisterType((*OptimizeRepositoryResponse)(nil), "gitaly.OptimizeRepositoryResponse") - proto.RegisterType((*CreateFullBackupRequest)(nil), "gitaly.CreateFullBackupRequest") - proto.RegisterType((*CreateFullBackupResponse)(nil), "gitaly.CreateFullBackupResponse") + proto.RegisterType((*CreateBackupRequest)(nil), "gitaly.CreateBackupRequest") + proto.RegisterType((*CreateBackupResponse)(nil), "gitaly.CreateBackupResponse") + proto.RegisterType((*RestoreFromBackupRequest)(nil), "gitaly.RestoreFromBackupRequest") + proto.RegisterType((*RestoreFromBackupResponse)(nil), "gitaly.RestoreFromBackupResponse") } func init() { proto.RegisterFile("repository-service.proto", fileDescriptor_e9b1768cf174c79b) } var fileDescriptor_e9b1768cf174c79b = []byte{ - // 3013 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5b, 0x6f, 0x1c, 0xc7, - 0xb1, 0xd6, 0xf2, 0xb6, 0xbb, 0xc5, 0x95, 0xb4, 0x6c, 0x52, 0xe2, 0xee, 0x88, 0x14, 0xa5, 0x91, - 0x2c, 0xcb, 0xb6, 0x4c, 0xc9, 0xd2, 0x01, 0x8e, 0xcf, 0x39, 0x38, 0x08, 0xb8, 0xbc, 0xeb, 0x42, - 0xd2, 0x43, 0x2a, 0x86, 0x05, 0x18, 0xe3, 0xd9, 0xd9, 0x5e, 0xee, 0x84, 0xb3, 0xd3, 0xab, 0x99, - 0x5e, 0xd2, 0x34, 0x92, 0x87, 0x04, 0xf0, 0xab, 0x81, 0x00, 0x41, 0x9c, 0xc7, 0x3c, 0xe7, 0x17, - 0xe4, 0x25, 0x08, 0xf2, 0x92, 0xff, 0xe0, 0xbf, 0x90, 0x9f, 0x90, 0xa7, 0xa0, 0x2f, 0x33, 0x3d, - 0xd7, 0xb5, 0x82, 0x5d, 0x38, 0x6f, 0xd3, 0xd5, 0xd5, 0x55, 0xd5, 0xd5, 0xd5, 0x97, 0xfa, 0x6a, - 0xa0, 0xe1, 0xe3, 0x01, 0x09, 0x1c, 0x4a, 0xfc, 0xcb, 0x8f, 0x03, 0xec, 0x9f, 0x3b, 0x36, 0x5e, - 0x1f, 0xf8, 0x84, 0x12, 0x34, 0x77, 0xea, 0x50, 0xcb, 0xbd, 0xd4, 0xc0, 0x75, 0x3c, 0x2a, 0x68, - 0x5a, 0x2d, 0xe8, 0x59, 0x3e, 0xee, 0x88, 0x96, 0x7e, 0x0c, 0xcb, 0x46, 0x34, 0x7a, 0xfb, 0x6b, - 0x27, 0xa0, 0x81, 0x81, 0xdf, 0x0e, 0x71, 0x40, 0xd1, 0xa7, 0x00, 0x4a, 0x70, 0xa3, 0x74, 0xa7, - 0xf4, 0x70, 0xfe, 0x29, 0x5a, 0x17, 0x12, 0xd7, 0xd5, 0xa0, 0xd6, 0xcc, 0x1f, 0xfe, 0xfe, 0xa8, - 0x64, 0xc4, 0x78, 0xf5, 0xa7, 0xd0, 0xc8, 0x0a, 0x0d, 0x06, 0xc4, 0x0b, 0x30, 0xba, 0x09, 0x73, - 0x98, 0x53, 0xb8, 0xc4, 0x8a, 0x21, 0x5b, 0xfa, 0x09, 0x1f, 0x63, 0xd9, 0x67, 0xfb, 0x9e, 0xed, - 0xe3, 0x3e, 0xf6, 0xa8, 0xe5, 0x8e, 0x6f, 0xc9, 0x2d, 0x68, 0xe6, 0x48, 0x15, 0xa6, 0xe8, 0x3e, - 0x2c, 0x88, 0xce, 0x9d, 0xa1, 0x3b, 0xbe, 0x2e, 0x74, 0x0f, 0xae, 0xda, 0x3e, 0xb6, 0x28, 0x36, - 0xdb, 0x0e, 0xed, 0x5b, 0x83, 0xc6, 0x14, 0x9f, 0x60, 0x4d, 0x10, 0x5b, 0x9c, 0xa6, 0x2f, 0x01, - 0x8a, 0xeb, 0x94, 0x96, 0x9c, 0xc3, 0x8d, 0x5d, 0xcb, 0x6f, 0x5b, 0xa7, 0x78, 0x93, 0xb8, 0x2e, - 0xb6, 0xe9, 0x4f, 0x64, 0x4d, 0x03, 0x6e, 0xa6, 0xf5, 0x4a, 0x8b, 0x9e, 0xc3, 0xb5, 0x4d, 0x17, - 0x5b, 0xde, 0x70, 0x30, 0xfe, 0x22, 0x2c, 0xc0, 0xf5, 0x48, 0x96, 0x14, 0xff, 0x19, 0xdc, 0x50, - 0x43, 0x8e, 0x9d, 0x6f, 0xf0, 0xf8, 0x5a, 0x1e, 0xc1, 0xcd, 0xb4, 0x48, 0x19, 0x72, 0x08, 0x66, - 0x02, 0xe7, 0x1b, 0xcc, 0xa5, 0x4d, 0x1b, 0xfc, 0x5b, 0x7f, 0x0b, 0xcd, 0x8d, 0xc1, 0xc0, 0xbd, - 0xdc, 0x75, 0xa8, 0x45, 0xa9, 0xef, 0xb4, 0x87, 0x14, 0x8f, 0x1f, 0xf9, 0x48, 0x83, 0x8a, 0x8f, - 0xcf, 0x9d, 0xc0, 0x21, 0x1e, 0x77, 0x78, 0xcd, 0x88, 0xda, 0xfa, 0x0a, 0x68, 0x79, 0x2a, 0xa5, - 0x47, 0xfe, 0x3a, 0x05, 0x68, 0x07, 0x53, 0xbb, 0x67, 0xe0, 0x3e, 0xa1, 0xe3, 0xfb, 0x83, 0x6d, - 0x34, 0x9f, 0x8b, 0xe2, 0x86, 0x54, 0x0d, 0xd9, 0x42, 0x4b, 0x30, 0xdb, 0x25, 0xbe, 0x8d, 0x1b, - 0xd3, 0x3c, 0x20, 0x44, 0x03, 0x2d, 0x43, 0xd9, 0x23, 0x26, 0xb5, 0x4e, 0x83, 0xc6, 0x8c, 0xd8, - 0x97, 0x1e, 0x39, 0xb1, 0x4e, 0x03, 0xd4, 0x80, 0x32, 0x75, 0xfa, 0x98, 0x0c, 0x69, 0x63, 0xf6, - 0x4e, 0xe9, 0xe1, 0xac, 0x11, 0x36, 0xd9, 0x90, 0x20, 0xe8, 0x99, 0x67, 0xf8, 0xb2, 0x31, 0x27, - 0x34, 0x04, 0x41, 0xef, 0x05, 0xbe, 0x44, 0x6b, 0x30, 0x7f, 0xe6, 0x91, 0x0b, 0xcf, 0xec, 0x11, - 0xb6, 0xcf, 0xcb, 0xbc, 0x13, 0x38, 0x69, 0x8f, 0x51, 0x50, 0x13, 0x2a, 0x1e, 0x31, 0x07, 0xfe, - 0xd0, 0xc3, 0x8d, 0x2a, 0xd7, 0x56, 0xf6, 0xc8, 0x11, 0x6b, 0xa2, 0x67, 0x70, 0x55, 0xd8, 0x69, - 0x0e, 0x2c, 0xdf, 0xea, 0x07, 0x0d, 0xe0, 0x53, 0xbe, 0xa6, 0xa6, 0xcc, 0xbd, 0x53, 0x13, 0x4c, - 0x47, 0x9c, 0xe7, 0xf9, 0x4c, 0xa5, 0x52, 0xaf, 0xea, 0x37, 0x60, 0x31, 0xe1, 0x40, 0xe9, 0xd8, - 0x63, 0x58, 0xde, 0xe4, 0x31, 0xaf, 0xbc, 0x35, 0x7e, 0xb0, 0x69, 0xd0, 0xc8, 0x0a, 0x95, 0x0a, - 0xbf, 0x9d, 0x82, 0x85, 0x5d, 0x4c, 0x37, 0x7c, 0xbb, 0xe7, 0x9c, 0x4f, 0x60, 0x21, 0x6f, 0x41, - 0xd5, 0x26, 0xfd, 0xbe, 0x43, 0x4d, 0xa7, 0x23, 0xd7, 0xb2, 0x22, 0x08, 0xfb, 0x1d, 0xb6, 0xca, - 0x03, 0x1f, 0x77, 0x9d, 0xaf, 0xf9, 0x72, 0x56, 0x0d, 0xd9, 0x42, 0x9f, 0xc2, 0x5c, 0x97, 0xf8, - 0x7d, 0x8b, 0xf2, 0xe5, 0xbc, 0xf6, 0xf4, 0x4e, 0xa8, 0x2a, 0x63, 0xd9, 0xfa, 0x0e, 0xe7, 0x33, - 0x24, 0x3f, 0xdb, 0x2d, 0x03, 0x8b, 0xf6, 0xf8, 0x6a, 0xd7, 0x0c, 0xfe, 0xad, 0x3f, 0x83, 0x39, - 0xc1, 0x85, 0xca, 0x30, 0xfd, 0x66, 0xff, 0xa8, 0x7e, 0x85, 0x7d, 0x9c, 0x6c, 0x18, 0xf5, 0x12, - 0x02, 0x98, 0x3b, 0xd9, 0x30, 0xcc, 0xdd, 0x37, 0xf5, 0x29, 0x34, 0x0f, 0x65, 0xf6, 0xdd, 0x7a, - 0xf3, 0xb4, 0x3e, 0xad, 0x3f, 0x04, 0x14, 0x57, 0xa6, 0x36, 0x63, 0xc7, 0xa2, 0x16, 0xf7, 0x40, - 0xcd, 0xe0, 0xdf, 0x6c, 0x89, 0xf6, 0xac, 0xe0, 0x25, 0xb1, 0x2d, 0xb7, 0xe5, 0x5b, 0x9e, 0xdd, - 0x9b, 0xc0, 0x56, 0xd4, 0x9f, 0x40, 0x23, 0x2b, 0x54, 0x1a, 0xb1, 0x04, 0xb3, 0xe7, 0x96, 0x3b, - 0xc4, 0xf2, 0x0e, 0x12, 0x0d, 0xfd, 0x87, 0x12, 0x34, 0x78, 0x04, 0x1d, 0x93, 0xa1, 0x6f, 0x63, - 0x31, 0x6a, 0xfc, 0xf5, 0xfb, 0x19, 0x2c, 0x04, 0x5c, 0xa0, 0x19, 0x13, 0x30, 0x55, 0x24, 0xc0, - 0xa8, 0x0b, 0x66, 0x23, 0x71, 0x94, 0x4b, 0x01, 0x6d, 0x6e, 0x12, 0x5f, 0xea, 0x9a, 0x51, 0x0b, - 0x62, 0x66, 0xa2, 0x55, 0x00, 0x6a, 0xf9, 0xa7, 0x98, 0x9a, 0x3e, 0xee, 0xf2, 0x45, 0xaf, 0x19, - 0x55, 0x41, 0x31, 0x70, 0x57, 0x7f, 0x06, 0xcd, 0x9c, 0xa9, 0xa9, 0x3b, 0xd9, 0xc7, 0xc1, 0xd0, - 0xa5, 0xe1, 0x9d, 0x2c, 0x5a, 0xfa, 0x2e, 0xcc, 0xef, 0x04, 0xf6, 0xd9, 0xf8, 0x6b, 0x71, 0x1f, - 0x6a, 0x42, 0x90, 0xf2, 0x3f, 0xf6, 0x7d, 0xe2, 0xcb, 0x28, 0x10, 0x0d, 0xfd, 0xcf, 0x25, 0xb8, - 0xfe, 0xb9, 0xef, 0xb0, 0x4d, 0xd5, 0x1d, 0xdf, 0xed, 0x75, 0x98, 0x66, 0x9e, 0x10, 0xa7, 0x30, - 0xfb, 0x4c, 0x1c, 0xce, 0xd3, 0xc9, 0xc3, 0x19, 0xdd, 0x85, 0x1a, 0x71, 0x3b, 0x66, 0xd4, 0x2f, - 0x1c, 0x38, 0x4f, 0xdc, 0x8e, 0x11, 0xb2, 0x44, 0x07, 0xe7, 0x6c, 0xec, 0xe0, 0x7c, 0x3e, 0x53, - 0x99, 0xab, 0x97, 0xf5, 0x06, 0xd4, 0x95, 0xe5, 0x62, 0x92, 0xcf, 0x67, 0x2a, 0xa5, 0xfa, 0x94, - 0xee, 0xc1, 0xd2, 0x8e, 0xe3, 0x75, 0x5e, 0x61, 0xff, 0x14, 0xb7, 0xac, 0x60, 0x02, 0xe7, 0xc1, - 0x0a, 0x54, 0x43, 0x33, 0x83, 0xc6, 0xd4, 0x9d, 0x69, 0xb6, 0xd0, 0x11, 0x41, 0xff, 0x08, 0x6e, - 0xa4, 0xf4, 0xa9, 0x8d, 0xd7, 0xb6, 0x02, 0x11, 0xf2, 0x55, 0x83, 0x7f, 0xeb, 0xdf, 0x95, 0x60, - 0x41, 0x9c, 0x63, 0x3b, 0xc4, 0x3f, 0xfb, 0xcf, 0x87, 0x3a, 0x7b, 0x1e, 0xc5, 0xed, 0x89, 0x1e, - 0x6a, 0xcd, 0xfd, 0xc0, 0xc0, 0xcc, 0xe4, 0x7d, 0xef, 0xc8, 0x27, 0xa7, 0x3e, 0x0e, 0x82, 0x89, - 0x1c, 0xac, 0x3e, 0x17, 0x1a, 0x3b, 0x58, 0x05, 0x61, 0xbf, 0xa3, 0xff, 0x3f, 0x68, 0x79, 0x3a, - 0xa5, 0x33, 0xd7, 0x60, 0xde, 0xf1, 0xcc, 0x81, 0x24, 0xcb, 0x6d, 0x03, 0x4e, 0xc4, 0x28, 0x4c, - 0x3e, 0x7e, 0x3b, 0xb4, 0x82, 0xde, 0x84, 0x4d, 0x0e, 0xb8, 0xd0, 0x98, 0xc9, 0x82, 0x10, 0x9a, - 0x9c, 0xd5, 0xf9, 0xae, 0x26, 0xbb, 0x70, 0x3b, 0x7d, 0xa7, 0xed, 0xf8, 0xa4, 0xff, 0xda, 0x78, - 0x39, 0x91, 0xcd, 0x38, 0xf4, 0x5d, 0x69, 0x31, 0xfb, 0xd4, 0xef, 0xc2, 0x5a, 0xa1, 0x36, 0xb9, - 0xec, 0x87, 0xb0, 0x28, 0x58, 0x5a, 0x43, 0xaf, 0xe3, 0x4e, 0xe0, 0x89, 0xf8, 0x21, 0x2c, 0x25, - 0x05, 0x8e, 0xb8, 0x93, 0xbe, 0x9b, 0x82, 0xfa, 0x31, 0xa6, 0x9b, 0xc4, 0xeb, 0x3a, 0xa7, 0xe3, - 0x3b, 0xe0, 0x53, 0x28, 0x63, 0x8f, 0xfa, 0x0e, 0x16, 0x5b, 0x76, 0xfe, 0xe9, 0xed, 0x70, 0x58, - 0x5a, 0xc9, 0xfa, 0xb6, 0x47, 0xfd, 0x4b, 0x23, 0x64, 0xd7, 0xbe, 0x2d, 0xc1, 0x2c, 0x27, 0x31, - 0x27, 0xb2, 0xc7, 0x96, 0xd8, 0xc0, 0xec, 0x13, 0xad, 0x42, 0x95, 0x5f, 0x5d, 0x66, 0x40, 0x7d, - 0xe1, 0xdc, 0xbd, 0x2b, 0x46, 0x85, 0x93, 0x8e, 0xa9, 0x8f, 0xee, 0xc2, 0xbc, 0xe8, 0x76, 0x3c, - 0xfa, 0xec, 0x29, 0x3f, 0xf3, 0x66, 0xf7, 0xae, 0x18, 0xc0, 0x89, 0xfb, 0x8c, 0x86, 0xd6, 0x40, - 0xb4, 0xcc, 0x36, 0x21, 0xae, 0x78, 0xfa, 0xed, 0x5d, 0x31, 0x84, 0xd4, 0x16, 0x21, 0x6e, 0xab, - 0x2c, 0xaf, 0x4a, 0x7d, 0x11, 0x16, 0x62, 0xa6, 0xca, 0x25, 0xb2, 0x61, 0x71, 0x0b, 0xbb, 0x98, - 0xe2, 0x49, 0xf9, 0x09, 0xc1, 0xcc, 0x19, 0xbe, 0x14, 0x4e, 0xaa, 0x1a, 0xfc, 0x5b, 0xbf, 0x09, - 0x4b, 0x49, 0x25, 0x52, 0xb9, 0xc3, 0x92, 0xbb, 0x80, 0x12, 0x1f, 0x6f, 0x0e, 0x03, 0x4a, 0xfa, - 0x7b, 0x84, 0x9c, 0x05, 0x13, 0x31, 0x81, 0x47, 0xc3, 0x54, 0x2c, 0x1a, 0x56, 0x40, 0xcb, 0x53, - 0x25, 0x0d, 0x39, 0x81, 0x46, 0xcb, 0xb2, 0xcf, 0x86, 0x83, 0x49, 0xda, 0xa1, 0x3f, 0x86, 0x66, - 0x8e, 0xd4, 0x11, 0x21, 0xfb, 0x16, 0xee, 0xe6, 0x6d, 0xa9, 0x09, 0xed, 0x9e, 0x5c, 0xbf, 0xdc, - 0x07, 0x7d, 0x94, 0x4a, 0xe9, 0x9f, 0x03, 0x40, 0xec, 0x4e, 0x7a, 0xe9, 0xd8, 0xd8, 0x9b, 0xc0, - 0x0d, 0xa8, 0x6f, 0xc2, 0x62, 0x42, 0x9e, 0xf4, 0xc9, 0x23, 0x40, 0xae, 0x20, 0x99, 0x41, 0x8f, - 0xf8, 0xd4, 0xf4, 0xac, 0x7e, 0x78, 0xdf, 0xd5, 0x65, 0xcf, 0x31, 0xeb, 0x38, 0xb0, 0xfa, 0x7c, - 0xd1, 0x76, 0x31, 0xdd, 0xf7, 0xba, 0x64, 0x63, 0x72, 0x09, 0xa0, 0xfe, 0x7f, 0xd0, 0xcc, 0x91, - 0x2a, 0x0d, 0xbc, 0x0d, 0xa0, 0x32, 0x3f, 0xb9, 0x74, 0x31, 0x0a, 0x33, 0x69, 0xd3, 0x72, 0xed, - 0xa1, 0x6b, 0x51, 0xbc, 0xd9, 0xc3, 0xf6, 0x59, 0x30, 0xec, 0x8f, 0x6f, 0xd2, 0x7f, 0x43, 0x33, - 0x47, 0xaa, 0x34, 0x49, 0x83, 0x8a, 0x2d, 0x69, 0xd2, 0x53, 0x51, 0x9b, 0x2d, 0xdb, 0x2e, 0xa6, - 0xc7, 0x9e, 0x35, 0x08, 0x7a, 0x64, 0x7c, 0x48, 0x42, 0xff, 0x00, 0x16, 0x13, 0xf2, 0x46, 0x84, - 0xf2, 0xf7, 0x25, 0xb8, 0x97, 0x17, 0x58, 0x13, 0x33, 0x86, 0xe5, 0xa0, 0x3d, 0x4a, 0x07, 0xa6, - 0xba, 0x96, 0xca, 0xac, 0xfd, 0xda, 0x77, 0xd9, 0x25, 0xcb, 0xbb, 0xac, 0x21, 0xed, 0xc9, 0xb4, - 0x8a, 0xf3, 0x6e, 0x0c, 0x69, 0x4f, 0x7f, 0x00, 0xf7, 0x47, 0x1b, 0x26, 0x63, 0xfe, 0xf7, 0x25, - 0x58, 0xda, 0xc5, 0xd4, 0xb0, 0x2e, 0x36, 0x7b, 0x96, 0x77, 0x3a, 0x09, 0x70, 0xe1, 0x1e, 0x5c, - 0xed, 0xfa, 0xa4, 0x6f, 0x26, 0x10, 0x86, 0xaa, 0x51, 0x63, 0xc4, 0xe8, 0x95, 0xba, 0x06, 0xf3, - 0x94, 0x98, 0x89, 0x77, 0x6e, 0xd5, 0x00, 0x4a, 0x42, 0x06, 0xfd, 0x2f, 0x33, 0x70, 0x23, 0x65, - 0x98, 0x5c, 0x88, 0x3d, 0x98, 0xf7, 0xad, 0x0b, 0xd3, 0x16, 0xe4, 0x46, 0x89, 0xdf, 0x53, 0xef, - 0xc7, 0x12, 0xc7, 0xec, 0x98, 0xf5, 0x88, 0x64, 0x80, 0x1f, 0xf5, 0x6a, 0x3f, 0x4c, 0x43, 0x35, - 0xea, 0x41, 0xcb, 0x50, 0x6e, 0xbb, 0xa4, 0xcd, 0x9e, 0x2c, 0x22, 0xc4, 0xe6, 0x58, 0x73, 0xbf, - 0x13, 0x01, 0x33, 0x53, 0x0a, 0x98, 0x41, 0xab, 0x50, 0xf1, 0xf0, 0x85, 0xc9, 0x53, 0x50, 0x6e, - 0x7c, 0x6b, 0xaa, 0x51, 0x32, 0xca, 0x1e, 0xbe, 0x38, 0xb2, 0x28, 0x4b, 0x73, 0x2a, 0xec, 0x9d, - 0xce, 0xbb, 0x67, 0x54, 0x37, 0x71, 0x3b, 0xbc, 0xfb, 0x10, 0xaa, 0x64, 0x80, 0x7d, 0x8b, 0xb2, - 0xb9, 0xcf, 0xf2, 0xcc, 0xf7, 0x93, 0x77, 0x9c, 0xc0, 0xfa, 0x61, 0x38, 0xd0, 0x50, 0x32, 0x98, - 0xcf, 0x99, 0x4f, 0x94, 0x50, 0x01, 0x75, 0xd4, 0x7c, 0xeb, 0x22, 0xe2, 0x67, 0xb1, 0xc4, 0x8c, - 0xea, 0x93, 0x0e, 0xe6, 0x68, 0xc7, 0x2c, 0x37, 0xe8, 0x15, 0xe9, 0x60, 0x0e, 0x75, 0xe0, 0x0b, - 0xd1, 0x55, 0x11, 0x5d, 0x1e, 0xbe, 0xe0, 0x5d, 0xf7, 0xe1, 0x5a, 0x38, 0x53, 0xb3, 0x7d, 0xc9, - 0x4e, 0x84, 0xaa, 0xc8, 0xeb, 0xe4, 0x5c, 0x5b, 0x8c, 0xc6, 0xb8, 0xc2, 0x09, 0x4b, 0x2e, 0x10, - 0x5c, 0x72, 0xca, 0x9c, 0x4b, 0x77, 0xa0, 0xaa, 0xcc, 0x99, 0x87, 0xf2, 0xeb, 0x83, 0x17, 0x07, - 0x87, 0x9f, 0x1f, 0xd4, 0xaf, 0xa0, 0x2a, 0xcc, 0x6e, 0x6c, 0x6d, 0x6d, 0x6f, 0x89, 0x4c, 0x7d, - 0xf3, 0xf0, 0x68, 0x7f, 0x7b, 0x4b, 0x64, 0xea, 0x5b, 0xdb, 0x2f, 0xb7, 0x4f, 0xb6, 0xb7, 0xea, - 0xd3, 0xa8, 0x06, 0x95, 0x57, 0x87, 0x5b, 0xfb, 0x3b, 0xac, 0x6b, 0x86, 0x75, 0x19, 0xdb, 0x07, - 0x1b, 0xaf, 0xb6, 0xb7, 0xea, 0xb3, 0xa8, 0x0e, 0xb5, 0x93, 0x2f, 0x8e, 0xb6, 0xcd, 0xcd, 0xbd, - 0x8d, 0x83, 0xdd, 0xed, 0xad, 0xfa, 0x9c, 0xfe, 0x4b, 0x68, 0x1c, 0x63, 0xcb, 0xb7, 0x7b, 0x3b, - 0x8e, 0x8b, 0x83, 0xd6, 0x25, 0x3b, 0x4c, 0xc7, 0x8f, 0xed, 0x25, 0x98, 0x7d, 0x3b, 0xc4, 0x32, - 0x5b, 0xa8, 0x1a, 0xa2, 0x11, 0xe6, 0x70, 0xd3, 0x51, 0x0e, 0xa7, 0x7f, 0x02, 0xcd, 0x1c, 0xed, - 0x2a, 0xad, 0xec, 0x32, 0x32, 0x0f, 0xdd, 0x9a, 0x21, 0x1a, 0xfa, 0x9f, 0x4a, 0x70, 0x2b, 0x31, - 0x66, 0x93, 0x78, 0x14, 0x7b, 0xf4, 0x27, 0x33, 0x1a, 0x7d, 0x00, 0x75, 0xbb, 0x37, 0xf4, 0xce, - 0x30, 0x4b, 0x30, 0x85, 0xad, 0x12, 0x65, 0xbb, 0x2e, 0xe9, 0xd1, 0xb1, 0x71, 0x09, 0x2b, 0xf9, - 0xb6, 0xca, 0x29, 0x36, 0xa0, 0xdc, 0xb7, 0xa8, 0xdd, 0x8b, 0x26, 0x19, 0x36, 0xd1, 0x2a, 0x00, - 0xff, 0x34, 0x63, 0x97, 0x74, 0x95, 0x53, 0xb6, 0x2c, 0x6a, 0xa1, 0x3b, 0x50, 0xc3, 0x5e, 0xc7, - 0x24, 0x5d, 0x93, 0xd3, 0x24, 0xfa, 0x07, 0xd8, 0xeb, 0x1c, 0x76, 0x5f, 0x31, 0x8a, 0xfe, 0xdb, - 0x12, 0xcc, 0x09, 0xec, 0x2c, 0x7c, 0xae, 0x97, 0xa2, 0xe7, 0x3a, 0xdb, 0xaa, 0xfc, 0x36, 0x15, - 0x33, 0xe5, 0xdf, 0xe8, 0x7f, 0xa1, 0x19, 0x9d, 0x93, 0xc4, 0x77, 0xbe, 0xe1, 0xd1, 0x67, 0xf6, - 0xb0, 0xd5, 0xc1, 0xbe, 0x3c, 0x78, 0x96, 0xc3, 0x73, 0x33, 0xea, 0xdf, 0xe3, 0xdd, 0xe8, 0x3d, - 0xb8, 0xd6, 0x77, 0x58, 0xd6, 0x6f, 0xfa, 0xb8, 0xdb, 0xb7, 0x06, 0x41, 0x63, 0x86, 0xbf, 0xf8, - 0xae, 0x0a, 0xaa, 0x21, 0x88, 0xfa, 0xef, 0x4a, 0x70, 0x93, 0xe3, 0x16, 0x7b, 0x27, 0x27, 0x47, - 0x93, 0x42, 0x46, 0x1f, 0x24, 0x90, 0xd1, 0x2c, 0xb8, 0x18, 0x22, 0xa5, 0x31, 0xe8, 0x73, 0x3a, - 0x01, 0x7d, 0xea, 0x4d, 0x58, 0xce, 0x58, 0x25, 0x17, 0xf0, 0x0b, 0x58, 0xdd, 0xc5, 0xf4, 0xb0, - 0xfd, 0x0b, 0x6c, 0xd3, 0x2d, 0xc7, 0xc7, 0xf6, 0xe4, 0x10, 0xee, 0xff, 0x82, 0xdb, 0x45, 0xa2, - 0x47, 0x20, 0xdd, 0x7f, 0x2c, 0xc1, 0xd2, 0xa6, 0x4b, 0x3c, 0xcc, 0xae, 0xa9, 0x23, 0x42, 0xdc, - 0x49, 0x38, 0x70, 0x66, 0xc0, 0xd2, 0x85, 0x54, 0x66, 0x2f, 0x2c, 0xe3, 0x2a, 0x78, 0x7f, 0xcc, - 0xd1, 0xd3, 0xa3, 0x1c, 0xad, 0x2f, 0xc3, 0x8d, 0x94, 0x85, 0xd2, 0x99, 0x7f, 0x2b, 0xc1, 0x4a, - 0xa2, 0x67, 0xdf, 0xa3, 0xd8, 0xf7, 0xac, 0x9f, 0x70, 0x0e, 0xb9, 0x90, 0xc6, 0xf4, 0xbf, 0x01, - 0x69, 0xac, 0xc1, 0x6a, 0xc1, 0x14, 0x14, 0x40, 0xcd, 0xfc, 0x71, 0x3e, 0x69, 0x80, 0x3a, 0x2b, - 0x54, 0x2a, 0xfc, 0x9a, 0x29, 0xf4, 0xf8, 0xc1, 0x39, 0x31, 0x85, 0xfc, 0xa2, 0xc4, 0xae, 0x45, - 0x9d, 0x73, 0x2c, 0x6e, 0x67, 0xf9, 0x38, 0x09, 0x89, 0xec, 0xae, 0x12, 0x56, 0xa5, 0x35, 0x4b, - 0xab, 0x7e, 0x53, 0x62, 0x39, 0xd6, 0xc0, 0x75, 0xec, 0xc9, 0x62, 0xf5, 0xe8, 0x43, 0x98, 0x13, - 0x8b, 0x32, 0x02, 0x89, 0x92, 0x1c, 0xfa, 0x2a, 0xdc, 0xca, 0xb5, 0x41, 0xda, 0xf8, 0x1a, 0x9a, - 0x87, 0x03, 0xea, 0xf4, 0xf9, 0x9e, 0x9b, 0xdc, 0x62, 0xad, 0x80, 0x96, 0x27, 0x56, 0x2a, 0xf5, - 0xc2, 0x02, 0xc6, 0xce, 0xd0, 0x75, 0x45, 0x46, 0x38, 0x91, 0xe7, 0xef, 0x80, 0x04, 0x34, 0xfe, - 0xfc, 0x65, 0xed, 0xd7, 0xbe, 0xab, 0x6a, 0x1b, 0x71, 0x7d, 0xc2, 0x96, 0xa7, 0xff, 0xb8, 0xcd, - 0x6b, 0xa6, 0x61, 0x95, 0x4d, 0x14, 0x9b, 0xd1, 0x97, 0x50, 0x4f, 0xd7, 0x7b, 0xd1, 0x5a, 0xd6, - 0x8c, 0x44, 0x79, 0x59, 0xbb, 0x53, 0xcc, 0x20, 0x27, 0x3e, 0xf7, 0xcf, 0xef, 0x1f, 0x4e, 0x55, - 0xa6, 0xd0, 0x57, 0x61, 0x9d, 0x36, 0x56, 0xc4, 0x45, 0xf1, 0xe1, 0xb9, 0x55, 0x63, 0xed, 0xee, - 0x08, 0x8e, 0x84, 0x86, 0x12, 0x7a, 0x01, 0xa0, 0xaa, 0xb2, 0xa8, 0x99, 0x1c, 0x18, 0xab, 0x0e, - 0x6b, 0x5a, 0x5e, 0x57, 0x4a, 0xd8, 0xe7, 0x70, 0x2d, 0x59, 0x54, 0x45, 0xab, 0xd1, 0x13, 0x34, - 0xaf, 0xc8, 0xab, 0xdd, 0x2e, 0xea, 0xce, 0x0a, 0x4e, 0x56, 0x38, 0x95, 0xe0, 0xdc, 0x62, 0xaa, - 0x12, 0x9c, 0x5f, 0x18, 0x8d, 0x04, 0xdb, 0x80, 0xb2, 0x95, 0x49, 0x14, 0xf9, 0xaf, 0xb0, 0x50, - 0xaa, 0xe9, 0xa3, 0x58, 0x52, 0x4a, 0x0e, 0x60, 0x3e, 0x56, 0x9e, 0x43, 0x91, 0x27, 0xb3, 0x45, - 0x4f, 0xed, 0x56, 0x6e, 0x5f, 0x4a, 0xde, 0x97, 0x50, 0x4f, 0x27, 0x62, 0x2a, 0xe8, 0x0a, 0x2a, - 0x7e, 0x2a, 0xe8, 0x0a, 0xab, 0x77, 0xa1, 0xf8, 0x57, 0x00, 0xaa, 0x7a, 0xa5, 0x42, 0x22, 0x53, - 0x3e, 0x53, 0x21, 0x91, 0x2d, 0x76, 0x85, 0xc2, 0x9e, 0x70, 0x6b, 0xd3, 0xd5, 0x28, 0x65, 0x6d, - 0x41, 0xf1, 0x4b, 0x59, 0x5b, 0x54, 0xc8, 0x8a, 0x6f, 0x91, 0x4c, 0x79, 0x47, 0x6d, 0x91, 0xa2, - 0xa2, 0x96, 0xda, 0x22, 0x85, 0xb5, 0xa1, 0xc8, 0x1f, 0xff, 0x03, 0x33, 0x3b, 0x81, 0x7d, 0x86, - 0x16, 0xa3, 0x21, 0xaa, 0x32, 0xa4, 0x2d, 0x25, 0x89, 0xa9, 0xa1, 0xdb, 0x50, 0x09, 0x8b, 0x23, - 0x68, 0x39, 0xe4, 0x4c, 0x15, 0x7a, 0xb4, 0x46, 0xb6, 0x23, 0x25, 0xe6, 0x04, 0xae, 0x26, 0x2a, - 0x1b, 0x68, 0x25, 0xd2, 0x9a, 0x53, 0x60, 0xd1, 0x56, 0x0b, 0x7a, 0x53, 0x9e, 0x7b, 0x01, 0xa0, - 0x2a, 0x0e, 0x6a, 0x9d, 0x33, 0x55, 0x11, 0xb5, 0xce, 0x39, 0x05, 0x8a, 0xd8, 0x46, 0xca, 0x16, - 0x0d, 0xd4, 0x46, 0x2a, 0x2c, 0x62, 0xa8, 0x8d, 0x54, 0x5c, 0x73, 0x88, 0x2c, 0xe6, 0x4a, 0xd2, - 0x30, 0x7f, 0x5c, 0x49, 0x41, 0xd9, 0x21, 0xae, 0xa4, 0xa8, 0x4a, 0x10, 0x29, 0xf1, 0xb3, 0x55, - 0x73, 0x09, 0xcf, 0xa3, 0x07, 0x45, 0x7b, 0x28, 0x59, 0x2d, 0xd0, 0xde, 0xff, 0x51, 0xbe, 0x94, - 0xf7, 0x8e, 0xa1, 0x16, 0x87, 0xe7, 0xd1, 0xad, 0xa4, 0x80, 0x04, 0x8e, 0xa9, 0xad, 0xe4, 0x77, - 0x26, 0xa7, 0xf1, 0xa4, 0x84, 0x7e, 0x05, 0x5a, 0x31, 0x42, 0x89, 0x3e, 0x18, 0x65, 0x63, 0x52, - 0xe1, 0x87, 0xef, 0xc2, 0x9a, 0x9c, 0xd1, 0xc3, 0x12, 0xda, 0x83, 0x6a, 0x84, 0x9a, 0xa3, 0x46, - 0x11, 0xe6, 0xaf, 0x35, 0x73, 0x7a, 0x52, 0xde, 0xf9, 0x0c, 0x6a, 0x71, 0x14, 0x5c, 0x79, 0x27, - 0x07, 0x80, 0x57, 0xde, 0xc9, 0x05, 0xce, 0xe3, 0x47, 0xb2, 0xc2, 0x51, 0x63, 0x47, 0x72, 0x06, - 0xac, 0x8d, 0x1d, 0xc9, 0x59, 0xe0, 0x35, 0x0a, 0x9a, 0x36, 0xff, 0xf1, 0x21, 0x09, 0x7e, 0xa2, - 0xf8, 0x9f, 0x07, 0xb9, 0x68, 0xab, 0x3a, 0x85, 0x0a, 0x91, 0xd3, 0xd8, 0x7a, 0x7e, 0x05, 0x0b, - 0x19, 0x34, 0x53, 0xe9, 0x28, 0x82, 0x4f, 0x95, 0x8e, 0x42, 0x28, 0x34, 0x9a, 0x45, 0x0b, 0xca, - 0xf2, 0x77, 0x25, 0x74, 0x33, 0x1a, 0x95, 0xf8, 0x17, 0x4a, 0x5b, 0xce, 0xd0, 0x53, 0x9e, 0x3d, - 0x82, 0xf9, 0x18, 0xd4, 0x89, 0xe2, 0x77, 0x44, 0x0a, 0xc2, 0x54, 0x9e, 0xcd, 0xc1, 0x46, 0x63, - 0xf3, 0xfe, 0x35, 0x4b, 0x85, 0x46, 0x00, 0x8f, 0xe8, 0xa3, 0x51, 0xf1, 0x99, 0x56, 0xfa, 0xe8, - 0xdd, 0x98, 0x53, 0xb3, 0xfa, 0x39, 0x5c, 0x4d, 0x80, 0x68, 0xea, 0x04, 0xce, 0x43, 0x3a, 0xd5, - 0x09, 0x9c, 0x8b, 0xbc, 0xc5, 0xe6, 0x76, 0x06, 0x4b, 0x79, 0xa0, 0x07, 0xba, 0xa7, 0x76, 0x45, - 0x21, 0x7c, 0xa3, 0xdd, 0x1f, 0xcd, 0x94, 0x51, 0xd6, 0x86, 0x85, 0x0c, 0x82, 0xa4, 0x02, 0xa8, - 0x08, 0xda, 0x52, 0x01, 0x54, 0x08, 0x3f, 0xc5, 0x74, 0x60, 0x40, 0xd9, 0x72, 0x11, 0x8a, 0x3d, - 0x48, 0x0b, 0xaa, 0x56, 0xea, 0x88, 0x1e, 0x51, 0x6d, 0x52, 0x87, 0x4b, 0x1b, 0x16, 0x32, 0x15, - 0x22, 0x35, 0x95, 0xa2, 0x92, 0x94, 0x9a, 0x4a, 0x61, 0x79, 0x29, 0x36, 0x95, 0x37, 0x70, 0x3d, - 0x05, 0x75, 0xa0, 0xdb, 0x89, 0x57, 0x43, 0x06, 0x99, 0xd1, 0xd6, 0x0a, 0xfb, 0x53, 0xf1, 0x44, - 0xe0, 0x66, 0x3e, 0xa0, 0x81, 0xde, 0x8b, 0x85, 0x4e, 0x31, 0x96, 0xa2, 0x3d, 0xf8, 0x31, 0xb6, - 0xd4, 0xd6, 0x3e, 0x81, 0xab, 0x89, 0x5c, 0x5c, 0x05, 0x70, 0x1e, 0x42, 0xa2, 0x02, 0x38, 0x1f, - 0x9d, 0x08, 0xa7, 0xe1, 0xa6, 0xe0, 0x8b, 0x30, 0xc3, 0x47, 0xf7, 0x73, 0xc7, 0xa7, 0x30, 0x0c, - 0xed, 0xbd, 0x1f, 0xe1, 0xca, 0xbe, 0x7b, 0xd3, 0x99, 0x7d, 0x3c, 0xd9, 0xca, 0x05, 0x12, 0xe2, - 0xc9, 0x56, 0x01, 0x28, 0x90, 0x10, 0x9f, 0x4c, 0xd1, 0xe3, 0xe2, 0x73, 0x61, 0x83, 0xb8, 0xf8, - 0x82, 0xec, 0x3e, 0x14, 0xdf, 0x85, 0xc5, 0x9c, 0x04, 0x1b, 0xc5, 0xe2, 0xbe, 0x08, 0x01, 0xd0, - 0xee, 0x8d, 0xe4, 0xc9, 0xbe, 0xc4, 0xb2, 0x29, 0xb5, 0xda, 0x81, 0x85, 0x59, 0xbc, 0xda, 0x81, - 0x23, 0x32, 0xf2, 0x4c, 0x0a, 0xa2, 0x32, 0xe5, 0x74, 0x0a, 0x92, 0xc9, 0xd9, 0xd3, 0x29, 0x48, - 0x36, 0xc9, 0x0e, 0xa3, 0xb5, 0xf5, 0xe4, 0x0d, 0x63, 0x75, 0xad, 0xf6, 0xba, 0x4d, 0xfa, 0x8f, - 0xc5, 0xe7, 0xc7, 0xc4, 0x3f, 0x7d, 0x2c, 0x04, 0x3c, 0xe6, 0x7f, 0x70, 0x3f, 0x3e, 0x25, 0xb2, - 0x3d, 0x68, 0xb7, 0xe7, 0x38, 0xe9, 0xd9, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x3a, 0xd6, 0xfe, - 0xc3, 0x12, 0x2e, 0x00, 0x00, + // 3056 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5b, 0x6f, 0x1b, 0xc7, + 0xf5, 0x37, 0x75, 0x23, 0x79, 0x44, 0xdb, 0xd4, 0x48, 0xb6, 0xc8, 0xb5, 0x64, 0xd9, 0x6b, 0xc7, + 0x71, 0x12, 0x47, 0x76, 0xec, 0x3f, 0xf0, 0x4f, 0x5b, 0x14, 0x85, 0xa8, 0xbb, 0x2f, 0x92, 0xb2, + 0x92, 0x1b, 0xc4, 0x40, 0xb0, 0x59, 0x2e, 0x87, 0xe2, 0x56, 0xcb, 0x1d, 0x7a, 0x77, 0x68, 0x45, + 0x41, 0x0a, 0xb4, 0x05, 0xf2, 0x1a, 0xa0, 0x40, 0xd1, 0xf4, 0xb1, 0xcf, 0xfd, 0x04, 0x7d, 0x29, + 0xda, 0xbe, 0xf4, 0x3b, 0xe4, 0xab, 0xf4, 0xa9, 0x98, 0xcb, 0xee, 0xec, 0x95, 0x71, 0x41, 0x22, + 0x7d, 0xdb, 0x39, 0x73, 0xe6, 0x9c, 0x33, 0x67, 0xce, 0x5c, 0xce, 0xef, 0x2c, 0x34, 0x7c, 0x3c, + 0x20, 0x81, 0x43, 0x89, 0x7f, 0xf1, 0x61, 0x80, 0xfd, 0x37, 0x8e, 0x8d, 0xd7, 0x07, 0x3e, 0xa1, + 0x04, 0xcd, 0x9d, 0x3a, 0xd4, 0x72, 0x2f, 0x34, 0x70, 0x1d, 0x8f, 0x0a, 0x9a, 0x56, 0x0b, 0x7a, + 0x96, 0x8f, 0x3b, 0xa2, 0xa5, 0x1f, 0xc3, 0xb2, 0x11, 0x8d, 0xde, 0xfe, 0xd2, 0x09, 0x68, 0x60, + 0xe0, 0xd7, 0x43, 0x1c, 0x50, 0xf4, 0x31, 0x80, 0x12, 0xdc, 0x28, 0xdd, 0x2a, 0xdd, 0x9f, 0x7f, + 0x8c, 0xd6, 0x85, 0xc4, 0x75, 0x35, 0xa8, 0x35, 0xf3, 0xa7, 0x7f, 0x3d, 0x28, 0x19, 0x31, 0x5e, + 0xfd, 0x31, 0x34, 0xb2, 0x42, 0x83, 0x01, 0xf1, 0x02, 0x8c, 0xae, 0xc3, 0x1c, 0xe6, 0x14, 0x2e, + 0xb1, 0x62, 0xc8, 0x96, 0x7e, 0xc2, 0xc7, 0x58, 0xf6, 0xd9, 0xbe, 0x67, 0xfb, 0xb8, 0x8f, 0x3d, + 0x6a, 0xb9, 0xe3, 0x5b, 0x72, 0x03, 0x9a, 0x39, 0x52, 0x85, 0x29, 0xba, 0x0f, 0x0b, 0xa2, 0x73, + 0x67, 0xe8, 0x8e, 0xaf, 0x0b, 0xdd, 0x81, 0xcb, 0xb6, 0x8f, 0x2d, 0x8a, 0xcd, 0xb6, 0x43, 0xfb, + 0xd6, 0xa0, 0x31, 0xc5, 0x27, 0x58, 0x13, 0xc4, 0x16, 0xa7, 0xe9, 0x4b, 0x80, 0xe2, 0x3a, 0xa5, + 0x25, 0x6f, 0xe0, 0xda, 0xae, 0xe5, 0xb7, 0xad, 0x53, 0xbc, 0x49, 0x5c, 0x17, 0xdb, 0xf4, 0x47, + 0xb2, 0xa6, 0x01, 0xd7, 0xd3, 0x7a, 0xa5, 0x45, 0x4f, 0xe1, 0xca, 0xa6, 0x8b, 0x2d, 0x6f, 0x38, + 0x18, 0x7f, 0x11, 0x16, 0xe0, 0x6a, 0x24, 0x4b, 0x8a, 0xff, 0x04, 0xae, 0xa9, 0x21, 0xc7, 0xce, + 0x57, 0x78, 0x7c, 0x2d, 0x0f, 0xe0, 0x7a, 0x5a, 0xa4, 0x0c, 0x39, 0x04, 0x33, 0x81, 0xf3, 0x15, + 0xe6, 0xd2, 0xa6, 0x0d, 0xfe, 0xad, 0xbf, 0x86, 0xe6, 0xc6, 0x60, 0xe0, 0x5e, 0xec, 0x3a, 0xd4, + 0xa2, 0xd4, 0x77, 0xda, 0x43, 0x8a, 0xc7, 0x8f, 0x7c, 0xa4, 0x41, 0xc5, 0xc7, 0x6f, 0x9c, 0xc0, + 0x21, 0x1e, 0x77, 0x78, 0xcd, 0x88, 0xda, 0xfa, 0x0a, 0x68, 0x79, 0x2a, 0xa5, 0x47, 0xfe, 0x3e, + 0x05, 0x68, 0x07, 0x53, 0xbb, 0x67, 0xe0, 0x3e, 0xa1, 0xe3, 0xfb, 0x83, 0x6d, 0x34, 0x9f, 0x8b, + 0xe2, 0x86, 0x54, 0x0d, 0xd9, 0x42, 0x4b, 0x30, 0xdb, 0x25, 0xbe, 0x8d, 0x1b, 0xd3, 0x3c, 0x20, + 0x44, 0x03, 0x2d, 0x43, 0xd9, 0x23, 0x26, 0xb5, 0x4e, 0x83, 0xc6, 0x8c, 0xd8, 0x97, 0x1e, 0x39, + 0xb1, 0x4e, 0x03, 0xd4, 0x80, 0x32, 0x75, 0xfa, 0x98, 0x0c, 0x69, 0x63, 0xf6, 0x56, 0xe9, 0xfe, + 0xac, 0x11, 0x36, 0xd9, 0x90, 0x20, 0xe8, 0x99, 0x67, 0xf8, 0xa2, 0x31, 0x27, 0x34, 0x04, 0x41, + 0xef, 0x19, 0xbe, 0x40, 0x6b, 0x30, 0x7f, 0xe6, 0x91, 0x73, 0xcf, 0xec, 0x11, 0xb6, 0xcf, 0xcb, + 0xbc, 0x13, 0x38, 0x69, 0x8f, 0x51, 0x50, 0x13, 0x2a, 0x1e, 0x31, 0x07, 0xfe, 0xd0, 0xc3, 0x8d, + 0x2a, 0xd7, 0x56, 0xf6, 0xc8, 0x11, 0x6b, 0xa2, 0x27, 0x70, 0x59, 0xd8, 0x69, 0x0e, 0x2c, 0xdf, + 0xea, 0x07, 0x0d, 0xe0, 0x53, 0xbe, 0xa2, 0xa6, 0xcc, 0xbd, 0x53, 0x13, 0x4c, 0x47, 0x9c, 0xe7, + 0xe9, 0x4c, 0xa5, 0x52, 0xaf, 0xea, 0xd7, 0x60, 0x31, 0xe1, 0x40, 0xe9, 0xd8, 0x63, 0x58, 0xde, + 0xe4, 0x31, 0xaf, 0xbc, 0x35, 0x7e, 0xb0, 0x69, 0xd0, 0xc8, 0x0a, 0x95, 0x0a, 0xbf, 0x99, 0x82, + 0x85, 0x5d, 0x4c, 0x37, 0x7c, 0xbb, 0xe7, 0xbc, 0x99, 0xc0, 0x42, 0xde, 0x80, 0xaa, 0x4d, 0xfa, + 0x7d, 0x87, 0x9a, 0x4e, 0x47, 0xae, 0x65, 0x45, 0x10, 0xf6, 0x3b, 0x6c, 0x95, 0x07, 0x3e, 0xee, + 0x3a, 0x5f, 0xf2, 0xe5, 0xac, 0x1a, 0xb2, 0x85, 0x3e, 0x86, 0xb9, 0x2e, 0xf1, 0xfb, 0x16, 0xe5, + 0xcb, 0x79, 0xe5, 0xf1, 0xad, 0x50, 0x55, 0xc6, 0xb2, 0xf5, 0x1d, 0xce, 0x67, 0x48, 0x7e, 0xb6, + 0x5b, 0x06, 0x16, 0xed, 0xf1, 0xd5, 0xae, 0x19, 0xfc, 0x5b, 0x7f, 0x02, 0x73, 0x82, 0x0b, 0x95, + 0x61, 0xfa, 0xd5, 0xfe, 0x51, 0xfd, 0x12, 0xfb, 0x38, 0xd9, 0x30, 0xea, 0x25, 0x04, 0x30, 0x77, + 0xb2, 0x61, 0x98, 0xbb, 0xaf, 0xea, 0x53, 0x68, 0x1e, 0xca, 0xec, 0xbb, 0xf5, 0xea, 0x71, 0x7d, + 0x5a, 0xbf, 0x0f, 0x28, 0xae, 0x4c, 0x6d, 0xc6, 0x8e, 0x45, 0x2d, 0xee, 0x81, 0x9a, 0xc1, 0xbf, + 0xd9, 0x12, 0xed, 0x59, 0xc1, 0x73, 0x62, 0x5b, 0x6e, 0xcb, 0xb7, 0x3c, 0xbb, 0x37, 0x81, 0xad, + 0xa8, 0x3f, 0x82, 0x46, 0x56, 0xa8, 0x34, 0x62, 0x09, 0x66, 0xdf, 0x58, 0xee, 0x10, 0xcb, 0x3b, + 0x48, 0x34, 0xf4, 0xef, 0x4b, 0xd0, 0xe0, 0x11, 0x74, 0x4c, 0x86, 0xbe, 0x8d, 0xc5, 0xa8, 0xf1, + 0xd7, 0xef, 0x17, 0xb0, 0x10, 0x70, 0x81, 0x66, 0x4c, 0xc0, 0x54, 0x91, 0x00, 0xa3, 0x2e, 0x98, + 0x8d, 0xc4, 0x51, 0x2e, 0x05, 0xb4, 0xb9, 0x49, 0x7c, 0xa9, 0x6b, 0x46, 0x2d, 0x88, 0x99, 0x89, + 0x56, 0x01, 0xa8, 0xe5, 0x9f, 0x62, 0x6a, 0xfa, 0xb8, 0xcb, 0x17, 0xbd, 0x66, 0x54, 0x05, 0xc5, + 0xc0, 0x5d, 0xfd, 0x09, 0x34, 0x73, 0xa6, 0xa6, 0xee, 0x64, 0x1f, 0x07, 0x43, 0x97, 0x86, 0x77, + 0xb2, 0x68, 0xe9, 0xbb, 0x30, 0xbf, 0x13, 0xd8, 0x67, 0xe3, 0xaf, 0xc5, 0x5d, 0xa8, 0x09, 0x41, + 0xca, 0xff, 0xd8, 0xf7, 0x89, 0x2f, 0xa3, 0x40, 0x34, 0xf4, 0xbf, 0x96, 0xe0, 0xea, 0xa7, 0xbe, + 0xc3, 0x36, 0x55, 0x77, 0x7c, 0xb7, 0xd7, 0x61, 0x9a, 0x79, 0x42, 0x9c, 0xc2, 0xec, 0x33, 0x71, + 0x38, 0x4f, 0x27, 0x0f, 0x67, 0x74, 0x1b, 0x6a, 0xc4, 0xed, 0x98, 0x51, 0xbf, 0x70, 0xe0, 0x3c, + 0x71, 0x3b, 0x46, 0xc8, 0x12, 0x1d, 0x9c, 0xb3, 0xb1, 0x83, 0xf3, 0xe9, 0x4c, 0x65, 0xae, 0x5e, + 0xd6, 0x1b, 0x50, 0x57, 0x96, 0x8b, 0x49, 0x3e, 0x9d, 0xa9, 0x94, 0xea, 0x53, 0xba, 0x07, 0x4b, + 0x3b, 0x8e, 0xd7, 0x79, 0x81, 0xfd, 0x53, 0xdc, 0xb2, 0x82, 0x09, 0x9c, 0x07, 0x2b, 0x50, 0x0d, + 0xcd, 0x0c, 0x1a, 0x53, 0xb7, 0xa6, 0xd9, 0x42, 0x47, 0x04, 0xfd, 0x03, 0xb8, 0x96, 0xd2, 0xa7, + 0x36, 0x5e, 0xdb, 0x0a, 0x44, 0xc8, 0x57, 0x0d, 0xfe, 0xad, 0x7f, 0x5b, 0x82, 0x05, 0x71, 0x8e, + 0xed, 0x10, 0xff, 0xec, 0x7f, 0x1f, 0xea, 0xec, 0x79, 0x14, 0xb7, 0x27, 0x7a, 0xa8, 0x35, 0xf7, + 0x03, 0x03, 0x33, 0x93, 0xf7, 0xbd, 0x23, 0x9f, 0x9c, 0xfa, 0x38, 0x08, 0x26, 0x72, 0xb0, 0xfa, + 0x5c, 0x68, 0xec, 0x60, 0x15, 0x84, 0xfd, 0x8e, 0xfe, 0x73, 0xd0, 0xf2, 0x74, 0x4a, 0x67, 0xae, + 0xc1, 0xbc, 0xe3, 0x99, 0x03, 0x49, 0x96, 0xdb, 0x06, 0x9c, 0x88, 0x51, 0x98, 0x7c, 0xfc, 0x7a, + 0x68, 0x05, 0xbd, 0x09, 0x9b, 0x1c, 0x70, 0xa1, 0x31, 0x93, 0x05, 0x21, 0x34, 0x39, 0xab, 0xf3, + 0x6d, 0x4d, 0x76, 0xe1, 0x66, 0xfa, 0x4e, 0xdb, 0xf1, 0x49, 0xff, 0xa5, 0xf1, 0x7c, 0x22, 0x9b, + 0x71, 0xe8, 0xbb, 0xd2, 0x62, 0xf6, 0xa9, 0xdf, 0x86, 0xb5, 0x42, 0x6d, 0x72, 0xd9, 0x0f, 0x61, + 0x51, 0xb0, 0xb4, 0x86, 0x5e, 0xc7, 0x9d, 0xc0, 0x13, 0xf1, 0x7d, 0x58, 0x4a, 0x0a, 0x1c, 0x71, + 0x27, 0x7d, 0x3b, 0x05, 0xf5, 0x63, 0x4c, 0x37, 0x89, 0xd7, 0x75, 0x4e, 0xc7, 0x77, 0xc0, 0xc7, + 0x50, 0xc6, 0x1e, 0xf5, 0x1d, 0x2c, 0xb6, 0xec, 0xfc, 0xe3, 0x9b, 0xe1, 0xb0, 0xb4, 0x92, 0xf5, + 0x6d, 0x8f, 0xfa, 0x17, 0x46, 0xc8, 0xae, 0x7d, 0x53, 0x82, 0x59, 0x4e, 0x62, 0x4e, 0x64, 0x8f, + 0x2d, 0xb1, 0x81, 0xd9, 0x27, 0x5a, 0x85, 0x2a, 0xbf, 0xba, 0xcc, 0x80, 0xfa, 0xc2, 0xb9, 0x7b, + 0x97, 0x8c, 0x0a, 0x27, 0x1d, 0x53, 0x1f, 0xdd, 0x86, 0x79, 0xd1, 0xed, 0x78, 0xf4, 0xc9, 0x63, + 0x7e, 0xe6, 0xcd, 0xee, 0x5d, 0x32, 0x80, 0x13, 0xf7, 0x19, 0x0d, 0xad, 0x81, 0x68, 0x99, 0x6d, + 0x42, 0x5c, 0xf1, 0xf4, 0xdb, 0xbb, 0x64, 0x08, 0xa9, 0x2d, 0x42, 0xdc, 0x56, 0x59, 0x5e, 0x95, + 0xfa, 0x22, 0x2c, 0xc4, 0x4c, 0x95, 0x4b, 0x64, 0xc3, 0xe2, 0x16, 0x76, 0x31, 0xc5, 0x93, 0xf2, + 0x13, 0x82, 0x99, 0x33, 0x7c, 0x21, 0x9c, 0x54, 0x35, 0xf8, 0xb7, 0x7e, 0x1d, 0x96, 0x92, 0x4a, + 0xa4, 0x72, 0x87, 0x25, 0x77, 0x01, 0x25, 0x3e, 0xde, 0x1c, 0x06, 0x94, 0xf4, 0xf7, 0x08, 0x39, + 0x0b, 0x26, 0x62, 0x02, 0x8f, 0x86, 0xa9, 0x58, 0x34, 0xac, 0x80, 0x96, 0xa7, 0x4a, 0x1a, 0x72, + 0x02, 0x8d, 0x96, 0x65, 0x9f, 0x0d, 0x07, 0x93, 0xb4, 0x43, 0x7f, 0x08, 0xcd, 0x1c, 0xa9, 0x23, + 0x42, 0xf6, 0x35, 0xdc, 0xce, 0xdb, 0x52, 0x13, 0xda, 0x3d, 0xb9, 0x7e, 0xb9, 0x0b, 0xfa, 0x28, + 0x95, 0xd2, 0x3f, 0x07, 0x80, 0xd8, 0x9d, 0xf4, 0xdc, 0xb1, 0xb1, 0x37, 0x81, 0x1b, 0x50, 0xdf, + 0x84, 0xc5, 0x84, 0x3c, 0xe9, 0x93, 0x07, 0x80, 0x5c, 0x41, 0x32, 0x83, 0x1e, 0xf1, 0xa9, 0xe9, + 0x59, 0xfd, 0xf0, 0xbe, 0xab, 0xcb, 0x9e, 0x63, 0xd6, 0x71, 0x60, 0xf5, 0xf9, 0xa2, 0xed, 0x62, + 0xba, 0xef, 0x75, 0xc9, 0xc6, 0xe4, 0x12, 0x40, 0xfd, 0x67, 0xd0, 0xcc, 0x91, 0x2a, 0x0d, 0xbc, + 0x09, 0xa0, 0x32, 0x3f, 0xb9, 0x74, 0x31, 0x0a, 0x33, 0x69, 0xd3, 0x72, 0xed, 0xa1, 0x6b, 0x51, + 0xbc, 0xd9, 0xc3, 0xf6, 0x59, 0x30, 0xec, 0x8f, 0x6f, 0xd2, 0xff, 0x43, 0x33, 0x47, 0xaa, 0x34, + 0x49, 0x83, 0x8a, 0x2d, 0x69, 0xd2, 0x53, 0x51, 0x9b, 0x2d, 0xdb, 0x2e, 0xa6, 0xc7, 0x9e, 0x35, + 0x08, 0x7a, 0x64, 0x7c, 0x48, 0x42, 0x7f, 0x0f, 0x16, 0x13, 0xf2, 0x46, 0x84, 0xf2, 0x77, 0x25, + 0xb8, 0x93, 0x17, 0x58, 0x13, 0x33, 0x86, 0xe5, 0xa0, 0x3d, 0x4a, 0x07, 0xa6, 0xba, 0x96, 0xca, + 0xac, 0xfd, 0xd2, 0x77, 0xd9, 0x25, 0xcb, 0xbb, 0xac, 0x21, 0xed, 0xc9, 0xb4, 0x8a, 0xf3, 0x6e, + 0x0c, 0x69, 0x4f, 0xbf, 0x07, 0x77, 0x47, 0x1b, 0x26, 0x63, 0xfe, 0x8f, 0x25, 0x58, 0xda, 0xc5, + 0xd4, 0xb0, 0xce, 0x37, 0x7b, 0x96, 0x77, 0x3a, 0x09, 0x70, 0xe1, 0x0e, 0x5c, 0xee, 0xfa, 0xa4, + 0x6f, 0x26, 0x10, 0x86, 0xaa, 0x51, 0x63, 0xc4, 0xe8, 0x95, 0xba, 0x06, 0xf3, 0x94, 0x98, 0x89, + 0x77, 0x6e, 0xd5, 0x00, 0x4a, 0x42, 0x06, 0xfd, 0x6f, 0x33, 0x70, 0x2d, 0x65, 0x98, 0x5c, 0x88, + 0x3d, 0x98, 0xf7, 0xad, 0x73, 0xd3, 0x16, 0xe4, 0x46, 0x89, 0xdf, 0x53, 0xef, 0xc6, 0x12, 0xc7, + 0xec, 0x98, 0xf5, 0x88, 0x64, 0x80, 0x1f, 0xf5, 0x6a, 0xdf, 0x4f, 0x43, 0x35, 0xea, 0x41, 0xcb, + 0x50, 0x6e, 0xbb, 0xa4, 0xcd, 0x9e, 0x2c, 0x22, 0xc4, 0xe6, 0x58, 0x73, 0xbf, 0x13, 0x01, 0x33, + 0x53, 0x0a, 0x98, 0x41, 0xab, 0x50, 0xf1, 0xf0, 0xb9, 0xc9, 0x53, 0x50, 0x6e, 0x7c, 0x6b, 0xaa, + 0x51, 0x32, 0xca, 0x1e, 0x3e, 0x3f, 0xb2, 0x28, 0x4b, 0x73, 0x2a, 0xec, 0x9d, 0xce, 0xbb, 0x67, + 0x54, 0x37, 0x71, 0x3b, 0xbc, 0xfb, 0x10, 0xaa, 0x64, 0x80, 0x7d, 0x8b, 0xb2, 0xb9, 0xcf, 0xf2, + 0xcc, 0xf7, 0xa3, 0xb7, 0x9c, 0xc0, 0xfa, 0x61, 0x38, 0xd0, 0x50, 0x32, 0x98, 0xcf, 0x99, 0x4f, + 0x94, 0x50, 0x01, 0x75, 0xd4, 0x7c, 0xeb, 0x3c, 0xe2, 0x67, 0xb1, 0xc4, 0x8c, 0xea, 0x93, 0x0e, + 0xe6, 0x68, 0xc7, 0x2c, 0x37, 0xe8, 0x05, 0xe9, 0x60, 0x0e, 0x75, 0xe0, 0x73, 0xd1, 0x55, 0x11, + 0x5d, 0x1e, 0x3e, 0xe7, 0x5d, 0x77, 0xe1, 0x4a, 0x38, 0x53, 0xb3, 0x7d, 0xc1, 0x4e, 0x84, 0xaa, + 0xc8, 0xeb, 0xe4, 0x5c, 0x5b, 0x8c, 0xc6, 0xb8, 0xc2, 0x09, 0x4b, 0x2e, 0x10, 0x5c, 0x72, 0xca, + 0x9c, 0x4b, 0x77, 0xa0, 0xaa, 0xcc, 0x99, 0x87, 0xf2, 0xcb, 0x83, 0x67, 0x07, 0x87, 0x9f, 0x1e, + 0xd4, 0x2f, 0xa1, 0x2a, 0xcc, 0x6e, 0x6c, 0x6d, 0x6d, 0x6f, 0x89, 0x4c, 0x7d, 0xf3, 0xf0, 0x68, + 0x7f, 0x7b, 0x4b, 0x64, 0xea, 0x5b, 0xdb, 0xcf, 0xb7, 0x4f, 0xb6, 0xb7, 0xea, 0xd3, 0xa8, 0x06, + 0x95, 0x17, 0x87, 0x5b, 0xfb, 0x3b, 0xac, 0x6b, 0x86, 0x75, 0x19, 0xdb, 0x07, 0x1b, 0x2f, 0xb6, + 0xb7, 0xea, 0xb3, 0xa8, 0x0e, 0xb5, 0x93, 0xcf, 0x8e, 0xb6, 0xcd, 0xcd, 0xbd, 0x8d, 0x83, 0xdd, + 0xed, 0xad, 0xfa, 0x9c, 0xfe, 0x35, 0x34, 0x8e, 0xb1, 0xe5, 0xdb, 0xbd, 0x1d, 0xc7, 0xc5, 0x41, + 0xeb, 0x82, 0x1d, 0xa6, 0xe3, 0xc7, 0xf6, 0x12, 0xcc, 0xbe, 0x1e, 0x62, 0x99, 0x2d, 0x54, 0x0d, + 0xd1, 0x08, 0x73, 0xb8, 0xe9, 0x28, 0x87, 0xd3, 0x3f, 0x82, 0x66, 0x8e, 0x76, 0x95, 0x56, 0x76, + 0x19, 0x99, 0x87, 0x6e, 0xcd, 0x10, 0x0d, 0xfd, 0x2f, 0x25, 0xb8, 0x91, 0x18, 0xb3, 0x49, 0x3c, + 0x8a, 0x3d, 0xfa, 0xa3, 0x19, 0x8d, 0xde, 0x83, 0xba, 0xdd, 0x1b, 0x7a, 0x67, 0x98, 0x25, 0x98, + 0xc2, 0x56, 0x89, 0xb2, 0x5d, 0x95, 0xf4, 0xe8, 0xd8, 0xb8, 0x80, 0x95, 0x7c, 0x5b, 0xe5, 0x14, + 0x1b, 0x50, 0xee, 0x5b, 0xd4, 0xee, 0x45, 0x93, 0x0c, 0x9b, 0x68, 0x15, 0x80, 0x7f, 0x9a, 0xb1, + 0x4b, 0xba, 0xca, 0x29, 0x5b, 0x16, 0xb5, 0xd0, 0x2d, 0xa8, 0x61, 0xaf, 0x63, 0x92, 0xae, 0xc9, + 0x69, 0x12, 0xfd, 0x03, 0xec, 0x75, 0x0e, 0xbb, 0x2f, 0x18, 0x45, 0xff, 0x7d, 0x09, 0xe6, 0x04, + 0x76, 0x16, 0x3e, 0xd7, 0x4b, 0xd1, 0x73, 0x9d, 0x6d, 0x55, 0x7e, 0x9b, 0x8a, 0x99, 0xf2, 0x6f, + 0xf4, 0x53, 0x68, 0x46, 0xe7, 0x24, 0xf1, 0x9d, 0xaf, 0x78, 0xf4, 0x99, 0x3d, 0x6c, 0x75, 0xb0, + 0x2f, 0x0f, 0x9e, 0xe5, 0xf0, 0xdc, 0x8c, 0xfa, 0xf7, 0x78, 0x37, 0x7a, 0x07, 0xae, 0xf4, 0x1d, + 0x96, 0xf5, 0x9b, 0x3e, 0xee, 0xf6, 0xad, 0x41, 0xd0, 0x98, 0xe1, 0x2f, 0xbe, 0xcb, 0x82, 0x6a, + 0x08, 0xa2, 0xfe, 0x87, 0x12, 0x5c, 0xe7, 0xb8, 0xc5, 0xde, 0xc9, 0xc9, 0xd1, 0xa4, 0x90, 0xd1, + 0x7b, 0x09, 0x64, 0x34, 0x0b, 0x2e, 0x86, 0x48, 0x69, 0x0c, 0xfa, 0x9c, 0x4e, 0x40, 0x9f, 0x7a, + 0x13, 0x96, 0x33, 0x56, 0xc9, 0x05, 0xfc, 0x0c, 0x56, 0x77, 0x31, 0x3d, 0x6c, 0xff, 0x0a, 0xdb, + 0x74, 0xcb, 0xf1, 0xb1, 0x3d, 0x39, 0x84, 0xfb, 0xff, 0xe0, 0x66, 0x91, 0xe8, 0x11, 0x48, 0xf7, + 0x9f, 0x4b, 0xb0, 0xb4, 0xe9, 0x12, 0x0f, 0xb3, 0x6b, 0xea, 0x88, 0x10, 0x77, 0x12, 0x0e, 0x9c, + 0x19, 0xb0, 0x74, 0x21, 0x95, 0xd9, 0x0b, 0xcb, 0xb8, 0x0a, 0xde, 0x1f, 0x73, 0xf4, 0xf4, 0x28, + 0x47, 0xeb, 0xcb, 0x70, 0x2d, 0x65, 0xa1, 0x74, 0xe6, 0x3f, 0x4b, 0xb0, 0x92, 0xe8, 0xd9, 0xf7, + 0x28, 0xf6, 0x3d, 0xeb, 0x47, 0x9c, 0x43, 0x2e, 0xa4, 0x31, 0xfd, 0x5f, 0x40, 0x1a, 0x6b, 0xb0, + 0x5a, 0x30, 0x05, 0x05, 0x50, 0x33, 0x7f, 0xbc, 0x99, 0x34, 0x40, 0x9d, 0x15, 0x2a, 0x15, 0x7e, + 0xc9, 0x14, 0x7a, 0xfc, 0xe0, 0x9c, 0x98, 0x42, 0x7e, 0x51, 0x62, 0xd7, 0xa2, 0xce, 0x1b, 0x2c, + 0x6e, 0x67, 0xf9, 0x38, 0x09, 0x89, 0xec, 0xae, 0x12, 0x56, 0xa5, 0x35, 0x4b, 0xab, 0x7e, 0x57, + 0x62, 0x39, 0xd6, 0xc0, 0x75, 0xec, 0xc9, 0x62, 0xf5, 0xe8, 0x7d, 0x98, 0x13, 0x8b, 0x32, 0x02, + 0x89, 0x92, 0x1c, 0xfa, 0x2a, 0xdc, 0xc8, 0xb5, 0x41, 0xda, 0xf8, 0x12, 0x9a, 0x87, 0x03, 0xea, + 0xf4, 0xf9, 0x9e, 0x9b, 0xdc, 0x62, 0xad, 0x80, 0x96, 0x27, 0x56, 0x2a, 0xfd, 0x4d, 0x29, 0xc2, + 0x41, 0x78, 0x3a, 0x38, 0x91, 0xb7, 0xef, 0x80, 0x04, 0x34, 0xfe, 0xf6, 0x65, 0x6d, 0xf6, 0xf6, + 0x5d, 0x82, 0x59, 0x4a, 0xce, 0x70, 0xf8, 0x70, 0x14, 0x0d, 0x96, 0x81, 0x27, 0x2d, 0x90, 0xa6, + 0x7d, 0xcd, 0xd6, 0x93, 0xa7, 0xc5, 0x3c, 0xeb, 0x9b, 0x90, 0x79, 0x19, 0xb0, 0xa8, 0xc0, 0xaa, + 0x1b, 0x51, 0xfe, 0x1f, 0xd7, 0x2e, 0x4c, 0x7b, 0xfc, 0x8f, 0x35, 0x5e, 0xdd, 0x0d, 0xeb, 0x81, + 0xa2, 0x2c, 0x8e, 0x3e, 0x87, 0x7a, 0xba, 0x32, 0x8d, 0xd6, 0xb2, 0x46, 0x25, 0x0a, 0xe1, 0xda, + 0xad, 0x62, 0x06, 0xe9, 0x87, 0xb9, 0x7f, 0x7f, 0x77, 0x7f, 0xaa, 0x32, 0x85, 0xbe, 0x08, 0x2b, + 0xca, 0xb1, 0x72, 0x33, 0x8a, 0x0f, 0xcf, 0xad, 0x6f, 0x6b, 0xb7, 0x47, 0x70, 0x24, 0x34, 0x94, + 0xd0, 0x33, 0x00, 0x55, 0x3f, 0x46, 0xcd, 0xe4, 0xc0, 0x58, 0x1d, 0x5b, 0xd3, 0xf2, 0xba, 0x52, + 0xc2, 0x3e, 0x85, 0x2b, 0xc9, 0xf2, 0x2f, 0x5a, 0x8d, 0x1e, 0xcb, 0x79, 0xe5, 0x68, 0xed, 0x66, + 0x51, 0x77, 0x56, 0x70, 0xb2, 0x16, 0xab, 0x04, 0xe7, 0x96, 0x7d, 0x95, 0xe0, 0xfc, 0x12, 0x6e, + 0x24, 0xd8, 0x06, 0x94, 0xad, 0xa1, 0xa2, 0xc8, 0x7f, 0x85, 0x25, 0x5d, 0x4d, 0x1f, 0xc5, 0x92, + 0x52, 0x72, 0x00, 0xf3, 0xb1, 0x42, 0x22, 0x8a, 0x3c, 0x99, 0x2d, 0xcf, 0x6a, 0x37, 0x72, 0xfb, + 0x52, 0xf2, 0x3e, 0x87, 0x7a, 0x3a, 0x65, 0x54, 0x41, 0x57, 0x50, 0x9b, 0x54, 0x41, 0x57, 0x58, + 0x67, 0x0c, 0xc5, 0xbf, 0x00, 0x50, 0x75, 0x36, 0x15, 0x12, 0x99, 0x42, 0x9f, 0x0a, 0x89, 0x6c, + 0x59, 0x2e, 0x14, 0xf6, 0x88, 0x5b, 0x9b, 0xae, 0x9b, 0x29, 0x6b, 0x0b, 0xca, 0x74, 0xca, 0xda, + 0xa2, 0x92, 0x5b, 0x7c, 0x8b, 0x64, 0x0a, 0x51, 0x6a, 0x8b, 0x14, 0x95, 0xdf, 0xd4, 0x16, 0x29, + 0xac, 0x62, 0x45, 0xfe, 0xf8, 0x09, 0xcc, 0xec, 0x04, 0xf6, 0x19, 0x5a, 0x8c, 0x86, 0xa8, 0x1a, + 0x96, 0xb6, 0x94, 0x24, 0xa6, 0x86, 0x6e, 0x43, 0x25, 0x2c, 0xe3, 0xa0, 0xe5, 0x90, 0x33, 0x55, + 0x92, 0xd2, 0x1a, 0xd9, 0x8e, 0x94, 0x98, 0x13, 0xb8, 0x9c, 0xa8, 0xc1, 0xa0, 0x95, 0x48, 0x6b, + 0x4e, 0x29, 0x48, 0x5b, 0x2d, 0xe8, 0x4d, 0x79, 0xee, 0x19, 0x80, 0xaa, 0x8d, 0xa8, 0x75, 0xce, + 0xd4, 0x6f, 0xd4, 0x3a, 0xe7, 0x94, 0x52, 0x62, 0x1b, 0x29, 0x5b, 0xde, 0x50, 0x1b, 0xa9, 0xb0, + 0xdc, 0xa2, 0x36, 0x52, 0x71, 0x75, 0x24, 0xb2, 0x98, 0x2b, 0x49, 0x17, 0x24, 0xe2, 0x4a, 0x0a, + 0x0a, 0x24, 0x71, 0x25, 0x45, 0xf5, 0x8c, 0x48, 0x89, 0x9f, 0xad, 0xef, 0xcb, 0x42, 0x02, 0xba, + 0x57, 0xb4, 0x87, 0x92, 0x75, 0x0d, 0xed, 0xdd, 0x1f, 0xe4, 0x4b, 0x79, 0xef, 0x18, 0x6a, 0xf1, + 0x42, 0x02, 0xba, 0x91, 0x14, 0x90, 0x40, 0x5c, 0xb5, 0x95, 0xfc, 0xce, 0xe4, 0x34, 0x1e, 0x95, + 0xd0, 0xaf, 0x41, 0x2b, 0xc6, 0x52, 0xd1, 0x7b, 0xa3, 0x6c, 0x4c, 0x2a, 0x7c, 0xff, 0x6d, 0x58, + 0x93, 0x33, 0xba, 0x5f, 0x42, 0x7b, 0x50, 0x8d, 0xf0, 0x7d, 0xd4, 0x28, 0xaa, 0x4e, 0x68, 0xcd, + 0x9c, 0x9e, 0x94, 0x77, 0x3e, 0x81, 0x5a, 0x1c, 0xaf, 0x57, 0xde, 0xc9, 0x29, 0x15, 0x28, 0xef, + 0xe4, 0x42, 0xfc, 0xf1, 0x23, 0x59, 0x21, 0xbe, 0xb1, 0x23, 0x39, 0x03, 0x2b, 0xc7, 0x8e, 0xe4, + 0x2c, 0x44, 0x1c, 0x05, 0x4d, 0x9b, 0xff, 0xa2, 0x91, 0x84, 0x69, 0x51, 0xfc, 0x1f, 0x89, 0x5c, + 0x5c, 0x58, 0x9d, 0x42, 0x85, 0x18, 0x6f, 0x6c, 0x3d, 0xbf, 0x80, 0x85, 0x0c, 0xee, 0xaa, 0x74, + 0x14, 0x01, 0xbd, 0x4a, 0x47, 0x21, 0x68, 0x1b, 0xcd, 0xa2, 0x05, 0x65, 0xf9, 0x63, 0x15, 0xba, + 0x1e, 0x8d, 0x4a, 0xfc, 0xb5, 0xa5, 0x2d, 0x67, 0xe8, 0x29, 0xcf, 0x1e, 0xc1, 0x7c, 0x0c, 0x94, + 0x45, 0xf1, 0x3b, 0x22, 0x05, 0xb6, 0x2a, 0xcf, 0xe6, 0xa0, 0xb8, 0xb1, 0x79, 0xff, 0x96, 0x25, + 0x6d, 0x23, 0x20, 0x52, 0xf4, 0xc1, 0xa8, 0xf8, 0x4c, 0x2b, 0x7d, 0xf0, 0x76, 0xcc, 0xa9, 0x59, + 0xfd, 0x12, 0x2e, 0x27, 0xe0, 0x3e, 0x75, 0x02, 0xe7, 0x61, 0xb2, 0xea, 0x04, 0xce, 0xc5, 0x08, + 0x63, 0x73, 0x3b, 0x83, 0xa5, 0x3c, 0x78, 0x06, 0xdd, 0x51, 0xbb, 0xa2, 0x10, 0x68, 0xd2, 0xee, + 0x8e, 0x66, 0xca, 0x28, 0x6b, 0xc3, 0x42, 0x06, 0xeb, 0x52, 0x01, 0x54, 0x04, 0xc2, 0xa9, 0x00, + 0x2a, 0x04, 0xca, 0x62, 0x3a, 0x30, 0xa0, 0x6c, 0x61, 0x0b, 0xc5, 0x1e, 0xa4, 0x05, 0xf5, 0x35, + 0x75, 0x44, 0x8f, 0xa8, 0x8b, 0xa9, 0xc3, 0xa5, 0x0d, 0x0b, 0x99, 0x5a, 0x96, 0x9a, 0x4a, 0x51, + 0xf1, 0x4c, 0x4d, 0xa5, 0xb0, 0x10, 0x16, 0x9b, 0xca, 0x2b, 0xb8, 0x9a, 0x02, 0x65, 0xd0, 0xcd, + 0xc4, 0xab, 0x21, 0x83, 0x21, 0x69, 0x6b, 0x85, 0xfd, 0xa9, 0x78, 0x22, 0x70, 0x3d, 0x1f, 0x7a, + 0x41, 0xef, 0xc4, 0x42, 0xa7, 0x18, 0xf5, 0xd1, 0xee, 0xfd, 0x10, 0x5b, 0x6a, 0x6b, 0x9f, 0xc0, + 0xe5, 0x04, 0x6a, 0xa0, 0x02, 0x38, 0x0f, 0xcb, 0x51, 0x01, 0x9c, 0x8f, 0xa3, 0x84, 0xd3, 0x70, + 0x53, 0x40, 0x4b, 0x88, 0x45, 0xa0, 0xbb, 0xb9, 0xe3, 0x53, 0x68, 0x8b, 0xf6, 0xce, 0x0f, 0x70, + 0x65, 0xdf, 0xbd, 0x69, 0x0c, 0x22, 0x9e, 0x6c, 0xe5, 0x42, 0x1e, 0xf1, 0x64, 0xab, 0x00, 0xbe, + 0x48, 0x88, 0x4f, 0x82, 0x09, 0x71, 0xf1, 0xb9, 0x00, 0x47, 0x5c, 0x7c, 0x01, 0x0e, 0x11, 0x8a, + 0xef, 0xc2, 0x62, 0x0e, 0x14, 0x80, 0x62, 0x71, 0x5f, 0x84, 0x55, 0x68, 0x77, 0x46, 0xf2, 0x64, + 0x5f, 0x62, 0xd9, 0xe4, 0x5f, 0xed, 0xc0, 0x42, 0xbc, 0x41, 0xed, 0xc0, 0x11, 0xd8, 0x41, 0xec, + 0x4a, 0x8e, 0x27, 0xf0, 0x99, 0x07, 0x4b, 0x3c, 0x73, 0xcf, 0x3c, 0x58, 0x92, 0x39, 0x7f, 0x22, + 0xd7, 0x4d, 0x65, 0xdf, 0xf1, 0x5c, 0x37, 0x1f, 0x16, 0xd0, 0x6e, 0x8f, 0xe0, 0x48, 0x1a, 0xdd, + 0x7a, 0xf4, 0x8a, 0xf1, 0xba, 0x56, 0x7b, 0xdd, 0x26, 0xfd, 0x87, 0xe2, 0xf3, 0x43, 0xe2, 0x9f, + 0x3e, 0x14, 0x12, 0x1e, 0xf2, 0x3f, 0xd8, 0x1f, 0x9e, 0x12, 0xd9, 0x1e, 0xb4, 0xdb, 0x73, 0x9c, + 0xf4, 0xe4, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe4, 0x89, 0xd3, 0x28, 0x12, 0x2f, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -4222,7 +4320,8 @@ type RepositoryServiceClient interface { RenameRepository(ctx context.Context, in *RenameRepositoryRequest, opts ...grpc.CallOption) (*RenameRepositoryResponse, error) ReplicateRepository(ctx context.Context, in *ReplicateRepositoryRequest, opts ...grpc.CallOption) (*ReplicateRepositoryResponse, error) OptimizeRepository(ctx context.Context, in *OptimizeRepositoryRequest, opts ...grpc.CallOption) (*OptimizeRepositoryResponse, error) - CreateFullBackup(ctx context.Context, in *CreateFullBackupRequest, opts ...grpc.CallOption) (*CreateFullBackupResponse, error) + CreateBackup(ctx context.Context, in *CreateBackupRequest, opts ...grpc.CallOption) (*CreateBackupResponse, error) + RestoreFromBackup(ctx context.Context, in *RestoreFromBackupRequest, opts ...grpc.CallOption) (*RestoreFromBackupResponse, error) } type repositoryServiceClient struct { @@ -4836,9 +4935,18 @@ func (c *repositoryServiceClient) OptimizeRepository(ctx context.Context, in *Op return out, nil } -func (c *repositoryServiceClient) CreateFullBackup(ctx context.Context, in *CreateFullBackupRequest, opts ...grpc.CallOption) (*CreateFullBackupResponse, error) { - out := new(CreateFullBackupResponse) - err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/CreateFullBackup", in, out, opts...) +func (c *repositoryServiceClient) CreateBackup(ctx context.Context, in *CreateBackupRequest, opts ...grpc.CallOption) (*CreateBackupResponse, error) { + out := new(CreateBackupResponse) + err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/CreateBackup", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *repositoryServiceClient) RestoreFromBackup(ctx context.Context, in *RestoreFromBackupRequest, opts ...grpc.CallOption) (*RestoreFromBackupResponse, error) { + out := new(RestoreFromBackupResponse) + err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/RestoreFromBackup", in, out, opts...) if err != nil { return nil, err } @@ -4888,7 +4996,8 @@ type RepositoryServiceServer interface { RenameRepository(context.Context, *RenameRepositoryRequest) (*RenameRepositoryResponse, error) ReplicateRepository(context.Context, *ReplicateRepositoryRequest) (*ReplicateRepositoryResponse, error) OptimizeRepository(context.Context, *OptimizeRepositoryRequest) (*OptimizeRepositoryResponse, error) - CreateFullBackup(context.Context, *CreateFullBackupRequest) (*CreateFullBackupResponse, error) + CreateBackup(context.Context, *CreateBackupRequest) (*CreateBackupResponse, error) + RestoreFromBackup(context.Context, *RestoreFromBackupRequest) (*RestoreFromBackupResponse, error) } // UnimplementedRepositoryServiceServer can be embedded to have forward compatible implementations. @@ -5018,8 +5127,11 @@ func (*UnimplementedRepositoryServiceServer) ReplicateRepository(ctx context.Con func (*UnimplementedRepositoryServiceServer) OptimizeRepository(ctx context.Context, req *OptimizeRepositoryRequest) (*OptimizeRepositoryResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method OptimizeRepository not implemented") } -func (*UnimplementedRepositoryServiceServer) CreateFullBackup(ctx context.Context, req *CreateFullBackupRequest) (*CreateFullBackupResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method CreateFullBackup not implemented") +func (*UnimplementedRepositoryServiceServer) CreateBackup(ctx context.Context, req *CreateBackupRequest) (*CreateBackupResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method CreateBackup not implemented") +} +func (*UnimplementedRepositoryServiceServer) RestoreFromBackup(ctx context.Context, req *RestoreFromBackupRequest) (*RestoreFromBackupResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method RestoreFromBackup not implemented") } func RegisterRepositoryServiceServer(s *grpc.Server, srv RepositoryServiceServer) { @@ -5804,20 +5916,38 @@ func _RepositoryService_OptimizeRepository_Handler(srv interface{}, ctx context. return interceptor(ctx, in, info, handler) } -func _RepositoryService_CreateFullBackup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(CreateFullBackupRequest) +func _RepositoryService_CreateBackup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CreateBackupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RepositoryServiceServer).CreateBackup(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/gitaly.RepositoryService/CreateBackup", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RepositoryServiceServer).CreateBackup(ctx, req.(*CreateBackupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RepositoryService_RestoreFromBackup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RestoreFromBackupRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(RepositoryServiceServer).CreateFullBackup(ctx, in) + return srv.(RepositoryServiceServer).RestoreFromBackup(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/gitaly.RepositoryService/CreateFullBackup", + FullMethod: "/gitaly.RepositoryService/RestoreFromBackup", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(RepositoryServiceServer).CreateFullBackup(ctx, req.(*CreateFullBackupRequest)) + return srv.(RepositoryServiceServer).RestoreFromBackup(ctx, req.(*RestoreFromBackupRequest)) } return interceptor(ctx, in, info, handler) } @@ -5951,8 +6081,12 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{ Handler: _RepositoryService_OptimizeRepository_Handler, }, { - MethodName: "CreateFullBackup", - Handler: _RepositoryService_CreateFullBackup_Handler, + MethodName: "CreateBackup", + Handler: _RepositoryService_CreateBackup_Handler, + }, + { + MethodName: "RestoreFromBackup", + Handler: _RepositoryService_RestoreFromBackup_Handler, }, }, Streams: []grpc.StreamDesc{ diff --git a/proto/repository-service.proto b/proto/repository-service.proto index 1504d75d41a..e184168b7bc 100644 --- a/proto/repository-service.proto +++ b/proto/repository-service.proto @@ -214,11 +214,16 @@ service RepositoryService { op: MUTATOR }; } - rpc CreateFullBackup(CreateFullBackupRequest) returns (CreateFullBackupResponse) { + rpc CreateBackup(CreateBackupRequest) returns (CreateBackupResponse) { option (op_type) = { op: ACCESSOR }; } + rpc RestoreFromBackup(RestoreFromBackupRequest) returns (RestoreFromBackupResponse) { + option (op_type) = { + op: MUTATOR + }; + } } message RepositoryExistsRequest { @@ -622,9 +627,18 @@ message OptimizeRepositoryRequest { message OptimizeRepositoryResponse{} -message CreateFullBackupRequest { +message CreateBackupRequest { Repository repository = 1 [(target_repository)=true]; string post_url = 2; + string token = 3; +} + +message CreateBackupResponse{} + +message RestoreFromBackupRequest { + Repository repository = 1 [(target_repository)=true]; + string url = 2; + string token = 3; } -message CreateFullBackupResponse{} +message RestoreFromBackupResponse{} diff --git a/ruby/proto/gitaly/repository-service_pb.rb b/ruby/proto/gitaly/repository-service_pb.rb index 7c2ed10d1a1..87fec15b86c 100644 --- a/ruby/proto/gitaly/repository-service_pb.rb +++ b/ruby/proto/gitaly/repository-service_pb.rb @@ -321,11 +321,19 @@ Google::Protobuf::DescriptorPool.generated_pool.build do end add_message "gitaly.OptimizeRepositoryResponse" do end - add_message "gitaly.CreateFullBackupRequest" do + add_message "gitaly.CreateBackupRequest" do optional :repository, :message, 1, "gitaly.Repository" optional :post_url, :string, 2 + optional :token, :string, 3 end - add_message "gitaly.CreateFullBackupResponse" do + add_message "gitaly.CreateBackupResponse" do + end + add_message "gitaly.RestoreFromBackupRequest" do + optional :repository, :message, 1, "gitaly.Repository" + optional :url, :string, 2 + optional :token, :string, 3 + end + add_message "gitaly.RestoreFromBackupResponse" do end end @@ -417,6 +425,8 @@ module Gitaly ReplicateRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReplicateRepositoryResponse").msgclass OptimizeRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OptimizeRepositoryRequest").msgclass OptimizeRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OptimizeRepositoryResponse").msgclass - CreateFullBackupRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateFullBackupRequest").msgclass - CreateFullBackupResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateFullBackupResponse").msgclass + CreateBackupRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBackupRequest").msgclass + CreateBackupResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBackupResponse").msgclass + RestoreFromBackupRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreFromBackupRequest").msgclass + RestoreFromBackupResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreFromBackupResponse").msgclass end diff --git a/ruby/proto/gitaly/repository-service_services_pb.rb b/ruby/proto/gitaly/repository-service_services_pb.rb index 0ed9a7a4d84..613774d7ed0 100644 --- a/ruby/proto/gitaly/repository-service_services_pb.rb +++ b/ruby/proto/gitaly/repository-service_services_pb.rb @@ -55,7 +55,8 @@ module Gitaly rpc :RenameRepository, RenameRepositoryRequest, RenameRepositoryResponse rpc :ReplicateRepository, ReplicateRepositoryRequest, ReplicateRepositoryResponse rpc :OptimizeRepository, OptimizeRepositoryRequest, OptimizeRepositoryResponse - rpc :CreateFullBackup, CreateFullBackupRequest, CreateFullBackupResponse + rpc :CreateBackup, CreateBackupRequest, CreateBackupResponse + rpc :RestoreFromBackup, RestoreFromBackupRequest, RestoreFromBackupResponse end Stub = Service.rpc_stub_class -- GitLab