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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Cai <jcai@gitlab.com>2020-05-17 03:41:43 +0300
committerJohn Cai <jcai@gitlab.com>2020-05-17 19:44:50 +0300
commitfb1544e67b827544e4e330415a29f713786c7b72 (patch)
treeab2dccf747616e922af08813326b732abfe9f388
parent2602f5d1c2f8cf31461ba6c36b0de38d1bda5138 (diff)
-rw-r--r--internal/praefect/helper_test.go5
-rw-r--r--internal/service/repository/backups.go67
-rw-r--r--internal/service/repository/bundle/create.go (renamed from internal/git/bundle/create.go)50
-rw-r--r--internal/service/repository/bundle/create_test.go (renamed from internal/git/bundle/create_test.go)20
-rw-r--r--internal/service/repository/bundle/unpack.go (renamed from internal/git/bundle/unpack.go)6
-rw-r--r--proto/go/gitalypb/repository-service.pb.go614
-rw-r--r--proto/repository-service.proto20
-rw-r--r--ruby/proto/gitaly/repository-service_pb.rb18
-rw-r--r--ruby/proto/gitaly/repository-service_services_pb.rb3
9 files changed, 518 insertions, 285 deletions
diff --git a/internal/praefect/helper_test.go b/internal/praefect/helper_test.go
index f82a67dee..ed96ab496 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 5542c340a..e0e213170 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
index 652541671..49b08a5ee 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
index 14283b0c9..59ef3247a 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
index 759e45397..3e11b863a 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 5a386a33a..ca6c82c63 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 1504d75d4..e184168b7 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 7c2ed10d1..87fec15b8 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 0ed9a7a4d..613774d7e 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