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:
authorJacob Vosmaer (GitLab) <jacob@gitlab.com>2018-01-10 15:03:05 +0300
committerAhmad Sherif <ahmad.m.sherif@gmail.com>2018-01-10 15:03:05 +0300
commitb67ecb4d22876424c79b8e7f5f1083a6df0eb8d7 (patch)
tree13a8241e5372d02c44ccbd5e92e52f12e91744b4
parenta6669a92bdc7b9fa12376f3d30d8097c7a65aa03 (diff)
Use gitaly-proto 0.70.0
-rw-r--r--CHANGELOG.md5
-rw-r--r--internal/service/commit/extractsignature.go10
-rw-r--r--ruby/Gemfile2
-rw-r--r--ruby/Gemfile.lock4
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION2
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go2
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go309
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go179
-rw-r--r--vendor/vendor.json10
9 files changed, 336 insertions, 187 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c1ce9dd15..5352e3717 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# Gitaly changelog
+UNRELEASED
+
+- Use gitaly-proto 0.70.0
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/522
+
v0.67.0
- Implement UserRebase RPC
diff --git a/internal/service/commit/extractsignature.go b/internal/service/commit/extractsignature.go
new file mode 100644
index 000000000..99e378e86
--- /dev/null
+++ b/internal/service/commit/extractsignature.go
@@ -0,0 +1,10 @@
+package commit
+
+import (
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+)
+
+func (s *server) ExtractCommitSignature(req *pb.ExtractCommitSignatureRequest, stream pb.CommitService_ExtractCommitSignatureServer) error {
+ return helper.Unimplemented
+}
diff --git a/ruby/Gemfile b/ruby/Gemfile
index 230742cab..2b1233ad7 100644
--- a/ruby/Gemfile
+++ b/ruby/Gemfile
@@ -1,7 +1,7 @@
source 'https://rubygems.org'
gem 'github-linguist', '~> 4.7.0', require: 'linguist'
-gem 'gitaly-proto', '~> 0.69.0', require: 'gitaly'
+gem 'gitaly-proto', '~> 0.70.0', require: 'gitaly'
gem 'activesupport'
gem 'rdoc', '~> 4.2'
gem 'gollum-lib', '~> 4.2', require: false
diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock
index 47c87e664..1b3eaeae0 100644
--- a/ruby/Gemfile.lock
+++ b/ruby/Gemfile.lock
@@ -17,7 +17,7 @@ GEM
multipart-post (>= 1.2, < 3)
gemojione (3.3.0)
json
- gitaly-proto (0.69.0)
+ gitaly-proto (0.70.0)
google-protobuf (~> 3.1)
grpc (~> 1.0)
github-linguist (4.7.6)
@@ -133,7 +133,7 @@ PLATFORMS
DEPENDENCIES
activesupport
- gitaly-proto (~> 0.69.0)
+ gitaly-proto (~> 0.70.0)
github-linguist (~> 4.7.0)
gitlab-styles (~> 2.0.0)
gollum-lib (~> 4.2)
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
index 106d4ac00..534b316ae 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
@@ -1 +1 @@
-0.69.0
+0.70.0
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
index 956fdd485..0fbe8506c 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
@@ -59,6 +59,8 @@ It has these top-level messages:
CommitsByMessageResponse
FilterShasWithSignaturesRequest
FilterShasWithSignaturesResponse
+ ExtractCommitSignatureRequest
+ ExtractCommitSignatureResponse
ListConflictFilesRequest
ConflictFileHeader
ConflictFile
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go
index 9e9c2c79d..44c9e873d 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/commit.pb.go
@@ -1115,6 +1115,56 @@ func (m *FilterShasWithSignaturesResponse) GetShas() [][]byte {
return nil
}
+type ExtractCommitSignatureRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+ CommitId string `protobuf:"bytes,2,opt,name=commit_id,json=commitId" json:"commit_id,omitempty"`
+}
+
+func (m *ExtractCommitSignatureRequest) Reset() { *m = ExtractCommitSignatureRequest{} }
+func (m *ExtractCommitSignatureRequest) String() string { return proto.CompactTextString(m) }
+func (*ExtractCommitSignatureRequest) ProtoMessage() {}
+func (*ExtractCommitSignatureRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{33} }
+
+func (m *ExtractCommitSignatureRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+func (m *ExtractCommitSignatureRequest) GetCommitId() string {
+ if m != nil {
+ return m.CommitId
+ }
+ return ""
+}
+
+// Either of the 'signature' and 'signed_text' fields may be present. It
+// is up to the caller to stitch them together.
+type ExtractCommitSignatureResponse struct {
+ Signature []byte `protobuf:"bytes,1,opt,name=signature,proto3" json:"signature,omitempty"`
+ SignedText []byte `protobuf:"bytes,2,opt,name=signed_text,json=signedText,proto3" json:"signed_text,omitempty"`
+}
+
+func (m *ExtractCommitSignatureResponse) Reset() { *m = ExtractCommitSignatureResponse{} }
+func (m *ExtractCommitSignatureResponse) String() string { return proto.CompactTextString(m) }
+func (*ExtractCommitSignatureResponse) ProtoMessage() {}
+func (*ExtractCommitSignatureResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{34} }
+
+func (m *ExtractCommitSignatureResponse) GetSignature() []byte {
+ if m != nil {
+ return m.Signature
+ }
+ return nil
+}
+
+func (m *ExtractCommitSignatureResponse) GetSignedText() []byte {
+ if m != nil {
+ return m.SignedText
+ }
+ return nil
+}
+
func init() {
proto.RegisterType((*CommitStatsRequest)(nil), "gitaly.CommitStatsRequest")
proto.RegisterType((*CommitStatsResponse)(nil), "gitaly.CommitStatsResponse")
@@ -1150,6 +1200,8 @@ func init() {
proto.RegisterType((*CommitsByMessageResponse)(nil), "gitaly.CommitsByMessageResponse")
proto.RegisterType((*FilterShasWithSignaturesRequest)(nil), "gitaly.FilterShasWithSignaturesRequest")
proto.RegisterType((*FilterShasWithSignaturesResponse)(nil), "gitaly.FilterShasWithSignaturesResponse")
+ proto.RegisterType((*ExtractCommitSignatureRequest)(nil), "gitaly.ExtractCommitSignatureRequest")
+ proto.RegisterType((*ExtractCommitSignatureResponse)(nil), "gitaly.ExtractCommitSignatureResponse")
proto.RegisterEnum("gitaly.TreeEntryResponse_ObjectType", TreeEntryResponse_ObjectType_name, TreeEntryResponse_ObjectType_value)
proto.RegisterEnum("gitaly.TreeEntry_EntryType", TreeEntry_EntryType_name, TreeEntry_EntryType_value)
proto.RegisterEnum("gitaly.FindAllCommitsRequest_Order", FindAllCommitsRequest_Order_name, FindAllCommitsRequest_Order_value)
@@ -1183,6 +1235,10 @@ type CommitServiceClient interface {
CommitsByMessage(ctx context.Context, in *CommitsByMessageRequest, opts ...grpc.CallOption) (CommitService_CommitsByMessageClient, error)
ListCommitsByOid(ctx context.Context, in *ListCommitsByOidRequest, opts ...grpc.CallOption) (CommitService_ListCommitsByOidClient, error)
FilterShasWithSignatures(ctx context.Context, opts ...grpc.CallOption) (CommitService_FilterShasWithSignaturesClient, error)
+ // ExtractCommitSignature returns a stream because the signed text may be
+ // arbitrarily large and signature verification is impossible without the
+ // full text.
+ ExtractCommitSignature(ctx context.Context, in *ExtractCommitSignatureRequest, opts ...grpc.CallOption) (CommitService_ExtractCommitSignatureClient, error)
}
type commitServiceClient struct {
@@ -1566,6 +1622,38 @@ func (x *commitServiceFilterShasWithSignaturesClient) Recv() (*FilterShasWithSig
return m, nil
}
+func (c *commitServiceClient) ExtractCommitSignature(ctx context.Context, in *ExtractCommitSignatureRequest, opts ...grpc.CallOption) (CommitService_ExtractCommitSignatureClient, error) {
+ stream, err := grpc.NewClientStream(ctx, &_CommitService_serviceDesc.Streams[10], c.cc, "/gitaly.CommitService/ExtractCommitSignature", opts...)
+ if err != nil {
+ return nil, err
+ }
+ x := &commitServiceExtractCommitSignatureClient{stream}
+ if err := x.ClientStream.SendMsg(in); err != nil {
+ return nil, err
+ }
+ if err := x.ClientStream.CloseSend(); err != nil {
+ return nil, err
+ }
+ return x, nil
+}
+
+type CommitService_ExtractCommitSignatureClient interface {
+ Recv() (*ExtractCommitSignatureResponse, error)
+ grpc.ClientStream
+}
+
+type commitServiceExtractCommitSignatureClient struct {
+ grpc.ClientStream
+}
+
+func (x *commitServiceExtractCommitSignatureClient) Recv() (*ExtractCommitSignatureResponse, error) {
+ m := new(ExtractCommitSignatureResponse)
+ if err := x.ClientStream.RecvMsg(m); err != nil {
+ return nil, err
+ }
+ return m, nil
+}
+
// Server API for CommitService service
type CommitServiceServer interface {
@@ -1586,6 +1674,10 @@ type CommitServiceServer interface {
CommitsByMessage(*CommitsByMessageRequest, CommitService_CommitsByMessageServer) error
ListCommitsByOid(*ListCommitsByOidRequest, CommitService_ListCommitsByOidServer) error
FilterShasWithSignatures(CommitService_FilterShasWithSignaturesServer) error
+ // ExtractCommitSignature returns a stream because the signed text may be
+ // arbitrarily large and signature verification is impossible without the
+ // full text.
+ ExtractCommitSignature(*ExtractCommitSignatureRequest, CommitService_ExtractCommitSignatureServer) error
}
func RegisterCommitServiceServer(s *grpc.Server, srv CommitServiceServer) {
@@ -1915,6 +2007,27 @@ func (x *commitServiceFilterShasWithSignaturesServer) Recv() (*FilterShasWithSig
return m, nil
}
+func _CommitService_ExtractCommitSignature_Handler(srv interface{}, stream grpc.ServerStream) error {
+ m := new(ExtractCommitSignatureRequest)
+ if err := stream.RecvMsg(m); err != nil {
+ return err
+ }
+ return srv.(CommitServiceServer).ExtractCommitSignature(m, &commitServiceExtractCommitSignatureServer{stream})
+}
+
+type CommitService_ExtractCommitSignatureServer interface {
+ Send(*ExtractCommitSignatureResponse) error
+ grpc.ServerStream
+}
+
+type commitServiceExtractCommitSignatureServer struct {
+ grpc.ServerStream
+}
+
+func (x *commitServiceExtractCommitSignatureServer) Send(m *ExtractCommitSignatureResponse) error {
+ return x.ServerStream.SendMsg(m)
+}
+
var _CommitService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.CommitService",
HandlerType: (*CommitServiceServer)(nil),
@@ -1996,6 +2109,11 @@ var _CommitService_serviceDesc = grpc.ServiceDesc{
ServerStreams: true,
ClientStreams: true,
},
+ {
+ StreamName: "ExtractCommitSignature",
+ Handler: _CommitService_ExtractCommitSignature_Handler,
+ ServerStreams: true,
+ },
},
Metadata: "commit.proto",
}
@@ -2003,98 +2121,103 @@ var _CommitService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("commit.proto", fileDescriptor1) }
var fileDescriptor1 = []byte{
- // 1484 bytes of a gzipped FileDescriptorProto
+ // 1559 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xdd, 0x6e, 0x1a, 0x47,
- 0x14, 0xf6, 0x82, 0xc1, 0x70, 0xa0, 0x0e, 0x9e, 0xfc, 0xe1, 0x75, 0x12, 0x3b, 0xdb, 0x3f, 0xa2,
- 0x54, 0xc4, 0xa2, 0x6a, 0xd5, 0x5e, 0x55, 0x76, 0x82, 0x5d, 0xa7, 0x76, 0x88, 0xd6, 0x48, 0x51,
- 0x7a, 0x83, 0xc6, 0xec, 0x00, 0xd3, 0x2c, 0x2c, 0xd9, 0x1d, 0xe2, 0xd0, 0x4a, 0xbd, 0xaf, 0xd4,
- 0x57, 0xe9, 0x23, 0xf4, 0xa2, 0xaf, 0xd0, 0xc7, 0xe8, 0x23, 0x44, 0xbd, 0xa8, 0xe6, 0x67, 0x77,
- 0x16, 0x76, 0x49, 0x1a, 0x5b, 0xe4, 0x06, 0xed, 0x9c, 0xf9, 0x39, 0xdf, 0x39, 0x73, 0xce, 0x77,
- 0xce, 0x00, 0xe5, 0xae, 0x37, 0x1c, 0x52, 0x56, 0x1f, 0xfb, 0x1e, 0xf3, 0x50, 0xbe, 0x4f, 0x19,
- 0x76, 0xa7, 0x66, 0x39, 0x18, 0x60, 0x9f, 0x38, 0x52, 0x6a, 0x6e, 0xf7, 0x3d, 0xaf, 0xef, 0x92,
- 0x07, 0x62, 0x74, 0x36, 0xe9, 0x3d, 0x60, 0x74, 0x48, 0x02, 0x86, 0x87, 0x63, 0xb9, 0xc0, 0x72,
- 0x00, 0x3d, 0x14, 0xc7, 0x9c, 0x32, 0xcc, 0x02, 0x9b, 0xbc, 0x9c, 0x90, 0x80, 0xa1, 0x06, 0x80,
- 0x4f, 0xc6, 0x5e, 0x40, 0x99, 0xe7, 0x4f, 0xab, 0xc6, 0x8e, 0x51, 0x2b, 0x35, 0x50, 0x5d, 0x6a,
- 0xa8, 0xdb, 0xd1, 0x8c, 0x1d, 0x5b, 0x85, 0x4c, 0x28, 0xf8, 0xe4, 0x15, 0x0d, 0xa8, 0x37, 0xaa,
- 0x66, 0x76, 0x8c, 0x5a, 0xd9, 0x8e, 0xc6, 0x56, 0x17, 0xae, 0xce, 0x68, 0x09, 0xc6, 0xde, 0x28,
- 0x20, 0xa8, 0x02, 0x59, 0x8f, 0x3a, 0xe2, 0xfc, 0xa2, 0xcd, 0x3f, 0xd1, 0x2d, 0x28, 0x62, 0xc7,
- 0xa1, 0x8c, 0x7a, 0xa3, 0x40, 0x9c, 0x92, 0xb3, 0xb5, 0x80, 0xcf, 0x3a, 0xc4, 0x25, 0x72, 0x36,
- 0x2b, 0x67, 0x23, 0x81, 0xf5, 0x9b, 0x01, 0x37, 0xa5, 0x96, 0xa3, 0x60, 0x6f, 0xd4, 0x25, 0x01,
- 0xf3, 0xfc, 0xcb, 0x18, 0xb4, 0x0d, 0x25, 0xac, 0x8e, 0xe9, 0x50, 0x47, 0xa0, 0x29, 0xda, 0x10,
- 0x8a, 0x8e, 0x1c, 0xb4, 0x09, 0x85, 0xee, 0x80, 0xba, 0x0e, 0x9f, 0xcd, 0x8a, 0xd9, 0x35, 0x31,
- 0x3e, 0x72, 0xac, 0x5d, 0xa8, 0x26, 0xa1, 0x28, 0xab, 0xaf, 0x41, 0xee, 0x15, 0x76, 0x27, 0x44,
- 0xc0, 0x28, 0xd8, 0x72, 0x60, 0xfd, 0x6e, 0x40, 0xa5, 0xed, 0x13, 0xd2, 0x1c, 0x31, 0x7f, 0xba,
- 0xa4, 0x7b, 0x40, 0x08, 0x56, 0xc7, 0x98, 0x0d, 0x04, 0xda, 0xb2, 0x2d, 0xbe, 0x39, 0x1c, 0x97,
- 0x0e, 0x29, 0xab, 0xae, 0xee, 0x18, 0xb5, 0xac, 0x2d, 0x07, 0xd6, 0xdf, 0x06, 0x6c, 0xc4, 0xe0,
- 0x28, 0xe8, 0xdf, 0xc0, 0x2a, 0x9b, 0x8e, 0x25, 0xf2, 0xf5, 0xc6, 0x27, 0x21, 0x92, 0xc4, 0xc2,
- 0x7a, 0xeb, 0xec, 0x27, 0xd2, 0x65, 0xed, 0xe9, 0x98, 0xd8, 0x62, 0x47, 0x78, 0xd5, 0x19, 0x7d,
- 0xd5, 0x08, 0x56, 0x03, 0xfa, 0x33, 0x11, 0x58, 0xb2, 0xb6, 0xf8, 0xe6, 0xb2, 0xa1, 0xe7, 0x10,
- 0x01, 0x25, 0x67, 0x8b, 0x6f, 0x2e, 0x73, 0x30, 0xc3, 0xd5, 0x9c, 0xc4, 0xcc, 0xbf, 0xad, 0xaf,
- 0x00, 0xb4, 0x06, 0x04, 0x90, 0x7f, 0xd8, 0x3a, 0x39, 0x39, 0x6a, 0x57, 0x56, 0x50, 0x01, 0x56,
- 0xf7, 0x8f, 0x5b, 0xfb, 0x15, 0x83, 0x7f, 0xb5, 0xed, 0x66, 0xb3, 0x92, 0x41, 0x6b, 0x90, 0x6d,
- 0xef, 0x1d, 0x56, 0xb2, 0x96, 0x07, 0xd7, 0xe5, 0xad, 0x04, 0xfb, 0x84, 0x9d, 0x13, 0x32, 0xba,
- 0x8c, 0x9f, 0x11, 0xac, 0xf6, 0x7c, 0x6f, 0xa8, 0x7c, 0x2c, 0xbe, 0xd1, 0x3a, 0x64, 0x98, 0xa7,
- 0xbc, 0x9b, 0x61, 0x9e, 0xd5, 0x84, 0x1b, 0xf3, 0x0a, 0x95, 0x27, 0xef, 0xc3, 0x9a, 0x4c, 0xdf,
- 0xa0, 0x6a, 0xec, 0x64, 0x6b, 0xa5, 0xc6, 0x46, 0xa8, 0xee, 0x90, 0x32, 0xb9, 0xc7, 0x0e, 0x57,
- 0x58, 0xff, 0x1a, 0x3c, 0x7f, 0x26, 0x23, 0x35, 0xb1, 0xac, 0x34, 0x45, 0xbb, 0x90, 0xc3, 0x3d,
- 0x46, 0x7c, 0x61, 0x41, 0xa9, 0x61, 0xd6, 0x25, 0x7b, 0xd4, 0x43, 0xf6, 0xa8, 0xb7, 0x43, 0xf6,
- 0xb0, 0xe5, 0x42, 0xd4, 0x80, 0xfc, 0x19, 0xe9, 0x79, 0xbe, 0xbc, 0xb2, 0xb7, 0x6f, 0x51, 0x2b,
- 0xa3, 0x20, 0xcc, 0xc5, 0x82, 0x70, 0x0b, 0x8a, 0x43, 0xfc, 0xba, 0xd3, 0xe5, 0x46, 0x56, 0xf3,
- 0xe2, 0xf6, 0x0b, 0x43, 0xfc, 0x5a, 0x18, 0x6d, 0x7d, 0x01, 0xd7, 0x66, 0xad, 0xd7, 0x89, 0x24,
- 0x37, 0x18, 0x62, 0x83, 0x1c, 0x58, 0x6f, 0x0c, 0x28, 0x46, 0x01, 0x99, 0x42, 0x31, 0x9b, 0x50,
- 0xf0, 0x3d, 0x8f, 0x75, 0x74, 0x38, 0xae, 0xf1, 0x71, 0x4b, 0x86, 0x64, 0x22, 0x3d, 0x1e, 0xa8,
- 0x90, 0x5f, 0x15, 0x21, 0xbf, 0x95, 0x08, 0xf9, 0xba, 0xf8, 0x8d, 0x45, 0x7a, 0x18, 0xc3, 0xb9,
- 0x58, 0x0c, 0xdf, 0x06, 0x90, 0x77, 0x29, 0xb4, 0xe6, 0x85, 0xd6, 0xa2, 0x94, 0x70, 0xbd, 0x5b,
- 0x50, 0xec, 0xb9, 0x98, 0x75, 0x84, 0xf2, 0x35, 0x79, 0x29, 0x5c, 0xf0, 0x14, 0xb3, 0x81, 0x75,
- 0x1f, 0x8a, 0x91, 0x8a, 0x28, 0xbc, 0x57, 0xa2, 0xf0, 0x36, 0x62, 0xe1, 0x9f, 0xb5, 0x7e, 0x81,
- 0xeb, 0x87, 0x84, 0x85, 0xe0, 0x28, 0x09, 0x3e, 0x20, 0x93, 0xf0, 0x68, 0x9f, 0x57, 0xae, 0xa3,
- 0x9d, 0x48, 0xd1, 0x7c, 0xb4, 0x6b, 0xea, 0x08, 0x57, 0x58, 0x67, 0x50, 0x39, 0xa6, 0x01, 0x3b,
- 0xa0, 0xee, 0xd2, 0xe0, 0x5b, 0xf7, 0x60, 0x23, 0xa6, 0x43, 0xc7, 0x13, 0xb7, 0x43, 0x62, 0x2c,
- 0xdb, 0x72, 0x60, 0x75, 0x61, 0xe3, 0x80, 0x8e, 0x1c, 0x95, 0x93, 0x4b, 0xc2, 0xf3, 0x1d, 0xa0,
- 0xb8, 0x12, 0x05, 0xe8, 0x1e, 0xe4, 0x65, 0x90, 0x28, 0x0d, 0x29, 0x1c, 0xa1, 0x16, 0x58, 0x1d,
- 0xb8, 0xc9, 0x0d, 0x0a, 0xd9, 0x66, 0xda, 0xa2, 0xce, 0x65, 0xb0, 0x46, 0x74, 0x9d, 0x55, 0x69,
- 0x63, 0x1d, 0x42, 0x35, 0xa9, 0xe0, 0x22, 0x64, 0xf6, 0xc6, 0x80, 0xeb, 0xdc, 0xd6, 0x3d, 0xd7,
- 0x5d, 0x32, 0x9d, 0xcd, 0x90, 0x4a, 0x76, 0x96, 0x54, 0x44, 0xf9, 0x79, 0x41, 0xc7, 0x61, 0xa9,
- 0xe1, 0xdf, 0xe8, 0x5b, 0xc8, 0x79, 0xbe, 0x43, 0x7c, 0x91, 0xbb, 0xeb, 0x8d, 0x8f, 0x43, 0xdd,
- 0xa9, 0x70, 0xeb, 0x2d, 0xbe, 0xd4, 0x96, 0x3b, 0xac, 0x4f, 0x21, 0x27, 0xc6, 0x3c, 0x2f, 0x9f,
- 0xb4, 0x9e, 0x34, 0x55, 0x86, 0xb6, 0x9e, 0xb6, 0x64, 0x29, 0x7a, 0xb4, 0xd7, 0x6e, 0x56, 0x32,
- 0x3c, 0x45, 0xe6, 0x0f, 0xbb, 0x88, 0x0f, 0xff, 0xc9, 0xc4, 0xe3, 0x65, 0x69, 0x0e, 0x8c, 0x5a,
- 0x03, 0xe9, 0x3c, 0x39, 0x40, 0x37, 0x20, 0xef, 0xf5, 0x7a, 0x01, 0x61, 0xca, 0x77, 0x6a, 0xa4,
- 0xd3, 0x27, 0x17, 0x4b, 0x1f, 0xbe, 0xba, 0xe7, 0xb9, 0xae, 0x77, 0x2e, 0x68, 0xaf, 0x60, 0xab,
- 0x11, 0xef, 0xae, 0xb8, 0xcf, 0x3b, 0x43, 0xe2, 0xf7, 0x49, 0x20, 0x58, 0xaf, 0x60, 0x03, 0x17,
- 0x9d, 0x08, 0x09, 0xba, 0x0b, 0x65, 0x87, 0x06, 0xf8, 0xcc, 0x25, 0x9d, 0x73, 0xec, 0xbe, 0xa8,
- 0x16, 0xc4, 0x8a, 0x92, 0x92, 0x3d, 0xc3, 0xee, 0x0b, 0x5d, 0xaf, 0x8a, 0xef, 0x5f, 0xaf, 0xe0,
- 0xff, 0xd6, 0x2b, 0x6b, 0x1f, 0xae, 0xce, 0xf8, 0xfa, 0x22, 0x17, 0x36, 0x08, 0x1b, 0x81, 0x63,
- 0x3c, 0xea, 0x4f, 0x70, 0x7f, 0x79, 0xcc, 0xf6, 0x47, 0xd4, 0x05, 0xc7, 0x54, 0x29, 0xc8, 0x07,
- 0x50, 0x74, 0x43, 0xa1, 0x02, 0x5d, 0x0b, 0x55, 0x2d, 0xd8, 0x53, 0x0f, 0x25, 0xb6, 0xde, 0x6a,
- 0x3e, 0x86, 0x42, 0x28, 0xe6, 0x79, 0x34, 0xc2, 0x43, 0xa2, 0x2a, 0xac, 0xf8, 0xe6, 0x91, 0x20,
- 0x5e, 0x21, 0x02, 0x5c, 0xc6, 0x96, 0x03, 0x59, 0xae, 0x5d, 0xcf, 0x57, 0xbd, 0xb2, 0x1c, 0x58,
- 0x13, 0xb8, 0x62, 0xe3, 0xf3, 0x7d, 0x17, 0x0f, 0xc9, 0x87, 0xac, 0x55, 0x9f, 0x41, 0x45, 0xab,
- 0x55, 0xee, 0x09, 0x3b, 0x4d, 0x23, 0xd6, 0x69, 0xfe, 0x0a, 0xd5, 0x63, 0x1c, 0xd2, 0xde, 0x81,
- 0xe7, 0xf3, 0x92, 0xfc, 0x21, 0x71, 0x1e, 0xc0, 0x66, 0x8a, 0xfe, 0xf7, 0xaf, 0x0f, 0x7f, 0x45,
- 0x61, 0x11, 0xec, 0x4f, 0x4f, 0x48, 0x10, 0xf0, 0x2b, 0x5d, 0x92, 0x1d, 0x9a, 0x20, 0xb2, 0xf3,
- 0x04, 0xa1, 0x5f, 0x1a, 0x11, 0x9d, 0xa4, 0xb5, 0x83, 0xd7, 0x20, 0xf7, 0x72, 0x42, 0xfc, 0xa9,
- 0x6a, 0x95, 0xe4, 0x80, 0x97, 0xa0, 0xa4, 0x09, 0x17, 0xc9, 0x46, 0x0a, 0xdb, 0x07, 0xd4, 0x65,
- 0xc4, 0x3f, 0x1d, 0xe0, 0xe0, 0x19, 0x65, 0x83, 0x53, 0xda, 0x1f, 0x61, 0x36, 0xf1, 0x2f, 0x97,
- 0x96, 0xbc, 0xa4, 0x0c, 0x70, 0x20, 0xaa, 0x66, 0xd9, 0x16, 0xdf, 0xd6, 0xd7, 0xb0, 0xb3, 0x58,
- 0x95, 0x8e, 0x3b, 0xb1, 0xcf, 0xd0, 0xfb, 0x1a, 0x7f, 0x02, 0x7c, 0xa4, 0x9e, 0xcc, 0xc4, 0x7f,
- 0x45, 0xbb, 0x04, 0x3d, 0x83, 0xca, 0xfc, 0x93, 0x12, 0x6d, 0xcf, 0x66, 0x6f, 0xe2, 0xdd, 0x6b,
- 0xee, 0x2c, 0x5e, 0x20, 0x95, 0x5b, 0x2b, 0xe8, 0x51, 0xbc, 0x5f, 0xae, 0xa6, 0xbc, 0xe9, 0xe4,
- 0x51, 0x9b, 0x0b, 0x5f, 0x7b, 0xd6, 0xca, 0xae, 0x81, 0x4e, 0x61, 0x7d, 0xf6, 0xa9, 0x83, 0x6e,
- 0xcf, 0xea, 0x9e, 0x7b, 0x73, 0x99, 0x77, 0x16, 0x4d, 0xc7, 0x0e, 0xfd, 0x01, 0xca, 0xf1, 0xce,
- 0x1f, 0x6d, 0xe9, 0x3d, 0x89, 0xd7, 0x90, 0x79, 0x2b, 0x7d, 0x32, 0xb2, 0xf3, 0x14, 0xd6, 0x67,
- 0xdb, 0x53, 0x8d, 0x30, 0xb5, 0x67, 0xd6, 0x08, 0xd3, 0xbb, 0x5a, 0x81, 0xf0, 0x11, 0x14, 0xa3,
- 0x46, 0x52, 0x3b, 0x6f, 0xbe, 0x7f, 0xd5, 0xce, 0x4b, 0x74, 0x9d, 0xe2, 0x94, 0x26, 0x80, 0x2e,
- 0x31, 0x68, 0x33, 0xde, 0x77, 0xcc, 0xf4, 0x9d, 0xa6, 0x99, 0x36, 0x15, 0x59, 0xf8, 0x3d, 0x94,
- 0x62, 0x7f, 0xb3, 0x20, 0x73, 0xd6, 0xc3, 0xf1, 0x7f, 0x78, 0xcc, 0xad, 0xd4, 0xb9, 0xb8, 0xaf,
- 0x66, 0xfb, 0x14, 0xed, 0xab, 0xd4, 0x66, 0x48, 0xfb, 0x2a, 0xbd, 0xbd, 0x11, 0x56, 0x3e, 0x86,
- 0x52, 0xac, 0x90, 0xa2, 0x14, 0x5b, 0x92, 0xf0, 0x52, 0x2a, 0xaf, 0x38, 0xab, 0x0d, 0x57, 0xe6,
- 0x2a, 0x16, 0xba, 0xb3, 0xb0, 0x94, 0xc9, 0x33, 0xb7, 0xdf, 0x51, 0xea, 0xac, 0x15, 0xb4, 0x07,
- 0x85, 0xb0, 0x2a, 0xa0, 0x9b, 0x51, 0xb6, 0xcf, 0x96, 0x27, 0xb3, 0x9a, 0x9c, 0x88, 0x01, 0xfb,
- 0x11, 0x36, 0x12, 0x84, 0x8d, 0xa2, 0x34, 0x5c, 0x54, 0x4b, 0xcc, 0xbb, 0x6f, 0x59, 0x11, 0xc1,
- 0x7b, 0x1e, 0x52, 0x80, 0x26, 0xc0, 0x79, 0x0a, 0x48, 0xb0, 0xfb, 0x3c, 0x05, 0x24, 0xb9, 0x53,
- 0xc0, 0x7e, 0x2e, 0x1f, 0x5d, 0xf1, 0xf6, 0x5e, 0x1f, 0xbd, 0xe0, 0x65, 0xa1, 0x8f, 0x5e, 0xf4,
- 0x32, 0x10, 0x47, 0x07, 0x50, 0x5d, 0x44, 0x81, 0xe8, 0x73, 0x7d, 0xcf, 0x6f, 0xe5, 0x63, 0xb3,
- 0xf6, 0xee, 0x85, 0xa1, 0xca, 0x9a, 0xb1, 0x6b, 0x9c, 0xe5, 0x45, 0x43, 0xf7, 0xe5, 0x7f, 0x01,
- 0x00, 0x00, 0xff, 0xff, 0xf6, 0xe5, 0xb4, 0x19, 0x25, 0x15, 0x00, 0x00,
+ 0x14, 0xf6, 0x82, 0xc1, 0x70, 0xa0, 0x0e, 0x9e, 0xfc, 0xe1, 0x75, 0x12, 0x3b, 0xdb, 0x26, 0x25,
+ 0x4a, 0x45, 0x2c, 0xaa, 0x56, 0xed, 0x55, 0x65, 0x27, 0xd8, 0x75, 0x6a, 0x87, 0x68, 0x8d, 0x14,
+ 0xa5, 0x37, 0x68, 0xcc, 0x0e, 0x30, 0xf5, 0xc2, 0x92, 0xdd, 0x21, 0x36, 0xad, 0xd4, 0xfb, 0x4a,
+ 0x7d, 0x92, 0x4a, 0x7d, 0x88, 0xbe, 0x42, 0x1f, 0xa3, 0x8f, 0x10, 0xf5, 0xa2, 0x9a, 0x9f, 0xdd,
+ 0x59, 0x60, 0x71, 0x1a, 0x5b, 0xe4, 0x06, 0xed, 0x9c, 0x99, 0x39, 0xe7, 0x3b, 0x67, 0xce, 0x2f,
+ 0x50, 0x6c, 0x7b, 0xfd, 0x3e, 0x65, 0xd5, 0xa1, 0xef, 0x31, 0x0f, 0x65, 0xbb, 0x94, 0x61, 0x77,
+ 0x6c, 0x16, 0x83, 0x1e, 0xf6, 0x89, 0x23, 0xa9, 0xe6, 0x66, 0xd7, 0xf3, 0xba, 0x2e, 0x79, 0x22,
+ 0x56, 0x27, 0xa3, 0xce, 0x13, 0x46, 0xfb, 0x24, 0x60, 0xb8, 0x3f, 0x94, 0x07, 0x2c, 0x07, 0xd0,
+ 0x53, 0xc1, 0xe6, 0x98, 0x61, 0x16, 0xd8, 0xe4, 0xcd, 0x88, 0x04, 0x0c, 0xd5, 0x00, 0x7c, 0x32,
+ 0xf4, 0x02, 0xca, 0x3c, 0x7f, 0x5c, 0x36, 0xb6, 0x8c, 0x4a, 0xa1, 0x86, 0xaa, 0x52, 0x42, 0xd5,
+ 0x8e, 0x76, 0xec, 0xd8, 0x29, 0x64, 0x42, 0xce, 0x27, 0x6f, 0x69, 0x40, 0xbd, 0x41, 0x39, 0xb5,
+ 0x65, 0x54, 0x8a, 0x76, 0xb4, 0xb6, 0xda, 0x70, 0x7d, 0x42, 0x4a, 0x30, 0xf4, 0x06, 0x01, 0x41,
+ 0x25, 0x48, 0x7b, 0xd4, 0x11, 0xfc, 0xf3, 0x36, 0xff, 0x44, 0x77, 0x20, 0x8f, 0x1d, 0x87, 0x32,
+ 0xea, 0x0d, 0x02, 0xc1, 0x25, 0x63, 0x6b, 0x02, 0xdf, 0x75, 0x88, 0x4b, 0xe4, 0x6e, 0x5a, 0xee,
+ 0x46, 0x04, 0xeb, 0x37, 0x03, 0x6e, 0x4b, 0x29, 0x07, 0xc1, 0xce, 0xa0, 0x4d, 0x02, 0xe6, 0xf9,
+ 0x57, 0x51, 0x68, 0x13, 0x0a, 0x58, 0xb1, 0x69, 0x51, 0x47, 0xa0, 0xc9, 0xdb, 0x10, 0x92, 0x0e,
+ 0x1c, 0xb4, 0x0e, 0xb9, 0x76, 0x8f, 0xba, 0x0e, 0xdf, 0x4d, 0x8b, 0xdd, 0x15, 0xb1, 0x3e, 0x70,
+ 0xac, 0x6d, 0x28, 0xcf, 0x42, 0x51, 0x5a, 0xdf, 0x80, 0xcc, 0x5b, 0xec, 0x8e, 0x88, 0x80, 0x91,
+ 0xb3, 0xe5, 0xc2, 0xfa, 0xdd, 0x80, 0x52, 0xd3, 0x27, 0xa4, 0x3e, 0x60, 0xfe, 0x78, 0x41, 0xef,
+ 0x80, 0x10, 0x2c, 0x0f, 0x31, 0xeb, 0x09, 0xb4, 0x45, 0x5b, 0x7c, 0x73, 0x38, 0x2e, 0xed, 0x53,
+ 0x56, 0x5e, 0xde, 0x32, 0x2a, 0x69, 0x5b, 0x2e, 0xac, 0xbf, 0x0d, 0x58, 0x8b, 0xc1, 0x51, 0xd0,
+ 0xbf, 0x81, 0x65, 0x36, 0x1e, 0x4a, 0xe4, 0xab, 0xb5, 0xcf, 0x42, 0x24, 0x33, 0x07, 0xab, 0x8d,
+ 0x93, 0x9f, 0x48, 0x9b, 0x35, 0xc7, 0x43, 0x62, 0x8b, 0x1b, 0xe1, 0x53, 0xa7, 0xf4, 0x53, 0x23,
+ 0x58, 0x0e, 0xe8, 0xcf, 0x44, 0x60, 0x49, 0xdb, 0xe2, 0x9b, 0xd3, 0xfa, 0x9e, 0x43, 0x04, 0x94,
+ 0x8c, 0x2d, 0xbe, 0x39, 0xcd, 0xc1, 0x0c, 0x97, 0x33, 0x12, 0x33, 0xff, 0xb6, 0xbe, 0x02, 0xd0,
+ 0x12, 0x10, 0x40, 0xf6, 0x69, 0xe3, 0xe8, 0xe8, 0xa0, 0x59, 0x5a, 0x42, 0x39, 0x58, 0xde, 0x3d,
+ 0x6c, 0xec, 0x96, 0x0c, 0xfe, 0xd5, 0xb4, 0xeb, 0xf5, 0x52, 0x0a, 0xad, 0x40, 0xba, 0xb9, 0xb3,
+ 0x5f, 0x4a, 0x5b, 0x1e, 0xdc, 0x94, 0xaf, 0x12, 0xec, 0x12, 0x76, 0x46, 0xc8, 0xe0, 0x2a, 0x76,
+ 0x46, 0xb0, 0xdc, 0xf1, 0xbd, 0xbe, 0xb2, 0xb1, 0xf8, 0x46, 0xab, 0x90, 0x62, 0x9e, 0xb2, 0x6e,
+ 0x8a, 0x79, 0x56, 0x1d, 0x6e, 0x4d, 0x0b, 0x54, 0x96, 0x7c, 0x0c, 0x2b, 0x32, 0x7c, 0x83, 0xb2,
+ 0xb1, 0x95, 0xae, 0x14, 0x6a, 0x6b, 0xa1, 0xb8, 0x7d, 0xca, 0xe4, 0x1d, 0x3b, 0x3c, 0x61, 0xfd,
+ 0x6b, 0xf0, 0xf8, 0x19, 0x0d, 0xd4, 0xc6, 0xa2, 0xc2, 0x14, 0x6d, 0x43, 0x06, 0x77, 0x18, 0xf1,
+ 0x85, 0x06, 0x85, 0x9a, 0x59, 0x95, 0xd9, 0xa3, 0x1a, 0x66, 0x8f, 0x6a, 0x33, 0xcc, 0x1e, 0xb6,
+ 0x3c, 0x88, 0x6a, 0x90, 0x3d, 0x21, 0x1d, 0xcf, 0x97, 0x4f, 0x76, 0xf1, 0x15, 0x75, 0x32, 0x72,
+ 0xc2, 0x4c, 0xcc, 0x09, 0x37, 0x20, 0xdf, 0xc7, 0xe7, 0xad, 0x36, 0x57, 0xb2, 0x9c, 0x15, 0xaf,
+ 0x9f, 0xeb, 0xe3, 0x73, 0xa1, 0xb4, 0xf5, 0x05, 0xdc, 0x98, 0xd4, 0x5e, 0x07, 0x92, 0xbc, 0x60,
+ 0x88, 0x0b, 0x72, 0x61, 0xbd, 0x33, 0x20, 0x1f, 0x39, 0x64, 0x42, 0x8a, 0x59, 0x87, 0x9c, 0xef,
+ 0x79, 0xac, 0xa5, 0xdd, 0x71, 0x85, 0xaf, 0x1b, 0xd2, 0x25, 0x67, 0xc2, 0xe3, 0x89, 0x72, 0xf9,
+ 0x65, 0xe1, 0xf2, 0x1b, 0x33, 0x2e, 0x5f, 0x15, 0xbf, 0x31, 0x4f, 0x0f, 0x7d, 0x38, 0x13, 0xf3,
+ 0xe1, 0xbb, 0x00, 0xf2, 0x2d, 0x85, 0xd4, 0xac, 0x90, 0x9a, 0x97, 0x14, 0x2e, 0x77, 0x03, 0xf2,
+ 0x1d, 0x17, 0xb3, 0x96, 0x10, 0xbe, 0x22, 0x1f, 0x85, 0x13, 0x5e, 0x62, 0xd6, 0xb3, 0x1e, 0x43,
+ 0x3e, 0x12, 0x11, 0xb9, 0xf7, 0x52, 0xe4, 0xde, 0x46, 0xcc, 0xfd, 0xd3, 0xd6, 0x2f, 0x70, 0x73,
+ 0x9f, 0xb0, 0x10, 0x1c, 0x25, 0xc1, 0x47, 0xcc, 0x24, 0xdc, 0xdb, 0xa7, 0x85, 0x6b, 0x6f, 0x27,
+ 0x92, 0x34, 0xed, 0xed, 0x3a, 0x75, 0x84, 0x27, 0xac, 0x13, 0x28, 0x1d, 0xd2, 0x80, 0xed, 0x51,
+ 0x77, 0x61, 0xf0, 0xad, 0x47, 0xb0, 0x16, 0x93, 0xa1, 0xfd, 0x89, 0xeb, 0x21, 0x31, 0x16, 0x6d,
+ 0xb9, 0xb0, 0xda, 0xb0, 0xb6, 0x47, 0x07, 0x8e, 0x8a, 0xc9, 0x05, 0xe1, 0xf9, 0x0e, 0x50, 0x5c,
+ 0x88, 0x02, 0xf4, 0x08, 0xb2, 0xd2, 0x49, 0x94, 0x84, 0x84, 0x1c, 0xa1, 0x0e, 0x58, 0x2d, 0xb8,
+ 0xcd, 0x15, 0x0a, 0xb3, 0xcd, 0xb8, 0x41, 0x9d, 0xab, 0x60, 0x8d, 0xd2, 0x75, 0x5a, 0x85, 0x8d,
+ 0xb5, 0x0f, 0xe5, 0x59, 0x01, 0x97, 0x49, 0x66, 0xef, 0x0c, 0xb8, 0xc9, 0x75, 0xdd, 0x71, 0xdd,
+ 0x05, 0xa7, 0xb3, 0x89, 0xa4, 0x92, 0x9e, 0x4c, 0x2a, 0xa2, 0xfc, 0x9c, 0xd2, 0x61, 0x58, 0x6a,
+ 0xf8, 0x37, 0xfa, 0x16, 0x32, 0x9e, 0xef, 0x10, 0x5f, 0xc4, 0xee, 0x6a, 0xed, 0xd3, 0x50, 0x76,
+ 0x22, 0xdc, 0x6a, 0x83, 0x1f, 0xb5, 0xe5, 0x0d, 0xeb, 0x01, 0x64, 0xc4, 0x9a, 0xc7, 0xe5, 0x8b,
+ 0xc6, 0x8b, 0xba, 0x8a, 0xd0, 0xc6, 0xcb, 0x86, 0x2c, 0x45, 0xcf, 0x76, 0x9a, 0xf5, 0x52, 0x8a,
+ 0x87, 0xc8, 0x34, 0xb3, 0xcb, 0xd8, 0xf0, 0x9f, 0x54, 0xdc, 0x5f, 0x16, 0x66, 0xc0, 0xa8, 0x35,
+ 0x90, 0xc6, 0x93, 0x0b, 0x74, 0x0b, 0xb2, 0x5e, 0xa7, 0x13, 0x10, 0xa6, 0x6c, 0xa7, 0x56, 0x3a,
+ 0x7c, 0x32, 0xb1, 0xf0, 0xe1, 0xa7, 0x3b, 0x9e, 0xeb, 0x7a, 0x67, 0x22, 0xed, 0xe5, 0x6c, 0xb5,
+ 0xe2, 0xdd, 0x15, 0xb7, 0x79, 0xab, 0x4f, 0xfc, 0x2e, 0x09, 0x44, 0xd6, 0xcb, 0xd9, 0xc0, 0x49,
+ 0x47, 0x82, 0x82, 0xee, 0x43, 0xd1, 0xa1, 0x01, 0x3e, 0x71, 0x49, 0xeb, 0x0c, 0xbb, 0xa7, 0xe5,
+ 0x9c, 0x38, 0x51, 0x50, 0xb4, 0x57, 0xd8, 0x3d, 0xd5, 0xf5, 0x2a, 0xff, 0xe1, 0xf5, 0x0a, 0xfe,
+ 0x6f, 0xbd, 0xb2, 0x76, 0xe1, 0xfa, 0x84, 0xad, 0x2f, 0xf3, 0x60, 0xbd, 0xb0, 0x11, 0x38, 0xc4,
+ 0x83, 0xee, 0x08, 0x77, 0x17, 0x97, 0xd9, 0xfe, 0x8c, 0xba, 0xe0, 0x98, 0x28, 0x05, 0x79, 0x0f,
+ 0xf2, 0x6e, 0x48, 0x54, 0xa0, 0x2b, 0xa1, 0xa8, 0x39, 0x77, 0xaa, 0x21, 0xc5, 0xd6, 0x57, 0xcd,
+ 0xe7, 0x90, 0x0b, 0xc9, 0x3c, 0x8e, 0x06, 0xb8, 0x4f, 0x54, 0x85, 0x15, 0xdf, 0xdc, 0x13, 0xc4,
+ 0x14, 0x22, 0xc0, 0xa5, 0x6c, 0xb9, 0x90, 0xe5, 0xda, 0xf5, 0x7c, 0xd5, 0x2b, 0xcb, 0x85, 0x35,
+ 0x82, 0x6b, 0x36, 0x3e, 0xdb, 0x75, 0x71, 0x9f, 0x7c, 0xcc, 0x5a, 0xf5, 0x10, 0x4a, 0x5a, 0xac,
+ 0x32, 0x4f, 0xd8, 0x69, 0x1a, 0xb1, 0x4e, 0xf3, 0x57, 0x28, 0x1f, 0xe2, 0x30, 0xed, 0xed, 0x79,
+ 0x3e, 0x2f, 0xc9, 0x1f, 0x13, 0xe7, 0x1e, 0xac, 0x27, 0xc8, 0xff, 0xf0, 0xfa, 0xf0, 0x57, 0xe4,
+ 0x16, 0xc1, 0xee, 0xf8, 0x88, 0x04, 0x01, 0x7f, 0xd2, 0x05, 0xe9, 0xa1, 0x13, 0x44, 0x7a, 0x3a,
+ 0x41, 0xe8, 0x49, 0x23, 0x4a, 0x27, 0x49, 0xed, 0xe0, 0x0d, 0xc8, 0xbc, 0x19, 0x11, 0x7f, 0xac,
+ 0x5a, 0x25, 0xb9, 0xe0, 0x25, 0x68, 0x56, 0x85, 0xcb, 0x44, 0x23, 0x85, 0xcd, 0x3d, 0xea, 0x32,
+ 0xe2, 0x1f, 0xf7, 0x70, 0xf0, 0x8a, 0xb2, 0xde, 0x31, 0xed, 0x0e, 0x30, 0x1b, 0xf9, 0x57, 0x0b,
+ 0x4b, 0x5e, 0x52, 0x7a, 0x38, 0x10, 0x55, 0xb3, 0x68, 0x8b, 0x6f, 0xeb, 0x6b, 0xd8, 0x9a, 0x2f,
+ 0x4a, 0xfb, 0x9d, 0xb8, 0x67, 0xc4, 0xee, 0x0d, 0xe1, 0x6e, 0xfd, 0x9c, 0xf9, 0xb8, 0xad, 0xc0,
+ 0x47, 0xd7, 0xae, 0x02, 0x70, 0x03, 0x54, 0xd3, 0xa9, 0xe7, 0xd9, 0x9c, 0x24, 0x1c, 0x38, 0x56,
+ 0x0b, 0xee, 0xcd, 0x93, 0xa8, 0x70, 0xde, 0x81, 0x7c, 0x10, 0x12, 0x55, 0x90, 0x68, 0x82, 0x48,
+ 0xe8, 0xb4, 0x3b, 0x20, 0x4e, 0x8b, 0x91, 0x73, 0xa6, 0x9c, 0x02, 0x24, 0xa9, 0x49, 0xce, 0x59,
+ 0xed, 0x8f, 0x02, 0x7c, 0xa2, 0x58, 0x13, 0xff, 0x2d, 0x6d, 0x13, 0xf4, 0x0a, 0x4a, 0xd3, 0x53,
+ 0x32, 0xda, 0x9c, 0x4c, 0x48, 0x33, 0xa3, 0xbc, 0xb9, 0x35, 0xff, 0x80, 0xc4, 0x69, 0x2d, 0xa1,
+ 0x67, 0xf1, 0x11, 0xa0, 0x9c, 0x30, 0xa6, 0x4a, 0x56, 0xeb, 0x73, 0x07, 0x58, 0x6b, 0x69, 0xdb,
+ 0x40, 0xc7, 0xb0, 0x3a, 0x39, 0xbd, 0xa1, 0xbb, 0x93, 0xb2, 0xa7, 0xc6, 0x48, 0xf3, 0xde, 0xbc,
+ 0xed, 0x18, 0xd3, 0x1f, 0xa0, 0x18, 0x1f, 0x66, 0xd0, 0x86, 0xbe, 0x33, 0x33, 0xe0, 0x99, 0x77,
+ 0x92, 0x37, 0x23, 0x3d, 0x8f, 0x61, 0x75, 0xb2, 0xe3, 0xd6, 0x08, 0x13, 0xc7, 0x00, 0x8d, 0x30,
+ 0xb9, 0x51, 0x17, 0x08, 0x9f, 0x41, 0x3e, 0xea, 0x8d, 0xb5, 0xf1, 0xa6, 0x5b, 0x72, 0x6d, 0xbc,
+ 0x99, 0x46, 0x5a, 0x70, 0xa9, 0x03, 0xe8, 0xaa, 0x89, 0xd6, 0xe3, 0xad, 0xd4, 0x44, 0x2b, 0x6d,
+ 0x9a, 0x49, 0x5b, 0x91, 0x86, 0xdf, 0x43, 0x21, 0xf6, 0xcf, 0x11, 0x32, 0x27, 0x2d, 0x1c, 0xff,
+ 0xd3, 0xca, 0xdc, 0x48, 0xdc, 0x8b, 0xdb, 0x6a, 0xb2, 0xf5, 0xd2, 0xb6, 0x4a, 0xec, 0xef, 0xb4,
+ 0xad, 0x92, 0x3b, 0x36, 0xa1, 0xe5, 0x73, 0x28, 0xc4, 0x7a, 0x03, 0x94, 0xa0, 0xcb, 0x2c, 0xbc,
+ 0x84, 0x66, 0x42, 0xf0, 0x6a, 0xc2, 0xb5, 0xa9, 0x22, 0x8c, 0xee, 0xcd, 0xad, 0xce, 0x92, 0xe7,
+ 0xe6, 0x7b, 0xaa, 0xb7, 0xb5, 0x84, 0x76, 0x20, 0x17, 0x16, 0x3a, 0x74, 0x3b, 0xca, 0x0f, 0x93,
+ 0x15, 0xd7, 0x2c, 0xcf, 0x6e, 0xc4, 0x80, 0xfd, 0x08, 0x6b, 0x33, 0x35, 0x08, 0x45, 0x61, 0x38,
+ 0xaf, 0x3c, 0x9a, 0xf7, 0x2f, 0x38, 0x11, 0xc1, 0x7b, 0x1d, 0xa6, 0x00, 0x9d, 0xd3, 0xa7, 0x53,
+ 0xc0, 0x4c, 0xc1, 0x9a, 0x4e, 0x01, 0xb3, 0xe5, 0x40, 0xc0, 0x7e, 0x2d, 0xe7, 0xc8, 0xf8, 0xc4,
+ 0xa2, 0x59, 0xcf, 0x19, 0x96, 0x34, 0xeb, 0x79, 0xc3, 0x8e, 0x60, 0x1d, 0x40, 0x79, 0x5e, 0x56,
+ 0x47, 0x9f, 0xeb, 0x77, 0xbe, 0xb0, 0xc4, 0x98, 0x95, 0xf7, 0x1f, 0x0c, 0x45, 0x56, 0x8c, 0x6d,
+ 0x03, 0x9d, 0xc2, 0xad, 0xe4, 0x04, 0x8d, 0x1e, 0x84, 0x9c, 0x2e, 0x2c, 0x19, 0xe6, 0xc3, 0xf7,
+ 0x1d, 0xd3, 0x1a, 0x9e, 0x64, 0x45, 0x43, 0xfc, 0xe5, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc0,
+ 0x6e, 0x68, 0x46, 0x65, 0x16, 0x00, 0x00,
}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go
index c2e108ae3..fa3cae5ea 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go
@@ -1037,6 +1037,7 @@ func _UserCommitFilesRequest_OneofSizer(msg proto.Message) (n int) {
type UserCommitFilesResponse struct {
BranchUpdate *OperationBranchUpdate `protobuf:"bytes,1,opt,name=branch_update,json=branchUpdate" json:"branch_update,omitempty"`
+ IndexError string `protobuf:"bytes,2,opt,name=index_error,json=indexError" json:"index_error,omitempty"`
}
func (m *UserCommitFilesResponse) Reset() { *m = UserCommitFilesResponse{} }
@@ -1051,6 +1052,13 @@ func (m *UserCommitFilesResponse) GetBranchUpdate() *OperationBranchUpdate {
return nil
}
+func (m *UserCommitFilesResponse) GetIndexError() string {
+ if m != nil {
+ return m.IndexError
+ }
+ return ""
+}
+
type UserRebaseRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
@@ -1614,89 +1622,90 @@ var _OperationService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("operations.proto", fileDescriptor7) }
var fileDescriptor7 = []byte{
- // 1341 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0xcf, 0x6f, 0x1b, 0xd5,
- 0x13, 0xf7, 0xda, 0xee, 0xc6, 0x99, 0x38, 0x8e, 0xfd, 0xfa, 0xe3, 0xeb, 0xba, 0x4d, 0x9b, 0x6e,
- 0xbf, 0x85, 0x52, 0x21, 0x0b, 0x05, 0x04, 0xa7, 0x82, 0x9a, 0xc4, 0xa1, 0x2d, 0xb4, 0x0d, 0xdb,
- 0xb4, 0x70, 0x41, 0xab, 0x57, 0xfb, 0x61, 0xaf, 0xb0, 0xbd, 0xcb, 0xdb, 0x97, 0x08, 0x23, 0x84,
- 0xb8, 0x00, 0x57, 0x4e, 0x1c, 0x38, 0x21, 0xf1, 0x17, 0x70, 0xe1, 0xc0, 0x81, 0x13, 0x27, 0xae,
- 0x3d, 0xf0, 0xef, 0xa0, 0xf7, 0x66, 0xd6, 0xde, 0x5d, 0xaf, 0xab, 0x04, 0x5a, 0x51, 0x21, 0x6e,
- 0xf6, 0xcc, 0xec, 0xbc, 0x99, 0xcf, 0x7c, 0x66, 0xde, 0x0f, 0xa8, 0x07, 0xa1, 0x90, 0x5c, 0xf9,
- 0xc1, 0x38, 0x6a, 0x87, 0x32, 0x50, 0x01, 0xb3, 0xfb, 0xbe, 0xe2, 0xc3, 0x49, 0xab, 0x1a, 0x0d,
- 0xb8, 0x14, 0x3d, 0x94, 0x3a, 0x3f, 0x59, 0xf0, 0xbf, 0x07, 0x91, 0x90, 0xdb, 0x52, 0x70, 0x25,
- 0xb6, 0x24, 0x1f, 0x77, 0x07, 0xae, 0xf8, 0xe4, 0x40, 0x44, 0x8a, 0x6d, 0x02, 0x48, 0x11, 0x06,
- 0x91, 0xaf, 0x02, 0x39, 0x69, 0x5a, 0x1b, 0xd6, 0xd5, 0x95, 0x4d, 0xd6, 0x46, 0x37, 0x6d, 0x77,
- 0xaa, 0x71, 0x13, 0x56, 0xec, 0x22, 0xac, 0x3c, 0x32, 0x4e, 0xbc, 0x31, 0x1f, 0x89, 0x66, 0x71,
- 0xc3, 0xba, 0x5a, 0x75, 0x01, 0x45, 0x77, 0xf9, 0x48, 0xb0, 0x0d, 0x28, 0x1f, 0x44, 0x42, 0x36,
- 0x4b, 0xc6, 0x5d, 0x35, 0x76, 0xa7, 0x63, 0x70, 0x8d, 0x46, 0xbb, 0x88, 0x14, 0x97, 0xca, 0x0b,
- 0x03, 0x7f, 0xac, 0x9a, 0x65, 0x74, 0x61, 0x44, 0x7b, 0x5a, 0xe2, 0x8c, 0xa1, 0x39, 0x1f, 0x72,
- 0x14, 0x06, 0xe3, 0x48, 0xb0, 0x17, 0xc0, 0xc6, 0xc5, 0x28, 0xde, 0x5a, 0xbc, 0x00, 0xd9, 0x91,
- 0x96, 0x5d, 0x83, 0x46, 0x28, 0x85, 0x27, 0x45, 0x57, 0xf8, 0x87, 0xc2, 0x13, 0x52, 0x06, 0xd2,
- 0x44, 0xbb, 0xec, 0xae, 0x85, 0x52, 0xb8, 0x28, 0xef, 0x68, 0xb1, 0xf3, 0x2d, 0x61, 0xb4, 0x23,
- 0x86, 0xe2, 0xf9, 0xc0, 0xc8, 0xd9, 0x45, 0x08, 0xd2, 0x11, 0x11, 0x04, 0xb9, 0xa9, 0x59, 0xf9,
- 0xa9, 0x7d, 0x63, 0xc1, 0xa9, 0x99, 0xa3, 0x7d, 0xde, 0xff, 0x3b, 0x79, 0x9d, 0x85, 0x8a, 0xe2,
- 0xfd, 0x64, 0x52, 0x4b, 0x8a, 0xf7, 0x8f, 0x98, 0xd1, 0x36, 0x9c, 0xce, 0x04, 0xf2, 0x17, 0xd2,
- 0xf9, 0x9d, 0xd2, 0x41, 0x6a, 0xfc, 0x83, 0xe9, 0xb0, 0x17, 0x61, 0x4d, 0x71, 0xd9, 0x17, 0xca,
- 0x93, 0xe2, 0xd0, 0x8f, 0xfc, 0x60, 0x4c, 0x44, 0xae, 0xa1, 0xd8, 0x25, 0x29, 0x6b, 0xc2, 0xd2,
- 0x48, 0x44, 0x11, 0xef, 0x8b, 0xe6, 0x09, 0x5c, 0x84, 0xfe, 0x3a, 0x9f, 0x21, 0x22, 0x89, 0x5c,
- 0x08, 0x91, 0x75, 0x28, 0x29, 0xde, 0xa7, 0x2c, 0x56, 0xe2, 0xc5, 0xb5, 0x85, 0x96, 0xb3, 0x33,
- 0x60, 0x8b, 0x4f, 0xfd, 0x48, 0x45, 0x26, 0xea, 0x8a, 0x4b, 0xff, 0xf2, 0x81, 0x2c, 0xe5, 0x03,
- 0xf9, 0xd8, 0x82, 0x33, 0x7a, 0xf1, 0x3b, 0x42, 0xf6, 0x9f, 0x02, 0xe3, 0x63, 0xbc, 0x8a, 0x0b,
- 0xf1, 0x3a, 0x07, 0xcb, 0xdd, 0x60, 0x34, 0xf2, 0x95, 0xe7, 0xf7, 0x28, 0xa8, 0x0a, 0x0a, 0x6e,
- 0xf5, 0x74, 0x46, 0xd4, 0xd4, 0x88, 0x61, 0xdc, 0xc4, 0x0b, 0xb1, 0x63, 0xa7, 0xe0, 0x04, 0x0f,
- 0xc3, 0xe1, 0xa4, 0x69, 0x1b, 0x08, 0xf0, 0x8f, 0xf3, 0x25, 0x35, 0x72, 0x2a, 0x2b, 0x02, 0x35,
- 0x15, 0x80, 0x95, 0x09, 0x60, 0x0b, 0x56, 0xa9, 0x63, 0x0f, 0xc2, 0x1e, 0x57, 0x82, 0x0a, 0xbf,
- 0x1e, 0x27, 0x72, 0x2f, 0x1e, 0xb6, 0xe8, 0xf4, 0x81, 0x31, 0x72, 0xab, 0x8f, 0x12, 0xff, 0x6e,
- 0x97, 0x2b, 0xc5, 0x7a, 0xc9, 0xf9, 0x02, 0x4e, 0xe7, 0x1a, 0x3f, 0x79, 0xfd, 0x4b, 0x50, 0xd5,
- 0x68, 0x7a, 0x5d, 0xc3, 0x85, 0x1e, 0x15, 0x76, 0x45, 0xcb, 0x90, 0x1e, 0x3d, 0x76, 0x05, 0x6a,
- 0x14, 0x62, 0x6c, 0x54, 0x32, 0x46, 0x14, 0x38, 0x99, 0x39, 0x3f, 0x58, 0x70, 0x52, 0x43, 0xb0,
- 0xbb, 0xfb, 0xbc, 0x56, 0xd5, 0xf9, 0x9a, 0x9a, 0x78, 0x16, 0x22, 0x95, 0x68, 0xae, 0x0a, 0xd6,
- 0xb1, 0xab, 0x70, 0xac, 0xb9, 0xff, 0x6b, 0x91, 0x3a, 0x70, 0x20, 0xa4, 0x9c, 0xec, 0xf9, 0xdd,
- 0x8f, 0x9f, 0x2d, 0x5a, 0x2f, 0x81, 0x8d, 0xe0, 0x10, 0xbd, 0x1a, 0xb1, 0xcd, 0xdb, 0xbe, 0xda,
- 0x36, 0x0a, 0x97, 0x0c, 0xb2, 0x5b, 0x48, 0x79, 0x6e, 0x0b, 0x59, 0xdc, 0x1a, 0xd7, 0xa0, 0x81,
- 0xdb, 0x6b, 0xd2, 0x81, 0x6d, 0x6c, 0xd6, 0x8c, 0x62, 0x6b, 0xe6, 0xe5, 0x3a, 0xd4, 0xd1, 0x36,
- 0x91, 0xed, 0xd2, 0xc2, 0x6c, 0xf1, 0xf3, 0x99, 0xc0, 0xf9, 0x83, 0xa6, 0x48, 0x12, 0xc0, 0xa7,
- 0x5b, 0x4b, 0xe4, 0xba, 0xa7, 0xa4, 0xc8, 0xd4, 0x12, 0x15, 0xfb, 0x52, 0x60, 0x2d, 0x75, 0x07,
- 0x11, 0x13, 0x93, 0x73, 0x6f, 0x05, 0x65, 0x68, 0x92, 0x4b, 0x8d, 0x72, 0x3e, 0x35, 0x7e, 0x29,
- 0x42, 0xc3, 0x54, 0x4e, 0x1c, 0x0a, 0x9d, 0xf2, 0x7f, 0xb4, 0x38, 0x06, 0x2d, 0x1e, 0x5b, 0xc0,
- 0x92, 0xe0, 0xfd, 0x3b, 0x28, 0xf1, 0x7d, 0x11, 0xce, 0x19, 0xb2, 0x9b, 0xef, 0x77, 0xfd, 0xa1,
- 0x88, 0x6e, 0x74, 0x75, 0xb8, 0x37, 0x05, 0xef, 0x09, 0xc9, 0x76, 0xc1, 0xe6, 0xe6, 0xbf, 0xc9,
- 0xab, 0xb6, 0xd9, 0x4e, 0x96, 0x7a, 0xc1, 0x47, 0x6d, 0xfc, 0xb3, 0x3f, 0x09, 0x85, 0x4b, 0x5f,
- 0xeb, 0x99, 0xfa, 0x91, 0x3f, 0x14, 0x5e, 0xc8, 0xd5, 0x80, 0x52, 0xab, 0x68, 0xc1, 0x1e, 0x57,
- 0x03, 0x76, 0x19, 0x56, 0x43, 0x7d, 0xe0, 0x08, 0x0e, 0x22, 0x34, 0xc0, 0xa4, 0xaa, 0xb1, 0xd0,
- 0x18, 0xe9, 0xad, 0x82, 0x47, 0xe2, 0xf5, 0xd7, 0xbc, 0x6e, 0x30, 0x56, 0x82, 0xce, 0xd8, 0x7a,
- 0xab, 0x30, 0xd2, 0x6d, 0x14, 0x3a, 0xb7, 0x01, 0x66, 0xcb, 0x33, 0x00, 0x7b, 0xdb, 0xed, 0xdc,
- 0xd8, 0xef, 0xd4, 0x0b, 0xac, 0x06, 0x80, 0xbf, 0xbd, 0x9d, 0x5b, 0x6e, 0xdd, 0xd2, 0xba, 0x07,
- 0x7b, 0x3b, 0x5a, 0x57, 0x64, 0x15, 0x28, 0xdf, 0xb9, 0xf7, 0xb0, 0x53, 0x2f, 0x69, 0xe9, 0x4e,
- 0xe7, 0xdd, 0xce, 0x7e, 0xa7, 0x5e, 0x76, 0xbe, 0xb3, 0x68, 0x94, 0x66, 0xf3, 0x64, 0xd7, 0xc1,
- 0x1e, 0x98, 0x5c, 0xa9, 0xdc, 0x97, 0x8f, 0x00, 0xcb, 0xcd, 0x82, 0x4b, 0x1f, 0xb1, 0x16, 0x2c,
- 0xc5, 0x49, 0x98, 0x33, 0xda, 0xcd, 0x82, 0x1b, 0x0b, 0xb6, 0x1c, 0xd8, 0xd0, 0x0d, 0xe4, 0x51,
- 0x95, 0x35, 0x48, 0x91, 0x87, 0x28, 0x7a, 0x21, 0x9f, 0x0c, 0x03, 0xde, 0x73, 0xbe, 0x2a, 0xc1,
- 0xf9, 0xcc, 0x4a, 0xd4, 0xcd, 0x54, 0xb6, 0x67, 0xd3, 0xd3, 0x99, 0x46, 0x2d, 0xcd, 0x35, 0xea,
- 0x15, 0xa8, 0x51, 0xd8, 0x71, 0xbf, 0x62, 0x33, 0xaf, 0xa2, 0xf4, 0x0e, 0x75, 0xed, 0xcb, 0xc0,
- 0xc8, 0x8c, 0x1f, 0xa8, 0x41, 0x20, 0xd1, 0x1d, 0xb6, 0x76, 0x1d, 0x35, 0x37, 0x8c, 0xc2, 0x38,
- 0x6d, 0xc3, 0xc9, 0xb4, 0xb5, 0x18, 0x71, 0x7f, 0x48, 0x5d, 0xde, 0x48, 0x9a, 0x77, 0xb4, 0x22,
- 0x7f, 0x26, 0x2c, 0x1d, 0x7d, 0x26, 0x54, 0x8e, 0x3e, 0x13, 0x7e, 0x8e, 0xb7, 0x8a, 0xb9, 0x3a,
- 0xb0, 0x37, 0x33, 0x0c, 0xf9, 0xff, 0x02, 0x86, 0xa4, 0xea, 0x96, 0xa0, 0xc8, 0x1b, 0xd3, 0xc6,
- 0x2b, 0xa6, 0x07, 0x4a, 0x3e, 0xc3, 0x0a, 0x71, 0xa7, 0x6d, 0x5d, 0x86, 0x4b, 0xf3, 0xfc, 0x91,
- 0xb8, 0xca, 0x94, 0x40, 0x1f, 0xd2, 0xfd, 0x39, 0x19, 0xc7, 0xd3, 0x1b, 0x68, 0xce, 0x8f, 0xd3,
- 0x8d, 0x46, 0x37, 0xe7, 0x33, 0x3f, 0xad, 0x49, 0xb3, 0x4c, 0xe2, 0xb4, 0x86, 0x82, 0x27, 0x9c,
- 0xc1, 0xd7, 0x81, 0x68, 0xeb, 0x45, 0x03, 0x6e, 0x98, 0xb7, 0xec, 0x2e, 0xa3, 0xe4, 0xfe, 0x80,
- 0xb3, 0xb7, 0xa0, 0x21, 0xc5, 0x28, 0x50, 0x22, 0xc9, 0x0b, 0x7b, 0x61, 0xc0, 0x75, 0x34, 0x9e,
- 0x49, 0xf4, 0x44, 0x23, 0x07, 0xb4, 0x3c, 0xf2, 0xaf, 0x8a, 0x42, 0x44, 0xce, 0xf9, 0x3c, 0xde,
- 0x50, 0x10, 0xa4, 0xe9, 0x3d, 0x09, 0x28, 0x1f, 0x1d, 0x1a, 0x9e, 0xa9, 0x29, 0x43, 0x1d, 0xda,
- 0x31, 0x8e, 0x82, 0x1a, 0x9a, 0x7e, 0x66, 0xa3, 0xa8, 0xf4, 0x69, 0x97, 0xd8, 0xfc, 0xcd, 0x86,
- 0xfa, 0xb4, 0x96, 0xf7, 0x85, 0x3c, 0xf4, 0xbb, 0x82, 0xbd, 0x0f, 0xf5, 0xec, 0x23, 0x05, 0xbb,
- 0x98, 0x62, 0xde, 0xfc, 0x8b, 0x4b, 0x6b, 0x63, 0xb1, 0x01, 0xe6, 0xe4, 0x14, 0x62, 0xc7, 0xc9,
- 0xab, 0x7f, 0xda, 0x71, 0xce, 0x33, 0x45, 0xda, 0x71, 0xde, 0xab, 0x81, 0x53, 0x60, 0x77, 0x61,
- 0x35, 0x75, 0xdf, 0x64, 0xe7, 0xe7, 0xa3, 0x99, 0x5d, 0xa9, 0x5b, 0xeb, 0x0b, 0xb4, 0x59, 0x7f,
- 0xd3, 0x1b, 0x7d, 0xda, 0x5f, 0xf6, 0xc5, 0x21, 0xed, 0x6f, 0xee, 0x19, 0xc0, 0x29, 0xb0, 0x0f,
- 0x60, 0x2d, 0x73, 0x79, 0x63, 0x17, 0x92, 0xdf, 0xcc, 0xdf, 0x55, 0x5b, 0x17, 0x17, 0xea, 0x63,
- 0xaf, 0x57, 0xad, 0x57, 0x2c, 0xf6, 0x0e, 0x54, 0x93, 0x17, 0x0e, 0x76, 0x2e, 0xf9, 0x59, 0xe6,
- 0xa6, 0xd4, 0x3a, 0x9f, 0xaf, 0x9c, 0x86, 0xf9, 0x1e, 0xd4, 0xd2, 0x67, 0x5e, 0x96, 0x46, 0x2a,
- 0x7b, 0x99, 0x68, 0x5d, 0x58, 0xa4, 0x9e, 0xba, 0xec, 0x00, 0xcc, 0xce, 0x4b, 0xec, 0x6c, 0xaa,
- 0x75, 0x93, 0x07, 0xd0, 0x56, 0x2b, 0x4f, 0x35, 0x75, 0xf3, 0x10, 0x01, 0x4c, 0x8c, 0xaa, 0x34,
- 0x80, 0xf3, 0xb3, 0x34, 0x0d, 0x60, 0xce, 0x8c, 0xd3, 0x00, 0xce, 0xc2, 0xd3, 0x9d, 0x95, 0x0d,
- 0x2f, 0x31, 0xb6, 0xb2, 0xe1, 0x25, 0x9b, 0xd5, 0x29, 0x3c, 0xb2, 0xcd, 0x8b, 0xe4, 0xab, 0x7f,
- 0x06, 0x00, 0x00, 0xff, 0xff, 0xcb, 0x7b, 0x94, 0xf3, 0xbb, 0x14, 0x00, 0x00,
+ // 1352 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0x4f, 0x6f, 0x1b, 0x55,
+ 0x10, 0xf7, 0xda, 0xee, 0xc6, 0x99, 0x38, 0x8e, 0xf3, 0xfa, 0x07, 0xd7, 0x6d, 0x9a, 0x74, 0x4b,
+ 0xa1, 0x54, 0xc8, 0x42, 0x01, 0xc1, 0xa9, 0xa0, 0x26, 0x71, 0x68, 0x0b, 0x6d, 0xc3, 0x36, 0x2d,
+ 0xdc, 0x56, 0xaf, 0xf6, 0xc3, 0x5e, 0x61, 0x7b, 0x97, 0xb7, 0x2f, 0x51, 0x8d, 0x50, 0xc5, 0x05,
+ 0xb8, 0x72, 0xe2, 0xc0, 0x09, 0x89, 0x4f, 0xc0, 0x85, 0x03, 0x07, 0x4e, 0x9c, 0xb8, 0xf6, 0xc0,
+ 0xd7, 0x41, 0xef, 0xcd, 0xac, 0xbd, 0xbb, 0x5e, 0x57, 0x09, 0xb4, 0xa2, 0x42, 0xdc, 0xec, 0x99,
+ 0xd9, 0x79, 0x33, 0xbf, 0xf9, 0xcd, 0xbc, 0x3f, 0x50, 0x0f, 0x42, 0x21, 0xb9, 0xf2, 0x83, 0x51,
+ 0xd4, 0x0a, 0x65, 0xa0, 0x02, 0x66, 0xf7, 0x7c, 0xc5, 0x07, 0xe3, 0x66, 0x35, 0xea, 0x73, 0x29,
+ 0xba, 0x28, 0x75, 0x7e, 0xb6, 0xe0, 0xa5, 0xfb, 0x91, 0x90, 0xdb, 0x52, 0x70, 0x25, 0xb6, 0x24,
+ 0x1f, 0x75, 0xfa, 0xae, 0xf8, 0xfc, 0x40, 0x44, 0x8a, 0x6d, 0x02, 0x48, 0x11, 0x06, 0x91, 0xaf,
+ 0x02, 0x39, 0x6e, 0x58, 0x1b, 0xd6, 0x95, 0xa5, 0x4d, 0xd6, 0x42, 0x37, 0x2d, 0x77, 0xa2, 0x71,
+ 0x13, 0x56, 0x6c, 0x1d, 0x96, 0x1e, 0x1a, 0x27, 0xde, 0x88, 0x0f, 0x45, 0xa3, 0xb8, 0x61, 0x5d,
+ 0xa9, 0xba, 0x80, 0xa2, 0x3b, 0x7c, 0x28, 0xd8, 0x06, 0x94, 0x0f, 0x22, 0x21, 0x1b, 0x25, 0xe3,
+ 0xae, 0x1a, 0xbb, 0xd3, 0x31, 0xb8, 0x46, 0xa3, 0x5d, 0x44, 0x8a, 0x4b, 0xe5, 0x85, 0x81, 0x3f,
+ 0x52, 0x8d, 0x32, 0xba, 0x30, 0xa2, 0x3d, 0x2d, 0x71, 0x46, 0xd0, 0x98, 0x0d, 0x39, 0x0a, 0x83,
+ 0x51, 0x24, 0xd8, 0x2b, 0x60, 0xe3, 0x62, 0x14, 0x6f, 0x2d, 0x5e, 0x80, 0xec, 0x48, 0xcb, 0xae,
+ 0xc2, 0x6a, 0x28, 0x85, 0x27, 0x45, 0x47, 0xf8, 0x87, 0xc2, 0x13, 0x52, 0x06, 0xd2, 0x44, 0xbb,
+ 0xe8, 0xae, 0x84, 0x52, 0xb8, 0x28, 0x6f, 0x6b, 0xb1, 0xf3, 0x1d, 0x61, 0xb4, 0x23, 0x06, 0xe2,
+ 0xc5, 0xc0, 0xc8, 0xd9, 0x45, 0x08, 0xd2, 0x11, 0x11, 0x04, 0xb9, 0xa9, 0x59, 0xf9, 0xa9, 0x7d,
+ 0x6b, 0xc1, 0xa9, 0xa9, 0xa3, 0x7d, 0xde, 0xfb, 0x27, 0x79, 0x9d, 0x85, 0x8a, 0xe2, 0xbd, 0x64,
+ 0x52, 0x0b, 0x8a, 0xf7, 0x8e, 0x98, 0xd1, 0x36, 0x9c, 0xce, 0x04, 0xf2, 0x37, 0xd2, 0xf9, 0x83,
+ 0xd2, 0x41, 0x6a, 0xfc, 0x8b, 0xe9, 0xb0, 0x57, 0x61, 0x45, 0x71, 0xd9, 0x13, 0xca, 0x93, 0xe2,
+ 0xd0, 0x8f, 0xfc, 0x60, 0x44, 0x44, 0xae, 0xa1, 0xd8, 0x25, 0x29, 0x6b, 0xc0, 0xc2, 0x50, 0x44,
+ 0x11, 0xef, 0x89, 0xc6, 0x09, 0x5c, 0x84, 0xfe, 0x3a, 0x5f, 0x20, 0x22, 0x89, 0x5c, 0x08, 0x91,
+ 0x35, 0x28, 0x29, 0xde, 0xa3, 0x2c, 0x96, 0xe2, 0xc5, 0xb5, 0x85, 0x96, 0xb3, 0x33, 0x60, 0x8b,
+ 0x47, 0x7e, 0xa4, 0x22, 0x13, 0x75, 0xc5, 0xa5, 0x7f, 0xf9, 0x40, 0x96, 0xf2, 0x81, 0x7c, 0x62,
+ 0xc1, 0x19, 0xbd, 0xf8, 0x6d, 0x21, 0x7b, 0xcf, 0x80, 0xf1, 0x31, 0x5e, 0xc5, 0xb9, 0x78, 0x9d,
+ 0x83, 0xc5, 0x4e, 0x30, 0x1c, 0xfa, 0xca, 0xf3, 0xbb, 0x14, 0x54, 0x05, 0x05, 0x37, 0xbb, 0x3a,
+ 0x23, 0x6a, 0x6a, 0xc4, 0x30, 0x6e, 0xe2, 0xb9, 0xd8, 0xb1, 0x53, 0x70, 0x82, 0x87, 0xe1, 0x60,
+ 0xdc, 0xb0, 0x0d, 0x04, 0xf8, 0xc7, 0xf9, 0x8a, 0x1a, 0x39, 0x95, 0x15, 0x81, 0x9a, 0x0a, 0xc0,
+ 0xca, 0x04, 0xb0, 0x05, 0xcb, 0xd4, 0xb1, 0x07, 0x61, 0x97, 0x2b, 0x41, 0x85, 0x5f, 0x8b, 0x13,
+ 0xb9, 0x1b, 0x0f, 0x5b, 0x74, 0x7a, 0xdf, 0x18, 0xb9, 0xd5, 0x87, 0x89, 0x7f, 0xb7, 0xca, 0x95,
+ 0x62, 0xbd, 0xe4, 0x3c, 0x86, 0xd3, 0xb9, 0xc6, 0x4f, 0x5f, 0xff, 0x22, 0x54, 0x35, 0x9a, 0x5e,
+ 0xc7, 0x70, 0xa1, 0x4b, 0x85, 0x5d, 0xd2, 0x32, 0xa4, 0x47, 0x97, 0x5d, 0x86, 0x1a, 0x85, 0x18,
+ 0x1b, 0x95, 0x8c, 0x11, 0x05, 0x4e, 0x66, 0xce, 0x8f, 0x16, 0x9c, 0xd4, 0x10, 0xec, 0xee, 0xbe,
+ 0xa8, 0x55, 0x75, 0xbe, 0xa1, 0x26, 0x9e, 0x86, 0x48, 0x25, 0x9a, 0xa9, 0x82, 0x75, 0xec, 0x2a,
+ 0x1c, 0x6b, 0xee, 0xff, 0x56, 0xa4, 0x0e, 0xec, 0x0b, 0x29, 0xc7, 0x7b, 0x7e, 0xe7, 0xb3, 0xe7,
+ 0x8b, 0xd6, 0x6b, 0x60, 0x23, 0x38, 0x44, 0xaf, 0xd5, 0xd8, 0xe6, 0x7d, 0x5f, 0x6d, 0x1b, 0x85,
+ 0x4b, 0x06, 0xd9, 0x2d, 0xa4, 0x3c, 0xb3, 0x85, 0xcc, 0x6f, 0x8d, 0xab, 0xb0, 0x8a, 0xdb, 0x6b,
+ 0xd2, 0x81, 0x6d, 0x6c, 0x56, 0x8c, 0x62, 0x6b, 0xea, 0xe5, 0x1a, 0xd4, 0xd1, 0x36, 0x91, 0xed,
+ 0xc2, 0xdc, 0x6c, 0xf1, 0xf3, 0xa9, 0xc0, 0xf9, 0x93, 0xa6, 0x48, 0x12, 0xc0, 0x67, 0x5b, 0x4b,
+ 0xe4, 0xba, 0xa7, 0xa4, 0xc8, 0xd4, 0x12, 0x15, 0xfb, 0x52, 0x60, 0x2d, 0x75, 0x07, 0x11, 0x13,
+ 0x93, 0x73, 0x6f, 0x09, 0x65, 0x68, 0x92, 0x4b, 0x8d, 0x72, 0x3e, 0x35, 0x7e, 0x2d, 0xc2, 0xaa,
+ 0xa9, 0x9c, 0x38, 0x14, 0x3a, 0xe5, 0xff, 0x69, 0x71, 0x0c, 0x5a, 0x3c, 0xb1, 0x80, 0x25, 0xc1,
+ 0xfb, 0x6f, 0x50, 0xe2, 0x87, 0x22, 0x9c, 0x33, 0x64, 0x37, 0xdf, 0xef, 0xfa, 0x03, 0x11, 0x5d,
+ 0xef, 0xe8, 0x70, 0x6f, 0x08, 0xde, 0x15, 0x92, 0xed, 0x82, 0xcd, 0xcd, 0x7f, 0x93, 0x57, 0x6d,
+ 0xb3, 0x95, 0x2c, 0xf5, 0x9c, 0x8f, 0x5a, 0xf8, 0x67, 0x7f, 0x1c, 0x0a, 0x97, 0xbe, 0xd6, 0x33,
+ 0xf5, 0x53, 0x7f, 0x20, 0xbc, 0x90, 0xab, 0x3e, 0xa5, 0x56, 0xd1, 0x82, 0x3d, 0xae, 0xfa, 0xec,
+ 0x12, 0x2c, 0x87, 0xfa, 0xc0, 0x11, 0x1c, 0x44, 0x68, 0x80, 0x49, 0x55, 0x63, 0xa1, 0x31, 0xd2,
+ 0x5b, 0x05, 0x8f, 0xc4, 0xdb, 0x6f, 0x79, 0x9d, 0x60, 0xa4, 0x04, 0x9d, 0xb1, 0xf5, 0x56, 0x61,
+ 0xa4, 0xdb, 0x28, 0x74, 0x6e, 0x01, 0x4c, 0x97, 0x67, 0x00, 0xf6, 0xb6, 0xdb, 0xbe, 0xbe, 0xdf,
+ 0xae, 0x17, 0x58, 0x0d, 0x00, 0x7f, 0x7b, 0x3b, 0x37, 0xdd, 0xba, 0xa5, 0x75, 0xf7, 0xf7, 0x76,
+ 0xb4, 0xae, 0xc8, 0x2a, 0x50, 0xbe, 0x7d, 0xf7, 0x41, 0xbb, 0x5e, 0xd2, 0xd2, 0x9d, 0xf6, 0x87,
+ 0xed, 0xfd, 0x76, 0xbd, 0xec, 0x7c, 0x6f, 0xd1, 0x28, 0xcd, 0xe6, 0xc9, 0xae, 0x81, 0xdd, 0x37,
+ 0xb9, 0x52, 0xb9, 0x2f, 0x1d, 0x01, 0x96, 0x1b, 0x05, 0x97, 0x3e, 0x62, 0x4d, 0x58, 0x88, 0x93,
+ 0x30, 0x67, 0xb4, 0x1b, 0x05, 0x37, 0x16, 0x6c, 0x39, 0xb0, 0xa1, 0x1b, 0xc8, 0xa3, 0x2a, 0x6b,
+ 0x90, 0x22, 0x0f, 0x51, 0xf4, 0x42, 0x3e, 0x1e, 0x04, 0xbc, 0xeb, 0x7c, 0x5d, 0x82, 0xf3, 0x99,
+ 0x95, 0xa8, 0x9b, 0xa9, 0x6c, 0xcf, 0xa7, 0xa7, 0x33, 0x8d, 0x5a, 0x9a, 0x69, 0xd4, 0xcb, 0x50,
+ 0xa3, 0xb0, 0xe3, 0x7e, 0xc5, 0x66, 0x5e, 0x46, 0xe9, 0x6d, 0xea, 0xda, 0xd7, 0x81, 0x91, 0x19,
+ 0x3f, 0x50, 0xfd, 0x40, 0xa2, 0x3b, 0x6c, 0xed, 0x3a, 0x6a, 0xae, 0x1b, 0x85, 0x71, 0xda, 0x82,
+ 0x93, 0x69, 0x6b, 0x31, 0xe4, 0xfe, 0x80, 0xba, 0x7c, 0x35, 0x69, 0xde, 0xd6, 0x8a, 0xfc, 0x99,
+ 0xb0, 0x70, 0xf4, 0x99, 0x50, 0x39, 0xfa, 0x4c, 0xf8, 0x25, 0xde, 0x2a, 0x66, 0xea, 0xc0, 0xde,
+ 0xcd, 0x30, 0xe4, 0xe5, 0x39, 0x0c, 0x49, 0xd5, 0x2d, 0x41, 0x91, 0x77, 0x26, 0x8d, 0x57, 0x4c,
+ 0x0f, 0x94, 0x7c, 0x86, 0x15, 0xe2, 0x4e, 0xdb, 0xba, 0x04, 0x17, 0x67, 0xf9, 0x23, 0x71, 0x95,
+ 0x09, 0x81, 0x1e, 0xd3, 0xfd, 0x39, 0x19, 0xc7, 0x33, 0x1c, 0x68, 0xeb, 0xb0, 0xe4, 0x8f, 0xba,
+ 0xe2, 0x51, 0x6a, 0x94, 0x81, 0x11, 0xe1, 0xd8, 0xf9, 0x69, 0xb2, 0x13, 0xe9, 0xee, 0x7d, 0xee,
+ 0xc7, 0x39, 0x69, 0x96, 0x49, 0x1c, 0xe7, 0x50, 0xf0, 0x94, 0x43, 0xfa, 0x1a, 0x10, 0xaf, 0xbd,
+ 0xa8, 0xcf, 0x0d, 0x35, 0x17, 0xdd, 0x45, 0x94, 0xdc, 0xeb, 0x73, 0xf6, 0x1e, 0xac, 0x4a, 0x31,
+ 0x0c, 0x94, 0x48, 0x12, 0xc7, 0x9e, 0x1b, 0x70, 0x1d, 0x8d, 0xa7, 0x12, 0x3d, 0xf2, 0xc8, 0x01,
+ 0x2d, 0x8f, 0x04, 0xad, 0xa2, 0x10, 0xa1, 0x75, 0xbe, 0x8c, 0x77, 0x1c, 0x04, 0x69, 0x72, 0x91,
+ 0x02, 0xca, 0x47, 0x87, 0x86, 0x87, 0x6e, 0xca, 0x50, 0x87, 0x76, 0x8c, 0xb3, 0xa2, 0x86, 0xa6,
+ 0x97, 0xd9, 0x49, 0x2a, 0x3d, 0xda, 0x46, 0x36, 0x7f, 0xb7, 0xa1, 0x3e, 0x29, 0xf6, 0x3d, 0x21,
+ 0x0f, 0xfd, 0x8e, 0x60, 0x1f, 0x43, 0x3d, 0xfb, 0x8a, 0xc1, 0xd6, 0x53, 0xd4, 0x9c, 0x7d, 0x92,
+ 0x69, 0x6e, 0xcc, 0x37, 0xc0, 0x9c, 0x9c, 0x42, 0xec, 0x38, 0xf9, 0x36, 0x90, 0x76, 0x9c, 0xf3,
+ 0x8e, 0x91, 0x76, 0x9c, 0xf7, 0xac, 0xe0, 0x14, 0xd8, 0x1d, 0x58, 0x4e, 0x5d, 0x48, 0xd9, 0xf9,
+ 0xd9, 0x68, 0xa6, 0x77, 0xee, 0xe6, 0xda, 0x1c, 0x6d, 0xd6, 0xdf, 0xe4, 0xca, 0x9f, 0xf6, 0x97,
+ 0x7d, 0x92, 0x48, 0xfb, 0x9b, 0x79, 0x27, 0x70, 0x0a, 0xec, 0x13, 0x58, 0xc9, 0xdc, 0xee, 0xd8,
+ 0x85, 0xe4, 0x37, 0xb3, 0x97, 0xd9, 0xe6, 0xfa, 0x5c, 0x7d, 0xec, 0xf5, 0x8a, 0xf5, 0x86, 0xc5,
+ 0x3e, 0x80, 0x6a, 0xf2, 0x46, 0xc2, 0xce, 0x25, 0x3f, 0xcb, 0x5c, 0xa5, 0x9a, 0xe7, 0xf3, 0x95,
+ 0x93, 0x30, 0x3f, 0x82, 0x5a, 0xfa, 0x50, 0xcc, 0xd2, 0x48, 0x65, 0x6f, 0x1b, 0xcd, 0x0b, 0xf3,
+ 0xd4, 0x13, 0x97, 0x6d, 0x80, 0xe9, 0x81, 0x8a, 0x9d, 0x4d, 0xb5, 0x6e, 0xf2, 0x84, 0xda, 0x6c,
+ 0xe6, 0xa9, 0x26, 0x6e, 0x1e, 0x20, 0x80, 0x89, 0x59, 0x96, 0x06, 0x70, 0x76, 0xd8, 0xa6, 0x01,
+ 0xcc, 0x19, 0x82, 0x1a, 0xc0, 0x69, 0x78, 0xba, 0xb3, 0xb2, 0xe1, 0x25, 0xc6, 0x56, 0x36, 0xbc,
+ 0x64, 0xb3, 0x3a, 0x85, 0x87, 0xb6, 0x79, 0xb2, 0x7c, 0xf3, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0x9c, 0x97, 0xb0, 0x83, 0xdc, 0x14, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 33e06b849..d29e8d309 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -201,12 +201,12 @@
"revisionTime": "2017-01-30T11:31:45Z"
},
{
- "checksumSHA1": "Cdzx473bX7lRgrvap5zSvP/czYU=",
+ "checksumSHA1": "osZSUV8LlkgpPPeQWxj4/YFjNiU=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
- "revision": "5d60618a93b5b579a9056bdf0965c2403173fb5b",
- "revisionTime": "2018-01-09T13:56:37Z",
- "version": "v0.69.0",
- "versionExact": "v0.69.0"
+ "revision": "e43a72fd3363ea92c3f987c97d5537a2b6c05763",
+ "revisionTime": "2018-01-10T11:13:55Z",
+ "version": "v0.70.0",
+ "versionExact": "v0.70.0"
},
{
"checksumSHA1": "nqWNlnMmVpt628zzvyo6Yv2CX5Q=",