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:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2021-01-18 18:49:04 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2021-01-18 18:49:04 +0300
commitee661e5000a7d1fe8bbf08c78c04906b3d732051 (patch)
treece75ed4fc344f711b4facdd25ea9c8b704a0f2c5
parentf8428022b2d5b03010b476d14e8bcedb347e25c7 (diff)
parenteb0d3ed334fd4123b172239887b1f51d9fb53a3a (diff)
Merge branch 'avar/only-do-trailers-work-if-needed' into 'master'
FindCommit[s]: add a "Trailers" boolean flag to do %(trailers) work See merge request gitlab-org/gitaly!2999
-rw-r--r--changelogs/unreleased/avar-only-do-trailers-work-if-needed.yml5
-rw-r--r--internal/gitaly/service/commit/find_commit.go6
-rw-r--r--internal/gitaly/service/commit/find_commit_test.go32
-rw-r--r--internal/gitaly/service/commit/find_commits.go28
-rw-r--r--internal/gitaly/service/commit/find_commits_test.go34
-rw-r--r--proto/commit.proto2
-rw-r--r--proto/go/gitalypb/commit.pb.go298
-rw-r--r--ruby/proto/gitaly/commit_pb.rb2
8 files changed, 254 insertions, 153 deletions
diff --git a/changelogs/unreleased/avar-only-do-trailers-work-if-needed.yml b/changelogs/unreleased/avar-only-do-trailers-work-if-needed.yml
new file mode 100644
index 000000000..b35604701
--- /dev/null
+++ b/changelogs/unreleased/avar-only-do-trailers-work-if-needed.yml
@@ -0,0 +1,5 @@
+---
+title: 'FindCommit[s]: add a Trailers boolean flag to do %(trailers) work'
+merge_request: 2999
+author:
+type: changed
diff --git a/internal/gitaly/service/commit/find_commit.go b/internal/gitaly/service/commit/find_commit.go
index fab94fc84..cc6b3a7a2 100644
--- a/internal/gitaly/service/commit/find_commit.go
+++ b/internal/gitaly/service/commit/find_commit.go
@@ -17,7 +17,11 @@ func (s *server) FindCommit(ctx context.Context, in *gitalypb.FindCommitRequest)
repo := in.GetRepository()
- commit, err := log.GetCommitWithTrailers(ctx, s.locator, repo, git.Revision(revision))
+ commitGetter := log.GetCommit
+ if in.GetTrailers() {
+ commitGetter = log.GetCommitWithTrailers
+ }
+ commit, err := commitGetter(ctx, s.locator, repo, git.Revision(revision))
if log.IsNotFound(err) {
return &gitalypb.FindCommitResponse{}, nil
}
diff --git a/internal/gitaly/service/commit/find_commit_test.go b/internal/gitaly/service/commit/find_commit_test.go
index eee8827ea..86a42f006 100644
--- a/internal/gitaly/service/commit/find_commit_test.go
+++ b/internal/gitaly/service/commit/find_commit_test.go
@@ -49,6 +49,7 @@ func TestSuccessfulFindCommitRequest(t *testing.T) {
testCases := []struct {
description string
revision string
+ trailers bool
commit *gitalypb.GitCommit
}{
{
@@ -57,8 +58,35 @@ func TestSuccessfulFindCommitRequest(t *testing.T) {
commit: testhelper.GitLabTestCommit("498214de67004b1da3d820901307bed2a68a8ef6"),
},
{
- description: "With a tag name",
+ description: "With a tag name no trailers",
revision: "v1.0.0",
+ trailers: false,
+ commit: &gitalypb.GitCommit{
+ Id: "6f6d7e7ed97bb5f0054f2b1df789b39ca89b6ff9",
+ Subject: []byte("More submodules"),
+ Body: []byte("More submodules\n\nSigned-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>\n"),
+ Author: &gitalypb.CommitAuthor{
+ Name: []byte("Dmitriy Zaporozhets"),
+ Email: []byte("dmitriy.zaporozhets@gmail.com"),
+ Date: &timestamp.Timestamp{Seconds: 1393491261},
+ Timezone: []byte("+0200"),
+ },
+ Committer: &gitalypb.CommitAuthor{
+ Name: []byte("Dmitriy Zaporozhets"),
+ Email: []byte("dmitriy.zaporozhets@gmail.com"),
+ Date: &timestamp.Timestamp{Seconds: 1393491261},
+ Timezone: []byte("+0200"),
+ },
+ ParentIds: []string{"d14d6c0abdd253381df51a723d58691b2ee1ab08"},
+ BodySize: 84,
+ SignatureType: gitalypb.SignatureType_PGP,
+ TreeId: "70d69cce111b0e1f54f7e5438bbbba9511a8e23c",
+ },
+ },
+ {
+ description: "With a tag name and trailers",
+ revision: "v1.0.0",
+ trailers: true,
commit: &gitalypb.GitCommit{
Id: "6f6d7e7ed97bb5f0054f2b1df789b39ca89b6ff9",
Subject: []byte("More submodules"),
@@ -100,6 +128,7 @@ func TestSuccessfulFindCommitRequest(t *testing.T) {
{
description: "More submodules",
revision: "6f6d7e7ed97bb5f0054f2b1df789b39ca89b6ff9",
+ trailers: true,
commit: &gitalypb.GitCommit{
Id: "6f6d7e7ed97bb5f0054f2b1df789b39ca89b6ff9",
Subject: []byte("More submodules"),
@@ -223,6 +252,7 @@ func TestSuccessfulFindCommitRequest(t *testing.T) {
request := &gitalypb.FindCommitRequest{
Repository: testRepo,
Revision: []byte(testCase.revision),
+ Trailers: testCase.trailers,
}
ctx, cancel := testhelper.Context()
diff --git a/internal/gitaly/service/commit/find_commits.go b/internal/gitaly/service/commit/find_commits.go
index a8bbc0c71..e52ceb10f 100644
--- a/internal/gitaly/service/commit/find_commits.go
+++ b/internal/gitaly/service/commit/find_commits.go
@@ -66,7 +66,7 @@ func (s *server) findCommits(ctx context.Context, req *gitalypb.FindCommitsReque
getCommits.Offset(int(req.GetOffset()))
}
- if err := streamCommits(getCommits, stream); err != nil {
+ if err := streamCommits(getCommits, stream, req.GetTrailers()); err != nil {
return fmt.Errorf("error streaming commits: %v", err)
}
return nil
@@ -111,15 +111,23 @@ func (g *GetCommits) Offset(offset int) error {
}
// Commit returns the current commit
-func (g *GetCommits) Commit(ctx context.Context) (*gitalypb.GitCommit, error) {
- revAndTrailers := strings.SplitN(strings.TrimSpace(g.scanner.Text()), "\000", 2)
- revision := revAndTrailers[0]
+func (g *GetCommits) Commit(ctx context.Context, trailers bool) (*gitalypb.GitCommit, error) {
+ logOutput := strings.TrimSpace(g.scanner.Text())
+ var revAndTrailers []string
+ var revision string
+
+ if trailers {
+ revAndTrailers = strings.SplitN(logOutput, "\000", 2)
+ revision = revAndTrailers[0]
+ } else {
+ revision = logOutput
+ }
commit, err := log.GetCommitCatfile(ctx, g.batch, git.Revision(revision))
if err != nil {
return nil, fmt.Errorf("cat-file get commit %q: %v", revision, err)
}
- if len(revAndTrailers) == 2 {
+ if trailers && len(revAndTrailers) == 2 {
commit.Trailers = trailerparser.Parse([]byte(revAndTrailers[1]))
}
@@ -140,13 +148,13 @@ func (s *findCommitsSender) Send() error {
return s.stream.Send(&gitalypb.FindCommitsResponse{Commits: s.commits})
}
-func streamCommits(getCommits *GetCommits, stream gitalypb.CommitService_FindCommitsServer) error {
+func streamCommits(getCommits *GetCommits, stream gitalypb.CommitService_FindCommitsServer, trailers bool) error {
ctx := stream.Context()
chunker := chunk.New(&findCommitsSender{stream: stream})
for getCommits.Scan() {
- commit, err := getCommits.Commit(ctx)
+ commit, err := getCommits.Commit(ctx, trailers)
if err != nil {
return err
}
@@ -163,7 +171,11 @@ func streamCommits(getCommits *GetCommits, stream gitalypb.CommitService_FindCom
}
func getLogCommandSubCmd(req *gitalypb.FindCommitsRequest) git.SubCmd {
- subCmd := git.SubCmd{Name: "log", Flags: []git.Option{git.Flag{Name: "--format=%H%x00%(trailers:unfold,separator=%x00)"}}}
+ logFormatOption := "--format=%H"
+ if req.GetTrailers() {
+ logFormatOption += "%x00%(trailers:unfold,separator=%x00)"
+ }
+ subCmd := git.SubCmd{Name: "log", Flags: []git.Option{git.Flag{Name: logFormatOption}}}
// We will perform the offset in Go because --follow doesn't play well with --skip.
// See: https://gitlab.com/gitlab-org/gitlab-ce/issues/3574#note_3040520
diff --git a/internal/gitaly/service/commit/find_commits_test.go b/internal/gitaly/service/commit/find_commits_test.go
index eb6d2f14d..a8d20c8eb 100644
--- a/internal/gitaly/service/commit/find_commits_test.go
+++ b/internal/gitaly/service/commit/find_commits_test.go
@@ -31,8 +31,9 @@ func TestFindCommitsFields(t *testing.T) {
defer cleanupFn()
testCases := []struct {
- id string
- commit *gitalypb.GitCommit
+ id string
+ trailers bool
+ commit *gitalypb.GitCommit
}{
{
id: "b83d6e391c22777fca1ed3012fce84f633d7fed0",
@@ -74,7 +75,33 @@ func TestFindCommitsFields(t *testing.T) {
commit: testhelper.GitLabTestCommit("189a6c924013fc3fe40d6f1ec1dc20214183bc97"),
},
{
- id: "5937ac0a7beb003549fc5fd26fc247adbce4a52e",
+ id: "5937ac0a7beb003549fc5fd26fc247adbce4a52e",
+ trailers: false,
+ commit: &gitalypb.GitCommit{
+ Id: "5937ac0a7beb003549fc5fd26fc247adbce4a52e",
+ Subject: []byte("Add submodule from gitlab.com"),
+ Body: []byte("Add submodule from gitlab.com\n\nSigned-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>\n"),
+ Author: &gitalypb.CommitAuthor{
+ Name: []byte("Dmitriy Zaporozhets"),
+ Email: []byte("dmitriy.zaporozhets@gmail.com"),
+ Date: &timestamp.Timestamp{Seconds: 1393491698},
+ Timezone: []byte("+0200"),
+ },
+ Committer: &gitalypb.CommitAuthor{
+ Name: []byte("Dmitriy Zaporozhets"),
+ Email: []byte("dmitriy.zaporozhets@gmail.com"),
+ Date: &timestamp.Timestamp{Seconds: 1393491698},
+ Timezone: []byte("+0200"),
+ },
+ ParentIds: []string{"570e7b2abdd848b95f2f578043fc23bd6f6fd24d"},
+ BodySize: 98,
+ SignatureType: gitalypb.SignatureType_PGP,
+ TreeId: "a6973545d42361b28bfba5ced3b75dba5848b955",
+ },
+ },
+ {
+ id: "5937ac0a7beb003549fc5fd26fc247adbce4a52e",
+ trailers: true,
commit: &gitalypb.GitCommit{
Id: "5937ac0a7beb003549fc5fd26fc247adbce4a52e",
Subject: []byte("Add submodule from gitlab.com"),
@@ -133,6 +160,7 @@ func TestFindCommitsFields(t *testing.T) {
request := &gitalypb.FindCommitsRequest{
Repository: testRepo,
Revision: []byte(tc.id),
+ Trailers: tc.trailers,
Limit: 1,
}
diff --git a/proto/commit.proto b/proto/commit.proto
index 4f7965dcd..bc52ab834 100644
--- a/proto/commit.proto
+++ b/proto/commit.proto
@@ -261,6 +261,7 @@ message ListFilesResponse {
message FindCommitRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
+ bool trailers = 3;
}
message FindCommitResponse {
@@ -333,6 +334,7 @@ message FindCommitsRequest {
}
Order order = 14;
GlobalOptions global_options = 15;
+ bool trailers = 16;
}
// A single 'page' of the result set
diff --git a/proto/go/gitalypb/commit.pb.go b/proto/go/gitalypb/commit.pb.go
index 4b7f5f70c..84fd6b950 100644
--- a/proto/go/gitalypb/commit.pb.go
+++ b/proto/go/gitalypb/commit.pb.go
@@ -1120,6 +1120,7 @@ func (m *ListFilesResponse) GetPaths() [][]byte {
type FindCommitRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
Revision []byte `protobuf:"bytes,2,opt,name=revision,proto3" json:"revision,omitempty"`
+ Trailers bool `protobuf:"varint,3,opt,name=trailers,proto3" json:"trailers,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1164,6 +1165,13 @@ func (m *FindCommitRequest) GetRevision() []byte {
return nil
}
+func (m *FindCommitRequest) GetTrailers() bool {
+ if m != nil {
+ return m.Trailers
+ }
+ return false
+}
+
type FindCommitResponse struct {
// commit is nil when the commit was not found
Commit *GitCommit `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
@@ -1556,6 +1564,7 @@ type FindCommitsRequest struct {
Author []byte `protobuf:"bytes,13,opt,name=author,proto3" json:"author,omitempty"`
Order FindCommitsRequest_Order `protobuf:"varint,14,opt,name=order,proto3,enum=gitaly.FindCommitsRequest_Order" json:"order,omitempty"`
GlobalOptions *GlobalOptions `protobuf:"bytes,15,opt,name=global_options,json=globalOptions,proto3" json:"global_options,omitempty"`
+ Trailers bool `protobuf:"varint,16,opt,name=trailers,proto3" json:"trailers,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1691,6 +1700,13 @@ func (m *FindCommitsRequest) GetGlobalOptions() *GlobalOptions {
return nil
}
+func (m *FindCommitsRequest) GetTrailers() bool {
+ if m != nil {
+ return m.Trailers
+ }
+ return false
+}
+
// A single 'page' of the result set
type FindCommitsResponse struct {
Commits []*GitCommit `protobuf:"bytes,1,rep,name=commits,proto3" json:"commits,omitempty"`
@@ -2837,146 +2853,148 @@ func init() {
func init() { proto.RegisterFile("commit.proto", fileDescriptor_db7163399a465f48) }
var fileDescriptor_db7163399a465f48 = []byte{
- // 2223 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5a, 0xcb, 0x6f, 0x1b, 0xc7,
- 0x19, 0xcf, 0xf2, 0xcd, 0x8f, 0xb4, 0x44, 0x8d, 0x25, 0x9b, 0x5a, 0x49, 0x96, 0xb2, 0xb6, 0x53,
- 0x19, 0x49, 0x28, 0x55, 0x6d, 0x83, 0x14, 0x28, 0x50, 0x98, 0x89, 0x24, 0x48, 0xb5, 0x45, 0x75,
- 0x25, 0x20, 0x48, 0x80, 0x82, 0x5d, 0x92, 0x43, 0x72, 0xe2, 0x25, 0x97, 0xde, 0x1d, 0xca, 0x62,
- 0x7a, 0x68, 0x2f, 0x3d, 0xf7, 0xd8, 0xde, 0x7a, 0xe9, 0xad, 0xe8, 0x1f, 0xd0, 0x7f, 0xa0, 0xc7,
- 0xa2, 0xe8, 0xa5, 0xf7, 0xde, 0x7b, 0xec, 0xc5, 0xa7, 0x60, 0x1e, 0xfb, 0xde, 0xd5, 0xc3, 0x92,
- 0x7c, 0x11, 0x76, 0xbe, 0x79, 0x7c, 0x8f, 0xf9, 0xe6, 0x37, 0xbf, 0xf9, 0x28, 0xa8, 0x76, 0xad,
- 0xd1, 0x88, 0xd0, 0xc6, 0xc4, 0xb6, 0xa8, 0x85, 0x0a, 0x03, 0x42, 0x0d, 0x73, 0xa6, 0x82, 0x49,
- 0xc6, 0x52, 0xa6, 0x56, 0x9d, 0xa1, 0x61, 0xe3, 0x9e, 0x6c, 0xad, 0x0f, 0x2c, 0x6b, 0x60, 0xe2,
- 0x2d, 0xde, 0xea, 0x4c, 0xfb, 0x5b, 0x94, 0x8c, 0xb0, 0x43, 0x8d, 0xd1, 0x44, 0x0c, 0xd0, 0xbe,
- 0x05, 0xf4, 0x05, 0x5f, 0xf2, 0x84, 0x1a, 0xd4, 0xd1, 0xf1, 0xeb, 0x29, 0x76, 0x28, 0xfa, 0x1c,
- 0xc0, 0xc6, 0x13, 0xcb, 0x21, 0xd4, 0xb2, 0x67, 0x75, 0x65, 0x43, 0xd9, 0xac, 0xec, 0xa0, 0x86,
- 0xd0, 0xd6, 0xd0, 0xbd, 0x9e, 0x66, 0xee, 0x4f, 0xff, 0xf8, 0x44, 0xd1, 0x03, 0x63, 0x91, 0x0a,
- 0x25, 0x1b, 0x9f, 0x11, 0x87, 0x58, 0xe3, 0x7a, 0x66, 0x43, 0xd9, 0xac, 0xea, 0x5e, 0x5b, 0xeb,
- 0xc2, 0xfd, 0x90, 0x2e, 0x67, 0x62, 0x8d, 0x1d, 0x8c, 0x6a, 0x90, 0xb5, 0x48, 0x8f, 0x6b, 0x29,
- 0xeb, 0xec, 0x13, 0xad, 0x42, 0xd9, 0xe8, 0xf5, 0x08, 0x25, 0xd6, 0xd8, 0xe1, 0xab, 0xe4, 0x75,
- 0x5f, 0xc0, 0x7a, 0x7b, 0xd8, 0xc4, 0xa2, 0x37, 0x2b, 0x7a, 0x3d, 0x81, 0xf6, 0x07, 0x05, 0x1e,
- 0x0a, 0x2d, 0x07, 0xce, 0xf3, 0x71, 0x17, 0x3b, 0xd4, 0xb2, 0x6f, 0xee, 0xd6, 0x3a, 0x54, 0x0c,
- 0xb9, 0x58, 0x9b, 0xf4, 0xb8, 0x4d, 0x65, 0x1d, 0x5c, 0xd1, 0x41, 0x0f, 0x2d, 0x43, 0xa9, 0x3b,
- 0x24, 0x66, 0x8f, 0xf5, 0x66, 0x79, 0x6f, 0x91, 0xb7, 0x0f, 0x7a, 0xda, 0x36, 0xd4, 0xe3, 0x06,
- 0x49, 0xdf, 0x17, 0x21, 0x7f, 0x66, 0x98, 0x53, 0xcc, 0x8d, 0x29, 0xe9, 0xa2, 0xa1, 0xfd, 0x4d,
- 0x81, 0xda, 0xa9, 0x8d, 0xf1, 0xee, 0x98, 0xda, 0xb3, 0x3b, 0xdd, 0x13, 0x84, 0x20, 0x37, 0x31,
- 0xe8, 0x90, 0xdb, 0x5c, 0xd5, 0xf9, 0x37, 0x33, 0xca, 0x24, 0x23, 0x42, 0xeb, 0xb9, 0x0d, 0x65,
- 0x33, 0xab, 0x8b, 0x06, 0xf3, 0x70, 0x64, 0x9c, 0xb7, 0x1d, 0xf2, 0x1d, 0xae, 0xe7, 0x79, 0x47,
- 0x71, 0x64, 0x9c, 0x9f, 0x90, 0xef, 0xb0, 0xf6, 0x6f, 0x05, 0x16, 0x02, 0xf6, 0x4a, 0xdf, 0x3e,
- 0x87, 0x1c, 0x9d, 0x4d, 0x84, 0x6b, 0x73, 0x3b, 0x4f, 0x5c, 0x53, 0x63, 0x03, 0x1b, 0xad, 0xce,
- 0xb7, 0xb8, 0x4b, 0x4f, 0x67, 0x13, 0xac, 0xf3, 0x19, 0x6e, 0x46, 0x64, 0xfc, 0x8c, 0x40, 0x90,
- 0xe3, 0x8a, 0xb3, 0x5c, 0x31, 0xff, 0x66, 0xb2, 0x91, 0xd5, 0xc3, 0xdc, 0xca, 0xbc, 0xce, 0xbf,
- 0x99, 0xac, 0x67, 0x50, 0x83, 0x1b, 0x58, 0xd5, 0xf9, 0xb7, 0xf6, 0x13, 0x00, 0x5f, 0x03, 0x02,
- 0x28, 0x7c, 0xd1, 0x7a, 0xf9, 0xf2, 0xe0, 0xb4, 0xf6, 0x01, 0x2a, 0x41, 0xae, 0xf9, 0xa2, 0xd5,
- 0xac, 0x29, 0xec, 0xeb, 0x54, 0xdf, 0xdd, 0xad, 0x65, 0x50, 0x11, 0xb2, 0xa7, 0xcf, 0xf7, 0x6b,
- 0x59, 0x6d, 0x0a, 0x4b, 0x62, 0xdb, 0x9c, 0x26, 0xa6, 0x6f, 0x30, 0x1e, 0xdf, 0x7c, 0x23, 0x10,
- 0xe4, 0xfa, 0xb6, 0x35, 0x92, 0x9b, 0xc0, 0xbf, 0xd1, 0x1c, 0x64, 0xa8, 0x25, 0xc3, 0x9f, 0xa1,
- 0x96, 0xb6, 0x0b, 0x0f, 0xa2, 0x6a, 0x65, 0x3c, 0x3f, 0x86, 0xa2, 0x38, 0xfd, 0x4e, 0x5d, 0xd9,
- 0xc8, 0x6e, 0x56, 0x76, 0x16, 0x5c, 0xa5, 0xfb, 0x84, 0x8a, 0x39, 0xba, 0x3b, 0x42, 0xfb, 0x7f,
- 0x86, 0x1d, 0xb6, 0xe9, 0x58, 0x76, 0xdc, 0xed, 0xc9, 0x46, 0xdb, 0x90, 0x37, 0xfa, 0x14, 0xdb,
- 0xdc, 0x8f, 0xca, 0x8e, 0xda, 0x10, 0xb0, 0xd3, 0x70, 0x61, 0xa7, 0x71, 0xea, 0xc2, 0x8e, 0x2e,
- 0x06, 0xa2, 0x1d, 0x28, 0x74, 0x70, 0xdf, 0xb2, 0xc5, 0xf6, 0x5d, 0x3c, 0x45, 0x8e, 0xf4, 0x72,
- 0x35, 0x1f, 0xc8, 0xd5, 0x15, 0x28, 0xb3, 0xac, 0xec, 0x32, 0x57, 0xeb, 0x05, 0x9e, 0x09, 0x2c,
- 0x4d, 0xb9, 0xeb, 0x2c, 0x8f, 0x0c, 0xd3, 0xac, 0x17, 0xf9, 0xd9, 0x62, 0x9f, 0xe8, 0x43, 0xa8,
- 0xf6, 0x89, 0xed, 0xd0, 0xf6, 0xc4, 0xb0, 0xf1, 0x98, 0xd6, 0x4b, 0xbc, 0xab, 0xc2, 0x65, 0xc7,
- 0x5c, 0x84, 0x7e, 0x06, 0x73, 0x03, 0xd3, 0xea, 0x18, 0x66, 0xdb, 0x9a, 0x08, 0x8c, 0x29, 0x73,
- 0x0b, 0x97, 0xbc, 0x68, 0xf3, 0xde, 0x96, 0xe8, 0xd4, 0xef, 0x0d, 0x82, 0x4d, 0xed, 0x13, 0x58,
- 0x0c, 0x87, 0xdd, 0x3f, 0xe8, 0xc2, 0x46, 0x85, 0xdb, 0x28, 0x1a, 0xda, 0x5f, 0x15, 0x58, 0xe5,
- 0xc3, 0xbf, 0x24, 0x67, 0xd8, 0x1e, 0x90, 0xf1, 0xe0, 0xd6, 0xb6, 0xeb, 0x0a, 0xb9, 0x16, 0x0e,
- 0x5e, 0x31, 0x1c, 0xbc, 0xc3, 0x5c, 0x29, 0x57, 0xcb, 0x1f, 0xe6, 0x4a, 0xf9, 0x5a, 0xe1, 0x30,
- 0x57, 0x2a, 0xd4, 0x8a, 0x5a, 0x1b, 0xd6, 0x52, 0x8c, 0x95, 0x4e, 0xae, 0x01, 0x98, 0xb8, 0x4f,
- 0xdb, 0x41, 0x4f, 0xcb, 0x4c, 0x22, 0xb6, 0x63, 0x1d, 0x2a, 0x36, 0x19, 0x0c, 0xdd, 0x7e, 0x01,
- 0xec, 0xc0, 0x45, 0x7c, 0x80, 0xf6, 0x56, 0x81, 0xb2, 0x07, 0x0f, 0x09, 0xf7, 0xc2, 0x32, 0x94,
- 0x6c, 0xcb, 0xa2, 0x6d, 0x1f, 0x1c, 0x8a, 0xac, 0xdd, 0x12, 0x00, 0x11, 0xc3, 0xb1, 0x2d, 0x09,
- 0x40, 0x39, 0x0e, 0x40, 0x2b, 0x31, 0x00, 0x6a, 0xf0, 0xbf, 0x01, 0xdc, 0x71, 0x11, 0x25, 0x1f,
- 0x40, 0x94, 0x35, 0x00, 0x71, 0xa6, 0xb8, 0xd6, 0x02, 0xd7, 0x5a, 0x16, 0x12, 0xa6, 0x77, 0x05,
- 0xca, 0x7d, 0xd3, 0x60, 0xf9, 0x44, 0x87, 0x3c, 0x84, 0x55, 0xbd, 0xc4, 0x04, 0xc7, 0x06, 0x1d,
- 0x6a, 0x1f, 0x43, 0xd9, 0x53, 0xe1, 0x81, 0xcd, 0x07, 0x1e, 0xd8, 0x28, 0x01, 0x30, 0xca, 0x6a,
- 0x7f, 0x56, 0x60, 0x69, 0x1f, 0x53, 0xd7, 0x3a, 0x82, 0x9d, 0xf7, 0x8f, 0xfc, 0xab, 0x50, 0xb6,
- 0x71, 0x77, 0x6a, 0x3b, 0xe4, 0x4c, 0x84, 0xad, 0xa4, 0xfb, 0x02, 0x06, 0x4d, 0x51, 0x03, 0x7d,
- 0x68, 0xc2, 0x42, 0x14, 0x85, 0x26, 0x1f, 0xed, 0xdd, 0x11, 0xda, 0x10, 0x6a, 0x2f, 0x88, 0x43,
- 0xf7, 0x88, 0x79, 0xc7, 0x2e, 0x6a, 0xcf, 0x60, 0x21, 0xa0, 0xc9, 0x3f, 0x89, 0xcc, 0x57, 0x61,
- 0x69, 0x55, 0x17, 0x0d, 0x8d, 0xc0, 0xc2, 0x1e, 0x19, 0xf7, 0x24, 0x8c, 0xde, 0xa9, 0x55, 0x3f,
- 0x07, 0x14, 0x54, 0x25, 0xcd, 0x7a, 0x06, 0x05, 0x91, 0x55, 0x52, 0x4f, 0x02, 0xb8, 0xcb, 0x01,
- 0x1a, 0x86, 0x87, 0xcc, 0x2d, 0xf7, 0x9a, 0x98, 0xb5, 0x48, 0xef, 0xe6, 0x16, 0x7b, 0x77, 0x6e,
- 0x56, 0x9e, 0x36, 0x6d, 0x1f, 0xea, 0x71, 0x35, 0xef, 0x72, 0x17, 0x51, 0x58, 0x09, 0x2d, 0xa4,
- 0xe3, 0xfe, 0x91, 0x31, 0xc2, 0x37, 0xb7, 0x79, 0x85, 0xa5, 0x6b, 0xbf, 0x3d, 0x36, 0x46, 0xd8,
- 0xe1, 0x96, 0xf3, 0x30, 0xf3, 0xc5, 0x1d, 0xed, 0x9f, 0x0a, 0xac, 0x26, 0xab, 0x95, 0x3e, 0xe8,
- 0x50, 0x91, 0x27, 0xdb, 0xc6, 0x7d, 0x31, 0xbf, 0xb2, 0xf3, 0x43, 0x57, 0xf1, 0x45, 0x53, 0x1b,
- 0xa2, 0x63, 0x8f, 0x11, 0xb9, 0xbe, 0x2e, 0xf1, 0x41, 0xc7, 0x7d, 0x47, 0x3d, 0x85, 0x6a, 0xb0,
- 0xef, 0x1a, 0xbb, 0xca, 0xc1, 0x4d, 0x3a, 0x23, 0x53, 0xa6, 0x28, 0x7d, 0x39, 0xcc, 0x95, 0x94,
- 0x5a, 0x46, 0xfb, 0x5d, 0x06, 0x96, 0x58, 0xe2, 0x3c, 0x37, 0xcd, 0xf7, 0x72, 0xa9, 0x87, 0x6e,
- 0x87, 0x6c, 0xe4, 0x6a, 0x65, 0x84, 0xec, 0x15, 0x99, 0xb8, 0xe4, 0x8b, 0x7d, 0xa3, 0x9f, 0x42,
- 0xde, 0xb2, 0x7b, 0xd8, 0xe6, 0xf8, 0x39, 0xb7, 0xf3, 0xd8, 0xb5, 0x20, 0xd1, 0xe8, 0x46, 0x8b,
- 0x0d, 0xd5, 0xc5, 0x0c, 0xed, 0x29, 0xe4, 0x79, 0x9b, 0x61, 0xe3, 0x51, 0xeb, 0x68, 0x57, 0xa2,
- 0x64, 0xeb, 0xb8, 0x25, 0xc8, 0xd9, 0x97, 0xcf, 0x4f, 0x77, 0x6b, 0x19, 0x86, 0x40, 0xd1, 0xc5,
- 0xde, 0x25, 0x21, 0xff, 0x95, 0x0b, 0x1e, 0xc1, 0x3b, 0x0e, 0xa3, 0xc7, 0xa6, 0x45, 0x08, 0x25,
- 0x9b, 0x7e, 0x00, 0x05, 0xab, 0xdf, 0x77, 0x30, 0x95, 0x11, 0x94, 0x2d, 0x1f, 0x9d, 0xf2, 0x01,
- 0x74, 0x62, 0xa3, 0xfb, 0x96, 0x69, 0x5a, 0x6f, 0xf8, 0x05, 0x54, 0xd2, 0x65, 0x8b, 0xdd, 0xa8,
- 0x2c, 0xf2, 0xed, 0x11, 0xb6, 0x07, 0xd8, 0x91, 0x44, 0x07, 0x98, 0xe8, 0x25, 0x97, 0x30, 0xbe,
- 0xd3, 0x23, 0x8e, 0xd1, 0x31, 0x71, 0xfb, 0x8d, 0x61, 0xbe, 0x72, 0xf9, 0x8e, 0x94, 0x7d, 0x65,
- 0x98, 0xaf, 0x7c, 0xee, 0x56, 0xbe, 0x3e, 0x77, 0x83, 0x2b, 0x73, 0x37, 0x49, 0xc5, 0x2a, 0xe9,
- 0x54, 0xac, 0x1a, 0xa7, 0x62, 0x0f, 0xa0, 0x60, 0x4c, 0xe9, 0xd0, 0xb2, 0xeb, 0xf7, 0x78, 0x50,
- 0x65, 0x0b, 0x7d, 0xe6, 0x26, 0xda, 0x1c, 0x4f, 0xb4, 0x8d, 0x60, 0xa2, 0x5d, 0x90, 0x65, 0x09,
- 0xd4, 0x6e, 0xfe, 0x1a, 0xd4, 0x6e, 0xe5, 0x82, 0x1c, 0xd5, 0x9a, 0x70, 0x3f, 0xa4, 0xfd, 0x5d,
- 0xd2, 0x72, 0xec, 0x52, 0xff, 0x17, 0xc6, 0x78, 0x30, 0x35, 0x06, 0x77, 0x7d, 0x3d, 0xfe, 0xd7,
- 0x7b, 0x2a, 0x07, 0x14, 0x4a, 0xc3, 0xf7, 0xa0, 0x6c, 0xba, 0x42, 0x69, 0xfa, 0xa6, 0xab, 0x30,
- 0x65, 0x4e, 0xc3, 0x95, 0xe8, 0xfe, 0x54, 0xf5, 0xb7, 0x50, 0x72, 0xc5, 0x0c, 0x33, 0x38, 0xba,
- 0x09, 0x46, 0xc7, 0xbf, 0x59, 0xbe, 0xf3, 0x82, 0x05, 0x37, 0x2e, 0xa3, 0x8b, 0x86, 0x60, 0xcb,
- 0xa6, 0x65, 0xcb, 0xa7, 0xb4, 0x68, 0x30, 0x2a, 0xd6, 0x27, 0x26, 0x96, 0x88, 0xc4, 0xce, 0xcd,
- 0x3d, 0xbd, 0xcc, 0x24, 0x02, 0x92, 0x16, 0x21, 0xdf, 0x99, 0x51, 0xec, 0x70, 0xf8, 0xc9, 0xe9,
- 0xa2, 0xa1, 0xfd, 0x06, 0xe6, 0x75, 0xe3, 0x4d, 0xd3, 0xbc, 0x95, 0x0b, 0xe7, 0x9a, 0x7c, 0x4a,
- 0xfb, 0x08, 0x6a, 0xbe, 0x72, 0x19, 0x59, 0xf7, 0x89, 0xaa, 0x04, 0x9e, 0xa8, 0xff, 0x53, 0xa0,
- 0xfe, 0xc2, 0x70, 0x2f, 0x9c, 0x3d, 0xcb, 0x66, 0xf4, 0xf1, 0xfd, 0xd3, 0xbf, 0x67, 0x50, 0x33,
- 0x09, 0xc5, 0xb6, 0x61, 0x72, 0x3e, 0xeb, 0x4c, 0x70, 0x57, 0xb2, 0xc0, 0x79, 0x29, 0x3f, 0x96,
- 0xe2, 0x84, 0xa3, 0x94, 0xbf, 0xc6, 0x51, 0xda, 0x83, 0xe5, 0x04, 0x77, 0xaf, 0xcf, 0x84, 0xfe,
- 0x92, 0x81, 0x35, 0x76, 0x51, 0xfb, 0x8b, 0x39, 0x7b, 0x96, 0xcd, 0x38, 0xe7, 0xed, 0x07, 0xaf,
- 0x7c, 0x9d, 0xaa, 0x49, 0x02, 0xce, 0xe7, 0x43, 0x38, 0xff, 0x69, 0x42, 0xa8, 0x39, 0xb6, 0x37,
- 0x33, 0x75, 0xe5, 0x2a, 0xe1, 0x2e, 0x5e, 0x23, 0xdc, 0xff, 0x51, 0xe0, 0x51, 0x5a, 0x98, 0x64,
- 0xd0, 0x8f, 0xa2, 0x40, 0xf5, 0xe3, 0x20, 0x11, 0x4a, 0x9f, 0xe8, 0x53, 0x21, 0x2e, 0x75, 0x17,
- 0x51, 0x31, 0xdc, 0x0b, 0xf5, 0x04, 0x76, 0x35, 0x73, 0x19, 0x13, 0x5a, 0x03, 0x60, 0x31, 0x69,
- 0x8b, 0xd3, 0x9c, 0xe3, 0x31, 0x2e, 0x33, 0x49, 0x93, 0x09, 0x04, 0x1b, 0x3a, 0xcc, 0x95, 0xb2,
- 0xb5, 0x9c, 0xf6, 0xfb, 0x8c, 0x0b, 0x61, 0x4e, 0x73, 0xf6, 0x12, 0x3b, 0x0e, 0x83, 0x9f, 0x3b,
- 0x3d, 0x37, 0xfe, 0x86, 0x66, 0xa3, 0x17, 0x77, 0xc2, 0xf6, 0x27, 0x95, 0x2c, 0x16, 0x21, 0xff,
- 0x7a, 0x8a, 0xed, 0x99, 0x7c, 0x4c, 0x8a, 0xc6, 0x0d, 0x77, 0x78, 0xdf, 0xad, 0x31, 0x06, 0xc3,
- 0xf0, 0x2e, 0x77, 0x90, 0x05, 0xeb, 0x7b, 0xc4, 0xa4, 0xd8, 0x3e, 0x19, 0x1a, 0xce, 0x57, 0x84,
- 0x0e, 0x4f, 0xc8, 0x60, 0x6c, 0xd0, 0xa9, 0x8d, 0x6f, 0xa7, 0x26, 0xe1, 0x0c, 0x0d, 0x97, 0xaa,
- 0xf3, 0x6f, 0xed, 0x33, 0xd8, 0x48, 0x57, 0xe8, 0x43, 0x26, 0x9f, 0xa7, 0x04, 0xe6, 0x9d, 0xc1,
- 0xda, 0xee, 0x39, 0xb5, 0x8d, 0xae, 0x74, 0xc1, 0x9b, 0x76, 0x2b, 0xcf, 0x0a, 0xf9, 0x30, 0xf0,
- 0xea, 0x0c, 0x25, 0x21, 0x38, 0xe8, 0x69, 0x6d, 0x78, 0x94, 0xa6, 0x57, 0x5a, 0xbb, 0x0a, 0x65,
- 0xc7, 0x15, 0x4a, 0x94, 0xf7, 0x05, 0x9c, 0xb2, 0x91, 0xc1, 0x18, 0xf7, 0xda, 0x14, 0x9f, 0x53,
- 0x99, 0x5e, 0x20, 0x44, 0xa7, 0xf8, 0x9c, 0x6a, 0x53, 0x50, 0xf7, 0x71, 0x74, 0xf1, 0x5b, 0x08,
- 0xbe, 0x5f, 0xc8, 0x20, 0x3d, 0x47, 0xbe, 0xf3, 0xca, 0xae, 0x5b, 0x8e, 0x36, 0x83, 0x95, 0x44,
- 0xb5, 0xd2, 0xa9, 0x50, 0x4c, 0x94, 0x70, 0x4c, 0xc2, 0x1e, 0x67, 0x2e, 0xf1, 0x38, 0x1b, 0xf3,
- 0xd8, 0x81, 0xba, 0xa7, 0x5a, 0x26, 0xef, 0xdd, 0xfb, 0xab, 0xc3, 0x72, 0x82, 0xd2, 0xab, 0x78,
- 0x5b, 0x87, 0xe2, 0x48, 0x4c, 0x70, 0xdf, 0x69, 0xb2, 0xb9, 0xf3, 0xf7, 0x79, 0x17, 0xf5, 0x4e,
- 0xb0, 0x7d, 0x46, 0xba, 0x18, 0xfd, 0x0a, 0x6a, 0xd1, 0xda, 0x3f, 0x5a, 0x0f, 0xf3, 0xa8, 0xd8,
- 0xcf, 0x14, 0xea, 0x46, 0xfa, 0x00, 0x61, 0x9f, 0x56, 0x78, 0xfb, 0xc7, 0xcd, 0x4c, 0x29, 0x83,
- 0x0e, 0x83, 0xf5, 0xb2, 0x7a, 0x42, 0x85, 0x5d, 0x2c, 0xb8, 0x9c, 0x5a, 0x7b, 0x77, 0x57, 0xda,
- 0x56, 0xd0, 0xd7, 0x30, 0x17, 0x2e, 0x3c, 0xa3, 0xb5, 0xb0, 0x1d, 0x91, 0x3a, 0xb8, 0xfa, 0x28,
- 0xad, 0x3b, 0xb6, 0xf4, 0x2f, 0xd9, 0xab, 0xd8, 0x2f, 0x8a, 0xa2, 0x15, 0x7f, 0x66, 0xac, 0x42,
- 0xad, 0xae, 0x26, 0x77, 0x46, 0x3c, 0x37, 0x61, 0x29, 0xb1, 0x16, 0x89, 0x9e, 0x84, 0xa6, 0xa7,
- 0xd4, 0x55, 0xd5, 0xa7, 0x97, 0x8c, 0x8a, 0x68, 0xfb, 0x1a, 0xe6, 0xc2, 0x95, 0x2f, 0x3f, 0x36,
- 0x89, 0x25, 0x3b, 0x3f, 0x36, 0xc9, 0x05, 0xb3, 0x40, 0x6c, 0x0e, 0xa1, 0xec, 0xd5, 0xa8, 0xfc,
- 0x2d, 0x8c, 0x16, 0xc8, 0xfc, 0x2d, 0x8c, 0x15, 0xb4, 0x02, 0x6b, 0xfd, 0x02, 0xc0, 0x7f, 0x84,
- 0xa0, 0xe5, 0xf8, 0xb3, 0xc8, 0x5d, 0x4d, 0x4d, 0xea, 0x8a, 0xf8, 0x7c, 0x04, 0x95, 0xc0, 0xaf,
- 0x75, 0x48, 0x0d, 0xef, 0x76, 0xf0, 0xe7, 0x42, 0x75, 0x25, 0xb1, 0x2f, 0x1e, 0xc3, 0xf0, 0xdb,
- 0xdd, 0x8f, 0x61, 0x62, 0x81, 0xc0, 0x8f, 0x61, 0xf2, 0x93, 0x3f, 0xe0, 0xf7, 0x31, 0x54, 0x02,
- 0x8f, 0x2f, 0xa4, 0xa6, 0xbf, 0x07, 0x7d, 0x53, 0x13, 0x5e, 0x6b, 0x81, 0x15, 0xbf, 0x81, 0xf9,
- 0xc8, 0x2b, 0x07, 0x3d, 0x4a, 0x7d, 0xfe, 0x88, 0x95, 0xd7, 0x2f, 0x79, 0x1e, 0x79, 0x81, 0xd8,
- 0x87, 0x92, 0xfb, 0x28, 0x40, 0x0f, 0x3d, 0x28, 0x0b, 0xbf, 0x51, 0xd4, 0x7a, 0xbc, 0x23, 0x66,
- 0xe4, 0xaf, 0x61, 0x21, 0xc6, 0xa2, 0x91, 0x07, 0x1e, 0x69, 0xef, 0x09, 0xf5, 0xc3, 0x0b, 0x46,
- 0x44, 0x4c, 0x7d, 0x0d, 0x0f, 0x92, 0xe9, 0x1f, 0x7a, 0x7a, 0x19, 0x3d, 0x14, 0xba, 0x3e, 0xba,
- 0x1a, 0x8b, 0x0c, 0x38, 0xd5, 0x76, 0x11, 0xd3, 0x67, 0x32, 0x51, 0xc4, 0x8c, 0x51, 0xbd, 0x28,
- 0x62, 0xc6, 0x49, 0x50, 0x58, 0x41, 0xb4, 0xac, 0xe9, 0x2b, 0x48, 0xa9, 0xab, 0xfa, 0x0a, 0xd2,
- 0x2a, 0xa2, 0x01, 0x05, 0xaf, 0x60, 0x31, 0xa9, 0x78, 0x88, 0x1e, 0x5f, 0x5c, 0x5a, 0x14, 0x8a,
- 0x9e, 0x5c, 0xa5, 0xfe, 0x18, 0x50, 0x36, 0x83, 0x7a, 0x1a, 0x7d, 0x42, 0x3f, 0xf0, 0x73, 0xfd,
- 0x42, 0x46, 0xa7, 0x6e, 0x5e, 0x3e, 0x30, 0xac, 0x78, 0x53, 0xd9, 0x56, 0xd0, 0x10, 0xee, 0x27,
- 0x30, 0x06, 0xa4, 0x05, 0xa0, 0x2f, 0x85, 0xc5, 0xa8, 0x8f, 0x2f, 0x1c, 0x13, 0x73, 0xb2, 0x03,
- 0x0b, 0xb1, 0xbb, 0xda, 0x4f, 0xf4, 0x34, 0xee, 0xe0, 0x27, 0x7a, 0xea, 0x45, 0xef, 0xeb, 0x68,
- 0x6e, 0x7f, 0xc3, 0x46, 0x9b, 0x46, 0xa7, 0xd1, 0xb5, 0x46, 0x5b, 0xe2, 0xf3, 0x53, 0xcb, 0x1e,
- 0x6c, 0x89, 0x35, 0xc4, 0x7f, 0x50, 0x6c, 0x0d, 0x2c, 0xd9, 0x9e, 0x74, 0x3a, 0x05, 0x2e, 0xfa,
- 0xd1, 0xf7, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd7, 0x11, 0xf4, 0xe4, 0x94, 0x21, 0x00, 0x00,
+ // 2246 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5a, 0xbb, 0x6f, 0x1b, 0xc9,
+ 0x19, 0xbf, 0xe5, 0x73, 0xf7, 0x23, 0x2d, 0x51, 0x63, 0xc9, 0xa6, 0x56, 0x92, 0xa5, 0x5b, 0xdb,
+ 0x17, 0x19, 0x77, 0x47, 0x29, 0x4a, 0x72, 0xb8, 0x00, 0x01, 0x02, 0xf3, 0x4e, 0x12, 0xa4, 0xd8,
+ 0xa2, 0xb2, 0x12, 0x70, 0xb8, 0x03, 0x02, 0x66, 0x49, 0x0e, 0xc9, 0x3d, 0x2f, 0xb9, 0xf4, 0xee,
+ 0x50, 0x16, 0x2f, 0x45, 0xd2, 0x5c, 0x9d, 0x32, 0xe9, 0xd2, 0xa4, 0x0b, 0xf2, 0x07, 0xe4, 0x1f,
+ 0x48, 0x99, 0x22, 0x4d, 0xfa, 0xd4, 0x49, 0x99, 0xc6, 0x55, 0x30, 0x8f, 0x7d, 0xef, 0xea, 0x61,
+ 0x49, 0x6e, 0x84, 0x9d, 0x6f, 0x1e, 0xdf, 0x63, 0xbe, 0xf9, 0xcd, 0x6f, 0x3e, 0x0a, 0xaa, 0x5d,
+ 0x7b, 0x34, 0x32, 0x49, 0x63, 0xe2, 0xd8, 0xc4, 0x46, 0xa5, 0x81, 0x49, 0x0c, 0x6b, 0xa6, 0x82,
+ 0x65, 0x8e, 0x85, 0x4c, 0xad, 0xba, 0x43, 0xc3, 0xc1, 0x3d, 0xd1, 0x5a, 0x1f, 0xd8, 0xf6, 0xc0,
+ 0xc2, 0x5b, 0xac, 0xd5, 0x99, 0xf6, 0xb7, 0x88, 0x39, 0xc2, 0x2e, 0x31, 0x46, 0x13, 0x3e, 0x40,
+ 0xfb, 0x16, 0xd0, 0x17, 0x6c, 0xc9, 0x13, 0x62, 0x10, 0x57, 0xc7, 0xaf, 0xa7, 0xd8, 0x25, 0xe8,
+ 0x73, 0x00, 0x07, 0x4f, 0x6c, 0xd7, 0x24, 0xb6, 0x33, 0xab, 0x4b, 0x1b, 0xd2, 0x66, 0x65, 0x07,
+ 0x35, 0xb8, 0xb6, 0x86, 0xee, 0xf7, 0x34, 0x0b, 0x7f, 0xfc, 0xfb, 0x27, 0x92, 0x1e, 0x1a, 0x8b,
+ 0x54, 0x90, 0x1d, 0x7c, 0x66, 0xba, 0xa6, 0x3d, 0xae, 0xe7, 0x36, 0xa4, 0xcd, 0xaa, 0xee, 0xb7,
+ 0xb5, 0x2e, 0xdc, 0x8f, 0xe8, 0x72, 0x27, 0xf6, 0xd8, 0xc5, 0xa8, 0x06, 0x79, 0xdb, 0xec, 0x31,
+ 0x2d, 0x8a, 0x4e, 0x3f, 0xd1, 0x2a, 0x28, 0x46, 0xaf, 0x67, 0x12, 0xd3, 0x1e, 0xbb, 0x6c, 0x95,
+ 0xa2, 0x1e, 0x08, 0x68, 0x6f, 0x0f, 0x5b, 0x98, 0xf7, 0xe6, 0x79, 0xaf, 0x2f, 0xd0, 0x7e, 0x2f,
+ 0xc1, 0x43, 0xae, 0xe5, 0xc0, 0x7d, 0x3e, 0xee, 0x62, 0x97, 0xd8, 0xce, 0xcd, 0xdd, 0x5a, 0x87,
+ 0x8a, 0x21, 0x16, 0x6b, 0x9b, 0x3d, 0x66, 0x93, 0xa2, 0x83, 0x27, 0x3a, 0xe8, 0xa1, 0x65, 0x90,
+ 0xbb, 0x43, 0xd3, 0xea, 0xd1, 0xde, 0x3c, 0xeb, 0x2d, 0xb3, 0xf6, 0x41, 0x4f, 0xdb, 0x86, 0x7a,
+ 0xd2, 0x20, 0xe1, 0xfb, 0x22, 0x14, 0xcf, 0x0c, 0x6b, 0x8a, 0x99, 0x31, 0xb2, 0xce, 0x1b, 0xda,
+ 0x5f, 0x25, 0xa8, 0x9d, 0x3a, 0x18, 0xef, 0x8e, 0x89, 0x33, 0xbb, 0xd3, 0x3d, 0x41, 0x08, 0x0a,
+ 0x13, 0x83, 0x0c, 0x99, 0xcd, 0x55, 0x9d, 0x7d, 0x53, 0xa3, 0x2c, 0x73, 0x64, 0x92, 0x7a, 0x61,
+ 0x43, 0xda, 0xcc, 0xeb, 0xbc, 0x41, 0x3d, 0x1c, 0x19, 0xe7, 0x6d, 0xd7, 0xfc, 0x0e, 0xd7, 0x8b,
+ 0xac, 0xa3, 0x3c, 0x32, 0xce, 0x4f, 0xcc, 0xef, 0xb0, 0xf6, 0x4f, 0x09, 0x16, 0x42, 0xf6, 0x0a,
+ 0xdf, 0x3e, 0x87, 0x02, 0x99, 0x4d, 0xb8, 0x6b, 0x73, 0x3b, 0x4f, 0x3c, 0x53, 0x13, 0x03, 0x1b,
+ 0xad, 0xce, 0xb7, 0xb8, 0x4b, 0x4e, 0x67, 0x13, 0xac, 0xb3, 0x19, 0x5e, 0x46, 0xe4, 0x82, 0x8c,
+ 0x40, 0x50, 0x60, 0x8a, 0xf3, 0x4c, 0x31, 0xfb, 0xa6, 0xb2, 0x91, 0xdd, 0xc3, 0xcc, 0xca, 0xa2,
+ 0xce, 0xbe, 0xa9, 0xac, 0x67, 0x10, 0x83, 0x19, 0x58, 0xd5, 0xd9, 0xb7, 0xf6, 0x13, 0x80, 0x40,
+ 0x03, 0x02, 0x28, 0x7d, 0xd1, 0x7a, 0xf9, 0xf2, 0xe0, 0xb4, 0xf6, 0x01, 0x92, 0xa1, 0xd0, 0x7c,
+ 0xd1, 0x6a, 0xd6, 0x24, 0xfa, 0x75, 0xaa, 0xef, 0xee, 0xd6, 0x72, 0xa8, 0x0c, 0xf9, 0xd3, 0xe7,
+ 0xfb, 0xb5, 0xbc, 0x36, 0x85, 0x25, 0xbe, 0x6d, 0x6e, 0x13, 0x93, 0x37, 0x18, 0x8f, 0x6f, 0xbe,
+ 0x11, 0x08, 0x0a, 0x7d, 0xc7, 0x1e, 0x89, 0x4d, 0x60, 0xdf, 0x68, 0x0e, 0x72, 0xc4, 0x16, 0xe1,
+ 0xcf, 0x11, 0x5b, 0xdb, 0x85, 0x07, 0x71, 0xb5, 0x22, 0x9e, 0x1f, 0x43, 0x99, 0x9f, 0x7e, 0xb7,
+ 0x2e, 0x6d, 0xe4, 0x37, 0x2b, 0x3b, 0x0b, 0x9e, 0xd2, 0x7d, 0x93, 0xf0, 0x39, 0xba, 0x37, 0x42,
+ 0xfb, 0x5f, 0x8e, 0x1e, 0xb6, 0xe9, 0x58, 0x74, 0xdc, 0xed, 0xc9, 0x46, 0xdb, 0x50, 0x34, 0xfa,
+ 0x04, 0x3b, 0xcc, 0x8f, 0xca, 0x8e, 0xda, 0xe0, 0xb0, 0xd3, 0xf0, 0x60, 0xa7, 0x71, 0xea, 0xc1,
+ 0x8e, 0xce, 0x07, 0xa2, 0x1d, 0x28, 0x75, 0x70, 0xdf, 0x76, 0xf8, 0xf6, 0x5d, 0x3c, 0x45, 0x8c,
+ 0xf4, 0x73, 0xb5, 0x18, 0xca, 0xd5, 0x15, 0x50, 0x68, 0x56, 0x76, 0xa9, 0xab, 0xf5, 0x12, 0xcb,
+ 0x04, 0x9a, 0xa6, 0xcc, 0x75, 0x9a, 0x47, 0x86, 0x65, 0xd5, 0xcb, 0xec, 0x6c, 0xd1, 0x4f, 0xf4,
+ 0x21, 0x54, 0xfb, 0xa6, 0xe3, 0x92, 0xf6, 0xc4, 0x70, 0xf0, 0x98, 0xd4, 0x65, 0xd6, 0x55, 0x61,
+ 0xb2, 0x63, 0x26, 0x42, 0x3f, 0x83, 0xb9, 0x81, 0x65, 0x77, 0x0c, 0xab, 0x6d, 0x4f, 0x38, 0xc6,
+ 0x28, 0xcc, 0xc2, 0x25, 0x3f, 0xda, 0xac, 0xb7, 0xc5, 0x3b, 0xf5, 0x7b, 0x83, 0x70, 0x53, 0xfb,
+ 0x04, 0x16, 0xa3, 0x61, 0x0f, 0x0e, 0x3a, 0xb7, 0x51, 0x62, 0x36, 0xf2, 0x86, 0xf6, 0x17, 0x09,
+ 0x56, 0xd9, 0xf0, 0x2f, 0xcd, 0x33, 0xec, 0x0c, 0xcc, 0xf1, 0xe0, 0xd6, 0xb6, 0xeb, 0x0a, 0xb9,
+ 0x16, 0x0d, 0x5e, 0x39, 0x1a, 0xbc, 0xc3, 0x82, 0x5c, 0xa8, 0x15, 0x0f, 0x0b, 0x72, 0xb1, 0x56,
+ 0x3a, 0x2c, 0xc8, 0xa5, 0x5a, 0x59, 0x6b, 0xc3, 0x5a, 0x86, 0xb1, 0xc2, 0xc9, 0x35, 0x00, 0x0b,
+ 0xf7, 0x49, 0x3b, 0xec, 0xa9, 0x42, 0x25, 0x7c, 0x3b, 0xd6, 0xa1, 0xe2, 0x98, 0x83, 0xa1, 0xd7,
+ 0xcf, 0x81, 0x1d, 0x98, 0x88, 0x0d, 0xd0, 0xde, 0x4a, 0xa0, 0xf8, 0xf0, 0x90, 0x72, 0x2f, 0x2c,
+ 0x83, 0xec, 0xd8, 0x36, 0x69, 0x07, 0xe0, 0x50, 0xa6, 0xed, 0x16, 0x07, 0x88, 0x04, 0x8e, 0x6d,
+ 0x09, 0x00, 0x2a, 0x30, 0x00, 0x5a, 0x49, 0x00, 0x50, 0x83, 0xfd, 0x0d, 0xe1, 0x8e, 0x87, 0x28,
+ 0xc5, 0x10, 0xa2, 0xac, 0x01, 0xf0, 0x33, 0xc5, 0xb4, 0x96, 0x98, 0x56, 0x85, 0x4b, 0xa8, 0xde,
+ 0x15, 0x50, 0xfa, 0x96, 0x41, 0xf3, 0x89, 0x0c, 0x59, 0x08, 0xab, 0xba, 0x4c, 0x05, 0xc7, 0x06,
+ 0x19, 0x6a, 0x1f, 0x83, 0xe2, 0xab, 0xf0, 0xc1, 0xe6, 0x03, 0x1f, 0x6c, 0xa4, 0x10, 0x18, 0xe5,
+ 0xb5, 0x3f, 0x49, 0xb0, 0xb4, 0x8f, 0x89, 0x67, 0x9d, 0x89, 0xdd, 0xf7, 0x8f, 0xfc, 0xab, 0xa0,
+ 0x38, 0xb8, 0x3b, 0x75, 0x5c, 0xf3, 0x8c, 0x87, 0x4d, 0xd6, 0x03, 0x01, 0x85, 0xa6, 0xb8, 0x81,
+ 0x01, 0x34, 0x61, 0x2e, 0x8a, 0x43, 0x53, 0x80, 0xf6, 0xde, 0x08, 0x6d, 0x08, 0xb5, 0x17, 0xa6,
+ 0x4b, 0xf6, 0x4c, 0xeb, 0x8e, 0x5d, 0xd4, 0x9e, 0xc1, 0x42, 0x48, 0x53, 0x70, 0x12, 0xa9, 0xaf,
+ 0xdc, 0xd2, 0xaa, 0xce, 0x1b, 0xda, 0xf7, 0x12, 0x2c, 0xec, 0x99, 0xe3, 0x9e, 0xc0, 0xd1, 0x3b,
+ 0x8d, 0xbc, 0x0a, 0x32, 0x71, 0x0c, 0xd3, 0xc2, 0x0e, 0xe7, 0x2f, 0xb2, 0xee, 0xb7, 0xb5, 0x9f,
+ 0x03, 0x0a, 0x9b, 0x21, 0x6c, 0x7e, 0x06, 0x25, 0x9e, 0x72, 0xc2, 0x86, 0x14, 0xe4, 0x17, 0x03,
+ 0x34, 0x0c, 0x0f, 0xa9, 0xcf, 0xde, 0x1d, 0x32, 0x6b, 0x99, 0xbd, 0x9b, 0x7b, 0xe3, 0x5f, 0xc8,
+ 0x79, 0x71, 0x14, 0xb5, 0x7d, 0xa8, 0x27, 0xd5, 0xbc, 0xcb, 0x45, 0x45, 0x60, 0x25, 0xb2, 0x90,
+ 0x8e, 0xfb, 0x47, 0xc6, 0x08, 0xdf, 0xdc, 0xe6, 0x15, 0x9a, 0xcb, 0xfd, 0xf6, 0xd8, 0x18, 0x61,
+ 0x97, 0x59, 0xce, 0xb6, 0x80, 0x2d, 0xee, 0x6a, 0xff, 0x90, 0x60, 0x35, 0x5d, 0xad, 0xf0, 0x41,
+ 0x87, 0x8a, 0x38, 0xf6, 0x0e, 0xee, 0xf3, 0xf9, 0x95, 0x9d, 0x1f, 0x7a, 0x8a, 0x2f, 0x9a, 0xda,
+ 0xe0, 0x1d, 0x7b, 0x94, 0xe5, 0xf5, 0x75, 0x01, 0x1e, 0x3a, 0xee, 0xbb, 0xea, 0x29, 0x54, 0xc3,
+ 0x7d, 0xd7, 0xd8, 0x55, 0x86, 0x7c, 0xc2, 0x19, 0x91, 0x4e, 0x65, 0xe1, 0xcb, 0x61, 0x41, 0x96,
+ 0x6a, 0x39, 0xed, 0x77, 0x39, 0x58, 0xa2, 0x89, 0xf3, 0xdc, 0xb2, 0xde, 0xcb, 0x8d, 0x1f, 0xb9,
+ 0x3a, 0xf2, 0xb1, 0x7b, 0x97, 0xb2, 0xb5, 0x57, 0xe6, 0xc4, 0x63, 0x66, 0xf4, 0x1b, 0xfd, 0x14,
+ 0x8a, 0xb6, 0xd3, 0xc3, 0x0e, 0x03, 0xd7, 0xb9, 0x9d, 0xc7, 0x9e, 0x05, 0xa9, 0x46, 0x37, 0x5a,
+ 0x74, 0xa8, 0xce, 0x67, 0x68, 0x4f, 0xa1, 0xc8, 0xda, 0x14, 0x38, 0x8f, 0x5a, 0x47, 0xbb, 0x02,
+ 0x42, 0x5b, 0xc7, 0x2d, 0xce, 0xdc, 0xbe, 0x7c, 0x7e, 0xba, 0x5b, 0xcb, 0x51, 0x78, 0x8a, 0x2f,
+ 0xf6, 0x2e, 0x09, 0xf9, 0x9f, 0x42, 0xf8, 0x08, 0xde, 0x71, 0x18, 0x7d, 0xaa, 0xcd, 0x43, 0x28,
+ 0xa8, 0xf6, 0x03, 0x28, 0xd9, 0xfd, 0xbe, 0x8b, 0x89, 0x88, 0xa0, 0x68, 0x05, 0xd0, 0x55, 0x0c,
+ 0x41, 0x17, 0x1d, 0xdd, 0xb7, 0x2d, 0xcb, 0x7e, 0xc3, 0x6e, 0x27, 0x59, 0x17, 0x2d, 0x7a, 0xdd,
+ 0xd2, 0xc8, 0xb7, 0x47, 0xd8, 0x19, 0x60, 0x57, 0xb0, 0x20, 0xa0, 0xa2, 0x97, 0x4c, 0x42, 0xc9,
+ 0x50, 0xcf, 0x74, 0x8d, 0x8e, 0x85, 0xdb, 0x6f, 0x0c, 0xeb, 0x95, 0x47, 0x86, 0x84, 0xec, 0x2b,
+ 0xc3, 0x7a, 0x15, 0x10, 0x3b, 0xe5, 0xfa, 0xc4, 0x0e, 0xae, 0x4c, 0xec, 0x04, 0x4f, 0xab, 0x64,
+ 0xf3, 0xb4, 0x6a, 0x92, 0xa7, 0x3d, 0x80, 0x92, 0x31, 0x25, 0x43, 0xdb, 0xa9, 0xdf, 0x63, 0x41,
+ 0x15, 0x2d, 0xf4, 0x99, 0x97, 0x68, 0x73, 0x2c, 0xd1, 0x36, 0xc2, 0x89, 0x76, 0x41, 0x96, 0xa5,
+ 0xf0, 0xbe, 0xf9, 0xab, 0xf3, 0xbe, 0x08, 0xa6, 0xd7, 0x62, 0x98, 0xbe, 0x72, 0x41, 0xfe, 0x6a,
+ 0x4d, 0xb8, 0x1f, 0xb1, 0xec, 0x5d, 0x52, 0x76, 0xec, 0xbd, 0x19, 0x5e, 0x18, 0xe3, 0xc1, 0xd4,
+ 0x18, 0xdc, 0xf5, 0xbd, 0xfa, 0x6f, 0xff, 0x8d, 0x1d, 0x52, 0x28, 0x0c, 0xdf, 0x03, 0xc5, 0xf2,
+ 0x84, 0xc2, 0xf4, 0x4d, 0x4f, 0x61, 0xc6, 0x9c, 0x86, 0x27, 0xd1, 0x83, 0xa9, 0xea, 0x6f, 0x41,
+ 0xf6, 0xc4, 0x14, 0x4f, 0x18, 0xf2, 0x71, 0x2a, 0xc8, 0xbe, 0xe9, 0x59, 0x60, 0x95, 0x0e, 0x66,
+ 0x5c, 0x4e, 0xe7, 0x0d, 0x4e, 0xb3, 0x2d, 0xdb, 0x11, 0x6f, 0x70, 0xde, 0xa0, 0x1c, 0xae, 0x6f,
+ 0x5a, 0x58, 0xa0, 0x15, 0x3d, 0x53, 0xf7, 0x74, 0x85, 0x4a, 0x38, 0x5c, 0x2d, 0x42, 0xb1, 0x33,
+ 0x23, 0xd8, 0x65, 0xd0, 0x54, 0xd0, 0x79, 0x43, 0xfb, 0x0d, 0xcc, 0xeb, 0xc6, 0x9b, 0xa6, 0x75,
+ 0x2b, 0x97, 0xd1, 0x35, 0x89, 0x98, 0xf6, 0x11, 0xd4, 0x02, 0xe5, 0x22, 0xb2, 0xde, 0xdb, 0x56,
+ 0x0a, 0xbd, 0x6d, 0xff, 0x2b, 0x41, 0xfd, 0x85, 0xe1, 0x5d, 0x46, 0x7b, 0xb6, 0x43, 0x79, 0xe7,
+ 0xfb, 0xe7, 0x8d, 0xcf, 0xa0, 0x66, 0x99, 0x04, 0x3b, 0x86, 0xc5, 0x88, 0xb0, 0x3b, 0xc1, 0x5d,
+ 0x41, 0x1f, 0xe7, 0x85, 0xfc, 0x58, 0x88, 0x53, 0x8e, 0x59, 0xf1, 0x1a, 0xcf, 0xab, 0x3d, 0x58,
+ 0x4e, 0x71, 0xf7, 0xfa, 0x2c, 0xe9, 0xcf, 0x39, 0x58, 0xa3, 0x97, 0x78, 0xb0, 0x98, 0xbb, 0x67,
+ 0x3b, 0x94, 0xac, 0xde, 0x7e, 0xf0, 0x94, 0xeb, 0x94, 0x5b, 0x52, 0xee, 0x80, 0x62, 0xe4, 0x0e,
+ 0xf8, 0x34, 0x25, 0xd4, 0x0c, 0xf7, 0x9b, 0xb9, 0xba, 0x74, 0x95, 0x70, 0x97, 0xaf, 0x11, 0xee,
+ 0x7f, 0x49, 0xf0, 0x28, 0x2b, 0x4c, 0x22, 0xe8, 0x47, 0x71, 0xa0, 0xfa, 0x71, 0x98, 0x24, 0x65,
+ 0x4f, 0x0c, 0x68, 0x12, 0x93, 0x7a, 0x8b, 0xa8, 0x18, 0xee, 0x45, 0x7a, 0x42, 0xbb, 0x9a, 0xbb,
+ 0x8c, 0x25, 0xad, 0x01, 0xd0, 0x98, 0xb4, 0xf9, 0x69, 0x2e, 0xb0, 0x18, 0x2b, 0x54, 0xd2, 0xa4,
+ 0x02, 0xce, 0x94, 0x0e, 0x0b, 0x72, 0xbe, 0x56, 0xd0, 0xbe, 0xcf, 0x79, 0x10, 0xe6, 0x36, 0x67,
+ 0x2f, 0xb1, 0xeb, 0x52, 0xf8, 0xb9, 0xd3, 0x73, 0x13, 0x6c, 0x68, 0x3e, 0x7e, 0xa9, 0xa7, 0x6c,
+ 0x7f, 0x5a, 0xad, 0x63, 0x11, 0x8a, 0xaf, 0xa7, 0xd8, 0x99, 0x89, 0x57, 0x28, 0x6f, 0xdc, 0x70,
+ 0x87, 0xf7, 0xbd, 0xe2, 0x64, 0x38, 0x0c, 0xef, 0x72, 0x07, 0xd9, 0xb0, 0xbe, 0x67, 0x5a, 0x04,
+ 0x3b, 0x27, 0x43, 0xc3, 0xfd, 0xca, 0x24, 0xc3, 0x13, 0x73, 0x30, 0x36, 0xc8, 0xd4, 0xc1, 0xb7,
+ 0x53, 0xcc, 0x70, 0x87, 0x86, 0x47, 0xe3, 0xd9, 0xb7, 0xf6, 0x19, 0x6c, 0x64, 0x2b, 0x0c, 0x20,
+ 0x93, 0xcd, 0x93, 0x42, 0xf3, 0xce, 0x60, 0x6d, 0xf7, 0x9c, 0x38, 0x46, 0x57, 0xb8, 0xe0, 0x4f,
+ 0xbb, 0x95, 0x27, 0x87, 0x78, 0x34, 0xf8, 0x05, 0x0a, 0x99, 0x0b, 0x0e, 0x7a, 0x5a, 0x1b, 0x1e,
+ 0x65, 0xe9, 0x15, 0xd6, 0xae, 0x82, 0xe2, 0x7a, 0x42, 0x81, 0xf2, 0x81, 0x80, 0xd1, 0x39, 0x73,
+ 0x30, 0xc6, 0xbd, 0x36, 0xc1, 0xe7, 0x44, 0xa4, 0x17, 0x70, 0xd1, 0x29, 0x3e, 0x27, 0xda, 0x14,
+ 0xd4, 0x7d, 0x1c, 0x5f, 0xfc, 0x16, 0x82, 0x1f, 0x54, 0x40, 0xcc, 0x9e, 0x2b, 0xde, 0x80, 0x8a,
+ 0xe7, 0x96, 0xab, 0xcd, 0x60, 0x25, 0x55, 0xad, 0x70, 0x2a, 0x12, 0x13, 0x29, 0x1a, 0x93, 0xa8,
+ 0xc7, 0xb9, 0x4b, 0x3c, 0xce, 0x27, 0x3c, 0x76, 0xa1, 0xee, 0xab, 0x16, 0xc9, 0x7b, 0xf7, 0xfe,
+ 0xea, 0xb0, 0x9c, 0xa2, 0xf4, 0x2a, 0xde, 0xd6, 0xa1, 0x3c, 0xe2, 0x13, 0xbc, 0x37, 0x9c, 0x68,
+ 0xee, 0xfc, 0x6d, 0xde, 0x43, 0xbd, 0x13, 0xec, 0x9c, 0x99, 0x5d, 0x8c, 0x7e, 0x05, 0xb5, 0xf8,
+ 0x8f, 0x06, 0x68, 0x3d, 0xca, 0xa3, 0x12, 0xbf, 0x6f, 0xa8, 0x1b, 0xd9, 0x03, 0xb8, 0x7d, 0x5a,
+ 0xe9, 0xed, 0x1f, 0x36, 0x73, 0x72, 0x0e, 0x1d, 0x86, 0x0b, 0x6d, 0xf5, 0x94, 0xd2, 0x3c, 0x5f,
+ 0x70, 0x39, 0xb3, 0x68, 0xef, 0xad, 0xb4, 0x2d, 0xa1, 0xaf, 0x61, 0x2e, 0x5a, 0xb1, 0x46, 0x6b,
+ 0x51, 0x3b, 0x62, 0x05, 0x74, 0xf5, 0x51, 0x56, 0x77, 0x62, 0xe9, 0x5f, 0xd2, 0x17, 0x73, 0x50,
+ 0x4d, 0x45, 0x2b, 0xc1, 0xcc, 0x44, 0x69, 0x5b, 0x5d, 0x4d, 0xef, 0x8c, 0x79, 0x6e, 0xc1, 0x52,
+ 0x6a, 0x11, 0x13, 0x3d, 0x89, 0x4c, 0xcf, 0x28, 0xc8, 0xaa, 0x4f, 0x2f, 0x19, 0x15, 0xd3, 0xf6,
+ 0x35, 0xcc, 0x45, 0x4b, 0x66, 0x41, 0x6c, 0x52, 0x6b, 0x7d, 0x41, 0x6c, 0xd2, 0x2b, 0x6d, 0xa1,
+ 0xd8, 0x1c, 0x82, 0xe2, 0x17, 0xb7, 0x82, 0x2d, 0x8c, 0x57, 0xd6, 0x82, 0x2d, 0x4c, 0x54, 0xc2,
+ 0x42, 0x6b, 0xfd, 0x02, 0x20, 0x78, 0x84, 0xa0, 0xe5, 0xe4, 0x93, 0xc9, 0x5b, 0x4d, 0x4d, 0xeb,
+ 0x8a, 0xf9, 0x7c, 0x04, 0x95, 0xd0, 0xcf, 0x7c, 0x48, 0x8d, 0xee, 0x76, 0xf8, 0x77, 0x46, 0x75,
+ 0x25, 0xb5, 0x2f, 0x19, 0xc3, 0xe8, 0xbb, 0x3e, 0x88, 0x61, 0x6a, 0xf1, 0x20, 0x88, 0x61, 0x7a,
+ 0x39, 0x20, 0xe4, 0xf7, 0x31, 0x54, 0x42, 0x8f, 0x2f, 0xa4, 0x66, 0xbf, 0x15, 0x03, 0x53, 0x53,
+ 0x5e, 0x6b, 0xa1, 0x15, 0xbf, 0x81, 0xf9, 0xd8, 0x2b, 0x07, 0x3d, 0xca, 0x7c, 0xfe, 0xf0, 0x95,
+ 0xd7, 0x2f, 0x79, 0x1e, 0xf9, 0x81, 0xd8, 0x07, 0xd9, 0x7b, 0x14, 0xa0, 0x87, 0x3e, 0x94, 0x45,
+ 0xdf, 0x28, 0x6a, 0x3d, 0xd9, 0x91, 0x30, 0xf2, 0xd7, 0xb0, 0x90, 0x60, 0xd1, 0xc8, 0x07, 0x8f,
+ 0xac, 0xf7, 0x84, 0xfa, 0xe1, 0x05, 0x23, 0x62, 0xa6, 0xbe, 0x86, 0x07, 0xe9, 0xf4, 0x0f, 0x3d,
+ 0xbd, 0x8c, 0x1e, 0x72, 0x5d, 0x1f, 0x5d, 0x8d, 0x45, 0x86, 0x9c, 0x6a, 0x7b, 0x88, 0x19, 0x30,
+ 0x99, 0x38, 0x62, 0x26, 0xa8, 0x5e, 0x1c, 0x31, 0x93, 0x24, 0x28, 0xaa, 0x20, 0x5e, 0xf2, 0x0c,
+ 0x14, 0x64, 0xd4, 0x5c, 0x03, 0x05, 0x59, 0xd5, 0xd2, 0x90, 0x82, 0x57, 0xb0, 0x98, 0x56, 0x58,
+ 0x44, 0x8f, 0x2f, 0x2e, 0x3b, 0x72, 0x45, 0x4f, 0xae, 0x52, 0x9b, 0x0c, 0x29, 0x9b, 0x41, 0x3d,
+ 0x8b, 0x3e, 0xa1, 0x1f, 0x04, 0xb9, 0x7e, 0x21, 0xa3, 0x53, 0x37, 0x2f, 0x1f, 0x18, 0x55, 0xbc,
+ 0x29, 0x6d, 0x4b, 0x68, 0x08, 0xf7, 0x53, 0x18, 0x03, 0xd2, 0x42, 0xd0, 0x97, 0xc1, 0x62, 0xd4,
+ 0xc7, 0x17, 0x8e, 0x49, 0x38, 0xd9, 0x81, 0x85, 0xc4, 0x5d, 0x1d, 0x24, 0x7a, 0x16, 0x77, 0x08,
+ 0x12, 0x3d, 0xf3, 0xa2, 0x0f, 0x74, 0x34, 0xb7, 0xbf, 0xa1, 0xa3, 0x2d, 0xa3, 0xd3, 0xe8, 0xda,
+ 0xa3, 0x2d, 0xfe, 0xf9, 0xa9, 0xed, 0x0c, 0xb6, 0xf8, 0x1a, 0xfc, 0x5f, 0x2f, 0xb6, 0x06, 0xb6,
+ 0x68, 0x4f, 0x3a, 0x9d, 0x12, 0x13, 0xfd, 0xe8, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0xdb, 0x36,
+ 0x74, 0x60, 0xcd, 0x21, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/ruby/proto/gitaly/commit_pb.rb b/ruby/proto/gitaly/commit_pb.rb
index 9ad31bf92..b9d7783fe 100644
--- a/ruby/proto/gitaly/commit_pb.rb
+++ b/ruby/proto/gitaly/commit_pb.rb
@@ -110,6 +110,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
add_message "gitaly.FindCommitRequest" do
optional :repository, :message, 1, "gitaly.Repository"
optional :revision, :bytes, 2
+ optional :trailers, :bool, 3
end
add_message "gitaly.FindCommitResponse" do
optional :commit, :message, 1, "gitaly.GitCommit"
@@ -163,6 +164,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
optional :author, :bytes, 13
optional :order, :enum, 14, "gitaly.FindCommitsRequest.Order"
optional :global_options, :message, 15, "gitaly.GlobalOptions"
+ optional :trailers, :bool, 16
end
add_enum "gitaly.FindCommitsRequest.Order" do
value :NONE, 0