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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2020-06-18 08:56:34 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2020-06-18 08:56:34 +0300
commit784611b94777b970ce7dd4b08e3b359cb10dc284 (patch)
treee5ee36065d498ef581e756afda846cf27fd42952
parentfb0e6249e406e64a4516238e6da61ed5dbbbe536 (diff)
parentbd3ee92a68c4dd8772d533ca7fe808472c6e36ec (diff)
Merge branch 'sh-add-last-commit-for-path-literal-option' into 'master'
Make --literal-pathspecs optional for LastCommitForPath See merge request gitlab-org/gitaly!2285
-rw-r--r--changelogs/unreleased/sh-add-last-commit-for-path-literal-option.yml5
-rw-r--r--internal/git/log/last_commit.go9
-rw-r--r--internal/service/commit/last_commit_for_path.go4
-rw-r--r--internal/service/commit/last_commit_for_path_test.go47
-rw-r--r--internal/service/commit/list_last_commits_for_tree.go2
-rw-r--r--proto/commit.proto1
-rw-r--r--proto/go/gitalypb/commit.pb.go276
-rw-r--r--ruby/proto/gitaly/commit_pb.rb1
8 files changed, 208 insertions, 137 deletions
diff --git a/changelogs/unreleased/sh-add-last-commit-for-path-literal-option.yml b/changelogs/unreleased/sh-add-last-commit-for-path-literal-option.yml
new file mode 100644
index 000000000..a61817dd3
--- /dev/null
+++ b/changelogs/unreleased/sh-add-last-commit-for-path-literal-option.yml
@@ -0,0 +1,5 @@
+---
+title: Make --literal-pathspecs optional for LastCommitForPath
+merge_request: 2285
+author:
+type: fixed
diff --git a/internal/git/log/last_commit.go b/internal/git/log/last_commit.go
index 76b3c9915..18890516c 100644
--- a/internal/git/log/last_commit.go
+++ b/internal/git/log/last_commit.go
@@ -12,8 +12,13 @@ import (
)
// LastCommitForPath returns the last commit which modified path.
-func LastCommitForPath(ctx context.Context, batch *catfile.Batch, repo *gitalypb.Repository, revision string, path string) (*gitalypb.GitCommit, error) {
- cmd, err := git.SafeCmd(ctx, repo, nil, git.SubCmd{
+func LastCommitForPath(ctx context.Context, batch *catfile.Batch, repo *gitalypb.Repository, revision string, path string, literalPathspec bool) (*gitalypb.GitCommit, error) {
+ var globals []git.Option
+ if literalPathspec {
+ globals = []git.Option{git.Flag{"--literal-pathspecs"}}
+ }
+
+ cmd, err := git.SafeCmd(ctx, repo, globals, git.SubCmd{
Name: "log",
Flags: []git.Option{git.Flag{"--format=%H"}, git.Flag{"--max-count=1"}},
Args: []string{revision},
diff --git a/internal/service/commit/last_commit_for_path.go b/internal/service/commit/last_commit_for_path.go
index 350b90b3b..efc262325 100644
--- a/internal/service/commit/last_commit_for_path.go
+++ b/internal/service/commit/last_commit_for_path.go
@@ -35,7 +35,9 @@ func lastCommitForPath(ctx context.Context, in *gitalypb.LastCommitForPathReques
return nil, err
}
- commit, err := log.LastCommitForPath(ctx, c, repo, string(in.GetRevision()), path)
+ literalPathspec := in.GetLiteralPathspec()
+
+ commit, err := log.LastCommitForPath(ctx, c, repo, string(in.GetRevision()), path, literalPathspec)
if log.IsNotFound(err) {
return &gitalypb.LastCommitForPathResponse{}, nil
}
diff --git a/internal/service/commit/last_commit_for_path_test.go b/internal/service/commit/last_commit_for_path_test.go
index 2b6f2ec75..9e3741f30 100644
--- a/internal/service/commit/last_commit_for_path_test.go
+++ b/internal/service/commit/last_commit_for_path_test.go
@@ -66,6 +66,12 @@ func TestSuccessfulLastCommitForPathRequest(t *testing.T) {
path: []byte("/"),
},
{
+ desc: "path is '*'",
+ revision: "570e7b2abdd848b95f2f578043fc23bd6f6fd24d",
+ commit: commit,
+ path: []byte("*"),
+ },
+ {
desc: "file does not exist in this commit",
revision: "570e7b2abdd848b95f2f578043fc23bd6f6fd24d",
path: []byte("files/lfs/lfs_object.iso"),
@@ -142,3 +148,44 @@ func TestFailedLastCommitForPathRequest(t *testing.T) {
})
}
}
+
+func TestSuccessfulLastCommitWithGlobCharacters(t *testing.T) {
+ server, serverSocketPath := startTestServices(t)
+ defer server.Stop()
+
+ client, conn := newCommitServiceClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, testRepoPath, cleanupFn := testhelper.NewTestRepoWithWorktree(t)
+ defer cleanupFn()
+
+ // This is an arbitrary blob known to exist in the test repository
+ const blobID = "c60514b6d3d6bf4bec1030f70026e34dfbd69ad5"
+ path := ":wq"
+
+ commitID := testhelper.CommitBlobWithName(t,
+ testRepoPath,
+ blobID,
+ path,
+ "commit for filename with glob characters",
+ )
+
+ request := &gitalypb.LastCommitForPathRequest{
+ Repository: testRepo,
+ Revision: []byte(commitID),
+ Path: []byte(path),
+ LiteralPathspec: true,
+ }
+
+ ctx, cancel := context.WithCancel(context.Background())
+ defer cancel()
+ response, err := client.LastCommitForPath(ctx, request)
+ require.NoError(t, err)
+ require.NotNil(t, response.GetCommit())
+ require.Equal(t, commitID, response.GetCommit().Id)
+
+ request.LiteralPathspec = false
+ response, err = client.LastCommitForPath(ctx, request)
+ require.NoError(t, err)
+ require.Nil(t, response.GetCommit())
+}
diff --git a/internal/service/commit/list_last_commits_for_tree.go b/internal/service/commit/list_last_commits_for_tree.go
index e938b8631..04fd0baba 100644
--- a/internal/service/commit/list_last_commits_for_tree.go
+++ b/internal/service/commit/list_last_commits_for_tree.go
@@ -68,7 +68,7 @@ func listLastCommitsForTree(in *gitalypb.ListLastCommitsForTreeRequest, stream g
}
for _, entry := range entries[offset:limit] {
- commit, err := log.LastCommitForPath(ctx, c, repo, in.GetRevision(), entry.Path)
+ commit, err := log.LastCommitForPath(ctx, c, repo, in.GetRevision(), entry.Path, false)
if err != nil {
return err
}
diff --git a/proto/commit.proto b/proto/commit.proto
index ba4cbeaba..ad86b2725 100644
--- a/proto/commit.proto
+++ b/proto/commit.proto
@@ -363,6 +363,7 @@ message LastCommitForPathRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
bytes path = 3;
+ bool literal_pathspec = 4;
}
message LastCommitForPathResponse {
diff --git a/proto/go/gitalypb/commit.pb.go b/proto/go/gitalypb/commit.pb.go
index 7051fbe36..589d21d1e 100644
--- a/proto/go/gitalypb/commit.pb.go
+++ b/proto/go/gitalypb/commit.pb.go
@@ -1967,6 +1967,7 @@ type LastCommitForPathRequest 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"`
Path []byte `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
+ LiteralPathspec bool `protobuf:"varint,4,opt,name=literal_pathspec,json=literalPathspec,proto3" json:"literal_pathspec,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -2018,6 +2019,13 @@ func (m *LastCommitForPathRequest) GetPath() []byte {
return nil
}
+func (m *LastCommitForPathRequest) GetLiteralPathspec() bool {
+ if m != nil {
+ return m.LiteralPathspec
+ }
+ return false
+}
+
type LastCommitForPathResponse struct {
// commit is nil when the commit was not found
Commit *GitCommit `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
@@ -2777,140 +2785,142 @@ func init() {
func init() { proto.RegisterFile("commit.proto", fileDescriptor_db7163399a465f48) }
var fileDescriptor_db7163399a465f48 = []byte{
- // 2126 bytes of a gzipped FileDescriptorProto
+ // 2148 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x59, 0x49, 0x73, 0x1b, 0xc7,
- 0x15, 0xf6, 0x60, 0xe3, 0xe0, 0x81, 0xa2, 0xc0, 0xd6, 0x06, 0x0e, 0x49, 0x91, 0x1e, 0x49, 0x0e,
- 0x5d, 0x76, 0x40, 0x86, 0x49, 0x5c, 0xce, 0x29, 0x25, 0xd8, 0x24, 0x8b, 0x8c, 0x44, 0x2a, 0x23,
- 0x56, 0xb9, 0xec, 0xaa, 0x14, 0x32, 0xc4, 0x34, 0x80, 0xb6, 0x06, 0x18, 0x68, 0xa6, 0x41, 0x11,
- 0xc9, 0x21, 0x39, 0xe4, 0x9e, 0x2a, 0x5f, 0x92, 0x5b, 0x7e, 0x40, 0x7e, 0x80, 0x2b, 0x7f, 0x20,
- 0xb9, 0xe7, 0x92, 0x7b, 0xfe, 0x45, 0x7c, 0x4a, 0xf5, 0x32, 0xd3, 0xb3, 0x72, 0x91, 0x48, 0x5d,
- 0x50, 0xdd, 0xaf, 0x97, 0xb7, 0xcc, 0xeb, 0xaf, 0xbf, 0x7e, 0x80, 0xf9, 0x9e, 0x37, 0x1a, 0x11,
- 0xda, 0x9e, 0xf8, 0x1e, 0xf5, 0x50, 0x6d, 0x40, 0xa8, 0xed, 0xce, 0x0c, 0x70, 0xc9, 0x58, 0xca,
- 0x8c, 0xf9, 0x60, 0x68, 0xfb, 0xd8, 0x91, 0xbd, 0xb5, 0x81, 0xe7, 0x0d, 0x5c, 0xbc, 0xc9, 0x7b,
- 0x27, 0xd3, 0xfe, 0x26, 0x25, 0x23, 0x1c, 0x50, 0x7b, 0x34, 0x11, 0x13, 0xcc, 0x6f, 0x01, 0x7d,
- 0xc1, 0xb7, 0x7c, 0x49, 0x6d, 0x1a, 0x58, 0xf8, 0xf5, 0x14, 0x07, 0x14, 0x7d, 0x0e, 0xe0, 0xe3,
- 0x89, 0x17, 0x10, 0xea, 0xf9, 0xb3, 0x96, 0xb6, 0xae, 0x6d, 0x34, 0xb6, 0x51, 0x5b, 0x68, 0x6b,
- 0x5b, 0xd1, 0x48, 0xa7, 0xf2, 0xd7, 0x7f, 0x7e, 0xaa, 0x59, 0xb1, 0xb9, 0xc8, 0x00, 0xdd, 0xc7,
- 0xa7, 0x24, 0x20, 0xde, 0xb8, 0x55, 0x5a, 0xd7, 0x36, 0xe6, 0xad, 0xa8, 0x6f, 0xf6, 0xe0, 0x4e,
- 0x42, 0x57, 0x30, 0xf1, 0xc6, 0x01, 0x46, 0x4d, 0x28, 0x7b, 0xc4, 0xe1, 0x5a, 0xea, 0x16, 0x6b,
- 0xa2, 0x15, 0xa8, 0xdb, 0x8e, 0x43, 0x28, 0xf1, 0xc6, 0x01, 0xdf, 0xa5, 0x6a, 0x29, 0x01, 0x1b,
- 0x75, 0xb0, 0x8b, 0xc5, 0x68, 0x59, 0x8c, 0x46, 0x02, 0xf3, 0xcf, 0x1a, 0x3c, 0x10, 0x5a, 0xf6,
- 0x83, 0xa7, 0xe3, 0x1e, 0x0e, 0xa8, 0xe7, 0xbf, 0xbb, 0x5b, 0x6b, 0xd0, 0xb0, 0xe5, 0x66, 0x5d,
- 0xe2, 0x70, 0x9b, 0xea, 0x16, 0x84, 0xa2, 0x7d, 0x07, 0x2d, 0x81, 0xde, 0x1b, 0x12, 0xd7, 0x61,
- 0xa3, 0x65, 0x3e, 0x3a, 0xc7, 0xfb, 0xfb, 0x8e, 0xb9, 0x05, 0xad, 0xac, 0x41, 0xd2, 0xf7, 0xbb,
- 0x50, 0x3d, 0xb5, 0xdd, 0x29, 0xe6, 0xc6, 0xe8, 0x96, 0xe8, 0x98, 0xdf, 0x69, 0xd0, 0x3c, 0xf6,
- 0x31, 0xde, 0x19, 0x53, 0x7f, 0x76, 0xa3, 0xdf, 0x04, 0x21, 0xa8, 0x4c, 0x6c, 0x3a, 0xe4, 0x36,
- 0xcf, 0x5b, 0xbc, 0xcd, 0x8c, 0x72, 0xc9, 0x88, 0xd0, 0x56, 0x65, 0x5d, 0xdb, 0x28, 0x5b, 0xa2,
- 0x63, 0xfe, 0x5b, 0x83, 0xc5, 0x98, 0x51, 0xd2, 0x81, 0xcf, 0xa1, 0x42, 0x67, 0x13, 0x61, 0xff,
- 0xc2, 0xf6, 0xe3, 0xd0, 0x9e, 0xcc, 0xc4, 0xf6, 0xd1, 0xc9, 0xb7, 0xb8, 0x47, 0x8f, 0x67, 0x13,
- 0x6c, 0xf1, 0x15, 0xe1, 0x67, 0x2f, 0xa9, 0xcf, 0x8e, 0xa0, 0x12, 0x90, 0xdf, 0x61, 0x6e, 0x4b,
- 0xd9, 0xe2, 0x6d, 0x26, 0x1b, 0x79, 0x0e, 0xe6, 0xa6, 0x54, 0x2d, 0xde, 0x66, 0x32, 0xc7, 0xa6,
- 0x76, 0xab, 0x2a, 0x6c, 0x66, 0x6d, 0xf3, 0xe7, 0x00, 0x4a, 0x03, 0x02, 0xa8, 0x7d, 0x71, 0xf4,
- 0xfc, 0xf9, 0xfe, 0x71, 0xf3, 0x03, 0xa4, 0x43, 0xa5, 0xf3, 0xec, 0xa8, 0xd3, 0xd4, 0x58, 0xeb,
- 0xd8, 0xda, 0xd9, 0x69, 0x96, 0xd0, 0x1c, 0x94, 0x8f, 0x9f, 0xee, 0x35, 0xcb, 0xe6, 0x14, 0xee,
- 0x89, 0x6f, 0x13, 0x74, 0x30, 0x7d, 0x83, 0xf1, 0xf8, 0xdd, 0xa3, 0x8d, 0xa0, 0xd2, 0xf7, 0xbd,
- 0x91, 0x8c, 0x34, 0x6f, 0xa3, 0x05, 0x28, 0x51, 0x4f, 0xc6, 0xb8, 0x44, 0x3d, 0x73, 0x07, 0xee,
- 0xa7, 0xd5, 0xca, 0x78, 0x7e, 0x02, 0x73, 0xe2, 0x88, 0x07, 0x2d, 0x6d, 0xbd, 0xbc, 0xd1, 0xd8,
- 0x5e, 0x0c, 0x95, 0xee, 0x11, 0x2a, 0xd6, 0x58, 0xe1, 0x0c, 0xf3, 0xfb, 0x12, 0x3b, 0x51, 0xd3,
- 0xb1, 0x1c, 0xb8, 0xd9, 0xe3, 0x8b, 0xb6, 0xa0, 0x6a, 0xf7, 0x29, 0xf6, 0xb9, 0x1f, 0x8d, 0x6d,
- 0xa3, 0x2d, 0xb0, 0xa5, 0x1d, 0x62, 0x4b, 0xfb, 0x38, 0xc4, 0x16, 0x4b, 0x4c, 0x44, 0xdb, 0x50,
- 0x3b, 0xc1, 0x7d, 0xcf, 0x17, 0x9f, 0xef, 0xfc, 0x25, 0x72, 0x66, 0x94, 0x90, 0xd5, 0x58, 0x42,
- 0x2e, 0x43, 0x7d, 0x64, 0x9f, 0x75, 0x7b, 0xcc, 0xd5, 0x56, 0x8d, 0x67, 0x82, 0x3e, 0xb2, 0xcf,
- 0xb8, 0xeb, 0x2c, 0x8f, 0x6c, 0xd7, 0x6d, 0xcd, 0xf1, 0x03, 0xc4, 0x9a, 0xe8, 0x43, 0x98, 0xef,
- 0x13, 0x3f, 0xa0, 0xdd, 0x89, 0xed, 0xe3, 0x31, 0x6d, 0xe9, 0x7c, 0xa8, 0xc1, 0x65, 0x2f, 0xb8,
- 0xc8, 0xfc, 0x14, 0xee, 0x26, 0x03, 0xa7, 0xce, 0xa3, 0xd0, 0xa2, 0x71, 0x2d, 0xa2, 0x63, 0xfe,
- 0x5d, 0x83, 0x15, 0x3e, 0xfd, 0x4b, 0x72, 0x8a, 0xfd, 0x01, 0x19, 0x0f, 0xae, 0x2d, 0xe0, 0x97,
- 0xc8, 0x96, 0xa4, 0xfb, 0x73, 0x49, 0xf7, 0x0f, 0x2a, 0x7a, 0xa5, 0x59, 0x3d, 0xa8, 0xe8, 0xd5,
- 0x66, 0xed, 0xa0, 0xa2, 0xd7, 0x9a, 0x73, 0x66, 0x17, 0x56, 0x0b, 0x8c, 0x95, 0x4e, 0xae, 0x02,
- 0xb8, 0xb8, 0x4f, 0xbb, 0x71, 0x4f, 0xeb, 0x4c, 0x22, 0x02, 0xba, 0x06, 0x0d, 0x9f, 0x0c, 0x86,
- 0xe1, 0xb8, 0xc0, 0x5f, 0xe0, 0x22, 0x3e, 0xc1, 0xfc, 0x41, 0x83, 0x7a, 0x74, 0xc0, 0x73, 0xe0,
- 0x7b, 0x09, 0x74, 0xdf, 0xf3, 0x68, 0x57, 0x1d, 0xef, 0x39, 0xd6, 0x3f, 0x12, 0x47, 0x3c, 0x03,
- 0x37, 0x9b, 0x12, 0x42, 0x2a, 0x1c, 0x42, 0x96, 0x33, 0x10, 0xd2, 0xe6, 0xbf, 0x31, 0xe4, 0x08,
- 0x31, 0xa1, 0x1a, 0xc3, 0x84, 0x55, 0x00, 0x71, 0x2a, 0xb8, 0xd6, 0x1a, 0xd7, 0x5a, 0x17, 0x12,
- 0xa6, 0x77, 0x19, 0xea, 0x7d, 0xd7, 0x66, 0x19, 0x41, 0x87, 0x3c, 0x84, 0xf3, 0x96, 0xce, 0x04,
- 0x2f, 0x6c, 0x3a, 0x34, 0x3f, 0x81, 0x7a, 0xa4, 0x22, 0x82, 0x8b, 0x0f, 0x22, 0xb8, 0xd0, 0x62,
- 0x70, 0x52, 0x36, 0xff, 0xa6, 0xc1, 0xbd, 0x3d, 0x4c, 0x43, 0xeb, 0x08, 0x0e, 0xde, 0x3f, 0x40,
- 0xaf, 0x40, 0xdd, 0xc7, 0xbd, 0xa9, 0x1f, 0x90, 0x53, 0x11, 0x36, 0xdd, 0x52, 0x02, 0x06, 0x2e,
- 0x69, 0x03, 0x15, 0xb8, 0x60, 0x21, 0x4a, 0x83, 0x8b, 0xc2, 0xeb, 0x70, 0x86, 0x39, 0x84, 0xe6,
- 0x33, 0x12, 0xd0, 0x5d, 0xe2, 0xde, 0xb0, 0x8b, 0xe6, 0xc7, 0xb0, 0x18, 0xd3, 0xa4, 0x4e, 0x22,
- 0xf3, 0x55, 0x58, 0x3a, 0x6f, 0x89, 0x8e, 0x49, 0x60, 0x71, 0x97, 0x8c, 0x1d, 0x09, 0x84, 0x37,
- 0x6a, 0xd5, 0x2f, 0x01, 0xc5, 0x55, 0x49, 0xb3, 0x3e, 0x86, 0x9a, 0xc8, 0x2a, 0xa9, 0x27, 0x07,
- 0x9e, 0xe5, 0x04, 0x13, 0xc3, 0x03, 0xe6, 0x56, 0x08, 0xf4, 0xb3, 0x23, 0xe2, 0xbc, 0xbb, 0xc5,
- 0xd1, 0xad, 0x59, 0x96, 0xa7, 0xcd, 0xdc, 0x83, 0x56, 0x56, 0xcd, 0xdb, 0xdc, 0x26, 0x14, 0x96,
- 0x13, 0x1b, 0x59, 0xb8, 0x7f, 0x68, 0x8f, 0xf0, 0xbb, 0xdb, 0xbc, 0xcc, 0xd2, 0xb5, 0xdf, 0x1d,
- 0xdb, 0x23, 0x1c, 0x70, 0xcb, 0x79, 0x98, 0xf9, 0xe6, 0x81, 0xf9, 0x3f, 0x0d, 0x56, 0xf2, 0xd5,
- 0x4a, 0x1f, 0x36, 0x2f, 0xf6, 0xa1, 0x53, 0x6a, 0x69, 0x91, 0x1f, 0xc8, 0x82, 0x86, 0x84, 0x02,
- 0x1f, 0xf7, 0x85, 0xc2, 0xc6, 0xf6, 0x4f, 0xc2, 0x45, 0xe7, 0xe9, 0x6a, 0x8b, 0x81, 0x5d, 0x46,
- 0xd0, 0xfa, 0x96, 0x04, 0x14, 0x0b, 0xf7, 0x03, 0xe3, 0x18, 0xe6, 0xe3, 0x63, 0x57, 0x48, 0x03,
- 0x8e, 0x86, 0xd2, 0x7b, 0x99, 0x63, 0x73, 0xd2, 0x79, 0xf3, 0x8f, 0x25, 0xb8, 0xc7, 0x72, 0xec,
- 0xa9, 0xeb, 0xbe, 0x97, 0x1b, 0x3c, 0x71, 0x91, 0x94, 0x53, 0xf7, 0x28, 0x63, 0x5f, 0xaf, 0xc8,
- 0x24, 0x64, 0x5a, 0xac, 0x8d, 0x7e, 0x01, 0x55, 0xcf, 0x77, 0xb0, 0xcf, 0xa1, 0x76, 0x61, 0xfb,
- 0x51, 0x68, 0x41, 0xae, 0xd1, 0xed, 0x23, 0x36, 0xd5, 0x12, 0x2b, 0xcc, 0x27, 0x50, 0xe5, 0x7d,
- 0x06, 0xa3, 0x87, 0x47, 0x87, 0x3b, 0x12, 0x50, 0x8f, 0x5e, 0x1c, 0x09, 0x26, 0xf6, 0xe5, 0xd3,
- 0xe3, 0x9d, 0x66, 0x89, 0x81, 0x55, 0x7a, 0xb3, 0xb7, 0xc9, 0xdd, 0xef, 0x2a, 0xf1, 0xd3, 0x7a,
- 0xc3, 0x61, 0x8c, 0xf8, 0xb1, 0x08, 0xa1, 0xe8, 0xa0, 0xfb, 0x50, 0xf3, 0xfa, 0xfd, 0x00, 0x53,
- 0x19, 0x41, 0xd9, 0x53, 0x40, 0x56, 0x8d, 0x01, 0x19, 0x9b, 0xdd, 0xf7, 0x5c, 0xd7, 0x7b, 0xc3,
- 0xef, 0x2a, 0xdd, 0x92, 0x3d, 0x76, 0xf9, 0xb2, 0xc8, 0x77, 0x47, 0xd8, 0x1f, 0xe0, 0x40, 0xb2,
- 0x1a, 0x60, 0xa2, 0xe7, 0x5c, 0xc2, 0xc8, 0x8d, 0x43, 0x02, 0xfb, 0xc4, 0xc5, 0xdd, 0x37, 0xb6,
- 0xfb, 0x2a, 0x24, 0x37, 0x52, 0xf6, 0x95, 0xed, 0xbe, 0x52, 0x44, 0xad, 0x7e, 0x75, 0xa2, 0x06,
- 0x97, 0x26, 0x6a, 0x92, 0x77, 0x35, 0x8a, 0x79, 0xd7, 0x7c, 0x86, 0x77, 0x31, 0xb7, 0xed, 0x29,
- 0x1d, 0x7a, 0x7e, 0xeb, 0x16, 0x0f, 0xaa, 0xec, 0xa1, 0xcf, 0xc2, 0x44, 0x5b, 0xe0, 0x89, 0xb6,
- 0x1e, 0x4f, 0xb4, 0xf3, 0xb2, 0x6c, 0xf9, 0x9c, 0x2c, 0x33, 0x3b, 0x70, 0x27, 0xb1, 0xfe, 0x6d,
- 0x12, 0x6b, 0x1c, 0x32, 0xf5, 0x67, 0xf6, 0x78, 0x30, 0xb5, 0x07, 0x37, 0x7d, 0x17, 0xfe, 0x37,
- 0x7a, 0xbe, 0xc6, 0x14, 0x4a, 0xc3, 0x77, 0xa1, 0xee, 0x86, 0x42, 0x69, 0xfa, 0x46, 0xa8, 0xb0,
- 0x60, 0x4d, 0x3b, 0x94, 0x58, 0x6a, 0xa9, 0xf1, 0x07, 0xd0, 0x43, 0x31, 0x3b, 0xf5, 0x1c, 0x99,
- 0x04, 0x7d, 0xe3, 0x6d, 0x96, 0xb1, 0xbc, 0x88, 0xc0, 0x8d, 0x2b, 0x59, 0xa2, 0x23, 0xa8, 0xb1,
- 0xeb, 0xf9, 0xf2, 0x79, 0x2b, 0x3a, 0x8c, 0x77, 0xf5, 0x89, 0x8b, 0x25, 0xa6, 0xb0, 0xcc, 0xbf,
- 0x65, 0xd5, 0x99, 0x44, 0x80, 0xca, 0x5d, 0xa8, 0x9e, 0xcc, 0x28, 0x0e, 0x38, 0x80, 0x54, 0x2c,
- 0xd1, 0x31, 0x7f, 0x0f, 0xb7, 0x2d, 0xfb, 0x4d, 0xc7, 0xbd, 0x96, 0xdb, 0xe5, 0x8a, 0xe4, 0xc9,
- 0xfc, 0x08, 0x9a, 0x4a, 0xb9, 0x8c, 0x6c, 0xf8, 0xa2, 0xd4, 0x62, 0x2f, 0xca, 0x3f, 0x69, 0xd0,
- 0x7a, 0x66, 0x87, 0x97, 0xc5, 0xae, 0xe7, 0x33, 0xae, 0xf8, 0xfe, 0xcd, 0xdd, 0x85, 0xa5, 0x1c,
- 0x2b, 0xae, 0xce, 0x46, 0xbe, 0xd7, 0x60, 0x95, 0xdd, 0x7d, 0x6a, 0xb3, 0x60, 0xd7, 0xf3, 0x19,
- 0xef, 0xbb, 0x7e, 0x9f, 0xea, 0x57, 0x29, 0x30, 0xe4, 0x00, 0x68, 0x35, 0x0e, 0xa0, 0xe6, 0x7f,
- 0x34, 0x78, 0x58, 0x64, 0xb9, 0x8c, 0xc3, 0x61, 0xfa, 0x48, 0xff, 0x2c, 0x7e, 0xdd, 0x17, 0x2f,
- 0x54, 0x17, 0x3e, 0x97, 0x86, 0x9b, 0x18, 0x18, 0x6e, 0x25, 0x46, 0x62, 0x81, 0x2e, 0x5d, 0x74,
- 0xdf, 0xaf, 0x02, 0x30, 0x27, 0xbb, 0x22, 0xef, 0x2b, 0xdc, 0xed, 0x3a, 0x93, 0x74, 0x98, 0xe0,
- 0xa0, 0xa2, 0x6b, 0xcd, 0xd2, 0x41, 0x45, 0x2f, 0x37, 0x2b, 0xe6, 0xbf, 0xa2, 0xc3, 0x1e, 0x74,
- 0x66, 0xcf, 0x71, 0x10, 0xb0, 0x83, 0x7a, 0xa3, 0x19, 0xa6, 0x62, 0x5c, 0x4e, 0x5f, 0x52, 0x39,
- 0x5f, 0x24, 0xef, 0x2d, 0x7e, 0x17, 0xaa, 0xaf, 0xa7, 0xd8, 0x9f, 0xc9, 0x37, 0x96, 0xe8, 0x30,
- 0x12, 0x9a, 0x75, 0xe4, 0x6d, 0xf0, 0xd6, 0x83, 0xb5, 0x5d, 0xe2, 0x52, 0xec, 0xbf, 0x1c, 0xda,
- 0xc1, 0x57, 0x84, 0x0e, 0x5f, 0x92, 0xc1, 0xd8, 0xa6, 0x53, 0x1f, 0x5f, 0xcf, 0x63, 0x3b, 0x18,
- 0xda, 0x21, 0x07, 0xe5, 0x6d, 0xf3, 0x33, 0x58, 0x2f, 0x56, 0xa8, 0xe0, 0x81, 0xaf, 0xd3, 0x62,
- 0xeb, 0x4e, 0x61, 0x75, 0xe7, 0x8c, 0xfa, 0x76, 0x4f, 0xba, 0x10, 0x2d, 0xbb, 0x16, 0xbe, 0x2c,
- 0x09, 0x6c, 0xf4, 0x80, 0xd6, 0x85, 0x60, 0xdf, 0x31, 0xbb, 0xf0, 0xb0, 0x48, 0xaf, 0xb4, 0x76,
- 0x05, 0xea, 0x41, 0x28, 0x94, 0x88, 0xa6, 0x04, 0x9c, 0x60, 0x90, 0xc1, 0x18, 0x3b, 0x5d, 0x8a,
- 0xcf, 0xa8, 0x4c, 0x10, 0x10, 0xa2, 0x63, 0x7c, 0x46, 0xcd, 0x29, 0x18, 0x7b, 0x38, 0xbd, 0xf9,
- 0x35, 0x04, 0x5f, 0xbd, 0xd0, 0x89, 0x13, 0xc8, 0x07, 0x4c, 0x3d, 0x74, 0x2b, 0x30, 0x67, 0xb0,
- 0x9c, 0xab, 0x56, 0x3a, 0x95, 0x88, 0x89, 0x96, 0x8c, 0x49, 0xd2, 0xe3, 0xd2, 0x05, 0x1e, 0x97,
- 0x33, 0x1e, 0x07, 0xd0, 0x8a, 0x54, 0xcb, 0xe4, 0xbd, 0x79, 0x7f, 0x2d, 0x58, 0xca, 0x51, 0x7a,
- 0x19, 0x6f, 0x5b, 0x30, 0x37, 0x12, 0x0b, 0xc2, 0xf7, 0x84, 0xec, 0x6e, 0xff, 0xe3, 0x76, 0x88,
- 0x5b, 0x2f, 0xb1, 0x7f, 0x4a, 0x7a, 0x18, 0xfd, 0x06, 0x9a, 0xe9, 0xda, 0x33, 0x5a, 0x4b, 0x72,
- 0x86, 0x4c, 0x99, 0xdc, 0x58, 0x2f, 0x9e, 0x20, 0xec, 0x33, 0x6b, 0x3f, 0xfc, 0x65, 0xa3, 0xa4,
- 0x97, 0xd0, 0x41, 0xbc, 0x10, 0xd4, 0xca, 0x29, 0xfe, 0x8a, 0x0d, 0x97, 0x0a, 0xcb, 0xc2, 0xe1,
- 0x4e, 0x5b, 0x1a, 0xfa, 0x1a, 0x16, 0x92, 0x35, 0x51, 0xb4, 0x9a, 0xb4, 0x23, 0x55, 0xa2, 0x35,
- 0x1e, 0x16, 0x0d, 0x67, 0xb6, 0xfe, 0x35, 0x7b, 0xbd, 0xa9, 0x6a, 0x1f, 0x5a, 0x56, 0x2b, 0x33,
- 0xc5, 0x53, 0x63, 0x25, 0x7f, 0x30, 0xe5, 0xb9, 0x0b, 0xf7, 0x72, 0x8b, 0x6c, 0xe8, 0x71, 0x62,
- 0x79, 0x41, 0xc1, 0xd0, 0x78, 0x72, 0xc1, 0xac, 0x94, 0xb6, 0xaf, 0x61, 0x21, 0x59, 0xd2, 0x51,
- 0xb1, 0xc9, 0xad, 0x45, 0xa9, 0xd8, 0xe4, 0x57, 0x82, 0x62, 0xb1, 0x39, 0x80, 0x7a, 0x54, 0x7c,
- 0x51, 0x9f, 0x30, 0x5d, 0xf9, 0x51, 0x9f, 0x30, 0x53, 0xa9, 0x89, 0xed, 0xf5, 0x2b, 0x00, 0x45,
- 0xb8, 0xd1, 0x52, 0x96, 0xc4, 0x87, 0xbb, 0x19, 0x79, 0x43, 0x29, 0x9f, 0x0f, 0xa1, 0x11, 0xfb,
- 0xb7, 0x08, 0x19, 0xc9, 0xaf, 0x1d, 0xff, 0xbb, 0xca, 0x58, 0xce, 0x1d, 0xcb, 0xc6, 0x30, 0xf9,
- 0xd2, 0x54, 0x31, 0xcc, 0x7d, 0xce, 0xaa, 0x18, 0xe6, 0x3f, 0x50, 0x63, 0x7e, 0xbf, 0x80, 0x46,
- 0xec, 0xa1, 0x81, 0x8c, 0xe2, 0xd7, 0x8b, 0x32, 0x35, 0xe7, 0x65, 0x12, 0xdb, 0xf1, 0x1b, 0xb8,
- 0x9d, 0x62, 0xf4, 0xe8, 0x61, 0x21, 0xd5, 0x17, 0x3b, 0xaf, 0x5d, 0xf0, 0x14, 0x88, 0x02, 0xb1,
- 0x07, 0x7a, 0x48, 0x80, 0xd1, 0x83, 0x08, 0xca, 0x92, 0x7c, 0xdc, 0x68, 0x65, 0x07, 0x32, 0x46,
- 0xfe, 0x16, 0x16, 0x33, 0xd4, 0x14, 0x45, 0xe0, 0x51, 0xc4, 0x9d, 0x8d, 0x0f, 0xcf, 0x99, 0x91,
- 0x32, 0xf5, 0x35, 0xdc, 0xcf, 0x27, 0x70, 0xe8, 0xc9, 0x45, 0x04, 0x4f, 0xe8, 0xfa, 0xe8, 0x72,
- 0x3c, 0x30, 0xe6, 0x54, 0x37, 0x44, 0x4c, 0xc5, 0x64, 0xd2, 0x88, 0x99, 0x21, 0x6b, 0x69, 0xc4,
- 0xcc, 0x92, 0xa0, 0xa4, 0x82, 0x74, 0xbd, 0x4e, 0x29, 0x28, 0x28, 0x18, 0x2a, 0x05, 0x45, 0xa5,
- 0xbe, 0x98, 0x82, 0x57, 0x70, 0x37, 0xaf, 0xc8, 0x85, 0x1e, 0x9d, 0x5f, 0x02, 0x13, 0x8a, 0x1e,
- 0x5f, 0xa6, 0x4e, 0x16, 0x53, 0x36, 0x83, 0x56, 0x11, 0x7d, 0x42, 0x3f, 0x52, 0xb9, 0x7e, 0x2e,
- 0xa3, 0x33, 0x36, 0x2e, 0x9e, 0x98, 0x54, 0xbc, 0xa1, 0x6d, 0x69, 0x68, 0x08, 0x77, 0x72, 0x18,
- 0x03, 0x32, 0x63, 0xd0, 0x57, 0xc0, 0x62, 0x8c, 0x47, 0xe7, 0xce, 0xc9, 0x38, 0x79, 0x02, 0x8b,
- 0x99, 0xbb, 0x5a, 0x25, 0x7a, 0x11, 0x77, 0x50, 0x89, 0x5e, 0x78, 0xd1, 0x2b, 0x1d, 0x9d, 0xad,
- 0x6f, 0xd8, 0x6c, 0xd7, 0x3e, 0x69, 0xf7, 0xbc, 0xd1, 0xa6, 0x68, 0xfe, 0xd8, 0xf3, 0x07, 0x9b,
- 0x62, 0x0f, 0xf1, 0x0f, 0xfe, 0xe6, 0xc0, 0x93, 0xfd, 0xc9, 0xc9, 0x49, 0x8d, 0x8b, 0x7e, 0xfa,
- 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf4, 0xc2, 0xca, 0xcb, 0x14, 0x20, 0x00, 0x00,
+ 0x15, 0xf6, 0x60, 0xe3, 0xe0, 0x81, 0xa6, 0xc0, 0x16, 0x25, 0x81, 0x43, 0x52, 0xa4, 0x47, 0x92,
+ 0x43, 0x95, 0x1d, 0x90, 0x61, 0x12, 0x97, 0x73, 0x4a, 0x09, 0x36, 0xc9, 0x22, 0x23, 0x91, 0xcc,
+ 0x88, 0x55, 0x2e, 0xbb, 0x2a, 0x85, 0x0c, 0x80, 0x06, 0xd0, 0xd6, 0x00, 0x03, 0xcd, 0x34, 0x28,
+ 0x22, 0x39, 0x24, 0xff, 0x20, 0x55, 0xbe, 0x24, 0xb7, 0xfc, 0x80, 0x1c, 0x72, 0x74, 0xe5, 0x0f,
+ 0x24, 0xf7, 0x5c, 0x72, 0xcf, 0xbf, 0x88, 0x4f, 0xa9, 0x5e, 0x66, 0x7a, 0x56, 0x2e, 0x12, 0xa9,
+ 0x0b, 0xaa, 0xfb, 0xf5, 0xf2, 0x96, 0x79, 0xfd, 0xf5, 0xd7, 0x0f, 0x30, 0xdf, 0x75, 0x47, 0x23,
+ 0x42, 0x9b, 0x13, 0xcf, 0xa5, 0x2e, 0xaa, 0x0c, 0x08, 0xb5, 0x9d, 0x99, 0x01, 0x0e, 0x19, 0x4b,
+ 0x99, 0x31, 0xef, 0x0f, 0x6d, 0x0f, 0xf7, 0x64, 0x6f, 0x7d, 0xe0, 0xba, 0x03, 0x07, 0x6f, 0xf1,
+ 0x5e, 0x67, 0xda, 0xdf, 0xa2, 0x64, 0x84, 0x7d, 0x6a, 0x8f, 0x26, 0x62, 0x82, 0xf9, 0x2d, 0xa0,
+ 0x2f, 0xf8, 0x96, 0x2f, 0xa9, 0x4d, 0x7d, 0x0b, 0xbf, 0x9e, 0x62, 0x9f, 0xa2, 0xcf, 0x01, 0x3c,
+ 0x3c, 0x71, 0x7d, 0x42, 0x5d, 0x6f, 0xd6, 0xd0, 0x36, 0xb4, 0xcd, 0xda, 0x0e, 0x6a, 0x0a, 0x6d,
+ 0x4d, 0x2b, 0x1c, 0x69, 0x95, 0xfe, 0xf2, 0xcf, 0x4f, 0x35, 0x2b, 0x32, 0x17, 0x19, 0xa0, 0x7b,
+ 0xf8, 0x8c, 0xf8, 0xc4, 0x1d, 0x37, 0x0a, 0x1b, 0xda, 0xe6, 0xbc, 0x15, 0xf6, 0xcd, 0x2e, 0xdc,
+ 0x8d, 0xe9, 0xf2, 0x27, 0xee, 0xd8, 0xc7, 0xa8, 0x0e, 0x45, 0x97, 0xf4, 0xb8, 0x96, 0xaa, 0xc5,
+ 0x9a, 0x68, 0x15, 0xaa, 0x76, 0xaf, 0x47, 0x28, 0x71, 0xc7, 0x3e, 0xdf, 0xa5, 0x6c, 0x29, 0x01,
+ 0x1b, 0xed, 0x61, 0x07, 0x8b, 0xd1, 0xa2, 0x18, 0x0d, 0x05, 0xe6, 0x9f, 0x34, 0x78, 0x20, 0xb4,
+ 0x1c, 0xf8, 0xcf, 0xc6, 0x5d, 0xec, 0x53, 0xd7, 0x7b, 0x77, 0xb7, 0xd6, 0xa1, 0x66, 0xcb, 0xcd,
+ 0xda, 0xa4, 0xc7, 0x6d, 0xaa, 0x5a, 0x10, 0x88, 0x0e, 0x7a, 0x68, 0x19, 0xf4, 0xee, 0x90, 0x38,
+ 0x3d, 0x36, 0x5a, 0xe4, 0xa3, 0x73, 0xbc, 0x7f, 0xd0, 0x33, 0xb7, 0xa1, 0x91, 0x36, 0x48, 0xfa,
+ 0xbe, 0x04, 0xe5, 0x33, 0xdb, 0x99, 0x62, 0x6e, 0x8c, 0x6e, 0x89, 0x8e, 0xf9, 0x9d, 0x06, 0xf5,
+ 0x53, 0x0f, 0xe3, 0xdd, 0x31, 0xf5, 0x66, 0xb7, 0xfa, 0x4d, 0x10, 0x82, 0xd2, 0xc4, 0xa6, 0x43,
+ 0x6e, 0xf3, 0xbc, 0xc5, 0xdb, 0xcc, 0x28, 0x87, 0x8c, 0x08, 0x6d, 0x94, 0x36, 0xb4, 0xcd, 0xa2,
+ 0x25, 0x3a, 0xe6, 0xbf, 0x35, 0x58, 0x8c, 0x18, 0x25, 0x1d, 0xf8, 0x1c, 0x4a, 0x74, 0x36, 0x11,
+ 0xf6, 0x2f, 0xec, 0x3c, 0x0e, 0xec, 0x49, 0x4d, 0x6c, 0x1e, 0x77, 0xbe, 0xc5, 0x5d, 0x7a, 0x3a,
+ 0x9b, 0x60, 0x8b, 0xaf, 0x08, 0x3e, 0x7b, 0x41, 0x7d, 0x76, 0x04, 0x25, 0x9f, 0xfc, 0x0e, 0x73,
+ 0x5b, 0x8a, 0x16, 0x6f, 0x33, 0xd9, 0xc8, 0xed, 0x61, 0x6e, 0x4a, 0xd9, 0xe2, 0x6d, 0x26, 0xeb,
+ 0xd9, 0xd4, 0x6e, 0x94, 0x85, 0xcd, 0xac, 0x6d, 0xfe, 0x1c, 0x40, 0x69, 0x40, 0x00, 0x95, 0x2f,
+ 0x8e, 0x5f, 0xbc, 0x38, 0x38, 0xad, 0x7f, 0x80, 0x74, 0x28, 0xb5, 0x9e, 0x1f, 0xb7, 0xea, 0x1a,
+ 0x6b, 0x9d, 0x5a, 0xbb, 0xbb, 0xf5, 0x02, 0x9a, 0x83, 0xe2, 0xe9, 0xb3, 0xfd, 0x7a, 0xd1, 0x9c,
+ 0xc2, 0x3d, 0xf1, 0x6d, 0xfc, 0x16, 0xa6, 0x6f, 0x30, 0x1e, 0xbf, 0x7b, 0xb4, 0x11, 0x94, 0xfa,
+ 0x9e, 0x3b, 0x92, 0x91, 0xe6, 0x6d, 0xb4, 0x00, 0x05, 0xea, 0xca, 0x18, 0x17, 0xa8, 0x6b, 0xee,
+ 0xc2, 0xfd, 0xa4, 0x5a, 0x19, 0xcf, 0x4f, 0x60, 0x4e, 0x1c, 0x71, 0xbf, 0xa1, 0x6d, 0x14, 0x37,
+ 0x6b, 0x3b, 0x8b, 0x81, 0xd2, 0x7d, 0x42, 0xc5, 0x1a, 0x2b, 0x98, 0x61, 0x7e, 0x5f, 0x60, 0x27,
+ 0x6a, 0x3a, 0x96, 0x03, 0xb7, 0x7b, 0x7c, 0xd1, 0x36, 0x94, 0xed, 0x3e, 0xc5, 0x1e, 0xf7, 0xa3,
+ 0xb6, 0x63, 0x34, 0x05, 0xb6, 0x34, 0x03, 0x6c, 0x69, 0x9e, 0x06, 0xd8, 0x62, 0x89, 0x89, 0x68,
+ 0x07, 0x2a, 0x1d, 0xdc, 0x77, 0x3d, 0xf1, 0xf9, 0x2e, 0x5e, 0x22, 0x67, 0x86, 0x09, 0x59, 0x8e,
+ 0x24, 0xe4, 0x0a, 0x54, 0x47, 0xf6, 0x79, 0xbb, 0xcb, 0x5c, 0x6d, 0x54, 0x78, 0x26, 0xe8, 0x23,
+ 0xfb, 0x9c, 0xbb, 0xce, 0xf2, 0xc8, 0x76, 0x9c, 0xc6, 0x1c, 0x3f, 0x40, 0xac, 0x89, 0x3e, 0x82,
+ 0xf9, 0x3e, 0xf1, 0x7c, 0xda, 0x9e, 0xd8, 0x1e, 0x1e, 0xd3, 0x86, 0xce, 0x87, 0x6a, 0x5c, 0x76,
+ 0xc2, 0x45, 0xe6, 0xa7, 0xb0, 0x14, 0x0f, 0x9c, 0x3a, 0x8f, 0x42, 0x8b, 0xc6, 0xb5, 0x88, 0x8e,
+ 0xf9, 0x37, 0x0d, 0x56, 0xf9, 0xf4, 0x2f, 0xc9, 0x19, 0xf6, 0x06, 0x64, 0x3c, 0xb8, 0xb1, 0x80,
+ 0x5f, 0x21, 0x5b, 0xe2, 0xee, 0xcf, 0xc5, 0xdd, 0x3f, 0x2c, 0xe9, 0xa5, 0x7a, 0xf9, 0xb0, 0xa4,
+ 0x97, 0xeb, 0x95, 0xc3, 0x92, 0x5e, 0xa9, 0xcf, 0x99, 0x6d, 0x58, 0xcb, 0x31, 0x56, 0x3a, 0xb9,
+ 0x06, 0xe0, 0xe0, 0x3e, 0x6d, 0x47, 0x3d, 0xad, 0x32, 0x89, 0x08, 0xe8, 0x3a, 0xd4, 0x3c, 0x32,
+ 0x18, 0x06, 0xe3, 0x02, 0x7f, 0x81, 0x8b, 0xf8, 0x04, 0xf3, 0x07, 0x0d, 0xaa, 0xe1, 0x01, 0xcf,
+ 0x80, 0xef, 0x65, 0xd0, 0x3d, 0xd7, 0xa5, 0x6d, 0x75, 0xbc, 0xe7, 0x58, 0xff, 0x58, 0x1c, 0xf1,
+ 0x14, 0xdc, 0x6c, 0x49, 0x08, 0x29, 0x71, 0x08, 0x59, 0x49, 0x41, 0x48, 0x93, 0xff, 0x46, 0x90,
+ 0x23, 0xc0, 0x84, 0x72, 0x04, 0x13, 0xd6, 0x00, 0xc4, 0xa9, 0xe0, 0x5a, 0x2b, 0x5c, 0x6b, 0x55,
+ 0x48, 0x98, 0xde, 0x15, 0xa8, 0xf6, 0x1d, 0x9b, 0x65, 0x04, 0x1d, 0xf2, 0x10, 0xce, 0x5b, 0x3a,
+ 0x13, 0x9c, 0xd8, 0x74, 0x68, 0x7e, 0x02, 0xd5, 0x50, 0x45, 0x08, 0x17, 0x1f, 0x84, 0x70, 0xa1,
+ 0x45, 0xe0, 0xa4, 0x68, 0xfe, 0x55, 0x83, 0x7b, 0xfb, 0x98, 0x06, 0xd6, 0x11, 0xec, 0xbf, 0x7f,
+ 0x80, 0x5e, 0x85, 0xaa, 0x87, 0xbb, 0x53, 0xcf, 0x27, 0x67, 0x22, 0x6c, 0xba, 0xa5, 0x04, 0x0c,
+ 0x5c, 0x92, 0x06, 0x2a, 0x70, 0xc1, 0x42, 0x94, 0x04, 0x17, 0x85, 0xd7, 0xc1, 0x0c, 0x73, 0x08,
+ 0xf5, 0xe7, 0xc4, 0xa7, 0x7b, 0xc4, 0xb9, 0x65, 0x17, 0xcd, 0xa7, 0xb0, 0x18, 0xd1, 0xa4, 0x4e,
+ 0x22, 0xf3, 0x55, 0x58, 0x3a, 0x6f, 0x89, 0x8e, 0x49, 0x60, 0x71, 0x8f, 0x8c, 0x7b, 0x12, 0x08,
+ 0x6f, 0xd5, 0xaa, 0x5f, 0x02, 0x8a, 0xaa, 0x92, 0x66, 0x3d, 0x85, 0x8a, 0xc8, 0x2a, 0xa9, 0x27,
+ 0x03, 0x9e, 0xe5, 0x04, 0x13, 0xc3, 0x03, 0xe6, 0x56, 0x00, 0xf4, 0xb3, 0x63, 0xd2, 0x7b, 0x77,
+ 0x8b, 0xc3, 0x5b, 0xb3, 0x28, 0x4f, 0x9b, 0xb9, 0x0f, 0x8d, 0xb4, 0x9a, 0xb7, 0xb9, 0x4d, 0x28,
+ 0xac, 0xc4, 0x36, 0xb2, 0x70, 0xff, 0xc8, 0x1e, 0xe1, 0x77, 0xb7, 0x79, 0x85, 0xa5, 0x6b, 0xbf,
+ 0x3d, 0xb6, 0x47, 0xd8, 0xe7, 0x96, 0xf3, 0x30, 0xf3, 0xcd, 0x7d, 0xf3, 0x7f, 0x1a, 0xac, 0x66,
+ 0xab, 0x95, 0x3e, 0x6c, 0x5d, 0xee, 0x43, 0xab, 0xd0, 0xd0, 0x42, 0x3f, 0x90, 0x05, 0x35, 0x09,
+ 0x05, 0x1e, 0xee, 0x0b, 0x85, 0xb5, 0x9d, 0x9f, 0x04, 0x8b, 0x2e, 0xd2, 0xd5, 0x14, 0x03, 0x7b,
+ 0x8c, 0xa0, 0xf5, 0x2d, 0x09, 0x28, 0x16, 0xee, 0xfb, 0xc6, 0x29, 0xcc, 0x47, 0xc7, 0xae, 0x91,
+ 0x06, 0x1c, 0x0d, 0xa5, 0xf7, 0x32, 0xc7, 0xe6, 0xa4, 0xf3, 0xe6, 0x1f, 0x0b, 0x70, 0x8f, 0xe5,
+ 0xd8, 0x33, 0xc7, 0x79, 0x2f, 0x37, 0x78, 0xec, 0x22, 0x29, 0x26, 0xee, 0x51, 0xc6, 0xbe, 0x5e,
+ 0x91, 0x49, 0xc0, 0xb4, 0x58, 0x1b, 0xfd, 0x02, 0xca, 0xae, 0xd7, 0xc3, 0x1e, 0x87, 0xda, 0x85,
+ 0x9d, 0x47, 0x81, 0x05, 0x99, 0x46, 0x37, 0x8f, 0xd9, 0x54, 0x4b, 0xac, 0x30, 0x9f, 0x40, 0x99,
+ 0xf7, 0x19, 0x8c, 0x1e, 0x1d, 0x1f, 0xed, 0x4a, 0x40, 0x3d, 0x3e, 0x39, 0x16, 0x4c, 0xec, 0xcb,
+ 0x67, 0xa7, 0xbb, 0xf5, 0x02, 0x03, 0xab, 0xe4, 0x66, 0x6f, 0x93, 0xbb, 0xdf, 0x95, 0xa2, 0xa7,
+ 0xf5, 0x96, 0xc3, 0x18, 0xf2, 0x63, 0x11, 0x42, 0xd1, 0x41, 0xf7, 0xa1, 0xe2, 0xf6, 0xfb, 0x3e,
+ 0xa6, 0x32, 0x82, 0xb2, 0xa7, 0x80, 0xac, 0x1c, 0x01, 0x32, 0x36, 0xbb, 0xef, 0x3a, 0x8e, 0xfb,
+ 0x86, 0xdf, 0x55, 0xba, 0x25, 0x7b, 0xec, 0xf2, 0x65, 0x91, 0x6f, 0x8f, 0xb0, 0x37, 0xc0, 0xbe,
+ 0x64, 0x35, 0xc0, 0x44, 0x2f, 0xb8, 0x84, 0x91, 0x9b, 0x1e, 0xf1, 0xed, 0x8e, 0x83, 0xdb, 0x6f,
+ 0x6c, 0xe7, 0x55, 0x40, 0x6e, 0xa4, 0xec, 0x2b, 0xdb, 0x79, 0xa5, 0x88, 0x5a, 0xf5, 0xfa, 0x44,
+ 0x0d, 0xae, 0x4c, 0xd4, 0x24, 0xef, 0xaa, 0xe5, 0xf3, 0xae, 0xf9, 0x14, 0xef, 0x62, 0x6e, 0xdb,
+ 0x53, 0x3a, 0x74, 0xbd, 0xc6, 0x87, 0x3c, 0xa8, 0xb2, 0x87, 0x3e, 0x0b, 0x12, 0x6d, 0x81, 0x27,
+ 0xda, 0x46, 0x34, 0xd1, 0x2e, 0xca, 0xb2, 0x95, 0x0b, 0xb2, 0xcc, 0x6c, 0xc1, 0xdd, 0xd8, 0xfa,
+ 0xb7, 0x49, 0xac, 0x71, 0xc0, 0xd4, 0x9f, 0xdb, 0xe3, 0xc1, 0xd4, 0x1e, 0xdc, 0xf6, 0x5d, 0xf8,
+ 0xdf, 0xf0, 0xf9, 0x1a, 0x51, 0x28, 0x0d, 0xdf, 0x83, 0xaa, 0x13, 0x08, 0xa5, 0xe9, 0x9b, 0x81,
+ 0xc2, 0x9c, 0x35, 0xcd, 0x40, 0x62, 0xa9, 0xa5, 0xc6, 0x1f, 0x40, 0x0f, 0xc4, 0xec, 0xd4, 0x73,
+ 0x64, 0x12, 0xf4, 0x8d, 0xb7, 0x59, 0xc6, 0xf2, 0x22, 0x02, 0x37, 0xae, 0x60, 0x89, 0x8e, 0xa0,
+ 0xc6, 0x8e, 0xeb, 0xc9, 0xe7, 0xad, 0xe8, 0x30, 0xde, 0xd5, 0x27, 0x0e, 0x96, 0x98, 0xc2, 0x32,
+ 0xff, 0x43, 0xab, 0xca, 0x24, 0x02, 0x54, 0x96, 0xa0, 0xdc, 0x99, 0x51, 0xec, 0x73, 0x00, 0x29,
+ 0x59, 0xa2, 0x63, 0xfe, 0x1e, 0xee, 0x58, 0xf6, 0x9b, 0x96, 0x73, 0x23, 0xb7, 0xcb, 0x35, 0xc9,
+ 0x93, 0xf9, 0x31, 0xd4, 0x95, 0x72, 0x19, 0xd9, 0xe0, 0x45, 0xa9, 0x45, 0x5e, 0x94, 0x7f, 0xd7,
+ 0xa0, 0xf1, 0xdc, 0x0e, 0x2e, 0x8b, 0x3d, 0xd7, 0x63, 0x5c, 0xf1, 0xfd, 0x73, 0xbd, 0xa7, 0x50,
+ 0x77, 0x08, 0xc5, 0x9e, 0xed, 0x70, 0xf2, 0xea, 0x4f, 0x70, 0x57, 0x52, 0xbe, 0x3b, 0x52, 0x7e,
+ 0x22, 0xc5, 0xe6, 0x1e, 0x2c, 0x67, 0x18, 0x7c, 0x7d, 0xe2, 0xf2, 0xbd, 0x06, 0x6b, 0xec, 0x9a,
+ 0x54, 0x9b, 0xf9, 0x7b, 0xae, 0xc7, 0x28, 0xe2, 0xcd, 0xbb, 0x5f, 0xbd, 0x4e, 0x2d, 0x22, 0x03,
+ 0x6b, 0xcb, 0x51, 0xac, 0x35, 0xff, 0xa3, 0xc1, 0xc3, 0x3c, 0xcb, 0x65, 0x1c, 0x8e, 0x92, 0xa7,
+ 0xff, 0x67, 0x51, 0x66, 0x90, 0xbf, 0x50, 0x71, 0x03, 0x2e, 0x0d, 0x36, 0x31, 0x30, 0x7c, 0x18,
+ 0x1b, 0x89, 0x04, 0xba, 0x70, 0x19, 0x35, 0x58, 0x03, 0x60, 0x4e, 0xb6, 0xc5, 0x11, 0x29, 0x71,
+ 0xb7, 0xab, 0x4c, 0xd2, 0x62, 0x82, 0xc3, 0x92, 0xae, 0xd5, 0x0b, 0x87, 0x25, 0xbd, 0x58, 0x2f,
+ 0x99, 0xff, 0x0a, 0x71, 0xc1, 0x6f, 0xcd, 0x5e, 0x60, 0xdf, 0x67, 0x67, 0xfa, 0x56, 0x93, 0x51,
+ 0xc5, 0xb8, 0x98, 0xbc, 0xcf, 0x32, 0xbe, 0x48, 0xd6, 0xb3, 0x7d, 0x09, 0xca, 0xaf, 0xa7, 0xd8,
+ 0x9b, 0xc9, 0xe7, 0x98, 0xe8, 0x30, 0xbe, 0x9a, 0x76, 0xe4, 0x6d, 0xa0, 0xd9, 0x85, 0xf5, 0x3d,
+ 0xe2, 0x50, 0xec, 0xbd, 0x1c, 0xda, 0xfe, 0x57, 0x84, 0x0e, 0x5f, 0x92, 0xc1, 0xd8, 0xa6, 0x53,
+ 0x0f, 0xdf, 0xcc, 0xbb, 0xdc, 0x1f, 0xda, 0x01, 0x5d, 0xe5, 0x6d, 0xf3, 0x33, 0xd8, 0xc8, 0x57,
+ 0xa8, 0x90, 0x84, 0xaf, 0xd3, 0x22, 0xeb, 0xce, 0x60, 0x6d, 0xf7, 0x9c, 0x7a, 0x76, 0x57, 0xba,
+ 0x10, 0x2e, 0xbb, 0x11, 0x6a, 0x2d, 0xb9, 0x6e, 0xf8, 0xd6, 0xd6, 0x85, 0xe0, 0xa0, 0x67, 0xb6,
+ 0xe1, 0x61, 0x9e, 0x5e, 0x69, 0xed, 0x2a, 0x54, 0xfd, 0x40, 0x28, 0xc1, 0x4f, 0x09, 0x38, 0x17,
+ 0x21, 0x83, 0x31, 0xee, 0xb5, 0x29, 0x3e, 0xa7, 0x32, 0x41, 0x40, 0x88, 0x4e, 0xf1, 0x39, 0x35,
+ 0xa7, 0x60, 0xec, 0xe3, 0xe4, 0xe6, 0x37, 0x10, 0x7c, 0xf5, 0x98, 0x27, 0x3d, 0x5f, 0xbe, 0x75,
+ 0xaa, 0x81, 0x5b, 0xbe, 0x39, 0x83, 0x95, 0x4c, 0xb5, 0xd2, 0xa9, 0x58, 0x4c, 0xb4, 0x78, 0x4c,
+ 0xe2, 0x1e, 0x17, 0x2e, 0xf1, 0xb8, 0x98, 0xf2, 0xd8, 0x87, 0x46, 0xa8, 0x5a, 0x26, 0xef, 0xed,
+ 0xfb, 0x6b, 0xc1, 0x72, 0x86, 0xd2, 0xab, 0x78, 0xdb, 0x80, 0xb9, 0x91, 0x58, 0x10, 0x3c, 0x3d,
+ 0x64, 0x77, 0xe7, 0x1f, 0x77, 0x02, 0xdc, 0x7a, 0x89, 0xbd, 0x33, 0xd2, 0xc5, 0xe8, 0x37, 0x50,
+ 0x4f, 0x96, 0xa9, 0xd1, 0x7a, 0x9c, 0x5e, 0xa4, 0x2a, 0xea, 0xc6, 0x46, 0xfe, 0x04, 0x61, 0x9f,
+ 0x59, 0xf9, 0xe1, 0xcf, 0x9b, 0x05, 0xbd, 0x80, 0x0e, 0xa3, 0x35, 0xa3, 0x46, 0x46, 0x9d, 0x58,
+ 0x6c, 0xb8, 0x9c, 0x5b, 0x41, 0x0e, 0x76, 0xda, 0xd6, 0xd0, 0xd7, 0xb0, 0x10, 0x2f, 0x9f, 0xa2,
+ 0xb5, 0xb8, 0x1d, 0x89, 0x6a, 0xae, 0xf1, 0x30, 0x6f, 0x38, 0xb5, 0xf5, 0xaf, 0xd9, 0x43, 0x4f,
+ 0x15, 0x06, 0xd1, 0x8a, 0x5a, 0x99, 0xaa, 0xb3, 0x1a, 0xab, 0xd9, 0x83, 0x09, 0xcf, 0x1d, 0xb8,
+ 0x97, 0x59, 0x8f, 0x43, 0x8f, 0x63, 0xcb, 0x73, 0x6a, 0x8b, 0xc6, 0x93, 0x4b, 0x66, 0x25, 0xb4,
+ 0x7d, 0x0d, 0x0b, 0xf1, 0xea, 0x8f, 0x8a, 0x4d, 0x66, 0xd9, 0x4a, 0xc5, 0x26, 0xbb, 0x68, 0x14,
+ 0x89, 0xcd, 0x21, 0x54, 0xc3, 0x3a, 0x8d, 0xfa, 0x84, 0xc9, 0x22, 0x91, 0xfa, 0x84, 0xa9, 0xa2,
+ 0x4e, 0x64, 0xaf, 0x5f, 0x01, 0x28, 0x6e, 0x8e, 0x96, 0xd3, 0x7c, 0x3f, 0xd8, 0xcd, 0xc8, 0x1a,
+ 0x4a, 0xf8, 0x7c, 0x04, 0xb5, 0xc8, 0x1f, 0x4b, 0xc8, 0x88, 0x7f, 0xed, 0xe8, 0x3f, 0x5b, 0xc6,
+ 0x4a, 0xe6, 0x58, 0x3a, 0x86, 0xf1, 0x47, 0xa9, 0x8a, 0x61, 0xe6, 0xcb, 0x57, 0xc5, 0x30, 0xfb,
+ 0x2d, 0x1b, 0xf1, 0xfb, 0x04, 0x6a, 0x91, 0x37, 0x09, 0x32, 0xf2, 0x1f, 0x3a, 0xca, 0xd4, 0x8c,
+ 0x47, 0x4c, 0x64, 0xc7, 0x6f, 0xe0, 0x4e, 0x82, 0xfc, 0xa3, 0x87, 0xb9, 0xaf, 0x02, 0xb1, 0xf3,
+ 0xfa, 0x25, 0xaf, 0x86, 0x30, 0x10, 0xfb, 0xa0, 0x07, 0x5c, 0x19, 0x3d, 0x08, 0xa1, 0x2c, 0x4e,
+ 0xdd, 0x8d, 0x46, 0x7a, 0x20, 0x65, 0xe4, 0x6f, 0x61, 0x31, 0x45, 0x4d, 0x51, 0x08, 0x1e, 0x79,
+ 0x34, 0xdb, 0xf8, 0xe8, 0x82, 0x19, 0x09, 0x53, 0x5f, 0xc3, 0xfd, 0x6c, 0x02, 0x87, 0x9e, 0x5c,
+ 0x46, 0xf0, 0x84, 0xae, 0x8f, 0xaf, 0xc6, 0x03, 0x23, 0x4e, 0xb5, 0x03, 0xc4, 0x54, 0x4c, 0x26,
+ 0x89, 0x98, 0x29, 0xb2, 0x96, 0x44, 0xcc, 0x34, 0x09, 0x8a, 0x2b, 0x48, 0x96, 0xf6, 0x94, 0x82,
+ 0x9c, 0xda, 0xa2, 0x52, 0x90, 0x57, 0x15, 0x8c, 0x28, 0x78, 0x05, 0x4b, 0x59, 0xf5, 0x30, 0xf4,
+ 0xe8, 0xe2, 0x6a, 0x99, 0x50, 0xf4, 0xf8, 0x2a, 0x25, 0xb5, 0x88, 0xb2, 0x19, 0x34, 0xf2, 0xe8,
+ 0x13, 0xfa, 0x91, 0xca, 0xf5, 0x0b, 0x19, 0x9d, 0xb1, 0x79, 0xf9, 0xc4, 0xb8, 0xe2, 0x4d, 0x6d,
+ 0x5b, 0x43, 0x43, 0xb8, 0x9b, 0xc1, 0x18, 0x90, 0x19, 0x81, 0xbe, 0x1c, 0x16, 0x63, 0x3c, 0xba,
+ 0x70, 0x4e, 0xca, 0xc9, 0x0e, 0x2c, 0xa6, 0xee, 0x6a, 0x95, 0xe8, 0x79, 0xdc, 0x41, 0x25, 0x7a,
+ 0xee, 0x45, 0xaf, 0x74, 0xb4, 0xb6, 0xbf, 0x61, 0xb3, 0x1d, 0xbb, 0xd3, 0xec, 0xba, 0xa3, 0x2d,
+ 0xd1, 0xfc, 0xb1, 0xeb, 0x0d, 0xb6, 0xc4, 0x1e, 0xe2, 0xcf, 0xfe, 0xad, 0x81, 0x2b, 0xfb, 0x93,
+ 0x4e, 0xa7, 0xc2, 0x45, 0x3f, 0xfd, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x64, 0x97, 0x3d,
+ 0x3f, 0x20, 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 36a973845..1aa089466 100644
--- a/ruby/proto/gitaly/commit_pb.rb
+++ b/ruby/proto/gitaly/commit_pb.rb
@@ -194,6 +194,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
optional :repository, :message, 1, "gitaly.Repository"
optional :revision, :bytes, 2
optional :path, :bytes, 3
+ optional :literal_pathspec, :bool, 4
end
add_message "gitaly.LastCommitForPathResponse" do
optional :commit, :message, 1, "gitaly.GitCommit"