From 8dbe97c1ca142f51d149ca973d05812ca1038324 Mon Sep 17 00:00:00 2001 From: Ahsan Barkati Date: Tue, 11 May 2021 16:22:56 +0530 Subject: [PATCH] fix(restore): Bump uid and namespace after restore (#7790) (#7800) Bump UID and namespace ID after reducephase in restore. To do this bump we introduce an option to bump to a particular ID in zero. (cherry picked from commit 99f4ca3eead14e229c390f86de5849d9ff30d78f) --- dgraph/cmd/zero/assign.go | 23 +- dgraph/cmd/zero/zero_test.go | 39 ++ ee/backup/run.go | 2 +- protos/pb.proto | 3 + protos/pb/pb.pb.go | 722 +++++++++++++++++++---------------- worker/online_restore.go | 40 +- worker/restore_map.go | 71 +++- 7 files changed, 540 insertions(+), 360 deletions(-) diff --git a/dgraph/cmd/zero/assign.go b/dgraph/cmd/zero/assign.go index 70ee00bcd15..e2085754169 100644 --- a/dgraph/cmd/zero/assign.go +++ b/dgraph/cmd/zero/assign.go @@ -175,7 +175,9 @@ func (s *Server) lease(ctx context.Context, num *pb.Num) (*pb.AssignedIds, error } // AssignIds is used to assign new ids (UIDs, NsIDs) by communicating with the leader of the -// RAFT group responsible for handing out ids. +// RAFT group responsible for handing out ids. If bump is set to true in the request then the +// lease for the given id type is bumped to num.Val and {startId, endId} of the newly leased ids +// in the process of bump is returned. func (s *Server) AssignIds(ctx context.Context, num *pb.Num) (*pb.AssignedIds, error) { if ctx.Err() != nil { return &emptyAssignedIds, ctx.Err() @@ -246,6 +248,25 @@ func (s *Server) AssignIds(ctx context.Context, num *pb.Num) (*pb.AssignedIds, e return err } + // If this is a bump request and the current node is the leader then we create a normal lease + // request based on the number of required ids to reach the asked bump value. If the current + // node is not the leader then the bump request will be forwarded to the leader by lease(). + if num.GetBump() && s.Node.AmLeader() { + s.leaseLock.Lock() + cur := s.nextLease[num.GetType()] - 1 + s.leaseLock.Unlock() + + // We need to lease more UIDs if bump request is more than current max lease. + req := num.GetVal() + if cur >= req { + return &emptyAssignedIds, errors.Errorf("Nothing to be leased") + } + num.Val = req - cur + + // Set bump to false because we want to lease the required ids in the following request. + num.Bump = false + } + c := make(chan error, 1) go func() { c <- lease() diff --git a/dgraph/cmd/zero/zero_test.go b/dgraph/cmd/zero/zero_test.go index d4f6e568101..71887862f16 100644 --- a/dgraph/cmd/zero/zero_test.go +++ b/dgraph/cmd/zero/zero_test.go @@ -24,6 +24,7 @@ import ( "github.com/dgraph-io/dgraph/protos/pb" "github.com/dgraph-io/dgraph/testutil" "github.com/stretchr/testify/require" + "google.golang.org/grpc" ) func TestRemoveNode(t *testing.T) { @@ -44,3 +45,41 @@ func TestIdLeaseOverflow(t *testing.T) { require.Error(t, err) require.Contains(t, err.Error(), "limit has reached") } + +func TestIdBump(t *testing.T) { + dialOpts := []grpc.DialOption{ + grpc.WithBlock(), + grpc.WithInsecure(), + } + ctx := context.Background() + con, err := grpc.DialContext(ctx, testutil.SockAddrZero, dialOpts...) + require.NoError(t, err) + + zc := pb.NewZeroClient(con) + + res, err := zc.AssignIds(ctx, &pb.Num{Val: 10, Type: pb.Num_UID}) + require.NoError(t, err) + require.Equal(t, uint64(10), res.GetEndId()-res.GetStartId()+1) + + // Next assignemnt's startId should be greater than 10. + res, err = zc.AssignIds(ctx, &pb.Num{Val: 50, Type: pb.Num_UID}) + require.NoError(t, err) + require.Greater(t, res.GetStartId(), uint64(10)) + require.Equal(t, uint64(50), res.GetEndId()-res.GetStartId()+1) + + bumpTo := res.GetEndId() + 100000 + + // Bump the lease to (last result + 100000). + res, err = zc.AssignIds(ctx, &pb.Num{Val: bumpTo, Type: pb.Num_UID, Bump: true}) + require.NoError(t, err) + + // Next assignemnt's startId should be greater than bumpTo. + res, err = zc.AssignIds(ctx, &pb.Num{Val: 10, Type: pb.Num_UID}) + require.NoError(t, err) + require.Greater(t, res.GetStartId(), bumpTo) + require.Equal(t, uint64(10), res.GetEndId()-res.GetStartId()+1) + + // If bump request is less than maxLease, then it should result in no-op. + res, err = zc.AssignIds(ctx, &pb.Num{Val: 10, Type: pb.Num_UID, Bump: true}) + require.Contains(t, err.Error(), "Nothing to be leased") +} diff --git a/ee/backup/run.go b/ee/backup/run.go index 34360569b16..5b5c1a54902 100644 --- a/ee/backup/run.go +++ b/ee/backup/run.go @@ -266,7 +266,7 @@ func runExportBackup() error { EncryptionKeyFile: ExportBackup.Conf.GetString("encryption_key_file"), RestoreTs: 1, } - if err := worker.RunMapper(req, mapDir); err != nil { + if _, err := worker.RunMapper(req, mapDir); err != nil { return errors.Wrap(err, "Failed to map the backups") } in := &pb.ExportRequest{ diff --git a/protos/pb.proto b/protos/pb.proto index b41b49ea72a..c537b3e0131 100644 --- a/protos/pb.proto +++ b/protos/pb.proto @@ -618,6 +618,9 @@ message Num { uint64 val = 1; bool read_only = 2; bool forwarded = 3; // True if this request was forwarded by a peer. + // If bump is set to true then we bump the lease to val. If false, we assign new ids with count + // equal to val. + bool bump = 5; enum leaseType { NS_ID = 0; UID = 1; diff --git a/protos/pb/pb.pb.go b/protos/pb/pb.pb.go index e4a7811a9bd..bcf90dbbe1f 100644 --- a/protos/pb/pb.pb.go +++ b/protos/pb/pb.pb.go @@ -4297,10 +4297,13 @@ func (m *SubscriptionResponse) GetKvs() *pb.KVList { } type Num struct { - Val uint64 `protobuf:"varint,1,opt,name=val,proto3" json:"val,omitempty"` - ReadOnly bool `protobuf:"varint,2,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"` - Forwarded bool `protobuf:"varint,3,opt,name=forwarded,proto3" json:"forwarded,omitempty"` - Type NumLeaseType `protobuf:"varint,4,opt,name=type,proto3,enum=pb.NumLeaseType" json:"type,omitempty"` + Val uint64 `protobuf:"varint,1,opt,name=val,proto3" json:"val,omitempty"` + ReadOnly bool `protobuf:"varint,2,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"` + Forwarded bool `protobuf:"varint,3,opt,name=forwarded,proto3" json:"forwarded,omitempty"` + // If bump is set to true then we bump the lease to val. If false, we assign new ids with count + // equal to val. + Bump bool `protobuf:"varint,5,opt,name=bump,proto3" json:"bump,omitempty"` + Type NumLeaseType `protobuf:"varint,4,opt,name=type,proto3,enum=pb.NumLeaseType" json:"type,omitempty"` } func (m *Num) Reset() { *m = Num{} } @@ -4357,6 +4360,13 @@ func (m *Num) GetForwarded() bool { return false } +func (m *Num) GetBump() bool { + if m != nil { + return m.Bump + } + return false +} + func (m *Num) GetType() NumLeaseType { if m != nil { return m.Type @@ -5675,346 +5685,347 @@ func init() { func init() { proto.RegisterFile("pb.proto", fileDescriptor_f80abaa17e25ccc8) } var fileDescriptor_f80abaa17e25ccc8 = []byte{ - // 5418 bytes of a gzipped FileDescriptorProto + // 5426 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x3b, 0x4b, 0x8f, 0x1c, 0x69, 0x52, 0x5d, 0xef, 0xca, 0xa8, 0x87, 0xab, 0x3f, 0x7b, 0x3c, 0xb5, 0xe5, 0x19, 0xdb, 0x93, 0x1e, 0xcf, 0xf4, 0xd8, 0xe3, 0xb6, 0xdd, 0xde, 0x85, 0x9d, 0x59, 0xad, 0x44, 0x3f, 0xaa, 0x3d, 0x3d, 0x6e, 0x77, 0x7b, 0xb3, 0xcb, 0xde, 0x87, 0x04, 0xa5, 0xec, 0xcc, 0xaf, 0xbb, 0x73, 0x3b, 0x2b, 0x33, 0x37, 0x33, 0xab, 0xb7, 0x7b, 0x6e, 0x08, 0x89, 0xbd, 0x70, 0x58, 0x89, 0x0b, 0x27, 0x0e, - 0x1c, 0xb8, 0xc0, 0x05, 0x04, 0x82, 0x0b, 0x37, 0x84, 0x10, 0xa7, 0x3d, 0x82, 0x80, 0x11, 0x9a, - 0x45, 0x1c, 0x7c, 0x40, 0x42, 0xfc, 0x01, 0x14, 0x11, 0x5f, 0xbe, 0xaa, 0xab, 0x6d, 0xcf, 0x22, - 0x0e, 0x9c, 0xea, 0x8b, 0xf8, 0xde, 0xf1, 0xc5, 0x3b, 0xb2, 0xa0, 0x19, 0xec, 0x2f, 0x07, 0xa1, - 0x1f, 0xfb, 0xa2, 0x1c, 0xec, 0x0f, 0x34, 0x33, 0x70, 0x18, 0x1c, 0xdc, 0x39, 0x74, 0xe2, 0xa3, - 0xe9, 0xfe, 0xb2, 0xe5, 0x4f, 0xee, 0xdb, 0x87, 0xa1, 0x19, 0x1c, 0xdd, 0x73, 0xfc, 0xfb, 0xfb, - 0xa6, 0x7d, 0x28, 0xc3, 0xfb, 0x27, 0x8f, 0xee, 0x07, 0xfb, 0xf7, 0x93, 0xa9, 0x83, 0x7b, 0xb9, - 0xb1, 0x87, 0xfe, 0xa1, 0x7f, 0x9f, 0xd0, 0xfb, 0xd3, 0x03, 0x82, 0x08, 0xa0, 0x16, 0x0f, 0xd7, - 0x07, 0x50, 0xdd, 0x76, 0xa2, 0x58, 0x08, 0xa8, 0x4e, 0x1d, 0x3b, 0xea, 0x97, 0x6e, 0x56, 0x96, - 0xea, 0x06, 0xb5, 0xf5, 0xa7, 0xa0, 0x8d, 0xcc, 0xe8, 0xf8, 0x85, 0xe9, 0x4e, 0xa5, 0xe8, 0x41, - 0xe5, 0xc4, 0x74, 0xfb, 0xa5, 0x9b, 0xa5, 0xa5, 0xb6, 0x81, 0x4d, 0xb1, 0x0c, 0xcd, 0x13, 0xd3, - 0x1d, 0xc7, 0x67, 0x81, 0xec, 0x97, 0x6f, 0x96, 0x96, 0xba, 0x2b, 0x97, 0x97, 0x83, 0xfd, 0xe5, - 0x67, 0x7e, 0x14, 0x3b, 0xde, 0xe1, 0xf2, 0x0b, 0xd3, 0x1d, 0x9d, 0x05, 0xd2, 0x68, 0x9c, 0x70, - 0x43, 0xdf, 0x85, 0xd6, 0x5e, 0x68, 0x6d, 0x4e, 0x3d, 0x2b, 0x76, 0x7c, 0x0f, 0x77, 0xf4, 0xcc, - 0x89, 0xa4, 0x15, 0x35, 0x83, 0xda, 0x88, 0x33, 0xc3, 0xc3, 0xa8, 0x5f, 0xb9, 0x59, 0x41, 0x1c, - 0xb6, 0x45, 0x1f, 0x1a, 0x4e, 0xb4, 0xee, 0x4f, 0xbd, 0xb8, 0x5f, 0xbd, 0x59, 0x5a, 0x6a, 0x1a, - 0x09, 0xa8, 0xff, 0x55, 0x05, 0x6a, 0xdf, 0x9b, 0xca, 0xf0, 0x8c, 0xe6, 0xc5, 0x71, 0x98, 0xac, - 0x85, 0x6d, 0x71, 0x05, 0x6a, 0xae, 0xe9, 0x1d, 0x46, 0xfd, 0x32, 0x2d, 0xc6, 0x80, 0xb8, 0x06, - 0x9a, 0x79, 0x10, 0xcb, 0x70, 0x3c, 0x75, 0xec, 0x7e, 0xe5, 0x66, 0x69, 0xa9, 0x6e, 0x34, 0x09, - 0xf1, 0xdc, 0xb1, 0xc5, 0x37, 0xa0, 0x69, 0xfb, 0x63, 0x2b, 0xbf, 0x97, 0xed, 0xd3, 0x5e, 0xe2, - 0x16, 0x34, 0xa7, 0x8e, 0x3d, 0x76, 0x9d, 0x28, 0xee, 0xd7, 0x6e, 0x96, 0x96, 0x5a, 0x2b, 0x4d, - 0xbc, 0x2c, 0xd2, 0xce, 0x68, 0x4c, 0x1d, 0x9b, 0x88, 0x78, 0x07, 0x9a, 0x51, 0x68, 0x8d, 0x0f, - 0xa6, 0x9e, 0xd5, 0xaf, 0xd3, 0xa0, 0x4b, 0x38, 0x28, 0x77, 0x6b, 0xa3, 0x11, 0x31, 0x80, 0xd7, - 0x0a, 0xe5, 0x89, 0x0c, 0x23, 0xd9, 0x6f, 0xf0, 0x56, 0x0a, 0x14, 0x0f, 0xa0, 0x75, 0x60, 0x5a, - 0x32, 0x1e, 0x07, 0x66, 0x68, 0x4e, 0xfa, 0xcd, 0x6c, 0xa1, 0x4d, 0x44, 0x3f, 0x43, 0x6c, 0x64, - 0xc0, 0x41, 0x0a, 0x88, 0x47, 0xd0, 0x21, 0x28, 0x1a, 0x1f, 0x38, 0x6e, 0x2c, 0xc3, 0xbe, 0x46, - 0x73, 0xba, 0x34, 0x87, 0x30, 0xa3, 0x50, 0x4a, 0xa3, 0xcd, 0x83, 0x18, 0x23, 0xde, 0x05, 0x90, - 0xa7, 0x81, 0xe9, 0xd9, 0x63, 0xd3, 0x75, 0xfb, 0x40, 0x67, 0xd0, 0x18, 0xb3, 0xea, 0xba, 0xe2, - 0x6d, 0x3c, 0x9f, 0x69, 0x8f, 0xe3, 0xa8, 0xdf, 0xb9, 0x59, 0x5a, 0xaa, 0x1a, 0x75, 0x04, 0x47, - 0x11, 0xd2, 0xd5, 0x32, 0xad, 0x23, 0xd9, 0xef, 0xde, 0x2c, 0x2d, 0xd5, 0x0c, 0x06, 0x10, 0x7b, - 0xe0, 0x84, 0x51, 0xdc, 0xbf, 0xc4, 0x58, 0x02, 0xc4, 0x55, 0xa8, 0xfb, 0x07, 0x07, 0x91, 0x8c, - 0xfb, 0x3d, 0x42, 0x2b, 0x48, 0x5f, 0x01, 0x8d, 0xb8, 0x8a, 0xa8, 0x76, 0x1b, 0xea, 0x27, 0x08, - 0x30, 0xf3, 0xb5, 0x56, 0x3a, 0x78, 0xec, 0x94, 0xf1, 0x0c, 0xd5, 0xa9, 0x5f, 0x87, 0xe6, 0xb6, - 0xe9, 0x1d, 0x26, 0xdc, 0x8a, 0xcf, 0x49, 0x13, 0x34, 0x83, 0xda, 0xfa, 0x1f, 0x94, 0xa1, 0x6e, - 0xc8, 0x68, 0xea, 0xc6, 0xe2, 0x43, 0x00, 0x7c, 0xac, 0x89, 0x19, 0x87, 0xce, 0xa9, 0x5a, 0x35, - 0x7b, 0x2e, 0x6d, 0xea, 0xd8, 0x4f, 0xa9, 0x4b, 0x3c, 0x80, 0x36, 0xad, 0x9e, 0x0c, 0x2d, 0x67, - 0x07, 0x48, 0xcf, 0x67, 0xb4, 0x68, 0x88, 0x9a, 0x71, 0x15, 0xea, 0xc4, 0x1f, 0xcc, 0xa3, 0x1d, - 0x43, 0x41, 0xe2, 0x36, 0x74, 0x1d, 0x2f, 0xc6, 0xf7, 0xb3, 0xe2, 0xb1, 0x2d, 0xa3, 0x84, 0x81, - 0x3a, 0x29, 0x76, 0x43, 0x46, 0xb1, 0x78, 0x08, 0xfc, 0x08, 0xc9, 0x86, 0x35, 0xda, 0xb0, 0x9b, - 0x3e, 0x6e, 0xc4, 0x3b, 0xd2, 0x18, 0xb5, 0xe3, 0x3d, 0x68, 0xe1, 0xfd, 0x92, 0x19, 0x75, 0x9a, - 0xd1, 0xa6, 0xdb, 0x28, 0x72, 0x18, 0x80, 0x03, 0xd4, 0x70, 0x24, 0x0d, 0x32, 0x29, 0x33, 0x15, - 0xb5, 0xf5, 0x21, 0xd4, 0x76, 0x43, 0x5b, 0x86, 0x73, 0xe5, 0x44, 0x40, 0xd5, 0x96, 0x91, 0x45, - 0x22, 0xdc, 0x34, 0xa8, 0x9d, 0xc9, 0x4e, 0x25, 0x27, 0x3b, 0xfa, 0x1f, 0x96, 0xa0, 0xb5, 0xe7, - 0x87, 0xf1, 0x53, 0x19, 0x45, 0xe6, 0xa1, 0x14, 0x37, 0xa0, 0xe6, 0xe3, 0xb2, 0x8a, 0xc2, 0x1a, - 0x9e, 0x89, 0xf6, 0x31, 0x18, 0x3f, 0xf3, 0x0e, 0xe5, 0x8b, 0xdf, 0x01, 0x79, 0x8a, 0xa4, 0xae, - 0xa2, 0x78, 0x8a, 0x64, 0x2e, 0xe3, 0x9e, 0x6a, 0x9e, 0x7b, 0x2e, 0x64, 0x4d, 0xfd, 0x5b, 0x00, - 0x78, 0xbe, 0xaf, 0xc9, 0x05, 0xfa, 0xcf, 0x4a, 0xd0, 0x32, 0xcc, 0x83, 0x78, 0xdd, 0xf7, 0x62, - 0x79, 0x1a, 0x8b, 0x2e, 0x94, 0x1d, 0x9b, 0x68, 0x54, 0x37, 0xca, 0x8e, 0x8d, 0xa7, 0x3b, 0x0c, - 0xfd, 0x69, 0x40, 0x24, 0xea, 0x18, 0x0c, 0x10, 0x2d, 0x6d, 0x3b, 0xa4, 0x23, 0x23, 0x2d, 0x6d, - 0x3b, 0x14, 0x37, 0xa0, 0x15, 0x79, 0x66, 0x10, 0x1d, 0xf9, 0x31, 0x9e, 0xae, 0x4a, 0xa7, 0x83, - 0x04, 0x35, 0x8a, 0x50, 0xe8, 0x9c, 0x68, 0xec, 0x4a, 0x33, 0xf4, 0x64, 0x48, 0x8a, 0xa4, 0x69, - 0x68, 0x4e, 0xb4, 0xcd, 0x08, 0xfd, 0x67, 0x15, 0xa8, 0x3f, 0x95, 0x93, 0x7d, 0x19, 0x9e, 0x3b, - 0xc4, 0x03, 0x68, 0xd2, 0xbe, 0x63, 0xc7, 0xe6, 0x73, 0xac, 0xbd, 0xf5, 0xf2, 0xcb, 0x1b, 0x8b, - 0x84, 0xdb, 0xb2, 0x3f, 0xf6, 0x27, 0x4e, 0x2c, 0x27, 0x41, 0x7c, 0x66, 0x34, 0x14, 0x6a, 0xee, - 0x01, 0xaf, 0x42, 0xdd, 0x95, 0x26, 0xbe, 0x19, 0xb3, 0xa7, 0x82, 0xc4, 0x3d, 0x68, 0x98, 0x93, - 0xb1, 0x2d, 0x4d, 0x9b, 0x0f, 0xb5, 0x76, 0xe5, 0xe5, 0x97, 0x37, 0x7a, 0xe6, 0x64, 0x43, 0x9a, - 0xf9, 0xb5, 0xeb, 0x8c, 0x11, 0x9f, 0x20, 0x4f, 0x46, 0xf1, 0x78, 0x1a, 0xd8, 0x66, 0x2c, 0x49, - 0xd7, 0x55, 0xd7, 0xfa, 0x2f, 0xbf, 0xbc, 0x71, 0x05, 0xd1, 0xcf, 0x09, 0x9b, 0x9b, 0x06, 0x19, - 0x16, 0xf5, 0x5e, 0x72, 0x7d, 0xa5, 0xf7, 0x14, 0x28, 0xb6, 0x60, 0xd1, 0x72, 0xa7, 0x11, 0x2a, - 0x67, 0xc7, 0x3b, 0xf0, 0xc7, 0xbe, 0xe7, 0x9e, 0xd1, 0x03, 0x37, 0xd7, 0xde, 0x7d, 0xf9, 0xe5, - 0x8d, 0x6f, 0xa8, 0xce, 0x2d, 0xef, 0xc0, 0xdf, 0xf5, 0xdc, 0xb3, 0xdc, 0xfa, 0x97, 0x66, 0xba, - 0xc4, 0x6f, 0x40, 0xf7, 0xc0, 0x0f, 0x2d, 0x39, 0x4e, 0x49, 0xd6, 0xa5, 0x75, 0x06, 0x2f, 0xbf, - 0xbc, 0x71, 0x95, 0x7a, 0x1e, 0x9f, 0xa3, 0x5b, 0x3b, 0x8f, 0xd7, 0xff, 0xb5, 0x0c, 0x35, 0x6a, - 0x8b, 0x07, 0xd0, 0x98, 0xd0, 0x93, 0x24, 0xfa, 0xe9, 0x2a, 0xf2, 0x10, 0xf5, 0x2d, 0xf3, 0x5b, - 0x45, 0x43, 0x2f, 0x0e, 0xcf, 0x8c, 0x64, 0x18, 0xce, 0x88, 0xcd, 0x7d, 0x57, 0xc6, 0x91, 0xe2, - 0xf9, 0xdc, 0x8c, 0x11, 0x77, 0xa8, 0x19, 0x6a, 0xd8, 0x2c, 0xdf, 0x54, 0xce, 0xf1, 0xcd, 0x00, - 0x9a, 0xd6, 0x91, 0xb4, 0x8e, 0xa3, 0xe9, 0x44, 0x71, 0x55, 0x0a, 0x8b, 0x5b, 0xd0, 0xa1, 0x76, - 0xe0, 0x3b, 0x1e, 0x4d, 0xaf, 0xd1, 0x80, 0x76, 0x86, 0x1c, 0x45, 0x83, 0x4d, 0x68, 0xe7, 0x0f, - 0x8b, 0xe6, 0xfc, 0x58, 0x9e, 0x11, 0x7f, 0x55, 0x0d, 0x6c, 0x8a, 0x9b, 0x50, 0x23, 0x45, 0x47, - 0xdc, 0xd5, 0x5a, 0x01, 0x3c, 0x33, 0x4f, 0x31, 0xb8, 0xe3, 0xd3, 0xf2, 0xb7, 0x4b, 0xb8, 0x4e, - 0xfe, 0x0a, 0xf9, 0x75, 0xb4, 0x8b, 0xd7, 0xe1, 0x29, 0xb9, 0x75, 0x74, 0x1f, 0x1a, 0xdb, 0x8e, - 0x25, 0xbd, 0x88, 0x8c, 0xfe, 0x34, 0x92, 0xa9, 0x52, 0xc2, 0x36, 0xde, 0x77, 0x62, 0x9e, 0xee, - 0xf8, 0xb6, 0x8c, 0x68, 0x9d, 0xaa, 0x91, 0xc2, 0xd8, 0x27, 0x4f, 0x03, 0x27, 0x3c, 0x1b, 0x31, - 0xa5, 0x2a, 0x46, 0x0a, 0x23, 0x77, 0x49, 0x0f, 0x37, 0xb3, 0x13, 0x03, 0xae, 0x40, 0xfd, 0x4f, - 0xab, 0xd0, 0xfe, 0x91, 0x0c, 0xfd, 0x67, 0xa1, 0x1f, 0xf8, 0x91, 0xe9, 0x8a, 0xd5, 0x22, 0xcd, - 0xf9, 0x6d, 0x6f, 0xe2, 0x69, 0xf3, 0xc3, 0x96, 0xf7, 0xd2, 0x47, 0xe0, 0x37, 0xcb, 0xbf, 0x8a, - 0x0e, 0x75, 0x7e, 0xf3, 0x39, 0x34, 0x53, 0x3d, 0x38, 0x86, 0x5f, 0x99, 0xce, 0x5a, 0xa4, 0x87, - 0xea, 0x41, 0xa9, 0x9c, 0x98, 0xa7, 0xcf, 0xb7, 0x36, 0xd4, 0xdb, 0x2a, 0x48, 0x51, 0x61, 0x74, - 0xea, 0x8d, 0x92, 0x47, 0x4d, 0x61, 0xbc, 0x29, 0x52, 0x24, 0xda, 0xda, 0xe8, 0xb7, 0xa9, 0x2b, - 0x01, 0xc5, 0x3b, 0xa0, 0x4d, 0xcc, 0x53, 0x54, 0x68, 0x5b, 0x36, 0x8b, 0xa6, 0x91, 0x21, 0xc4, - 0x7b, 0x50, 0x89, 0x4f, 0x3d, 0x92, 0x3d, 0xf4, 0x2a, 0xd0, 0xc9, 0x1c, 0x9d, 0x7a, 0x4a, 0xf5, - 0x19, 0xd8, 0x87, 0x6f, 0x6a, 0x39, 0x36, 0x39, 0x11, 0x9a, 0x81, 0x4d, 0x71, 0x1b, 0x1a, 0x2e, - 0xbf, 0x16, 0x39, 0x0a, 0xad, 0x95, 0x16, 0xeb, 0x51, 0x42, 0x19, 0x49, 0x9f, 0xf8, 0x18, 0x9a, - 0x09, 0x75, 0xfa, 0x2d, 0x1a, 0xd7, 0x4b, 0xe8, 0x99, 0x90, 0xd1, 0x48, 0x47, 0x88, 0x07, 0xa0, - 0xd9, 0xd2, 0x95, 0xb1, 0x1c, 0x7b, 0xac, 0xc8, 0x5b, 0xec, 0x40, 0x6e, 0x10, 0x72, 0x27, 0x32, - 0xe4, 0x4f, 0xa6, 0x32, 0x8a, 0x8d, 0xa6, 0xad, 0x10, 0xe2, 0xfd, 0x4c, 0xb0, 0xba, 0xf4, 0x5c, - 0x79, 0x62, 0x26, 0x5d, 0x83, 0xef, 0xc2, 0xa5, 0x99, 0x47, 0xcb, 0x73, 0x69, 0x87, 0xb9, 0xf4, - 0x4a, 0x9e, 0x4b, 0xab, 0x39, 0xce, 0xfc, 0xbc, 0xda, 0x6c, 0xf6, 0x34, 0xfd, 0xbf, 0x2a, 0x70, - 0x49, 0x09, 0xcc, 0x91, 0x13, 0xec, 0xc5, 0x4a, 0x75, 0x91, 0x61, 0x52, 0xbc, 0x5a, 0x35, 0x12, - 0x50, 0xfc, 0x3a, 0xd4, 0x49, 0xd3, 0x24, 0x02, 0x7f, 0x23, 0x63, 0x84, 0x74, 0x3a, 0x2b, 0x00, - 0xc5, 0x45, 0x6a, 0xb8, 0xf8, 0x26, 0xd4, 0xbe, 0x90, 0xa1, 0xcf, 0x86, 0xb6, 0xb5, 0x72, 0x7d, - 0xde, 0x3c, 0x24, 0x9f, 0x9a, 0xc6, 0x83, 0xff, 0xb7, 0xfc, 0x02, 0x5f, 0x87, 0x5f, 0xde, 0x47, - 0x63, 0x3b, 0xf1, 0x4f, 0xa4, 0xdd, 0x6f, 0x64, 0x34, 0x57, 0x4c, 0x9e, 0x74, 0x25, 0x2c, 0xd3, - 0x9c, 0xcb, 0x32, 0xda, 0xc5, 0x2c, 0x33, 0xd8, 0x80, 0x56, 0x8e, 0x2e, 0x73, 0x1e, 0xea, 0x46, - 0x51, 0x9d, 0x68, 0xa9, 0x2a, 0xcd, 0x6b, 0xa5, 0x0d, 0x80, 0x8c, 0x4a, 0xbf, 0xaa, 0x6e, 0xd3, - 0x7f, 0xbb, 0x04, 0x97, 0xd6, 0x7d, 0xcf, 0x93, 0xe4, 0xaa, 0xf3, 0x9b, 0x67, 0x22, 0x5e, 0xba, - 0x50, 0xc4, 0x3f, 0x82, 0x5a, 0x84, 0x83, 0xd5, 0xea, 0x97, 0xe7, 0x3c, 0xa2, 0xc1, 0x23, 0x50, - 0xd1, 0x4f, 0xcc, 0xd3, 0x71, 0x20, 0x3d, 0xdb, 0xf1, 0x0e, 0x13, 0x45, 0x3f, 0x31, 0x4f, 0x9f, - 0x31, 0x46, 0xff, 0xeb, 0x32, 0xc0, 0x67, 0xd2, 0x74, 0xe3, 0x23, 0x34, 0x66, 0xf8, 0xa2, 0x8e, - 0x17, 0xc5, 0xa6, 0x67, 0x25, 0x81, 0x52, 0x0a, 0xe3, 0x8b, 0xa2, 0x4d, 0x97, 0x11, 0xab, 0x48, - 0xcd, 0x48, 0x40, 0xe4, 0x0f, 0xdc, 0x6e, 0x1a, 0x29, 0xdb, 0xaf, 0xa0, 0xcc, 0x91, 0xa9, 0x12, - 0x5a, 0x39, 0x32, 0x7d, 0x68, 0x60, 0xe0, 0xe1, 0xf8, 0x1e, 0x31, 0x8d, 0x66, 0x24, 0x20, 0xae, - 0x33, 0x0d, 0x62, 0x67, 0xc2, 0x16, 0xbe, 0x62, 0x28, 0x08, 0x4f, 0x85, 0x16, 0x7d, 0x68, 0x1d, - 0xf9, 0xa4, 0x48, 0x2a, 0x46, 0x0a, 0xe3, 0x6a, 0xbe, 0x77, 0xe8, 0xe3, 0xed, 0x9a, 0xe4, 0x3c, - 0x26, 0x20, 0xdf, 0xc5, 0x96, 0xa7, 0xd8, 0xa5, 0x51, 0x57, 0x0a, 0x23, 0x5d, 0xa4, 0x1c, 0x1f, - 0x48, 0x33, 0x9e, 0x86, 0x32, 0xea, 0x03, 0x75, 0x83, 0x94, 0x9b, 0x0a, 0x23, 0xde, 0x83, 0x36, - 0x12, 0xce, 0x8c, 0x22, 0xe7, 0xd0, 0x93, 0x36, 0xa9, 0x97, 0xaa, 0x81, 0xc4, 0x5c, 0x55, 0x28, - 0xfd, 0x6f, 0xca, 0x50, 0x67, 0x5d, 0x50, 0x70, 0x96, 0x4a, 0x6f, 0xe4, 0x2c, 0xbd, 0x03, 0x5a, - 0x10, 0x4a, 0xdb, 0xb1, 0x92, 0x77, 0xd4, 0x8c, 0x0c, 0x41, 0xd1, 0x0d, 0x7a, 0x07, 0x44, 0xcf, - 0xa6, 0xc1, 0x80, 0xd0, 0xa1, 0xe3, 0x7b, 0x63, 0xdb, 0x89, 0x8e, 0xc7, 0xfb, 0x67, 0xb1, 0x8c, - 0x14, 0x2d, 0x5a, 0xbe, 0xb7, 0xe1, 0x44, 0xc7, 0x6b, 0x88, 0x42, 0x12, 0xb2, 0x8c, 0x90, 0x6c, - 0x34, 0x0d, 0x05, 0x89, 0x47, 0xa0, 0x91, 0x0f, 0x4b, 0x4e, 0x8e, 0x46, 0xce, 0xc9, 0xd5, 0x97, - 0x5f, 0xde, 0x10, 0x88, 0x9c, 0xf1, 0x6e, 0x9a, 0x09, 0x0e, 0xbd, 0x34, 0x9c, 0x8c, 0xe6, 0x8a, - 0x64, 0x98, 0xbd, 0x34, 0x44, 0x8d, 0xa2, 0xbc, 0x97, 0xc6, 0x18, 0x71, 0x0f, 0xc4, 0xd4, 0xb3, - 0xfc, 0x49, 0x80, 0x4c, 0x21, 0x6d, 0x75, 0xc8, 0x16, 0x1d, 0x72, 0x31, 0xdf, 0x43, 0x47, 0xd5, - 0xff, 0xa5, 0x0c, 0xed, 0x0d, 0x27, 0x94, 0x56, 0x2c, 0xed, 0xa1, 0x7d, 0x28, 0xf1, 0xec, 0xd2, - 0x8b, 0x9d, 0xf8, 0x4c, 0xb9, 0xa1, 0x0a, 0x4a, 0xa3, 0x88, 0x72, 0x31, 0xda, 0x66, 0x09, 0xab, - 0x50, 0x82, 0x80, 0x01, 0xb1, 0x02, 0xc0, 0xf1, 0x15, 0x25, 0x09, 0xaa, 0x17, 0x27, 0x09, 0x34, - 0x1a, 0x86, 0x4d, 0x0c, 0xc2, 0x79, 0x8e, 0xc3, 0xbe, 0x68, 0x9d, 0x32, 0x08, 0x53, 0xc9, 0x1e, - 0x2d, 0x85, 0x7d, 0x0d, 0xde, 0x18, 0xdb, 0xe2, 0x16, 0x94, 0xfd, 0x80, 0x88, 0xab, 0x96, 0xce, - 0x5f, 0x61, 0x79, 0x37, 0x30, 0xca, 0x7e, 0x80, 0x52, 0xcc, 0xb1, 0x2f, 0x31, 0x1e, 0x4a, 0x31, - 0xda, 0x3d, 0x8a, 0xb8, 0x0c, 0xd5, 0x23, 0x74, 0x68, 0x9b, 0xae, 0xeb, 0xff, 0x54, 0xda, 0xcf, - 0x42, 0x69, 0x27, 0x3c, 0x58, 0xc0, 0x21, 0x97, 0x78, 0xe6, 0x44, 0x46, 0x81, 0x69, 0x49, 0xc5, - 0x82, 0x19, 0x42, 0xbf, 0x0a, 0xe5, 0xdd, 0x40, 0x34, 0xa0, 0xb2, 0x37, 0x1c, 0xf5, 0x16, 0xb0, - 0xb1, 0x31, 0xdc, 0xee, 0xa1, 0x45, 0xa9, 0xf7, 0x1a, 0xfa, 0x57, 0x65, 0xd0, 0x9e, 0x4e, 0x63, - 0x13, 0x75, 0x4b, 0x84, 0xb7, 0x2c, 0x72, 0x68, 0xc6, 0x8a, 0xdf, 0x80, 0x66, 0x14, 0x9b, 0x21, - 0x79, 0x25, 0x6c, 0x9d, 0x1a, 0x04, 0x8f, 0x22, 0xf1, 0x01, 0xd4, 0xa4, 0x7d, 0x28, 0x13, 0x73, - 0xd1, 0x9b, 0xbd, 0xaf, 0xc1, 0xdd, 0x62, 0x09, 0xea, 0x91, 0x75, 0x24, 0x27, 0x66, 0xbf, 0x9a, - 0x0d, 0xdc, 0x23, 0x0c, 0xbb, 0xe1, 0x86, 0xea, 0x17, 0xef, 0x43, 0x0d, 0xdf, 0x26, 0x52, 0x71, - 0x25, 0x45, 0xa2, 0xf8, 0x0c, 0x6a, 0x18, 0x77, 0x22, 0xe3, 0xd9, 0xa1, 0x1f, 0x8c, 0xfd, 0x80, - 0x68, 0xdf, 0x5d, 0xb9, 0x42, 0x3a, 0x2e, 0xb9, 0xcd, 0xf2, 0x46, 0xe8, 0x07, 0xbb, 0x81, 0x51, - 0xb7, 0xe9, 0x17, 0xa3, 0x1c, 0x1a, 0xce, 0x1c, 0xc1, 0x46, 0x41, 0x43, 0x0c, 0xa7, 0x92, 0x96, - 0xa0, 0x39, 0x91, 0xb1, 0x69, 0x9b, 0xb1, 0xa9, 0x6c, 0x43, 0x9b, 0x55, 0x26, 0xe3, 0x8c, 0xb4, - 0x57, 0xbf, 0x0f, 0x75, 0x5e, 0x5a, 0x34, 0xa1, 0xba, 0xb3, 0xbb, 0x33, 0x64, 0xb2, 0xae, 0x6e, - 0x6f, 0xf7, 0x4a, 0x88, 0xda, 0x58, 0x1d, 0xad, 0xf6, 0xca, 0xd8, 0x1a, 0xfd, 0xf0, 0xd9, 0xb0, - 0x57, 0xd1, 0xff, 0xa1, 0x04, 0xcd, 0x64, 0x1d, 0xf1, 0x29, 0x00, 0x8a, 0xf0, 0xf8, 0xc8, 0xf1, - 0x52, 0x07, 0xef, 0x5a, 0x7e, 0xa7, 0x65, 0x7c, 0xd5, 0xcf, 0xb0, 0x97, 0xcd, 0x2b, 0x49, 0x3c, - 0xc1, 0x83, 0x3d, 0xe8, 0x16, 0x3b, 0xe7, 0x78, 0xba, 0x77, 0xf3, 0x56, 0xa5, 0xbb, 0xf2, 0x56, - 0x61, 0x69, 0x9c, 0x49, 0xac, 0x9d, 0x33, 0x30, 0xf7, 0xa0, 0x99, 0xa0, 0x45, 0x0b, 0x1a, 0x1b, - 0xc3, 0xcd, 0xd5, 0xe7, 0xdb, 0xc8, 0x2a, 0x00, 0xf5, 0xbd, 0xad, 0x9d, 0xc7, 0xdb, 0x43, 0xbe, - 0xd6, 0xf6, 0xd6, 0xde, 0xa8, 0x57, 0xd6, 0x7f, 0xbf, 0x04, 0xcd, 0xc4, 0x93, 0x11, 0x1f, 0xa1, - 0xf3, 0x41, 0x4e, 0x9a, 0xb2, 0x44, 0x94, 0x11, 0xca, 0x85, 0xad, 0x46, 0xd2, 0x8f, 0xb2, 0x48, - 0x8a, 0x35, 0xf1, 0x6d, 0x08, 0xc8, 0x47, 0xcd, 0x95, 0x42, 0x42, 0x47, 0x40, 0xd5, 0xf6, 0x3d, - 0xa9, 0x1c, 0x66, 0x6a, 0x13, 0x0f, 0x3a, 0x9e, 0x25, 0xb3, 0x70, 0xa2, 0x41, 0xf0, 0x28, 0xd2, - 0x63, 0xf6, 0xa3, 0xd3, 0x83, 0xa5, 0xbb, 0x95, 0xf2, 0xbb, 0x9d, 0x0b, 0x4a, 0xca, 0xe7, 0x83, - 0x92, 0xcc, 0x70, 0xd6, 0x5e, 0x67, 0x38, 0xf5, 0x3f, 0xab, 0x42, 0xd7, 0x90, 0x51, 0xec, 0x87, - 0x52, 0xf9, 0x85, 0xaf, 0x12, 0xa1, 0x77, 0x01, 0x42, 0x1e, 0x9c, 0x6d, 0xad, 0x29, 0x0c, 0x47, - 0x53, 0xae, 0x6f, 0x11, 0xef, 0x2a, 0x0b, 0x99, 0xc2, 0xe2, 0x1a, 0x68, 0xfb, 0xa6, 0x75, 0xcc, - 0xcb, 0xb2, 0x9d, 0x6c, 0x32, 0x82, 0xd7, 0x35, 0x2d, 0x4b, 0x46, 0xd1, 0x18, 0x59, 0x81, 0xad, - 0xa5, 0xc6, 0x98, 0x27, 0xf2, 0x0c, 0xbb, 0x23, 0x69, 0x85, 0x32, 0xa6, 0xee, 0x3a, 0x77, 0x33, - 0x06, 0xbb, 0x6f, 0x41, 0x27, 0x92, 0x11, 0x5a, 0xd6, 0x71, 0xec, 0x1f, 0x4b, 0x4f, 0xe9, 0xb1, - 0xb6, 0x42, 0x8e, 0x10, 0x87, 0x2a, 0xc6, 0xf4, 0x7c, 0xef, 0x6c, 0xe2, 0x4f, 0x23, 0x65, 0x33, - 0x32, 0x84, 0x58, 0x86, 0xcb, 0xd2, 0xb3, 0xc2, 0xb3, 0x00, 0xcf, 0x8a, 0xbb, 0x8c, 0x0f, 0x1c, - 0x57, 0x2a, 0x57, 0x7d, 0x31, 0xeb, 0x7a, 0x22, 0xcf, 0x36, 0x1d, 0x57, 0xe2, 0x89, 0x4e, 0xcc, - 0xa9, 0x1b, 0x8f, 0x29, 0x13, 0x00, 0x7c, 0x22, 0xc2, 0xac, 0xda, 0x76, 0x28, 0xee, 0xc0, 0x22, - 0x77, 0x87, 0xbe, 0x2b, 0x1d, 0x9b, 0x17, 0x6b, 0xd1, 0xa8, 0x4b, 0xd4, 0x61, 0x10, 0x9e, 0x96, - 0x5a, 0x86, 0xcb, 0x3c, 0x96, 0x2f, 0x94, 0x8c, 0x6e, 0xf3, 0xd6, 0xd4, 0xb5, 0xa7, 0x7a, 0x8a, - 0x5b, 0x07, 0x66, 0x7c, 0x44, 0xfe, 0x7d, 0xb2, 0xf5, 0x33, 0x33, 0x3e, 0x42, 0x8b, 0xcf, 0xdd, - 0x07, 0x8e, 0x74, 0x39, 0x3e, 0xd7, 0x0c, 0x9e, 0xb1, 0x89, 0x18, 0xb4, 0xf8, 0x6a, 0x80, 0x1f, - 0x4e, 0x4c, 0x4e, 0x2c, 0x6a, 0x06, 0x4f, 0xda, 0x24, 0x14, 0x6e, 0xa1, 0xde, 0xca, 0x9b, 0x4e, - 0x28, 0xc5, 0x58, 0x35, 0xd4, 0xeb, 0xed, 0x4c, 0x27, 0xfa, 0xcb, 0x0a, 0x34, 0xd3, 0x70, 0xef, - 0x2e, 0x68, 0x93, 0x44, 0x5f, 0x29, 0x47, 0xad, 0x53, 0x50, 0x62, 0x46, 0xd6, 0x2f, 0xde, 0x85, - 0xf2, 0xf1, 0x89, 0xd2, 0x9d, 0x9d, 0x65, 0x4e, 0xb4, 0x07, 0xfb, 0x8f, 0x96, 0x9f, 0xbc, 0x30, - 0xca, 0xc7, 0x27, 0x5f, 0x83, 0x6f, 0xc5, 0x87, 0x70, 0xc9, 0x72, 0xa5, 0xe9, 0x8d, 0x33, 0xef, - 0x82, 0xf9, 0xa2, 0x4b, 0xe8, 0x67, 0xa9, 0x8b, 0x71, 0x1b, 0x6a, 0xb6, 0x74, 0x63, 0x33, 0x9f, - 0xef, 0xdd, 0x0d, 0x4d, 0xcb, 0x95, 0x1b, 0x88, 0x36, 0xb8, 0x17, 0x75, 0x67, 0x1a, 0x62, 0xe5, - 0x74, 0xe7, 0x9c, 0xf0, 0x2a, 0x95, 0x4b, 0xc8, 0xcb, 0xe5, 0x5d, 0x58, 0x94, 0xa7, 0x01, 0x19, - 0x8c, 0x71, 0x9a, 0x51, 0x60, 0x4b, 0xd6, 0x4b, 0x3a, 0xd6, 0x93, 0xcc, 0xc2, 0xc7, 0xa8, 0x32, - 0x48, 0x68, 0xe8, 0x99, 0x5b, 0x2b, 0x82, 0x74, 0x4e, 0x41, 0x0c, 0x8d, 0x64, 0x88, 0xf8, 0x08, - 0x34, 0xcb, 0xb6, 0xc6, 0x4c, 0x99, 0x4e, 0x76, 0xb6, 0xf5, 0x8d, 0x75, 0x26, 0x49, 0xd3, 0xb2, - 0x2d, 0xf6, 0xaa, 0x0b, 0xa1, 0x5f, 0xf7, 0x4d, 0x42, 0xbf, 0xbc, 0x51, 0xec, 0x15, 0x8c, 0xe2, - 0xe7, 0xd5, 0x66, 0xa3, 0xd7, 0xd4, 0x6f, 0x41, 0x33, 0xd9, 0x08, 0x55, 0x5d, 0x24, 0x3d, 0x15, - 0xd6, 0x93, 0xaa, 0x43, 0x70, 0x14, 0xe9, 0x16, 0x54, 0x9e, 0xbc, 0xd8, 0x23, 0x8d, 0x87, 0xc6, - 0xa7, 0x46, 0xbe, 0x0a, 0xb5, 0x53, 0x2d, 0x58, 0xce, 0x69, 0xc1, 0xeb, 0x6c, 0x40, 0xe8, 0x81, - 0x92, 0x5c, 0x68, 0x0e, 0x83, 0x24, 0x66, 0xe3, 0x59, 0xe5, 0x34, 0x29, 0x01, 0xfa, 0x7f, 0x54, - 0xa0, 0xa1, 0xfc, 0x1b, 0x34, 0x1a, 0xd3, 0x34, 0x8d, 0x87, 0xcd, 0x62, 0xe0, 0x99, 0x3a, 0x4a, - 0xf9, 0x5a, 0x4a, 0xe5, 0xf5, 0xb5, 0x14, 0xf1, 0x29, 0xb4, 0x03, 0xee, 0xcb, 0xbb, 0x56, 0x6f, - 0xe7, 0xe7, 0xa8, 0x5f, 0x9a, 0xd7, 0x0a, 0x32, 0x00, 0x49, 0x49, 0x09, 0xe5, 0xd8, 0x3c, 0x54, - 0x14, 0x68, 0x20, 0x3c, 0x32, 0x0f, 0xdf, 0xc8, 0x4f, 0xea, 0x92, 0xc3, 0xd5, 0x26, 0x85, 0x8b, - 0xbe, 0x55, 0xfe, 0x65, 0x3a, 0x45, 0x77, 0xe5, 0x1a, 0x68, 0x96, 0x3f, 0x99, 0x38, 0xd4, 0xd7, - 0x55, 0x69, 0x2b, 0x42, 0x8c, 0x22, 0xfd, 0x77, 0x4b, 0xd0, 0x50, 0xf7, 0x3a, 0x67, 0x0c, 0xd7, - 0xb6, 0x76, 0x56, 0x8d, 0x1f, 0xf6, 0x4a, 0x68, 0xec, 0xb7, 0x76, 0x46, 0xbd, 0xb2, 0xd0, 0xa0, - 0xb6, 0xb9, 0xbd, 0xbb, 0x3a, 0xea, 0x55, 0xd0, 0x40, 0xae, 0xed, 0xee, 0x6e, 0xf7, 0xaa, 0xa2, - 0x0d, 0xcd, 0x8d, 0xd5, 0xd1, 0x70, 0xb4, 0xf5, 0x74, 0xd8, 0xab, 0xe1, 0xd8, 0xc7, 0xc3, 0xdd, - 0x5e, 0x1d, 0x1b, 0xcf, 0xb7, 0x36, 0x7a, 0x0d, 0xec, 0x7f, 0xb6, 0xba, 0xb7, 0xf7, 0xfd, 0x5d, - 0x63, 0xa3, 0xd7, 0x24, 0x23, 0x3b, 0x32, 0xb6, 0x76, 0x1e, 0xf7, 0x34, 0x6c, 0xef, 0xae, 0x7d, - 0x3e, 0x5c, 0x1f, 0xf5, 0x40, 0x7f, 0x08, 0xad, 0x1c, 0xad, 0x70, 0xb6, 0x31, 0xdc, 0xec, 0x2d, - 0xe0, 0x96, 0x2f, 0x56, 0xb7, 0x9f, 0xa3, 0x4d, 0xee, 0x02, 0x50, 0x73, 0xbc, 0xbd, 0xba, 0xf3, - 0xb8, 0x57, 0x56, 0x1e, 0xdd, 0xf7, 0xa0, 0xf9, 0xdc, 0xb1, 0xd7, 0x5c, 0xdf, 0x3a, 0x46, 0xf6, - 0xd9, 0x37, 0x23, 0xa9, 0xf8, 0x8d, 0xda, 0xe8, 0x3f, 0x93, 0xd0, 0x46, 0xea, 0xad, 0x15, 0x84, - 0x14, 0xf3, 0xa6, 0x93, 0x31, 0xd5, 0xdb, 0x2a, 0x6c, 0xb8, 0xbc, 0xe9, 0xe4, 0xb9, 0x63, 0x47, - 0xfa, 0x31, 0x34, 0x9e, 0x3b, 0xf6, 0x33, 0xd3, 0x3a, 0x26, 0xe5, 0x86, 0x4b, 0x8f, 0x23, 0xe7, - 0x0b, 0xa9, 0x0c, 0x9c, 0x46, 0x98, 0x3d, 0xe7, 0x0b, 0x29, 0xde, 0x87, 0x3a, 0x01, 0x49, 0xca, - 0x81, 0x44, 0x2d, 0x39, 0x8e, 0xa1, 0xfa, 0xa8, 0xdc, 0xe5, 0xba, 0xbe, 0x35, 0x0e, 0xe5, 0x41, - 0xff, 0x6d, 0x7e, 0x01, 0x42, 0x18, 0xf2, 0x40, 0xff, 0xbd, 0x52, 0x7a, 0x73, 0xaa, 0xaa, 0xdc, - 0x80, 0x6a, 0x60, 0x5a, 0xc7, 0xca, 0xbf, 0x68, 0xa9, 0x05, 0xf1, 0x30, 0x06, 0x75, 0x88, 0x0f, - 0xa1, 0xa9, 0x18, 0x29, 0xd9, 0xb5, 0x95, 0xe3, 0x38, 0x23, 0xed, 0x2c, 0x3e, 0x7c, 0xa5, 0xf8, - 0xf0, 0x14, 0x9d, 0x06, 0xae, 0x13, 0xb3, 0xd8, 0xa0, 0x70, 0x12, 0xa4, 0x7f, 0x13, 0x20, 0x2b, - 0x70, 0xcd, 0x71, 0xb7, 0xae, 0x40, 0xcd, 0x74, 0x1d, 0x33, 0x89, 0x76, 0x19, 0xd0, 0x77, 0xa0, - 0x95, 0x2b, 0x8b, 0x21, 0x6d, 0x4d, 0xd7, 0x45, 0xcb, 0xc8, 0xb2, 0xdf, 0x34, 0x1a, 0xa6, 0xeb, - 0x3e, 0x91, 0x67, 0x11, 0xba, 0xba, 0x5c, 0x51, 0x2b, 0xcf, 0x14, 0x5d, 0x68, 0xaa, 0xc1, 0x9d, - 0xfa, 0xc7, 0x50, 0xdf, 0x4c, 0x02, 0x82, 0x44, 0x18, 0x4a, 0x17, 0x09, 0x83, 0xfe, 0x89, 0x3a, - 0x33, 0xd5, 0x6d, 0xc4, 0x5d, 0x55, 0xb9, 0x8b, 0xb8, 0x4e, 0x58, 0xca, 0xf2, 0x25, 0x3c, 0x48, - 0x15, 0xed, 0x68, 0xb0, 0xbe, 0x01, 0xcd, 0x57, 0xd6, 0x42, 0x15, 0x01, 0xca, 0x19, 0x01, 0xe6, - 0x54, 0x47, 0xf5, 0x1f, 0x03, 0x64, 0x15, 0x3e, 0x25, 0x9b, 0xbc, 0x0a, 0xca, 0xe6, 0x1d, 0x68, - 0x5a, 0x47, 0x8e, 0x6b, 0x87, 0xd2, 0x2b, 0xdc, 0x3a, 0xab, 0x09, 0xa6, 0xfd, 0xe2, 0x26, 0x54, - 0xa9, 0x70, 0x59, 0xc9, 0x34, 0x77, 0x5a, 0xb5, 0xa4, 0x1e, 0xfd, 0x14, 0x3a, 0x1c, 0x43, 0xbc, - 0x81, 0x07, 0x56, 0x54, 0x9d, 0xe5, 0x73, 0xaa, 0xf3, 0x2a, 0xd4, 0xc9, 0xf0, 0x27, 0xb7, 0x51, - 0xd0, 0x05, 0x2a, 0xf5, 0x77, 0xca, 0x00, 0xbc, 0xf5, 0x8e, 0x6f, 0xcb, 0x62, 0xb0, 0x5e, 0x9a, - 0x0d, 0xd6, 0x05, 0x54, 0xd3, 0x9a, 0xb4, 0x66, 0x50, 0x3b, 0x33, 0x86, 0x2a, 0x80, 0x67, 0x63, - 0xf8, 0x0e, 0x68, 0xe4, 0x88, 0x39, 0x5f, 0x50, 0x41, 0x04, 0x37, 0xcc, 0x10, 0xf9, 0x0a, 0x6d, - 0xad, 0x58, 0xa1, 0x4d, 0xcb, 0x55, 0x75, 0x5e, 0x8d, 0xcb, 0x55, 0x73, 0x2a, 0x6f, 0x9c, 0x41, - 0x89, 0x64, 0x18, 0x27, 0xe1, 0x3f, 0x43, 0x69, 0x24, 0xab, 0xa9, 0xb1, 0x26, 0xe7, 0x40, 0x3c, - 0x7f, 0x6c, 0xf9, 0xde, 0x81, 0xeb, 0x58, 0xb1, 0xaa, 0xc8, 0x82, 0xe7, 0xaf, 0x2b, 0x8c, 0xfe, - 0x29, 0xb4, 0x13, 0xfa, 0x53, 0x81, 0xeb, 0x4e, 0x1a, 0xe5, 0x95, 0xb2, 0xb7, 0xcd, 0xc8, 0xb4, - 0x56, 0xee, 0x97, 0x92, 0x38, 0x4f, 0xff, 0xef, 0x4a, 0x32, 0x59, 0xd5, 0x61, 0x5e, 0x4d, 0xc3, - 0x62, 0xe0, 0x5e, 0x7e, 0xa3, 0xc0, 0xfd, 0xdb, 0xa0, 0xd9, 0x14, 0x8b, 0x3a, 0x27, 0x89, 0x11, - 0x1b, 0xcc, 0xc6, 0x9d, 0x2a, 0x5a, 0x75, 0x4e, 0xa4, 0x91, 0x0d, 0x7e, 0xcd, 0x3b, 0xa4, 0xd4, - 0xae, 0xcd, 0xa3, 0x76, 0xfd, 0x57, 0xa4, 0xf6, 0x7b, 0xd0, 0xf6, 0x7c, 0x6f, 0xec, 0x4d, 0x5d, - 0xd7, 0xdc, 0x77, 0xa5, 0x22, 0x77, 0xcb, 0xf3, 0xbd, 0x1d, 0x85, 0x42, 0xef, 0x38, 0x3f, 0x84, - 0x85, 0xba, 0x45, 0xe3, 0x2e, 0xe5, 0xc6, 0x91, 0xe8, 0x2f, 0x41, 0xcf, 0xdf, 0xff, 0xb1, 0xb4, - 0x62, 0xa2, 0xd8, 0x98, 0xa4, 0x99, 0x5d, 0xe3, 0x2e, 0xe3, 0x91, 0x44, 0x3b, 0x28, 0xd7, 0x33, - 0xcf, 0xdc, 0x39, 0xf7, 0xcc, 0x9f, 0x80, 0x96, 0x52, 0x29, 0x17, 0xf7, 0x6a, 0x50, 0xdb, 0xda, - 0xd9, 0x18, 0xfe, 0xa0, 0x57, 0x42, 0x73, 0x69, 0x0c, 0x5f, 0x0c, 0x8d, 0xbd, 0x61, 0xaf, 0x8c, - 0xa6, 0x6c, 0x63, 0xb8, 0x3d, 0x1c, 0x0d, 0x7b, 0x15, 0x76, 0x85, 0xa8, 0x1c, 0xe2, 0x3a, 0x96, - 0x13, 0xeb, 0x7b, 0x00, 0x59, 0x30, 0x8f, 0x5a, 0x39, 0x3b, 0x9c, 0xca, 0x26, 0xc6, 0xc9, 0xb1, - 0x96, 0x52, 0x81, 0x2c, 0x5f, 0x94, 0x32, 0xe0, 0x7e, 0x7d, 0x05, 0xb4, 0xa7, 0x66, 0xf0, 0x19, - 0x17, 0x0e, 0x6f, 0x43, 0x37, 0x30, 0xc3, 0xd8, 0x49, 0xe2, 0x11, 0x56, 0x96, 0x6d, 0xa3, 0x93, - 0x62, 0x51, 0xf7, 0xea, 0x7f, 0x5e, 0x82, 0x2b, 0x4f, 0xfd, 0x13, 0x99, 0xfa, 0xbb, 0xcf, 0xcc, - 0x33, 0xd7, 0x37, 0xed, 0xd7, 0xb0, 0x21, 0x06, 0x54, 0xfe, 0x94, 0x0a, 0x79, 0x49, 0xd9, 0xd3, - 0xd0, 0x18, 0xf3, 0x58, 0x7d, 0xaf, 0x21, 0xa3, 0x98, 0x3a, 0x95, 0x21, 0x45, 0x18, 0xbb, 0xde, - 0x82, 0x7a, 0x7c, 0xea, 0x65, 0x45, 0xd8, 0x5a, 0x4c, 0x59, 0xf0, 0xb9, 0xee, 0x6f, 0x6d, 0xbe, - 0xfb, 0xab, 0xaf, 0x83, 0x36, 0x3a, 0xa5, 0x3c, 0xf0, 0xb4, 0xe8, 0x80, 0x96, 0x5e, 0xe1, 0xe6, - 0x94, 0x67, 0xdc, 0x9c, 0x7f, 0x2f, 0x41, 0x2b, 0xe7, 0xc7, 0x8b, 0xf7, 0xa0, 0x1a, 0x9f, 0x7a, - 0xc5, 0x6f, 0x1d, 0x92, 0x4d, 0x0c, 0xea, 0x3a, 0x97, 0xeb, 0x2c, 0x9f, 0xcb, 0x75, 0x8a, 0x6d, - 0xb8, 0xc4, 0x9a, 0x37, 0xb9, 0x44, 0x92, 0x12, 0xba, 0x35, 0x13, 0x37, 0x70, 0xae, 0x3c, 0xb9, - 0x92, 0xca, 0x73, 0x74, 0x0f, 0x0b, 0xc8, 0xc1, 0x2a, 0x5c, 0x9e, 0x33, 0xec, 0xeb, 0x54, 0x4d, - 0xf4, 0x1b, 0xd0, 0x19, 0x9d, 0x7a, 0x23, 0x67, 0x22, 0xa3, 0xd8, 0x9c, 0x04, 0xe4, 0x26, 0x2a, - 0xcb, 0x59, 0x35, 0xca, 0x71, 0xa4, 0x7f, 0x00, 0xed, 0x67, 0x52, 0x86, 0x86, 0x8c, 0x02, 0xdf, - 0x63, 0xe7, 0x48, 0xe5, 0xa8, 0xd9, 0x4c, 0x2b, 0x48, 0xff, 0x2d, 0xd0, 0x0c, 0xf3, 0x20, 0x5e, - 0x33, 0x63, 0xeb, 0xe8, 0xeb, 0x24, 0x3d, 0x3e, 0x80, 0x46, 0xc0, 0x3c, 0xa5, 0xa2, 0xbb, 0x36, - 0x99, 0x6b, 0xc5, 0x67, 0x46, 0xd2, 0xa9, 0xff, 0x1a, 0x74, 0x55, 0xc1, 0x28, 0x39, 0x49, 0xae, - 0xaa, 0x54, 0xba, 0xb0, 0xaa, 0xa4, 0x1f, 0x42, 0x27, 0x99, 0xc7, 0xc6, 0xef, 0x8d, 0xa6, 0x7d, - 0xfd, 0xb2, 0xbd, 0xfe, 0x9b, 0x70, 0x79, 0x6f, 0xba, 0x1f, 0x59, 0xa1, 0x43, 0x91, 0x7c, 0xb2, - 0xdd, 0x00, 0x9a, 0x41, 0x28, 0x0f, 0x9c, 0x53, 0x99, 0x88, 0x58, 0x0a, 0x8b, 0x3b, 0xd0, 0x98, - 0x20, 0xbd, 0x64, 0x26, 0xbc, 0x59, 0xcc, 0xfa, 0x14, 0x7b, 0x8c, 0x64, 0x80, 0xfe, 0x1d, 0xb8, - 0x52, 0x5c, 0x5e, 0x51, 0xe1, 0x16, 0x54, 0x8e, 0x4f, 0x22, 0x45, 0xe6, 0xc5, 0x42, 0xcc, 0x4b, - 0xdf, 0x4b, 0x60, 0xaf, 0xfe, 0xc7, 0x25, 0xa8, 0xec, 0x4c, 0x27, 0xf9, 0x8f, 0xc1, 0xaa, 0xfc, - 0x31, 0xd8, 0xb5, 0x7c, 0x3e, 0x9b, 0x63, 0xa8, 0x2c, 0x6f, 0xfd, 0x0e, 0x68, 0x07, 0x7e, 0xf8, - 0x53, 0x33, 0xb4, 0xa5, 0xad, 0x2c, 0x70, 0x86, 0x10, 0xb7, 0x95, 0xbd, 0xe6, 0x18, 0x66, 0x11, - 0xa9, 0xb8, 0x33, 0x9d, 0x2c, 0xbb, 0xd2, 0x8c, 0xc8, 0xb0, 0xb0, 0x09, 0xd7, 0xef, 0x82, 0x96, - 0xa2, 0x50, 0x19, 0xee, 0xec, 0x8d, 0xb7, 0x36, 0x38, 0x1f, 0x88, 0xde, 0x7e, 0x09, 0x15, 0xe1, - 0xe8, 0x07, 0x3b, 0xe3, 0xd1, 0x5e, 0xaf, 0xac, 0xff, 0x08, 0x5a, 0x89, 0xac, 0x6c, 0xd9, 0x54, - 0xfc, 0x22, 0x61, 0xdd, 0xb2, 0x0b, 0xb2, 0xbb, 0x45, 0xe1, 0x98, 0xf4, 0xec, 0xad, 0x44, 0xc8, - 0x18, 0x28, 0xde, 0x46, 0x55, 0xd2, 0x92, 0xdb, 0xe8, 0x43, 0x58, 0x34, 0x28, 0x89, 0x8f, 0x46, - 0x36, 0x79, 0x9e, 0xab, 0x50, 0xf7, 0x7c, 0x5b, 0xa6, 0x1b, 0x28, 0x08, 0x77, 0x56, 0x0f, 0xab, - 0xd4, 0x57, 0xfa, 0xce, 0x12, 0x16, 0x51, 0x23, 0x16, 0x99, 0xaa, 0x90, 0x60, 0x2e, 0xcd, 0x24, - 0x98, 0x71, 0x13, 0x55, 0x4b, 0x66, 0xdf, 0x26, 0xa9, 0x1f, 0x0f, 0xa0, 0x69, 0x47, 0x31, 0x89, - 0xb0, 0xd2, 0x83, 0x29, 0xac, 0xdf, 0x87, 0xcb, 0xab, 0x41, 0xe0, 0x9e, 0x25, 0x95, 0x37, 0xb5, - 0x51, 0x3f, 0x2b, 0xcf, 0x95, 0x54, 0x0c, 0xc8, 0xa0, 0xbe, 0x09, 0xed, 0x24, 0x9b, 0xf0, 0x54, - 0xc6, 0x26, 0x69, 0x37, 0xd7, 0x29, 0x84, 0xd3, 0x4d, 0x46, 0x8c, 0x8a, 0x69, 0xec, 0x99, 0xfb, - 0x2d, 0x43, 0x5d, 0xa9, 0x4e, 0x01, 0x55, 0xcb, 0xb7, 0x79, 0xa3, 0x9a, 0x41, 0x6d, 0xe4, 0xa0, - 0x49, 0x74, 0x98, 0x78, 0xb7, 0x93, 0xe8, 0x50, 0xff, 0xa7, 0x32, 0x74, 0xd6, 0x28, 0x77, 0x93, - 0x9c, 0x31, 0x97, 0xb1, 0x2c, 0x15, 0x32, 0x96, 0xf9, 0xec, 0x64, 0xb9, 0x90, 0x9d, 0x2c, 0x1c, - 0xa8, 0x52, 0x74, 0x49, 0xdf, 0x86, 0xc6, 0xd4, 0x73, 0x4e, 0x13, 0x9b, 0xa0, 0x19, 0x75, 0x04, - 0x47, 0x91, 0xb8, 0x09, 0x2d, 0x34, 0x1b, 0x8e, 0xc7, 0x19, 0x41, 0x4e, 0xeb, 0xe5, 0x51, 0x33, - 0x79, 0xbf, 0xfa, 0xab, 0xf3, 0x7e, 0x8d, 0xd7, 0xe6, 0xfd, 0x9a, 0xaf, 0xcb, 0xfb, 0x69, 0xb3, - 0x79, 0xbf, 0xa2, 0x3b, 0x0d, 0xe7, 0xdc, 0xe9, 0x77, 0x01, 0xf8, 0x83, 0x97, 0x83, 0xa9, 0xeb, - 0x2a, 0x1f, 0x45, 0x23, 0xcc, 0xe6, 0xd4, 0x75, 0xf5, 0x6d, 0xe8, 0x26, 0xa4, 0x55, 0xe2, 0xfe, - 0x29, 0x5c, 0x52, 0x19, 0x7d, 0x19, 0xaa, 0xa4, 0x18, 0x6b, 0x31, 0x92, 0x3f, 0x4e, 0xba, 0xab, - 0x1e, 0xa3, 0x6b, 0xe7, 0xc1, 0x48, 0xff, 0x79, 0x09, 0x3a, 0x85, 0x11, 0xe2, 0x61, 0x56, 0x1f, - 0x28, 0x91, 0x14, 0xf7, 0xcf, 0xad, 0xf2, 0xea, 0x1a, 0x41, 0x79, 0xa6, 0x46, 0xa0, 0xdf, 0x4b, - 0x33, 0xff, 0x2a, 0xdf, 0xbf, 0x90, 0xe6, 0xfb, 0x29, 0x45, 0xbe, 0x3a, 0x1a, 0x19, 0xbd, 0xb2, - 0xa8, 0x43, 0x79, 0x67, 0xaf, 0x57, 0xd1, 0xff, 0xb2, 0x0c, 0x9d, 0xe1, 0x69, 0x40, 0x1f, 0x7f, - 0xbd, 0x36, 0x36, 0xc9, 0xf1, 0x55, 0xb9, 0xc0, 0x57, 0x39, 0x0e, 0xa9, 0xa8, 0x82, 0x27, 0x73, - 0x08, 0x46, 0x2b, 0x9c, 0x85, 0x54, 0x9c, 0xc3, 0xd0, 0xff, 0x07, 0xce, 0x29, 0x68, 0x14, 0x98, - 0x2d, 0x59, 0x6d, 0x43, 0x37, 0x21, 0x9b, 0x62, 0x8c, 0x37, 0x12, 0x56, 0xfe, 0xdc, 0xd3, 0x4d, - 0x93, 0x62, 0x0c, 0xe8, 0x7f, 0x52, 0x06, 0x8d, 0xf9, 0x0c, 0x0f, 0xff, 0x91, 0xd2, 0xeb, 0xa5, - 0xac, 0x3a, 0x92, 0x76, 0x2e, 0x3f, 0x91, 0x67, 0x99, 0x6e, 0x9f, 0x5b, 0x51, 0x54, 0xa9, 0x33, - 0xce, 0x1e, 0x50, 0xea, 0xec, 0x1a, 0x68, 0xec, 0x82, 0x4d, 0x55, 0x6a, 0xbe, 0x6a, 0xb0, 0x4f, - 0xf6, 0xdc, 0xa1, 0xda, 0x60, 0x2c, 0xc3, 0x89, 0x7a, 0x03, 0x6a, 0x17, 0xe3, 0xb4, 0x4e, 0x12, - 0x39, 0x14, 0x28, 0xd2, 0x98, 0xa5, 0xc8, 0x11, 0x34, 0xd4, 0xd9, 0xd0, 0xcd, 0x7e, 0xbe, 0xf3, - 0x64, 0x67, 0xf7, 0xfb, 0x3b, 0x05, 0xee, 0x4b, 0x1d, 0xf1, 0x72, 0xde, 0x11, 0xaf, 0x20, 0x7e, - 0x7d, 0xf7, 0xf9, 0xce, 0xa8, 0x57, 0x15, 0x1d, 0xd0, 0xa8, 0x39, 0x36, 0x86, 0x2f, 0x7a, 0x35, - 0xca, 0x3c, 0xad, 0x7f, 0x36, 0x7c, 0xba, 0xda, 0xab, 0xa7, 0xb5, 0xaa, 0x86, 0xfe, 0x47, 0x25, - 0x58, 0x64, 0x82, 0xe4, 0x93, 0x30, 0xf9, 0x0f, 0xb1, 0xab, 0xfc, 0x21, 0xf6, 0xff, 0x6d, 0xde, - 0x05, 0x27, 0x4d, 0x9d, 0xa4, 0x3a, 0xcc, 0x09, 0xc1, 0xe6, 0xd4, 0x51, 0x45, 0xe1, 0xbf, 0x2b, - 0xc1, 0x80, 0xfd, 0xff, 0xc7, 0xa1, 0x19, 0x1c, 0x7d, 0x6f, 0xfb, 0x5c, 0x06, 0xe0, 0x22, 0xaf, - 0xf8, 0x36, 0x74, 0xe9, 0x53, 0xf5, 0x9f, 0xb8, 0x63, 0x15, 0xa5, 0xf2, 0xeb, 0x76, 0x14, 0x96, - 0x17, 0x12, 0x8f, 0xa0, 0xcd, 0x9f, 0xb4, 0x53, 0x86, 0xbc, 0x50, 0xd9, 0x2c, 0x44, 0x1f, 0x2d, - 0x1e, 0xc5, 0x75, 0xd8, 0x87, 0xe9, 0xa4, 0x2c, 0x59, 0x70, 0xbe, 0x78, 0xa9, 0xa6, 0x8c, 0x28, - 0x85, 0x70, 0x1f, 0xae, 0xcd, 0xbd, 0x87, 0x62, 0xfb, 0x5c, 0xa2, 0x96, 0xb9, 0x4d, 0xff, 0xe7, - 0x12, 0x34, 0xd7, 0xa6, 0xee, 0x31, 0x19, 0xc1, 0x77, 0x01, 0xa4, 0x7d, 0x28, 0xd5, 0xb7, 0xe1, - 0x25, 0x52, 0x0e, 0x1a, 0x62, 0xf8, 0xeb, 0xf0, 0x4f, 0x01, 0xf8, 0x8e, 0xe3, 0x89, 0x19, 0xa8, - 0x27, 0xa2, 0x4a, 0x63, 0xb2, 0x80, 0xba, 0xcb, 0x53, 0x33, 0x50, 0x95, 0xc6, 0x28, 0x81, 0xb3, - 0x0a, 0x6c, 0xe5, 0x15, 0x15, 0xd8, 0xc1, 0x0e, 0x74, 0x8b, 0x4b, 0xcc, 0x49, 0x90, 0x7d, 0x50, - 0xfc, 0xca, 0xe5, 0x3c, 0x0d, 0x73, 0xfe, 0xfa, 0xe7, 0x70, 0x69, 0x26, 0xd9, 0xfe, 0x2a, 0x8d, - 0x59, 0x10, 0x99, 0xf2, 0xac, 0xc8, 0x7c, 0x0c, 0x8b, 0x23, 0x33, 0x3a, 0x56, 0x31, 0x4c, 0x66, - 0xbc, 0x63, 0x33, 0x3a, 0x1e, 0xa7, 0x44, 0xad, 0x23, 0xb8, 0x65, 0xeb, 0x0f, 0x41, 0xe4, 0x47, - 0x2b, 0xfa, 0x63, 0x6c, 0x8a, 0xc3, 0x27, 0x32, 0x36, 0x13, 0x2f, 0x03, 0x11, 0x48, 0xbc, 0x95, - 0xbf, 0x2d, 0x41, 0x15, 0x9d, 0x7e, 0x71, 0x0f, 0xb4, 0xcf, 0xa4, 0x19, 0xc6, 0xfb, 0xd2, 0x8c, - 0x45, 0xc1, 0xc1, 0x1f, 0x10, 0xdd, 0xb2, 0x2f, 0x67, 0xf4, 0x85, 0x07, 0x25, 0xb1, 0xcc, 0xdf, - 0xf5, 0x26, 0xdf, 0x2b, 0x77, 0x92, 0xe0, 0x81, 0x82, 0x8b, 0x41, 0x61, 0xbe, 0xbe, 0xb0, 0x44, - 0xe3, 0x3f, 0xf7, 0x1d, 0x6f, 0x9d, 0xbf, 0x26, 0x15, 0xb3, 0xc1, 0xc6, 0xec, 0x0c, 0x71, 0x0f, - 0xea, 0x5b, 0x11, 0x46, 0x35, 0xe7, 0x87, 0x12, 0xf1, 0xf3, 0x01, 0x8f, 0xbe, 0xb0, 0xf2, 0x17, - 0x35, 0xa8, 0xfe, 0x48, 0x86, 0xbe, 0xf8, 0x18, 0x1a, 0xea, 0x3b, 0x23, 0x91, 0xfb, 0x9e, 0x68, - 0x40, 0x09, 0x96, 0x99, 0x0f, 0x90, 0x68, 0x97, 0x1e, 0xbf, 0x5f, 0x56, 0x62, 0x12, 0xd9, 0x67, - 0x50, 0xe7, 0x0e, 0xf5, 0x09, 0xf4, 0xf6, 0xe2, 0x50, 0x9a, 0x93, 0xdc, 0xf0, 0x22, 0xa9, 0xe6, - 0xd5, 0xab, 0x88, 0x5e, 0x77, 0xa1, 0xce, 0xa1, 0xe3, 0xcc, 0x84, 0xd9, 0x62, 0x14, 0x0d, 0xfe, - 0x10, 0x5a, 0x7b, 0x47, 0xfe, 0xd4, 0xb5, 0xf7, 0x64, 0x78, 0x22, 0x45, 0x2e, 0xfa, 0x19, 0xe4, - 0xda, 0xfa, 0x82, 0x78, 0x08, 0x75, 0x7c, 0x91, 0x70, 0x22, 0x16, 0x73, 0x11, 0x12, 0xb3, 0xc9, - 0x40, 0xe4, 0x51, 0x09, 0xa5, 0xc4, 0x87, 0xa0, 0xb1, 0xfb, 0x8e, 0xce, 0x7b, 0x43, 0x45, 0x04, - 0x7c, 0x8c, 0x9c, 0x5b, 0xaf, 0x2f, 0x88, 0x25, 0x80, 0x5c, 0xcc, 0xf9, 0xaa, 0x91, 0x8f, 0xa0, - 0xb3, 0x4e, 0x9a, 0x70, 0x37, 0x5c, 0xdd, 0xf7, 0xc3, 0x58, 0xcc, 0x7e, 0xfb, 0x38, 0x98, 0x45, - 0xe8, 0x0b, 0x18, 0xbd, 0x8d, 0xc2, 0x33, 0x1e, 0xbf, 0xa8, 0x42, 0xf5, 0x6c, 0xbf, 0x39, 0x74, - 0x11, 0xdf, 0x4c, 0xe5, 0x2a, 0xf5, 0xda, 0xe7, 0x55, 0xb6, 0x98, 0x44, 0x2c, 0x03, 0x44, 0x22, - 0xc8, 0x42, 0x0a, 0xf1, 0x16, 0x57, 0xd9, 0x66, 0x42, 0x8c, 0xf3, 0x53, 0xb2, 0xf0, 0x81, 0xa7, - 0x9c, 0x0b, 0x27, 0x66, 0xa6, 0x7c, 0x0b, 0xda, 0xf9, 0x50, 0x40, 0x50, 0xb9, 0x68, 0x4e, 0x70, - 0x50, 0x9c, 0xb6, 0xf2, 0x9f, 0x35, 0xa8, 0x7f, 0xdf, 0x0f, 0x8f, 0x65, 0x28, 0xee, 0x40, 0x9d, - 0xea, 0xa5, 0x4a, 0x96, 0xd2, 0xda, 0xe9, 0x3c, 0xda, 0xbd, 0x0f, 0x1a, 0x71, 0x06, 0x0a, 0x3b, - 0xf3, 0x2b, 0xfd, 0x57, 0x87, 0x17, 0xe7, 0x0c, 0x26, 0x31, 0x77, 0x97, 0xb9, 0x35, 0xfd, 0x9e, - 0xa0, 0x50, 0xcf, 0x1c, 0xd0, 0x93, 0x3e, 0x79, 0xb1, 0x87, 0xf2, 0xf9, 0xa0, 0x84, 0x3e, 0xc5, - 0x1e, 0x3f, 0x1e, 0x0e, 0xca, 0xfe, 0x8b, 0xc0, 0xe2, 0x9f, 0x7d, 0xfc, 0xaf, 0x2f, 0x88, 0xfb, - 0x50, 0x57, 0x26, 0x66, 0x31, 0x53, 0x84, 0xc9, 0x0d, 0x7b, 0x79, 0x94, 0x9a, 0xf0, 0x10, 0xea, - 0x6c, 0x8e, 0x79, 0x42, 0x21, 0x16, 0x61, 0x3e, 0x2d, 0xfa, 0xd0, 0xfa, 0x82, 0xb8, 0x0b, 0x0d, - 0x55, 0x0d, 0x15, 0x73, 0x4a, 0xa3, 0xe7, 0x5e, 0xac, 0xce, 0xbe, 0x16, 0xaf, 0x5f, 0x70, 0x57, - 0x79, 0xfd, 0xa2, 0x2b, 0xc6, 0xa2, 0x6f, 0x48, 0x4b, 0x3a, 0xb9, 0xc4, 0x99, 0x48, 0x28, 0x32, - 0x47, 0x7f, 0x7d, 0x02, 0x9d, 0x42, 0x92, 0x4d, 0xf4, 0x13, 0xb6, 0x98, 0xcd, 0xbb, 0x9d, 0xd3, - 0x1a, 0xdf, 0x01, 0x4d, 0xa5, 0x05, 0xf6, 0x15, 0x63, 0xcc, 0x49, 0x42, 0x0c, 0xce, 0xe7, 0x05, - 0x48, 0x15, 0xfc, 0x00, 0x2e, 0xcf, 0xb1, 0xad, 0x82, 0xbe, 0x66, 0xbd, 0xd8, 0x79, 0x18, 0xdc, - 0xb8, 0xb0, 0x3f, 0x25, 0xc0, 0xaf, 0x26, 0x4e, 0xdf, 0x05, 0xc8, 0x4c, 0x0c, 0xcb, 0xc6, 0x39, - 0x03, 0x35, 0xb8, 0x3a, 0x8b, 0x4e, 0x36, 0x5d, 0xeb, 0xff, 0xfd, 0x57, 0xd7, 0x4b, 0xbf, 0xf8, - 0xea, 0x7a, 0xe9, 0xdf, 0xbe, 0xba, 0x5e, 0xfa, 0xf9, 0x2f, 0xaf, 0x2f, 0xfc, 0xe2, 0x97, 0xd7, - 0x17, 0xfe, 0xf1, 0x97, 0xd7, 0x17, 0xf6, 0xeb, 0xf4, 0xa7, 0xb9, 0x47, 0xff, 0x13, 0x00, 0x00, - 0xff, 0xff, 0x8f, 0xfa, 0xf4, 0xef, 0xaa, 0x37, 0x00, 0x00, + 0x5c, 0xe1, 0x02, 0x02, 0x81, 0x90, 0xb8, 0x21, 0x84, 0x38, 0xed, 0x11, 0x04, 0x8c, 0xd0, 0x2c, + 0xe2, 0xe0, 0x03, 0x12, 0xe2, 0x0f, 0xa0, 0x88, 0xf8, 0xf2, 0x55, 0x5d, 0x6d, 0x7b, 0x16, 0x71, + 0xe0, 0x54, 0x5f, 0xc4, 0xf7, 0x8e, 0x2f, 0xde, 0x91, 0x05, 0xcd, 0x60, 0x7f, 0x39, 0x08, 0xfd, + 0xd8, 0x17, 0xe5, 0x60, 0x7f, 0xa0, 0x99, 0x81, 0xc3, 0xe0, 0xe0, 0xce, 0xa1, 0x13, 0x1f, 0x4d, + 0xf7, 0x97, 0x2d, 0x7f, 0x72, 0xdf, 0x3e, 0x0c, 0xcd, 0xe0, 0xe8, 0x9e, 0xe3, 0xdf, 0xdf, 0x37, + 0xed, 0x43, 0x19, 0xde, 0x3f, 0x79, 0x74, 0x3f, 0xd8, 0xbf, 0x9f, 0x4c, 0x1d, 0xdc, 0xcb, 0x8d, + 0x3d, 0xf4, 0x0f, 0xfd, 0xfb, 0x84, 0xde, 0x9f, 0x1e, 0x10, 0x44, 0x00, 0xb5, 0x78, 0xb8, 0x3e, + 0x80, 0xea, 0xb6, 0x13, 0xc5, 0x42, 0x40, 0x75, 0xea, 0xd8, 0x51, 0xbf, 0x74, 0xb3, 0xb2, 0x54, + 0x37, 0xa8, 0xad, 0x3f, 0x05, 0x6d, 0x64, 0x46, 0xc7, 0x2f, 0x4c, 0x77, 0x2a, 0x45, 0x0f, 0x2a, + 0x27, 0xa6, 0xdb, 0x2f, 0xdd, 0x2c, 0x2d, 0xb5, 0x0d, 0x6c, 0x8a, 0x65, 0x68, 0x9e, 0x98, 0xee, + 0x38, 0x3e, 0x0b, 0x64, 0xbf, 0x7c, 0xb3, 0xb4, 0xd4, 0x5d, 0xb9, 0xbc, 0x1c, 0xec, 0x2f, 0x3f, + 0xf3, 0xa3, 0xd8, 0xf1, 0x0e, 0x97, 0x5f, 0x98, 0xee, 0xe8, 0x2c, 0x90, 0x46, 0xe3, 0x84, 0x1b, + 0xfa, 0x2e, 0xb4, 0xf6, 0x42, 0x6b, 0x73, 0xea, 0x59, 0xb1, 0xe3, 0x7b, 0xb8, 0xa3, 0x67, 0x4e, + 0x24, 0xad, 0xa8, 0x19, 0xd4, 0x46, 0x9c, 0x19, 0x1e, 0x46, 0xfd, 0xca, 0xcd, 0x0a, 0xe2, 0xb0, + 0x2d, 0xfa, 0xd0, 0x70, 0xa2, 0x75, 0x7f, 0xea, 0xc5, 0xfd, 0xea, 0xcd, 0xd2, 0x52, 0xd3, 0x48, + 0x40, 0xfd, 0x2f, 0x2b, 0x50, 0xfb, 0xde, 0x54, 0x86, 0x67, 0x34, 0x2f, 0x8e, 0xc3, 0x64, 0x2d, + 0x6c, 0x8b, 0x2b, 0x50, 0x73, 0x4d, 0xef, 0x30, 0xea, 0x97, 0x69, 0x31, 0x06, 0xc4, 0x35, 0xd0, + 0xcc, 0x83, 0x58, 0x86, 0xe3, 0xa9, 0x63, 0xf7, 0x2b, 0x37, 0x4b, 0x4b, 0x75, 0xa3, 0x49, 0x88, + 0xe7, 0x8e, 0x2d, 0xbe, 0x01, 0x4d, 0xdb, 0x1f, 0x5b, 0xf9, 0xbd, 0x6c, 0x9f, 0xf6, 0x12, 0xb7, + 0xa0, 0x39, 0x75, 0xec, 0xb1, 0xeb, 0x44, 0x71, 0xbf, 0x76, 0xb3, 0xb4, 0xd4, 0x5a, 0x69, 0xe2, + 0x65, 0x91, 0x76, 0x46, 0x63, 0xea, 0xd8, 0x44, 0xc4, 0x3b, 0xd0, 0x8c, 0x42, 0x6b, 0x7c, 0x30, + 0xf5, 0xac, 0x7e, 0x9d, 0x06, 0x5d, 0xc2, 0x41, 0xb9, 0x5b, 0x1b, 0x8d, 0x88, 0x01, 0xbc, 0x56, + 0x28, 0x4f, 0x64, 0x18, 0xc9, 0x7e, 0x83, 0xb7, 0x52, 0xa0, 0x78, 0x00, 0xad, 0x03, 0xd3, 0x92, + 0xf1, 0x38, 0x30, 0x43, 0x73, 0xd2, 0x6f, 0x66, 0x0b, 0x6d, 0x22, 0xfa, 0x19, 0x62, 0x23, 0x03, + 0x0e, 0x52, 0x40, 0x3c, 0x82, 0x0e, 0x41, 0xd1, 0xf8, 0xc0, 0x71, 0x63, 0x19, 0xf6, 0x35, 0x9a, + 0xd3, 0xa5, 0x39, 0x84, 0x19, 0x85, 0x52, 0x1a, 0x6d, 0x1e, 0xc4, 0x18, 0xf1, 0x2e, 0x80, 0x3c, + 0x0d, 0x4c, 0xcf, 0x1e, 0x9b, 0xae, 0xdb, 0x07, 0x3a, 0x83, 0xc6, 0x98, 0x55, 0xd7, 0x15, 0x6f, + 0xe3, 0xf9, 0x4c, 0x7b, 0x1c, 0x47, 0xfd, 0xce, 0xcd, 0xd2, 0x52, 0xd5, 0xa8, 0x23, 0x38, 0x8a, + 0x90, 0xae, 0x96, 0x69, 0x1d, 0xc9, 0x7e, 0xf7, 0x66, 0x69, 0xa9, 0x66, 0x30, 0x80, 0xd8, 0x03, + 0x27, 0x8c, 0xe2, 0xfe, 0x25, 0xc6, 0x12, 0x20, 0xae, 0x42, 0xdd, 0x3f, 0x38, 0x88, 0x64, 0xdc, + 0xef, 0x11, 0x5a, 0x41, 0xfa, 0x0a, 0x68, 0xc4, 0x55, 0x44, 0xb5, 0xdb, 0x50, 0x3f, 0x41, 0x80, + 0x99, 0xaf, 0xb5, 0xd2, 0xc1, 0x63, 0xa7, 0x8c, 0x67, 0xa8, 0x4e, 0xfd, 0x3a, 0x34, 0xb7, 0x4d, + 0xef, 0x30, 0xe1, 0x56, 0x7c, 0x4e, 0x9a, 0xa0, 0x19, 0xd4, 0xd6, 0xff, 0xa0, 0x0c, 0x75, 0x43, + 0x46, 0x53, 0x37, 0x16, 0x1f, 0x02, 0xe0, 0x63, 0x4d, 0xcc, 0x38, 0x74, 0x4e, 0xd5, 0xaa, 0xd9, + 0x73, 0x69, 0x53, 0xc7, 0x7e, 0x4a, 0x5d, 0xe2, 0x01, 0xb4, 0x69, 0xf5, 0x64, 0x68, 0x39, 0x3b, + 0x40, 0x7a, 0x3e, 0xa3, 0x45, 0x43, 0xd4, 0x8c, 0xab, 0x50, 0x27, 0xfe, 0x60, 0x1e, 0xed, 0x18, + 0x0a, 0x12, 0xb7, 0xa1, 0xeb, 0x78, 0x31, 0xbe, 0x9f, 0x15, 0x8f, 0x6d, 0x19, 0x25, 0x0c, 0xd4, + 0x49, 0xb1, 0x1b, 0x32, 0x8a, 0xc5, 0x43, 0xe0, 0x47, 0x48, 0x36, 0xac, 0xd1, 0x86, 0xdd, 0xf4, + 0x71, 0x23, 0xde, 0x91, 0xc6, 0xa8, 0x1d, 0xef, 0x41, 0x0b, 0xef, 0x97, 0xcc, 0xa8, 0xd3, 0x8c, + 0x36, 0xdd, 0x46, 0x91, 0xc3, 0x00, 0x1c, 0xa0, 0x86, 0x23, 0x69, 0x90, 0x49, 0x99, 0xa9, 0xa8, + 0xad, 0x0f, 0xa1, 0xb6, 0x1b, 0xda, 0x32, 0x9c, 0x2b, 0x27, 0x02, 0xaa, 0xb6, 0x8c, 0x2c, 0x12, + 0xe1, 0xa6, 0x41, 0xed, 0x4c, 0x76, 0x2a, 0x39, 0xd9, 0xd1, 0xff, 0xb0, 0x04, 0xad, 0x3d, 0x3f, + 0x8c, 0x9f, 0xca, 0x28, 0x32, 0x0f, 0xa5, 0xb8, 0x01, 0x35, 0x1f, 0x97, 0x55, 0x14, 0xd6, 0xf0, + 0x4c, 0xb4, 0x8f, 0xc1, 0xf8, 0x99, 0x77, 0x28, 0x5f, 0xfc, 0x0e, 0xc8, 0x53, 0x24, 0x75, 0x15, + 0xc5, 0x53, 0x24, 0x73, 0x19, 0xf7, 0x54, 0xf3, 0xdc, 0x73, 0x21, 0x6b, 0xea, 0xdf, 0x02, 0xc0, + 0xf3, 0x7d, 0x4d, 0x2e, 0xd0, 0x7f, 0x56, 0x82, 0x96, 0x61, 0x1e, 0xc4, 0xeb, 0xbe, 0x17, 0xcb, + 0xd3, 0x58, 0x74, 0xa1, 0xec, 0xd8, 0x44, 0xa3, 0xba, 0x51, 0x76, 0x6c, 0x3c, 0xdd, 0x61, 0xe8, + 0x4f, 0x03, 0x22, 0x51, 0xc7, 0x60, 0x80, 0x68, 0x69, 0xdb, 0x21, 0x1d, 0x19, 0x69, 0x69, 0xdb, + 0xa1, 0xb8, 0x01, 0xad, 0xc8, 0x33, 0x83, 0xe8, 0xc8, 0x8f, 0xf1, 0x74, 0x55, 0x3a, 0x1d, 0x24, + 0xa8, 0x51, 0x84, 0x42, 0xe7, 0x44, 0x63, 0x57, 0x9a, 0xa1, 0x27, 0x43, 0x52, 0x24, 0x4d, 0x43, + 0x73, 0xa2, 0x6d, 0x46, 0xe8, 0x3f, 0xab, 0x40, 0xfd, 0xa9, 0x9c, 0xec, 0xcb, 0xf0, 0xdc, 0x21, + 0x1e, 0x40, 0x93, 0xf6, 0x1d, 0x3b, 0x36, 0x9f, 0x63, 0xed, 0xad, 0x97, 0x5f, 0xde, 0x58, 0x24, + 0xdc, 0x96, 0xfd, 0xb1, 0x3f, 0x71, 0x62, 0x39, 0x09, 0xe2, 0x33, 0xa3, 0xa1, 0x50, 0x73, 0x0f, + 0x78, 0x15, 0xea, 0xae, 0x34, 0xf1, 0xcd, 0x98, 0x3d, 0x15, 0x24, 0xee, 0x41, 0xc3, 0x9c, 0x8c, + 0x6d, 0x69, 0xda, 0x7c, 0xa8, 0xb5, 0x2b, 0x2f, 0xbf, 0xbc, 0xd1, 0x33, 0x27, 0x1b, 0xd2, 0xcc, + 0xaf, 0x5d, 0x67, 0x8c, 0xf8, 0x04, 0x79, 0x32, 0x8a, 0xc7, 0xd3, 0xc0, 0x36, 0x63, 0x49, 0xba, + 0xae, 0xba, 0xd6, 0x7f, 0xf9, 0xe5, 0x8d, 0x2b, 0x88, 0x7e, 0x4e, 0xd8, 0xdc, 0x34, 0xc8, 0xb0, + 0xa8, 0xf7, 0x92, 0xeb, 0x2b, 0xbd, 0xa7, 0x40, 0xb1, 0x05, 0x8b, 0x96, 0x3b, 0x8d, 0x50, 0x39, + 0x3b, 0xde, 0x81, 0x3f, 0xf6, 0x3d, 0xf7, 0x8c, 0x1e, 0xb8, 0xb9, 0xf6, 0xee, 0xcb, 0x2f, 0x6f, + 0x7c, 0x43, 0x75, 0x6e, 0x79, 0x07, 0xfe, 0xae, 0xe7, 0x9e, 0xe5, 0xd6, 0xbf, 0x34, 0xd3, 0x25, + 0x7e, 0x03, 0xba, 0x07, 0x7e, 0x68, 0xc9, 0x71, 0x4a, 0xb2, 0x2e, 0xad, 0x33, 0x78, 0xf9, 0xe5, + 0x8d, 0xab, 0xd4, 0xf3, 0xf8, 0x1c, 0xdd, 0xda, 0x79, 0xbc, 0xfe, 0xaf, 0x65, 0xa8, 0x51, 0x5b, + 0x3c, 0x80, 0xc6, 0x84, 0x9e, 0x24, 0xd1, 0x4f, 0x57, 0x91, 0x87, 0xa8, 0x6f, 0x99, 0xdf, 0x2a, + 0x1a, 0x7a, 0x71, 0x78, 0x66, 0x24, 0xc3, 0x70, 0x46, 0x6c, 0xee, 0xbb, 0x32, 0x8e, 0x14, 0xcf, + 0xe7, 0x66, 0x8c, 0xb8, 0x43, 0xcd, 0x50, 0xc3, 0x66, 0xf9, 0xa6, 0x72, 0x8e, 0x6f, 0x06, 0xd0, + 0xb4, 0x8e, 0xa4, 0x75, 0x1c, 0x4d, 0x27, 0x8a, 0xab, 0x52, 0x58, 0xdc, 0x82, 0x0e, 0xb5, 0x03, + 0xdf, 0xf1, 0x68, 0x7a, 0x8d, 0x06, 0xb4, 0x33, 0xe4, 0x28, 0x1a, 0x6c, 0x42, 0x3b, 0x7f, 0x58, + 0x34, 0xe7, 0xc7, 0xf2, 0x8c, 0xf8, 0xab, 0x6a, 0x60, 0x53, 0xdc, 0x84, 0x1a, 0x29, 0x3a, 0xe2, + 0xae, 0xd6, 0x0a, 0xe0, 0x99, 0x79, 0x8a, 0xc1, 0x1d, 0x9f, 0x96, 0xbf, 0x5d, 0xc2, 0x75, 0xf2, + 0x57, 0xc8, 0xaf, 0xa3, 0x5d, 0xbc, 0x0e, 0x4f, 0xc9, 0xad, 0xa3, 0xfb, 0xd0, 0xd8, 0x76, 0x2c, + 0xe9, 0x45, 0x64, 0xf4, 0xa7, 0x91, 0x4c, 0x95, 0x12, 0xb6, 0xf1, 0xbe, 0x13, 0xf3, 0x74, 0xc7, + 0xb7, 0x65, 0x44, 0xeb, 0x54, 0x8d, 0x14, 0xc6, 0x3e, 0x79, 0x1a, 0x38, 0xe1, 0xd9, 0x88, 0x29, + 0x55, 0x31, 0x52, 0x18, 0xb9, 0x4b, 0x7a, 0xb8, 0x99, 0x9d, 0x18, 0x70, 0x05, 0xea, 0x7f, 0x52, + 0x85, 0xf6, 0x8f, 0x64, 0xe8, 0x3f, 0x0b, 0xfd, 0xc0, 0x8f, 0x4c, 0x57, 0xac, 0x16, 0x69, 0xce, + 0x6f, 0x7b, 0x13, 0x4f, 0x9b, 0x1f, 0xb6, 0xbc, 0x97, 0x3e, 0x02, 0xbf, 0x59, 0xfe, 0x55, 0x74, + 0xa8, 0xf3, 0x9b, 0xcf, 0xa1, 0x99, 0xea, 0xc1, 0x31, 0xfc, 0xca, 0x74, 0xd6, 0x22, 0x3d, 0x54, + 0x0f, 0x4a, 0xe5, 0xc4, 0x3c, 0x7d, 0xbe, 0xb5, 0xa1, 0xde, 0x56, 0x41, 0x8a, 0x0a, 0xa3, 0x53, + 0x6f, 0x94, 0x3c, 0x6a, 0x0a, 0xe3, 0x4d, 0x91, 0x22, 0xd1, 0xd6, 0x46, 0xbf, 0x4d, 0x5d, 0x09, + 0x28, 0xde, 0x01, 0x6d, 0x62, 0x9e, 0xa2, 0x42, 0xdb, 0xb2, 0x59, 0x34, 0x8d, 0x0c, 0x21, 0xde, + 0x83, 0x4a, 0x7c, 0xea, 0x91, 0xec, 0xa1, 0x57, 0x81, 0x4e, 0xe6, 0xe8, 0xd4, 0x53, 0xaa, 0xcf, + 0xc0, 0x3e, 0x7c, 0x53, 0xcb, 0xb1, 0xc9, 0x89, 0xd0, 0x0c, 0x6c, 0x8a, 0xdb, 0xd0, 0x70, 0xf9, + 0xb5, 0xc8, 0x51, 0x68, 0xad, 0xb4, 0x58, 0x8f, 0x12, 0xca, 0x48, 0xfa, 0xc4, 0xc7, 0xd0, 0x4c, + 0xa8, 0xd3, 0x6f, 0xd1, 0xb8, 0x5e, 0x42, 0xcf, 0x84, 0x8c, 0x46, 0x3a, 0x42, 0x3c, 0x00, 0xcd, + 0x96, 0xae, 0x8c, 0xe5, 0xd8, 0x63, 0x45, 0xde, 0x62, 0x07, 0x72, 0x83, 0x90, 0x3b, 0x91, 0x21, + 0x7f, 0x32, 0x95, 0x51, 0x6c, 0x34, 0x6d, 0x85, 0x10, 0xef, 0x67, 0x82, 0xd5, 0xa5, 0xe7, 0xca, + 0x13, 0x33, 0xe9, 0x1a, 0x7c, 0x17, 0x2e, 0xcd, 0x3c, 0x5a, 0x9e, 0x4b, 0x3b, 0xcc, 0xa5, 0x57, + 0xf2, 0x5c, 0x5a, 0xcd, 0x71, 0xe6, 0xe7, 0xd5, 0x66, 0xb3, 0xa7, 0xe9, 0xff, 0x55, 0x81, 0x4b, + 0x4a, 0x60, 0x8e, 0x9c, 0x60, 0x2f, 0x56, 0xaa, 0x8b, 0x0c, 0x93, 0xe2, 0xd5, 0xaa, 0x91, 0x80, + 0xe2, 0xd7, 0xa1, 0x4e, 0x9a, 0x26, 0x11, 0xf8, 0x1b, 0x19, 0x23, 0xa4, 0xd3, 0x59, 0x01, 0x28, + 0x2e, 0x52, 0xc3, 0xc5, 0x37, 0xa1, 0xf6, 0x85, 0x0c, 0x7d, 0x36, 0xb4, 0xad, 0x95, 0xeb, 0xf3, + 0xe6, 0x21, 0xf9, 0xd4, 0x34, 0x1e, 0xfc, 0xbf, 0xe5, 0x17, 0xf8, 0x3a, 0xfc, 0xf2, 0x3e, 0x1a, + 0xdb, 0x89, 0x7f, 0x22, 0xed, 0x7e, 0x23, 0xa3, 0xb9, 0x62, 0xf2, 0xa4, 0x2b, 0x61, 0x99, 0xe6, + 0x5c, 0x96, 0xd1, 0x2e, 0x66, 0x99, 0xc1, 0x06, 0xb4, 0x72, 0x74, 0x99, 0xf3, 0x50, 0x37, 0x8a, + 0xea, 0x44, 0x4b, 0x55, 0x69, 0x5e, 0x2b, 0x6d, 0x00, 0x64, 0x54, 0xfa, 0x55, 0x75, 0x9b, 0xfe, + 0xdb, 0x25, 0xb8, 0xb4, 0xee, 0x7b, 0x9e, 0x24, 0x57, 0x9d, 0xdf, 0x3c, 0x13, 0xf1, 0xd2, 0x85, + 0x22, 0xfe, 0x11, 0xd4, 0x22, 0x1c, 0xac, 0x56, 0xbf, 0x3c, 0xe7, 0x11, 0x0d, 0x1e, 0x81, 0x8a, + 0x7e, 0x62, 0x9e, 0x8e, 0x03, 0xe9, 0xd9, 0x8e, 0x77, 0x98, 0x28, 0xfa, 0x89, 0x79, 0xfa, 0x8c, + 0x31, 0xfa, 0x5f, 0x95, 0x01, 0x3e, 0x93, 0xa6, 0x1b, 0x1f, 0xa1, 0x31, 0xc3, 0x17, 0x75, 0xbc, + 0x28, 0x36, 0x3d, 0x2b, 0x09, 0x94, 0x52, 0x18, 0x5f, 0x14, 0x6d, 0xba, 0x8c, 0x58, 0x45, 0x6a, + 0x46, 0x02, 0x22, 0x7f, 0xe0, 0x76, 0xd3, 0x48, 0xd9, 0x7e, 0x05, 0x65, 0x8e, 0x4c, 0x95, 0xd0, + 0xca, 0x91, 0xe9, 0x43, 0x03, 0x03, 0x0f, 0xc7, 0xf7, 0x88, 0x69, 0x34, 0x23, 0x01, 0x71, 0x9d, + 0x69, 0x10, 0x3b, 0x13, 0xb6, 0xf0, 0x15, 0x43, 0x41, 0x78, 0x2a, 0xb4, 0xe8, 0x43, 0xeb, 0xc8, + 0x27, 0x45, 0x52, 0x31, 0x52, 0x18, 0x57, 0xf3, 0xbd, 0x43, 0x1f, 0x6f, 0xd7, 0x24, 0xe7, 0x31, + 0x01, 0xf9, 0x2e, 0xb6, 0x3c, 0xc5, 0x2e, 0x8d, 0xba, 0x52, 0x18, 0xe9, 0x22, 0xe5, 0xf8, 0x40, + 0x9a, 0xf1, 0x34, 0x94, 0x51, 0x1f, 0xa8, 0x1b, 0xa4, 0xdc, 0x54, 0x18, 0xf1, 0x1e, 0xb4, 0x91, + 0x70, 0x66, 0x14, 0x39, 0x87, 0x9e, 0xb4, 0x49, 0xbd, 0x54, 0x0d, 0x24, 0xe6, 0xaa, 0x42, 0xe9, + 0x7f, 0x53, 0x86, 0x3a, 0xeb, 0x82, 0x82, 0xb3, 0x54, 0x7a, 0x23, 0x67, 0xe9, 0x1d, 0xd0, 0x82, + 0x50, 0xda, 0x8e, 0x95, 0xbc, 0xa3, 0x66, 0x64, 0x08, 0x8a, 0x6e, 0xd0, 0x3b, 0x20, 0x7a, 0x36, + 0x0d, 0x06, 0x84, 0x0e, 0x1d, 0xdf, 0x1b, 0xdb, 0x4e, 0x74, 0x3c, 0xde, 0x3f, 0x8b, 0x65, 0xa4, + 0x68, 0xd1, 0xf2, 0xbd, 0x0d, 0x27, 0x3a, 0x5e, 0x43, 0x14, 0x92, 0x90, 0x65, 0x84, 0x64, 0xa3, + 0x69, 0x28, 0x48, 0x3c, 0x02, 0x8d, 0x7c, 0x58, 0x72, 0x72, 0x34, 0x72, 0x4e, 0xae, 0xbe, 0xfc, + 0xf2, 0x86, 0x40, 0xe4, 0x8c, 0x77, 0xd3, 0x4c, 0x70, 0xe8, 0xa5, 0xe1, 0x64, 0x34, 0x57, 0x24, + 0xc3, 0xec, 0xa5, 0x21, 0x6a, 0x14, 0xe5, 0xbd, 0x34, 0xc6, 0x88, 0x7b, 0x20, 0xa6, 0x9e, 0xe5, + 0x4f, 0x02, 0x64, 0x0a, 0x69, 0xab, 0x43, 0xb6, 0xe8, 0x90, 0x8b, 0xf9, 0x1e, 0x3a, 0xaa, 0xfe, + 0x2f, 0x65, 0x68, 0x6f, 0x38, 0xa1, 0xb4, 0x62, 0x69, 0x0f, 0xed, 0x43, 0x89, 0x67, 0x97, 0x5e, + 0xec, 0xc4, 0x67, 0xca, 0x0d, 0x55, 0x50, 0x1a, 0x45, 0x94, 0x8b, 0xd1, 0x36, 0x4b, 0x58, 0x85, + 0x12, 0x04, 0x0c, 0x88, 0x15, 0x00, 0x8e, 0xaf, 0x28, 0x49, 0x50, 0xbd, 0x38, 0x49, 0xa0, 0xd1, + 0x30, 0x6c, 0x62, 0x10, 0xce, 0x73, 0x1c, 0xf6, 0x45, 0xeb, 0x94, 0x41, 0x98, 0x4a, 0xf6, 0x68, + 0x29, 0xec, 0x6b, 0xf0, 0xc6, 0xd8, 0x16, 0xb7, 0xa0, 0xec, 0x07, 0x44, 0x5c, 0xb5, 0x74, 0xfe, + 0x0a, 0xcb, 0xbb, 0x81, 0x51, 0xf6, 0x03, 0x94, 0x62, 0x8e, 0x7d, 0x89, 0xf1, 0x50, 0x8a, 0xd1, + 0xee, 0x51, 0xc4, 0x65, 0xa8, 0x1e, 0xa1, 0x43, 0xdb, 0x74, 0x5d, 0xff, 0xa7, 0xd2, 0x7e, 0x16, + 0x4a, 0x3b, 0xe1, 0xc1, 0x02, 0x0e, 0xb9, 0xc4, 0x33, 0x27, 0x32, 0x0a, 0x4c, 0x4b, 0x2a, 0x16, + 0xcc, 0x10, 0xfa, 0x55, 0x28, 0xef, 0x06, 0xa2, 0x01, 0x95, 0xbd, 0xe1, 0xa8, 0xb7, 0x80, 0x8d, + 0x8d, 0xe1, 0x76, 0x0f, 0x2d, 0x4a, 0xbd, 0xd7, 0xd0, 0xbf, 0x2a, 0x83, 0xf6, 0x74, 0x1a, 0x9b, + 0xa8, 0x5b, 0x22, 0xbc, 0x65, 0x91, 0x43, 0x33, 0x56, 0xfc, 0x06, 0x34, 0xa3, 0xd8, 0x0c, 0xc9, + 0x2b, 0x61, 0xeb, 0xd4, 0x20, 0x78, 0x14, 0x89, 0x0f, 0xa0, 0x26, 0xed, 0x43, 0x99, 0x98, 0x8b, + 0xde, 0xec, 0x7d, 0x0d, 0xee, 0x16, 0x4b, 0x50, 0x8f, 0xac, 0x23, 0x39, 0x31, 0xfb, 0xd5, 0x6c, + 0xe0, 0x1e, 0x61, 0xd8, 0x0d, 0x37, 0x54, 0xbf, 0x78, 0x1f, 0x6a, 0xf8, 0x36, 0x91, 0x8a, 0x2b, + 0x29, 0x12, 0xc5, 0x67, 0x50, 0xc3, 0xb8, 0x13, 0x19, 0xcf, 0x0e, 0xfd, 0x60, 0xec, 0x07, 0x44, + 0xfb, 0xee, 0xca, 0x15, 0xd2, 0x71, 0xc9, 0x6d, 0x96, 0x37, 0x42, 0x3f, 0xd8, 0x0d, 0x8c, 0xba, + 0x4d, 0xbf, 0x18, 0xe5, 0xd0, 0x70, 0xe6, 0x08, 0x36, 0x0a, 0x1a, 0x62, 0x38, 0x95, 0xb4, 0x04, + 0xcd, 0x89, 0x8c, 0x4d, 0xdb, 0x8c, 0x4d, 0x65, 0x1b, 0xda, 0xac, 0x32, 0x19, 0x67, 0xa4, 0xbd, + 0xfa, 0x7d, 0xa8, 0xf3, 0xd2, 0xa2, 0x09, 0xd5, 0x9d, 0xdd, 0x9d, 0x21, 0x93, 0x75, 0x75, 0x7b, + 0xbb, 0x57, 0x42, 0xd4, 0xc6, 0xea, 0x68, 0xb5, 0x57, 0xc6, 0xd6, 0xe8, 0x87, 0xcf, 0x86, 0xbd, + 0x8a, 0xfe, 0x0f, 0x25, 0x68, 0x26, 0xeb, 0x88, 0x4f, 0x01, 0x50, 0x84, 0xc7, 0x47, 0x8e, 0x97, + 0x3a, 0x78, 0xd7, 0xf2, 0x3b, 0x2d, 0xe3, 0xab, 0x7e, 0x86, 0xbd, 0x6c, 0x5e, 0x49, 0xe2, 0x09, + 0x1e, 0xec, 0x41, 0xb7, 0xd8, 0x39, 0xc7, 0xd3, 0xbd, 0x9b, 0xb7, 0x2a, 0xdd, 0x95, 0xb7, 0x0a, + 0x4b, 0xe3, 0x4c, 0x62, 0xed, 0x9c, 0x81, 0xb9, 0x07, 0xcd, 0x04, 0x2d, 0x5a, 0xd0, 0xd8, 0x18, + 0x6e, 0xae, 0x3e, 0xdf, 0x46, 0x56, 0x01, 0xa8, 0xef, 0x6d, 0xed, 0x3c, 0xde, 0x1e, 0xf2, 0xb5, + 0xb6, 0xb7, 0xf6, 0x46, 0xbd, 0xb2, 0xfe, 0xfb, 0x25, 0x68, 0x26, 0x9e, 0x8c, 0xf8, 0x08, 0x9d, + 0x0f, 0x72, 0xd2, 0x94, 0x25, 0xa2, 0x8c, 0x50, 0x2e, 0x6c, 0x35, 0x92, 0x7e, 0x94, 0x45, 0x52, + 0xac, 0x89, 0x6f, 0x43, 0x40, 0x3e, 0x6a, 0xae, 0x14, 0x12, 0x3a, 0x02, 0xaa, 0xb6, 0xef, 0x49, + 0xe5, 0x30, 0x53, 0x9b, 0x78, 0xd0, 0xf1, 0x2c, 0x99, 0x85, 0x13, 0x0d, 0x82, 0x47, 0x91, 0x1e, + 0xb3, 0x1f, 0x9d, 0x1e, 0x2c, 0xdd, 0xad, 0x94, 0xdf, 0xed, 0x5c, 0x50, 0x52, 0x3e, 0x1f, 0x94, + 0x64, 0x86, 0xb3, 0xf6, 0x3a, 0xc3, 0xa9, 0xff, 0x69, 0x15, 0xba, 0x86, 0x8c, 0x62, 0x3f, 0x94, + 0xca, 0x2f, 0x7c, 0x95, 0x08, 0xbd, 0x0b, 0x10, 0xf2, 0xe0, 0x6c, 0x6b, 0x4d, 0x61, 0x38, 0x9a, + 0x72, 0x7d, 0x8b, 0x78, 0x57, 0x59, 0xc8, 0x14, 0x16, 0xd7, 0x40, 0xdb, 0x37, 0xad, 0x63, 0x5e, + 0x96, 0xed, 0x64, 0x93, 0x11, 0xbc, 0xae, 0x69, 0x59, 0x32, 0x8a, 0xc6, 0xc8, 0x0a, 0x6c, 0x2d, + 0x35, 0xc6, 0x3c, 0x91, 0x67, 0xd8, 0x1d, 0x49, 0x2b, 0x94, 0x31, 0x75, 0xd7, 0xb9, 0x9b, 0x31, + 0xd8, 0x7d, 0x0b, 0x3a, 0x91, 0x8c, 0xd0, 0xb2, 0x8e, 0x63, 0xff, 0x58, 0x7a, 0x4a, 0x8f, 0xb5, + 0x15, 0x72, 0x84, 0x38, 0x54, 0x31, 0xa6, 0xe7, 0x7b, 0x67, 0x13, 0x7f, 0x1a, 0x29, 0x9b, 0x91, + 0x21, 0xc4, 0x32, 0x5c, 0x96, 0x9e, 0x15, 0x9e, 0x05, 0x78, 0x56, 0xdc, 0x65, 0x7c, 0xe0, 0xb8, + 0x52, 0xb9, 0xea, 0x8b, 0x59, 0xd7, 0x13, 0x79, 0xb6, 0xe9, 0xb8, 0x12, 0x4f, 0x74, 0x62, 0x4e, + 0xdd, 0x78, 0x4c, 0x99, 0x00, 0xe0, 0x13, 0x11, 0x66, 0xd5, 0xb6, 0x43, 0x71, 0x07, 0x16, 0xb9, + 0x3b, 0xf4, 0x5d, 0xe9, 0xd8, 0xbc, 0x58, 0x8b, 0x46, 0x5d, 0xa2, 0x0e, 0x83, 0xf0, 0xb4, 0xd4, + 0x32, 0x5c, 0xe6, 0xb1, 0x7c, 0xa1, 0x64, 0x74, 0x9b, 0xb7, 0xa6, 0xae, 0x3d, 0xd5, 0x53, 0xdc, + 0x3a, 0x30, 0xe3, 0x23, 0xf2, 0xef, 0x93, 0xad, 0x9f, 0x99, 0xf1, 0x11, 0x5a, 0x7c, 0xee, 0x3e, + 0x70, 0xa4, 0xcb, 0xf1, 0xb9, 0x66, 0xf0, 0x8c, 0x4d, 0xc4, 0xa0, 0xc5, 0x57, 0x03, 0xfc, 0x70, + 0x62, 0x72, 0x62, 0x51, 0x33, 0x78, 0xd2, 0x26, 0xa1, 0x70, 0x0b, 0xf5, 0x56, 0xde, 0x74, 0x42, + 0x29, 0xc6, 0xaa, 0xa1, 0x5e, 0x6f, 0x67, 0x3a, 0xd1, 0x5f, 0x56, 0xa0, 0x99, 0x86, 0x7b, 0x77, + 0x41, 0x9b, 0x24, 0xfa, 0x4a, 0x39, 0x6a, 0x9d, 0x82, 0x12, 0x33, 0xb2, 0x7e, 0xf1, 0x2e, 0x94, + 0x8f, 0x4f, 0x94, 0xee, 0xec, 0x2c, 0x73, 0xa2, 0x3d, 0xd8, 0x7f, 0xb4, 0xfc, 0xe4, 0x85, 0x51, + 0x3e, 0x3e, 0xf9, 0x1a, 0x7c, 0x2b, 0x3e, 0x84, 0x4b, 0x96, 0x2b, 0x4d, 0x6f, 0x9c, 0x79, 0x17, + 0xcc, 0x17, 0x5d, 0x42, 0x3f, 0x4b, 0x5d, 0x8c, 0xdb, 0x50, 0xb3, 0xa5, 0x1b, 0x9b, 0xf9, 0x7c, + 0xef, 0x6e, 0x68, 0x5a, 0xae, 0xdc, 0x40, 0xb4, 0xc1, 0xbd, 0xa8, 0x3b, 0xd3, 0x10, 0x2b, 0xa7, + 0x3b, 0xe7, 0x84, 0x57, 0xa9, 0x5c, 0x42, 0x5e, 0x2e, 0xef, 0xc2, 0xa2, 0x3c, 0x0d, 0xc8, 0x60, + 0x8c, 0xd3, 0x8c, 0x02, 0x5b, 0xb2, 0x5e, 0xd2, 0xb1, 0x9e, 0x64, 0x16, 0x3e, 0x46, 0x95, 0x41, + 0x42, 0x43, 0xcf, 0xdc, 0x5a, 0x11, 0xa4, 0x73, 0x0a, 0x62, 0x68, 0x24, 0x43, 0xc4, 0x47, 0xa0, + 0x59, 0xb6, 0x35, 0x66, 0xca, 0x74, 0xb2, 0xb3, 0xad, 0x6f, 0xac, 0x33, 0x49, 0x9a, 0x96, 0x6d, + 0xb1, 0x57, 0x5d, 0x08, 0xfd, 0xba, 0x6f, 0x12, 0xfa, 0xe5, 0x8d, 0x62, 0xaf, 0x60, 0x14, 0x3f, + 0xaf, 0x36, 0x1b, 0xbd, 0xa6, 0x7e, 0x0b, 0x9a, 0xc9, 0x46, 0xa8, 0xea, 0x22, 0xe9, 0xa9, 0xb0, + 0x9e, 0x54, 0x1d, 0x82, 0xa3, 0x48, 0xb7, 0xa0, 0xf2, 0xe4, 0xc5, 0x1e, 0x69, 0x3c, 0x34, 0x3e, + 0x35, 0xf2, 0x55, 0xa8, 0x9d, 0x6a, 0xc1, 0x72, 0x4e, 0x0b, 0x5e, 0x67, 0x03, 0x42, 0x0f, 0x94, + 0xe4, 0x42, 0x73, 0x18, 0x24, 0x31, 0x1b, 0xcf, 0x2a, 0xa7, 0x49, 0x09, 0xd0, 0xff, 0xa3, 0x02, + 0x0d, 0xe5, 0xdf, 0xa0, 0xd1, 0x98, 0xa6, 0x69, 0x3c, 0x6c, 0x16, 0x03, 0xcf, 0xd4, 0x51, 0xca, + 0xd7, 0x52, 0x2a, 0xaf, 0xaf, 0xa5, 0x88, 0x4f, 0xa1, 0x1d, 0x70, 0x5f, 0xde, 0xb5, 0x7a, 0x3b, + 0x3f, 0x47, 0xfd, 0xd2, 0xbc, 0x56, 0x90, 0x01, 0x48, 0x4a, 0x4a, 0x28, 0xc7, 0xe6, 0xa1, 0xa2, + 0x40, 0x03, 0xe1, 0x91, 0x79, 0xf8, 0x46, 0x7e, 0x52, 0x97, 0x1c, 0xae, 0x36, 0x29, 0x5c, 0xf4, + 0xad, 0xf2, 0x2f, 0xd3, 0x29, 0xba, 0x2b, 0xd7, 0x40, 0xb3, 0xfc, 0xc9, 0xc4, 0xa1, 0xbe, 0xae, + 0x4a, 0x5b, 0x11, 0x62, 0x14, 0xe9, 0xbf, 0x5b, 0x82, 0x86, 0xba, 0xd7, 0x39, 0x63, 0xb8, 0xb6, + 0xb5, 0xb3, 0x6a, 0xfc, 0xb0, 0x57, 0x42, 0x63, 0xbf, 0xb5, 0x33, 0xea, 0x95, 0x85, 0x06, 0xb5, + 0xcd, 0xed, 0xdd, 0xd5, 0x51, 0xaf, 0x82, 0x06, 0x72, 0x6d, 0x77, 0x77, 0xbb, 0x57, 0x15, 0x6d, + 0x68, 0x6e, 0xac, 0x8e, 0x86, 0xa3, 0xad, 0xa7, 0xc3, 0x5e, 0x0d, 0xc7, 0x3e, 0x1e, 0xee, 0xf6, + 0xea, 0xd8, 0x78, 0xbe, 0xb5, 0xd1, 0x6b, 0x60, 0xff, 0xb3, 0xd5, 0xbd, 0xbd, 0xef, 0xef, 0x1a, + 0x1b, 0xbd, 0x26, 0x19, 0xd9, 0x91, 0xb1, 0xb5, 0xf3, 0xb8, 0xa7, 0x61, 0x7b, 0x77, 0xed, 0xf3, + 0xe1, 0xfa, 0xa8, 0x07, 0xfa, 0x43, 0x68, 0xe5, 0x68, 0x85, 0xb3, 0x8d, 0xe1, 0x66, 0x6f, 0x01, + 0xb7, 0x7c, 0xb1, 0xba, 0xfd, 0x1c, 0x6d, 0x72, 0x17, 0x80, 0x9a, 0xe3, 0xed, 0xd5, 0x9d, 0xc7, + 0xbd, 0xb2, 0xf2, 0xe8, 0xbe, 0x07, 0xcd, 0xe7, 0x8e, 0xbd, 0xe6, 0xfa, 0xd6, 0x31, 0xb2, 0xcf, + 0xbe, 0x19, 0x49, 0xc5, 0x6f, 0xd4, 0x46, 0xff, 0x99, 0x84, 0x36, 0x52, 0x6f, 0xad, 0x20, 0xa4, + 0x98, 0x37, 0x9d, 0x8c, 0xa9, 0xde, 0x56, 0x61, 0xc3, 0xe5, 0x4d, 0x27, 0xcf, 0x1d, 0x3b, 0xd2, + 0x8f, 0xa1, 0xf1, 0xdc, 0xb1, 0x9f, 0x99, 0xd6, 0x31, 0x29, 0x37, 0x5c, 0x7a, 0x1c, 0x39, 0x5f, + 0x48, 0x65, 0xe0, 0x34, 0xc2, 0xec, 0x39, 0x5f, 0x48, 0xf1, 0x3e, 0xd4, 0x09, 0x48, 0x52, 0x0e, + 0x24, 0x6a, 0xc9, 0x71, 0x0c, 0xd5, 0x47, 0xe5, 0x2e, 0xd7, 0xf5, 0xad, 0x71, 0x28, 0x0f, 0xfa, + 0x6f, 0xf3, 0x0b, 0x10, 0xc2, 0x90, 0x07, 0xfa, 0xef, 0x95, 0xd2, 0x9b, 0x53, 0x55, 0xe5, 0x06, + 0x54, 0x03, 0xd3, 0x3a, 0x56, 0xfe, 0x45, 0x4b, 0x2d, 0x88, 0x87, 0x31, 0xa8, 0x43, 0x7c, 0x08, + 0x4d, 0xc5, 0x48, 0xc9, 0xae, 0xad, 0x1c, 0xc7, 0x19, 0x69, 0x67, 0xf1, 0xe1, 0x2b, 0xc5, 0x87, + 0xa7, 0xe8, 0x34, 0x70, 0x9d, 0x98, 0xc5, 0x06, 0x85, 0x93, 0x20, 0xfd, 0x9b, 0x00, 0x59, 0x81, + 0x6b, 0x8e, 0xbb, 0x75, 0x05, 0x6a, 0xa6, 0xeb, 0x98, 0x49, 0xb4, 0xcb, 0x80, 0xbe, 0x03, 0xad, + 0x5c, 0x59, 0x0c, 0x69, 0x6b, 0xba, 0x2e, 0x5a, 0x46, 0x96, 0xfd, 0xa6, 0xd1, 0x30, 0x5d, 0xf7, + 0x89, 0x3c, 0x8b, 0xd0, 0xd5, 0xe5, 0x8a, 0x5a, 0x79, 0xa6, 0xe8, 0x42, 0x53, 0x0d, 0xee, 0xd4, + 0x3f, 0x86, 0xfa, 0x66, 0x12, 0x10, 0x24, 0xc2, 0x50, 0xba, 0x48, 0x18, 0xf4, 0x4f, 0xd4, 0x99, + 0xa9, 0x6e, 0x23, 0xee, 0xaa, 0xca, 0x5d, 0xc4, 0x75, 0xc2, 0x52, 0x96, 0x2f, 0xe1, 0x41, 0xaa, + 0x68, 0x47, 0x83, 0xf5, 0x0d, 0x68, 0xbe, 0xb2, 0x16, 0xaa, 0x08, 0x50, 0xce, 0x08, 0x30, 0xa7, + 0x3a, 0xaa, 0xff, 0x18, 0x20, 0xab, 0xf0, 0x29, 0xd9, 0xe4, 0x55, 0x50, 0x36, 0xef, 0x40, 0xd3, + 0x3a, 0x72, 0x5c, 0x3b, 0x94, 0x5e, 0xe1, 0xd6, 0x59, 0x4d, 0x30, 0xed, 0x17, 0x37, 0xa1, 0x4a, + 0x85, 0xcb, 0x4a, 0xa6, 0xb9, 0xd3, 0xaa, 0x25, 0xf5, 0xe8, 0xa7, 0xd0, 0xe1, 0x18, 0xe2, 0x0d, + 0x3c, 0xb0, 0xa2, 0xea, 0x2c, 0x9f, 0x53, 0x9d, 0x57, 0xa1, 0x4e, 0x86, 0x3f, 0xb9, 0x8d, 0x82, + 0x2e, 0x50, 0xa9, 0xbf, 0x53, 0x06, 0xe0, 0xad, 0x77, 0x7c, 0x5b, 0x16, 0x83, 0xf5, 0xd2, 0x6c, + 0xb0, 0x2e, 0xa0, 0x9a, 0xd6, 0xa4, 0x35, 0x83, 0xda, 0x99, 0x31, 0x54, 0x01, 0x3c, 0x1b, 0xc3, + 0x77, 0x40, 0x23, 0x47, 0xcc, 0xf9, 0x82, 0x0a, 0x22, 0xb8, 0x61, 0x86, 0xc8, 0x57, 0x68, 0x6b, + 0xc5, 0x0a, 0x6d, 0x5a, 0xae, 0xaa, 0xf3, 0x6a, 0x5c, 0xae, 0x9a, 0x53, 0x79, 0xe3, 0x0c, 0x4a, + 0x24, 0xc3, 0x38, 0x09, 0xff, 0x19, 0x4a, 0x23, 0x59, 0x4d, 0x8d, 0x35, 0x39, 0x07, 0xe2, 0xf9, + 0x63, 0xcb, 0xf7, 0x0e, 0x5c, 0xc7, 0x8a, 0x55, 0x45, 0x16, 0x3c, 0x7f, 0x5d, 0x61, 0xf4, 0x4f, + 0xa1, 0x9d, 0xd0, 0x9f, 0x0a, 0x5c, 0x77, 0xd2, 0x28, 0xaf, 0x94, 0xbd, 0x6d, 0x46, 0xa6, 0xb5, + 0x72, 0xbf, 0x94, 0xc4, 0x79, 0xfa, 0x7f, 0x57, 0x92, 0xc9, 0xaa, 0x0e, 0xf3, 0x6a, 0x1a, 0x16, + 0x03, 0xf7, 0xf2, 0x1b, 0x05, 0xee, 0xdf, 0x06, 0xcd, 0xa6, 0x58, 0xd4, 0x39, 0x49, 0x8c, 0xd8, + 0x60, 0x36, 0xee, 0x54, 0xd1, 0xaa, 0x73, 0x22, 0x8d, 0x6c, 0xf0, 0x6b, 0xde, 0x21, 0xa5, 0x76, + 0x6d, 0x1e, 0xb5, 0xeb, 0xbf, 0x22, 0xb5, 0xdf, 0x83, 0xb6, 0xe7, 0x7b, 0x63, 0x6f, 0xea, 0xba, + 0xe6, 0xbe, 0x2b, 0x15, 0xb9, 0x5b, 0x9e, 0xef, 0xed, 0x28, 0x14, 0x7a, 0xc7, 0xf9, 0x21, 0x2c, + 0xd4, 0x2d, 0x1a, 0x77, 0x29, 0x37, 0x8e, 0x44, 0x7f, 0x09, 0x7a, 0xfe, 0xfe, 0x8f, 0xa5, 0x15, + 0x13, 0xc5, 0xc6, 0x24, 0xcd, 0xec, 0x1a, 0x77, 0x19, 0x8f, 0x24, 0xda, 0x41, 0xb9, 0x9e, 0x79, + 0xe6, 0xce, 0xb9, 0x67, 0xfe, 0x04, 0xb4, 0x94, 0x4a, 0xb9, 0xb8, 0x57, 0x83, 0xda, 0xd6, 0xce, + 0xc6, 0xf0, 0x07, 0xbd, 0x12, 0x9a, 0x4b, 0x63, 0xf8, 0x62, 0x68, 0xec, 0x0d, 0x7b, 0x65, 0x34, + 0x65, 0x1b, 0xc3, 0xed, 0xe1, 0x68, 0xd8, 0xab, 0xb0, 0x2b, 0x44, 0xe5, 0x10, 0xd7, 0xb1, 0x9c, + 0x58, 0xdf, 0x03, 0xc8, 0x82, 0x79, 0xd4, 0xca, 0xd9, 0xe1, 0x54, 0x36, 0x31, 0x4e, 0x8e, 0xb5, + 0x94, 0x0a, 0x64, 0xf9, 0xa2, 0x94, 0x01, 0xf7, 0xeb, 0x2b, 0xa0, 0x3d, 0x35, 0x83, 0xcf, 0xb8, + 0x70, 0x78, 0x1b, 0xba, 0x81, 0x19, 0xc6, 0x4e, 0x12, 0x8f, 0xb0, 0xb2, 0x6c, 0x1b, 0x9d, 0x14, + 0x8b, 0xba, 0x57, 0xff, 0xb3, 0x12, 0x5c, 0x79, 0xea, 0x9f, 0xc8, 0xd4, 0xdf, 0x7d, 0x66, 0x9e, + 0xb9, 0xbe, 0x69, 0xbf, 0x86, 0x0d, 0x31, 0xa0, 0xf2, 0xa7, 0x54, 0xc8, 0x4b, 0xca, 0x9e, 0x86, + 0xc6, 0x98, 0xc7, 0xea, 0x7b, 0x0d, 0x19, 0xc5, 0xd4, 0xa9, 0x0c, 0x29, 0xc2, 0xd8, 0xf5, 0x16, + 0xd4, 0xe3, 0x53, 0x2f, 0x2b, 0xc2, 0xd6, 0x62, 0xca, 0x82, 0xcf, 0x75, 0x7f, 0x6b, 0xf3, 0xdd, + 0x5f, 0x7d, 0x1d, 0xb4, 0xd1, 0x29, 0xe5, 0x81, 0xa7, 0x45, 0x07, 0xb4, 0xf4, 0x0a, 0x37, 0xa7, + 0x3c, 0xe3, 0xe6, 0xfc, 0x7b, 0x09, 0x5a, 0x39, 0x3f, 0x5e, 0xbc, 0x07, 0xd5, 0xf8, 0xd4, 0x2b, + 0x7e, 0xeb, 0x90, 0x6c, 0x62, 0x50, 0xd7, 0xb9, 0x5c, 0x67, 0xf9, 0x5c, 0xae, 0x53, 0x6c, 0xc3, + 0x25, 0xd6, 0xbc, 0xc9, 0x25, 0x92, 0x94, 0xd0, 0xad, 0x99, 0xb8, 0x81, 0x73, 0xe5, 0xc9, 0x95, + 0x54, 0x9e, 0xa3, 0x7b, 0x58, 0x40, 0x0e, 0x56, 0xe1, 0xf2, 0x9c, 0x61, 0x5f, 0xa7, 0x6a, 0xa2, + 0xdf, 0x80, 0xce, 0xe8, 0xd4, 0x1b, 0x39, 0x13, 0x19, 0xc5, 0xe6, 0x24, 0x20, 0x37, 0x51, 0x59, + 0xce, 0xaa, 0x51, 0x8e, 0x23, 0xfd, 0x03, 0x68, 0x3f, 0x93, 0x32, 0x34, 0x64, 0x14, 0xf8, 0x1e, + 0x3b, 0x47, 0x2a, 0x47, 0xcd, 0x66, 0x5a, 0x41, 0xfa, 0x6f, 0x81, 0x66, 0x98, 0x07, 0xf1, 0x9a, + 0x19, 0x5b, 0x47, 0x5f, 0x27, 0xe9, 0xf1, 0x01, 0x34, 0x02, 0xe6, 0x29, 0x15, 0xdd, 0xb5, 0xc9, + 0x5c, 0x2b, 0x3e, 0x33, 0x92, 0x4e, 0xfd, 0xd7, 0xa0, 0xab, 0x0a, 0x46, 0xc9, 0x49, 0x72, 0x55, + 0xa5, 0xd2, 0x85, 0x55, 0x25, 0xfd, 0x10, 0x3a, 0xc9, 0x3c, 0x36, 0x7e, 0x6f, 0x34, 0xed, 0xeb, + 0x97, 0xed, 0xf5, 0xdf, 0x84, 0xcb, 0x7b, 0xd3, 0xfd, 0xc8, 0x0a, 0x1d, 0x8a, 0xe4, 0x93, 0xed, + 0x06, 0xd0, 0x0c, 0x42, 0x79, 0xe0, 0x9c, 0xca, 0x44, 0xc4, 0x52, 0x58, 0xdc, 0x81, 0xc6, 0x04, + 0xe9, 0x25, 0x33, 0xe1, 0xcd, 0x62, 0xd6, 0xa7, 0xd8, 0x63, 0x24, 0x03, 0xf4, 0xef, 0xc0, 0x95, + 0xe2, 0xf2, 0x8a, 0x0a, 0xb7, 0xa0, 0x72, 0x7c, 0x12, 0x29, 0x32, 0x2f, 0x16, 0x62, 0x5e, 0xfa, + 0x5e, 0x02, 0x7b, 0xf5, 0xbf, 0x2e, 0x41, 0x65, 0x67, 0x3a, 0xc9, 0x7f, 0x0c, 0x56, 0xe5, 0x8f, + 0xc1, 0xae, 0xe5, 0xf3, 0xd9, 0x1c, 0x43, 0x65, 0x79, 0xeb, 0x77, 0x40, 0x3b, 0xf0, 0xc3, 0x9f, + 0x9a, 0xa1, 0x2d, 0x6d, 0x65, 0x81, 0x33, 0x04, 0xb9, 0xce, 0xd3, 0x49, 0xa0, 0xd4, 0x3b, 0xb5, + 0xc5, 0x6d, 0x65, 0xc3, 0x39, 0xae, 0x59, 0x44, 0xca, 0xee, 0x4c, 0x27, 0xcb, 0xae, 0x34, 0x23, + 0x32, 0x36, 0x6c, 0xd6, 0xf5, 0xbb, 0xa0, 0xa5, 0x28, 0x54, 0x90, 0x3b, 0x7b, 0xe3, 0xad, 0x0d, + 0xce, 0x11, 0x62, 0x04, 0x50, 0x42, 0xe5, 0x38, 0xfa, 0xc1, 0xce, 0x78, 0xb4, 0xd7, 0x2b, 0xeb, + 0x3f, 0x82, 0x56, 0x22, 0x3f, 0x5b, 0x36, 0x15, 0xc4, 0x48, 0x80, 0xb7, 0xec, 0x82, 0x3c, 0x6f, + 0x51, 0x88, 0x26, 0x3d, 0x7b, 0x2b, 0x11, 0x3c, 0x06, 0x8a, 0x37, 0x54, 0xd5, 0xb5, 0xe4, 0x86, + 0xfa, 0x10, 0x16, 0x0d, 0x4a, 0xec, 0xa3, 0xe1, 0x4d, 0x9e, 0xec, 0x2a, 0xd4, 0x3d, 0xdf, 0x96, + 0xe9, 0x06, 0x0a, 0xc2, 0x9d, 0xd5, 0x63, 0x2b, 0x95, 0x96, 0xbe, 0xbd, 0x84, 0x45, 0xd4, 0x92, + 0x45, 0x46, 0x2b, 0x24, 0x9d, 0x4b, 0x33, 0x49, 0x67, 0xdc, 0x44, 0xd5, 0x97, 0xd9, 0xdf, 0x49, + 0x6a, 0xca, 0x03, 0x68, 0xda, 0x51, 0x4c, 0x62, 0xad, 0x74, 0x63, 0x0a, 0xeb, 0xf7, 0xe1, 0xf2, + 0x6a, 0x10, 0xb8, 0x67, 0x49, 0x35, 0x4e, 0x6d, 0xd4, 0xcf, 0x4a, 0x76, 0x25, 0x15, 0x17, 0x32, + 0xa8, 0x6f, 0x42, 0x3b, 0xc9, 0x30, 0x3c, 0x95, 0xb1, 0x49, 0x1a, 0xcf, 0x75, 0x0a, 0x21, 0x76, + 0x93, 0x11, 0xa3, 0x62, 0x6a, 0x7b, 0xe6, 0x7e, 0xcb, 0x50, 0x57, 0xea, 0x54, 0x40, 0xd5, 0xf2, + 0x6d, 0xde, 0xa8, 0x66, 0x50, 0x1b, 0xb9, 0x6a, 0x12, 0x1d, 0x26, 0x1e, 0xef, 0x24, 0x3a, 0xd4, + 0xff, 0xa9, 0x0c, 0x9d, 0x35, 0xca, 0xe7, 0x24, 0x67, 0xcc, 0x65, 0x31, 0x4b, 0x85, 0x2c, 0x66, + 0x3e, 0x63, 0x59, 0x2e, 0x64, 0x2c, 0x0b, 0x07, 0xaa, 0x14, 0xdd, 0xd4, 0xb7, 0xa1, 0x31, 0xf5, + 0x9c, 0xd3, 0xc4, 0x4e, 0x68, 0x46, 0x1d, 0xc1, 0x51, 0x24, 0x6e, 0x42, 0x0b, 0x4d, 0x89, 0xe3, + 0x71, 0x96, 0x90, 0x53, 0x7d, 0x79, 0xd4, 0x4c, 0x2e, 0xb0, 0xfe, 0xea, 0x5c, 0x60, 0xe3, 0xb5, + 0xb9, 0xc0, 0xe6, 0xeb, 0x72, 0x81, 0xda, 0x6c, 0x2e, 0xb0, 0xe8, 0x62, 0xc3, 0x39, 0x17, 0xfb, + 0x5d, 0x00, 0xfe, 0x08, 0xe6, 0x60, 0xea, 0xba, 0xca, 0x6f, 0xd1, 0x08, 0xb3, 0x39, 0x75, 0x5d, + 0x7d, 0x1b, 0xba, 0x09, 0x69, 0x95, 0x0a, 0xf8, 0x14, 0x2e, 0xa9, 0x2c, 0xbf, 0x0c, 0x55, 0xa2, + 0x8c, 0x35, 0x1b, 0xc9, 0x1f, 0x27, 0xe2, 0x55, 0x8f, 0xd1, 0xb5, 0xf3, 0x60, 0xa4, 0xff, 0xbc, + 0x04, 0x9d, 0xc2, 0x08, 0xf1, 0x30, 0xab, 0x19, 0x94, 0x48, 0x8a, 0xfb, 0xe7, 0x56, 0x79, 0x75, + 0xdd, 0xa0, 0x3c, 0x53, 0x37, 0xd0, 0xef, 0xa5, 0xd5, 0x00, 0x55, 0x03, 0x58, 0x48, 0x6b, 0x00, + 0x94, 0x36, 0x5f, 0x1d, 0x8d, 0x8c, 0x5e, 0x59, 0xd4, 0xa1, 0xbc, 0xb3, 0xd7, 0xab, 0xe8, 0x7f, + 0x51, 0x86, 0xce, 0xf0, 0x34, 0xa0, 0x0f, 0xc2, 0x5e, 0x1b, 0xaf, 0xe4, 0xf8, 0xaa, 0x5c, 0xe0, + 0xab, 0x1c, 0x87, 0x54, 0x54, 0x11, 0x94, 0x39, 0x04, 0x23, 0x18, 0xce, 0x4c, 0x2a, 0xce, 0x61, + 0xe8, 0xff, 0x03, 0xe7, 0x14, 0x34, 0x0a, 0xcc, 0x96, 0xb1, 0xb6, 0xa1, 0x9b, 0x90, 0x4d, 0x31, + 0xc6, 0x1b, 0x09, 0x2b, 0x7f, 0x02, 0xea, 0xa6, 0x89, 0x32, 0x06, 0xf4, 0x3f, 0x2e, 0x83, 0xc6, + 0x7c, 0x86, 0x87, 0xff, 0x48, 0xe9, 0xf5, 0x52, 0x56, 0x31, 0x49, 0x3b, 0x97, 0x9f, 0xc8, 0xb3, + 0x4c, 0xb7, 0xcf, 0xad, 0x32, 0xaa, 0x74, 0x1a, 0x67, 0x14, 0x28, 0x9d, 0x76, 0x0d, 0x34, 0x76, + 0xcb, 0xa6, 0x2a, 0x5d, 0x5f, 0x35, 0xd8, 0x4f, 0x7b, 0xee, 0x90, 0x65, 0x89, 0x65, 0x38, 0x51, + 0x6f, 0x40, 0xed, 0x62, 0xec, 0xd6, 0x49, 0xa2, 0x89, 0x02, 0x45, 0x1a, 0xb3, 0x14, 0x39, 0x82, + 0x86, 0x3a, 0x1b, 0xba, 0xde, 0xcf, 0x77, 0x9e, 0xec, 0xec, 0x7e, 0x7f, 0xa7, 0xc0, 0x7d, 0xa9, + 0x73, 0x5e, 0xce, 0x3b, 0xe7, 0x15, 0xc4, 0xaf, 0xef, 0x3e, 0xdf, 0x19, 0xf5, 0xaa, 0xa2, 0x03, + 0x1a, 0x35, 0xc7, 0xc6, 0xf0, 0x45, 0xaf, 0x46, 0xd9, 0xa8, 0xf5, 0xcf, 0x86, 0x4f, 0x57, 0x7b, + 0xf5, 0xb4, 0x7e, 0xd5, 0xd0, 0xff, 0xa8, 0x04, 0x8b, 0x4c, 0x90, 0x7c, 0x62, 0x26, 0xff, 0x71, + 0x76, 0x95, 0x3f, 0xce, 0xfe, 0xbf, 0xcd, 0xc5, 0xe0, 0xa4, 0xa9, 0x93, 0x54, 0x8c, 0x39, 0x49, + 0xd8, 0x9c, 0x3a, 0xaa, 0x50, 0xfc, 0x77, 0x25, 0x18, 0x70, 0x4c, 0xf0, 0x38, 0x34, 0x83, 0xa3, + 0xef, 0x6d, 0x9f, 0xcb, 0x0a, 0x5c, 0xe4, 0x29, 0xdf, 0x86, 0x2e, 0x7d, 0xbe, 0xfe, 0x13, 0x77, + 0xac, 0x22, 0x57, 0x7e, 0xdd, 0x8e, 0xc2, 0xf2, 0x42, 0xe2, 0x11, 0xb4, 0xf9, 0x33, 0x77, 0xca, + 0x9a, 0x17, 0xaa, 0x9d, 0x85, 0x88, 0xa4, 0xc5, 0xa3, 0xb8, 0x36, 0xfb, 0x30, 0x9d, 0x94, 0x25, + 0x10, 0xce, 0x17, 0x34, 0xd5, 0x94, 0x11, 0xa5, 0x15, 0xee, 0xc3, 0xb5, 0xb9, 0xf7, 0x50, 0x6c, + 0x9f, 0x4b, 0xde, 0x32, 0xb7, 0xe9, 0xff, 0x5c, 0x82, 0xe6, 0xda, 0xd4, 0x3d, 0x26, 0x23, 0xf8, + 0x2e, 0x80, 0xb4, 0x0f, 0xa5, 0xfa, 0x5e, 0xbc, 0x44, 0xca, 0x41, 0x43, 0x0c, 0x7f, 0x31, 0xfe, + 0x29, 0x00, 0xdf, 0x71, 0x3c, 0x31, 0x03, 0xf5, 0x44, 0x54, 0x7d, 0x4c, 0x16, 0x50, 0x77, 0x79, + 0x6a, 0x06, 0xaa, 0xfa, 0x18, 0x25, 0x70, 0x56, 0x95, 0xad, 0xbc, 0xa2, 0x2a, 0x3b, 0xd8, 0x81, + 0x6e, 0x71, 0x89, 0x39, 0x49, 0xb3, 0x0f, 0x8a, 0x5f, 0xbe, 0x9c, 0xa7, 0x61, 0xce, 0x87, 0xff, + 0x1c, 0x2e, 0xcd, 0x24, 0xe0, 0x5f, 0xa5, 0x31, 0x0b, 0x22, 0x53, 0x9e, 0x15, 0x99, 0x8f, 0x61, + 0x71, 0x64, 0x46, 0xc7, 0x2a, 0xae, 0xc9, 0x8c, 0x77, 0x6c, 0x46, 0xc7, 0xe3, 0x94, 0xa8, 0x75, + 0x04, 0xb7, 0x6c, 0xfd, 0x21, 0x88, 0xfc, 0x68, 0x45, 0x7f, 0x8c, 0x57, 0x71, 0xf8, 0x44, 0xc6, + 0x66, 0xe2, 0x65, 0x20, 0x02, 0x89, 0xb7, 0xf2, 0xb7, 0x25, 0xa8, 0x62, 0x20, 0x20, 0xee, 0x81, + 0xf6, 0x99, 0x34, 0xc3, 0x78, 0x5f, 0x9a, 0xb1, 0x28, 0x38, 0xfd, 0x03, 0xa2, 0x5b, 0xf6, 0x35, + 0x8d, 0xbe, 0xf0, 0xa0, 0x24, 0x96, 0xf9, 0x5b, 0xdf, 0xe4, 0x1b, 0xe6, 0x4e, 0x12, 0x50, 0x50, + 0xc0, 0x31, 0x28, 0xcc, 0xd7, 0x17, 0x96, 0x68, 0xfc, 0xe7, 0xbe, 0xe3, 0xad, 0xf3, 0x17, 0xa6, + 0x62, 0x36, 0x00, 0x99, 0x9d, 0x21, 0xee, 0x41, 0x7d, 0x2b, 0xc2, 0x48, 0xe7, 0xfc, 0x50, 0x22, + 0x7e, 0x3e, 0x08, 0xd2, 0x17, 0x56, 0xfe, 0xbc, 0x06, 0xd5, 0x1f, 0xc9, 0xd0, 0x17, 0x1f, 0x43, + 0x43, 0x7d, 0x7b, 0x24, 0x72, 0xdf, 0x18, 0x0d, 0x28, 0xe9, 0x32, 0xf3, 0x51, 0x12, 0xed, 0xd2, + 0xe3, 0xf7, 0xcb, 0xca, 0x4e, 0x22, 0xfb, 0x34, 0xea, 0xdc, 0xa1, 0x3e, 0x81, 0xde, 0x5e, 0x1c, + 0x4a, 0x73, 0x92, 0x1b, 0x5e, 0x24, 0xd5, 0xbc, 0x1a, 0x16, 0xd1, 0xeb, 0x2e, 0xd4, 0x39, 0x9c, + 0x9c, 0x99, 0x30, 0x5b, 0xa0, 0xa2, 0xc1, 0x1f, 0x42, 0x6b, 0xef, 0xc8, 0x9f, 0xba, 0xf6, 0x9e, + 0x0c, 0x4f, 0xa4, 0xc8, 0x45, 0x44, 0x83, 0x5c, 0x5b, 0x5f, 0x10, 0x0f, 0xa1, 0x8e, 0x2f, 0x12, + 0x4e, 0xc4, 0x62, 0x2e, 0x6a, 0x62, 0x36, 0x19, 0x88, 0x3c, 0x2a, 0xa1, 0x94, 0xf8, 0x10, 0x34, + 0x76, 0xdf, 0xd1, 0x79, 0x6f, 0xa8, 0x88, 0x80, 0x8f, 0x91, 0x73, 0xeb, 0xf5, 0x05, 0xb1, 0x04, + 0x90, 0x8b, 0x43, 0x5f, 0x35, 0xf2, 0x11, 0x74, 0xd6, 0x49, 0x13, 0xee, 0x86, 0xab, 0xfb, 0x7e, + 0x18, 0x8b, 0xd9, 0xef, 0x21, 0x07, 0xb3, 0x08, 0x7d, 0x01, 0x23, 0xba, 0x51, 0x78, 0xc6, 0xe3, + 0x17, 0x55, 0xf8, 0x9e, 0xed, 0x37, 0x87, 0x2e, 0xe2, 0x9b, 0xa9, 0x5c, 0xa5, 0x5e, 0xfb, 0xbc, + 0x6a, 0x17, 0x93, 0x88, 0x65, 0x80, 0x48, 0x04, 0x59, 0x48, 0x21, 0xde, 0xe2, 0xca, 0xdb, 0x4c, + 0x88, 0x71, 0x7e, 0x4a, 0x16, 0x3e, 0xf0, 0x94, 0x73, 0xe1, 0xc4, 0xcc, 0x94, 0x6f, 0x41, 0x3b, + 0x1f, 0x0a, 0x08, 0x2a, 0x21, 0xcd, 0x09, 0x0e, 0x8a, 0xd3, 0x56, 0xfe, 0xb3, 0x06, 0xf5, 0xef, + 0xfb, 0xe1, 0xb1, 0x0c, 0xc5, 0x1d, 0xa8, 0x53, 0x0d, 0x55, 0xc9, 0x52, 0x5a, 0x4f, 0x9d, 0x47, + 0xbb, 0xf7, 0x41, 0x23, 0xce, 0x40, 0x61, 0x67, 0x7e, 0xa5, 0xff, 0xef, 0xf0, 0xe2, 0x9c, 0xd5, + 0x24, 0xe6, 0xee, 0x32, 0xb7, 0xa6, 0xdf, 0x18, 0x14, 0x6a, 0x9c, 0x03, 0x7a, 0xd2, 0x27, 0x2f, + 0xf6, 0x50, 0x3e, 0x1f, 0x94, 0xd0, 0xa7, 0xd8, 0xe3, 0xc7, 0xc3, 0x41, 0xd9, 0xff, 0x13, 0x58, + 0xfc, 0xb3, 0x3f, 0x04, 0xe8, 0x0b, 0xe2, 0x3e, 0xd4, 0x95, 0x89, 0x59, 0xcc, 0x14, 0x61, 0x72, + 0xc3, 0x5e, 0x1e, 0xa5, 0x26, 0x3c, 0x84, 0x3a, 0x9b, 0x63, 0x9e, 0x50, 0x88, 0x45, 0x98, 0x4f, + 0x8b, 0x3e, 0xb4, 0xbe, 0x20, 0xee, 0x42, 0x43, 0x55, 0x48, 0xc5, 0x9c, 0x72, 0xe9, 0xb9, 0x17, + 0xab, 0xb3, 0xaf, 0xc5, 0xeb, 0x17, 0xdc, 0x55, 0x5e, 0xbf, 0xe8, 0x8a, 0xb1, 0xe8, 0x1b, 0xd2, + 0x92, 0x4e, 0x2e, 0x99, 0x26, 0x12, 0x8a, 0xcc, 0xd1, 0x5f, 0x9f, 0x40, 0xa7, 0x90, 0x78, 0x13, + 0xfd, 0x84, 0x2d, 0x66, 0x73, 0x71, 0xe7, 0xb4, 0xc6, 0x77, 0x40, 0x53, 0xa9, 0x82, 0x7d, 0xc5, + 0x18, 0x73, 0x12, 0x13, 0x83, 0xf3, 0xb9, 0x02, 0x52, 0x05, 0x3f, 0x80, 0xcb, 0x73, 0x6c, 0xab, + 0xa0, 0x2f, 0x5c, 0x2f, 0x76, 0x1e, 0x06, 0x37, 0x2e, 0xec, 0x4f, 0x09, 0xf0, 0xab, 0x89, 0xd3, + 0x77, 0x01, 0x32, 0x13, 0xc3, 0xb2, 0x71, 0xce, 0x40, 0x0d, 0xae, 0xce, 0xa2, 0x93, 0x4d, 0xd7, + 0xfa, 0x7f, 0xff, 0xd5, 0xf5, 0xd2, 0x2f, 0xbe, 0xba, 0x5e, 0xfa, 0xb7, 0xaf, 0xae, 0x97, 0x7e, + 0xfe, 0xcb, 0xeb, 0x0b, 0xbf, 0xf8, 0xe5, 0xf5, 0x85, 0x7f, 0xfc, 0xe5, 0xf5, 0x85, 0xfd, 0x3a, + 0xfd, 0x91, 0xee, 0xd1, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xae, 0x6b, 0x5c, 0xe0, 0xbe, 0x37, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -10958,6 +10969,16 @@ func (m *Num) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.Bump { + i-- + if m.Bump { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x28 + } if m.Type != 0 { i = encodeVarintPb(dAtA, i, uint64(m.Type)) i-- @@ -13437,6 +13458,9 @@ func (m *Num) Size() (n int) { if m.Type != 0 { n += 1 + sovPb(uint64(m.Type)) } + if m.Bump { + n += 2 + } return n } @@ -23958,6 +23982,26 @@ func (m *Num) Unmarshal(dAtA []byte) error { break } } + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Bump", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Bump = bool(v != 0) default: iNdEx = preIndex skippy, err := skipPb(dAtA[iNdEx:]) diff --git a/worker/online_restore.go b/worker/online_restore.go index bc09abd50b3..f9cd27cd49f 100644 --- a/worker/online_restore.go +++ b/worker/online_restore.go @@ -316,11 +316,14 @@ func handleRestoreProposal(ctx context.Context, req *pb.RestoreRequest, pidx uin defer os.RemoveAll(mapDir) glog.Infof("Created temporary map directory: %s\n", mapDir) - // Write restored values to disk and update the UID lease. - if err := RunMapper(req, mapDir); err != nil { - return errors.Wrapf(err, "cannot write backup") + // Map the backup. + mapRes, err := RunMapper(req, mapDir) + if err != nil { + return errors.Wrapf(err, "Failed to map the backup files") } + glog.Infof("Backup map phase is complete. Map result is: %+v\n", mapRes) + // Reduce the map to pstore using stream writer. sw := pstore.NewStreamWriter() if err := sw.Prepare(); err != nil { return errors.Wrapf(err, "while preparing DB") @@ -332,6 +335,11 @@ func handleRestoreProposal(ctx context.Context, req *pb.RestoreRequest, pidx uin return errors.Wrap(err, "while stream writer flush") } + // Bump the UID and NsId lease after restore. + if err := bumpLease(ctx, mapRes); err != nil { + return errors.Wrap(err, "While bumping the leases after restore") + } + // Load schema back. if err := schema.LoadFromDb(); err != nil { return errors.Wrapf(err, "cannot load schema after restore") @@ -361,6 +369,30 @@ func handleRestoreProposal(ctx context.Context, req *pb.RestoreRequest, pidx uin return nil } +func bumpLease(ctx context.Context, mr *mapResult) error { + pl := groups().connToZeroLeader() + if pl == nil { + return errors.Errorf("cannot update lease due to no connection to zero leader") + } + + zc := pb.NewZeroClient(pl.Get()) + bump := func(val uint64, typ pb.NumLeaseType) error { + _, err := zc.AssignIds(ctx, &pb.Num{Val: val, Type: typ, Bump: true}) + if err != nil && strings.Contains(err.Error(), "Nothing to be leased") { + return nil + } + return err + } + + if err := bump(mr.maxUid, pb.Num_UID); err != nil { + return errors.Wrapf(err, "cannot update max uid lease after restore.") + } + if err := bump(mr.maxNs, pb.Num_NS_ID); err != nil { + return errors.Wrapf(err, "cannot update max namespace lease after restore.") + } + return nil +} + // create a config object from the request for use with enc package. func getEncConfig(req *pb.RestoreRequest) (*viper.Viper, error) { config := viper.New() @@ -449,7 +481,7 @@ func RunOfflineRestore(dir, location, backupId string, keyFile string, EncryptionKeyFile: keyFile, RestoreTs: 1, } - if err := RunMapper(req, mapDir); err != nil { + if _, err := RunMapper(req, mapDir); err != nil { return LoadResult{Err: errors.Wrap(err, "RunRestore failed to map")} } pdir := filepath.Join(dir, fmt.Sprintf("p%d", gid)) diff --git a/worker/restore_map.go b/worker/restore_map.go index 9ba17b8c93b..1956e30971d 100644 --- a/worker/restore_map.go +++ b/worker/restore_map.go @@ -149,6 +149,9 @@ type mapper struct { mapDir string reqCh chan listReq szHist *z.HistogramData + + maxUid uint64 + maxNs uint64 } func (mw *mapper) newMapFile() (*os.File, error) { @@ -277,6 +280,9 @@ func (m *mapper) processReqCh(ctx context.Context) error { buf := z.NewBuffer(20<<20, "processKVList") defer buf.Release() + maxNs := uint64(0) + maxUid := uint64(0) + toBuffer := func(kv *bpb.KV, version uint64) error { key := y.KeyWithTs(kv.Key, version) sz := kv.Size() @@ -294,7 +300,7 @@ func (m *mapper) processReqCh(ctx context.Context) error { "Unexpected meta: %v for key: %s", kv.UserMeta, hex.Dump(kv.Key)) } - restoreKey, _, err := fromBackupKey(kv.Key) + restoreKey, ns, err := fromBackupKey(kv.Key) if err != nil { return errors.Wrap(err, "fromBackupKey") } @@ -306,6 +312,11 @@ func (m *mapper) processReqCh(ctx context.Context) error { if err != nil { return errors.Wrapf(err, "could not parse key %s", hex.Dump(restoreKey)) } + + // Update the local max uid and max namespace values. + maxUid = x.Max(maxUid, parsedKey.Uid) + maxNs = x.Max(maxNs, ns) + if !in.keepSchema && (parsedKey.IsSchema() || parsedKey.IsType()) { return nil } @@ -446,6 +457,24 @@ func (m *mapper) processReqCh(ctx context.Context) error { if err := mergeBuffer(); err != nil { return err } + + // Update the global maxUid and maxNs. We need CAS here because mapping is + // being carried out concurrently. + for { + oldMaxUid := atomic.LoadUint64(&m.maxUid) + newMaxUid := x.Max(oldMaxUid, maxUid) + if swapped := atomic.CompareAndSwapUint64(&m.maxUid, oldMaxUid, newMaxUid); swapped { + break + } + } + for { + oldMaxNs := atomic.LoadUint64(&m.maxNs) + newMaxNs := x.Max(oldMaxNs, maxNs) + if swapped := atomic.CompareAndSwapUint64(&m.maxNs, oldMaxNs, newMaxNs); swapped { + break + } + } + return nil } @@ -516,36 +545,41 @@ func (m *mapper) Map(r io.Reader, in *loadBackupInput) error { return nil } +type mapResult struct { + maxUid uint64 + maxNs uint64 +} + // 1. RunMapper creates a mapper object // 2. mapper.Map() -> -func RunMapper(req *pb.RestoreRequest, mapDir string) error { +func RunMapper(req *pb.RestoreRequest, mapDir string) (*mapResult, error) { uri, err := url.Parse(req.Location) if err != nil { - return err + return nil, err } if req.RestoreTs == 0 { - return errors.New("RestoreRequest must have a valid restoreTs") + return nil, errors.New("RestoreRequest must have a valid restoreTs") } creds := getCredentialsFromRestoreRequest(req) h, err := NewUriHandler(uri, creds) if err != nil { - return err + return nil, err } manifests, err := getManifestsToRestore(h, uri, req) if err != nil { - return errors.Wrapf(err, "cannot retrieve manifests") + return nil, errors.Wrapf(err, "cannot retrieve manifests") } glog.Infof("Got %d backups to restore ", len(manifests)) cfg, err := getEncConfig(req) if err != nil { - return errors.Wrapf(err, "unable to get encryption config") + return nil, errors.Wrapf(err, "unable to get encryption config") } keys, err := ee.GetKeys(cfg) if err != nil { - return errors.Wrapf(err, "unable to get encryption keys") + return nil, errors.Wrapf(err, "unable to get encryption keys") } mapper := &mapper{ @@ -596,7 +630,7 @@ func RunMapper(req *pb.RestoreRequest, mapDir string) error { file := filepath.Join(manifest.Path, backupName(manifest.ValidReadTs(), gid)) br := readerFrom(h, file).WithEncryption(keys.EncKey).WithCompression(manifest.Compression) if br.err != nil { - return errors.Wrap(br.err, "newBackupReader") + return nil, errors.Wrap(br.err, "newBackupReader") } defer br.Close() @@ -620,10 +654,10 @@ func RunMapper(req *pb.RestoreRequest, mapDir string) error { // This would stream the backups from the source, and map them in // Dgraph compatible format on disk. if err := mapper.Map(br, in); err != nil { - return errors.Wrap(err, "mapper.Map") + return nil, errors.Wrap(err, "mapper.Map") } if err := br.Close(); err != nil { - return errors.Wrap(err, "br.Close") + return nil, errors.Wrap(err, "br.Close") } } for _, op := range manifest.DropOperations { @@ -639,10 +673,10 @@ func RunMapper(req *pb.RestoreRequest, mapDir string) error { // TODO: We probably need to propose ban request. ns, err := strconv.ParseUint(op.DropValue, 0, 64) if err != nil { - return errors.Wrapf(err, "Map phase failed to parse namespace") + return nil, errors.Wrapf(err, "Map phase failed to parse namespace") } if err := pstore.BanNamespace(ns); err != nil { - return errors.Wrapf(err, "Map phase failed to ban namespace: %d", ns) + return nil, errors.Wrapf(err, "Map phase failed to ban namespace: %d", ns) } } } @@ -651,7 +685,14 @@ func RunMapper(req *pb.RestoreRequest, mapDir string) error { glog.Infof("Histogram of map input sizes:\n%s\n", mapper.szHist) close(mapper.reqCh) if err := g.Wait(); err != nil { - return errors.Wrapf(err, "from processKVList") + return nil, errors.Wrapf(err, "from processKVList") + } + if err := mapper.Flush(); err != nil { + return nil, errors.Wrap(err, "failed to flush the mapper") + } + mapRes := &mapResult{ + maxUid: mapper.maxUid, + maxNs: mapper.maxNs, } - return mapper.Flush() + return mapRes, nil }