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:
authorStan Hu <stanhu@gmail.com>2020-12-11 19:03:09 +0300
committerStan Hu <stanhu@gmail.com>2020-12-11 19:03:09 +0300
commit22c928dcf7bf9d798de2faa4bc3239383c861bb4 (patch)
tree7f322c2b62476f699749b60f57092a7d00225026
parentd902bf04434196af8a4a4b00b3420e9a2868e7fb (diff)
parent807702478431523c2fdb975cfba13c63969390c0 (diff)
Merge branch 'sh-create-fork-with-object-pool' into 'master'
Support cloning with an object pool in CreateFork See merge request gitlab-org/gitaly!2887
-rw-r--r--changelogs/unreleased/sh-create-fork-with-object-pool.yml5
-rw-r--r--internal/git/objectpool/link.go33
-rw-r--r--internal/git/objectpool/link_test.go71
-rw-r--r--internal/gitaly/service/repository/fork.go93
-rw-r--r--internal/gitaly/service/repository/fork_test.go150
-rw-r--r--proto/go/gitalypb/repository-service.pb.go402
-rw-r--r--proto/repository-service.proto4
-rw-r--r--ruby/proto/gitaly/repository-service_pb.rb1
8 files changed, 520 insertions, 239 deletions
diff --git a/changelogs/unreleased/sh-create-fork-with-object-pool.yml b/changelogs/unreleased/sh-create-fork-with-object-pool.yml
new file mode 100644
index 000000000..de6a770c9
--- /dev/null
+++ b/changelogs/unreleased/sh-create-fork-with-object-pool.yml
@@ -0,0 +1,5 @@
+---
+title: Support cloning with an object pool in CreateFork
+merge_request: 2887
+author:
+type: performance
diff --git a/internal/git/objectpool/link.go b/internal/git/objectpool/link.go
index ea48e2787..a330ebabb 100644
--- a/internal/git/objectpool/link.go
+++ b/internal/git/objectpool/link.go
@@ -17,10 +17,23 @@ import (
"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
)
-// Link will write the relative path to the object pool from the repository that
-// is to join the pool. This does not trigger deduplication, which is the
-// responsibility of the caller.
+// Link will write the relative path to the object pool from the
+// repository that is to join the pool. This does not trigger
+// deduplication, which is the responsibility of the caller. Link will
+// fail if the repository is pointing to an unexpected path in the
+// alternates file.
func (o *ObjectPool) Link(ctx context.Context, repo *gitalypb.Repository) error {
+ return o.linkHelper(ctx, repo, false)
+}
+
+// ForceLink will do what Link does but will overwrite the alternates
+// file regardless of the existing contents. This is useful to restore a
+// relative path after git has written an absolute one.
+func (o *ObjectPool) ForceLink(ctx context.Context, repo *gitalypb.Repository) error {
+ return o.linkHelper(ctx, repo, true)
+}
+
+func (o *ObjectPool) linkHelper(ctx context.Context, repo *gitalypb.Repository, force bool) error {
altPath, err := o.locator.InfoAlternatesPath(repo)
if err != nil {
return err
@@ -31,13 +44,15 @@ func (o *ObjectPool) Link(ctx context.Context, repo *gitalypb.Repository) error
return err
}
- linked, err := o.LinkedToRepository(repo)
- if err != nil {
- return err
- }
+ if !force {
+ linked, err := o.LinkedToRepository(repo)
+ if err != nil {
+ return err
+ }
- if linked {
- return nil
+ if linked {
+ return nil
+ }
}
tmp, err := ioutil.TempFile(filepath.Dir(altPath), "alternates")
diff --git a/internal/git/objectpool/link_test.go b/internal/git/objectpool/link_test.go
index 35de10568..4d1a6f458 100644
--- a/internal/git/objectpool/link_test.go
+++ b/internal/git/objectpool/link_test.go
@@ -12,40 +12,67 @@ import (
)
func TestLink(t *testing.T) {
- ctx, cancel := testhelper.Context()
- defer cancel()
+ testCases := []struct {
+ desc string
+ force bool
+ }{
+ {
+ desc: "link",
+ },
+ {
+ desc: "forced link",
+ force: true,
+ },
+ }
- testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
- defer cleanupFn()
+ for _, testCase := range testCases {
+ t.Run(testCase.desc, func(t *testing.T) {
+ ctx, cancel := testhelper.Context()
+ defer cancel()
- pool, poolCleanup := NewTestObjectPool(ctx, t, testRepo.GetStorageName())
- defer poolCleanup()
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
- require.NoError(t, pool.Remove(ctx), "make sure pool does not exist prior to creation")
- require.NoError(t, pool.Create(ctx, testRepo), "create pool")
+ pool, poolCleanup := NewTestObjectPool(ctx, t, testRepo.GetStorageName())
+ defer poolCleanup()
- altPath, err := pool.locator.InfoAlternatesPath(testRepo)
- require.NoError(t, err)
- _, err = os.Stat(altPath)
- require.True(t, os.IsNotExist(err))
+ require.NoError(t, pool.Remove(ctx), "make sure pool does not exist prior to creation")
+ require.NoError(t, pool.Create(ctx, testRepo), "create pool")
- require.NoError(t, pool.Link(ctx, testRepo))
+ altPath, err := pool.locator.InfoAlternatesPath(testRepo)
+ require.NoError(t, err)
+ _, err = os.Stat(altPath)
+ require.True(t, os.IsNotExist(err))
- require.FileExists(t, altPath, "alternates file must exist after Link")
+ require.NoError(t, pool.Link(ctx, testRepo))
- content, err := ioutil.ReadFile(altPath)
- require.NoError(t, err)
+ require.FileExists(t, altPath, "alternates file must exist after Link")
- require.True(t, strings.HasPrefix(string(content), "../"), "expected %q to be relative path", content)
+ content, err := ioutil.ReadFile(altPath)
+ require.NoError(t, err)
- require.NoError(t, pool.Link(ctx, testRepo))
+ require.True(t, strings.HasPrefix(string(content), "../"), "expected %q to be relative path", content)
- newContent, err := ioutil.ReadFile(altPath)
- require.NoError(t, err)
+ require.NoError(t, pool.Link(ctx, testRepo))
+
+ newContent, err := ioutil.ReadFile(altPath)
+ require.NoError(t, err)
+
+ require.Equal(t, content, newContent)
- require.Equal(t, content, newContent)
+ require.False(t, testhelper.RemoteExists(t, pool.FullPath(), testRepo.GetGlRepository()), "pool remotes should not include %v", testRepo)
- require.False(t, testhelper.RemoteExists(t, pool.FullPath(), testRepo.GetGlRepository()), "pool remotes should not include %v", testRepo)
+ if testCase.force {
+ require.NoError(t, ioutil.WriteFile(altPath, []byte("garbage"), 0644))
+ require.Error(t, pool.Link(ctx, testRepo))
+ require.NoError(t, pool.ForceLink(ctx, testRepo))
+
+ newContent, err := ioutil.ReadFile(altPath)
+ require.NoError(t, err)
+ require.Equal(t, content, newContent)
+ }
+ })
+ }
}
func TestLinkRemoveBitmap(t *testing.T) {
diff --git a/internal/gitaly/service/repository/fork.go b/internal/gitaly/service/repository/fork.go
index 8ebd735e3..7fc450f98 100644
--- a/internal/gitaly/service/repository/fork.go
+++ b/internal/gitaly/service/repository/fork.go
@@ -2,11 +2,17 @@ package repository
import (
"context"
+ "errors"
"fmt"
"os"
+ "github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus/ctxlogrus"
+ "github.com/sirupsen/logrus"
"gitlab.com/gitlab-org/gitaly/internal/git"
+ "gitlab.com/gitlab-org/gitaly/internal/git/objectpool"
+ "gitlab.com/gitlab-org/gitaly/internal/gitaly/config"
"gitlab.com/gitlab-org/gitaly/internal/gitalyssh"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
@@ -16,11 +22,8 @@ func (s *server) CreateFork(ctx context.Context, req *gitalypb.CreateForkRequest
targetRepository := req.Repository
sourceRepository := req.SourceRepository
- if sourceRepository == nil {
- return nil, status.Errorf(codes.InvalidArgument, "CreateFork: empty SourceRepository")
- }
- if targetRepository == nil {
- return nil, status.Errorf(codes.InvalidArgument, "CreateFork: empty Repository")
+ if err := validateCreateForkRequest(req); err != nil {
+ return nil, helper.ErrInvalidArgument(err)
}
targetRepositoryFullPath, err := s.locator.GetPath(targetRepository)
@@ -48,6 +51,28 @@ func (s *server) CreateFork(ctx context.Context, req *gitalypb.CreateForkRequest
return nil, status.Errorf(codes.Internal, "CreateFork: create dest dir: %v", err)
}
+ objectPool, sourceObjectPoolPath, err := s.getObjectPool(req)
+ if err != nil {
+ return nil, err
+ }
+
+ flags := []git.Option{
+ git.Flag{Name: "--bare"},
+ git.Flag{Name: "--no-local"},
+ }
+
+ if objectPool != nil {
+ flags = append(flags, git.ValueFlag{Name: "--reference", Value: sourceObjectPoolPath})
+ ctxlogrus.AddFields(ctx, logrus.Fields{"object_pool_path": sourceObjectPoolPath})
+ }
+
+ ctxlogrus.AddFields(ctx, logrus.Fields{
+ "source_storage": sourceRepository.GetStorageName(),
+ "source_path": sourceRepository.GetRelativePath(),
+ "target_storage": targetRepository.GetStorageName(),
+ "target_path": targetRepository.GetRelativePath(),
+ })
+
env, err := gitalyssh.UploadPackEnv(ctx, &gitalypb.SSHUploadPackRequest{Repository: sourceRepository})
if err != nil {
return nil, err
@@ -55,11 +80,8 @@ func (s *server) CreateFork(ctx context.Context, req *gitalypb.CreateForkRequest
cmd, err := git.SafeBareCmd(ctx, git.CmdStream{}, env, nil,
git.SubCmd{
- Name: "clone",
- Flags: []git.Option{
- git.Flag{Name: "--bare"},
- git.Flag{Name: "--no-local"},
- },
+ Name: "clone",
+ Flags: flags,
PostSepArgs: []string{
fmt.Sprintf("%s:%s", gitalyssh.GitalyInternalURL, sourceRepository.RelativePath),
targetRepositoryFullPath,
@@ -83,5 +105,56 @@ func (s *server) CreateFork(ctx context.Context, req *gitalypb.CreateForkRequest
return nil, status.Errorf(codes.Internal, "CreateFork: create hooks failed: %v", err)
}
+ // The `git clone` creates an alternates file, but it uses an absolute path. We recreate
+ // the file with a relative path.
+ if objectPool != nil {
+ if err := objectPool.ForceLink(ctx, targetRepository); err != nil {
+ return nil, status.Errorf(codes.Internal, "CreateFork: error relinking object pool from target: %v", err)
+ }
+ }
+
return &gitalypb.CreateForkResponse{}, nil
}
+
+func validateCreateForkRequest(req *gitalypb.CreateForkRequest) error {
+ targetRepository := req.Repository
+ sourceRepository := req.SourceRepository
+
+ if sourceRepository == nil {
+ return errors.New("CreateFork: empty SourceRepository")
+ }
+ if targetRepository == nil {
+ return errors.New("CreateFork: empty Repository")
+ }
+
+ poolRepository := req.GetPool().GetRepository()
+ if poolRepository == nil {
+ return nil
+ }
+
+ if targetRepository.GetStorageName() != poolRepository.GetStorageName() {
+ return errors.New("target repository is on a different storage than the object pool")
+ }
+
+ return nil
+}
+
+func (s *server) getObjectPool(req *gitalypb.CreateForkRequest) (*objectpool.ObjectPool, string, error) {
+ repository := req.GetPool().GetRepository()
+
+ if repository == nil {
+ return nil, "", nil
+ }
+
+ objectPool, err := objectpool.FromProto(s.cfg, config.NewLocator(s.cfg), req.GetPool())
+ if err != nil {
+ return nil, "", status.Errorf(codes.InvalidArgument, "CreateFork: get object pool from request: %v", err)
+ }
+
+ sourceObjectPoolPath, err := s.locator.GetPath(repository)
+ if err != nil {
+ return nil, "", status.Errorf(codes.InvalidArgument, "CreateFork: unable to find source object pool: %v", err)
+ }
+
+ return objectPool, sourceObjectPoolPath, nil
+}
diff --git a/internal/gitaly/service/repository/fork_test.go b/internal/gitaly/service/repository/fork_test.go
index 7dbbd6737..1920a6c6d 100644
--- a/internal/gitaly/service/repository/fork_test.go
+++ b/internal/gitaly/service/repository/fork_test.go
@@ -1,15 +1,19 @@
package repository_test
import (
+ "context"
"crypto/x509"
"io/ioutil"
"os"
"path/filepath"
+ "strings"
"testing"
"github.com/stretchr/testify/require"
+ "gitlab.com/gitlab-org/gitaly/internal/git/objectpool"
"gitlab.com/gitlab-org/gitaly/internal/gitaly/config"
"gitlab.com/gitlab-org/gitaly/internal/gitaly/service/repository"
+ "gitlab.com/gitlab-org/gitaly/internal/storage"
"gitlab.com/gitlab-org/gitaly/internal/testhelper"
gitaly_x509 "gitlab.com/gitlab-org/gitaly/internal/x509"
"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
@@ -25,14 +29,22 @@ func TestSuccessfulCreateForkRequest(t *testing.T) {
require.NoError(t, os.MkdirAll(repoPath, 0755))
}
+ // If this method is run multiple times in a test, TLS connections
+ // will fail for some reason.
+ testPool, sslCleanup := injectCustomCATestCerts(t)
+ defer sslCleanup()
+
for _, tt := range []struct {
name string
secure bool
+ withPool bool
beforeRequest func(repoPath string)
}{
{name: "secure", secure: true},
{name: "insecure"},
{name: "existing empty directory target", beforeRequest: createEmptyTarget},
+ {name: "secure with pool", secure: true, withPool: true},
+ {name: "insecure with pool", withPool: true},
} {
t.Run(tt.name, func(t *testing.T) {
var (
@@ -42,9 +54,6 @@ func TestSuccessfulCreateForkRequest(t *testing.T) {
)
if tt.secure {
- testPool, sslCleanup := injectCustomCATestCerts(t)
- defer sslCleanup()
-
var serverCleanup testhelper.Cleanup
_, serverSocketPath, serverCleanup = runFullSecureServer(t, locator)
defer serverCleanup()
@@ -63,6 +72,13 @@ func TestSuccessfulCreateForkRequest(t *testing.T) {
ctxOuter, cancel := testhelper.Context()
defer cancel()
+ var pool *objectpool.ObjectPool
+ if tt.withPool {
+ var poolCleanup func()
+ pool, poolCleanup = createPool(ctxOuter, t)
+ defer poolCleanup()
+ }
+
md := testhelper.GitalyServersMetadata(t, serverSocketPath)
ctx := metadata.NewOutgoingContext(ctxOuter, md)
@@ -87,6 +103,10 @@ func TestSuccessfulCreateForkRequest(t *testing.T) {
SourceRepository: testRepo,
}
+ if tt.withPool {
+ req.Pool = pool.ToProto()
+ }
+
_, err = client.CreateFork(ctx, req)
require.NoError(t, err)
defer func() { require.NoError(t, os.RemoveAll(forkedRepoPath)) }()
@@ -99,6 +119,10 @@ func TestSuccessfulCreateForkRequest(t *testing.T) {
info, err := os.Lstat(filepath.Join(forkedRepoPath, "hooks"))
require.NoError(t, err)
require.NotEqual(t, 0, info.Mode()&os.ModeSymlink)
+
+ if tt.withPool {
+ checkAlternatesFile(t, pool, locator, forkedRepo)
+ }
})
}
}
@@ -171,6 +195,83 @@ func TestFailedCreateForkRequestDueToExistingTarget(t *testing.T) {
}
}
+func TestCreateForkRequest_invalidPool(t *testing.T) {
+ locator := config.NewLocator(config.Config)
+
+ serverSocketPath, clean := runFullServer(t, locator)
+ defer clean()
+
+ client, conn := repository.NewRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ ctxOuter, cancel := testhelper.Context()
+ defer cancel()
+
+ md := testhelper.GitalyServersMetadata(t, serverSocketPath)
+ ctx := metadata.NewOutgoingContext(ctxOuter, md)
+
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ pool, poolCleanup := createPool(ctx, t)
+ defer poolCleanup()
+
+ testCases := []struct {
+ desc string
+ storage string
+ poolStorage string
+ poolPath string
+ errMessage string
+ }{
+ {
+ desc: "unknown storage",
+ storage: "unknown",
+ poolStorage: "unknown",
+ errMessage: `GetStorageByName: no such storage: "unknown"`,
+ },
+ {
+ desc: "mismatched pool storages",
+ storage: testRepo.StorageName,
+ poolStorage: "unknown",
+ errMessage: "target repository is on a different storage than the object pool",
+ },
+ {
+ desc: "unknown pool path",
+ storage: testRepo.StorageName,
+ poolStorage: testRepo.StorageName,
+ poolPath: "/path/to/nowhere",
+ errMessage: "CreateFork: get object pool from request: invalid object pool directory",
+ },
+ }
+
+ for _, testCase := range testCases {
+ t.Run(testCase.desc, func(t *testing.T) {
+ forkedRepo := &gitalypb.Repository{
+ RelativePath: "forks/test-repo-fork.git",
+ StorageName: testCase.storage,
+ }
+ defer os.RemoveAll(filepath.Join(testhelper.GitlabTestStoragePath(), forkedRepo.RelativePath))
+
+ poolProto := pool.ToProto()
+ poolProto.Repository.StorageName = testCase.poolStorage
+
+ if testCase.poolPath != "" {
+ poolProto.Repository.RelativePath = testCase.poolPath
+ }
+
+ req := &gitalypb.CreateForkRequest{
+ Repository: forkedRepo,
+ SourceRepository: testRepo,
+ Pool: poolProto,
+ }
+
+ _, err := client.CreateFork(ctx, req)
+ testhelper.RequireGrpcError(t, err, codes.InvalidArgument)
+ require.True(t, testhelper.GrpcErrorHasMessage(err, testCase.errMessage))
+ })
+ }
+}
+
func injectCustomCATestCerts(t *testing.T) (*x509.CertPool, testhelper.Cleanup) {
certFile, keyFile, removeCerts := testhelper.GenerateTestCerts(t)
@@ -193,3 +294,46 @@ func injectCustomCATestCerts(t *testing.T) (*x509.CertPool, testhelper.Cleanup)
return pool, cleanup
}
+
+func createPool(ctx context.Context, t *testing.T) (*objectpool.ObjectPool, func()) {
+ testRepo, _, cleanup := testhelper.NewTestRepo(t)
+ relativePoolPath := testhelper.NewTestObjectPoolName(t)
+
+ pool, err := objectpool.NewObjectPool(config.Config, config.NewLocator(config.Config), testRepo.GetStorageName(), relativePoolPath)
+ require.NoError(t, err)
+
+ require.NoError(t, pool.Create(ctx, testRepo))
+ require.NoError(t, pool.Link(ctx, testRepo))
+
+ return pool, func() {
+ cleanup()
+ pool.Remove(ctx)
+ }
+}
+
+func checkAlternatesFile(t *testing.T, pool *objectpool.ObjectPool, locator storage.Locator, testRepo *gitalypb.Repository) {
+ altPath, err := locator.InfoAlternatesPath(testRepo)
+ require.NoError(t, err)
+
+ info, err := os.Lstat(altPath)
+ require.NoError(t, err)
+ require.NotEqual(t, 0, info.Mode()&os.ModeSymlink)
+
+ content, err := ioutil.ReadFile(altPath)
+ require.NoError(t, err)
+ require.True(t, strings.HasPrefix(string(content), "../"), "expected %q to be relative path", content)
+
+ // Check that the forked repo has an alternate that points to the pool repository objects
+ poolRepo := &gitalypb.Repository{
+ RelativePath: pool.GetRelativePath(),
+ StorageName: pool.GetStorageName(),
+ }
+ poolPath, err := locator.GetRepoPath(poolRepo)
+ require.NoError(t, err)
+ expectedAlternatePath := filepath.Join(poolPath, "objects")
+
+ repoPath, err := locator.GetRepoPath(testRepo)
+ require.NoError(t, err)
+ actualPath := filepath.Join(repoPath, "objects", string(content))
+ require.Equal(t, expectedAlternatePath, actualPath)
+}
diff --git a/proto/go/gitalypb/repository-service.pb.go b/proto/go/gitalypb/repository-service.pb.go
index 02f3a323b..d7746e591 100644
--- a/proto/go/gitalypb/repository-service.pb.go
+++ b/proto/go/gitalypb/repository-service.pb.go
@@ -1573,8 +1573,12 @@ func (m *FindMergeBaseResponse) GetBase() string {
}
type CreateForkRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
- SourceRepository *Repository `protobuf:"bytes,2,opt,name=source_repository,json=sourceRepository,proto3" json:"source_repository,omitempty"`
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
+ SourceRepository *Repository `protobuf:"bytes,2,opt,name=source_repository,json=sourceRepository,proto3" json:"source_repository,omitempty"`
+ // Clone using an object pool to reduce object duplication.
+ // This pool repository must reside on the same storage shard
+ // as the target repository.
+ Pool *ObjectPool `protobuf:"bytes,3,opt,name=pool,proto3" json:"pool,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1619,6 +1623,13 @@ func (m *CreateForkRequest) GetSourceRepository() *Repository {
return nil
}
+func (m *CreateForkRequest) GetPool() *ObjectPool {
+ if m != nil {
+ return m.Pool
+ }
+ return nil
+}
+
type CreateForkResponse struct {
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
@@ -4009,199 +4020,200 @@ func init() {
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor_e9b1768cf174c79b) }
var fileDescriptor_e9b1768cf174c79b = []byte{
- // 3057 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5b, 0x6f, 0xdc, 0xc6,
- 0xf5, 0xf7, 0xea, 0xb6, 0xbb, 0x47, 0x6b, 0x7b, 0x35, 0x92, 0xad, 0x15, 0x2d, 0xf9, 0x42, 0x3b,
- 0x8e, 0xe3, 0x38, 0x72, 0x62, 0xff, 0x81, 0x7f, 0xda, 0xa2, 0x28, 0xb4, 0xba, 0xdb, 0xd6, 0x25,
- 0x94, 0xdc, 0x20, 0x06, 0x02, 0x86, 0xcb, 0x9d, 0xd5, 0xb2, 0xe2, 0x72, 0xd6, 0xc3, 0x59, 0xcb,
- 0x0a, 0xd0, 0x87, 0x16, 0xe8, 0x5b, 0x11, 0xa0, 0x40, 0xd1, 0xf4, 0xb1, 0xcf, 0xfd, 0x04, 0x7d,
- 0x29, 0x8a, 0xbe, 0xf4, 0x3b, 0x04, 0xfd, 0x06, 0xfd, 0x08, 0x7d, 0x2a, 0xe6, 0x42, 0x0e, 0xb9,
- 0x24, 0x37, 0x2e, 0xb4, 0x48, 0xdf, 0x38, 0x67, 0x66, 0xce, 0x39, 0x73, 0xe6, 0x9c, 0x99, 0x39,
- 0xbf, 0x43, 0x68, 0x50, 0xdc, 0x27, 0xa1, 0xc7, 0x08, 0x3d, 0xff, 0x28, 0xc4, 0xf4, 0x8d, 0xe7,
- 0xe2, 0xd5, 0x3e, 0x25, 0x8c, 0xa0, 0x99, 0x13, 0x8f, 0x39, 0xfe, 0xb9, 0x01, 0xbe, 0x17, 0x30,
- 0x49, 0x33, 0x6a, 0x61, 0xd7, 0xa1, 0xb8, 0x2d, 0x5b, 0xe6, 0x11, 0x2c, 0x5a, 0xf1, 0xec, 0xcd,
- 0xb7, 0x5e, 0xc8, 0x42, 0x0b, 0xbf, 0x1e, 0xe0, 0x90, 0xa1, 0x4f, 0x01, 0x34, 0xe3, 0x46, 0xe9,
- 0x76, 0xe9, 0xc1, 0xec, 0x13, 0xb4, 0x2a, 0x39, 0xae, 0xea, 0x49, 0xcd, 0xa9, 0x3f, 0xfe, 0xe3,
- 0x51, 0xc9, 0x4a, 0x8c, 0x35, 0x9f, 0x40, 0x23, 0xcb, 0x34, 0xec, 0x93, 0x20, 0xc4, 0xe8, 0x3a,
- 0xcc, 0x60, 0x41, 0x11, 0x1c, 0x2b, 0x96, 0x6a, 0x99, 0xc7, 0x62, 0x8e, 0xe3, 0x9e, 0xee, 0x06,
- 0x2e, 0xc5, 0x3d, 0x1c, 0x30, 0xc7, 0xbf, 0xb8, 0x26, 0x37, 0x60, 0x29, 0x87, 0xab, 0x54, 0xc5,
- 0xa4, 0x30, 0x27, 0x3b, 0xb7, 0x06, 0xfe, 0xc5, 0x65, 0xa1, 0xbb, 0x70, 0xd9, 0xa5, 0xd8, 0x61,
- 0xd8, 0x6e, 0x79, 0xac, 0xe7, 0xf4, 0x1b, 0x13, 0x62, 0x81, 0x35, 0x49, 0x6c, 0x0a, 0x9a, 0xb9,
- 0x00, 0x28, 0x29, 0x53, 0x69, 0xb2, 0x07, 0x73, 0x7b, 0x5e, 0xfb, 0xad, 0xec, 0xb9, 0xf8, 0xaa,
- 0x17, 0x00, 0x25, 0xd9, 0x29, 0x21, 0xbf, 0x2d, 0xc1, 0xb5, 0x6d, 0x87, 0xb6, 0x9c, 0x13, 0xbc,
- 0x4e, 0x7c, 0x1f, 0xbb, 0xec, 0x87, 0x59, 0x33, 0x5a, 0x80, 0xe9, 0x3e, 0x1d, 0x04, 0xb8, 0x31,
- 0x29, 0x3a, 0x65, 0xc3, 0x6c, 0xc0, 0xf5, 0x61, 0x6d, 0x94, 0xa2, 0x47, 0xb0, 0xf8, 0x39, 0xf5,
- 0x18, 0x5e, 0x27, 0xbd, 0x9e, 0xc7, 0xb6, 0xa9, 0xd3, 0xef, 0x5e, 0xdc, 0x26, 0x06, 0x34, 0xb2,
- 0x4c, 0x95, 0xc0, 0x67, 0x70, 0x65, 0xdd, 0xc7, 0x4e, 0x30, 0xe8, 0x5f, 0x5c, 0xce, 0x1c, 0x5c,
- 0x8d, 0x79, 0x29, 0xf6, 0x9f, 0xc1, 0x35, 0x3d, 0xe5, 0xc8, 0xfb, 0x1a, 0x5f, 0x5c, 0xca, 0x23,
- 0xb8, 0x3e, 0xcc, 0x52, 0xc5, 0x17, 0x82, 0xa9, 0xd0, 0xfb, 0x1a, 0x0b, 0x6e, 0x93, 0x96, 0xf8,
- 0x36, 0x5f, 0xc3, 0xd2, 0x5a, 0xbf, 0xef, 0x9f, 0x6f, 0x7b, 0xcc, 0x61, 0x8c, 0x7a, 0xad, 0x01,
- 0xc3, 0x17, 0x0f, 0x73, 0x64, 0x40, 0x85, 0xe2, 0x37, 0x5e, 0xe8, 0x91, 0x40, 0xec, 0x7b, 0xcd,
- 0x8a, 0xdb, 0xe6, 0x32, 0x18, 0x79, 0x22, 0x95, 0x45, 0xfe, 0x36, 0x01, 0x68, 0x0b, 0x33, 0xb7,
- 0x6b, 0xe1, 0x1e, 0x61, 0x17, 0xb7, 0x07, 0x3f, 0x55, 0xa8, 0x60, 0x25, 0x14, 0xa9, 0x5a, 0xaa,
- 0xc5, 0x5d, 0xaf, 0x43, 0xa8, 0x1b, 0xbb, 0x9e, 0x68, 0xa0, 0x45, 0x28, 0x07, 0xc4, 0x66, 0xce,
- 0x49, 0xd8, 0x98, 0x92, 0x87, 0x50, 0x40, 0x8e, 0x9d, 0x93, 0x10, 0x35, 0xa0, 0xcc, 0xbc, 0x1e,
- 0x26, 0x03, 0xd6, 0x98, 0xbe, 0x5d, 0x7a, 0x30, 0x6d, 0x45, 0x4d, 0x3e, 0x25, 0x0c, 0xbb, 0xf6,
- 0x29, 0x3e, 0x6f, 0xcc, 0x48, 0x09, 0x61, 0xd8, 0x7d, 0x8e, 0xcf, 0xd1, 0x2d, 0x98, 0x3d, 0x0d,
- 0xc8, 0x59, 0x60, 0x77, 0x09, 0x3f, 0xd4, 0xca, 0xa2, 0x13, 0x04, 0x69, 0x87, 0x53, 0xd0, 0x12,
- 0x54, 0x02, 0x62, 0xcb, 0x00, 0xa8, 0x0a, 0x69, 0xe5, 0x80, 0x1c, 0xf2, 0x26, 0x7a, 0x0a, 0x97,
- 0xa5, 0x9e, 0x76, 0xdf, 0xa1, 0x4e, 0x2f, 0x6c, 0x80, 0x58, 0xf2, 0x15, 0xbd, 0x64, 0x61, 0x9d,
- 0x9a, 0x1c, 0x74, 0x28, 0xc6, 0x3c, 0x9b, 0xaa, 0x54, 0xea, 0x55, 0xf3, 0x1a, 0xcc, 0xa7, 0x0c,
- 0xa8, 0x43, 0x67, 0x5d, 0x84, 0x9e, 0xb6, 0xd6, 0x58, 0x42, 0x27, 0xcb, 0x54, 0x09, 0xfc, 0xd7,
- 0x04, 0xcc, 0x6d, 0x63, 0xb6, 0x46, 0xdd, 0xae, 0xf7, 0x66, 0x0c, 0x1b, 0x79, 0x03, 0xaa, 0xae,
- 0x88, 0x50, 0xdb, 0x6b, 0xab, 0xbd, 0xac, 0x48, 0xc2, 0x6e, 0x9b, 0xef, 0x72, 0x9f, 0xe2, 0x8e,
- 0xf7, 0x56, 0x6c, 0x67, 0xd5, 0x52, 0x2d, 0xf4, 0x29, 0xcc, 0x74, 0x08, 0xed, 0x39, 0x4c, 0x6c,
- 0xe7, 0x95, 0x27, 0xb7, 0x23, 0x51, 0x19, 0xcd, 0x56, 0xb7, 0xc4, 0x38, 0x4b, 0x8d, 0xe7, 0xd1,
- 0xd2, 0x77, 0x58, 0x57, 0xec, 0x76, 0xcd, 0x12, 0xdf, 0xdc, 0x09, 0xf0, 0x5b, 0xd7, 0x1f, 0xb4,
- 0x71, 0x63, 0xe6, 0xf6, 0xe4, 0x83, 0x9a, 0x15, 0x35, 0xd1, 0x0a, 0x00, 0xf6, 0xbd, 0x36, 0xdf,
- 0x2e, 0xd6, 0x15, 0x5b, 0x5d, 0xb1, 0xaa, 0x82, 0x72, 0xc8, 0x27, 0x3e, 0x84, 0x39, 0x2f, 0x10,
- 0x23, 0x6d, 0xbf, 0x13, 0xda, 0x2d, 0x9f, 0xb4, 0xc2, 0x46, 0x45, 0x8c, 0xba, 0xaa, 0x3a, 0x5e,
- 0x74, 0xc2, 0x26, 0x27, 0x9b, 0x4f, 0x61, 0x46, 0xaa, 0x82, 0xca, 0x30, 0xf9, 0x6a, 0xf7, 0xb0,
- 0x7e, 0x89, 0x7f, 0x1c, 0xaf, 0x59, 0xf5, 0x12, 0x02, 0x98, 0x39, 0x5e, 0xb3, 0xec, 0xed, 0x57,
- 0xf5, 0x09, 0x34, 0x0b, 0x65, 0xfe, 0xdd, 0x7c, 0xf5, 0xa4, 0x3e, 0x69, 0x3e, 0x00, 0x94, 0x5c,
- 0x91, 0x8e, 0xf8, 0xb6, 0xc3, 0x1c, 0x61, 0xe6, 0x9a, 0x25, 0xbe, 0xb9, 0x1f, 0xec, 0x38, 0xe1,
- 0x0b, 0xe2, 0x3a, 0x7e, 0x93, 0x3a, 0x81, 0xdb, 0x1d, 0x43, 0xbc, 0x9b, 0x1f, 0x43, 0x23, 0xcb,
- 0x54, 0x29, 0xb1, 0x00, 0xd3, 0x6f, 0x1c, 0x7f, 0x80, 0xd5, 0xad, 0x2e, 0x1b, 0xe6, 0x77, 0x25,
- 0x68, 0x08, 0x37, 0x3d, 0x22, 0x03, 0xea, 0x62, 0x39, 0xeb, 0xe2, 0x4e, 0xf2, 0x33, 0x98, 0x0b,
- 0x05, 0x43, 0x3b, 0xc1, 0x60, 0xa2, 0x88, 0x81, 0x55, 0x97, 0x83, 0xad, 0xd4, 0xb5, 0xa5, 0x18,
- 0xb4, 0x84, 0x4a, 0xc2, 0x9f, 0x6a, 0x56, 0x2d, 0x4c, 0xa8, 0xc9, 0x77, 0x9b, 0x39, 0xf4, 0x04,
- 0x33, 0x9b, 0xe2, 0x8e, 0xf0, 0xac, 0x9a, 0x55, 0x95, 0x14, 0x0b, 0x77, 0xcc, 0xa7, 0xb0, 0x94,
- 0xb3, 0x34, 0xfd, 0xca, 0xa1, 0x38, 0x1c, 0xf8, 0x2c, 0x7a, 0xe5, 0xc8, 0x96, 0xb9, 0x0d, 0xb3,
- 0x5b, 0xe1, 0x38, 0xae, 0xf8, 0x7b, 0x50, 0x93, 0x8c, 0xb4, 0xfd, 0x31, 0xa5, 0x84, 0x2a, 0x2f,
- 0x90, 0x0d, 0xf3, 0x2f, 0x25, 0xb8, 0x2a, 0x6e, 0x3d, 0x0b, 0x77, 0x2e, 0x6e, 0xf6, 0x3a, 0x4c,
- 0x72, 0x4b, 0xc8, 0xa3, 0x9e, 0x7f, 0xa6, 0x6e, 0x80, 0xc9, 0xf4, 0x0d, 0x80, 0xee, 0x40, 0x8d,
- 0xf8, 0x6d, 0x3b, 0xee, 0x97, 0x06, 0x9c, 0x25, 0x7e, 0xdb, 0x8a, 0x86, 0xc4, 0xa7, 0xf3, 0x74,
- 0xe2, 0x74, 0x7e, 0x36, 0x55, 0x99, 0xa9, 0x97, 0xcd, 0x06, 0xd4, 0xb5, 0xe6, 0x72, 0x91, 0xcf,
- 0xa6, 0x2a, 0xa5, 0xfa, 0x84, 0x19, 0xc0, 0xc2, 0x96, 0x17, 0xb4, 0xf7, 0x30, 0x3d, 0xc1, 0x4d,
- 0x27, 0x1c, 0xc3, 0xa1, 0xb3, 0x0c, 0xd5, 0x48, 0xcd, 0xb0, 0x31, 0x21, 0x62, 0x5e, 0x13, 0xcc,
- 0x0f, 0xe1, 0xda, 0x90, 0x3c, 0x1d, 0x78, 0x2d, 0x27, 0x94, 0x2e, 0x5f, 0xb5, 0xc4, 0xb7, 0xf9,
- 0x4d, 0x09, 0xe6, 0xe4, 0x61, 0xb9, 0x45, 0xe8, 0xe9, 0xff, 0xde, 0xd5, 0xf9, 0x5b, 0x30, 0xa9,
- 0x4f, 0xfc, 0xf4, 0x5d, 0xda, 0x0d, 0x2d, 0xcc, 0x55, 0xde, 0x0d, 0x0e, 0x29, 0x39, 0xa1, 0x38,
- 0x0c, 0xc7, 0x72, 0x7a, 0x53, 0xc1, 0x34, 0x71, 0x7a, 0x4b, 0xc2, 0x6e, 0xdb, 0xfc, 0x29, 0x18,
- 0x79, 0x32, 0x95, 0x31, 0x6f, 0xc1, 0xac, 0x17, 0xd8, 0x7d, 0x45, 0x56, 0x61, 0x03, 0x5e, 0x3c,
- 0x50, 0xaa, 0x7c, 0xf4, 0x7a, 0xe0, 0x84, 0xdd, 0x31, 0xab, 0x1c, 0x0a, 0xa6, 0x09, 0x95, 0x25,
- 0x21, 0x52, 0x39, 0x2b, 0xf3, 0x5d, 0x55, 0xf6, 0xe1, 0xe6, 0xf0, 0xc5, 0xb9, 0x45, 0x49, 0xef,
- 0xa5, 0xf5, 0x62, 0x2c, 0xc1, 0x38, 0xa0, 0xbe, 0xd2, 0x98, 0x7f, 0x9a, 0x77, 0xe0, 0x56, 0xa1,
- 0x34, 0xb5, 0xed, 0x07, 0x30, 0x2f, 0x87, 0x34, 0x07, 0x41, 0xdb, 0x1f, 0xc3, 0x3b, 0xf4, 0x21,
- 0x2c, 0xa4, 0x19, 0x8e, 0xb8, 0x93, 0xbe, 0x99, 0x80, 0xfa, 0x11, 0x66, 0xeb, 0x24, 0xe8, 0x78,
- 0x27, 0x17, 0x37, 0xc0, 0xa7, 0x50, 0xc6, 0x01, 0xa3, 0x1e, 0x96, 0x21, 0x3b, 0xfb, 0xe4, 0x66,
- 0x34, 0x6d, 0x58, 0xc8, 0xea, 0x66, 0xc0, 0xe8, 0xb9, 0x15, 0x0d, 0x37, 0x7e, 0x53, 0x82, 0x69,
- 0x41, 0xe2, 0x46, 0xe4, 0x2f, 0x3a, 0x19, 0xc0, 0xfc, 0x13, 0xad, 0x40, 0x55, 0x5c, 0x5d, 0x76,
- 0xc8, 0xa8, 0x34, 0xee, 0xce, 0x25, 0xab, 0x22, 0x48, 0x47, 0x8c, 0xa2, 0x3b, 0x30, 0x2b, 0xbb,
- 0xbd, 0x80, 0x3d, 0x7d, 0x22, 0xce, 0xbc, 0xe9, 0x9d, 0x4b, 0x16, 0x08, 0xe2, 0x2e, 0xa7, 0xa1,
- 0x5b, 0x20, 0x5b, 0x76, 0x8b, 0x10, 0x5f, 0xbe, 0x2f, 0x77, 0x2e, 0x59, 0x92, 0x6b, 0x93, 0x10,
- 0xbf, 0x59, 0x56, 0x57, 0xa5, 0x39, 0x0f, 0x73, 0x09, 0x55, 0xd5, 0x16, 0xb9, 0x30, 0xbf, 0x81,
- 0x7d, 0xcc, 0x13, 0x95, 0xf1, 0xd8, 0x09, 0xc1, 0xd4, 0x29, 0x3e, 0x97, 0x46, 0xaa, 0x5a, 0xe2,
- 0xdb, 0xbc, 0x0e, 0x0b, 0x69, 0x21, 0x4a, 0xb8, 0xc7, 0xd3, 0xe5, 0x90, 0x11, 0x8a, 0xd7, 0x07,
- 0x21, 0x23, 0xbd, 0x1d, 0x42, 0x4e, 0xc3, 0xb1, 0xa8, 0x20, 0xbc, 0x61, 0x22, 0xe1, 0x0d, 0xcb,
- 0x60, 0xe4, 0x89, 0x52, 0x8a, 0x1c, 0x43, 0xa3, 0xe9, 0xb8, 0xa7, 0x83, 0xfe, 0x38, 0xf5, 0x30,
- 0x1f, 0xc3, 0x52, 0x0e, 0xd7, 0x11, 0x2e, 0xfb, 0x1a, 0xee, 0xe4, 0x85, 0xd4, 0x98, 0xa2, 0x27,
- 0xd7, 0x2e, 0xf7, 0xc0, 0x1c, 0x25, 0x52, 0xd9, 0x67, 0x1f, 0x10, 0xbf, 0x93, 0x5e, 0x78, 0x2e,
- 0x0e, 0xc6, 0x70, 0x03, 0x9a, 0xeb, 0x30, 0x9f, 0xe2, 0xa7, 0x6c, 0xf2, 0x08, 0x90, 0x2f, 0x49,
- 0x76, 0xd8, 0x25, 0x94, 0xd9, 0x81, 0xd3, 0x8b, 0xee, 0xbb, 0xba, 0xea, 0x39, 0xe2, 0x1d, 0xfb,
- 0x4e, 0x4f, 0x6c, 0xda, 0x36, 0x66, 0xbb, 0x41, 0x87, 0xac, 0x8d, 0x2f, 0xcb, 0x34, 0x7f, 0x02,
- 0x4b, 0x39, 0x5c, 0x95, 0x82, 0x37, 0x01, 0x74, 0x7a, 0xa9, 0xb6, 0x2e, 0x41, 0xe1, 0x2a, 0xad,
- 0x3b, 0xbe, 0x3b, 0xf0, 0x1d, 0x86, 0xd7, 0xbb, 0xd8, 0x3d, 0x0d, 0x07, 0xbd, 0x8b, 0xab, 0xf4,
- 0xff, 0xb0, 0x94, 0xc3, 0x55, 0xa9, 0x64, 0x40, 0xc5, 0x55, 0x34, 0x65, 0xa9, 0xb8, 0xcd, 0xb7,
- 0x6d, 0x1b, 0xb3, 0xa3, 0xc0, 0xe9, 0x87, 0x5d, 0x72, 0x71, 0xf8, 0xc5, 0xfc, 0x00, 0xe6, 0x53,
- 0xfc, 0x46, 0xb8, 0xf2, 0xb7, 0x25, 0xb8, 0x9b, 0xe7, 0x58, 0x63, 0x53, 0x86, 0x27, 0xba, 0x5d,
- 0xc6, 0xfa, 0xb6, 0xbe, 0x96, 0xca, 0xbc, 0xfd, 0x92, 0xfa, 0xfc, 0x92, 0x15, 0x5d, 0xce, 0x80,
- 0x75, 0x55, 0xee, 0x26, 0xc6, 0xae, 0x0d, 0x58, 0xd7, 0xbc, 0x0f, 0xf7, 0x46, 0x2b, 0xa6, 0x7c,
- 0xfe, 0x0f, 0x25, 0x58, 0xd8, 0xc6, 0xcc, 0x72, 0xce, 0xd6, 0xbb, 0x4e, 0x70, 0x32, 0x0e, 0x04,
- 0xe3, 0x2e, 0x5c, 0xee, 0x50, 0xd2, 0xb3, 0x53, 0x30, 0x46, 0xd5, 0xaa, 0x71, 0x62, 0xfc, 0x4a,
- 0xbd, 0x05, 0xb3, 0x8c, 0xd8, 0xa9, 0x77, 0x6e, 0xd5, 0x02, 0x46, 0xa2, 0x01, 0xe6, 0x5f, 0xa7,
- 0xe0, 0xda, 0x90, 0x62, 0x6a, 0x23, 0x76, 0x60, 0x96, 0x3a, 0x67, 0xb6, 0x2b, 0xc9, 0x8d, 0x92,
- 0xb8, 0xa7, 0xde, 0x4f, 0x64, 0xa7, 0xd9, 0x39, 0xab, 0x31, 0xc9, 0x02, 0x1a, 0xf7, 0x1a, 0xdf,
- 0x4d, 0x42, 0x35, 0xee, 0x41, 0x8b, 0x50, 0xe6, 0xd9, 0x25, 0x7f, 0xb2, 0x48, 0x17, 0x9b, 0xe1,
- 0xcd, 0xdd, 0x76, 0x8c, 0xfe, 0x4c, 0x68, 0xf4, 0x07, 0xad, 0x40, 0x25, 0xc0, 0x67, 0x32, 0x67,
- 0x15, 0xca, 0x37, 0x27, 0x1a, 0x25, 0xab, 0x1c, 0xe0, 0x33, 0x91, 0xb5, 0xae, 0x40, 0x85, 0xbf,
- 0xd3, 0x45, 0xf7, 0x94, 0xee, 0x26, 0x7e, 0x5b, 0x74, 0x1f, 0x40, 0x95, 0xf4, 0x31, 0x75, 0x18,
- 0x5f, 0xfb, 0xb4, 0x48, 0xaf, 0x3f, 0x79, 0xc7, 0x05, 0xac, 0x1e, 0x44, 0x13, 0x2d, 0xcd, 0x83,
- 0xdb, 0x9c, 0xdb, 0x44, 0x33, 0x95, 0x78, 0x4a, 0x8d, 0x3a, 0x67, 0xf1, 0x78, 0xee, 0x4b, 0x5c,
- 0xa9, 0x1e, 0x69, 0x63, 0x91, 0x67, 0x4f, 0x0b, 0x85, 0xf6, 0x48, 0x1b, 0x0b, 0x3c, 0x05, 0x9f,
- 0xc9, 0xae, 0x8a, 0xec, 0x0a, 0xf0, 0x99, 0xe8, 0xba, 0x07, 0x57, 0xa2, 0x95, 0xda, 0xad, 0x73,
- 0x7e, 0x22, 0x54, 0x65, 0x5e, 0xa7, 0xd6, 0xda, 0xe4, 0x34, 0x3e, 0x2a, 0x5a, 0xb0, 0x1a, 0x05,
- 0x72, 0x94, 0x5a, 0xb2, 0x18, 0x65, 0x7a, 0x50, 0xd5, 0xea, 0xcc, 0x42, 0xf9, 0xe5, 0xfe, 0xf3,
- 0xfd, 0x83, 0xcf, 0xf7, 0xeb, 0x97, 0x50, 0x15, 0xa6, 0xd7, 0x36, 0x36, 0x36, 0x37, 0x64, 0xa6,
- 0xbe, 0x7e, 0x70, 0xb8, 0xbb, 0xb9, 0x21, 0x33, 0xf5, 0x8d, 0xcd, 0x17, 0x9b, 0xc7, 0x9b, 0x1b,
- 0xf5, 0x49, 0x54, 0x83, 0xca, 0xde, 0xc1, 0xc6, 0xee, 0x16, 0xef, 0x9a, 0xe2, 0x5d, 0xd6, 0xe6,
- 0xfe, 0xda, 0xde, 0xe6, 0x46, 0x7d, 0x1a, 0xd5, 0xa1, 0x76, 0xfc, 0xc5, 0xe1, 0xa6, 0xbd, 0xbe,
- 0xb3, 0xb6, 0xbf, 0xbd, 0xb9, 0x51, 0x9f, 0x31, 0x7f, 0x5f, 0x82, 0xc6, 0x11, 0x76, 0xa8, 0xdb,
- 0xdd, 0xf2, 0x7c, 0x1c, 0x36, 0xcf, 0xf9, 0x69, 0x7a, 0x71, 0xe7, 0x5e, 0x80, 0xe9, 0xd7, 0x03,
- 0xac, 0xd2, 0x85, 0xaa, 0x25, 0x1b, 0x51, 0x12, 0x37, 0xa9, 0x93, 0xb8, 0xeb, 0x30, 0xd3, 0xf1,
- 0x7c, 0x86, 0xa9, 0xdc, 0x7e, 0x4b, 0xb5, 0xcc, 0x4f, 0x60, 0x29, 0x47, 0x2b, 0x9d, 0x6f, 0x76,
- 0x38, 0x59, 0xf8, 0x74, 0xcd, 0x92, 0x0d, 0xf3, 0xcf, 0x25, 0xb8, 0x91, 0x9a, 0xb3, 0x4e, 0x02,
- 0x86, 0x03, 0xf6, 0xc3, 0x2d, 0xe6, 0x03, 0xa8, 0xbb, 0xdd, 0x41, 0x70, 0x8a, 0x79, 0xe6, 0x29,
- 0x75, 0x55, 0x18, 0xdf, 0x55, 0x45, 0x8f, 0xcf, 0x93, 0x73, 0x58, 0xce, 0xd7, 0x55, 0x2d, 0xb1,
- 0x01, 0xe5, 0x9e, 0xc3, 0xdc, 0x6e, 0xbc, 0xc8, 0xa8, 0x89, 0x56, 0x00, 0xc4, 0xa7, 0x9d, 0xb8,
- 0xbd, 0xab, 0x82, 0xb2, 0xe1, 0x30, 0x07, 0xdd, 0x86, 0x1a, 0x0e, 0xda, 0x36, 0xe9, 0xd8, 0x82,
- 0xa6, 0xb0, 0x47, 0xc0, 0x41, 0xfb, 0xa0, 0xb3, 0xc7, 0x29, 0xe6, 0xef, 0x4a, 0x30, 0x23, 0x91,
- 0xbb, 0xe8, 0x1d, 0x5f, 0x8a, 0xdf, 0xf1, 0x3c, 0x86, 0xc5, 0x35, 0x2b, 0x57, 0x2a, 0xbe, 0xd1,
- 0x8f, 0x61, 0x29, 0x3e, 0x40, 0x09, 0xf5, 0xbe, 0x16, 0x6e, 0x69, 0x77, 0xb1, 0xd3, 0xc6, 0x54,
- 0x9d, 0x48, 0x8b, 0xd1, 0x81, 0x1a, 0xf7, 0xef, 0x88, 0x6e, 0xf4, 0x1e, 0x5c, 0xe9, 0x79, 0x94,
- 0x12, 0x6a, 0x53, 0xdc, 0xe9, 0x39, 0xfd, 0xb0, 0x31, 0x25, 0x9e, 0x82, 0x97, 0x25, 0xd5, 0x92,
- 0x44, 0xf3, 0x0b, 0x58, 0xd9, 0xc6, 0xec, 0xa0, 0xf5, 0x0b, 0xec, 0xb2, 0x0d, 0x8f, 0x62, 0x77,
- 0x7c, 0x68, 0xf5, 0xff, 0xc1, 0xcd, 0x22, 0xd6, 0x23, 0x50, 0xeb, 0x3f, 0x95, 0x60, 0x61, 0xdd,
- 0x27, 0x01, 0xe6, 0xb7, 0xc1, 0x21, 0x21, 0x63, 0x28, 0xd1, 0xdc, 0x87, 0xa9, 0x3e, 0x7f, 0x95,
- 0x0f, 0x25, 0xd0, 0x52, 0x33, 0x21, 0x42, 0xf4, 0xa3, 0xfb, 0x31, 0x9c, 0x3c, 0x99, 0x8b, 0xc8,
- 0xaa, 0x5e, 0x73, 0x11, 0xae, 0x0d, 0x69, 0xa8, 0x7c, 0xeb, 0xef, 0x25, 0x58, 0x4e, 0xf5, 0xec,
- 0x06, 0x0c, 0xd3, 0xc0, 0xf9, 0x01, 0xd7, 0x90, 0x8b, 0x1c, 0x4c, 0xfe, 0x17, 0xc8, 0xc1, 0x2d,
- 0x58, 0x29, 0x58, 0x82, 0x06, 0x9b, 0xb9, 0x3d, 0xde, 0x8c, 0x1b, 0x6c, 0xce, 0x32, 0x55, 0x02,
- 0xdf, 0x72, 0x81, 0x81, 0x38, 0x86, 0xc6, 0x26, 0x50, 0xdc, 0x47, 0xd8, 0x77, 0x98, 0xf7, 0x46,
- 0xe1, 0xba, 0xea, 0x0d, 0x10, 0x11, 0xf9, 0x95, 0x20, 0xb5, 0x1a, 0x96, 0xac, 0xb4, 0xfa, 0x75,
- 0x89, 0xa7, 0x32, 0x7d, 0xdf, 0x73, 0xc7, 0x8b, 0xbb, 0xa3, 0x87, 0x30, 0x23, 0x37, 0x65, 0x04,
- 0xe0, 0xa3, 0x46, 0x98, 0x2b, 0x70, 0x23, 0x57, 0x07, 0xa5, 0xe3, 0x4b, 0x58, 0x3a, 0xe8, 0x33,
- 0xaf, 0x27, 0x62, 0x6e, 0x7c, 0x9b, 0xb5, 0x0c, 0x46, 0x1e, 0x5b, 0x29, 0xf4, 0xc9, 0x3f, 0x6f,
- 0x8a, 0x02, 0x6b, 0x54, 0xa5, 0x92, 0x95, 0x69, 0xf4, 0x25, 0xd4, 0x87, 0x8b, 0xc3, 0xe8, 0x56,
- 0x56, 0x5a, 0xaa, 0x16, 0x6d, 0xdc, 0x2e, 0x1e, 0xa0, 0x56, 0x38, 0xf3, 0xef, 0x6f, 0x1f, 0x4c,
- 0x54, 0x26, 0xd0, 0x57, 0x51, 0x51, 0x37, 0x51, 0xf1, 0x45, 0xc9, 0xe9, 0xb9, 0x25, 0x66, 0xe3,
- 0xce, 0x88, 0x11, 0x29, 0x09, 0x25, 0xf4, 0x1c, 0x40, 0x97, 0x70, 0xd1, 0x52, 0x7a, 0x62, 0xa2,
- 0x94, 0x6c, 0x18, 0x79, 0x5d, 0x59, 0x66, 0xba, 0x54, 0xab, 0x99, 0x65, 0xaa, 0xc1, 0x9a, 0x59,
- 0x4e, 0x65, 0x37, 0x62, 0xf6, 0x39, 0x5c, 0x49, 0x97, 0x54, 0xd1, 0x4a, 0xfc, 0x54, 0xcb, 0x2b,
- 0xfc, 0x1a, 0x37, 0x8b, 0xba, 0x87, 0x18, 0x7f, 0xa9, 0xc0, 0xd8, 0x44, 0xf1, 0x54, 0xef, 0x59,
- 0x41, 0xad, 0x56, 0xef, 0x59, 0x61, 0xdd, 0x35, 0xa1, 0x77, 0xba, 0x9a, 0xa9, 0xf5, 0xce, 0x2d,
- 0x9c, 0x6a, 0xbd, 0xf3, 0x8b, 0xa0, 0xb1, 0x33, 0xb8, 0x80, 0xb2, 0x55, 0x48, 0x14, 0xef, 0x75,
- 0x61, 0x51, 0xd4, 0x30, 0x47, 0x0d, 0x19, 0xd2, 0x7e, 0x1f, 0x66, 0x13, 0xa5, 0x38, 0x14, 0x6f,
- 0x54, 0xb6, 0xc0, 0x69, 0xdc, 0xc8, 0xed, 0xcb, 0x1a, 0x7b, 0x38, 0x1f, 0xd2, 0xc6, 0x2e, 0xa8,
- 0xee, 0x69, 0x63, 0x17, 0x56, 0xea, 0x22, 0xf6, 0x7b, 0x00, 0xba, 0x88, 0xa4, 0x3d, 0x2e, 0x53,
- 0x2a, 0xd3, 0x1e, 0x97, 0xad, 0x39, 0x45, 0x06, 0xfe, 0x58, 0x68, 0x3b, 0x5c, 0x14, 0xd2, 0xda,
- 0x16, 0xd4, 0xa0, 0xb4, 0xb6, 0x45, 0xf5, 0xa4, 0x64, 0x38, 0x67, 0xaa, 0x2c, 0x3a, 0x9c, 0x8b,
- 0x6a, 0x4b, 0x3a, 0x9c, 0x0b, 0x4b, 0x34, 0xb1, 0x3d, 0x7e, 0x04, 0x53, 0x5b, 0xa1, 0x7b, 0x8a,
- 0xe6, 0xe3, 0x29, 0xba, 0x40, 0x63, 0x2c, 0xa4, 0x89, 0x43, 0x53, 0x37, 0xa1, 0x12, 0xd5, 0x28,
- 0xd0, 0x62, 0xca, 0xdb, 0x75, 0xbd, 0xc5, 0x68, 0x64, 0x3b, 0x86, 0xd8, 0x1c, 0xc3, 0xe5, 0x54,
- 0x81, 0x01, 0x2d, 0xc7, 0x52, 0x73, 0xea, 0x1c, 0xc6, 0x4a, 0x41, 0xef, 0x90, 0xe5, 0x9e, 0x03,
- 0x68, 0xe0, 0x5f, 0xef, 0x73, 0xa6, 0x38, 0xa1, 0xf7, 0x39, 0xa7, 0x4e, 0x10, 0xa9, 0xe8, 0x02,
- 0xca, 0x62, 0xf7, 0x3a, 0x90, 0x0a, 0x6b, 0x09, 0x3a, 0x90, 0x8a, 0xa1, 0xff, 0x64, 0xb4, 0x66,
- 0xd1, 0xf6, 0xa4, 0x90, 0x02, 0xf4, 0x3f, 0x29, 0xa4, 0x08, 0xac, 0x8f, 0x85, 0xd0, 0x6c, 0x85,
- 0x5c, 0xa1, 0xe4, 0xe8, 0x7e, 0x51, 0x0c, 0xa5, 0x41, 0x7b, 0xe3, 0xfd, 0xef, 0x1d, 0x37, 0x64,
- 0xbd, 0x23, 0xa8, 0x25, 0x51, 0x72, 0x74, 0x23, 0xcd, 0x20, 0x05, 0x27, 0x1a, 0xcb, 0xf9, 0x9d,
- 0x99, 0xc0, 0xfb, 0x25, 0x18, 0xc5, 0x40, 0x21, 0xfa, 0x60, 0x94, 0x8e, 0x69, 0x81, 0x0f, 0xdf,
- 0x65, 0x68, 0x7a, 0x45, 0x0f, 0x4a, 0x68, 0x07, 0xaa, 0x31, 0x78, 0x8d, 0x1a, 0x45, 0xd0, 0xbb,
- 0xb1, 0x94, 0xd3, 0x33, 0x64, 0x9d, 0xcf, 0xa0, 0x96, 0x04, 0xa3, 0xb5, 0x75, 0x72, 0x70, 0x70,
- 0x6d, 0x9d, 0x5c, 0xfc, 0x3a, 0x79, 0x24, 0x6b, 0x38, 0x33, 0x71, 0x24, 0x67, 0x30, 0xd3, 0xc4,
- 0x91, 0x9c, 0xc5, 0x3f, 0x63, 0xa7, 0x69, 0x89, 0x9f, 0x1c, 0xd2, 0x18, 0x24, 0x4a, 0xfe, 0x65,
- 0x90, 0x0b, 0x7a, 0xea, 0x53, 0xa8, 0x10, 0xc0, 0x4c, 0xec, 0xe7, 0x57, 0x30, 0x97, 0x01, 0x15,
- 0xb5, 0x8c, 0x22, 0x14, 0x53, 0xcb, 0x28, 0x44, 0x24, 0xe3, 0x55, 0x34, 0xa1, 0xac, 0x7e, 0x4d,
- 0x42, 0xd7, 0xe3, 0x59, 0xa9, 0xff, 0x9e, 0x8c, 0xc5, 0x0c, 0x7d, 0xc8, 0xb2, 0x87, 0x30, 0x9b,
- 0x40, 0x1c, 0x51, 0xf2, 0x8e, 0x18, 0x42, 0x12, 0xb5, 0x65, 0x73, 0x20, 0xca, 0xc4, 0xba, 0x7f,
- 0xc5, 0x53, 0xa5, 0x11, 0xf8, 0x1f, 0xfa, 0x70, 0x94, 0x7f, 0x0e, 0x0b, 0x7d, 0xf4, 0x6e, 0x83,
- 0x87, 0x56, 0xf5, 0x73, 0xb8, 0x9c, 0xc2, 0xb2, 0xf4, 0x09, 0x9c, 0x07, 0x38, 0xea, 0x13, 0x38,
- 0x17, 0x00, 0x4b, 0xac, 0xed, 0x14, 0x16, 0xf2, 0x20, 0x06, 0x74, 0x57, 0x47, 0x45, 0x21, 0x58,
- 0x62, 0xdc, 0x1b, 0x3d, 0x28, 0x23, 0xac, 0x05, 0x73, 0x19, 0xbc, 0x46, 0x3b, 0x50, 0x11, 0xc0,
- 0xa4, 0x1d, 0xa8, 0x10, 0xec, 0x49, 0xc8, 0xc0, 0x80, 0xb2, 0x55, 0x1b, 0x94, 0x78, 0x3c, 0x17,
- 0x14, 0x8f, 0xf4, 0x11, 0x3d, 0xa2, 0xe8, 0xa3, 0x0f, 0x97, 0x16, 0xcc, 0x65, 0x0a, 0x35, 0x7a,
- 0x29, 0x45, 0x95, 0x21, 0xbd, 0x94, 0xc2, 0x2a, 0x4f, 0x62, 0x29, 0x04, 0xae, 0xe7, 0x83, 0x12,
- 0xe8, 0xbd, 0xc4, 0xf6, 0x16, 0xe3, 0x21, 0xc6, 0xfd, 0xef, 0x1b, 0x36, 0x14, 0x7e, 0xc7, 0x70,
- 0x39, 0x95, 0x4f, 0x6b, 0x27, 0xcb, 0x43, 0x39, 0xb4, 0x93, 0xe5, 0x23, 0x0c, 0x91, 0xeb, 0xfa,
- 0x43, 0x10, 0x44, 0x94, 0xa5, 0xa3, 0x7b, 0xb9, 0xf3, 0x87, 0x70, 0x08, 0xe3, 0xbd, 0xef, 0x19,
- 0x95, 0x7d, 0x9b, 0x0e, 0x67, 0xe7, 0xc9, 0xe4, 0x2d, 0x17, 0x0c, 0x48, 0x26, 0x6f, 0x05, 0x89,
- 0x7d, 0x8a, 0x7d, 0x3a, 0xcd, 0x4e, 0xb2, 0xcf, 0x4d, 0xfd, 0x93, 0xec, 0x0b, 0x32, 0xf4, 0x88,
- 0x7d, 0x07, 0xe6, 0x73, 0x92, 0x64, 0x94, 0xf0, 0xcd, 0xa2, 0x2c, 0xde, 0xb8, 0x3b, 0x72, 0x4c,
- 0xf6, 0xb5, 0x94, 0x4d, 0x8b, 0x75, 0x94, 0x14, 0x66, 0xe2, 0x3a, 0x4a, 0x8a, 0xb3, 0xea, 0x48,
- 0x48, 0xf3, 0xe3, 0x57, 0x7c, 0xb0, 0xef, 0xb4, 0x56, 0x5d, 0xd2, 0x7b, 0x2c, 0x3f, 0x3f, 0x22,
- 0xf4, 0xe4, 0xb1, 0x64, 0xf1, 0x58, 0xfc, 0xdf, 0xfd, 0xf8, 0x84, 0xa8, 0x76, 0xbf, 0xd5, 0x9a,
- 0x11, 0xa4, 0xa7, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0xe5, 0x4f, 0xb9, 0xf5, 0x30, 0x2e, 0x00,
- 0x00,
+ // 3075 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x5b, 0x6f, 0xdc, 0xc6,
+ 0xf5, 0xf7, 0x4a, 0xab, 0xbd, 0x1c, 0xad, 0xed, 0xd5, 0x48, 0xb6, 0x56, 0xb4, 0xe4, 0x0b, 0xed,
+ 0x38, 0x8e, 0xe3, 0xc8, 0x89, 0xfd, 0x07, 0xfe, 0x69, 0x8b, 0xa2, 0xd0, 0xae, 0xae, 0xb6, 0x75,
+ 0x09, 0x25, 0x37, 0x88, 0x81, 0x80, 0xe1, 0x72, 0x67, 0xb5, 0xac, 0xb8, 0xe4, 0x7a, 0x38, 0x6b,
+ 0x59, 0x01, 0xfa, 0xd0, 0x02, 0x7d, 0x2b, 0x0a, 0x14, 0x28, 0x9a, 0x3e, 0xe6, 0xb9, 0x9f, 0xa0,
+ 0x0f, 0x2d, 0x8a, 0xbe, 0xf4, 0x3b, 0x04, 0xfd, 0x06, 0xfd, 0x08, 0x7d, 0x2a, 0xe6, 0x42, 0x0e,
+ 0xb9, 0x24, 0x37, 0x06, 0x76, 0x11, 0xf4, 0x8d, 0x73, 0x66, 0xe6, 0x9c, 0x33, 0x67, 0xce, 0x99,
+ 0x99, 0xf3, 0x3b, 0x84, 0x06, 0xc1, 0x03, 0x3f, 0x70, 0xa8, 0x4f, 0x2e, 0x3e, 0x0a, 0x30, 0x79,
+ 0xe3, 0xd8, 0x78, 0x7d, 0x40, 0x7c, 0xea, 0xa3, 0xd2, 0xa9, 0x43, 0x2d, 0xf7, 0x42, 0x03, 0xd7,
+ 0xf1, 0xa8, 0xa0, 0x69, 0xb5, 0xa0, 0x67, 0x11, 0xdc, 0x11, 0x2d, 0xfd, 0x18, 0x96, 0x8d, 0x68,
+ 0xf6, 0xd6, 0x5b, 0x27, 0xa0, 0x81, 0x81, 0x5f, 0x0f, 0x71, 0x40, 0xd1, 0xa7, 0x00, 0x8a, 0x71,
+ 0xa3, 0x70, 0xbb, 0xf0, 0x60, 0xfe, 0x09, 0x5a, 0x17, 0x1c, 0xd7, 0xd5, 0xa4, 0x66, 0xf1, 0x4f,
+ 0xff, 0x7c, 0x54, 0x30, 0x62, 0x63, 0xf5, 0x27, 0xd0, 0x48, 0x33, 0x0d, 0x06, 0xbe, 0x17, 0x60,
+ 0x74, 0x1d, 0x4a, 0x98, 0x53, 0x38, 0xc7, 0x8a, 0x21, 0x5b, 0xfa, 0x09, 0x9f, 0x63, 0xd9, 0x67,
+ 0x7b, 0x9e, 0x4d, 0x70, 0x1f, 0x7b, 0xd4, 0x72, 0x27, 0xd7, 0xe4, 0x06, 0xac, 0x64, 0x70, 0x15,
+ 0xaa, 0xe8, 0x04, 0x16, 0x44, 0xe7, 0xf6, 0xd0, 0x9d, 0x5c, 0x16, 0xba, 0x0b, 0x97, 0x6d, 0x82,
+ 0x2d, 0x8a, 0xcd, 0xb6, 0x43, 0xfb, 0xd6, 0xa0, 0x31, 0xc3, 0x17, 0x58, 0x13, 0xc4, 0x26, 0xa7,
+ 0xe9, 0x4b, 0x80, 0xe2, 0x32, 0xa5, 0x26, 0xfb, 0xb0, 0xb0, 0xef, 0x74, 0xde, 0x8a, 0x9e, 0xc9,
+ 0x57, 0xbd, 0x04, 0x28, 0xce, 0x4e, 0x0a, 0xf9, 0x6d, 0x01, 0xae, 0xed, 0x58, 0xa4, 0x6d, 0x9d,
+ 0xe2, 0x96, 0xef, 0xba, 0xd8, 0xa6, 0x3f, 0xcc, 0x9a, 0xd1, 0x12, 0xcc, 0x0d, 0xc8, 0xd0, 0xc3,
+ 0x8d, 0x59, 0xde, 0x29, 0x1a, 0x7a, 0x03, 0xae, 0x8f, 0x6a, 0x23, 0x15, 0x3d, 0x86, 0xe5, 0xcf,
+ 0x89, 0x43, 0x71, 0xcb, 0xef, 0xf7, 0x1d, 0xba, 0x43, 0xac, 0x41, 0x6f, 0x72, 0x9b, 0x68, 0xd0,
+ 0x48, 0x33, 0x95, 0x02, 0x9f, 0xc1, 0x95, 0x96, 0x8b, 0x2d, 0x6f, 0x38, 0x98, 0x5c, 0xce, 0x02,
+ 0x5c, 0x8d, 0x78, 0x49, 0xf6, 0x9f, 0xc1, 0x35, 0x35, 0xe5, 0xd8, 0xf9, 0x1a, 0x4f, 0x2e, 0xe5,
+ 0x11, 0x5c, 0x1f, 0x65, 0x29, 0xe3, 0x0b, 0x41, 0x31, 0x70, 0xbe, 0xc6, 0x9c, 0xdb, 0xac, 0xc1,
+ 0xbf, 0xf5, 0xd7, 0xb0, 0xb2, 0x31, 0x18, 0xb8, 0x17, 0x3b, 0x0e, 0xb5, 0x28, 0x25, 0x4e, 0x7b,
+ 0x48, 0xf1, 0xe4, 0x61, 0x8e, 0x34, 0xa8, 0x10, 0xfc, 0xc6, 0x09, 0x1c, 0xdf, 0xe3, 0xfb, 0x5e,
+ 0x33, 0xa2, 0xb6, 0xbe, 0x0a, 0x5a, 0x96, 0x48, 0x69, 0x91, 0xbf, 0xcf, 0x00, 0xda, 0xc6, 0xd4,
+ 0xee, 0x19, 0xb8, 0xef, 0xd3, 0xc9, 0xed, 0xc1, 0x4e, 0x15, 0xc2, 0x59, 0x71, 0x45, 0xaa, 0x86,
+ 0x6c, 0x31, 0xd7, 0xeb, 0xfa, 0xc4, 0x8e, 0x5c, 0x8f, 0x37, 0xd0, 0x32, 0x94, 0x3d, 0xdf, 0xa4,
+ 0xd6, 0x69, 0xd0, 0x28, 0x8a, 0x43, 0xc8, 0xf3, 0x4f, 0xac, 0xd3, 0x00, 0x35, 0xa0, 0x4c, 0x9d,
+ 0x3e, 0xf6, 0x87, 0xb4, 0x31, 0x77, 0xbb, 0xf0, 0x60, 0xce, 0x08, 0x9b, 0x6c, 0x4a, 0x10, 0xf4,
+ 0xcc, 0x33, 0x7c, 0xd1, 0x28, 0x09, 0x09, 0x41, 0xd0, 0x7b, 0x8e, 0x2f, 0xd0, 0x2d, 0x98, 0x3f,
+ 0xf3, 0xfc, 0x73, 0xcf, 0xec, 0xf9, 0xec, 0x50, 0x2b, 0xf3, 0x4e, 0xe0, 0xa4, 0x5d, 0x46, 0x41,
+ 0x2b, 0x50, 0xf1, 0x7c, 0x53, 0x04, 0x40, 0x95, 0x4b, 0x2b, 0x7b, 0xfe, 0x11, 0x6b, 0xa2, 0xa7,
+ 0x70, 0x59, 0xe8, 0x69, 0x0e, 0x2c, 0x62, 0xf5, 0x83, 0x06, 0xf0, 0x25, 0x5f, 0x51, 0x4b, 0xe6,
+ 0xd6, 0xa9, 0x89, 0x41, 0x47, 0x7c, 0xcc, 0xb3, 0x62, 0xa5, 0x52, 0xaf, 0xea, 0xd7, 0x60, 0x31,
+ 0x61, 0x40, 0x15, 0x3a, 0x2d, 0x1e, 0x7a, 0xca, 0x5a, 0x53, 0x09, 0x9d, 0x34, 0x53, 0x29, 0xf0,
+ 0xdf, 0x33, 0xb0, 0xb0, 0x83, 0xe9, 0x06, 0xb1, 0x7b, 0xce, 0x9b, 0x29, 0x6c, 0xe4, 0x0d, 0xa8,
+ 0xda, 0x3c, 0x42, 0x4d, 0xa7, 0x23, 0xf7, 0xb2, 0x22, 0x08, 0x7b, 0x1d, 0xb6, 0xcb, 0x03, 0x82,
+ 0xbb, 0xce, 0x5b, 0xbe, 0x9d, 0x55, 0x43, 0xb6, 0xd0, 0xa7, 0x50, 0xea, 0xfa, 0xa4, 0x6f, 0x51,
+ 0xbe, 0x9d, 0x57, 0x9e, 0xdc, 0x0e, 0x45, 0xa5, 0x34, 0x5b, 0xdf, 0xe6, 0xe3, 0x0c, 0x39, 0x9e,
+ 0x45, 0xcb, 0xc0, 0xa2, 0x3d, 0xbe, 0xdb, 0x35, 0x83, 0x7f, 0x33, 0x27, 0xc0, 0x6f, 0x6d, 0x77,
+ 0xd8, 0xc1, 0x8d, 0xd2, 0xed, 0xd9, 0x07, 0x35, 0x23, 0x6c, 0xa2, 0x35, 0x00, 0xec, 0x3a, 0x1d,
+ 0xb6, 0x5d, 0xb4, 0xc7, 0xb7, 0xba, 0x62, 0x54, 0x39, 0xe5, 0x88, 0x4d, 0x7c, 0x08, 0x0b, 0x8e,
+ 0xc7, 0x47, 0x9a, 0x6e, 0x37, 0x30, 0xdb, 0xae, 0xdf, 0x0e, 0x1a, 0x15, 0x3e, 0xea, 0xaa, 0xec,
+ 0x78, 0xd1, 0x0d, 0x9a, 0x8c, 0xac, 0x3f, 0x85, 0x92, 0x50, 0x05, 0x95, 0x61, 0xf6, 0xd5, 0xde,
+ 0x51, 0xfd, 0x12, 0xfb, 0x38, 0xd9, 0x30, 0xea, 0x05, 0x04, 0x50, 0x3a, 0xd9, 0x30, 0xcc, 0x9d,
+ 0x57, 0xf5, 0x19, 0x34, 0x0f, 0x65, 0xf6, 0xdd, 0x7c, 0xf5, 0xa4, 0x3e, 0xab, 0x3f, 0x00, 0x14,
+ 0x5f, 0x91, 0x8a, 0xf8, 0x8e, 0x45, 0x2d, 0x6e, 0xe6, 0x9a, 0xc1, 0xbf, 0x99, 0x1f, 0xec, 0x5a,
+ 0xc1, 0x0b, 0xdf, 0xb6, 0xdc, 0x26, 0xb1, 0x3c, 0xbb, 0x37, 0x85, 0x78, 0xd7, 0x3f, 0x86, 0x46,
+ 0x9a, 0xa9, 0x54, 0x62, 0x09, 0xe6, 0xde, 0x58, 0xee, 0x10, 0xcb, 0x5b, 0x5d, 0x34, 0xf4, 0xef,
+ 0x0a, 0xd0, 0xe0, 0x6e, 0x7a, 0xec, 0x0f, 0x89, 0x8d, 0xc5, 0xac, 0xc9, 0x9d, 0xe4, 0x67, 0xb0,
+ 0x10, 0x70, 0x86, 0x66, 0x8c, 0xc1, 0x4c, 0x1e, 0x03, 0xa3, 0x2e, 0x06, 0x1b, 0x89, 0x6b, 0x4b,
+ 0x32, 0x68, 0x73, 0x95, 0xb8, 0x3f, 0xd5, 0x8c, 0x5a, 0x10, 0x53, 0x93, 0xed, 0x36, 0xb5, 0xc8,
+ 0x29, 0xa6, 0x26, 0xc1, 0x5d, 0xee, 0x59, 0x35, 0xa3, 0x2a, 0x28, 0x06, 0xee, 0xea, 0x4f, 0x61,
+ 0x25, 0x63, 0x69, 0xea, 0x95, 0x43, 0x70, 0x30, 0x74, 0x69, 0xf8, 0xca, 0x11, 0x2d, 0x7d, 0x07,
+ 0xe6, 0xb7, 0x83, 0x69, 0x5c, 0xf1, 0xf7, 0xa0, 0x26, 0x18, 0x29, 0xfb, 0x63, 0x42, 0x7c, 0x22,
+ 0xbd, 0x40, 0x34, 0xf4, 0xbf, 0x14, 0xe0, 0x2a, 0xbf, 0xf5, 0x0c, 0xdc, 0x9d, 0xdc, 0xec, 0x75,
+ 0x98, 0x65, 0x96, 0x10, 0x47, 0x3d, 0xfb, 0x4c, 0xdc, 0x00, 0xb3, 0xc9, 0x1b, 0x00, 0xdd, 0x81,
+ 0x9a, 0xef, 0x76, 0xcc, 0xa8, 0x5f, 0x18, 0x70, 0xde, 0x77, 0x3b, 0x46, 0x38, 0x24, 0x3a, 0x9d,
+ 0xe7, 0x62, 0xa7, 0xf3, 0xb3, 0x62, 0xa5, 0x54, 0x2f, 0xeb, 0x0d, 0xa8, 0x2b, 0xcd, 0xc5, 0x22,
+ 0x9f, 0x15, 0x2b, 0x85, 0xfa, 0x8c, 0xee, 0xc1, 0xd2, 0xb6, 0xe3, 0x75, 0xf6, 0x31, 0x39, 0xc5,
+ 0x4d, 0x2b, 0x98, 0xc2, 0xa1, 0xb3, 0x0a, 0xd5, 0x50, 0xcd, 0xa0, 0x31, 0xc3, 0x63, 0x5e, 0x11,
+ 0xf4, 0x0f, 0xe1, 0xda, 0x88, 0x3c, 0x15, 0x78, 0x6d, 0x2b, 0x10, 0x2e, 0x5f, 0x35, 0xf8, 0xb7,
+ 0xfe, 0xd7, 0x02, 0x2c, 0x88, 0xc3, 0x72, 0xdb, 0x27, 0x67, 0xff, 0x03, 0xae, 0xfe, 0x08, 0x8a,
+ 0x03, 0xdf, 0x77, 0xf9, 0xf6, 0xc4, 0xe6, 0x1c, 0xb6, 0x7f, 0x81, 0x6d, 0x7a, 0xe4, 0xfb, 0x6e,
+ 0xb3, 0xf8, 0x2d, 0x13, 0xca, 0x47, 0xb1, 0x97, 0x63, 0x5c, 0xfb, 0xe8, 0xa1, 0xbc, 0xb2, 0x17,
+ 0x18, 0x98, 0x2d, 0x70, 0xcf, 0x3b, 0x22, 0xfe, 0x29, 0xc1, 0x41, 0x30, 0x95, 0xb3, 0x9e, 0x70,
+ 0xa6, 0xb1, 0xb3, 0x5e, 0x10, 0xf6, 0x3a, 0xfa, 0x4f, 0x41, 0xcb, 0x92, 0x29, 0x4d, 0x7f, 0x0b,
+ 0xe6, 0x1d, 0xcf, 0x1c, 0x48, 0xb2, 0x0c, 0x32, 0x70, 0xa2, 0x81, 0x42, 0xe5, 0xe3, 0xd7, 0x43,
+ 0x2b, 0xe8, 0x4d, 0x59, 0xe5, 0x80, 0x33, 0x8d, 0xa9, 0x2c, 0x08, 0xa1, 0xca, 0x69, 0x99, 0xef,
+ 0xaa, 0xb2, 0x0b, 0x37, 0x47, 0xaf, 0xd9, 0x6d, 0xe2, 0xf7, 0x5f, 0x1a, 0x2f, 0xa6, 0x12, 0xba,
+ 0x43, 0xe2, 0x4a, 0x8d, 0xd9, 0xa7, 0x7e, 0x07, 0x6e, 0xe5, 0x4a, 0x93, 0xdb, 0x7e, 0x08, 0x8b,
+ 0x62, 0x48, 0x73, 0xe8, 0x75, 0xdc, 0x29, 0xbc, 0x5a, 0x1f, 0xc2, 0x52, 0x92, 0xe1, 0x98, 0x1b,
+ 0xec, 0x77, 0x33, 0x50, 0x3f, 0xc6, 0xb4, 0xe5, 0x7b, 0x5d, 0xe7, 0x74, 0x72, 0x03, 0x7c, 0x0a,
+ 0x65, 0xec, 0x51, 0xe2, 0x60, 0x11, 0xe0, 0xf3, 0x4f, 0x6e, 0x86, 0xd3, 0x46, 0x85, 0xac, 0x6f,
+ 0x79, 0x94, 0x5c, 0x18, 0xe1, 0x70, 0xed, 0x37, 0x05, 0x98, 0xe3, 0x24, 0x66, 0x44, 0xf6, 0xfe,
+ 0x13, 0xe1, 0xce, 0x3e, 0xd1, 0x1a, 0x54, 0xf9, 0x45, 0x67, 0x06, 0x94, 0x08, 0xe3, 0xee, 0x5e,
+ 0x32, 0x2a, 0x9c, 0x74, 0x4c, 0x09, 0xba, 0x03, 0xf3, 0xa2, 0xdb, 0xf1, 0xe8, 0xd3, 0x27, 0x3c,
+ 0x04, 0xe7, 0x76, 0x2f, 0x19, 0xc0, 0x89, 0x7b, 0x8c, 0x86, 0x6e, 0x81, 0x68, 0x99, 0x6d, 0x16,
+ 0xa4, 0xfc, 0x35, 0xba, 0x7b, 0xc9, 0x10, 0x5c, 0x9b, 0x2c, 0x3a, 0xcb, 0xf2, 0x62, 0xd5, 0x17,
+ 0x61, 0x21, 0xa6, 0xaa, 0xdc, 0x22, 0x1b, 0x16, 0x37, 0xb1, 0x8b, 0x59, 0x5a, 0x33, 0x1d, 0x3b,
+ 0x21, 0x28, 0x9e, 0xe1, 0x0b, 0x61, 0xa4, 0xaa, 0xc1, 0xbf, 0xf5, 0xeb, 0xb0, 0x94, 0x14, 0x22,
+ 0x85, 0x3b, 0x2c, 0xb9, 0x0e, 0xa8, 0x4f, 0x70, 0x6b, 0x18, 0x50, 0xbf, 0xbf, 0xeb, 0xfb, 0x67,
+ 0xc1, 0x54, 0x54, 0xe0, 0xde, 0x30, 0x13, 0xf3, 0x86, 0x55, 0xd0, 0xb2, 0x44, 0x49, 0x45, 0x4e,
+ 0xa0, 0xd1, 0xb4, 0xec, 0xb3, 0xe1, 0x60, 0x9a, 0x7a, 0xe8, 0x8f, 0x61, 0x25, 0x83, 0xeb, 0x18,
+ 0x97, 0x7d, 0x0d, 0x77, 0xb2, 0x42, 0x6a, 0x4a, 0xd1, 0x93, 0x69, 0x97, 0x7b, 0xa0, 0x8f, 0x13,
+ 0x29, 0xed, 0x73, 0x00, 0x88, 0xdd, 0x60, 0x2f, 0x1c, 0x1b, 0x7b, 0x53, 0xb8, 0x2f, 0xf5, 0x16,
+ 0x2c, 0x26, 0xf8, 0x49, 0x9b, 0x3c, 0x02, 0xe4, 0x0a, 0x92, 0x19, 0xf4, 0x7c, 0x42, 0x4d, 0xcf,
+ 0xea, 0x87, 0xb7, 0x63, 0x5d, 0xf6, 0x1c, 0xb3, 0x8e, 0x03, 0xab, 0xcf, 0x37, 0x6d, 0x07, 0xd3,
+ 0x3d, 0xaf, 0xeb, 0x6f, 0x4c, 0x2f, 0x27, 0xd5, 0x7f, 0x02, 0x2b, 0x19, 0x5c, 0xa5, 0x82, 0x37,
+ 0x01, 0x54, 0x32, 0x2a, 0xb7, 0x2e, 0x46, 0x61, 0x2a, 0xb5, 0x2c, 0xd7, 0x1e, 0xba, 0x16, 0xc5,
+ 0xad, 0x1e, 0xb6, 0xcf, 0x82, 0x61, 0x7f, 0x72, 0x95, 0xfe, 0x1f, 0x56, 0x32, 0xb8, 0x4a, 0x95,
+ 0x34, 0xa8, 0xd8, 0x92, 0x26, 0x2d, 0x15, 0xb5, 0xd9, 0xb6, 0xed, 0x60, 0x7a, 0xec, 0x59, 0x83,
+ 0xa0, 0xe7, 0x4f, 0x0e, 0xd6, 0xe8, 0x1f, 0xc0, 0x62, 0x82, 0xdf, 0x18, 0x57, 0xfe, 0xa6, 0x00,
+ 0x77, 0xb3, 0x1c, 0x6b, 0x6a, 0xca, 0xb0, 0xb4, 0xb8, 0x47, 0xe9, 0xc0, 0x54, 0xd7, 0x52, 0x99,
+ 0xb5, 0x5f, 0x12, 0x97, 0x5d, 0xb2, 0xbc, 0xcb, 0x1a, 0xd2, 0x9e, 0xcc, 0xf4, 0xf8, 0xd8, 0x8d,
+ 0x21, 0xed, 0xe9, 0xf7, 0xe1, 0xde, 0x78, 0xc5, 0xa4, 0xcf, 0xff, 0xb1, 0x00, 0x4b, 0x3b, 0x98,
+ 0x1a, 0xd6, 0x79, 0xab, 0x67, 0x79, 0xa7, 0xd3, 0xc0, 0x3b, 0xee, 0xc2, 0xe5, 0x2e, 0xf1, 0xfb,
+ 0x66, 0x02, 0xf4, 0xa8, 0x1a, 0x35, 0x46, 0x8c, 0xde, 0xb4, 0xb7, 0x60, 0x9e, 0xfa, 0x66, 0xe2,
+ 0x55, 0x5c, 0x35, 0x80, 0xfa, 0xe1, 0x00, 0xfd, 0x6f, 0x45, 0xb8, 0x36, 0xa2, 0x98, 0xdc, 0x88,
+ 0x5d, 0x98, 0x27, 0xd6, 0xb9, 0x69, 0x0b, 0x72, 0xa3, 0xc0, 0xef, 0xa9, 0xf7, 0x63, 0xb9, 0x6c,
+ 0x7a, 0xce, 0x7a, 0x44, 0x32, 0x80, 0x44, 0xbd, 0xda, 0x77, 0xb3, 0x50, 0x8d, 0x7a, 0xd0, 0x32,
+ 0x94, 0x59, 0x2e, 0xca, 0x9e, 0x2c, 0xc2, 0xc5, 0x4a, 0xac, 0xb9, 0xd7, 0x89, 0xb0, 0xa2, 0x19,
+ 0x85, 0x15, 0xa1, 0x35, 0xa8, 0x78, 0xf8, 0x5c, 0x64, 0xb8, 0x5c, 0xf9, 0xe6, 0x4c, 0xa3, 0x60,
+ 0x94, 0x3d, 0x7c, 0xce, 0x73, 0xdc, 0x35, 0xa8, 0xb0, 0x57, 0x3d, 0xef, 0x2e, 0xaa, 0x6e, 0xdf,
+ 0xed, 0xf0, 0xee, 0x43, 0xa8, 0xfa, 0x03, 0x4c, 0x2c, 0xca, 0xd6, 0x3e, 0xc7, 0x93, 0xf1, 0x4f,
+ 0xde, 0x71, 0x01, 0xeb, 0x87, 0xe1, 0x44, 0x43, 0xf1, 0x60, 0x36, 0x67, 0x36, 0x51, 0x4c, 0x05,
+ 0xfa, 0x52, 0x23, 0xd6, 0x79, 0x34, 0x9e, 0xf9, 0x12, 0x53, 0xaa, 0xef, 0x77, 0x30, 0xcf, 0xca,
+ 0xe7, 0xb8, 0x42, 0xfb, 0x7e, 0x07, 0x73, 0xf4, 0x05, 0x9f, 0x8b, 0xae, 0x8a, 0xe8, 0xf2, 0xf0,
+ 0x39, 0xef, 0xba, 0x07, 0x57, 0xc2, 0x95, 0x9a, 0xed, 0x0b, 0x76, 0x22, 0x54, 0x45, 0x16, 0x28,
+ 0xd7, 0xda, 0x64, 0x34, 0x36, 0x2a, 0x5c, 0xb0, 0x1c, 0x05, 0x62, 0x94, 0x5c, 0x32, 0x1f, 0xa5,
+ 0x3b, 0x50, 0x55, 0xea, 0xcc, 0x43, 0xf9, 0xe5, 0xc1, 0xf3, 0x83, 0xc3, 0xcf, 0x0f, 0xea, 0x97,
+ 0x50, 0x15, 0xe6, 0x36, 0x36, 0x37, 0xb7, 0x36, 0x45, 0x5e, 0xdf, 0x3a, 0x3c, 0xda, 0xdb, 0xda,
+ 0x14, 0x79, 0xfd, 0xe6, 0xd6, 0x8b, 0xad, 0x93, 0xad, 0xcd, 0xfa, 0x2c, 0xaa, 0x41, 0x65, 0xff,
+ 0x70, 0x73, 0x6f, 0x9b, 0x75, 0x15, 0x59, 0x97, 0xb1, 0x75, 0xb0, 0xb1, 0xbf, 0xb5, 0x59, 0x9f,
+ 0x43, 0x75, 0xa8, 0x9d, 0x7c, 0x71, 0xb4, 0x65, 0xb6, 0x76, 0x37, 0x0e, 0x76, 0xb6, 0x36, 0xeb,
+ 0x25, 0xfd, 0x0f, 0x05, 0x68, 0x1c, 0x63, 0x8b, 0xd8, 0xbd, 0x6d, 0xc7, 0xc5, 0x41, 0xf3, 0x82,
+ 0x9d, 0xa6, 0x93, 0x3b, 0xf7, 0x12, 0xcc, 0xbd, 0x1e, 0x62, 0x99, 0x5c, 0x54, 0x0d, 0xd1, 0x08,
+ 0x53, 0xbe, 0x59, 0x95, 0xf2, 0x5d, 0x87, 0x52, 0xd7, 0x71, 0x29, 0x26, 0x62, 0xfb, 0x0d, 0xd9,
+ 0xd2, 0x3f, 0x81, 0x95, 0x0c, 0xad, 0x54, 0x76, 0xda, 0x65, 0x64, 0xee, 0xd3, 0x35, 0x43, 0x34,
+ 0xf4, 0x3f, 0x17, 0xe0, 0x46, 0x62, 0x4e, 0xcb, 0xf7, 0x28, 0xf6, 0xe8, 0x0f, 0xb7, 0x98, 0x0f,
+ 0xa0, 0x6e, 0xf7, 0x86, 0xde, 0x19, 0x66, 0x79, 0xaa, 0xd0, 0x55, 0x22, 0x82, 0x57, 0x25, 0x3d,
+ 0x3a, 0x4f, 0x2e, 0x60, 0x35, 0x5b, 0x57, 0xb9, 0xc4, 0x06, 0x94, 0xfb, 0x16, 0xb5, 0x7b, 0xd1,
+ 0x22, 0xc3, 0x26, 0x5a, 0x03, 0xe0, 0x9f, 0x66, 0xec, 0xf6, 0xae, 0x72, 0xca, 0xa6, 0x45, 0x2d,
+ 0x74, 0x1b, 0x6a, 0xd8, 0xeb, 0x98, 0x7e, 0xd7, 0xe4, 0x34, 0x89, 0x54, 0x02, 0xf6, 0x3a, 0x87,
+ 0xdd, 0x7d, 0x46, 0xd1, 0x7f, 0x5f, 0x80, 0x92, 0xc0, 0xf9, 0xc2, 0x77, 0x7c, 0x21, 0x7a, 0xc7,
+ 0xb3, 0x18, 0xe6, 0xd7, 0xac, 0x58, 0x29, 0xff, 0x46, 0x3f, 0x86, 0x95, 0xe8, 0x00, 0xf5, 0x89,
+ 0xf3, 0x35, 0x77, 0x4b, 0xb3, 0x87, 0xad, 0x0e, 0x26, 0xf2, 0x44, 0x5a, 0x0e, 0x0f, 0xd4, 0xa8,
+ 0x7f, 0x97, 0x77, 0xa3, 0xf7, 0xe0, 0x4a, 0xdf, 0x21, 0xc4, 0x27, 0x26, 0xc1, 0xdd, 0xbe, 0x35,
+ 0x08, 0x1a, 0x45, 0xfe, 0x14, 0xbc, 0x2c, 0xa8, 0x86, 0x20, 0xea, 0x5f, 0xc0, 0xda, 0x0e, 0xa6,
+ 0x22, 0x8b, 0xdc, 0x74, 0x08, 0xb6, 0xa7, 0x87, 0x6d, 0xff, 0x1f, 0xdc, 0xcc, 0x63, 0x3d, 0x06,
+ 0xe3, 0xfe, 0xb6, 0x00, 0x4b, 0x2d, 0xd7, 0xf7, 0x30, 0xbb, 0x0d, 0x58, 0x5e, 0x3b, 0xb9, 0x17,
+ 0xdd, 0x97, 0xa9, 0xf3, 0x4c, 0x5e, 0xea, 0x2c, 0x92, 0x66, 0x74, 0x3f, 0x02, 0x9f, 0x67, 0x33,
+ 0xf1, 0x5b, 0xd9, 0xab, 0x2f, 0xc3, 0xb5, 0x11, 0x0d, 0xa5, 0x6f, 0xfd, 0xa3, 0x00, 0xab, 0x89,
+ 0x9e, 0x3d, 0x8f, 0x62, 0xe2, 0x59, 0x3f, 0xe0, 0x1a, 0x32, 0x71, 0x86, 0xd9, 0x77, 0xc7, 0x19,
+ 0xf4, 0x5b, 0xb0, 0x96, 0xb3, 0x04, 0x05, 0x4d, 0x33, 0x7b, 0xbc, 0x99, 0x36, 0x34, 0x9d, 0x66,
+ 0x2a, 0x05, 0xbe, 0x65, 0x02, 0x3d, 0x7e, 0x0c, 0x4d, 0x4d, 0x20, 0xbf, 0x8f, 0xb0, 0x6b, 0x51,
+ 0xe7, 0x8d, 0x44, 0x81, 0xe5, 0x1b, 0x20, 0x24, 0xb2, 0x2b, 0x41, 0x68, 0x35, 0x2a, 0x59, 0x6a,
+ 0xf5, 0xeb, 0x02, 0x4b, 0x65, 0x06, 0xae, 0x63, 0x4f, 0x17, 0xa5, 0x47, 0x0f, 0xa1, 0x24, 0x36,
+ 0x65, 0x0c, 0x3c, 0x24, 0x47, 0xe8, 0x6b, 0x70, 0x23, 0x53, 0x07, 0xa9, 0xe3, 0x4b, 0x58, 0x39,
+ 0x1c, 0x50, 0xa7, 0xcf, 0x63, 0x6e, 0x7a, 0x9b, 0xb5, 0x0a, 0x5a, 0x16, 0x5b, 0x21, 0xf4, 0xc9,
+ 0xbf, 0x6e, 0xf2, 0x72, 0x6c, 0x58, 0xd3, 0x12, 0x75, 0x6c, 0xf4, 0x25, 0xd4, 0x47, 0x4b, 0xc9,
+ 0xe8, 0x56, 0x5a, 0x5a, 0xa2, 0x72, 0xad, 0xdd, 0xce, 0x1f, 0x20, 0x57, 0x58, 0xfa, 0xcf, 0x37,
+ 0x0f, 0x66, 0x2a, 0x33, 0xe8, 0xab, 0xb0, 0x04, 0x1c, 0xab, 0x0f, 0xa3, 0xf8, 0xf4, 0xcc, 0x82,
+ 0xb4, 0x76, 0x67, 0xcc, 0x88, 0x84, 0x84, 0x02, 0x7a, 0x0e, 0xa0, 0x0a, 0xbe, 0x68, 0x25, 0x39,
+ 0x31, 0x56, 0x78, 0xd6, 0xb4, 0xac, 0xae, 0x34, 0x33, 0x55, 0xd8, 0x55, 0xcc, 0x52, 0xb5, 0x63,
+ 0xc5, 0x2c, 0xa3, 0x0e, 0x1c, 0x32, 0xfb, 0x1c, 0xae, 0x24, 0x0b, 0xb0, 0x68, 0x2d, 0x7a, 0xaa,
+ 0x65, 0x95, 0x89, 0xb5, 0x9b, 0x79, 0xdd, 0x23, 0x8c, 0xbf, 0x94, 0xd0, 0x6d, 0xac, 0xd4, 0xaa,
+ 0xf6, 0x2c, 0xa7, 0xb2, 0xab, 0xf6, 0x2c, 0xb7, 0x4a, 0x1b, 0xd3, 0x3b, 0x59, 0xfb, 0x54, 0x7a,
+ 0x67, 0x96, 0x59, 0x95, 0xde, 0xd9, 0x25, 0xd3, 0xc8, 0x19, 0x6c, 0x40, 0xe9, 0x9a, 0x25, 0x8a,
+ 0xf6, 0x3a, 0xb7, 0x84, 0xaa, 0xe9, 0xe3, 0x86, 0x8c, 0x68, 0x7f, 0x00, 0xf3, 0xb1, 0xc2, 0x1d,
+ 0x8a, 0x36, 0x2a, 0x5d, 0x0e, 0xd5, 0x6e, 0x64, 0xf6, 0xa5, 0x8d, 0x3d, 0x9a, 0x0f, 0x29, 0x63,
+ 0xe7, 0xd4, 0x02, 0x95, 0xb1, 0x73, 0xeb, 0x7a, 0x21, 0xfb, 0x7d, 0x00, 0x55, 0x72, 0x52, 0x1e,
+ 0x97, 0x2a, 0xac, 0x29, 0x8f, 0x4b, 0x57, 0xa8, 0x42, 0x03, 0x7f, 0xcc, 0xb5, 0x1d, 0x2d, 0x21,
+ 0x29, 0x6d, 0x73, 0x2a, 0x56, 0x4a, 0xdb, 0xbc, 0xea, 0x53, 0x3c, 0x9c, 0x53, 0x35, 0x19, 0x15,
+ 0xce, 0x79, 0x95, 0x28, 0x15, 0xce, 0xb9, 0x05, 0x9d, 0xc8, 0x1e, 0x3f, 0x82, 0xe2, 0x76, 0x60,
+ 0x9f, 0xa1, 0xc5, 0x68, 0x8a, 0x2a, 0xe7, 0x68, 0x4b, 0x49, 0xe2, 0xc8, 0xd4, 0x2d, 0xa8, 0x84,
+ 0x15, 0x0d, 0xb4, 0x9c, 0xf0, 0x76, 0x55, 0x9d, 0xd1, 0x1a, 0xe9, 0x8e, 0x11, 0x36, 0x27, 0x70,
+ 0x39, 0x51, 0x8e, 0x40, 0xab, 0x91, 0xd4, 0x8c, 0xaa, 0x88, 0xb6, 0x96, 0xd3, 0x3b, 0x62, 0xb9,
+ 0xe7, 0x00, 0x0a, 0xf8, 0x57, 0xfb, 0x9c, 0x2a, 0x65, 0xa8, 0x7d, 0xce, 0xa8, 0x13, 0x84, 0x2a,
+ 0xda, 0x80, 0xd2, 0xd8, 0xbd, 0x0a, 0xa4, 0xdc, 0x5a, 0x82, 0x0a, 0xa4, 0x7c, 0xe8, 0x3f, 0x1e,
+ 0xad, 0x69, 0xb4, 0x3d, 0x2e, 0x24, 0x07, 0xfd, 0x8f, 0x0b, 0xc9, 0x03, 0xeb, 0x23, 0x21, 0x24,
+ 0x5d, 0x4f, 0x97, 0x28, 0x39, 0xba, 0x9f, 0x17, 0x43, 0x49, 0xd0, 0x5e, 0x7b, 0xff, 0x7b, 0xc7,
+ 0x8d, 0x58, 0xef, 0x18, 0x6a, 0x71, 0x94, 0x1c, 0xdd, 0x48, 0x32, 0x48, 0xc0, 0x89, 0xda, 0x6a,
+ 0x76, 0x67, 0x2a, 0xf0, 0x7e, 0x09, 0x5a, 0x3e, 0x50, 0x88, 0x3e, 0x18, 0xa7, 0x63, 0x52, 0xe0,
+ 0xc3, 0x77, 0x19, 0x9a, 0x5c, 0xd1, 0x83, 0x02, 0xda, 0x85, 0x6a, 0x04, 0x5e, 0xa3, 0x46, 0x1e,
+ 0xf4, 0xae, 0xad, 0x64, 0xf4, 0x8c, 0x58, 0xe7, 0x33, 0xa8, 0xc5, 0xc1, 0x68, 0x65, 0x9d, 0x0c,
+ 0x1c, 0x5c, 0x59, 0x27, 0x13, 0xbf, 0x8e, 0x1f, 0xc9, 0x0a, 0xce, 0x8c, 0x1d, 0xc9, 0x29, 0xcc,
+ 0x34, 0x76, 0x24, 0xa7, 0xf1, 0xcf, 0xc8, 0x69, 0xda, 0xfc, 0x97, 0x88, 0x24, 0x06, 0x89, 0xe2,
+ 0xff, 0x24, 0x64, 0x82, 0x9e, 0xea, 0x14, 0xca, 0x05, 0x30, 0x63, 0xfb, 0xf9, 0x15, 0x2c, 0xa4,
+ 0x40, 0x45, 0x25, 0x23, 0x0f, 0xc5, 0x54, 0x32, 0x72, 0x11, 0xc9, 0x68, 0x15, 0x4d, 0x28, 0xcb,
+ 0x1f, 0x99, 0xd0, 0xf5, 0x68, 0x56, 0xe2, 0x2f, 0x29, 0x6d, 0x39, 0x45, 0x1f, 0xb1, 0xec, 0x11,
+ 0xcc, 0xc7, 0x10, 0x47, 0x14, 0xbf, 0x23, 0x46, 0x90, 0x44, 0x65, 0xd9, 0x0c, 0x88, 0x32, 0xb6,
+ 0xee, 0x5f, 0xb1, 0x54, 0x69, 0x0c, 0xfe, 0x87, 0x3e, 0x1c, 0xe7, 0x9f, 0xa3, 0x42, 0x1f, 0xbd,
+ 0xdb, 0xe0, 0x91, 0x55, 0xfd, 0x1c, 0x2e, 0x27, 0xb0, 0x2c, 0x75, 0x02, 0x67, 0x01, 0x8e, 0xea,
+ 0x04, 0xce, 0x04, 0xc0, 0x62, 0x6b, 0x3b, 0x83, 0xa5, 0x2c, 0x88, 0x01, 0xdd, 0x55, 0x51, 0x91,
+ 0x0b, 0x96, 0x68, 0xf7, 0xc6, 0x0f, 0x4a, 0x09, 0x6b, 0xc3, 0x42, 0x0a, 0xaf, 0x51, 0x0e, 0x94,
+ 0x07, 0x30, 0x29, 0x07, 0xca, 0x05, 0x7b, 0x62, 0x32, 0x30, 0xa0, 0x74, 0xd5, 0x06, 0xc5, 0x1e,
+ 0xcf, 0x39, 0xc5, 0x23, 0x75, 0x44, 0x8f, 0x29, 0xfa, 0xa8, 0xc3, 0xa5, 0x0d, 0x0b, 0xa9, 0x42,
+ 0x8d, 0x5a, 0x4a, 0x5e, 0x65, 0x48, 0x2d, 0x25, 0xb7, 0xca, 0x13, 0x5b, 0x8a, 0x0f, 0xd7, 0xb3,
+ 0x41, 0x09, 0xf4, 0x5e, 0x6c, 0x7b, 0xf3, 0xf1, 0x10, 0xed, 0xfe, 0xf7, 0x0d, 0x1b, 0x09, 0xbf,
+ 0x13, 0xb8, 0x9c, 0xc8, 0xa7, 0x95, 0x93, 0x65, 0xa1, 0x1c, 0xca, 0xc9, 0xb2, 0x11, 0x86, 0xd0,
+ 0x75, 0xdd, 0x11, 0x08, 0x22, 0xcc, 0xd2, 0xd1, 0xbd, 0xcc, 0xf9, 0x23, 0x38, 0x84, 0xf6, 0xde,
+ 0xf7, 0x8c, 0x4a, 0xbf, 0x4d, 0x47, 0xb3, 0xf3, 0x78, 0xf2, 0x96, 0x09, 0x06, 0xc4, 0x93, 0xb7,
+ 0x9c, 0xc4, 0x3e, 0xc1, 0x3e, 0x99, 0x66, 0xc7, 0xd9, 0x67, 0xa6, 0xfe, 0x71, 0xf6, 0x39, 0x19,
+ 0x7a, 0xc8, 0xbe, 0x0b, 0x8b, 0x19, 0x49, 0x32, 0x8a, 0xf9, 0x66, 0x5e, 0x16, 0xaf, 0xdd, 0x1d,
+ 0x3b, 0x26, 0xfd, 0x5a, 0x4a, 0xa7, 0xc5, 0x2a, 0x4a, 0x72, 0x33, 0x71, 0x15, 0x25, 0xf9, 0x59,
+ 0x75, 0x28, 0xa4, 0xf9, 0xf1, 0x2b, 0x36, 0xd8, 0xb5, 0xda, 0xeb, 0xb6, 0xdf, 0x7f, 0x2c, 0x3e,
+ 0x3f, 0xf2, 0xc9, 0xe9, 0x63, 0xc1, 0xe2, 0x31, 0xff, 0x1b, 0xfc, 0xf1, 0xa9, 0x2f, 0xdb, 0x83,
+ 0x76, 0xbb, 0xc4, 0x49, 0x4f, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x75, 0x86, 0x42, 0x1a, 0x5e,
+ 0x2e, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/proto/repository-service.proto b/proto/repository-service.proto
index 24c3ea7fa..4650a79dc 100644
--- a/proto/repository-service.proto
+++ b/proto/repository-service.proto
@@ -397,6 +397,10 @@ message FindMergeBaseResponse {
message CreateForkRequest {
Repository repository = 1 [(target_repository)=true];
Repository source_repository = 2;
+ // Clone using an object pool to reduce object duplication.
+ // This pool repository must reside on the same storage shard
+ // as the target repository.
+ ObjectPool pool = 3 [(additional_repository)=true];
}
message CreateForkResponse {}
diff --git a/ruby/proto/gitaly/repository-service_pb.rb b/ruby/proto/gitaly/repository-service_pb.rb
index c73dd9516..811c40bf5 100644
--- a/ruby/proto/gitaly/repository-service_pb.rb
+++ b/ruby/proto/gitaly/repository-service_pb.rb
@@ -135,6 +135,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
add_message "gitaly.CreateForkRequest" do
optional :repository, :message, 1, "gitaly.Repository"
optional :source_repository, :message, 2, "gitaly.Repository"
+ optional :pool, :message, 3, "gitaly.ObjectPool"
end
add_message "gitaly.CreateForkResponse" do
end