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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2018-02-21 11:59:45 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2018-02-21 11:59:45 +0300
commitcd94b3245d9eb59513c7ad2526415a776f3c5a63 (patch)
treef6f9dd1567a189a70ecf2560f64f95efa56c5fb4
parentf760a4abace74dc589081aa3df21a4f57fa483fc (diff)
FindLicense Server Implementation
As part of gitlab-org/gitaly#1026, the server has been implemented. The current implementation redirects the request to the ruby server as thats the way its done at the CE/EE codebase too[1], and thus quickest right now. The same gem is used on Gitaly, which means we should try to keep those in sync. Vendoring of gitaly-proto is locked to a branch at the moment, as the version required has not been released yet. CI will not run for this commit, as the gitaly-proto gem still needs to be updated in a commit following this one. [ci skip] [1]: https://gitlab.com/gitlab-org/gitlab-ce/blob/216d21c5496fb7e7666c3c3e7ebbdff1e8fd0493/app/models/repository.rb#L589-601
-rw-r--r--internal/service/repository/license.go23
-rw-r--r--internal/service/repository/license_test.go31
-rw-r--r--ruby/Gemfile4
-rw-r--r--ruby/Gemfile.lock3
-rw-r--r--ruby/lib/gitaly_server/repository_service.rb13
-rw-r--r--ruby/lib/gitlab/git.rb2
-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/repository-service.pb.go251
-rw-r--r--vendor/vendor.json14
9 files changed, 248 insertions, 95 deletions
diff --git a/internal/service/repository/license.go b/internal/service/repository/license.go
new file mode 100644
index 000000000..bc2641b46
--- /dev/null
+++ b/internal/service/repository/license.go
@@ -0,0 +1,23 @@
+package repository
+
+import (
+ "golang.org/x/net/context"
+
+ "gitlab.com/gitlab-org/gitaly/internal/rubyserver"
+
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+)
+
+func (s *server) FindLicense(ctx context.Context, in *pb.FindLicenseRequest) (*pb.FindLicenseResponse, error) {
+ client, err := s.RepositoryServiceClient(ctx)
+ if err != nil {
+ return nil, err
+ }
+
+ clientCtx, err := rubyserver.SetHeaders(ctx, in.GetRepository())
+ if err != nil {
+ return nil, err
+ }
+
+ return client.FindLicense(clientCtx, in)
+}
diff --git a/internal/service/repository/license_test.go b/internal/service/repository/license_test.go
new file mode 100644
index 000000000..8a51e6b32
--- /dev/null
+++ b/internal/service/repository/license_test.go
@@ -0,0 +1,31 @@
+package repository
+
+import (
+ "testing"
+
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+ "gitlab.com/gitlab-org/gitaly/internal/testhelper"
+
+ "github.com/stretchr/testify/require"
+)
+
+func TestSuccessfulFindLicenseRequest(t *testing.T) {
+ server, serverSocketPath := runRepoServer(t)
+ defer server.Stop()
+
+ client, conn := newRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ req := &pb.FindLicenseRequest{Repository: testRepo}
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ resp, err := client.FindLicense(ctx, req)
+
+ require.NoError(t, err)
+ require.Equal(t, "mit", resp.GetLicenseeShortName())
+}
diff --git a/ruby/Gemfile b/ruby/Gemfile
index 2b9544616..01e149ed1 100644
--- a/ruby/Gemfile
+++ b/ruby/Gemfile
@@ -9,6 +9,10 @@ gem 'gollum-lib', '~> 4.2', require: false
gem 'gollum-rugged_adapter', '~> 0.4.4', require: false
gem 'grpc', '~> 1.8.0'
+# Detects the open source license the repository includes
+# This version needs to be in sync with GitLab CE/EE
+gem 'licensee', '~> 8.7.0'
+
# Locked until https://github.com/google/protobuf/issues/4210 is closed
gem 'google-protobuf', '= 3.5.1'
diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock
index cb53bb101..682748724 100644
--- a/ruby/Gemfile.lock
+++ b/ruby/Gemfile.lock
@@ -67,6 +67,8 @@ GEM
i18n (0.8.1)
json (2.1.0)
jwt (2.1.0)
+ licensee (8.7.0)
+ rugged (~> 0.24)
little-plugger (1.1.4)
logging (2.2.2)
little-plugger (~> 1.1)
@@ -145,6 +147,7 @@ DEPENDENCIES
gollum-rugged_adapter (~> 0.4.4)
google-protobuf (= 3.5.1)
grpc (~> 1.8.0)
+ licensee (~> 8.7.0)
rdoc (~> 4.2)
rspec
diff --git a/ruby/lib/gitaly_server/repository_service.rb b/ruby/lib/gitaly_server/repository_service.rb
index 0e99d10b4..3ce7a8794 100644
--- a/ruby/lib/gitaly_server/repository_service.rb
+++ b/ruby/lib/gitaly_server/repository_service.rb
@@ -120,5 +120,18 @@ module GitalyServer
end
end
end
+
+ def find_license(request, call)
+ bridge_exceptions do
+ repo = Gitlab::Git::Repository.from_gitaly(request.repository, call)
+
+ short_name = begin
+ Licensee.license(repo.path).try(:key)
+ rescue Rugged::Error
+ end
+
+ Gitaly::FindLicenseResponse.new(license_short_name: short_name)
+ end
+ end
end
end
diff --git a/ruby/lib/gitlab/git.rb b/ruby/lib/gitlab/git.rb
index c07936adf..4a301e125 100644
--- a/ruby/lib/gitlab/git.rb
+++ b/ruby/lib/gitlab/git.rb
@@ -52,6 +52,8 @@ module Gitlab
)
end
+ attr_reader :path
+
def initialize(gitaly_repository, path, gl_repository, gitlab_projects, combined_alt_dirs="")
@gitaly_repository = gitaly_repository
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 586025744..3b21bb96f 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
@@ -201,6 +201,8 @@ It has these top-level messages:
WriteConfigResponse
CreateRepositoryFromBundleRequest
CreateRepositoryFromBundleResponse
+ FindLicenseRequest
+ FindLicenseResponse
ServerInfoRequest
ServerInfoResponse
Repository
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
index 06bba0691..5ae41b2cf 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
@@ -907,6 +907,38 @@ func (*CreateRepositoryFromBundleResponse) Descriptor() ([]byte, []int) {
return fileDescriptor10, []int{43}
}
+type FindLicenseRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+}
+
+func (m *FindLicenseRequest) Reset() { *m = FindLicenseRequest{} }
+func (m *FindLicenseRequest) String() string { return proto.CompactTextString(m) }
+func (*FindLicenseRequest) ProtoMessage() {}
+func (*FindLicenseRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{44} }
+
+func (m *FindLicenseRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+type FindLicenseResponse struct {
+ LicenseeShortName string `protobuf:"bytes,1,opt,name=licensee_short_name,json=licenseeShortName" json:"licensee_short_name,omitempty"`
+}
+
+func (m *FindLicenseResponse) Reset() { *m = FindLicenseResponse{} }
+func (m *FindLicenseResponse) String() string { return proto.CompactTextString(m) }
+func (*FindLicenseResponse) ProtoMessage() {}
+func (*FindLicenseResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{45} }
+
+func (m *FindLicenseResponse) GetLicenseeShortName() string {
+ if m != nil {
+ return m.LicenseeShortName
+ }
+ return ""
+}
+
func init() {
proto.RegisterType((*RepositoryExistsRequest)(nil), "gitaly.RepositoryExistsRequest")
proto.RegisterType((*RepositoryExistsResponse)(nil), "gitaly.RepositoryExistsResponse")
@@ -952,6 +984,8 @@ func init() {
proto.RegisterType((*WriteConfigResponse)(nil), "gitaly.WriteConfigResponse")
proto.RegisterType((*CreateRepositoryFromBundleRequest)(nil), "gitaly.CreateRepositoryFromBundleRequest")
proto.RegisterType((*CreateRepositoryFromBundleResponse)(nil), "gitaly.CreateRepositoryFromBundleResponse")
+ proto.RegisterType((*FindLicenseRequest)(nil), "gitaly.FindLicenseRequest")
+ proto.RegisterType((*FindLicenseResponse)(nil), "gitaly.FindLicenseResponse")
proto.RegisterEnum("gitaly.GetArchiveRequest_Format", GetArchiveRequest_Format_name, GetArchiveRequest_Format_value)
}
@@ -988,6 +1022,7 @@ type RepositoryServiceClient interface {
CreateBundle(ctx context.Context, in *CreateBundleRequest, opts ...grpc.CallOption) (RepositoryService_CreateBundleClient, error)
CreateRepositoryFromBundle(ctx context.Context, opts ...grpc.CallOption) (RepositoryService_CreateRepositoryFromBundleClient, error)
WriteConfig(ctx context.Context, in *WriteConfigRequest, opts ...grpc.CallOption) (*WriteConfigResponse, error)
+ FindLicense(ctx context.Context, in *FindLicenseRequest, opts ...grpc.CallOption) (*FindLicenseResponse, error)
}
type repositoryServiceClient struct {
@@ -1267,6 +1302,15 @@ func (c *repositoryServiceClient) WriteConfig(ctx context.Context, in *WriteConf
return out, nil
}
+func (c *repositoryServiceClient) FindLicense(ctx context.Context, in *FindLicenseRequest, opts ...grpc.CallOption) (*FindLicenseResponse, error) {
+ out := new(FindLicenseResponse)
+ err := grpc.Invoke(ctx, "/gitaly.RepositoryService/FindLicense", in, out, c.cc, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// Server API for RepositoryService service
type RepositoryServiceServer interface {
@@ -1292,6 +1336,7 @@ type RepositoryServiceServer interface {
CreateBundle(*CreateBundleRequest, RepositoryService_CreateBundleServer) error
CreateRepositoryFromBundle(RepositoryService_CreateRepositoryFromBundleServer) error
WriteConfig(context.Context, *WriteConfigRequest) (*WriteConfigResponse, error)
+ FindLicense(context.Context, *FindLicenseRequest) (*FindLicenseResponse, error)
}
func RegisterRepositoryServiceServer(s *grpc.Server, srv RepositoryServiceServer) {
@@ -1708,6 +1753,24 @@ func _RepositoryService_WriteConfig_Handler(srv interface{}, ctx context.Context
return interceptor(ctx, in, info, handler)
}
+func _RepositoryService_FindLicense_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(FindLicenseRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(RepositoryServiceServer).FindLicense(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.RepositoryService/FindLicense",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(RepositoryServiceServer).FindLicense(ctx, req.(*FindLicenseRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _RepositoryService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.RepositoryService",
HandlerType: (*RepositoryServiceServer)(nil),
@@ -1788,6 +1851,10 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
MethodName: "WriteConfig",
Handler: _RepositoryService_WriteConfig_Handler,
},
+ {
+ MethodName: "FindLicense",
+ Handler: _RepositoryService_FindLicense_Handler,
+ },
},
Streams: []grpc.StreamDesc{
{
@@ -1812,94 +1879,98 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor10) }
var fileDescriptor10 = []byte{
- // 1419 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0x51, 0x6f, 0xdb, 0x36,
- 0x10, 0xb6, 0xe3, 0xc6, 0x49, 0xce, 0x6e, 0xe7, 0x30, 0x4e, 0xa3, 0x28, 0x69, 0x93, 0x70, 0xc5,
- 0x96, 0xb5, 0x5b, 0x50, 0x24, 0xc0, 0xb0, 0x97, 0xa1, 0x48, 0x8a, 0x3a, 0x35, 0xda, 0x14, 0x9d,
- 0xda, 0xa1, 0x40, 0x80, 0xc1, 0x50, 0x6c, 0xda, 0x16, 0x2c, 0x8b, 0x2e, 0x49, 0xa7, 0x4d, 0x7f,
- 0xc1, 0x7e, 0xd7, 0xfe, 0xc2, 0x5e, 0xf7, 0xb6, 0xc7, 0xfd, 0x89, 0x41, 0x24, 0x2d, 0x4a, 0x96,
- 0xe4, 0x15, 0xd0, 0x86, 0xbd, 0x89, 0x47, 0xf2, 0xbb, 0xe3, 0x1d, 0xef, 0xf8, 0x9d, 0xc0, 0x62,
- 0x64, 0x42, 0xb9, 0x27, 0x28, 0xbb, 0xf9, 0x8e, 0x13, 0x76, 0xed, 0x75, 0xc9, 0xd1, 0x84, 0x51,
- 0x41, 0x51, 0x75, 0xe0, 0x09, 0xd7, 0xbf, 0xb1, 0xeb, 0x7c, 0xe8, 0x32, 0xd2, 0x53, 0x52, 0x7c,
- 0x01, 0x5b, 0x4e, 0xb4, 0xe3, 0xd9, 0x47, 0x8f, 0x0b, 0xee, 0x90, 0xf7, 0x53, 0xc2, 0x05, 0x3a,
- 0x06, 0x30, 0x60, 0x56, 0x79, 0xbf, 0x7c, 0x58, 0x3b, 0x46, 0x47, 0x0a, 0xe5, 0xc8, 0x6c, 0x72,
- 0x62, 0xab, 0xf0, 0x31, 0x58, 0x69, 0x38, 0x3e, 0xa1, 0x01, 0x27, 0xe8, 0x2e, 0x54, 0x89, 0x94,
- 0x48, 0xac, 0x55, 0x47, 0x8f, 0xf0, 0xab, 0xf8, 0x9e, 0x36, 0x7f, 0x36, 0x9e, 0x88, 0x9b, 0x22,
- 0x36, 0x7c, 0x0f, 0xdb, 0x19, 0x78, 0xda, 0x88, 0x6d, 0x58, 0xf5, 0x78, 0x87, 0x84, 0x32, 0x6d,
- 0xc6, 0x8a, 0xa7, 0x96, 0x68, 0x3b, 0xdc, 0xee, 0xa8, 0x1d, 0x74, 0x19, 0x19, 0x93, 0x40, 0xb8,
- 0x7e, 0x11, 0x3b, 0x76, 0xa4, 0x1d, 0xf3, 0x78, 0xca, 0x0e, 0xec, 0xc3, 0xba, 0x9a, 0x6c, 0x4d,
- 0xfd, 0x22, 0x5a, 0xd0, 0x97, 0x70, 0xbb, 0xcb, 0x88, 0x2b, 0x48, 0xe7, 0xca, 0x13, 0x63, 0x77,
- 0x62, 0x2d, 0xc9, 0x53, 0xd5, 0x95, 0xf0, 0x4c, 0xca, 0x70, 0x13, 0x50, 0x5c, 0x9b, 0xb6, 0x61,
- 0x02, 0x9b, 0xe7, 0x2e, 0xbb, 0x72, 0x07, 0xe4, 0x29, 0xf5, 0x7d, 0xd2, 0x15, 0xff, 0xb9, 0x1d,
- 0x16, 0xdc, 0x9d, 0xd7, 0xa8, 0x6d, 0x79, 0x01, 0x9b, 0x06, 0xf8, 0x8d, 0xf7, 0x89, 0x14, 0xf1,
- 0xfc, 0xb7, 0x70, 0x77, 0x1e, 0x4c, 0x87, 0x1f, 0xc1, 0x2d, 0xee, 0x7d, 0x22, 0x12, 0xa7, 0xe2,
- 0xc8, 0x6f, 0x3c, 0x82, 0xed, 0xd3, 0xc9, 0xc4, 0xbf, 0x39, 0xf7, 0x84, 0x2b, 0x04, 0xf3, 0xae,
- 0xa6, 0x82, 0x14, 0x49, 0x02, 0x64, 0xc3, 0x2a, 0x23, 0xd7, 0x1e, 0xf7, 0x68, 0x20, 0xbd, 0x50,
- 0x77, 0xa2, 0x31, 0xde, 0x05, 0x3b, 0x4b, 0x99, 0xf6, 0xc2, 0x9f, 0x65, 0x40, 0x2d, 0x22, 0xba,
- 0x43, 0x87, 0x8c, 0xa9, 0x28, 0xe2, 0x83, 0x30, 0xdb, 0x98, 0x04, 0x91, 0x26, 0xac, 0x39, 0x7a,
- 0x84, 0x9a, 0xb0, 0xdc, 0xa7, 0xac, 0x4b, 0xac, 0x8a, 0x8c, 0x8f, 0x1a, 0xa0, 0x2d, 0x58, 0x09,
- 0x68, 0x47, 0xb8, 0x03, 0x6e, 0xdd, 0x52, 0xc9, 0x19, 0xd0, 0xb7, 0xee, 0x80, 0x23, 0x0b, 0x56,
- 0x84, 0x37, 0x26, 0x74, 0x2a, 0xac, 0xe5, 0xfd, 0xf2, 0xe1, 0xb2, 0x33, 0x1b, 0x86, 0x5b, 0x38,
- 0x1f, 0x76, 0x46, 0xe4, 0xc6, 0xaa, 0x2a, 0x0d, 0x9c, 0x0f, 0x5f, 0x90, 0x1b, 0xb4, 0x07, 0xb5,
- 0x51, 0x40, 0x3f, 0x04, 0x9d, 0x21, 0x0d, 0x93, 0x7d, 0x45, 0x4e, 0x82, 0x14, 0x3d, 0x0f, 0x25,
- 0x78, 0x13, 0x36, 0x12, 0x87, 0xd4, 0x87, 0xbf, 0x80, 0xad, 0xa7, 0xf2, 0xb2, 0xc4, 0x4e, 0x54,
- 0xe0, 0x12, 0xd8, 0x60, 0xa5, 0xe1, 0xb4, 0xaa, 0xbf, 0xca, 0xb0, 0x7e, 0x4e, 0xc4, 0x29, 0xeb,
- 0x0e, 0xbd, 0xeb, 0x42, 0x6e, 0xde, 0x81, 0xb5, 0x2e, 0x1d, 0x8f, 0x3d, 0xd1, 0xf1, 0x7a, 0xda,
- 0xd3, 0xab, 0x4a, 0xd0, 0xee, 0x85, 0x31, 0x98, 0x30, 0xd2, 0xf7, 0x3e, 0x4a, 0x67, 0xaf, 0x39,
- 0x7a, 0x84, 0x7e, 0x80, 0x6a, 0x9f, 0xb2, 0xb1, 0x2b, 0xa4, 0xb3, 0xef, 0x1c, 0xef, 0xcf, 0x94,
- 0xa4, 0x6c, 0x3a, 0x6a, 0xc9, 0x75, 0x8e, 0x5e, 0x8f, 0x4f, 0xa0, 0xaa, 0x24, 0x68, 0x05, 0x2a,
- 0x97, 0xed, 0xd7, 0x8d, 0x52, 0xf8, 0xf1, 0xf6, 0xd4, 0x69, 0x94, 0x11, 0x40, 0xf5, 0xed, 0xa9,
- 0xd3, 0x39, 0xbf, 0x6c, 0x2c, 0xa1, 0x1a, 0xac, 0x84, 0xdf, 0x67, 0x97, 0xc7, 0x8d, 0x0a, 0x3e,
- 0x04, 0x14, 0x07, 0x36, 0xa9, 0xd0, 0x73, 0x85, 0x2b, 0xcf, 0x59, 0x77, 0xe4, 0x77, 0x18, 0x82,
- 0xe7, 0x2e, 0x7f, 0x49, 0xbb, 0xae, 0x7f, 0xc6, 0xdc, 0xa0, 0x3b, 0x2c, 0x94, 0x08, 0xf8, 0x31,
- 0x58, 0x69, 0x38, 0xad, 0xbe, 0x09, 0xcb, 0xd7, 0xae, 0x3f, 0x25, 0xba, 0x0a, 0xab, 0x01, 0xfe,
- 0xbd, 0x0c, 0x96, 0xbc, 0x1b, 0x6f, 0xe8, 0x94, 0x75, 0x89, 0xda, 0x55, 0x24, 0x3e, 0x4f, 0x60,
- 0x9d, 0x4b, 0xa8, 0x4e, 0x6c, 0xeb, 0x52, 0xee, 0xd6, 0x86, 0x5a, 0xec, 0x24, 0xea, 0x9a, 0x06,
- 0xb8, 0x92, 0xc6, 0xc8, 0x50, 0xd6, 0x9d, 0x3a, 0x8f, 0x19, 0x88, 0xee, 0x01, 0x08, 0x97, 0x0d,
- 0x88, 0xe8, 0x30, 0xd2, 0x97, 0x41, 0xad, 0x3b, 0x6b, 0x4a, 0xe2, 0x90, 0x3e, 0x3e, 0x81, 0xed,
- 0x8c, 0x43, 0x99, 0x67, 0x91, 0x11, 0x3e, 0xf5, 0xc5, 0xec, 0x59, 0x54, 0x23, 0x7c, 0x0a, 0xb5,
- 0x16, 0xef, 0x8e, 0x8a, 0xf8, 0xff, 0x01, 0xd4, 0x15, 0x84, 0xf1, 0x39, 0x61, 0x8c, 0x32, 0x1d,
- 0x73, 0x35, 0xc0, 0xbf, 0x95, 0xe1, 0x8b, 0x77, 0xcc, 0x0b, 0x13, 0xa5, 0x5f, 0xc4, 0xd5, 0x0d,
- 0xa8, 0x84, 0xa7, 0x57, 0x15, 0x2f, 0xfc, 0x4c, 0x14, 0xc2, 0x4a, 0xb2, 0x10, 0xa2, 0x03, 0xa8,
- 0x53, 0xbf, 0xd7, 0x89, 0xe6, 0x95, 0xd3, 0x6a, 0xd4, 0xef, 0x39, 0xb3, 0x25, 0x51, 0xa9, 0x5a,
- 0x8e, 0x97, 0xaa, 0x26, 0x2c, 0xf3, 0x21, 0xf1, 0x7d, 0x59, 0x75, 0x56, 0x1d, 0x35, 0xc0, 0x87,
- 0xd0, 0x30, 0x67, 0x58, 0x78, 0xdc, 0x21, 0x34, 0x5b, 0x5e, 0xd0, 0xbb, 0x20, 0x6c, 0x40, 0xce,
- 0x5c, 0x5e, 0x28, 0xfb, 0x77, 0x61, 0x6d, 0x76, 0x00, 0x6e, 0x2d, 0xed, 0x57, 0xc2, 0xb0, 0x47,
- 0x02, 0xfc, 0x08, 0x36, 0xe7, 0x34, 0x99, 0xd4, 0xbb, 0x72, 0xb9, 0xba, 0xfa, 0x6b, 0x8e, 0xfc,
- 0xc6, 0xbf, 0x96, 0x61, 0x5d, 0xd5, 0xab, 0x16, 0x65, 0xa3, 0xff, 0xf3, 0xca, 0x87, 0x6c, 0x21,
- 0x6e, 0x49, 0xc4, 0x58, 0xb6, 0xdb, 0xdc, 0x21, 0xa1, 0xb1, 0xed, 0xe0, 0x35, 0xa3, 0x03, 0x46,
- 0x38, 0x2f, 0x58, 0x3a, 0x99, 0x84, 0x8b, 0x95, 0x4e, 0x25, 0x68, 0xf7, 0xf0, 0x8f, 0x60, 0x67,
- 0x69, 0xd3, 0x0e, 0xdc, 0x83, 0x9a, 0x17, 0x74, 0x26, 0x5a, 0xac, 0x13, 0x07, 0xbc, 0x68, 0xa1,
- 0x32, 0xf6, 0xcd, 0xfb, 0xa9, 0xcb, 0x87, 0xff, 0x9a, 0xb1, 0x5c, 0xc2, 0xc5, 0x8c, 0x55, 0x82,
- 0x99, 0xb1, 0x69, 0x6d, 0x9f, 0x6b, 0x6c, 0x1f, 0xee, 0xcf, 0xbf, 0x54, 0x2d, 0x46, 0xc7, 0x3f,
- 0x3b, 0x2f, 0x0b, 0xa6, 0xe3, 0x94, 0xf9, 0xda, 0xd6, 0xf0, 0x13, 0x1f, 0xc0, 0x5e, 0xae, 0x1e,
- 0x1d, 0xe4, 0x36, 0x6c, 0xa8, 0x25, 0x67, 0xd3, 0xa0, 0xe7, 0x17, 0x22, 0x61, 0x0f, 0xa1, 0x99,
- 0x84, 0x5a, 0xf0, 0xee, 0x10, 0x40, 0x32, 0x7b, 0x9f, 0xd2, 0xa0, 0xef, 0x0d, 0x0a, 0xc6, 0xa9,
- 0x3f, 0xf5, 0xfd, 0xce, 0xc4, 0x15, 0xc3, 0x59, 0x9c, 0x42, 0xc1, 0x6b, 0x57, 0x0c, 0xf1, 0x23,
- 0xd8, 0x48, 0xa8, 0x59, 0x58, 0x27, 0x46, 0x70, 0x90, 0xe5, 0xad, 0xc2, 0x8e, 0x89, 0x1c, 0xb0,
- 0x14, 0x73, 0xc0, 0x03, 0xc0, 0x8b, 0x94, 0x29, 0x43, 0x8f, 0xff, 0xb8, 0x23, 0xbb, 0x86, 0x19,
- 0xb1, 0x55, 0xed, 0x1d, 0x7a, 0x07, 0x8d, 0xf9, 0x9e, 0x0b, 0xed, 0xa5, 0x6d, 0x48, 0x34, 0x77,
- 0xf6, 0x7e, 0xfe, 0x02, 0x7d, 0x15, 0x4a, 0xe8, 0x32, 0xae, 0x4d, 0x37, 0x52, 0x28, 0x63, 0x63,
- 0xb2, 0x67, 0xb3, 0x0f, 0x16, 0xac, 0x98, 0xc3, 0x4e, 0x36, 0x47, 0x09, 0xec, 0xcc, 0x3e, 0x2c,
- 0x81, 0x9d, 0xd3, 0x59, 0x95, 0xd0, 0x33, 0x00, 0xd3, 0xed, 0xa0, 0xed, 0xe4, 0x96, 0x58, 0xbf,
- 0x65, 0xdb, 0x59, 0x53, 0x11, 0xcc, 0x4f, 0x70, 0x27, 0xd9, 0xac, 0xa0, 0x7b, 0x11, 0x4f, 0xcb,
- 0x6a, 0x9b, 0xec, 0xfb, 0x79, 0xd3, 0x71, 0xc8, 0x64, 0x63, 0x62, 0x20, 0x33, 0xbb, 0x1f, 0x03,
- 0x99, 0xdd, 0xcf, 0xe0, 0x12, 0xfa, 0x05, 0x50, 0xba, 0xa1, 0x40, 0x91, 0x9f, 0x72, 0x3b, 0x1b,
- 0x1b, 0x2f, 0x5a, 0x12, 0xc1, 0x3f, 0x87, 0x5a, 0x8c, 0xab, 0xa3, 0xc8, 0x63, 0xe9, 0x2e, 0xc5,
- 0xde, 0xc9, 0x9c, 0x8b, 0x90, 0xde, 0x41, 0x63, 0xfe, 0x8a, 0x9b, 0x6b, 0x9a, 0x43, 0xfc, 0xcd,
- 0x35, 0xcd, 0xa5, 0xf2, 0x25, 0x74, 0x0e, 0x60, 0xe8, 0xad, 0x09, 0x77, 0x8a, 0x4b, 0x9b, 0x70,
- 0xa7, 0xd9, 0x30, 0x2e, 0x3d, 0x2e, 0x87, 0x16, 0xce, 0xd3, 0x55, 0x63, 0x61, 0x0e, 0x2f, 0x36,
- 0x16, 0xe6, 0x31, 0x5d, 0x75, 0xd9, 0x53, 0xfc, 0xcf, 0x5c, 0xf6, 0x3c, 0xbe, 0x6b, 0x2e, 0x7b,
- 0x2e, 0x79, 0xc4, 0x25, 0x74, 0x02, 0xb7, 0x42, 0x8e, 0x87, 0x36, 0xa2, 0xc5, 0x86, 0x34, 0xda,
- 0xcd, 0xa4, 0x30, 0xda, 0xf4, 0x04, 0x56, 0x67, 0x6c, 0x09, 0x6d, 0xcd, 0xd6, 0xcc, 0x71, 0x40,
- 0xdb, 0x4a, 0x4f, 0x44, 0x00, 0xaf, 0xe0, 0x76, 0x82, 0xda, 0xa0, 0xdd, 0x48, 0x53, 0x06, 0xb7,
- 0xb2, 0xef, 0xe5, 0xcc, 0xc6, 0x53, 0xd6, 0x50, 0x0e, 0x13, 0xc3, 0x14, 0x21, 0x32, 0x31, 0xcc,
- 0x60, 0x28, 0x32, 0x19, 0xd2, 0xac, 0xc1, 0x24, 0x43, 0x2e, 0x7f, 0x31, 0xc9, 0x90, 0x4f, 0x3a,
- 0x66, 0xf0, 0xf3, 0xef, 0x7c, 0x1c, 0x3e, 0x87, 0x71, 0xc4, 0xe1, 0xf3, 0x68, 0x02, 0x2e, 0x21,
- 0x3f, 0xdd, 0x00, 0xeb, 0xf7, 0x19, 0x7d, 0x95, 0x97, 0x07, 0x49, 0xa2, 0x60, 0x7f, 0xfd, 0x8f,
- 0xeb, 0x22, 0x6d, 0x17, 0x50, 0x8f, 0xbf, 0xcf, 0x68, 0x27, 0xb9, 0x35, 0xf1, 0xce, 0xd9, 0xbb,
- 0xd9, 0x93, 0xb1, 0xe4, 0xf9, 0x00, 0x76, 0xfe, 0x0b, 0x86, 0xbe, 0x59, 0x64, 0x57, 0x52, 0xd5,
- 0xc3, 0xcf, 0x59, 0x3a, 0x53, 0x7c, 0x58, 0x0e, 0x2b, 0x54, 0xec, 0x51, 0x37, 0x15, 0x2a, 0x4d,
- 0x28, 0x4c, 0x85, 0xca, 0x60, 0x01, 0xb8, 0x74, 0x55, 0x95, 0xbf, 0x44, 0x4f, 0xfe, 0x0e, 0x00,
- 0x00, 0xff, 0xff, 0x1e, 0x59, 0x64, 0x51, 0x44, 0x15, 0x00, 0x00,
+ // 1480 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xef, 0x6e, 0xdb, 0xb6,
+ 0x16, 0xb7, 0x93, 0xe6, 0xdf, 0x89, 0xdb, 0x3a, 0x8c, 0xd3, 0x28, 0x4a, 0xda, 0x24, 0xbc, 0xc5,
+ 0xbd, 0xb9, 0xed, 0xbd, 0x41, 0x91, 0x00, 0xc3, 0xbe, 0x0c, 0x45, 0x52, 0xc4, 0x89, 0xd1, 0xa6,
+ 0xe8, 0x94, 0x0e, 0x05, 0x02, 0x0c, 0x82, 0x22, 0xd3, 0xb6, 0x60, 0x59, 0x72, 0x49, 0x3a, 0x6d,
+ 0xfa, 0x04, 0x7b, 0x92, 0x3d, 0xc8, 0x5e, 0x61, 0x8f, 0xb0, 0x8f, 0x7b, 0x89, 0x41, 0x24, 0x25,
+ 0x4a, 0x96, 0xe4, 0x15, 0xd0, 0x86, 0x7d, 0x13, 0x0f, 0xc9, 0xdf, 0x39, 0x3c, 0x87, 0xe7, 0xf0,
+ 0x77, 0x04, 0x06, 0x25, 0xe3, 0x90, 0x79, 0x3c, 0xa4, 0x77, 0xff, 0x67, 0x84, 0xde, 0x7a, 0x2e,
+ 0x39, 0x1c, 0xd3, 0x90, 0x87, 0x68, 0xb1, 0xef, 0x71, 0xc7, 0xbf, 0x33, 0x1b, 0x6c, 0xe0, 0x50,
+ 0xd2, 0x95, 0x52, 0x7c, 0x09, 0x9b, 0x56, 0xb2, 0xe3, 0xec, 0xb3, 0xc7, 0x38, 0xb3, 0xc8, 0xc7,
+ 0x09, 0x61, 0x1c, 0x1d, 0x01, 0x68, 0x30, 0xa3, 0xbe, 0x57, 0x3f, 0x58, 0x3d, 0x42, 0x87, 0x12,
+ 0xe5, 0x50, 0x6f, 0xb2, 0x52, 0xab, 0xf0, 0x11, 0x18, 0x79, 0x38, 0x36, 0x0e, 0x03, 0x46, 0xd0,
+ 0x23, 0x58, 0x24, 0x42, 0x22, 0xb0, 0x96, 0x2d, 0x35, 0xc2, 0x6f, 0xd3, 0x7b, 0x3a, 0xec, 0x6c,
+ 0x34, 0xe6, 0x77, 0x55, 0x6c, 0xf8, 0x06, 0xb6, 0x0a, 0xf0, 0x94, 0x11, 0x5b, 0xb0, 0xec, 0x31,
+ 0x9b, 0x44, 0x32, 0x65, 0xc6, 0x92, 0x27, 0x97, 0x28, 0x3b, 0x1c, 0x77, 0xd8, 0x09, 0x5c, 0x4a,
+ 0x46, 0x24, 0xe0, 0x8e, 0x5f, 0xc5, 0x8e, 0x6d, 0x61, 0xc7, 0x34, 0x9e, 0xb4, 0x03, 0xfb, 0xb0,
+ 0x26, 0x27, 0xdb, 0x13, 0xbf, 0x8a, 0x16, 0xf4, 0x2f, 0xb8, 0xef, 0x52, 0xe2, 0x70, 0x62, 0xdf,
+ 0x78, 0x7c, 0xe4, 0x8c, 0x8d, 0x39, 0x71, 0xaa, 0x86, 0x14, 0x9e, 0x0a, 0x19, 0x6e, 0x01, 0x4a,
+ 0x6b, 0x53, 0x36, 0x8c, 0x61, 0xe3, 0xdc, 0xa1, 0x37, 0x4e, 0x9f, 0xbc, 0x0a, 0x7d, 0x9f, 0xb8,
+ 0xfc, 0x6f, 0xb7, 0xc3, 0x80, 0x47, 0xd3, 0x1a, 0x95, 0x2d, 0xaf, 0x61, 0x43, 0x03, 0x5f, 0x79,
+ 0x5f, 0x48, 0x15, 0xcf, 0xff, 0x0f, 0x1e, 0x4d, 0x83, 0xa9, 0xf0, 0x23, 0xb8, 0xc7, 0xbc, 0x2f,
+ 0x44, 0xe0, 0xcc, 0x5b, 0xe2, 0x1b, 0x0f, 0x61, 0xeb, 0x64, 0x3c, 0xf6, 0xef, 0xce, 0x3d, 0xee,
+ 0x70, 0x4e, 0xbd, 0x9b, 0x09, 0x27, 0x55, 0x92, 0x00, 0x99, 0xb0, 0x4c, 0xc9, 0xad, 0xc7, 0xbc,
+ 0x30, 0x10, 0x5e, 0x68, 0x58, 0xc9, 0x18, 0xef, 0x80, 0x59, 0xa4, 0x4c, 0x79, 0xe1, 0xb7, 0x3a,
+ 0xa0, 0x36, 0xe1, 0xee, 0xc0, 0x22, 0xa3, 0x90, 0x57, 0xf1, 0x41, 0x94, 0x6d, 0x54, 0x80, 0x08,
+ 0x13, 0x56, 0x2c, 0x35, 0x42, 0x2d, 0x58, 0xe8, 0x85, 0xd4, 0x25, 0xc6, 0xbc, 0x88, 0x8f, 0x1c,
+ 0xa0, 0x4d, 0x58, 0x0a, 0x42, 0x9b, 0x3b, 0x7d, 0x66, 0xdc, 0x93, 0xc9, 0x19, 0x84, 0xef, 0x9d,
+ 0x3e, 0x43, 0x06, 0x2c, 0x71, 0x6f, 0x44, 0xc2, 0x09, 0x37, 0x16, 0xf6, 0xea, 0x07, 0x0b, 0x56,
+ 0x3c, 0x8c, 0xb6, 0x30, 0x36, 0xb0, 0x87, 0xe4, 0xce, 0x58, 0x94, 0x1a, 0x18, 0x1b, 0xbc, 0x26,
+ 0x77, 0x68, 0x17, 0x56, 0x87, 0x41, 0xf8, 0x29, 0xb0, 0x07, 0x61, 0x94, 0xec, 0x4b, 0x62, 0x12,
+ 0x84, 0xe8, 0x22, 0x92, 0xe0, 0x0d, 0x58, 0xcf, 0x1c, 0x52, 0x1d, 0xfe, 0x12, 0x36, 0x5f, 0x89,
+ 0xcb, 0x92, 0x3a, 0x51, 0x85, 0x4b, 0x60, 0x82, 0x91, 0x87, 0x53, 0xaa, 0x7e, 0xaf, 0xc3, 0xda,
+ 0x39, 0xe1, 0x27, 0xd4, 0x1d, 0x78, 0xb7, 0x95, 0xdc, 0xbc, 0x0d, 0x2b, 0x6e, 0x38, 0x1a, 0x79,
+ 0xdc, 0xf6, 0xba, 0xca, 0xd3, 0xcb, 0x52, 0xd0, 0xe9, 0x46, 0x31, 0x18, 0x53, 0xd2, 0xf3, 0x3e,
+ 0x0b, 0x67, 0xaf, 0x58, 0x6a, 0x84, 0xbe, 0x85, 0xc5, 0x5e, 0x48, 0x47, 0x0e, 0x17, 0xce, 0x7e,
+ 0x70, 0xb4, 0x17, 0x2b, 0xc9, 0xd9, 0x74, 0xd8, 0x16, 0xeb, 0x2c, 0xb5, 0x1e, 0x1f, 0xc3, 0xa2,
+ 0x94, 0xa0, 0x25, 0x98, 0xbf, 0xee, 0xbc, 0x6b, 0xd6, 0xa2, 0x8f, 0xf7, 0x27, 0x56, 0xb3, 0x8e,
+ 0x00, 0x16, 0xdf, 0x9f, 0x58, 0xf6, 0xf9, 0x75, 0x73, 0x0e, 0xad, 0xc2, 0x52, 0xf4, 0x7d, 0x7a,
+ 0x7d, 0xd4, 0x9c, 0xc7, 0x07, 0x80, 0xd2, 0xc0, 0x3a, 0x15, 0xba, 0x0e, 0x77, 0xc4, 0x39, 0x1b,
+ 0x96, 0xf8, 0x8e, 0x42, 0x70, 0xe1, 0xb0, 0x37, 0xa1, 0xeb, 0xf8, 0xa7, 0xd4, 0x09, 0xdc, 0x41,
+ 0xa5, 0x44, 0xc0, 0x2f, 0xc0, 0xc8, 0xc3, 0x29, 0xf5, 0x2d, 0x58, 0xb8, 0x75, 0xfc, 0x09, 0x51,
+ 0x55, 0x58, 0x0e, 0xf0, 0xaf, 0x75, 0x30, 0xc4, 0xdd, 0xb8, 0x0a, 0x27, 0xd4, 0x25, 0x72, 0x57,
+ 0x95, 0xf8, 0xbc, 0x84, 0x35, 0x26, 0xa0, 0xec, 0xd4, 0xd6, 0xb9, 0xd2, 0xad, 0x4d, 0xb9, 0xd8,
+ 0xca, 0xd4, 0x35, 0x05, 0x70, 0x23, 0x8c, 0x11, 0xa1, 0x6c, 0x58, 0x0d, 0x96, 0x32, 0x10, 0x3d,
+ 0x06, 0xe0, 0x0e, 0xed, 0x13, 0x6e, 0x53, 0xd2, 0x13, 0x41, 0x6d, 0x58, 0x2b, 0x52, 0x62, 0x91,
+ 0x1e, 0x3e, 0x86, 0xad, 0x82, 0x43, 0xe9, 0x67, 0x91, 0x12, 0x36, 0xf1, 0x79, 0xfc, 0x2c, 0xca,
+ 0x11, 0x3e, 0x81, 0xd5, 0x36, 0x73, 0x87, 0x55, 0xfc, 0xff, 0x14, 0x1a, 0x12, 0x42, 0xfb, 0x9c,
+ 0x50, 0x1a, 0x52, 0x15, 0x73, 0x39, 0xc0, 0xbf, 0xd4, 0xe1, 0xe1, 0x07, 0xea, 0x45, 0x89, 0xd2,
+ 0xab, 0xe2, 0xea, 0x26, 0xcc, 0x47, 0xa7, 0x97, 0x15, 0x2f, 0xfa, 0xcc, 0x14, 0xc2, 0xf9, 0x6c,
+ 0x21, 0x44, 0xfb, 0xd0, 0x08, 0xfd, 0xae, 0x9d, 0xcc, 0x4b, 0xa7, 0xad, 0x86, 0x7e, 0xd7, 0x8a,
+ 0x97, 0x24, 0xa5, 0x6a, 0x21, 0x5d, 0xaa, 0x5a, 0xb0, 0xc0, 0x06, 0xc4, 0xf7, 0x45, 0xd5, 0x59,
+ 0xb6, 0xe4, 0x00, 0x1f, 0x40, 0x53, 0x9f, 0x61, 0xe6, 0x71, 0x07, 0xd0, 0x6a, 0x7b, 0x41, 0xf7,
+ 0x92, 0xd0, 0x3e, 0x39, 0x75, 0x58, 0xa5, 0xec, 0xdf, 0x81, 0x95, 0xf8, 0x00, 0xcc, 0x98, 0xdb,
+ 0x9b, 0x8f, 0xc2, 0x9e, 0x08, 0xf0, 0x73, 0xd8, 0x98, 0xd2, 0xa4, 0x53, 0xef, 0xc6, 0x61, 0xf2,
+ 0xea, 0xaf, 0x58, 0xe2, 0x1b, 0xff, 0x54, 0x87, 0x35, 0x59, 0xaf, 0xda, 0x21, 0x1d, 0xfe, 0x93,
+ 0x57, 0x3e, 0x62, 0x0b, 0x69, 0x4b, 0x12, 0xc6, 0xb2, 0xd5, 0x61, 0x16, 0x89, 0x8c, 0xed, 0x04,
+ 0xef, 0x68, 0xd8, 0xa7, 0x84, 0xb1, 0x8a, 0xa5, 0x93, 0x0a, 0xb8, 0x54, 0xe9, 0x94, 0x82, 0x4e,
+ 0x17, 0x7f, 0x07, 0x66, 0x91, 0x36, 0xe5, 0xc0, 0x5d, 0x58, 0xf5, 0x02, 0x7b, 0xac, 0xc4, 0x2a,
+ 0x71, 0xc0, 0x4b, 0x16, 0x4a, 0x63, 0xaf, 0x3e, 0x4e, 0x1c, 0x36, 0xf8, 0xcb, 0x8c, 0x65, 0x02,
+ 0x2e, 0x65, 0xac, 0x14, 0xc4, 0xc6, 0xe6, 0xb5, 0x7d, 0xad, 0xb1, 0x3d, 0x78, 0x32, 0xfd, 0x52,
+ 0xb5, 0x69, 0x38, 0xfa, 0xc1, 0x7a, 0x53, 0x31, 0x1d, 0x27, 0xd4, 0x57, 0xb6, 0x46, 0x9f, 0x78,
+ 0x1f, 0x76, 0x4b, 0xf5, 0xa8, 0x20, 0x77, 0x60, 0x5d, 0x2e, 0x39, 0x9d, 0x04, 0x5d, 0xbf, 0x12,
+ 0x09, 0x7b, 0x06, 0xad, 0x2c, 0xd4, 0x8c, 0x77, 0x87, 0x00, 0x12, 0xd9, 0xfb, 0x2a, 0x0c, 0x7a,
+ 0x5e, 0xbf, 0x62, 0x9c, 0x7a, 0x13, 0xdf, 0xb7, 0xc7, 0x0e, 0x1f, 0xc4, 0x71, 0x8a, 0x04, 0xef,
+ 0x1c, 0x3e, 0xc0, 0xcf, 0x61, 0x3d, 0xa3, 0x66, 0x66, 0x9d, 0x18, 0xc2, 0x7e, 0x91, 0xb7, 0x2a,
+ 0x3b, 0x26, 0x71, 0xc0, 0x5c, 0xca, 0x01, 0x4f, 0x01, 0xcf, 0x52, 0xa6, 0xa2, 0x73, 0x01, 0x28,
+ 0x2a, 0x28, 0x6f, 0x3c, 0x97, 0x04, 0x95, 0x0a, 0x17, 0x3e, 0x83, 0xf5, 0x0c, 0x92, 0xf2, 0xc4,
+ 0x21, 0xac, 0xfb, 0x52, 0x44, 0x6c, 0x36, 0x08, 0x29, 0xb7, 0x03, 0x67, 0x14, 0xd7, 0xa9, 0xb5,
+ 0x78, 0xea, 0x2a, 0x9a, 0x79, 0xeb, 0x8c, 0xc8, 0xd1, 0xcf, 0x0f, 0x45, 0x1b, 0x13, 0x33, 0x6d,
+ 0xd9, 0x6f, 0xa2, 0x0f, 0xd0, 0x9c, 0x6e, 0x02, 0xd1, 0x6e, 0xde, 0xa0, 0x4c, 0xb7, 0x69, 0xee,
+ 0x95, 0x2f, 0x50, 0xa7, 0xaf, 0xa1, 0xeb, 0xb4, 0x36, 0xd5, 0xd9, 0xa1, 0x82, 0x8d, 0xd9, 0x26,
+ 0xd2, 0xdc, 0x9f, 0xb1, 0x62, 0x0a, 0x3b, 0xdb, 0xad, 0x65, 0xb0, 0x0b, 0x1b, 0xc3, 0x0c, 0x76,
+ 0x49, 0xab, 0x57, 0x43, 0x67, 0x00, 0xba, 0xfd, 0x42, 0x5b, 0xd9, 0x2d, 0xa9, 0x06, 0xd0, 0x34,
+ 0x8b, 0xa6, 0x12, 0x98, 0xef, 0xe1, 0x41, 0xb6, 0x7b, 0x42, 0x8f, 0x13, 0xe2, 0x58, 0xd4, 0xc7,
+ 0x99, 0x4f, 0xca, 0xa6, 0xd3, 0x90, 0xd9, 0x4e, 0x49, 0x43, 0x16, 0xb6, 0x63, 0x1a, 0xb2, 0xb8,
+ 0xc1, 0xc2, 0x35, 0xf4, 0x23, 0xa0, 0x7c, 0x87, 0x83, 0x12, 0x3f, 0x95, 0xb6, 0x5a, 0x26, 0x9e,
+ 0xb5, 0x24, 0x81, 0xbf, 0x80, 0xd5, 0x54, 0xf3, 0x80, 0x12, 0x8f, 0xe5, 0xdb, 0x26, 0x73, 0xbb,
+ 0x70, 0x2e, 0x41, 0xfa, 0x00, 0xcd, 0xe9, 0x9c, 0xd3, 0xd7, 0xb4, 0xa4, 0x13, 0xd1, 0xd7, 0xb4,
+ 0xb4, 0xb7, 0xa8, 0xa1, 0x73, 0x00, 0xcd, 0xb7, 0x75, 0xb8, 0x73, 0xe4, 0x5e, 0x87, 0x3b, 0x4f,
+ 0xcf, 0x71, 0xed, 0x45, 0x3d, 0xb2, 0x70, 0x9a, 0x3f, 0x6b, 0x0b, 0x4b, 0x88, 0xba, 0xb6, 0xb0,
+ 0x8c, 0x7a, 0xcb, 0xcb, 0x9e, 0x23, 0xa4, 0xfa, 0xb2, 0x97, 0x11, 0x70, 0x7d, 0xd9, 0x4b, 0xd9,
+ 0x2c, 0xae, 0xa1, 0x63, 0xb8, 0x17, 0x91, 0x4e, 0xb4, 0x9e, 0x2c, 0xd6, 0x2c, 0xd6, 0x6c, 0x65,
+ 0x85, 0xc9, 0xa6, 0x97, 0xb0, 0x1c, 0xd3, 0x37, 0xb4, 0x19, 0xaf, 0x99, 0x22, 0xa5, 0xa6, 0x91,
+ 0x9f, 0x48, 0x00, 0xde, 0xc2, 0xfd, 0x0c, 0xd7, 0x42, 0x3b, 0x89, 0xa6, 0x02, 0xb2, 0x67, 0x3e,
+ 0x2e, 0x99, 0x4d, 0xa7, 0xac, 0xe6, 0x40, 0x3a, 0x86, 0x39, 0x86, 0xa6, 0x63, 0x58, 0x40, 0x99,
+ 0x44, 0x32, 0xe4, 0x69, 0x8c, 0x4e, 0x86, 0x52, 0x42, 0xa5, 0x93, 0xa1, 0x9c, 0x05, 0xc5, 0xf0,
+ 0xd3, 0xc4, 0x23, 0x0d, 0x5f, 0x42, 0x81, 0xd2, 0xf0, 0x65, 0xbc, 0x05, 0xd7, 0x90, 0x9f, 0xef,
+ 0xc8, 0x15, 0x61, 0x40, 0xff, 0x2e, 0xcb, 0x83, 0x2c, 0x73, 0x31, 0xff, 0xf3, 0xa7, 0xeb, 0x12,
+ 0x6d, 0x97, 0xd0, 0x48, 0x13, 0x06, 0xb4, 0x9d, 0xdd, 0x9a, 0x79, 0x78, 0xcd, 0x9d, 0xe2, 0xc9,
+ 0x54, 0xf2, 0x7c, 0x02, 0xb3, 0xfc, 0x49, 0x45, 0xff, 0x9d, 0x65, 0x57, 0x56, 0xd5, 0xb3, 0xaf,
+ 0x59, 0x1a, 0x2b, 0x3e, 0xa8, 0x47, 0x15, 0x2a, 0xc5, 0x32, 0x74, 0x85, 0xca, 0x33, 0x1c, 0x5d,
+ 0xa1, 0x0a, 0x68, 0x89, 0xaa, 0x75, 0xfa, 0x95, 0x4e, 0xd5, 0xba, 0x1c, 0x09, 0x48, 0xd5, 0xba,
+ 0xfc, 0xb3, 0x8e, 0x6b, 0x37, 0x8b, 0xe2, 0x6f, 0xef, 0xf1, 0x1f, 0x01, 0x00, 0x00, 0xff, 0xff,
+ 0xd0, 0xfd, 0xa3, 0xc8, 0x1f, 0x16, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 3243f67b7..d83ddc5ea 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -201,12 +201,16 @@
"revisionTime": "2017-12-31T12:27:32Z"
},
{
- "checksumSHA1": "qKH0EG0VUTl1DO0PRTYlSbFcpmM=",
+ "checksumSHA1": "S8J7IeYSe4cSrlTAHLfY/Nu1ExM=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
- "revision": "fc6f3cc448eb578d570da9bff7a0ec76603daa6d",
- "revisionTime": "2018-02-02T20:23:22Z",
- "version": "v0.84.0",
- "versionExact": "v0.84.0"
+ "revision": "011721c5ed33572c78faa94e3e0a367cec3b5119",
+ "revisionTime": "2018-02-20T08:45:38Z",
+ "version": "=zj-licensee-key",
+ "versionExact": "zj-licensee-key"
+ },
+ {
+ "path": "gitlab.com/gitlab-org/gitaly-proto/go=zj-licensee-key",
+ "revision": ""
},
{
"checksumSHA1": "nqWNlnMmVpt628zzvyo6Yv2CX5Q=",