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:
authorÆvar Arnfjörð Bjarmason <avar@gitlab.com>2021-04-07 13:29:53 +0300
committerÆvar Arnfjörð Bjarmason <avar@gitlab.com>2021-04-07 13:29:53 +0300
commit028a241a971afd98989fecbbb749c187c97deb2a (patch)
tree5de9c1a998c01ae4d259d9c06ed178b61aaccbbf
parentfff5d942514c5bc8d41c5221d73ccd75523e6049 (diff)
parentb14a09640d0a356f9138dc4e1913637b6148e686 (diff)
Merge branch 'zj-pagination-commits-between' into 'master'
CommitsBetween: learn to accept pagination params See merge request gitlab-org/gitaly!2484
-rw-r--r--changelogs/unreleased/zj-pagination-commits-between.yml5
-rw-r--r--internal/gitaly/service/commit/between.go34
-rw-r--r--internal/gitaly/service/commit/between_test.go28
-rw-r--r--proto/commit.proto6
-rw-r--r--proto/go/gitalypb/commit.pb.go310
-rw-r--r--ruby/proto/gitaly/commit_pb.rb1
6 files changed, 226 insertions, 158 deletions
diff --git a/changelogs/unreleased/zj-pagination-commits-between.yml b/changelogs/unreleased/zj-pagination-commits-between.yml
new file mode 100644
index 000000000..9417294ce
--- /dev/null
+++ b/changelogs/unreleased/zj-pagination-commits-between.yml
@@ -0,0 +1,5 @@
+---
+title: 'CommitsBetween: learn to accept pagination params'
+merge_request: 2484
+author:
+type: changed
diff --git a/internal/gitaly/service/commit/between.go b/internal/gitaly/service/commit/between.go
index 075a44e03..e0d82c6f7 100644
--- a/internal/gitaly/service/commit/between.go
+++ b/internal/gitaly/service/commit/between.go
@@ -2,6 +2,7 @@ package commit
import (
"fmt"
+ "strconv"
"github.com/golang/protobuf/proto"
"gitlab.com/gitlab-org/gitaly/internal/git"
@@ -29,15 +30,44 @@ func (s *server) CommitsBetween(in *gitalypb.CommitsBetweenRequest, stream gital
}
sender := &commitsBetweenSender{stream: stream}
- revisionRange := fmt.Sprintf("%s..%s", in.GetFrom(), in.GetTo())
- if err := sendCommits(stream.Context(), sender, s.gitCmdFactory, in.GetRepository(), []string{revisionRange}, nil, nil, git.Flag{Name: "--reverse"}); err != nil {
+ from, to, limit := normalizedCommitsBetweenParams(in)
+ revisionRange := fmt.Sprintf("%s..%s", from, to)
+
+ if err := sendCommits(
+ stream.Context(),
+ sender,
+ s.gitCmdFactory,
+ in.GetRepository(),
+ []string{revisionRange},
+ nil,
+ nil,
+ git.Flag{Name: "--reverse"},
+ git.ValueFlag{Name: "--max-count", Value: strconv.Itoa(int(limit))},
+ ); err != nil {
return helper.ErrInternal(err)
}
return nil
}
+// returns the from, to, and limit CLI parameters abiding by pagination params
+func normalizedCommitsBetweenParams(req *gitalypb.CommitsBetweenRequest) (string, string, int32) {
+ from := string(req.GetFrom())
+ to := string(req.GetTo())
+ var limit int32 = 2147483647
+
+ if req.PaginationParams != nil {
+ from = req.PaginationParams.GetPageToken() + "~"
+
+ if req.PaginationParams.GetLimit() > 0 {
+ limit = req.PaginationParams.GetLimit()
+ }
+ }
+
+ return from, to, limit
+}
+
func validateCommitsBetween(in *gitalypb.CommitsBetweenRequest) error {
if err := git.ValidateRevision(in.GetFrom()); err != nil {
return fmt.Errorf("from: %v", err)
diff --git a/internal/gitaly/service/commit/between_test.go b/internal/gitaly/service/commit/between_test.go
index bb35bd010..68faf59d9 100644
--- a/internal/gitaly/service/commit/between_test.go
+++ b/internal/gitaly/service/commit/between_test.go
@@ -23,10 +23,11 @@ func TestSuccessfulCommitsBetween(t *testing.T) {
testhelper.GitLabTestCommit("ba3343bc4fa403a8dfbfcab7fc1a8c29ee34bd69"),
}
testCases := []struct {
- description string
- from []byte
- to []byte
- expectedCommits []*gitalypb.GitCommit
+ description string
+ from []byte
+ to []byte
+ paginationParams *gitalypb.PaginationParameter
+ expectedCommits []*gitalypb.GitCommit
}{
{
description: "From hash to hash",
@@ -38,7 +39,7 @@ func TestSuccessfulCommitsBetween(t *testing.T) {
description: "From hash to ref",
from: from,
to: []byte("gitaly-test-ref"),
- expectedCommits: expectedCommits,
+ expectedCommits: expectedCommits[:3],
},
{
description: "From ref to hash",
@@ -50,7 +51,7 @@ func TestSuccessfulCommitsBetween(t *testing.T) {
description: "From ref to ref",
from: []byte("branch-merged"),
to: []byte("gitaly-test-ref"),
- expectedCommits: expectedCommits,
+ expectedCommits: expectedCommits[:3],
},
{
description: "To hash doesn't exist",
@@ -76,11 +77,21 @@ func TestSuccessfulCommitsBetween(t *testing.T) {
to: to,
expectedCommits: []*gitalypb.GitCommit{},
},
+ {
+ description: "using pagination to limit and offset results",
+ from: from,
+ to: to,
+ paginationParams: &gitalypb.PaginationParameter{
+ Limit: 3,
+ PageToken: "b83d6e391c22777fca1ed3012fce84f633d7fed0",
+ },
+ expectedCommits: expectedCommits[1:4],
+ },
}
for _, tc := range testCases {
t.Run(tc.description, func(t *testing.T) {
rpcRequest := gitalypb.CommitsBetweenRequest{
- Repository: repo, From: tc.from, To: tc.to,
+ Repository: repo, From: tc.from, To: tc.to, PaginationParams: tc.paginationParams,
}
ctx, cancel := testhelper.Context()
@@ -91,8 +102,9 @@ func TestSuccessfulCommitsBetween(t *testing.T) {
commits := getAllCommits(t, func() (gitCommitsGetter, error) { return c.Recv() })
+ require.Len(t, commits, len(tc.expectedCommits))
for i, commit := range commits {
- testhelper.ProtoEqual(t, expectedCommits[i], commit)
+ testhelper.ProtoEqual(t, tc.expectedCommits[i], commit)
}
})
}
diff --git a/proto/commit.proto b/proto/commit.proto
index bc52ab834..909207721 100644
--- a/proto/commit.proto
+++ b/proto/commit.proto
@@ -176,6 +176,12 @@ message CommitsBetweenRequest {
Repository repository = 1 [(target_repository)=true];
bytes from = 2;
bytes to = 3;
+
+ // The page token is the last commit OID that was sent. It's expected to be the
+ // full object ID to guard against ambigious OIDs. Using the page parameter is
+ // effectivaly equivalent to setting the `from` parameter to the commit object
+ // identifier.
+ PaginationParameter pagination_params = 4;
}
message CommitsBetweenResponse {
diff --git a/proto/go/gitalypb/commit.pb.go b/proto/go/gitalypb/commit.pb.go
index 84fd6b950..ba69d60a9 100644
--- a/proto/go/gitalypb/commit.pb.go
+++ b/proto/go/gitalypb/commit.pb.go
@@ -488,12 +488,17 @@ func (m *TreeEntryResponse) GetData() []byte {
}
type CommitsBetweenRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
- From []byte `protobuf:"bytes,2,opt,name=from,proto3" json:"from,omitempty"`
- To []byte `protobuf:"bytes,3,opt,name=to,proto3" json:"to,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
+ From []byte `protobuf:"bytes,2,opt,name=from,proto3" json:"from,omitempty"`
+ To []byte `protobuf:"bytes,3,opt,name=to,proto3" json:"to,omitempty"`
+ // The page token is the last commit OID that was sent. It's expected to be the
+ // full object ID to guard against ambigious OIDs. Using the page parameter is
+ // effectivaly equivalent to setting the `from` parameter to the commit object
+ // identifier.
+ PaginationParams *PaginationParameter `protobuf:"bytes,4,opt,name=pagination_params,json=paginationParams,proto3" json:"pagination_params,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
func (m *CommitsBetweenRequest) Reset() { *m = CommitsBetweenRequest{} }
@@ -542,6 +547,13 @@ func (m *CommitsBetweenRequest) GetTo() []byte {
return nil
}
+func (m *CommitsBetweenRequest) GetPaginationParams() *PaginationParameter {
+ if m != nil {
+ return m.PaginationParams
+ }
+ return nil
+}
+
type CommitsBetweenResponse struct {
Commits []*GitCommit `protobuf:"bytes,1,rep,name=commits,proto3" json:"commits,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@@ -2853,148 +2865,150 @@ func init() {
func init() { proto.RegisterFile("commit.proto", fileDescriptor_db7163399a465f48) }
var fileDescriptor_db7163399a465f48 = []byte{
- // 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,
+ // 2283 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5a, 0xbb, 0x73, 0x1b, 0xc7,
+ 0x19, 0xf7, 0xe1, 0x79, 0xf8, 0x00, 0x51, 0xe0, 0xea, 0x05, 0x1e, 0x48, 0x91, 0x3e, 0x49, 0x0e,
+ 0x35, 0xb6, 0x41, 0x85, 0x49, 0x3c, 0xce, 0x4c, 0x66, 0x32, 0x82, 0x4d, 0x32, 0x62, 0x24, 0x81,
+ 0x39, 0x72, 0xc6, 0x63, 0xcf, 0x64, 0x90, 0x03, 0xb0, 0x00, 0xd6, 0x3a, 0xe0, 0xa0, 0xbb, 0x05,
+ 0x45, 0x38, 0x45, 0xd2, 0xb8, 0x4e, 0x99, 0x74, 0x69, 0xd2, 0x65, 0xf2, 0x07, 0xa4, 0x4a, 0x97,
+ 0x32, 0x45, 0x9a, 0xf4, 0xa9, 0x93, 0x32, 0x8d, 0xab, 0xcc, 0x3e, 0xee, 0x7d, 0xc7, 0x87, 0x48,
+ 0xaa, 0xe1, 0xdc, 0x7e, 0xfb, 0xf8, 0x1e, 0xfb, 0xed, 0x6f, 0x7f, 0xfb, 0x81, 0x50, 0xeb, 0xdb,
+ 0x93, 0x09, 0xa1, 0xad, 0x99, 0x63, 0x53, 0x1b, 0x95, 0x46, 0x84, 0x9a, 0xd6, 0x42, 0x03, 0x8b,
+ 0x4c, 0xa5, 0x4c, 0xab, 0xb9, 0x63, 0xd3, 0xc1, 0x03, 0xd9, 0x5a, 0x1f, 0xd9, 0xf6, 0xc8, 0xc2,
+ 0x5b, 0xbc, 0xd5, 0x9b, 0x0f, 0xb7, 0x28, 0x99, 0x60, 0x97, 0x9a, 0x93, 0x99, 0x18, 0xa0, 0x7f,
+ 0x0d, 0xe8, 0x33, 0xbe, 0xe4, 0x21, 0x35, 0xa9, 0x6b, 0xe0, 0xd7, 0x73, 0xec, 0x52, 0xf4, 0x29,
+ 0x80, 0x83, 0x67, 0xb6, 0x4b, 0xa8, 0xed, 0x2c, 0x1a, 0xca, 0x86, 0xb2, 0x59, 0xdd, 0x46, 0x2d,
+ 0xa1, 0xad, 0x65, 0xf8, 0x3d, 0xed, 0xc2, 0x1f, 0xfe, 0xfe, 0x91, 0x62, 0x84, 0xc6, 0x22, 0x0d,
+ 0x54, 0x07, 0x1f, 0x13, 0x97, 0xd8, 0xd3, 0x46, 0x6e, 0x43, 0xd9, 0xac, 0x19, 0x7e, 0x5b, 0xef,
+ 0xc3, 0xad, 0x88, 0x2e, 0x77, 0x66, 0x4f, 0x5d, 0x8c, 0xea, 0x90, 0xb7, 0xc9, 0x80, 0x6b, 0xa9,
+ 0x18, 0xec, 0x13, 0xad, 0x42, 0xc5, 0x1c, 0x0c, 0x08, 0x25, 0xf6, 0xd4, 0xe5, 0xab, 0x14, 0x8d,
+ 0x40, 0xc0, 0x7a, 0x07, 0xd8, 0xc2, 0xa2, 0x37, 0x2f, 0x7a, 0x7d, 0x81, 0xfe, 0x3b, 0x05, 0xee,
+ 0x09, 0x2d, 0xcf, 0xdc, 0xa7, 0xd3, 0x3e, 0x76, 0xa9, 0xed, 0x5c, 0xde, 0xad, 0x75, 0xa8, 0x9a,
+ 0x72, 0xb1, 0x2e, 0x19, 0x70, 0x9b, 0x2a, 0x06, 0x78, 0xa2, 0x67, 0x03, 0xb4, 0x02, 0x6a, 0x7f,
+ 0x4c, 0xac, 0x01, 0xeb, 0xcd, 0xf3, 0xde, 0x32, 0x6f, 0x3f, 0x1b, 0xe8, 0x4f, 0xa0, 0x91, 0x34,
+ 0x48, 0xfa, 0x7e, 0x1b, 0x8a, 0xc7, 0xa6, 0x35, 0xc7, 0xdc, 0x18, 0xd5, 0x10, 0x0d, 0xfd, 0x2f,
+ 0x0a, 0xd4, 0x8f, 0x1c, 0x8c, 0x77, 0xa6, 0xd4, 0x59, 0x5c, 0xeb, 0x9e, 0x20, 0x04, 0x85, 0x99,
+ 0x49, 0xc7, 0xdc, 0xe6, 0x9a, 0xc1, 0xbf, 0x99, 0x51, 0x16, 0x99, 0x10, 0xda, 0x28, 0x6c, 0x28,
+ 0x9b, 0x79, 0x43, 0x34, 0x98, 0x87, 0x13, 0xf3, 0xa4, 0xeb, 0x92, 0x6f, 0x70, 0xa3, 0xc8, 0x3b,
+ 0xca, 0x13, 0xf3, 0xe4, 0x90, 0x7c, 0x83, 0xf5, 0x7f, 0x2a, 0xb0, 0x1c, 0xb2, 0x57, 0xfa, 0xf6,
+ 0x29, 0x14, 0xe8, 0x62, 0x26, 0x5c, 0x5b, 0xda, 0x7e, 0xe8, 0x99, 0x9a, 0x18, 0xd8, 0xea, 0xf4,
+ 0xbe, 0xc6, 0x7d, 0x7a, 0xb4, 0x98, 0x61, 0x83, 0xcf, 0xf0, 0x32, 0x22, 0x17, 0x64, 0x04, 0x82,
+ 0x02, 0x57, 0x9c, 0xe7, 0x8a, 0xf9, 0x37, 0x93, 0x4d, 0xec, 0x01, 0xe6, 0x56, 0x16, 0x0d, 0xfe,
+ 0xcd, 0x64, 0x03, 0x93, 0x9a, 0xdc, 0xc0, 0x9a, 0xc1, 0xbf, 0xf5, 0x1f, 0x01, 0x04, 0x1a, 0x10,
+ 0x40, 0xe9, 0xb3, 0xce, 0x8b, 0x17, 0xcf, 0x8e, 0xea, 0xef, 0x21, 0x15, 0x0a, 0xed, 0xe7, 0x9d,
+ 0x76, 0x5d, 0x61, 0x5f, 0x47, 0xc6, 0xce, 0x4e, 0x3d, 0x87, 0xca, 0x90, 0x3f, 0x7a, 0xba, 0x57,
+ 0xcf, 0xeb, 0x7f, 0x53, 0xe0, 0x8e, 0xd8, 0x37, 0xb7, 0x8d, 0xe9, 0x1b, 0x8c, 0xa7, 0x97, 0xdf,
+ 0x09, 0x04, 0x85, 0xa1, 0x63, 0x4f, 0xe4, 0x2e, 0xf0, 0x6f, 0xb4, 0x04, 0x39, 0x6a, 0xcb, 0xf8,
+ 0xe7, 0xa8, 0x8d, 0x7e, 0x06, 0xcb, 0x33, 0x73, 0x44, 0xa6, 0x26, 0xcb, 0xe7, 0xee, 0xcc, 0x74,
+ 0xcc, 0x89, 0xcb, 0x7d, 0xac, 0x6e, 0x37, 0x3d, 0x25, 0x07, 0xfe, 0x80, 0x03, 0xd6, 0x8f, 0x29,
+ 0x76, 0x8c, 0xfa, 0x2c, 0x2a, 0x74, 0xf5, 0x1d, 0xb8, 0x1b, 0x77, 0x40, 0x6e, 0xcd, 0x87, 0x50,
+ 0x16, 0x40, 0xe2, 0x36, 0x94, 0x8d, 0xfc, 0x66, 0x75, 0x7b, 0xd9, 0x5b, 0x79, 0x8f, 0x50, 0x31,
+ 0xc7, 0xf0, 0x46, 0xe8, 0xff, 0xcb, 0xb1, 0x73, 0x3b, 0x9f, 0xca, 0x8e, 0xeb, 0x05, 0x09, 0xf4,
+ 0x04, 0x8a, 0xe6, 0x90, 0x62, 0x87, 0x47, 0xa4, 0xba, 0xad, 0xb5, 0x04, 0x82, 0xb5, 0x3c, 0x04,
+ 0x6b, 0x1d, 0x79, 0x08, 0x66, 0x88, 0x81, 0x68, 0x1b, 0x4a, 0x3d, 0x3c, 0xb4, 0x1d, 0x2c, 0xa3,
+ 0x74, 0xda, 0x14, 0x39, 0xd2, 0x4f, 0xfb, 0x62, 0x28, 0xed, 0x9b, 0x50, 0x61, 0x09, 0xde, 0x67,
+ 0xae, 0x36, 0x4a, 0x3c, 0xa9, 0x58, 0xc6, 0x73, 0xd7, 0x59, 0x4a, 0x9a, 0x96, 0xd5, 0x28, 0xf3,
+ 0x63, 0xca, 0x3e, 0xd1, 0xfb, 0x50, 0x1b, 0x12, 0xc7, 0xa5, 0x6c, 0x8b, 0xf0, 0x94, 0x36, 0x54,
+ 0xde, 0x55, 0xe5, 0xb2, 0x03, 0x2e, 0x42, 0x3f, 0x81, 0xa5, 0x91, 0x65, 0xf7, 0x4c, 0xab, 0x6b,
+ 0xcf, 0x04, 0x5c, 0x55, 0xb8, 0x85, 0x77, 0xfc, 0x68, 0xf3, 0xde, 0x8e, 0xe8, 0x34, 0x6e, 0x8c,
+ 0xc2, 0x4d, 0xfd, 0x23, 0xb8, 0x1d, 0x0d, 0x7b, 0x80, 0x19, 0xc2, 0x46, 0x85, 0xdb, 0x28, 0x1a,
+ 0xfa, 0x9f, 0x15, 0x58, 0xe5, 0xc3, 0x3f, 0x27, 0xc7, 0xd8, 0x19, 0x91, 0xe9, 0xe8, 0xca, 0xb6,
+ 0xeb, 0x3c, 0x59, 0x1b, 0x09, 0x5e, 0x39, 0x1a, 0xbc, 0xfd, 0x82, 0x5a, 0xa8, 0x17, 0xf7, 0x0b,
+ 0x6a, 0xb1, 0x5e, 0xda, 0x2f, 0xa8, 0xa5, 0x7a, 0x59, 0xef, 0xc2, 0x5a, 0x86, 0xb1, 0xd2, 0xc9,
+ 0x35, 0x00, 0x0b, 0x0f, 0x69, 0x37, 0xec, 0x69, 0x85, 0x49, 0xc4, 0x76, 0xac, 0x43, 0xd5, 0x21,
+ 0xa3, 0xb1, 0xd7, 0x2f, 0xee, 0x08, 0xe0, 0x22, 0x3e, 0x40, 0xff, 0x4e, 0x81, 0x8a, 0x8f, 0x34,
+ 0x29, 0x57, 0xcc, 0x0a, 0xa8, 0x8e, 0x6d, 0xd3, 0x6e, 0x80, 0x33, 0x65, 0xd6, 0xee, 0x08, 0xac,
+ 0x49, 0x40, 0xe2, 0x96, 0xc4, 0xb2, 0x02, 0xc7, 0xb2, 0x66, 0x02, 0xcb, 0x5a, 0xfc, 0x6f, 0x08,
+ 0xc2, 0x3c, 0x70, 0x2a, 0x86, 0xc0, 0x69, 0x0d, 0x40, 0x9c, 0x29, 0xae, 0xb5, 0xc4, 0xb5, 0x56,
+ 0x84, 0x84, 0xe9, 0x6d, 0x42, 0x65, 0x68, 0x99, 0x2c, 0x9f, 0xe8, 0x98, 0x87, 0xb0, 0x66, 0xa8,
+ 0x4c, 0x70, 0x60, 0xd2, 0xb1, 0xfe, 0x21, 0x54, 0x7c, 0x15, 0x3e, 0x6e, 0xbd, 0xe7, 0xe3, 0x96,
+ 0x12, 0xc2, 0xb5, 0xbc, 0xfe, 0x47, 0x05, 0xee, 0xec, 0x61, 0xea, 0x59, 0x47, 0xb0, 0xfb, 0xee,
+ 0x2f, 0x91, 0x55, 0xa8, 0x38, 0xb8, 0x3f, 0x77, 0x5c, 0x72, 0x2c, 0xc2, 0xa6, 0x1a, 0x81, 0x80,
+ 0x41, 0x53, 0xdc, 0xc0, 0x00, 0x9a, 0xb0, 0x10, 0xc5, 0xa1, 0x29, 0xb8, 0x38, 0xbc, 0x11, 0xfa,
+ 0x18, 0xea, 0xcf, 0x89, 0x4b, 0x77, 0x89, 0x75, 0xcd, 0x2e, 0xea, 0x8f, 0x61, 0x39, 0xa4, 0x29,
+ 0x38, 0x89, 0xcc, 0x57, 0x61, 0x69, 0xcd, 0x10, 0x0d, 0xfd, 0x5b, 0x05, 0x96, 0x77, 0xc9, 0x74,
+ 0x20, 0x71, 0xf4, 0x5a, 0x23, 0xaf, 0x81, 0x4a, 0x1d, 0x93, 0x58, 0xd8, 0x11, 0x54, 0x48, 0x35,
+ 0xfc, 0xb6, 0xfe, 0x53, 0x40, 0x61, 0x33, 0xa4, 0xcd, 0x8f, 0xa1, 0x24, 0x52, 0x4e, 0xda, 0x90,
+ 0x82, 0xfc, 0x72, 0x80, 0x8e, 0xe1, 0x1e, 0xf3, 0xd9, 0xbb, 0x43, 0x16, 0x1d, 0x32, 0xb8, 0xbc,
+ 0x37, 0xfe, 0xdd, 0x9e, 0x97, 0x47, 0x51, 0xdf, 0x83, 0x46, 0x52, 0xcd, 0xdb, 0x5c, 0x54, 0x14,
+ 0x9a, 0x91, 0x85, 0x0c, 0x3c, 0x7c, 0x69, 0x4e, 0xf0, 0xe5, 0x6d, 0x6e, 0xb2, 0x5c, 0x1e, 0x76,
+ 0xa7, 0xe6, 0x04, 0xbb, 0xdc, 0x72, 0xbe, 0x05, 0x7c, 0x71, 0x57, 0xff, 0x87, 0x02, 0xab, 0xe9,
+ 0x6a, 0xa5, 0x0f, 0x06, 0x54, 0xe5, 0xb1, 0x77, 0xf0, 0x50, 0xcc, 0xaf, 0x6e, 0x7f, 0xdf, 0x53,
+ 0x7c, 0xda, 0xd4, 0x96, 0xe8, 0xd8, 0x65, 0x84, 0x71, 0x68, 0x48, 0xf0, 0x30, 0xf0, 0xd0, 0xd5,
+ 0x8e, 0xa0, 0x16, 0xee, 0xbb, 0xc0, 0xae, 0x72, 0xe4, 0x93, 0xce, 0xc8, 0x74, 0x2a, 0x4b, 0x5f,
+ 0xf6, 0x0b, 0xaa, 0x52, 0xcf, 0xe9, 0xbf, 0xcd, 0xc1, 0x1d, 0x96, 0x38, 0x4f, 0x2d, 0xeb, 0x9d,
+ 0xdc, 0xf8, 0x91, 0xab, 0x23, 0x1f, 0xbb, 0x77, 0x19, 0xf1, 0x7b, 0x45, 0x66, 0x1e, 0xc9, 0x63,
+ 0xdf, 0xe8, 0xc7, 0x50, 0xb4, 0x9d, 0x01, 0x76, 0x38, 0xb8, 0x2e, 0x6d, 0x3f, 0xf0, 0x2c, 0x48,
+ 0x35, 0xba, 0xd5, 0x61, 0x43, 0x0d, 0x31, 0x43, 0x7f, 0x04, 0x45, 0xde, 0x66, 0xc0, 0xf9, 0xb2,
+ 0xf3, 0x72, 0x47, 0x42, 0x68, 0xe7, 0xa0, 0x23, 0x48, 0xe0, 0xe7, 0x4f, 0x8f, 0x76, 0xea, 0x39,
+ 0x06, 0x4f, 0xf1, 0xc5, 0xde, 0x26, 0x21, 0xff, 0x53, 0x08, 0x1f, 0xc1, 0x6b, 0x0e, 0xa3, 0xcf,
+ 0xda, 0x45, 0x08, 0x25, 0x6b, 0xbf, 0x0b, 0x25, 0x7b, 0x38, 0x74, 0x31, 0x95, 0x11, 0x94, 0xad,
+ 0x00, 0xba, 0x8a, 0x21, 0xe8, 0x62, 0xa3, 0x87, 0xb6, 0x65, 0xd9, 0x6f, 0xf8, 0xed, 0xa4, 0x1a,
+ 0xb2, 0xc5, 0xae, 0x5b, 0x16, 0xf9, 0xee, 0x04, 0x3b, 0x23, 0xec, 0x4a, 0x16, 0x04, 0x4c, 0xf4,
+ 0x82, 0x4b, 0x18, 0x19, 0x1a, 0x10, 0xd7, 0xec, 0x59, 0xb8, 0xfb, 0xc6, 0xb4, 0x5e, 0x79, 0x64,
+ 0x48, 0xca, 0xbe, 0x30, 0xad, 0x57, 0x01, 0xb1, 0xab, 0x5c, 0x9c, 0xd8, 0xc1, 0xb9, 0x89, 0x9d,
+ 0xe4, 0x69, 0xd5, 0x6c, 0x9e, 0x56, 0x4b, 0xf2, 0xb4, 0xbb, 0x50, 0x32, 0xe7, 0x74, 0x6c, 0x3b,
+ 0x8d, 0x1b, 0x3c, 0xa8, 0xb2, 0x85, 0x3e, 0xf1, 0x12, 0x6d, 0x89, 0x27, 0xda, 0x46, 0x38, 0xd1,
+ 0x4e, 0xc9, 0xb2, 0x14, 0xde, 0x77, 0xf3, 0xfc, 0xbc, 0x2f, 0x82, 0xe9, 0xf5, 0x18, 0xa6, 0x37,
+ 0x4f, 0xc9, 0x5f, 0xbd, 0x0d, 0xb7, 0x22, 0x96, 0xbd, 0x4d, 0xca, 0x4e, 0xbd, 0x37, 0xc3, 0x73,
+ 0x73, 0x3a, 0x9a, 0x9b, 0xa3, 0xeb, 0xbe, 0x57, 0xff, 0xed, 0x3f, 0xd7, 0x43, 0x0a, 0xa5, 0xe1,
+ 0xbb, 0x50, 0xb1, 0x3c, 0xa1, 0x34, 0x7d, 0xd3, 0x53, 0x98, 0x31, 0xa7, 0xe5, 0x49, 0x8c, 0x60,
+ 0xaa, 0xf6, 0x1b, 0x50, 0x3d, 0x31, 0xc3, 0x13, 0x8e, 0x7c, 0x82, 0x0a, 0xf2, 0x6f, 0x76, 0x16,
+ 0x78, 0xd1, 0x84, 0x1b, 0x97, 0x33, 0x44, 0x43, 0xd0, 0x6c, 0xcb, 0x76, 0xe4, 0x73, 0x5e, 0x34,
+ 0x18, 0x87, 0x1b, 0x12, 0x0b, 0x4b, 0xb4, 0x62, 0x67, 0xea, 0x86, 0x51, 0x61, 0x12, 0x01, 0x57,
+ 0xb7, 0xa1, 0xd8, 0x5b, 0x50, 0xec, 0x72, 0x68, 0x2a, 0x18, 0xa2, 0xa1, 0xff, 0x1a, 0x6e, 0x1a,
+ 0xe6, 0x9b, 0xb6, 0x75, 0x25, 0x97, 0xd1, 0x05, 0x89, 0x98, 0xfe, 0x01, 0xd4, 0x03, 0xe5, 0x32,
+ 0xb2, 0xde, 0x33, 0x59, 0x09, 0x3d, 0x93, 0xff, 0xab, 0x40, 0xe3, 0xb9, 0xe9, 0x5d, 0x46, 0xbb,
+ 0xb6, 0xc3, 0x78, 0xe7, 0xbb, 0xe7, 0x8d, 0x8f, 0xa1, 0x6e, 0x11, 0x8a, 0x1d, 0xd3, 0xe2, 0x44,
+ 0xd8, 0x9d, 0xe1, 0xbe, 0xa4, 0x8f, 0x37, 0xa5, 0xfc, 0x40, 0x8a, 0x53, 0x8e, 0x59, 0xf1, 0x02,
+ 0xcf, 0xab, 0x5d, 0x58, 0x49, 0x71, 0xf7, 0xe2, 0x2c, 0xe9, 0x4f, 0x39, 0x58, 0x63, 0x97, 0x78,
+ 0xb0, 0x98, 0xbb, 0x6b, 0x3b, 0x8c, 0xac, 0x5e, 0x7d, 0xf0, 0x2a, 0x17, 0xa9, 0xdc, 0xa4, 0xdc,
+ 0x01, 0xc5, 0xc8, 0x1d, 0xf0, 0x71, 0x4a, 0xa8, 0x39, 0xee, 0xb7, 0x73, 0x0d, 0xe5, 0x3c, 0xe1,
+ 0x2e, 0x5f, 0x20, 0xdc, 0xff, 0x52, 0xe0, 0x7e, 0x56, 0x98, 0x64, 0xd0, 0x5f, 0xc6, 0x81, 0xea,
+ 0x87, 0x61, 0x92, 0x94, 0x3d, 0x31, 0xa0, 0x49, 0x5c, 0xea, 0x2d, 0xa2, 0x61, 0xb8, 0x11, 0xe9,
+ 0x09, 0xed, 0x6a, 0xee, 0x2c, 0x96, 0xb4, 0x06, 0xc0, 0x62, 0xd2, 0x15, 0xa7, 0xb9, 0xc0, 0x63,
+ 0x5c, 0x61, 0x92, 0x36, 0x13, 0x08, 0xa6, 0xb4, 0x5f, 0x50, 0xf3, 0xf5, 0x82, 0xfe, 0x6d, 0xce,
+ 0x83, 0x30, 0xb7, 0xbd, 0x78, 0x81, 0x5d, 0x97, 0xc1, 0xcf, 0xb5, 0x9e, 0x9b, 0x60, 0x43, 0xf3,
+ 0xf1, 0x4b, 0x3d, 0x65, 0xfb, 0xd3, 0x6a, 0x1d, 0xb7, 0xa1, 0xf8, 0x7a, 0x8e, 0x9d, 0x85, 0x7c,
+ 0x85, 0x8a, 0xc6, 0x25, 0x77, 0x78, 0xcf, 0xab, 0x73, 0x86, 0xc3, 0xf0, 0x36, 0x77, 0x90, 0x0d,
+ 0xeb, 0xbb, 0xc4, 0xa2, 0xd8, 0x39, 0x1c, 0x9b, 0xee, 0x17, 0x84, 0x8e, 0x0f, 0xc9, 0x68, 0x6a,
+ 0xd2, 0xb9, 0x83, 0xaf, 0xa6, 0x98, 0xe1, 0x8e, 0x4d, 0x8f, 0xc6, 0xf3, 0x6f, 0xfd, 0x13, 0xd8,
+ 0xc8, 0x56, 0x18, 0x40, 0x26, 0x9f, 0xa7, 0x84, 0xe6, 0x1d, 0xc3, 0xda, 0xce, 0x09, 0x75, 0xcc,
+ 0xbe, 0x74, 0xc1, 0x9f, 0x76, 0x25, 0x4f, 0x0e, 0xf9, 0x68, 0xf0, 0x0b, 0x14, 0xaa, 0x10, 0x3c,
+ 0x1b, 0xe8, 0x5d, 0xb8, 0x9f, 0xa5, 0x57, 0x5a, 0xbb, 0x0a, 0x15, 0xd7, 0x13, 0x4a, 0x94, 0x0f,
+ 0x04, 0x9c, 0xce, 0x91, 0xd1, 0x14, 0x0f, 0xba, 0x14, 0x9f, 0x50, 0x99, 0x5e, 0x20, 0x44, 0x47,
+ 0xf8, 0x84, 0xea, 0x73, 0xd0, 0xf6, 0x70, 0x7c, 0xf1, 0x2b, 0x08, 0x7e, 0x50, 0x01, 0x21, 0x03,
+ 0x57, 0xbe, 0x01, 0x2b, 0x9e, 0x5b, 0xae, 0xbe, 0x80, 0x66, 0xaa, 0x5a, 0xe9, 0x54, 0x24, 0x26,
+ 0x4a, 0x34, 0x26, 0x51, 0x8f, 0x73, 0x67, 0x78, 0x9c, 0x4f, 0x78, 0xec, 0x42, 0xc3, 0x57, 0x2d,
+ 0x93, 0xf7, 0xfa, 0xfd, 0x35, 0x60, 0x25, 0x45, 0xe9, 0x79, 0xbc, 0x6d, 0x40, 0x79, 0x22, 0x26,
+ 0x78, 0x6f, 0x38, 0xd9, 0xdc, 0xfe, 0xeb, 0x4d, 0x0f, 0xf5, 0x0e, 0xb1, 0x73, 0x4c, 0xfa, 0x18,
+ 0xfd, 0x12, 0xea, 0xf1, 0xdf, 0x1f, 0xd0, 0x7a, 0x94, 0x47, 0x25, 0x7e, 0x2a, 0xd1, 0x36, 0xb2,
+ 0x07, 0x08, 0xfb, 0xf4, 0xd2, 0x77, 0xbf, 0xdf, 0xcc, 0xa9, 0x39, 0xb4, 0x1f, 0x2e, 0xb4, 0x35,
+ 0x52, 0xaa, 0xfc, 0x62, 0xc1, 0x95, 0xcc, 0xfa, 0xbf, 0xb7, 0xd2, 0x13, 0x05, 0x7d, 0x09, 0x4b,
+ 0xd1, 0x8a, 0x35, 0x5a, 0x8b, 0xda, 0x11, 0x2b, 0xc5, 0x6b, 0xf7, 0xb3, 0xba, 0x13, 0x4b, 0xff,
+ 0x82, 0xbd, 0x98, 0x83, 0x6a, 0x2a, 0x6a, 0x06, 0x33, 0x13, 0xa5, 0x6d, 0x6d, 0x35, 0xbd, 0x33,
+ 0xe6, 0xb9, 0x05, 0x77, 0x52, 0x8b, 0x98, 0xe8, 0x61, 0x64, 0x7a, 0x46, 0x41, 0x56, 0x7b, 0x74,
+ 0xc6, 0xa8, 0x98, 0xb6, 0x2f, 0x61, 0x29, 0x5a, 0x32, 0x0b, 0x62, 0x93, 0x5a, 0xeb, 0x0b, 0x62,
+ 0x93, 0x5e, 0x69, 0x0b, 0xc5, 0x66, 0x1f, 0x2a, 0x7e, 0x71, 0x2b, 0xd8, 0xc2, 0x78, 0x65, 0x2d,
+ 0xd8, 0xc2, 0x44, 0x25, 0x2c, 0xb4, 0xd6, 0xcf, 0x01, 0x82, 0x47, 0x08, 0x5a, 0x49, 0x3e, 0x99,
+ 0xbc, 0xd5, 0xb4, 0xb4, 0xae, 0x98, 0xcf, 0x2f, 0xa1, 0x1a, 0xfa, 0xc5, 0x10, 0x69, 0xd1, 0xdd,
+ 0x0e, 0xff, 0x64, 0xa9, 0x35, 0x53, 0xfb, 0x92, 0x31, 0x8c, 0xbe, 0xeb, 0x83, 0x18, 0xa6, 0x16,
+ 0x0f, 0x82, 0x18, 0xa6, 0x97, 0x03, 0x42, 0x7e, 0x1f, 0x40, 0x35, 0xf4, 0xf8, 0x42, 0x5a, 0xf6,
+ 0x5b, 0x31, 0x30, 0x35, 0xe5, 0xb5, 0x16, 0x5a, 0xf1, 0x2b, 0xb8, 0x19, 0x7b, 0xe5, 0xa0, 0xfb,
+ 0x99, 0xcf, 0x1f, 0xb1, 0xf2, 0xfa, 0x19, 0xcf, 0x23, 0x3f, 0x10, 0x7b, 0xa0, 0x7a, 0x8f, 0x02,
+ 0x74, 0xcf, 0x87, 0xb2, 0xe8, 0x1b, 0x45, 0x6b, 0x24, 0x3b, 0x12, 0x46, 0xfe, 0x0a, 0x96, 0x13,
+ 0x2c, 0x1a, 0xf9, 0xe0, 0x91, 0xf5, 0x9e, 0xd0, 0xde, 0x3f, 0x65, 0x44, 0xcc, 0xd4, 0xd7, 0x70,
+ 0x37, 0x9d, 0xfe, 0xa1, 0x47, 0x67, 0xd1, 0x43, 0xa1, 0xeb, 0x83, 0xf3, 0xb1, 0xc8, 0x90, 0x53,
+ 0x5d, 0x0f, 0x31, 0x03, 0x26, 0x13, 0x47, 0xcc, 0x04, 0xd5, 0x8b, 0x23, 0x66, 0x92, 0x04, 0x45,
+ 0x15, 0xc4, 0x4b, 0x9e, 0x81, 0x82, 0x8c, 0x9a, 0x6b, 0xa0, 0x20, 0xab, 0x5a, 0x1a, 0x52, 0xf0,
+ 0x0a, 0x6e, 0xa7, 0x15, 0x16, 0xd1, 0x83, 0xd3, 0xcb, 0x8e, 0x42, 0xd1, 0xc3, 0xf3, 0xd4, 0x26,
+ 0x43, 0xca, 0x16, 0xd0, 0xc8, 0xa2, 0x4f, 0xe8, 0x7b, 0x41, 0xae, 0x9f, 0xca, 0xe8, 0xb4, 0xcd,
+ 0xb3, 0x07, 0x46, 0x15, 0x6f, 0x2a, 0x4f, 0x14, 0x34, 0x86, 0x5b, 0x29, 0x8c, 0x01, 0xe9, 0x21,
+ 0xe8, 0xcb, 0x60, 0x31, 0xda, 0x83, 0x53, 0xc7, 0x24, 0x9c, 0xec, 0xc1, 0x72, 0xe2, 0xae, 0x0e,
+ 0x12, 0x3d, 0x8b, 0x3b, 0x04, 0x89, 0x9e, 0x79, 0xd1, 0x07, 0x3a, 0xda, 0x4f, 0xbe, 0x62, 0xa3,
+ 0x2d, 0xb3, 0xd7, 0xea, 0xdb, 0x93, 0x2d, 0xf1, 0xf9, 0xb1, 0xed, 0x8c, 0xb6, 0xc4, 0x1a, 0xe2,
+ 0xbf, 0x38, 0xb6, 0x46, 0xb6, 0x6c, 0xcf, 0x7a, 0xbd, 0x12, 0x17, 0xfd, 0xe0, 0xff, 0x01, 0x00,
+ 0x00, 0xff, 0xff, 0x34, 0xf1, 0x98, 0x5e, 0x18, 0x22, 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 b9d7783fe..63251e66e 100644
--- a/ruby/proto/gitaly/commit_pb.rb
+++ b/ruby/proto/gitaly/commit_pb.rb
@@ -49,6 +49,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
optional :repository, :message, 1, "gitaly.Repository"
optional :from, :bytes, 2
optional :to, :bytes, 3
+ optional :pagination_params, :message, 4, "gitaly.PaginationParameter"
end
add_message "gitaly.CommitsBetweenResponse" do
repeated :commits, :message, 1, "gitaly.GitCommit"