diff --git a/dgraphtest/cluster.go b/dgraphtest/cluster.go index d59f40ba80d..70550e82612 100644 --- a/dgraphtest/cluster.go +++ b/dgraphtest/cluster.go @@ -22,6 +22,7 @@ import ( "encoding/json" "fmt" "io" + "log" "net/http" "os/exec" "strings" @@ -43,6 +44,7 @@ type Cluster interface { AlphasLogs() ([]string, error) AssignUids(gc *dgo.Dgraph, num uint64) error GetVersion() string + GetEncKeyPath() (string, error) } type GrpcClient struct { @@ -375,7 +377,7 @@ func (hc *HTTPClient) WaitForTask(taskId string) error { // Restore performs restore on Dgraph cluster from the given path to backup func (hc *HTTPClient) Restore(c Cluster, backupPath string, - backupId string, incrFrom, backupNum int, encKey string) error { + backupId string, incrFrom, backupNum int) error { // incremental restore was introduced in commit 8b3712e93ed2435bea52d957f7b69976c6cfc55b incrRestoreSupported, err := IsHigherVersion(c.GetVersion(), "8b3712e93ed2435bea52d957f7b69976c6cfc55b") @@ -386,6 +388,11 @@ func (hc *HTTPClient) Restore(c Cluster, backupPath string, return errors.New("incremental restore is not supported by the cluster") } + encKey, err := c.GetEncKeyPath() + if err != nil { + return errors.Wrapf(err, "error getting encryption key path") + } + var varPart, queryPart string if incrRestoreSupported { varPart = "$incrFrom: Int, " @@ -429,6 +436,51 @@ func (hc *HTTPClient) Restore(c Cluster, backupPath string, return nil } +// RestoreTenant restore specific namespace +func (hc *HTTPClient) RestoreTenant(c Cluster, backupPath string, backupId string, + incrFrom, backupNum int, fromNamespace uint64) error { + + encKey, err := c.GetEncKeyPath() + if err != nil { + return errors.Wrapf(err, "error getting encryption key path") + } + + query := `mutation restoreTenant( $location: String!, $backupId: String, + $incrFrom: Int, $backupNum: Int, $encKey: String,$fromNamespace: Int! ) { + restoreTenant(input: {restoreInput: { location: $location, backupId: $backupId, + incrementalFrom: $incrFrom, backupNum: $backupNum, + encryptionKeyFile: $encKey },fromNamespace:$fromNamespace}) { + code + message + } + }` + vars := map[string]interface{}{"location": backupPath, "backupId": backupId, "backupNum": backupNum, + "encKey": encKey, "fromNamespace": fromNamespace, "incrFrom": incrFrom} + + params := GraphQLParams{ + Query: query, + Variables: vars, + } + resp, err := hc.RunGraphqlQuery(params, true) + if err != nil { + return err + } + + var restoreResp struct { + RestoreTenant struct { + Code string + Message string + } + } + if err := json.Unmarshal(resp, &restoreResp); err != nil { + return errors.Wrap(err, "error unmarshalling restore response") + } + if restoreResp.RestoreTenant.Code != "Success" { + return fmt.Errorf("restoreTenant failed, response: %+v", restoreResp.RestoreTenant) + } + return nil +} + // WaitForRestore waits for restore to complete on all alphas func WaitForRestore(c Cluster) error { loop: @@ -578,13 +630,19 @@ func (hc *HTTPClient) GetZeroState() (*LicenseResponse, error) { if err != nil { return nil, errors.Wrap(err, "error getting zero state http response") } + defer func() { + if err := response.Body.Close(); err != nil { + log.Printf("[WARNING] error closing body: %v", err) + } + }() + body, err := io.ReadAll(response.Body) if err != nil { - return nil, errors.New("error reading zero state response body") + return nil, errors.Wrapf(err, "error reading zero state response body") } var stateResponse LicenseResponse if err := json.Unmarshal(body, &stateResponse); err != nil { - return nil, errors.New("error unmarshaling zero state response") + return nil, errors.Wrapf(err, "error unmarshaling zero state response") } return &stateResponse, nil diff --git a/dgraphtest/compose_cluster.go b/dgraphtest/compose_cluster.go index 44eb15e830f..e11e40719f7 100644 --- a/dgraphtest/compose_cluster.go +++ b/dgraphtest/compose_cluster.go @@ -68,3 +68,7 @@ func (c *ComposeCluster) AssignUids(client *dgo.Dgraph, num uint64) error { func (c *ComposeCluster) GetVersion() string { return localVersion } + +func (c *ComposeCluster) GetEncKeyPath() (string, error) { + return "", errNotImplemented +} diff --git a/dgraphtest/config.go b/dgraphtest/config.go index 57a1af0957b..5cc7567950f 100644 --- a/dgraphtest/config.go +++ b/dgraphtest/config.go @@ -233,3 +233,7 @@ func (cc ClusterConfig) WithCustomPlugins() ClusterConfig { cc.customPlugins = true return cc } + +func (cc ClusterConfig) GetClusterVolume(volume string) string { + return cc.volumes[volume] +} diff --git a/dgraphtest/local_cluster.go b/dgraphtest/local_cluster.go index c51d3a579ae..375299b13d3 100644 --- a/dgraphtest/local_cluster.go +++ b/dgraphtest/local_cluster.go @@ -606,10 +606,6 @@ func (c *LocalCluster) Upgrade(version string, strategy UpgradeStrategy) error { return err } - var encPath string - if c.conf.encryption { - encPath = encKeyMountPath - } hc, err = c.HTTPClient() if err != nil { return errors.Wrapf(err, "error creating HTTP client after upgrade") @@ -619,7 +615,7 @@ func (c *LocalCluster) Upgrade(version string, strategy UpgradeStrategy) error { return errors.Wrapf(err, "error during login after upgrade") } } - if err := hc.Restore(c, DefaultBackupDir, "", 0, 1, encPath); err != nil { + if err := hc.Restore(c, DefaultBackupDir, "", 0, 1); err != nil { return errors.Wrap(err, "error doing restore during upgrade") } if err := WaitForRestore(c); err != nil { @@ -850,6 +846,17 @@ func (c *LocalCluster) GetVersion() string { return c.conf.version } +// GetEncKeyPath returns the path to the encryption key file when encryption is enabled. +// It returns an empty string otherwise. The path to the encryption file is valid only +// inside the alpha container. +func (c *LocalCluster) GetEncKeyPath() (string, error) { + if c.conf.encryption { + return encKeyMountPath, nil + } + + return "", nil +} + func (c *LocalCluster) printAllLogs() error { log.Printf("[INFO] all logs for cluster with prefix [%v] are below!", c.conf.prefix) var finalErr error diff --git a/go.mod b/go.mod index 1595c2b587b..634c273b634 100644 --- a/go.mod +++ b/go.mod @@ -61,7 +61,6 @@ require ( golang.org/x/text v0.12.0 golang.org/x/tools v0.9.3 google.golang.org/grpc v1.56.2 - google.golang.org/protobuf v1.31.0 gopkg.in/square/go-jose.v2 v2.3.1 gopkg.in/yaml.v2 v2.4.0 ) @@ -143,6 +142,7 @@ require ( google.golang.org/appengine v1.6.7 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect google.golang.org/grpc/examples v0.0.0-20230821201920-d51b3f41716d // indirect + google.golang.org/protobuf v1.31.0 // indirect gopkg.in/DataDog/dd-trace-go.v1 v1.22.0 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/graphql/admin/admin.go b/graphql/admin/admin.go index 0c72607d32d..5143e72f385 100644 --- a/graphql/admin/admin.go +++ b/graphql/admin/admin.go @@ -761,6 +761,7 @@ func newAdminResolverFactory() resolve.ResolverFactory { "moveTablet": resolveMoveTablet, "assign": resolveAssign, "enterpriseLicense": resolveEnterpriseLicense, + "restoreTenant": resolveTenantRestore, } rf := resolverFactoryWithErrorMsg(errResolverNotFound). diff --git a/graphql/admin/endpoints_ee.go b/graphql/admin/endpoints_ee.go index 9637ce4b7fc..057831b1793 100644 --- a/graphql/admin/endpoints_ee.go +++ b/graphql/admin/endpoints_ee.go @@ -52,6 +52,19 @@ const adminTypes = ` taskId: String } + input RestoreTenantInput { + """ + restoreInput contains fields that are required for the restore operation, + i.e., location, backupId, and backupNum + """ + restoreInput: RestoreInput + + """ + fromNamespace is the namespace of the tenant that needs to be restored into namespace 0 of the new cluster. + """ + fromNamespace: Int! + } + input RestoreInput { """ @@ -478,6 +491,11 @@ const adminMutations = ` """ restore(input: RestoreInput!) : RestorePayload + """ + Restore given tenant into namespace 0 of the cluster + """ + restoreTenant(input: RestoreTenantInput!) : RestorePayload + """ Login to Dgraph. Successful login results in a JWT that can be used in future requests. If login is not successful an error is returned. diff --git a/graphql/admin/restore.go b/graphql/admin/restore.go index 73e68e60106..da664cca2d2 100644 --- a/graphql/admin/restore.go +++ b/graphql/admin/restore.go @@ -50,6 +50,41 @@ type restoreInput struct { VaultFormat string } +type restoreTenantInput struct { + RestoreInput restoreInput + FromNamespace uint64 +} + +func resolveTenantRestore(ctx context.Context, m schema.Mutation) (*resolve.Resolved, bool) { + input, err := getRestoreTenantInput(m) + if err != nil { + return resolve.EmptyResult(m, err), false + } + glog.Infof("Got restore request: %+v", input) + + req := pb.RestoreRequest{ + Location: input.RestoreInput.Location, + BackupId: input.RestoreInput.BackupId, + BackupNum: uint64(input.RestoreInput.BackupNum), + IncrementalFrom: uint64(input.RestoreInput.IncrementalFrom), + IsPartial: input.RestoreInput.IsPartial, + EncryptionKeyFile: input.RestoreInput.EncryptionKeyFile, + AccessKey: input.RestoreInput.AccessKey, + SecretKey: input.RestoreInput.SecretKey, + SessionToken: input.RestoreInput.SessionToken, + Anonymous: input.RestoreInput.Anonymous, + VaultAddr: input.RestoreInput.VaultAddr, + VaultRoleidFile: input.RestoreInput.VaultRoleIDFile, + VaultSecretidFile: input.RestoreInput.VaultSecretIDFile, + VaultPath: input.RestoreInput.VaultPath, + VaultField: input.RestoreInput.VaultField, + VaultFormat: input.RestoreInput.VaultFormat, + FromNamespace: input.FromNamespace, + IsNamespaceAwareRestore: true, + } + return restore(ctx, m, req) +} + func resolveRestore(ctx context.Context, m schema.Mutation) (*resolve.Resolved, bool) { input, err := getRestoreInput(m) if err != nil { @@ -59,27 +94,31 @@ func resolveRestore(ctx context.Context, m schema.Mutation) (*resolve.Resolved, input.Location, input.BackupId, input.BackupNum, input.IncrementalFrom, input.IsPartial) req := pb.RestoreRequest{ - Location: input.Location, - BackupId: input.BackupId, - BackupNum: uint64(input.BackupNum), - IncrementalFrom: uint64(input.IncrementalFrom), - IsPartial: input.IsPartial, - EncryptionKeyFile: input.EncryptionKeyFile, - AccessKey: input.AccessKey, - SecretKey: input.SecretKey, - SessionToken: input.SessionToken, - Anonymous: input.Anonymous, - VaultAddr: input.VaultAddr, - VaultRoleidFile: input.VaultRoleIDFile, - VaultSecretidFile: input.VaultSecretIDFile, - VaultPath: input.VaultPath, - VaultField: input.VaultField, - VaultFormat: input.VaultFormat, + Location: input.Location, + BackupId: input.BackupId, + BackupNum: uint64(input.BackupNum), + IncrementalFrom: uint64(input.IncrementalFrom), + IsPartial: input.IsPartial, + EncryptionKeyFile: input.EncryptionKeyFile, + AccessKey: input.AccessKey, + SecretKey: input.SecretKey, + SessionToken: input.SessionToken, + Anonymous: input.Anonymous, + VaultAddr: input.VaultAddr, + VaultRoleidFile: input.VaultRoleIDFile, + VaultSecretidFile: input.VaultSecretIDFile, + VaultPath: input.VaultPath, + VaultField: input.VaultField, + VaultFormat: input.VaultFormat, + IsNamespaceAwareRestore: false, } + return restore(ctx, m, req) +} + +func restore(ctx context.Context, m schema.Mutation, req pb.RestoreRequest) (*resolve.Resolved, bool) { wg := &sync.WaitGroup{} - err = worker.ProcessRestoreRequest(context.Background(), &req, wg) - if err != nil { + if err := worker.ProcessRestoreRequest(context.Background(), &req, wg); err != nil { glog.Warningf("error processing restore request: %+v, err: %v", req, err) return resolve.DataResult( m, @@ -116,10 +155,35 @@ func getRestoreInput(m schema.Mutation) (*restoreInput, error) { if err := json.Unmarshal(inputByts, &input); err != nil { return nil, schema.GQLWrapf(err, "couldn't get input argument") } + if err := verifyRestoreInput(input); err != nil { + return nil, err + } - if input.BackupNum < 0 { - err := errors.Errorf("backupNum value should be equal or greater than zero") + return &input, nil +} + +func getRestoreTenantInput(m schema.Mutation) (*restoreTenantInput, error) { + inputArg := m.ArgValue(schema.InputArgName) + inputByts, err := json.Marshal(inputArg) + if err != nil { + return nil, schema.GQLWrapf(err, "couldn't get input argument") + } + + var input restoreTenantInput + if err := json.Unmarshal(inputByts, &input); err != nil { return nil, schema.GQLWrapf(err, "couldn't get input argument") } + if err := verifyRestoreInput(input.RestoreInput); err != nil { + return nil, err + } + return &input, nil } + +func verifyRestoreInput(input restoreInput) error { + if input.BackupNum < 0 { + err := errors.Errorf("backupNum value should be equal or greater than zero") + return schema.GQLWrapf(err, "couldn't get input argument") + } + return nil +} diff --git a/protos/pb.proto b/protos/pb.proto index 7cc0e2fc239..1a19186dab8 100644 --- a/protos/pb.proto +++ b/protos/pb.proto @@ -321,6 +321,8 @@ message RestoreRequest { uint64 backup_num = 16; uint64 incremental_from = 17; bool is_partial = 18; + uint64 fromNamespace = 19; + bool isNamespaceAwareRestore = 20; } message Proposal { diff --git a/protos/pb/pb.pb.go b/protos/pb/pb.pb.go index 6c8aef3d819..8b00604f7cb 100644 --- a/protos/pb/pb.pb.go +++ b/protos/pb/pb.pb.go @@ -2289,15 +2289,17 @@ type RestoreRequest struct { // Info needed to process encrypted backups. EncryptionKeyFile string `protobuf:"bytes,9,opt,name=encryption_key_file,json=encryptionKeyFile,proto3" json:"encryption_key_file,omitempty"` // Vault options - VaultAddr string `protobuf:"bytes,10,opt,name=vault_addr,json=vaultAddr,proto3" json:"vault_addr,omitempty"` - VaultRoleidFile string `protobuf:"bytes,11,opt,name=vault_roleid_file,json=vaultRoleidFile,proto3" json:"vault_roleid_file,omitempty"` - VaultSecretidFile string `protobuf:"bytes,12,opt,name=vault_secretid_file,json=vaultSecretidFile,proto3" json:"vault_secretid_file,omitempty"` - VaultPath string `protobuf:"bytes,13,opt,name=vault_path,json=vaultPath,proto3" json:"vault_path,omitempty"` - VaultField string `protobuf:"bytes,14,opt,name=vault_field,json=vaultField,proto3" json:"vault_field,omitempty"` - VaultFormat string `protobuf:"bytes,15,opt,name=vault_format,json=vaultFormat,proto3" json:"vault_format,omitempty"` - BackupNum uint64 `protobuf:"varint,16,opt,name=backup_num,json=backupNum,proto3" json:"backup_num,omitempty"` - IncrementalFrom uint64 `protobuf:"varint,17,opt,name=incremental_from,json=incrementalFrom,proto3" json:"incremental_from,omitempty"` - IsPartial bool `protobuf:"varint,18,opt,name=is_partial,json=isPartial,proto3" json:"is_partial,omitempty"` + VaultAddr string `protobuf:"bytes,10,opt,name=vault_addr,json=vaultAddr,proto3" json:"vault_addr,omitempty"` + VaultRoleidFile string `protobuf:"bytes,11,opt,name=vault_roleid_file,json=vaultRoleidFile,proto3" json:"vault_roleid_file,omitempty"` + VaultSecretidFile string `protobuf:"bytes,12,opt,name=vault_secretid_file,json=vaultSecretidFile,proto3" json:"vault_secretid_file,omitempty"` + VaultPath string `protobuf:"bytes,13,opt,name=vault_path,json=vaultPath,proto3" json:"vault_path,omitempty"` + VaultField string `protobuf:"bytes,14,opt,name=vault_field,json=vaultField,proto3" json:"vault_field,omitempty"` + VaultFormat string `protobuf:"bytes,15,opt,name=vault_format,json=vaultFormat,proto3" json:"vault_format,omitempty"` + BackupNum uint64 `protobuf:"varint,16,opt,name=backup_num,json=backupNum,proto3" json:"backup_num,omitempty"` + IncrementalFrom uint64 `protobuf:"varint,17,opt,name=incremental_from,json=incrementalFrom,proto3" json:"incremental_from,omitempty"` + IsPartial bool `protobuf:"varint,18,opt,name=is_partial,json=isPartial,proto3" json:"is_partial,omitempty"` + FromNamespace uint64 `protobuf:"varint,19,opt,name=fromNamespace,proto3" json:"fromNamespace,omitempty"` + IsNamespaceAwareRestore bool `protobuf:"varint,20,opt,name=isNamespaceAwareRestore,proto3" json:"isNamespaceAwareRestore,omitempty"` } func (m *RestoreRequest) Reset() { *m = RestoreRequest{} } @@ -2445,6 +2447,20 @@ func (m *RestoreRequest) GetIsPartial() bool { return false } +func (m *RestoreRequest) GetFromNamespace() uint64 { + if m != nil { + return m.FromNamespace + } + return 0 +} + +func (m *RestoreRequest) GetIsNamespaceAwareRestore() bool { + if m != nil { + return m.IsNamespaceAwareRestore + } + return false +} + type Proposal struct { Mutations *Mutations `protobuf:"bytes,2,opt,name=mutations,proto3" json:"mutations,omitempty"` Kv []*pb.KV `protobuf:"bytes,4,rep,name=kv,proto3" json:"kv,omitempty"` @@ -5675,352 +5691,354 @@ func init() { func init() { proto.RegisterFile("pb.proto", fileDescriptor_f80abaa17e25ccc8) } var fileDescriptor_f80abaa17e25ccc8 = []byte{ - // 5512 bytes of a gzipped FileDescriptorProto + // 5544 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x7b, 0xcd, 0x6f, 0x1c, 0x57, 0x72, 0x38, 0xe7, 0x7b, 0xba, 0x86, 0x33, 0x1a, 0x3e, 0xc9, 0xf2, 0xec, 0xc8, 0x12, 0xb5, 0x6d, 0xcb, 0xa6, 0x25, 0x8b, 0x92, 0x68, 0xef, 0xfe, 0xd6, 0x5e, 0x2c, 0xf0, 0x23, 0xc5, 0xa1, 0x4c, 0x8b, 0x22, 0xb5, 0x3d, 0x23, 0xed, 0x07, 0x90, 0x0c, 0x9a, 0xdd, 0x8f, 0x64, 0x2f, 0x7b, 0xba, - 0x7b, 0xbb, 0x7b, 0xb8, 0xa4, 0x6f, 0xb9, 0x64, 0x0f, 0xc9, 0x61, 0x81, 0x5c, 0x02, 0x04, 0x08, - 0x90, 0x5c, 0x93, 0x53, 0x10, 0x20, 0x41, 0x80, 0xdc, 0x82, 0x60, 0x91, 0xd3, 0x1e, 0x83, 0x6c, - 0x22, 0x04, 0xde, 0x20, 0x07, 0x1d, 0x02, 0xe4, 0x2f, 0x48, 0x50, 0x55, 0xaf, 0xbf, 0x86, 0x43, - 0x59, 0x76, 0x90, 0x4b, 0x4e, 0xf3, 0xaa, 0xde, 0x77, 0x55, 0xbd, 0xfa, 0xec, 0x81, 0x66, 0xb0, - 0xbf, 0x1a, 0x84, 0x7e, 0xec, 0x8b, 0x72, 0xb0, 0xdf, 0xd7, 0xcc, 0xc0, 0x61, 0xb0, 0x7f, 0xfb, - 0xd0, 0x89, 0x8f, 0xa6, 0xfb, 0xab, 0x96, 0x3f, 0xb9, 0x67, 0x1f, 0x86, 0x66, 0x70, 0x74, 0xd7, - 0xf1, 0xef, 0xed, 0x9b, 0xf6, 0xa1, 0x0c, 0xef, 0x9d, 0x7c, 0x74, 0x2f, 0xd8, 0xbf, 0x97, 0x4c, - 0xed, 0xdf, 0xcd, 0x8d, 0x3d, 0xf4, 0x0f, 0xfd, 0x7b, 0x84, 0xde, 0x9f, 0x1e, 0x10, 0x44, 0x00, - 0xb5, 0x78, 0xb8, 0xde, 0x87, 0xea, 0x8e, 0x13, 0xc5, 0x42, 0x40, 0x75, 0xea, 0xd8, 0x51, 0xaf, - 0x74, 0xb3, 0xb2, 0x52, 0x37, 0xa8, 0xad, 0x3f, 0x01, 0x6d, 0x64, 0x46, 0xc7, 0xcf, 0x4d, 0x77, - 0x2a, 0x45, 0x17, 0x2a, 0x27, 0xa6, 0xdb, 0x2b, 0xdd, 0x2c, 0xad, 0x2c, 0x1a, 0xd8, 0x14, 0xab, - 0xd0, 0x3c, 0x31, 0xdd, 0x71, 0x7c, 0x16, 0xc8, 0x5e, 0xf9, 0x66, 0x69, 0xa5, 0xb3, 0x76, 0x79, - 0x35, 0xd8, 0x5f, 0x7d, 0xea, 0x47, 0xb1, 0xe3, 0x1d, 0xae, 0x3e, 0x37, 0xdd, 0xd1, 0x59, 0x20, - 0x8d, 0xc6, 0x09, 0x37, 0xf4, 0x3d, 0x68, 0x0d, 0x43, 0x6b, 0x6b, 0xea, 0x59, 0xb1, 0xe3, 0x7b, - 0xb8, 0xa3, 0x67, 0x4e, 0x24, 0xad, 0xa8, 0x19, 0xd4, 0x46, 0x9c, 0x19, 0x1e, 0x46, 0xbd, 0xca, - 0xcd, 0x0a, 0xe2, 0xb0, 0x2d, 0x7a, 0xd0, 0x70, 0xa2, 0x87, 0xfe, 0xd4, 0x8b, 0x7b, 0xd5, 0x9b, - 0xa5, 0x95, 0xa6, 0x91, 0x80, 0xfa, 0x5f, 0x55, 0xa0, 0xf6, 0xfd, 0xa9, 0x0c, 0xcf, 0x68, 0x5e, - 0x1c, 0x87, 0xc9, 0x5a, 0xd8, 0x16, 0x57, 0xa0, 0xe6, 0x9a, 0xde, 0x61, 0xd4, 0x2b, 0xd3, 0x62, - 0x0c, 0x88, 0x6b, 0xa0, 0x99, 0x07, 0xb1, 0x0c, 0xc7, 0x53, 0xc7, 0xee, 0x55, 0x6e, 0x96, 0x56, - 0xea, 0x46, 0x93, 0x10, 0xcf, 0x1c, 0x5b, 0x7c, 0x03, 0x9a, 0xb6, 0x3f, 0xb6, 0xf2, 0x7b, 0xd9, - 0x3e, 0xed, 0x25, 0xde, 0x86, 0xe6, 0xd4, 0xb1, 0xc7, 0xae, 0x13, 0xc5, 0xbd, 0xda, 0xcd, 0xd2, - 0x4a, 0x6b, 0xad, 0x89, 0x97, 0x45, 0xda, 0x19, 0x8d, 0xa9, 0x63, 0x13, 0x11, 0x6f, 0x43, 0x33, - 0x0a, 0xad, 0xf1, 0xc1, 0xd4, 0xb3, 0x7a, 0x75, 0x1a, 0x74, 0x09, 0x07, 0xe5, 0x6e, 0x6d, 0x34, - 0x22, 0x06, 0xf0, 0x5a, 0xa1, 0x3c, 0x91, 0x61, 0x24, 0x7b, 0x0d, 0xde, 0x4a, 0x81, 0xe2, 0x3e, - 0xb4, 0x0e, 0x4c, 0x4b, 0xc6, 0xe3, 0xc0, 0x0c, 0xcd, 0x49, 0xaf, 0x99, 0x2d, 0xb4, 0x85, 0xe8, - 0xa7, 0x88, 0x8d, 0x0c, 0x38, 0x48, 0x01, 0xf1, 0x21, 0xb4, 0x09, 0x8a, 0xc6, 0x07, 0x8e, 0x1b, - 0xcb, 0xb0, 0xa7, 0xd1, 0x9c, 0x0e, 0xcd, 0x21, 0xcc, 0x28, 0x94, 0xd2, 0x58, 0xe4, 0x41, 0x8c, - 0x11, 0xd7, 0x01, 0xe4, 0x69, 0x60, 0x7a, 0xf6, 0xd8, 0x74, 0xdd, 0x1e, 0xd0, 0x19, 0x34, 0xc6, - 0xac, 0xbb, 0xae, 0x78, 0x13, 0xcf, 0x67, 0xda, 0xe3, 0x38, 0xea, 0xb5, 0x6f, 0x96, 0x56, 0xaa, - 0x46, 0x1d, 0xc1, 0x51, 0x84, 0x74, 0xb5, 0x4c, 0xeb, 0x48, 0xf6, 0x3a, 0x37, 0x4b, 0x2b, 0x35, - 0x83, 0x01, 0xc4, 0x1e, 0x38, 0x61, 0x14, 0xf7, 0x2e, 0x31, 0x96, 0x00, 0x71, 0x15, 0xea, 0xfe, - 0xc1, 0x41, 0x24, 0xe3, 0x5e, 0x97, 0xd0, 0x0a, 0xd2, 0xd7, 0x40, 0x23, 0xa9, 0x22, 0xaa, 0xdd, - 0x82, 0xfa, 0x09, 0x02, 0x2c, 0x7c, 0xad, 0xb5, 0x36, 0x1e, 0x3b, 0x15, 0x3c, 0x43, 0x75, 0xea, - 0x37, 0xa0, 0xb9, 0x63, 0x7a, 0x87, 0x89, 0xb4, 0x22, 0x3b, 0x69, 0x82, 0x66, 0x50, 0x5b, 0xff, - 0xc3, 0x32, 0xd4, 0x0d, 0x19, 0x4d, 0xdd, 0x58, 0xbc, 0x07, 0x80, 0xcc, 0x9a, 0x98, 0x71, 0xe8, - 0x9c, 0xaa, 0x55, 0x33, 0x76, 0x69, 0x53, 0xc7, 0x7e, 0x42, 0x5d, 0xe2, 0x3e, 0x2c, 0xd2, 0xea, - 0xc9, 0xd0, 0x72, 0x76, 0x80, 0xf4, 0x7c, 0x46, 0x8b, 0x86, 0xa8, 0x19, 0x57, 0xa1, 0x4e, 0xf2, - 0xc1, 0x32, 0xda, 0x36, 0x14, 0x24, 0x6e, 0x41, 0xc7, 0xf1, 0x62, 0xe4, 0x9f, 0x15, 0x8f, 0x6d, - 0x19, 0x25, 0x02, 0xd4, 0x4e, 0xb1, 0x9b, 0x32, 0x8a, 0xc5, 0x03, 0x60, 0x26, 0x24, 0x1b, 0xd6, - 0x68, 0xc3, 0x4e, 0xca, 0xdc, 0x88, 0x77, 0xa4, 0x31, 0x6a, 0xc7, 0xbb, 0xd0, 0xc2, 0xfb, 0x25, - 0x33, 0xea, 0x34, 0x63, 0x91, 0x6e, 0xa3, 0xc8, 0x61, 0x00, 0x0e, 0x50, 0xc3, 0x91, 0x34, 0x28, - 0xa4, 0x2c, 0x54, 0xd4, 0xd6, 0x07, 0x50, 0xdb, 0x0b, 0x6d, 0x19, 0xce, 0x7d, 0x27, 0x02, 0xaa, - 0xb6, 0x8c, 0x2c, 0x7a, 0xc2, 0x4d, 0x83, 0xda, 0xd9, 0xdb, 0xa9, 0xe4, 0xde, 0x8e, 0xfe, 0xc7, - 0x25, 0x68, 0x0d, 0xfd, 0x30, 0x7e, 0x22, 0xa3, 0xc8, 0x3c, 0x94, 0x62, 0x19, 0x6a, 0x3e, 0x2e, - 0xab, 0x28, 0xac, 0xe1, 0x99, 0x68, 0x1f, 0x83, 0xf1, 0x33, 0x7c, 0x28, 0x5f, 0xcc, 0x07, 0x94, - 0x29, 0x7a, 0x75, 0x15, 0x25, 0x53, 0xf4, 0xe6, 0x32, 0xe9, 0xa9, 0xe6, 0xa5, 0xe7, 0x42, 0xd1, - 0xd4, 0xbf, 0x05, 0x80, 0xe7, 0xfb, 0x8a, 0x52, 0xa0, 0xff, 0xbc, 0x04, 0x2d, 0xc3, 0x3c, 0x88, - 0x1f, 0xfa, 0x5e, 0x2c, 0x4f, 0x63, 0xd1, 0x81, 0xb2, 0x63, 0x13, 0x8d, 0xea, 0x46, 0xd9, 0xb1, - 0xf1, 0x74, 0x87, 0xa1, 0x3f, 0x0d, 0x88, 0x44, 0x6d, 0x83, 0x01, 0xa2, 0xa5, 0x6d, 0x87, 0x74, - 0x64, 0xa4, 0xa5, 0x6d, 0x87, 0x62, 0x19, 0x5a, 0x91, 0x67, 0x06, 0xd1, 0x91, 0x1f, 0xe3, 0xe9, - 0xaa, 0x74, 0x3a, 0x48, 0x50, 0xa3, 0x08, 0x1f, 0x9d, 0x13, 0x8d, 0x5d, 0x69, 0x86, 0x9e, 0x0c, - 0x49, 0x91, 0x34, 0x0d, 0xcd, 0x89, 0x76, 0x18, 0xa1, 0xff, 0xbc, 0x02, 0xf5, 0x27, 0x72, 0xb2, - 0x2f, 0xc3, 0x73, 0x87, 0xb8, 0x0f, 0x4d, 0xda, 0x77, 0xec, 0xd8, 0x7c, 0x8e, 0x8d, 0x37, 0x5e, - 0xbe, 0x58, 0x5e, 0x22, 0xdc, 0xb6, 0xfd, 0x81, 0x3f, 0x71, 0x62, 0x39, 0x09, 0xe2, 0x33, 0xa3, - 0xa1, 0x50, 0x73, 0x0f, 0x78, 0x15, 0xea, 0xae, 0x34, 0x91, 0x67, 0x2c, 0x9e, 0x0a, 0x12, 0x77, - 0xa1, 0x61, 0x4e, 0xc6, 0xb6, 0x34, 0x6d, 0x3e, 0xd4, 0xc6, 0x95, 0x97, 0x2f, 0x96, 0xbb, 0xe6, - 0x64, 0x53, 0x9a, 0xf9, 0xb5, 0xeb, 0x8c, 0x11, 0x1f, 0xa3, 0x4c, 0x46, 0xf1, 0x78, 0x1a, 0xd8, - 0x66, 0x2c, 0x49, 0xd7, 0x55, 0x37, 0x7a, 0x2f, 0x5f, 0x2c, 0x5f, 0x41, 0xf4, 0x33, 0xc2, 0xe6, - 0xa6, 0x41, 0x86, 0x45, 0xbd, 0x97, 0x5c, 0x5f, 0xe9, 0x3d, 0x05, 0x8a, 0x6d, 0x58, 0xb2, 0xdc, - 0x69, 0x84, 0xca, 0xd9, 0xf1, 0x0e, 0xfc, 0xb1, 0xef, 0xb9, 0x67, 0xc4, 0xe0, 0xe6, 0xc6, 0xf5, - 0x97, 0x2f, 0x96, 0xbf, 0xa1, 0x3a, 0xb7, 0xbd, 0x03, 0x7f, 0xcf, 0x73, 0xcf, 0x72, 0xeb, 0x5f, - 0x9a, 0xe9, 0x12, 0xff, 0x1f, 0x3a, 0x07, 0x7e, 0x68, 0xc9, 0x71, 0x4a, 0xb2, 0x0e, 0xad, 0xd3, - 0x7f, 0xf9, 0x62, 0xf9, 0x2a, 0xf5, 0x3c, 0x3a, 0x47, 0xb7, 0xc5, 0x3c, 0x5e, 0xff, 0x97, 0x32, - 0xd4, 0xa8, 0x2d, 0xee, 0x43, 0x63, 0x42, 0x2c, 0x49, 0xf4, 0xd3, 0x55, 0x94, 0x21, 0xea, 0x5b, - 0x65, 0x5e, 0x45, 0x03, 0x2f, 0x0e, 0xcf, 0x8c, 0x64, 0x18, 0xce, 0x88, 0xcd, 0x7d, 0x57, 0xc6, - 0x91, 0x92, 0xf9, 0xdc, 0x8c, 0x11, 0x77, 0xa8, 0x19, 0x6a, 0xd8, 0xac, 0xdc, 0x54, 0xce, 0xc9, - 0x4d, 0x1f, 0x9a, 0xd6, 0x91, 0xb4, 0x8e, 0xa3, 0xe9, 0x44, 0x49, 0x55, 0x0a, 0x8b, 0xb7, 0xa1, - 0x4d, 0xed, 0xc0, 0x77, 0x3c, 0x9a, 0x5e, 0xa3, 0x01, 0x8b, 0x19, 0x72, 0x14, 0xf5, 0xb7, 0x60, - 0x31, 0x7f, 0x58, 0x34, 0xe7, 0xc7, 0xf2, 0x8c, 0xe4, 0xab, 0x6a, 0x60, 0x53, 0xdc, 0x84, 0x1a, - 0x29, 0x3a, 0x92, 0xae, 0xd6, 0x1a, 0xe0, 0x99, 0x79, 0x8a, 0xc1, 0x1d, 0x9f, 0x94, 0xbf, 0x53, - 0xc2, 0x75, 0xf2, 0x57, 0xc8, 0xaf, 0xa3, 0x5d, 0xbc, 0x0e, 0x4f, 0xc9, 0xad, 0xa3, 0xfb, 0xd0, - 0xd8, 0x71, 0x2c, 0xe9, 0x45, 0x64, 0xf4, 0xa7, 0x91, 0x4c, 0x95, 0x12, 0xb6, 0xf1, 0xbe, 0x13, - 0xf3, 0x74, 0xd7, 0xb7, 0x65, 0x44, 0xeb, 0x54, 0x8d, 0x14, 0xc6, 0x3e, 0x79, 0x1a, 0x38, 0xe1, - 0xd9, 0x88, 0x29, 0x55, 0x31, 0x52, 0x18, 0xa5, 0x4b, 0x7a, 0xb8, 0x99, 0x9d, 0x18, 0x70, 0x05, - 0xea, 0x7f, 0x5e, 0x85, 0xc5, 0x1f, 0xcb, 0xd0, 0x7f, 0x1a, 0xfa, 0x81, 0x1f, 0x99, 0xae, 0x58, - 0x2f, 0xd2, 0x9c, 0x79, 0x7b, 0x13, 0x4f, 0x9b, 0x1f, 0xb6, 0x3a, 0x4c, 0x99, 0xc0, 0x3c, 0xcb, - 0x73, 0x45, 0x87, 0x3a, 0xf3, 0x7c, 0x0e, 0xcd, 0x54, 0x0f, 0x8e, 0x61, 0x2e, 0xd3, 0x59, 0x8b, - 0xf4, 0x50, 0x3d, 0xf8, 0x2a, 0x27, 0xe6, 0xe9, 0xb3, 0xed, 0x4d, 0xc5, 0x5b, 0x05, 0x29, 0x2a, - 0x8c, 0x4e, 0xbd, 0x51, 0xc2, 0xd4, 0x14, 0xc6, 0x9b, 0x22, 0x45, 0xa2, 0xed, 0xcd, 0xde, 0x22, - 0x75, 0x25, 0xa0, 0x78, 0x0b, 0xb4, 0x89, 0x79, 0x8a, 0x0a, 0x6d, 0xdb, 0xe6, 0xa7, 0x69, 0x64, - 0x08, 0xf1, 0x4d, 0xa8, 0xc4, 0xa7, 0x1e, 0xbd, 0x3d, 0xf4, 0x2a, 0xd0, 0xc9, 0x1c, 0x9d, 0x7a, - 0x4a, 0xf5, 0x19, 0xd8, 0x87, 0x3c, 0xb5, 0x1c, 0x9b, 0x9c, 0x08, 0xcd, 0xc0, 0xa6, 0xb8, 0x05, - 0x0d, 0x97, 0xb9, 0x45, 0x8e, 0x42, 0x6b, 0xad, 0xc5, 0x7a, 0x94, 0x50, 0x46, 0xd2, 0x27, 0x3e, - 0x80, 0x66, 0x42, 0x9d, 0x5e, 0x8b, 0xc6, 0x75, 0x13, 0x7a, 0x26, 0x64, 0x34, 0xd2, 0x11, 0xe2, - 0x3e, 0x68, 0xb6, 0x74, 0x65, 0x2c, 0xc7, 0x1e, 0x2b, 0xf2, 0x16, 0x3b, 0x90, 0x9b, 0x84, 0xdc, - 0x8d, 0x0c, 0xf9, 0xd3, 0xa9, 0x8c, 0x62, 0xa3, 0x69, 0x2b, 0x84, 0x78, 0x27, 0x7b, 0x58, 0x1d, - 0x62, 0x57, 0x9e, 0x98, 0x49, 0x57, 0xff, 0x7b, 0x70, 0x69, 0x86, 0x69, 0x79, 0x29, 0x6d, 0xb3, - 0x94, 0x5e, 0xc9, 0x4b, 0x69, 0x35, 0x27, 0x99, 0x9f, 0x55, 0x9b, 0xcd, 0xae, 0xa6, 0xff, 0x67, - 0x05, 0x2e, 0xa9, 0x07, 0x73, 0xe4, 0x04, 0xc3, 0x58, 0xa9, 0x2e, 0x32, 0x4c, 0x4a, 0x56, 0xab, - 0x46, 0x02, 0x8a, 0xff, 0x07, 0x75, 0xd2, 0x34, 0xc9, 0x83, 0x5f, 0xce, 0x04, 0x21, 0x9d, 0xce, - 0x0a, 0x40, 0x49, 0x91, 0x1a, 0x2e, 0x3e, 0x82, 0xda, 0xe7, 0x32, 0xf4, 0xd9, 0xd0, 0xb6, 0xd6, - 0x6e, 0xcc, 0x9b, 0x87, 0xe4, 0x53, 0xd3, 0x78, 0xf0, 0xff, 0x54, 0x5e, 0xe0, 0xab, 0xc8, 0xcb, - 0x3b, 0x68, 0x6c, 0x27, 0xfe, 0x89, 0xb4, 0x7b, 0x8d, 0x8c, 0xe6, 0x4a, 0xc8, 0x93, 0xae, 0x44, - 0x64, 0x9a, 0x73, 0x45, 0x46, 0xbb, 0x58, 0x64, 0xfa, 0x9b, 0xd0, 0xca, 0xd1, 0x65, 0x0e, 0xa3, - 0x96, 0x8b, 0xea, 0x44, 0x4b, 0x55, 0x69, 0x5e, 0x2b, 0x6d, 0x02, 0x64, 0x54, 0xfa, 0xba, 0xba, - 0x4d, 0xff, 0x9d, 0x12, 0x5c, 0x7a, 0xe8, 0x7b, 0x9e, 0x24, 0x57, 0x9d, 0x79, 0x9e, 0x3d, 0xf1, - 0xd2, 0x85, 0x4f, 0xfc, 0x7d, 0xa8, 0x45, 0x38, 0x58, 0xad, 0x7e, 0x79, 0x0e, 0x13, 0x0d, 0x1e, - 0x81, 0x8a, 0x7e, 0x62, 0x9e, 0x8e, 0x03, 0xe9, 0xd9, 0x8e, 0x77, 0x98, 0x28, 0xfa, 0x89, 0x79, - 0xfa, 0x94, 0x31, 0xfa, 0x5f, 0x97, 0x01, 0x3e, 0x95, 0xa6, 0x1b, 0x1f, 0xa1, 0x31, 0x43, 0x8e, - 0x3a, 0x5e, 0x14, 0x9b, 0x9e, 0x95, 0x04, 0x4a, 0x29, 0x8c, 0x1c, 0x45, 0x9b, 0x2e, 0x23, 0x56, - 0x91, 0x9a, 0x91, 0x80, 0x28, 0x1f, 0xb8, 0xdd, 0x34, 0x52, 0xb6, 0x5f, 0x41, 0x99, 0x23, 0x53, - 0x25, 0xb4, 0x72, 0x64, 0x7a, 0xd0, 0xc0, 0xc0, 0xc3, 0xf1, 0x3d, 0x12, 0x1a, 0xcd, 0x48, 0x40, - 0x5c, 0x67, 0x1a, 0xc4, 0xce, 0x84, 0x2d, 0x7c, 0xc5, 0x50, 0x10, 0x9e, 0x0a, 0x2d, 0xfa, 0xc0, - 0x3a, 0xf2, 0x49, 0x91, 0x54, 0x8c, 0x14, 0xc6, 0xd5, 0x7c, 0xef, 0xd0, 0xc7, 0xdb, 0x35, 0xc9, - 0x79, 0x4c, 0x40, 0xbe, 0x8b, 0x2d, 0x4f, 0xb1, 0x4b, 0xa3, 0xae, 0x14, 0x46, 0xba, 0x48, 0x39, - 0x3e, 0x90, 0x66, 0x3c, 0x0d, 0x65, 0xd4, 0x03, 0xea, 0x06, 0x29, 0xb7, 0x14, 0x46, 0x7c, 0x13, - 0x16, 0x91, 0x70, 0x66, 0x14, 0x39, 0x87, 0x9e, 0xb4, 0x49, 0xbd, 0x54, 0x0d, 0x24, 0xe6, 0xba, - 0x42, 0xe9, 0x7f, 0x5b, 0x86, 0x3a, 0xeb, 0x82, 0x82, 0xb3, 0x54, 0x7a, 0x2d, 0x67, 0xe9, 0x2d, - 0xd0, 0x82, 0x50, 0xda, 0x8e, 0x95, 0xf0, 0x51, 0x33, 0x32, 0x04, 0x45, 0x37, 0xe8, 0x1d, 0x10, - 0x3d, 0x9b, 0x06, 0x03, 0x42, 0x87, 0xb6, 0xef, 0x8d, 0x6d, 0x27, 0x3a, 0x1e, 0xef, 0x9f, 0xc5, - 0x32, 0x52, 0xb4, 0x68, 0xf9, 0xde, 0xa6, 0x13, 0x1d, 0x6f, 0x20, 0x0a, 0x49, 0xc8, 0x6f, 0x84, - 0xde, 0x46, 0xd3, 0x50, 0x90, 0xf8, 0x10, 0x34, 0xf2, 0x61, 0xc9, 0xc9, 0xd1, 0xc8, 0x39, 0xb9, - 0xfa, 0xf2, 0xc5, 0xb2, 0x40, 0xe4, 0x8c, 0x77, 0xd3, 0x4c, 0x70, 0xe8, 0xa5, 0xe1, 0x64, 0x34, - 0x57, 0xf4, 0x86, 0xd9, 0x4b, 0x43, 0xd4, 0x28, 0xca, 0x7b, 0x69, 0x8c, 0x11, 0x77, 0x41, 0x4c, - 0x3d, 0xcb, 0x9f, 0x04, 0x28, 0x14, 0xd2, 0x56, 0x87, 0x6c, 0xd1, 0x21, 0x97, 0xf2, 0x3d, 0x74, - 0x54, 0xfd, 0x9f, 0xcb, 0xb0, 0xb8, 0xe9, 0x84, 0xd2, 0x8a, 0xa5, 0x3d, 0xb0, 0x0f, 0x25, 0x9e, - 0x5d, 0x7a, 0xb1, 0x13, 0x9f, 0x29, 0x37, 0x54, 0x41, 0x69, 0x14, 0x51, 0x2e, 0x46, 0xdb, 0xfc, - 0xc2, 0x2a, 0x94, 0x20, 0x60, 0x40, 0xac, 0x01, 0x70, 0x7c, 0x45, 0x49, 0x82, 0xea, 0xc5, 0x49, - 0x02, 0x8d, 0x86, 0x61, 0x13, 0x83, 0x70, 0x9e, 0xe3, 0xb0, 0x2f, 0x5a, 0xa7, 0x0c, 0xc2, 0x54, - 0xb2, 0x47, 0x4b, 0x61, 0x5f, 0x83, 0x37, 0xc6, 0xb6, 0x78, 0x1b, 0xca, 0x7e, 0x40, 0xc4, 0x55, - 0x4b, 0xe7, 0xaf, 0xb0, 0xba, 0x17, 0x18, 0x65, 0x3f, 0xc0, 0x57, 0xcc, 0xb1, 0x2f, 0x09, 0x1e, - 0xbe, 0x62, 0xb4, 0x7b, 0x14, 0x71, 0x19, 0xaa, 0x47, 0xe8, 0xb0, 0x68, 0xba, 0xae, 0xff, 0x33, - 0x69, 0x3f, 0x0d, 0xa5, 0x9d, 0xc8, 0x60, 0x01, 0x87, 0x52, 0xe2, 0x99, 0x13, 0x19, 0x05, 0xa6, - 0x25, 0x95, 0x08, 0x66, 0x08, 0xfd, 0x2a, 0x94, 0xf7, 0x02, 0xd1, 0x80, 0xca, 0x70, 0x30, 0xea, - 0x2e, 0x60, 0x63, 0x73, 0xb0, 0xd3, 0x45, 0x8b, 0x52, 0xef, 0x36, 0xf4, 0x2f, 0xca, 0xa0, 0x3d, - 0x99, 0xc6, 0x26, 0xea, 0x96, 0x08, 0x6f, 0x59, 0x94, 0xd0, 0x4c, 0x14, 0xbf, 0x01, 0xcd, 0x28, - 0x36, 0x43, 0xf2, 0x4a, 0xd8, 0x3a, 0x35, 0x08, 0x1e, 0x45, 0xe2, 0x5d, 0xa8, 0x49, 0xfb, 0x50, - 0x26, 0xe6, 0xa2, 0x3b, 0x7b, 0x5f, 0x83, 0xbb, 0xc5, 0x0a, 0xd4, 0x23, 0xeb, 0x48, 0x4e, 0xcc, - 0x5e, 0x35, 0x1b, 0x38, 0x24, 0x0c, 0xbb, 0xe1, 0x86, 0xea, 0x17, 0xef, 0x40, 0x0d, 0x79, 0x13, - 0xa9, 0xb8, 0x92, 0x22, 0x51, 0x64, 0x83, 0x1a, 0xc6, 0x9d, 0x28, 0x78, 0x76, 0xe8, 0x07, 0x63, - 0x3f, 0x20, 0xda, 0x77, 0xd6, 0xae, 0x90, 0x8e, 0x4b, 0x6e, 0xb3, 0xba, 0x19, 0xfa, 0xc1, 0x5e, - 0x60, 0xd4, 0x6d, 0xfa, 0xc5, 0x28, 0x87, 0x86, 0xb3, 0x44, 0xb0, 0x51, 0xd0, 0x10, 0xc3, 0xa9, - 0xa4, 0x15, 0x68, 0x4e, 0x64, 0x6c, 0xda, 0x66, 0x6c, 0x2a, 0xdb, 0xb0, 0xc8, 0x2a, 0x93, 0x71, - 0x46, 0xda, 0xab, 0xdf, 0x83, 0x3a, 0x2f, 0x2d, 0x9a, 0x50, 0xdd, 0xdd, 0xdb, 0x1d, 0x30, 0x59, - 0xd7, 0x77, 0x76, 0xba, 0x25, 0x44, 0x6d, 0xae, 0x8f, 0xd6, 0xbb, 0x65, 0x6c, 0x8d, 0x7e, 0xf4, - 0x74, 0xd0, 0xad, 0xe8, 0xff, 0x50, 0x82, 0x66, 0xb2, 0x8e, 0xf8, 0x04, 0x00, 0x9f, 0xf0, 0xf8, - 0xc8, 0xf1, 0x52, 0x07, 0xef, 0x5a, 0x7e, 0xa7, 0x55, 0xe4, 0xea, 0xa7, 0xd8, 0xcb, 0xe6, 0x95, - 0x5e, 0x3c, 0xc1, 0xfd, 0x21, 0x74, 0x8a, 0x9d, 0x73, 0x3c, 0xdd, 0x3b, 0x79, 0xab, 0xd2, 0x59, - 0x7b, 0xa3, 0xb0, 0x34, 0xce, 0x24, 0xd1, 0xce, 0x19, 0x98, 0xbb, 0xd0, 0x4c, 0xd0, 0xa2, 0x05, - 0x8d, 0xcd, 0xc1, 0xd6, 0xfa, 0xb3, 0x1d, 0x14, 0x15, 0x80, 0xfa, 0x70, 0x7b, 0xf7, 0xd1, 0xce, - 0x80, 0xaf, 0xb5, 0xb3, 0x3d, 0x1c, 0x75, 0xcb, 0xfa, 0x1f, 0x94, 0xa0, 0x99, 0x78, 0x32, 0xe2, - 0x7d, 0x74, 0x3e, 0xc8, 0x49, 0x53, 0x96, 0x88, 0x32, 0x42, 0xb9, 0xb0, 0xd5, 0x48, 0xfa, 0xf1, - 0x2d, 0x92, 0x62, 0x4d, 0x7c, 0x1b, 0x02, 0xf2, 0x51, 0x73, 0xa5, 0x90, 0xd0, 0x11, 0x50, 0xb5, - 0x7d, 0x4f, 0x2a, 0x87, 0x99, 0xda, 0x24, 0x83, 0x8e, 0x67, 0xc9, 0x2c, 0x9c, 0x68, 0x10, 0x3c, - 0x8a, 0xf4, 0x98, 0xfd, 0xe8, 0xf4, 0x60, 0xe9, 0x6e, 0xa5, 0xfc, 0x6e, 0xe7, 0x82, 0x92, 0xf2, - 0xf9, 0xa0, 0x24, 0x33, 0x9c, 0xb5, 0x2f, 0x33, 0x9c, 0xfa, 0x9f, 0xd4, 0xa0, 0x63, 0xc8, 0x28, - 0xf6, 0x43, 0xa9, 0xfc, 0xc2, 0x57, 0x3d, 0xa1, 0xeb, 0x00, 0x21, 0x0f, 0xce, 0xb6, 0xd6, 0x14, - 0x86, 0xa3, 0x29, 0xd7, 0xb7, 0x48, 0x76, 0x95, 0x85, 0x4c, 0x61, 0x71, 0x0d, 0xb4, 0x7d, 0xd3, - 0x3a, 0xe6, 0x65, 0xd9, 0x4e, 0x36, 0x19, 0xc1, 0xeb, 0x9a, 0x96, 0x25, 0xa3, 0x68, 0x8c, 0xa2, - 0xc0, 0xd6, 0x52, 0x63, 0xcc, 0x63, 0x79, 0x26, 0xee, 0x03, 0x44, 0xd2, 0x0a, 0x65, 0x4c, 0xdd, - 0x68, 0x33, 0xb5, 0x8d, 0xa5, 0x5f, 0xbe, 0x58, 0x5e, 0xf8, 0xa7, 0x17, 0xcb, 0xda, 0x50, 0x7a, - 0x91, 0x13, 0x3b, 0x27, 0xd2, 0xd0, 0x78, 0x10, 0xce, 0xf8, 0x36, 0xb4, 0x23, 0x19, 0xa1, 0xb1, - 0x1d, 0xc7, 0xfe, 0xb1, 0x64, 0xbf, 0x7c, 0xee, 0xa4, 0x45, 0x35, 0x6e, 0x84, 0xc3, 0x50, 0x11, - 0x99, 0x9e, 0xef, 0x9d, 0x4d, 0xfc, 0x69, 0xa4, 0x2c, 0x4b, 0x86, 0x10, 0xab, 0x70, 0x59, 0x7a, - 0x56, 0x78, 0x16, 0xe0, 0x8d, 0xf0, 0x2c, 0xe3, 0x03, 0xc7, 0x95, 0xca, 0xa1, 0x5f, 0xca, 0xba, - 0x1e, 0xcb, 0xb3, 0x2d, 0xc7, 0x95, 0x78, 0xad, 0x13, 0x73, 0xea, 0xc6, 0x63, 0xca, 0x17, 0x00, - 0x5f, 0x8b, 0x30, 0xeb, 0xb6, 0x1d, 0x8a, 0xdb, 0xb0, 0xc4, 0xdd, 0xa1, 0xef, 0x4a, 0xc7, 0xe6, - 0xc5, 0x5a, 0x34, 0xea, 0x12, 0x75, 0x18, 0x84, 0xa7, 0xa5, 0x56, 0xe1, 0x32, 0x8f, 0xe5, 0x3b, - 0x26, 0xa3, 0x17, 0x79, 0x6b, 0xea, 0x1a, 0xaa, 0x9e, 0xe2, 0xd6, 0x81, 0x19, 0x1f, 0x51, 0x14, - 0x90, 0x6c, 0xfd, 0xd4, 0x8c, 0x8f, 0xd0, 0x2f, 0xe0, 0xee, 0x03, 0x47, 0xba, 0x1c, 0xc5, 0x6b, - 0x06, 0xcf, 0xd8, 0x42, 0x0c, 0xfa, 0x05, 0x6a, 0x80, 0x1f, 0x4e, 0x4c, 0x4e, 0x3f, 0x6a, 0x06, - 0x4f, 0xda, 0x22, 0x14, 0x6e, 0xa1, 0x38, 0xea, 0x4d, 0x27, 0x94, 0x88, 0xac, 0x1a, 0x8a, 0xc7, - 0xbb, 0xd3, 0x89, 0x78, 0x1f, 0xba, 0x8e, 0x67, 0x85, 0x72, 0x22, 0xbd, 0xd8, 0x74, 0xc7, 0x07, - 0xa1, 0x3f, 0xe9, 0x2d, 0xd1, 0xa0, 0x4b, 0x39, 0xfc, 0x56, 0xe8, 0x4f, 0x54, 0xf6, 0x26, 0x30, - 0xc3, 0xd8, 0x31, 0xdd, 0x9e, 0x48, 0xb2, 0x37, 0x4f, 0x19, 0xa1, 0xbf, 0xac, 0x40, 0x33, 0x0d, - 0x2f, 0xef, 0x80, 0x36, 0x49, 0xf4, 0xa3, 0x72, 0x0c, 0xdb, 0x05, 0xa5, 0x69, 0x64, 0xfd, 0xe2, - 0x3a, 0x94, 0x8f, 0x4f, 0x94, 0xae, 0x6e, 0xaf, 0x72, 0x62, 0x3f, 0xd8, 0xff, 0x68, 0xf5, 0xf1, - 0x73, 0xa3, 0x7c, 0x7c, 0xf2, 0x15, 0xde, 0x89, 0x78, 0x0f, 0x2e, 0x59, 0xae, 0x34, 0xbd, 0x71, - 0xe6, 0xcd, 0x90, 0x1c, 0x1a, 0x1d, 0x42, 0x3f, 0x4d, 0x5d, 0x9a, 0x5b, 0x50, 0xb3, 0xa5, 0x1b, - 0x9b, 0xf9, 0xfc, 0xf2, 0x5e, 0x68, 0x5a, 0xae, 0xdc, 0x44, 0xb4, 0xc1, 0xbd, 0xa8, 0xab, 0xd3, - 0x90, 0x2e, 0xa7, 0xab, 0xe7, 0x84, 0x73, 0xa9, 0x1e, 0x80, 0xbc, 0x1e, 0xb8, 0x03, 0x4b, 0xf2, - 0x34, 0x20, 0x03, 0x35, 0x4e, 0x33, 0x18, 0x6c, 0x39, 0xbb, 0x49, 0xc7, 0xc3, 0x24, 0x93, 0xf1, - 0x01, 0xaa, 0x28, 0x7a, 0xa4, 0x24, 0x30, 0xad, 0x35, 0x41, 0x3a, 0xae, 0xf0, 0xec, 0x8d, 0x64, - 0x88, 0x78, 0x1f, 0x34, 0xcb, 0xb6, 0xc6, 0x4c, 0x99, 0x76, 0x76, 0xb6, 0x87, 0x9b, 0x0f, 0x99, - 0x24, 0x4d, 0xcb, 0xb6, 0xd8, 0x8b, 0x2f, 0x84, 0x9a, 0x9d, 0xd7, 0x09, 0x35, 0xf3, 0x46, 0xb8, - 0x5b, 0x30, 0xc2, 0x9f, 0x55, 0x9b, 0x8d, 0x6e, 0x53, 0x7f, 0x1b, 0x9a, 0xc9, 0x46, 0xa8, 0x5a, - 0x23, 0xe9, 0xa9, 0x34, 0x02, 0xa9, 0x56, 0x04, 0x47, 0x91, 0x6e, 0x41, 0xe5, 0xf1, 0xf3, 0x21, - 0x69, 0x58, 0x34, 0x76, 0x35, 0xf2, 0x8d, 0xa8, 0x9d, 0x6a, 0xdd, 0x72, 0x4e, 0xeb, 0xde, 0x60, - 0x83, 0x45, 0x0c, 0x4a, 0x72, 0xaf, 0x39, 0x0c, 0x92, 0x98, 0x8d, 0x75, 0x95, 0xd3, 0xb2, 0x04, - 0xe8, 0xff, 0x5e, 0x81, 0x86, 0xf2, 0xa7, 0xd0, 0x48, 0x4d, 0xd3, 0xb4, 0x21, 0x36, 0x8b, 0x81, - 0x6e, 0xea, 0x98, 0xe5, 0x6b, 0x37, 0x95, 0x2f, 0xaf, 0xdd, 0x88, 0x4f, 0x60, 0x31, 0xe0, 0xbe, - 0xbc, 0x2b, 0xf7, 0x66, 0x7e, 0x8e, 0xfa, 0xa5, 0x79, 0xad, 0x20, 0x03, 0x90, 0x94, 0x94, 0xc0, - 0x8e, 0xcd, 0x43, 0x45, 0x81, 0x06, 0xc2, 0x23, 0xf3, 0xf0, 0xb5, 0xfc, 0xb2, 0x0e, 0x39, 0x78, - 0x8b, 0xa4, 0xe0, 0xd1, 0x97, 0xcb, 0x73, 0xa6, 0x5d, 0x74, 0x8f, 0xae, 0x81, 0x66, 0xf9, 0x93, - 0x89, 0x43, 0x7d, 0x1d, 0x95, 0x26, 0x23, 0xc4, 0x28, 0xd2, 0x7f, 0xb7, 0x04, 0x0d, 0x75, 0xaf, - 0x73, 0xc6, 0x77, 0x63, 0x7b, 0x77, 0xdd, 0xf8, 0x51, 0xb7, 0x84, 0xce, 0xc5, 0xf6, 0xee, 0xa8, - 0x5b, 0x16, 0x1a, 0xd4, 0xb6, 0x76, 0xf6, 0xd6, 0x47, 0xdd, 0x0a, 0x1a, 0xe4, 0x8d, 0xbd, 0xbd, - 0x9d, 0x6e, 0x55, 0x2c, 0x42, 0x73, 0x73, 0x7d, 0x34, 0x18, 0x6d, 0x3f, 0x19, 0x74, 0x6b, 0x38, - 0xf6, 0xd1, 0x60, 0xaf, 0x5b, 0xc7, 0xc6, 0xb3, 0xed, 0xcd, 0x6e, 0x03, 0xfb, 0x9f, 0xae, 0x0f, - 0x87, 0x3f, 0xd8, 0x33, 0x36, 0xbb, 0x4d, 0x32, 0xea, 0x23, 0x63, 0x7b, 0xf7, 0x51, 0x57, 0xc3, - 0xf6, 0xde, 0xc6, 0x67, 0x83, 0x87, 0xa3, 0x2e, 0xe8, 0x0f, 0xa0, 0x95, 0xa3, 0x15, 0xce, 0x36, - 0x06, 0x5b, 0xdd, 0x05, 0xdc, 0xf2, 0xf9, 0xfa, 0xce, 0x33, 0xf4, 0x01, 0x3a, 0x00, 0xd4, 0x1c, - 0xef, 0xac, 0xef, 0x3e, 0xea, 0x96, 0x95, 0x07, 0xf9, 0x7d, 0x68, 0x3e, 0x73, 0xec, 0x0d, 0xd7, - 0xb7, 0x8e, 0x51, 0x7c, 0xf6, 0xcd, 0x48, 0x2a, 0x79, 0xa3, 0x36, 0xfa, 0xeb, 0xf4, 0x68, 0x23, - 0xc5, 0x6b, 0x05, 0x21, 0xc5, 0xbc, 0xe9, 0x64, 0x4c, 0xf5, 0xbd, 0x0a, 0x1b, 0x4a, 0x6f, 0x3a, - 0x79, 0xe6, 0xd8, 0x91, 0x7e, 0x0c, 0x8d, 0x67, 0x8e, 0xfd, 0xd4, 0xb4, 0x8e, 0x49, 0x4d, 0xe2, - 0xd2, 0xe3, 0xc8, 0xf9, 0x5c, 0x2a, 0x83, 0xaa, 0x11, 0x66, 0xe8, 0x7c, 0x2e, 0xc5, 0x3b, 0x50, - 0x27, 0x20, 0x49, 0x71, 0xd0, 0x53, 0x4b, 0x8e, 0x63, 0xa8, 0x3e, 0x2a, 0xaf, 0xb9, 0xae, 0x6f, - 0x8d, 0x43, 0x79, 0xd0, 0x7b, 0x93, 0x39, 0x40, 0x08, 0x43, 0x1e, 0xe8, 0xbf, 0x5f, 0x4a, 0x6f, - 0x4e, 0x55, 0x9c, 0x65, 0xa8, 0x06, 0xa6, 0x75, 0xac, 0xfc, 0x99, 0x96, 0x5a, 0x10, 0x0f, 0x63, - 0x50, 0x87, 0x78, 0x0f, 0x9a, 0x4a, 0x90, 0x92, 0x5d, 0x5b, 0x39, 0x89, 0x33, 0xd2, 0xce, 0x22, - 0xe3, 0x2b, 0x45, 0xc6, 0x53, 0x34, 0x1c, 0xb8, 0x4e, 0xcc, 0xcf, 0x06, 0x1f, 0x27, 0x41, 0xfa, - 0x47, 0x00, 0x59, 0x41, 0x6d, 0x8e, 0x7b, 0x77, 0x05, 0x6a, 0xa6, 0xeb, 0x98, 0x49, 0x74, 0xcd, - 0x80, 0xbe, 0x0b, 0xad, 0x5c, 0x19, 0x0e, 0x69, 0x6b, 0xba, 0x2e, 0xda, 0x58, 0x7e, 0xfb, 0x4d, - 0xa3, 0x61, 0xba, 0xee, 0x63, 0x79, 0x16, 0xa1, 0x6b, 0xcd, 0x15, 0xbc, 0xf2, 0x4c, 0x91, 0x87, - 0xa6, 0x1a, 0xdc, 0xa9, 0x7f, 0x00, 0xf5, 0xad, 0x24, 0x00, 0x49, 0x1e, 0x43, 0xe9, 0xa2, 0xc7, - 0xa0, 0x7f, 0xac, 0xce, 0x4c, 0x75, 0x22, 0x71, 0x47, 0x55, 0x0a, 0x23, 0xae, 0x4b, 0x96, 0xb2, - 0xfc, 0x0c, 0x0f, 0x52, 0x45, 0x42, 0x1a, 0xac, 0x6f, 0x42, 0xf3, 0x95, 0xb5, 0x57, 0x45, 0x80, - 0x72, 0x46, 0x80, 0x39, 0xd5, 0x58, 0xfd, 0x27, 0x00, 0x59, 0x45, 0x51, 0xbd, 0x4d, 0x5e, 0x05, - 0xdf, 0xe6, 0x6d, 0x68, 0x5a, 0x47, 0x8e, 0x6b, 0x87, 0xd2, 0x2b, 0xdc, 0x3a, 0xab, 0x41, 0xa6, - 0xfd, 0xe2, 0x26, 0x54, 0xa9, 0x50, 0x5a, 0xc9, 0x34, 0x77, 0x5a, 0x25, 0xa5, 0x1e, 0xfd, 0x14, - 0xda, 0x1c, 0xb3, 0xbc, 0x86, 0xc7, 0x57, 0x54, 0x9d, 0xe5, 0x73, 0xaa, 0xf3, 0x2a, 0xd4, 0xc9, - 0x85, 0x48, 0x6e, 0xa3, 0xa0, 0x0b, 0x54, 0xea, 0x1f, 0x95, 0x01, 0x78, 0xeb, 0x5d, 0xdf, 0x96, - 0xc5, 0xe4, 0x40, 0x69, 0x36, 0x39, 0x20, 0xa0, 0x9a, 0xd6, 0xc0, 0x35, 0x83, 0xda, 0x99, 0x31, - 0x54, 0x09, 0x03, 0x36, 0x86, 0x6f, 0x81, 0x46, 0x5e, 0x9e, 0xf3, 0x39, 0x15, 0x60, 0x70, 0xc3, - 0x0c, 0x91, 0xaf, 0x08, 0xd7, 0x8a, 0x15, 0xe1, 0xb4, 0x3c, 0x56, 0xe7, 0xd5, 0xb8, 0x3c, 0x36, - 0xa7, 0xd2, 0xc7, 0x19, 0x9b, 0x48, 0x86, 0x71, 0x92, 0x6e, 0x60, 0x28, 0x8d, 0x9c, 0x35, 0x35, - 0xd6, 0xe4, 0x9c, 0x8b, 0xe7, 0x8f, 0x2d, 0xdf, 0x3b, 0x70, 0x1d, 0x2b, 0x56, 0x15, 0x60, 0xf0, - 0xfc, 0x87, 0x0a, 0x43, 0x8b, 0x79, 0xce, 0x4f, 0xa7, 0xec, 0xec, 0xe1, 0x62, 0x04, 0xe9, 0x9f, - 0xc0, 0x62, 0xc2, 0x17, 0x2a, 0xb4, 0xdd, 0x4e, 0xa3, 0xcd, 0x52, 0xc6, 0xf3, 0x8c, 0x7c, 0x1b, - 0xe5, 0x5e, 0x29, 0x89, 0x37, 0xf5, 0xdf, 0xab, 0x26, 0x93, 0x55, 0x3d, 0xe8, 0xd5, 0xb4, 0x2d, - 0x26, 0x10, 0xca, 0xaf, 0x95, 0x40, 0xf8, 0x0e, 0x68, 0x36, 0xc5, 0xc4, 0xce, 0x49, 0x62, 0xdc, - 0xfa, 0xb3, 0xf1, 0xaf, 0x8a, 0x9a, 0xc9, 0x1b, 0x4f, 0x07, 0x7f, 0x09, 0x7f, 0x52, 0x2e, 0xd4, - 0xe6, 0x71, 0xa1, 0xfe, 0x35, 0xb9, 0x90, 0x11, 0xb9, 0x93, 0x27, 0x32, 0x3a, 0xb6, 0x9e, 0xef, - 0x8d, 0xbd, 0xa9, 0xeb, 0x9a, 0xfb, 0xae, 0x54, 0xec, 0x69, 0x79, 0xbe, 0xb7, 0xab, 0x50, 0xe8, - 0x97, 0xe7, 0x87, 0xb0, 0x12, 0x60, 0x56, 0x5d, 0xca, 0x8d, 0x23, 0x55, 0xb1, 0x02, 0x5d, 0x7f, - 0xff, 0x27, 0xd2, 0x8a, 0x89, 0x92, 0x63, 0x7a, 0xfd, 0xec, 0x94, 0x77, 0x18, 0x8f, 0xa4, 0xdb, - 0x45, 0x3d, 0x30, 0x23, 0x16, 0xed, 0x59, 0xb1, 0xd0, 0x3f, 0x06, 0x2d, 0xa5, 0x5e, 0x2e, 0x2e, - 0xd7, 0xa0, 0xb6, 0xbd, 0xbb, 0x39, 0xf8, 0x61, 0xb7, 0x84, 0xe6, 0xd5, 0x18, 0x3c, 0x1f, 0x18, - 0xc3, 0x41, 0xb7, 0x8c, 0xa6, 0x6f, 0x73, 0xb0, 0x33, 0x18, 0x0d, 0xba, 0x15, 0x76, 0x9d, 0xa8, - 0x5c, 0xe3, 0x3a, 0x96, 0x13, 0xeb, 0x43, 0x80, 0x2c, 0xd9, 0x80, 0x5a, 0x3c, 0x3b, 0x9c, 0xca, - 0x76, 0xc6, 0xc9, 0xb1, 0x56, 0xd2, 0x07, 0x5c, 0xbe, 0x28, 0xa5, 0xc1, 0xfd, 0xfa, 0x1a, 0x68, - 0x4f, 0xcc, 0xe0, 0x53, 0x2e, 0x6c, 0xde, 0x82, 0x0e, 0xf9, 0xeb, 0x49, 0x24, 0xc4, 0xca, 0x75, - 0xd1, 0x68, 0xa7, 0x58, 0xd4, 0xd5, 0xfa, 0x5f, 0x94, 0xe0, 0xca, 0x13, 0xff, 0x44, 0xa6, 0xfe, - 0xf1, 0x53, 0xf3, 0xcc, 0xf5, 0x4d, 0xfb, 0x4b, 0xc4, 0xf3, 0x3a, 0x40, 0xe4, 0x4f, 0xa9, 0xd0, - 0x98, 0x94, 0x65, 0x0d, 0x8d, 0x31, 0x8f, 0xd4, 0xf7, 0x24, 0x32, 0x8a, 0xa9, 0x53, 0x19, 0x5e, - 0x84, 0xb1, 0xeb, 0x0d, 0xa8, 0xc7, 0xa7, 0x5e, 0x56, 0x24, 0xae, 0xc5, 0x94, 0xa5, 0x9f, 0xeb, - 0x2e, 0xd7, 0xe6, 0xbb, 0xcb, 0xfa, 0x43, 0xd0, 0x46, 0xa7, 0x94, 0xa7, 0x9e, 0x16, 0x1d, 0xd6, - 0xd2, 0x2b, 0xdc, 0xa2, 0xf2, 0x8c, 0x5b, 0xf4, 0x6f, 0x25, 0x68, 0xe5, 0xfc, 0x7e, 0xf1, 0x4d, - 0xa8, 0xc6, 0xa7, 0x5e, 0xf1, 0x5b, 0x8c, 0x64, 0x13, 0x83, 0xba, 0xce, 0xe5, 0x62, 0xcb, 0xe7, - 0x72, 0xb1, 0x62, 0x07, 0x2e, 0xb1, 0xa6, 0x4e, 0x2e, 0x91, 0xa4, 0xac, 0xde, 0x9e, 0x89, 0x33, - 0x38, 0x97, 0x9f, 0x5c, 0x49, 0xe5, 0x61, 0x3a, 0x87, 0x05, 0x64, 0x7f, 0x1d, 0x2e, 0xcf, 0x19, - 0xf6, 0x55, 0xaa, 0x3a, 0xfa, 0x32, 0xb4, 0x47, 0xa7, 0xde, 0xc8, 0x99, 0xc8, 0x28, 0x36, 0x27, - 0x01, 0xb9, 0x95, 0xca, 0xd2, 0x56, 0x8d, 0x72, 0x1c, 0xe9, 0xef, 0xc2, 0xe2, 0x53, 0x29, 0x43, - 0x43, 0x46, 0x81, 0xef, 0xb1, 0x33, 0xa5, 0x72, 0xe8, 0x6c, 0xd6, 0x15, 0xa4, 0xff, 0x36, 0x68, - 0x86, 0x79, 0x10, 0x6f, 0x98, 0xb1, 0x75, 0xf4, 0x55, 0x92, 0x32, 0xef, 0x42, 0x23, 0x60, 0x99, - 0x52, 0xd1, 0xe0, 0x22, 0x99, 0x77, 0x25, 0x67, 0x46, 0xd2, 0xa9, 0x7f, 0x1b, 0x3a, 0xaa, 0xa0, - 0x95, 0x9c, 0x24, 0x57, 0xf5, 0x2a, 0x5d, 0x58, 0xf5, 0xd2, 0x0f, 0xa1, 0x9d, 0xcc, 0x63, 0x63, - 0xf9, 0x5a, 0xd3, 0xbe, 0xfa, 0x67, 0x05, 0xfa, 0x6f, 0xc1, 0xe5, 0xe1, 0x74, 0x3f, 0xb2, 0x42, - 0x87, 0x72, 0x08, 0xc9, 0x76, 0x7d, 0x68, 0x06, 0xa1, 0x3c, 0x70, 0x4e, 0x65, 0xf2, 0xc4, 0x52, - 0x58, 0xdc, 0x86, 0xc6, 0x04, 0xe9, 0x25, 0xb3, 0xc7, 0x9b, 0xc5, 0xb8, 0x4f, 0xb0, 0xc7, 0x48, - 0x06, 0xe8, 0xdf, 0x85, 0x2b, 0xc5, 0xe5, 0x15, 0x15, 0xde, 0x86, 0xca, 0xf1, 0x49, 0xa4, 0xc8, - 0xbc, 0x54, 0x88, 0x91, 0xe9, 0x7b, 0x0e, 0xec, 0xd5, 0xff, 0xa6, 0x04, 0x15, 0x8c, 0xe9, 0x73, - 0x1f, 0xab, 0x55, 0xf9, 0x63, 0xb5, 0x6b, 0xf9, 0x7c, 0x3b, 0xc7, 0x5c, 0x59, 0x5e, 0xfd, 0x2d, - 0xd0, 0x0e, 0xfc, 0xf0, 0x67, 0x66, 0x68, 0x4b, 0x5b, 0x59, 0xec, 0x0c, 0x41, 0xae, 0xf6, 0x74, - 0x12, 0x28, 0xb5, 0x4f, 0x6d, 0x71, 0x4b, 0xd9, 0x7c, 0x8e, 0x83, 0x96, 0x90, 0xb2, 0xbb, 0xd3, - 0xc9, 0xaa, 0x2b, 0xcd, 0x88, 0x8c, 0x10, 0xbb, 0x01, 0xfa, 0x1d, 0xd0, 0x52, 0x14, 0x2a, 0xc8, - 0xdd, 0xe1, 0x78, 0x7b, 0x93, 0x73, 0x98, 0x18, 0x31, 0x94, 0x50, 0x39, 0x8e, 0x7e, 0xb8, 0x3b, - 0x1e, 0x0d, 0xbb, 0x65, 0xfd, 0xc7, 0xd0, 0x4a, 0xde, 0xcf, 0xb6, 0x4d, 0x05, 0x3b, 0x7a, 0xc0, - 0xdb, 0x76, 0xe1, 0x3d, 0x6f, 0x53, 0x48, 0x27, 0x3d, 0x7b, 0x3b, 0x79, 0x78, 0x0c, 0x14, 0x6f, - 0xa8, 0xaa, 0x7f, 0xc9, 0x0d, 0xf5, 0x01, 0x2c, 0x19, 0x54, 0x78, 0x40, 0x83, 0x9c, 0xb0, 0xec, - 0x2a, 0xd4, 0x3d, 0xdf, 0x96, 0xe9, 0x06, 0x0a, 0xc2, 0x9d, 0x15, 0xb3, 0x95, 0x4a, 0x4b, 0x79, - 0x2f, 0x61, 0x09, 0xb5, 0x64, 0x51, 0xd0, 0x0a, 0x49, 0xf1, 0xd2, 0x4c, 0x52, 0x1c, 0x37, 0x51, - 0xf5, 0x6f, 0xf6, 0x8f, 0x92, 0x9a, 0x77, 0x1f, 0x9a, 0x76, 0x14, 0xd3, 0xb3, 0x56, 0xba, 0x31, - 0x85, 0xf5, 0x7b, 0x70, 0x79, 0x3d, 0x08, 0xdc, 0xb3, 0xa4, 0x5a, 0xa8, 0x36, 0xea, 0x65, 0x25, - 0xc5, 0x92, 0x8a, 0x23, 0x19, 0xd4, 0xb7, 0x60, 0x31, 0xc9, 0x48, 0x3c, 0x91, 0xb1, 0x49, 0x1a, - 0xcf, 0x75, 0x0a, 0x21, 0x79, 0x93, 0x11, 0xa3, 0x62, 0xea, 0x7d, 0xe6, 0x7e, 0xab, 0x50, 0x57, - 0xea, 0x54, 0x40, 0xd5, 0xf2, 0x6d, 0xde, 0xa8, 0x66, 0x50, 0x1b, 0xa5, 0x6a, 0x12, 0x1d, 0x26, - 0x1e, 0xf2, 0x24, 0x3a, 0xd4, 0xff, 0xab, 0x0c, 0xed, 0x0d, 0xca, 0x24, 0x25, 0x67, 0xcc, 0x65, - 0x59, 0x4b, 0x85, 0x2c, 0x6b, 0x3e, 0xa3, 0x5a, 0x2e, 0x64, 0x54, 0x0b, 0x07, 0xaa, 0x14, 0xdd, - 0xda, 0x37, 0xa1, 0x31, 0xf5, 0x9c, 0xd3, 0xc4, 0x4e, 0x68, 0xe4, 0x1e, 0x9c, 0x8e, 0x22, 0x71, - 0x13, 0x5a, 0x68, 0x4a, 0x1c, 0x8f, 0xb3, 0x98, 0x9c, 0x8a, 0xcc, 0xa3, 0x66, 0x72, 0x95, 0xf5, - 0x57, 0xe7, 0x2a, 0x1b, 0x5f, 0x27, 0x57, 0xd9, 0xfc, 0x1a, 0xb9, 0x4a, 0x6d, 0x36, 0x57, 0x59, - 0x74, 0xdc, 0xe1, 0x9c, 0xe3, 0x7e, 0x1d, 0x80, 0x3f, 0xe5, 0x39, 0x98, 0xba, 0xae, 0xf2, 0x6e, - 0x34, 0xc2, 0x6c, 0x4d, 0x5d, 0x57, 0xdf, 0x81, 0x4e, 0xc2, 0x00, 0xa5, 0x28, 0x3e, 0x81, 0x4b, - 0xaa, 0x56, 0x21, 0x43, 0x95, 0x7e, 0x63, 0xfd, 0x47, 0xaf, 0x94, 0xcb, 0x09, 0xaa, 0xc7, 0xe8, - 0xd8, 0x79, 0x30, 0xd2, 0x7f, 0x51, 0x82, 0x76, 0x61, 0x84, 0x78, 0x90, 0x55, 0x3e, 0x4a, 0xf4, - 0xd6, 0x7b, 0xe7, 0x56, 0x79, 0x75, 0xf5, 0xa3, 0x3c, 0x53, 0xfd, 0xd0, 0xef, 0xa6, 0x35, 0x0d, - 0x55, 0xc9, 0x58, 0x48, 0x2b, 0x19, 0x94, 0xfc, 0x5f, 0x1f, 0x8d, 0x8c, 0x6e, 0x59, 0xd4, 0xa1, - 0xbc, 0x3b, 0xec, 0x56, 0xf4, 0x5f, 0x97, 0xa1, 0x3d, 0x38, 0x0d, 0xe8, 0xb3, 0xb6, 0x2f, 0x8d, - 0x82, 0x72, 0xd2, 0x57, 0x2e, 0x48, 0x5f, 0x4e, 0x8e, 0x2a, 0xaa, 0x94, 0xcb, 0x72, 0x84, 0x71, - 0x11, 0x67, 0x4e, 0x95, 0x7c, 0x31, 0xf4, 0x7f, 0x47, 0xbe, 0x0a, 0xda, 0x09, 0x66, 0x4b, 0x76, - 0x3b, 0xd0, 0x49, 0x88, 0xab, 0xc4, 0xe7, 0xb5, 0x1e, 0x3e, 0x7f, 0xee, 0xea, 0xa6, 0x49, 0x3a, - 0x06, 0xf4, 0x3f, 0x2b, 0x83, 0xc6, 0xd2, 0x88, 0xf7, 0x79, 0x5f, 0xd9, 0x88, 0x52, 0x56, 0x1d, - 0x4a, 0x3b, 0x57, 0x1f, 0xcb, 0xb3, 0xcc, 0x4e, 0xcc, 0xad, 0xa8, 0xaa, 0x54, 0x1e, 0x67, 0x33, - 0x28, 0x95, 0x77, 0x0d, 0x34, 0x76, 0xf1, 0xa6, 0xaa, 0x34, 0x51, 0x35, 0xd8, 0xe7, 0x7b, 0xe6, - 0x90, 0x95, 0x8a, 0x65, 0x38, 0x51, 0x9c, 0xa2, 0x76, 0x31, 0x6e, 0x6c, 0x27, 0x11, 0x4b, 0x81, - 0x22, 0x8d, 0x59, 0x8a, 0x1c, 0x41, 0x43, 0x9d, 0x0d, 0xdd, 0xf8, 0x67, 0xbb, 0x8f, 0x77, 0xf7, - 0x7e, 0xb0, 0x5b, 0x90, 0xd1, 0xd4, 0xd1, 0x2f, 0xe7, 0x1d, 0xfd, 0x0a, 0xe2, 0x1f, 0xee, 0x3d, - 0xdb, 0x1d, 0x75, 0xab, 0xa2, 0x0d, 0x1a, 0x35, 0xc7, 0xc6, 0xe0, 0x79, 0xb7, 0x46, 0x99, 0xb0, - 0x87, 0x9f, 0x0e, 0x9e, 0xac, 0x77, 0xeb, 0x69, 0xad, 0xae, 0xa1, 0xff, 0x69, 0x09, 0x96, 0x98, - 0x20, 0xf9, 0xa4, 0x50, 0xfe, 0x43, 0xf4, 0x2a, 0x7f, 0x88, 0xfe, 0xbf, 0x9b, 0x07, 0xc2, 0x49, - 0x53, 0x27, 0xa9, 0x8e, 0x73, 0x82, 0xb2, 0x39, 0x75, 0x54, 0x51, 0xfc, 0xef, 0x4b, 0xd0, 0xe7, - 0xf8, 0xe2, 0x51, 0x68, 0x06, 0x47, 0xdf, 0xdf, 0x39, 0x97, 0x91, 0xb8, 0xc8, 0xeb, 0xbe, 0x05, - 0x1d, 0xfa, 0x54, 0xff, 0xa7, 0xee, 0x58, 0x45, 0xc7, 0xcc, 0xdd, 0xb6, 0xc2, 0xf2, 0x42, 0xe2, - 0x43, 0x58, 0xe4, 0x4f, 0xfa, 0x29, 0x63, 0x5f, 0xa8, 0xec, 0x16, 0xa2, 0x9b, 0x16, 0x8f, 0xe2, - 0x3a, 0xf4, 0x83, 0x74, 0x52, 0x96, 0xbc, 0x38, 0x5f, 0xbc, 0x55, 0x53, 0x46, 0x94, 0xd2, 0xb8, - 0x07, 0xd7, 0xe6, 0xde, 0x43, 0x89, 0x7d, 0x2e, 0x71, 0xcc, 0xd2, 0xa6, 0xff, 0xba, 0x04, 0xcd, - 0x8d, 0xa9, 0x7b, 0x4c, 0x06, 0xf5, 0x3a, 0x80, 0xb4, 0x0f, 0xa5, 0xfa, 0x36, 0xbe, 0x44, 0x2a, - 0x44, 0x43, 0x0c, 0x7f, 0x1d, 0xff, 0x09, 0x00, 0xdf, 0x71, 0x3c, 0x31, 0x03, 0xc5, 0x22, 0xaa, - 0xb4, 0x26, 0x0b, 0xa8, 0xbb, 0x3c, 0x31, 0x03, 0x55, 0x69, 0x8d, 0x12, 0x38, 0xab, 0x40, 0x57, - 0x5e, 0x51, 0x81, 0xee, 0xef, 0x42, 0xa7, 0xb8, 0xc4, 0x9c, 0x84, 0xdd, 0xbb, 0xc5, 0xaf, 0x7c, - 0xce, 0xd3, 0x30, 0x17, 0x0f, 0x7c, 0x06, 0x97, 0x66, 0x92, 0xff, 0xaf, 0xd2, 0xab, 0x85, 0x27, - 0x53, 0x9e, 0x7d, 0x32, 0x1f, 0xc0, 0xd2, 0xc8, 0x8c, 0x8e, 0x55, 0x8c, 0x94, 0x39, 0x02, 0xb1, - 0x19, 0x1d, 0x8f, 0x53, 0xa2, 0xd6, 0x11, 0xdc, 0xb6, 0xf5, 0x07, 0x20, 0xf2, 0xa3, 0x15, 0xfd, - 0x31, 0xf6, 0xc5, 0xe1, 0x13, 0x19, 0x9b, 0x89, 0xc7, 0x82, 0x08, 0x24, 0xde, 0xda, 0xdf, 0x95, - 0xa0, 0x8a, 0x41, 0x85, 0xb8, 0x0b, 0xda, 0xa7, 0xd2, 0x0c, 0xe3, 0x7d, 0x69, 0xc6, 0xa2, 0x10, - 0x40, 0xf4, 0x89, 0x6e, 0xd9, 0x97, 0x43, 0xfa, 0xc2, 0xfd, 0x92, 0x58, 0xe5, 0xef, 0x9a, 0x93, - 0xef, 0xb5, 0xdb, 0x49, 0x70, 0x42, 0xc1, 0x4b, 0xbf, 0x30, 0x5f, 0x5f, 0x58, 0xa1, 0xf1, 0x9f, - 0xf9, 0x8e, 0xf7, 0x90, 0xbf, 0xa6, 0x15, 0xb3, 0xc1, 0xcc, 0xec, 0x0c, 0x71, 0x17, 0xea, 0xdb, - 0x11, 0x46, 0x4d, 0xe7, 0x87, 0x12, 0xf1, 0xf3, 0x01, 0x95, 0xbe, 0xb0, 0xf6, 0x97, 0x35, 0xa8, - 0xfe, 0x58, 0x86, 0xbe, 0xf8, 0x00, 0x1a, 0xea, 0x3b, 0x2b, 0x91, 0xfb, 0x9e, 0xaa, 0x4f, 0x89, - 0x9d, 0x99, 0x0f, 0xb0, 0x68, 0x97, 0x2e, 0xf3, 0x2f, 0x2b, 0x79, 0x89, 0xec, 0x33, 0xb0, 0x73, - 0x87, 0xfa, 0x18, 0xba, 0xc3, 0x38, 0x94, 0xe6, 0x24, 0x37, 0xbc, 0x48, 0xaa, 0x79, 0xf5, 0x33, - 0xa2, 0xd7, 0x1d, 0xa8, 0x73, 0x68, 0x3a, 0x33, 0x61, 0xb6, 0x38, 0x46, 0x83, 0xdf, 0x83, 0xd6, - 0xf0, 0xc8, 0x9f, 0xba, 0xf6, 0x50, 0x86, 0x27, 0x52, 0xe4, 0xa2, 0xab, 0x7e, 0xae, 0xad, 0x2f, - 0x88, 0x07, 0x50, 0x47, 0x8e, 0x84, 0x13, 0xb1, 0x94, 0x8b, 0xc0, 0x58, 0x4c, 0xfa, 0x22, 0x8f, - 0x4a, 0x28, 0x25, 0xde, 0x03, 0x8d, 0x43, 0x01, 0x0c, 0x04, 0x1a, 0x2a, 0xba, 0xe0, 0x63, 0xe4, - 0x42, 0x04, 0x7d, 0x41, 0xac, 0x00, 0xe4, 0x62, 0xda, 0x57, 0x8d, 0xfc, 0x10, 0xda, 0x0f, 0x49, - 0x13, 0xee, 0x85, 0xeb, 0xfb, 0x7e, 0x18, 0x8b, 0xd9, 0x6f, 0x3f, 0xfb, 0xb3, 0x08, 0x7d, 0x01, - 0xa3, 0xc3, 0x51, 0x78, 0xc6, 0xe3, 0x97, 0x54, 0x2a, 0x20, 0xdb, 0x6f, 0x0e, 0x5d, 0xc4, 0x47, - 0xe9, 0xbb, 0x4a, 0x23, 0x80, 0x79, 0x95, 0x36, 0x26, 0x11, 0xbf, 0x01, 0x22, 0x11, 0x64, 0xe1, - 0x89, 0x78, 0x83, 0xab, 0x7e, 0x33, 0xe1, 0xca, 0xf9, 0x29, 0x59, 0x28, 0xc2, 0x53, 0xce, 0x85, - 0x26, 0x33, 0x53, 0xbe, 0x05, 0x8b, 0xf9, 0xb0, 0x42, 0x50, 0xf9, 0x6a, 0x4e, 0xa0, 0x51, 0x9c, - 0xb6, 0xf6, 0x1f, 0x35, 0xa8, 0xff, 0xc0, 0x0f, 0x8f, 0x65, 0x28, 0x6e, 0x43, 0x9d, 0xea, 0xb7, - 0xea, 0x2d, 0xa5, 0xb5, 0xdc, 0x79, 0xb4, 0x7b, 0x07, 0x34, 0x92, 0x0c, 0x7c, 0xec, 0x2c, 0xaf, - 0xf4, 0x5f, 0x25, 0x5e, 0x9c, 0x33, 0xa7, 0x24, 0xdc, 0x1d, 0x96, 0xd6, 0xf4, 0x7b, 0x8a, 0x42, - 0x7d, 0xb5, 0x4f, 0x2c, 0x7d, 0xfc, 0x7c, 0x88, 0xef, 0xf3, 0x7e, 0x09, 0x7d, 0x8a, 0x21, 0x33, - 0x0f, 0x07, 0x65, 0xff, 0xc5, 0xe0, 0xe7, 0x9f, 0xfd, 0xf9, 0x41, 0x5f, 0x10, 0xf7, 0xa0, 0xae, - 0x4c, 0xcc, 0x52, 0xa6, 0x08, 0x93, 0x1b, 0x76, 0xf3, 0x28, 0x35, 0xe1, 0x01, 0xd4, 0xd9, 0x1c, - 0xf3, 0x84, 0x42, 0x5c, 0xc3, 0x72, 0x5a, 0xf4, 0xb4, 0xf5, 0x05, 0x71, 0x07, 0x1a, 0xaa, 0x3a, - 0x2b, 0xe6, 0x94, 0x6a, 0xcf, 0x71, 0xac, 0xce, 0xbe, 0x16, 0xaf, 0x5f, 0x70, 0x6a, 0x79, 0xfd, - 0xa2, 0x2b, 0xc6, 0x4f, 0xdf, 0x90, 0x96, 0x74, 0x72, 0x89, 0x39, 0x91, 0x50, 0x64, 0x8e, 0xfe, - 0xfa, 0x18, 0xda, 0x85, 0x24, 0x9e, 0xe8, 0x25, 0x62, 0x31, 0x9b, 0xd7, 0x3b, 0xa7, 0x35, 0xbe, - 0x0b, 0x9a, 0x4a, 0x3b, 0xec, 0x2b, 0xc1, 0x98, 0x93, 0xe4, 0xe8, 0x9f, 0xcf, 0x3b, 0x90, 0x2a, - 0xf8, 0x21, 0x5c, 0x9e, 0x63, 0x5b, 0x05, 0x7d, 0xcd, 0x7b, 0xb1, 0xf3, 0xd0, 0x5f, 0xbe, 0xb0, - 0x3f, 0x25, 0xc0, 0xd7, 0x7b, 0x4e, 0xdf, 0x03, 0xc8, 0x4c, 0x0c, 0xbf, 0x8d, 0x73, 0x06, 0xaa, - 0x7f, 0x75, 0x16, 0x9d, 0x6c, 0xba, 0xd1, 0xfb, 0xe5, 0x17, 0x37, 0x4a, 0xbf, 0xfa, 0xe2, 0x46, - 0xe9, 0x5f, 0xbf, 0xb8, 0x51, 0xfa, 0xc5, 0x6f, 0x6e, 0x2c, 0xfc, 0xea, 0x37, 0x37, 0x16, 0xfe, - 0xf1, 0x37, 0x37, 0x16, 0xf6, 0xeb, 0xf4, 0xa7, 0xc1, 0x0f, 0xff, 0x3b, 0x00, 0x00, 0xff, 0xff, - 0x0a, 0xb1, 0x62, 0xd8, 0xaa, 0x38, 0x00, 0x00, + 0x7b, 0xbb, 0x7b, 0xb8, 0xa4, 0x6f, 0x7b, 0xc9, 0x1e, 0x92, 0xc3, 0x02, 0xb9, 0x04, 0x08, 0x90, + 0x43, 0xae, 0xc9, 0x29, 0x08, 0x90, 0x20, 0x40, 0x6e, 0x41, 0xb0, 0xc8, 0x69, 0x8f, 0x41, 0x36, + 0x11, 0x02, 0x6f, 0x90, 0x83, 0x0e, 0x01, 0xf2, 0x17, 0x24, 0xa8, 0xaa, 0xd7, 0x5f, 0xc3, 0xa1, + 0x2c, 0x3b, 0xc8, 0x25, 0xa7, 0x79, 0x55, 0xef, 0xbb, 0xaa, 0x5e, 0x7d, 0xf6, 0x40, 0x33, 0xd8, + 0x5f, 0x0d, 0x42, 0x3f, 0xf6, 0x45, 0x39, 0xd8, 0xef, 0x6b, 0x66, 0xe0, 0x30, 0xd8, 0xbf, 0x7d, + 0xe8, 0xc4, 0x47, 0xd3, 0xfd, 0x55, 0xcb, 0x9f, 0xdc, 0xb3, 0x0f, 0x43, 0x33, 0x38, 0xba, 0xeb, + 0xf8, 0xf7, 0xf6, 0x4d, 0xfb, 0x50, 0x86, 0xf7, 0x4e, 0x3e, 0xba, 0x17, 0xec, 0xdf, 0x4b, 0xa6, + 0xf6, 0xef, 0xe6, 0xc6, 0x1e, 0xfa, 0x87, 0xfe, 0x3d, 0x42, 0xef, 0x4f, 0x0f, 0x08, 0x22, 0x80, + 0x5a, 0x3c, 0x5c, 0xef, 0x43, 0x75, 0xc7, 0x89, 0x62, 0x21, 0xa0, 0x3a, 0x75, 0xec, 0xa8, 0x57, + 0xba, 0x59, 0x59, 0xa9, 0x1b, 0xd4, 0xd6, 0x9f, 0x80, 0x36, 0x32, 0xa3, 0xe3, 0xe7, 0xa6, 0x3b, + 0x95, 0xa2, 0x0b, 0x95, 0x13, 0xd3, 0xed, 0x95, 0x6e, 0x96, 0x56, 0x16, 0x0d, 0x6c, 0x8a, 0x55, + 0x68, 0x9e, 0x98, 0xee, 0x38, 0x3e, 0x0b, 0x64, 0xaf, 0x7c, 0xb3, 0xb4, 0xd2, 0x59, 0xbb, 0xbc, + 0x1a, 0xec, 0xaf, 0x3e, 0xf5, 0xa3, 0xd8, 0xf1, 0x0e, 0x57, 0x9f, 0x9b, 0xee, 0xe8, 0x2c, 0x90, + 0x46, 0xe3, 0x84, 0x1b, 0xfa, 0x1e, 0xb4, 0x86, 0xa1, 0xb5, 0x35, 0xf5, 0xac, 0xd8, 0xf1, 0x3d, + 0xdc, 0xd1, 0x33, 0x27, 0x92, 0x56, 0xd4, 0x0c, 0x6a, 0x23, 0xce, 0x0c, 0x0f, 0xa3, 0x5e, 0xe5, + 0x66, 0x05, 0x71, 0xd8, 0x16, 0x3d, 0x68, 0x38, 0xd1, 0x43, 0x7f, 0xea, 0xc5, 0xbd, 0xea, 0xcd, + 0xd2, 0x4a, 0xd3, 0x48, 0x40, 0xfd, 0xaf, 0x2a, 0x50, 0xfb, 0xfe, 0x54, 0x86, 0x67, 0x34, 0x2f, + 0x8e, 0xc3, 0x64, 0x2d, 0x6c, 0x8b, 0x2b, 0x50, 0x73, 0x4d, 0xef, 0x30, 0xea, 0x95, 0x69, 0x31, + 0x06, 0xc4, 0x35, 0xd0, 0xcc, 0x83, 0x58, 0x86, 0xe3, 0xa9, 0x63, 0xf7, 0x2a, 0x37, 0x4b, 0x2b, + 0x75, 0xa3, 0x49, 0x88, 0x67, 0x8e, 0x2d, 0xbe, 0x01, 0x4d, 0xdb, 0x1f, 0x5b, 0xf9, 0xbd, 0x6c, + 0x9f, 0xf6, 0x12, 0x6f, 0x43, 0x73, 0xea, 0xd8, 0x63, 0xd7, 0x89, 0xe2, 0x5e, 0xed, 0x66, 0x69, + 0xa5, 0xb5, 0xd6, 0xc4, 0xcb, 0x22, 0xed, 0x8c, 0xc6, 0xd4, 0xb1, 0x89, 0x88, 0xb7, 0xa1, 0x19, + 0x85, 0xd6, 0xf8, 0x60, 0xea, 0x59, 0xbd, 0x3a, 0x0d, 0xba, 0x84, 0x83, 0x72, 0xb7, 0x36, 0x1a, + 0x11, 0x03, 0x78, 0xad, 0x50, 0x9e, 0xc8, 0x30, 0x92, 0xbd, 0x06, 0x6f, 0xa5, 0x40, 0x71, 0x1f, + 0x5a, 0x07, 0xa6, 0x25, 0xe3, 0x71, 0x60, 0x86, 0xe6, 0xa4, 0xd7, 0xcc, 0x16, 0xda, 0x42, 0xf4, + 0x53, 0xc4, 0x46, 0x06, 0x1c, 0xa4, 0x80, 0xf8, 0x10, 0xda, 0x04, 0x45, 0xe3, 0x03, 0xc7, 0x8d, + 0x65, 0xd8, 0xd3, 0x68, 0x4e, 0x87, 0xe6, 0x10, 0x66, 0x14, 0x4a, 0x69, 0x2c, 0xf2, 0x20, 0xc6, + 0x88, 0xeb, 0x00, 0xf2, 0x34, 0x30, 0x3d, 0x7b, 0x6c, 0xba, 0x6e, 0x0f, 0xe8, 0x0c, 0x1a, 0x63, + 0xd6, 0x5d, 0x57, 0xbc, 0x89, 0xe7, 0x33, 0xed, 0x71, 0x1c, 0xf5, 0xda, 0x37, 0x4b, 0x2b, 0x55, + 0xa3, 0x8e, 0xe0, 0x28, 0x42, 0xba, 0x5a, 0xa6, 0x75, 0x24, 0x7b, 0x9d, 0x9b, 0xa5, 0x95, 0x9a, + 0xc1, 0x00, 0x62, 0x0f, 0x9c, 0x30, 0x8a, 0x7b, 0x97, 0x18, 0x4b, 0x80, 0xb8, 0x0a, 0x75, 0xff, + 0xe0, 0x20, 0x92, 0x71, 0xaf, 0x4b, 0x68, 0x05, 0xe9, 0x6b, 0xa0, 0x91, 0x54, 0x11, 0xd5, 0x6e, + 0x41, 0xfd, 0x04, 0x01, 0x16, 0xbe, 0xd6, 0x5a, 0x1b, 0x8f, 0x9d, 0x0a, 0x9e, 0xa1, 0x3a, 0xf5, + 0x1b, 0xd0, 0xdc, 0x31, 0xbd, 0xc3, 0x44, 0x5a, 0x91, 0x9d, 0x34, 0x41, 0x33, 0xa8, 0xad, 0xff, + 0x51, 0x19, 0xea, 0x86, 0x8c, 0xa6, 0x6e, 0x2c, 0xde, 0x03, 0x40, 0x66, 0x4d, 0xcc, 0x38, 0x74, + 0x4e, 0xd5, 0xaa, 0x19, 0xbb, 0xb4, 0xa9, 0x63, 0x3f, 0xa1, 0x2e, 0x71, 0x1f, 0x16, 0x69, 0xf5, + 0x64, 0x68, 0x39, 0x3b, 0x40, 0x7a, 0x3e, 0xa3, 0x45, 0x43, 0xd4, 0x8c, 0xab, 0x50, 0x27, 0xf9, + 0x60, 0x19, 0x6d, 0x1b, 0x0a, 0x12, 0xb7, 0xa0, 0xe3, 0x78, 0x31, 0xf2, 0xcf, 0x8a, 0xc7, 0xb6, + 0x8c, 0x12, 0x01, 0x6a, 0xa7, 0xd8, 0x4d, 0x19, 0xc5, 0xe2, 0x01, 0x30, 0x13, 0x92, 0x0d, 0x6b, + 0xb4, 0x61, 0x27, 0x65, 0x6e, 0xc4, 0x3b, 0xd2, 0x18, 0xb5, 0xe3, 0x5d, 0x68, 0xe1, 0xfd, 0x92, + 0x19, 0x75, 0x9a, 0xb1, 0x48, 0xb7, 0x51, 0xe4, 0x30, 0x00, 0x07, 0xa8, 0xe1, 0x48, 0x1a, 0x14, + 0x52, 0x16, 0x2a, 0x6a, 0xeb, 0x03, 0xa8, 0xed, 0x85, 0xb6, 0x0c, 0xe7, 0xbe, 0x13, 0x01, 0x55, + 0x5b, 0x46, 0x16, 0x3d, 0xe1, 0xa6, 0x41, 0xed, 0xec, 0xed, 0x54, 0x72, 0x6f, 0x47, 0xff, 0x93, + 0x12, 0xb4, 0x86, 0x7e, 0x18, 0x3f, 0x91, 0x51, 0x64, 0x1e, 0x4a, 0xb1, 0x0c, 0x35, 0x1f, 0x97, + 0x55, 0x14, 0xd6, 0xf0, 0x4c, 0xb4, 0x8f, 0xc1, 0xf8, 0x19, 0x3e, 0x94, 0x2f, 0xe6, 0x03, 0xca, + 0x14, 0xbd, 0xba, 0x8a, 0x92, 0x29, 0x7a, 0x73, 0x99, 0xf4, 0x54, 0xf3, 0xd2, 0x73, 0xa1, 0x68, + 0xea, 0xdf, 0x02, 0xc0, 0xf3, 0x7d, 0x45, 0x29, 0xd0, 0x7f, 0x51, 0x82, 0x96, 0x61, 0x1e, 0xc4, + 0x0f, 0x7d, 0x2f, 0x96, 0xa7, 0xb1, 0xe8, 0x40, 0xd9, 0xb1, 0x89, 0x46, 0x75, 0xa3, 0xec, 0xd8, + 0x78, 0xba, 0xc3, 0xd0, 0x9f, 0x06, 0x44, 0xa2, 0xb6, 0xc1, 0x00, 0xd1, 0xd2, 0xb6, 0x43, 0x3a, + 0x32, 0xd2, 0xd2, 0xb6, 0x43, 0xb1, 0x0c, 0xad, 0xc8, 0x33, 0x83, 0xe8, 0xc8, 0x8f, 0xf1, 0x74, + 0x55, 0x3a, 0x1d, 0x24, 0xa8, 0x51, 0x84, 0x8f, 0xce, 0x89, 0xc6, 0xae, 0x34, 0x43, 0x4f, 0x86, + 0xa4, 0x48, 0x9a, 0x86, 0xe6, 0x44, 0x3b, 0x8c, 0xd0, 0x7f, 0x51, 0x81, 0xfa, 0x13, 0x39, 0xd9, + 0x97, 0xe1, 0xb9, 0x43, 0xdc, 0x87, 0x26, 0xed, 0x3b, 0x76, 0x6c, 0x3e, 0xc7, 0xc6, 0x1b, 0x2f, + 0x5f, 0x2c, 0x2f, 0x11, 0x6e, 0xdb, 0xfe, 0xc0, 0x9f, 0x38, 0xb1, 0x9c, 0x04, 0xf1, 0x99, 0xd1, + 0x50, 0xa8, 0xb9, 0x07, 0xbc, 0x0a, 0x75, 0x57, 0x9a, 0xc8, 0x33, 0x16, 0x4f, 0x05, 0x89, 0xbb, + 0xd0, 0x30, 0x27, 0x63, 0x5b, 0x9a, 0x36, 0x1f, 0x6a, 0xe3, 0xca, 0xcb, 0x17, 0xcb, 0x5d, 0x73, + 0xb2, 0x29, 0xcd, 0xfc, 0xda, 0x75, 0xc6, 0x88, 0x8f, 0x51, 0x26, 0xa3, 0x78, 0x3c, 0x0d, 0x6c, + 0x33, 0x96, 0xa4, 0xeb, 0xaa, 0x1b, 0xbd, 0x97, 0x2f, 0x96, 0xaf, 0x20, 0xfa, 0x19, 0x61, 0x73, + 0xd3, 0x20, 0xc3, 0xa2, 0xde, 0x4b, 0xae, 0xaf, 0xf4, 0x9e, 0x02, 0xc5, 0x36, 0x2c, 0x59, 0xee, + 0x34, 0x42, 0xe5, 0xec, 0x78, 0x07, 0xfe, 0xd8, 0xf7, 0xdc, 0x33, 0x62, 0x70, 0x73, 0xe3, 0xfa, + 0xcb, 0x17, 0xcb, 0xdf, 0x50, 0x9d, 0xdb, 0xde, 0x81, 0xbf, 0xe7, 0xb9, 0x67, 0xb9, 0xf5, 0x2f, + 0xcd, 0x74, 0x89, 0xff, 0x0f, 0x9d, 0x03, 0x3f, 0xb4, 0xe4, 0x38, 0x25, 0x59, 0x87, 0xd6, 0xe9, + 0xbf, 0x7c, 0xb1, 0x7c, 0x95, 0x7a, 0x1e, 0x9d, 0xa3, 0xdb, 0x62, 0x1e, 0xaf, 0xff, 0x4b, 0x19, + 0x6a, 0xd4, 0x16, 0xf7, 0xa1, 0x31, 0x21, 0x96, 0x24, 0xfa, 0xe9, 0x2a, 0xca, 0x10, 0xf5, 0xad, + 0x32, 0xaf, 0xa2, 0x81, 0x17, 0x87, 0x67, 0x46, 0x32, 0x0c, 0x67, 0xc4, 0xe6, 0xbe, 0x2b, 0xe3, + 0x48, 0xc9, 0x7c, 0x6e, 0xc6, 0x88, 0x3b, 0xd4, 0x0c, 0x35, 0x6c, 0x56, 0x6e, 0x2a, 0xe7, 0xe4, + 0xa6, 0x0f, 0x4d, 0xeb, 0x48, 0x5a, 0xc7, 0xd1, 0x74, 0xa2, 0xa4, 0x2a, 0x85, 0xc5, 0xdb, 0xd0, + 0xa6, 0x76, 0xe0, 0x3b, 0x1e, 0x4d, 0xaf, 0xd1, 0x80, 0xc5, 0x0c, 0x39, 0x8a, 0xfa, 0x5b, 0xb0, + 0x98, 0x3f, 0x2c, 0x9a, 0xf3, 0x63, 0x79, 0x46, 0xf2, 0x55, 0x35, 0xb0, 0x29, 0x6e, 0x42, 0x8d, + 0x14, 0x1d, 0x49, 0x57, 0x6b, 0x0d, 0xf0, 0xcc, 0x3c, 0xc5, 0xe0, 0x8e, 0x4f, 0xca, 0xdf, 0x29, + 0xe1, 0x3a, 0xf9, 0x2b, 0xe4, 0xd7, 0xd1, 0x2e, 0x5e, 0x87, 0xa7, 0xe4, 0xd6, 0xd1, 0x7d, 0x68, + 0xec, 0x38, 0x96, 0xf4, 0x22, 0x32, 0xfa, 0xd3, 0x48, 0xa6, 0x4a, 0x09, 0xdb, 0x78, 0xdf, 0x89, + 0x79, 0xba, 0xeb, 0xdb, 0x32, 0xa2, 0x75, 0xaa, 0x46, 0x0a, 0x63, 0x9f, 0x3c, 0x0d, 0x9c, 0xf0, + 0x6c, 0xc4, 0x94, 0xaa, 0x18, 0x29, 0x8c, 0xd2, 0x25, 0x3d, 0xdc, 0xcc, 0x4e, 0x0c, 0xb8, 0x02, + 0xf5, 0x3f, 0xaf, 0xc2, 0xe2, 0x8f, 0x65, 0xe8, 0x3f, 0x0d, 0xfd, 0xc0, 0x8f, 0x4c, 0x57, 0xac, + 0x17, 0x69, 0xce, 0xbc, 0xbd, 0x89, 0xa7, 0xcd, 0x0f, 0x5b, 0x1d, 0xa6, 0x4c, 0x60, 0x9e, 0xe5, + 0xb9, 0xa2, 0x43, 0x9d, 0x79, 0x3e, 0x87, 0x66, 0xaa, 0x07, 0xc7, 0x30, 0x97, 0xe9, 0xac, 0x45, + 0x7a, 0xa8, 0x1e, 0x7c, 0x95, 0x13, 0xf3, 0xf4, 0xd9, 0xf6, 0xa6, 0xe2, 0xad, 0x82, 0x14, 0x15, + 0x46, 0xa7, 0xde, 0x28, 0x61, 0x6a, 0x0a, 0xe3, 0x4d, 0x91, 0x22, 0xd1, 0xf6, 0x66, 0x6f, 0x91, + 0xba, 0x12, 0x50, 0xbc, 0x05, 0xda, 0xc4, 0x3c, 0x45, 0x85, 0xb6, 0x6d, 0xf3, 0xd3, 0x34, 0x32, + 0x84, 0xf8, 0x26, 0x54, 0xe2, 0x53, 0x8f, 0xde, 0x1e, 0x7a, 0x15, 0xe8, 0x64, 0x8e, 0x4e, 0x3d, + 0xa5, 0xfa, 0x0c, 0xec, 0x43, 0x9e, 0x5a, 0x8e, 0x4d, 0x4e, 0x84, 0x66, 0x60, 0x53, 0xdc, 0x82, + 0x86, 0xcb, 0xdc, 0x22, 0x47, 0xa1, 0xb5, 0xd6, 0x62, 0x3d, 0x4a, 0x28, 0x23, 0xe9, 0x13, 0x1f, + 0x40, 0x33, 0xa1, 0x4e, 0xaf, 0x45, 0xe3, 0xba, 0x09, 0x3d, 0x13, 0x32, 0x1a, 0xe9, 0x08, 0x71, + 0x1f, 0x34, 0x5b, 0xba, 0x32, 0x96, 0x63, 0x8f, 0x15, 0x79, 0x8b, 0x1d, 0xc8, 0x4d, 0x42, 0xee, + 0x46, 0x86, 0xfc, 0xe9, 0x54, 0x46, 0xb1, 0xd1, 0xb4, 0x15, 0x42, 0xbc, 0x93, 0x3d, 0xac, 0x0e, + 0xb1, 0x2b, 0x4f, 0xcc, 0xa4, 0xab, 0xff, 0x3d, 0xb8, 0x34, 0xc3, 0xb4, 0xbc, 0x94, 0xb6, 0x59, + 0x4a, 0xaf, 0xe4, 0xa5, 0xb4, 0x9a, 0x93, 0xcc, 0xcf, 0xaa, 0xcd, 0x66, 0x57, 0xd3, 0xff, 0xb3, + 0x02, 0x97, 0xd4, 0x83, 0x39, 0x72, 0x82, 0x61, 0xac, 0x54, 0x17, 0x19, 0x26, 0x25, 0xab, 0x55, + 0x23, 0x01, 0xc5, 0xff, 0x83, 0x3a, 0x69, 0x9a, 0xe4, 0xc1, 0x2f, 0x67, 0x82, 0x90, 0x4e, 0x67, + 0x05, 0xa0, 0xa4, 0x48, 0x0d, 0x17, 0x1f, 0x41, 0xed, 0x73, 0x19, 0xfa, 0x6c, 0x68, 0x5b, 0x6b, + 0x37, 0xe6, 0xcd, 0x43, 0xf2, 0xa9, 0x69, 0x3c, 0xf8, 0x7f, 0x2a, 0x2f, 0xf0, 0x55, 0xe4, 0xe5, + 0x1d, 0x34, 0xb6, 0x13, 0xff, 0x44, 0xda, 0xbd, 0x46, 0x46, 0x73, 0x25, 0xe4, 0x49, 0x57, 0x22, + 0x32, 0xcd, 0xb9, 0x22, 0xa3, 0x5d, 0x2c, 0x32, 0xfd, 0x4d, 0x68, 0xe5, 0xe8, 0x32, 0x87, 0x51, + 0xcb, 0x45, 0x75, 0xa2, 0xa5, 0xaa, 0x34, 0xaf, 0x95, 0x36, 0x01, 0x32, 0x2a, 0x7d, 0x5d, 0xdd, + 0xa6, 0xff, 0xbc, 0x04, 0x97, 0x1e, 0xfa, 0x9e, 0x27, 0xc9, 0x55, 0x67, 0x9e, 0x67, 0x4f, 0xbc, + 0x74, 0xe1, 0x13, 0x7f, 0x1f, 0x6a, 0x11, 0x0e, 0x56, 0xab, 0x5f, 0x9e, 0xc3, 0x44, 0x83, 0x47, + 0xa0, 0xa2, 0x9f, 0x98, 0xa7, 0xe3, 0x40, 0x7a, 0xb6, 0xe3, 0x1d, 0x26, 0x8a, 0x7e, 0x62, 0x9e, + 0x3e, 0x65, 0x8c, 0xfe, 0xd7, 0x65, 0x80, 0x4f, 0xa5, 0xe9, 0xc6, 0x47, 0x68, 0xcc, 0x90, 0xa3, + 0x8e, 0x17, 0xc5, 0xa6, 0x67, 0x25, 0x81, 0x52, 0x0a, 0x23, 0x47, 0xd1, 0xa6, 0xcb, 0x88, 0x55, + 0xa4, 0x66, 0x24, 0x20, 0xca, 0x07, 0x6e, 0x37, 0x8d, 0x94, 0xed, 0x57, 0x50, 0xe6, 0xc8, 0x54, + 0x09, 0xad, 0x1c, 0x99, 0x1e, 0x34, 0x30, 0xf0, 0x70, 0x7c, 0x8f, 0x84, 0x46, 0x33, 0x12, 0x10, + 0xd7, 0x99, 0x06, 0xb1, 0x33, 0x61, 0x0b, 0x5f, 0x31, 0x14, 0x84, 0xa7, 0x42, 0x8b, 0x3e, 0xb0, + 0x8e, 0x7c, 0x52, 0x24, 0x15, 0x23, 0x85, 0x71, 0x35, 0xdf, 0x3b, 0xf4, 0xf1, 0x76, 0x4d, 0x72, + 0x1e, 0x13, 0x90, 0xef, 0x62, 0xcb, 0x53, 0xec, 0xd2, 0xa8, 0x2b, 0x85, 0x91, 0x2e, 0x52, 0x8e, + 0x0f, 0xa4, 0x19, 0x4f, 0x43, 0x19, 0xf5, 0x80, 0xba, 0x41, 0xca, 0x2d, 0x85, 0x11, 0xdf, 0x84, + 0x45, 0x24, 0x9c, 0x19, 0x45, 0xce, 0xa1, 0x27, 0x6d, 0x52, 0x2f, 0x55, 0x03, 0x89, 0xb9, 0xae, + 0x50, 0xfa, 0xdf, 0x96, 0xa1, 0xce, 0xba, 0xa0, 0xe0, 0x2c, 0x95, 0x5e, 0xcb, 0x59, 0x7a, 0x0b, + 0xb4, 0x20, 0x94, 0xb6, 0x63, 0x25, 0x7c, 0xd4, 0x8c, 0x0c, 0x41, 0xd1, 0x0d, 0x7a, 0x07, 0x44, + 0xcf, 0xa6, 0xc1, 0x80, 0xd0, 0xa1, 0xed, 0x7b, 0x63, 0xdb, 0x89, 0x8e, 0xc7, 0xfb, 0x67, 0xb1, + 0x8c, 0x14, 0x2d, 0x5a, 0xbe, 0xb7, 0xe9, 0x44, 0xc7, 0x1b, 0x88, 0x42, 0x12, 0xf2, 0x1b, 0xa1, + 0xb7, 0xd1, 0x34, 0x14, 0x24, 0x3e, 0x04, 0x8d, 0x7c, 0x58, 0x72, 0x72, 0x34, 0x72, 0x4e, 0xae, + 0xbe, 0x7c, 0xb1, 0x2c, 0x10, 0x39, 0xe3, 0xdd, 0x34, 0x13, 0x1c, 0x7a, 0x69, 0x38, 0x19, 0xcd, + 0x15, 0xbd, 0x61, 0xf6, 0xd2, 0x10, 0x35, 0x8a, 0xf2, 0x5e, 0x1a, 0x63, 0xc4, 0x5d, 0x10, 0x53, + 0xcf, 0xf2, 0x27, 0x01, 0x0a, 0x85, 0xb4, 0xd5, 0x21, 0x5b, 0x74, 0xc8, 0xa5, 0x7c, 0x0f, 0x1d, + 0x55, 0xff, 0xe7, 0x32, 0x2c, 0x6e, 0x3a, 0xa1, 0xb4, 0x62, 0x69, 0x0f, 0xec, 0x43, 0x89, 0x67, + 0x97, 0x5e, 0xec, 0xc4, 0x67, 0xca, 0x0d, 0x55, 0x50, 0x1a, 0x45, 0x94, 0x8b, 0xd1, 0x36, 0xbf, + 0xb0, 0x0a, 0x25, 0x08, 0x18, 0x10, 0x6b, 0x00, 0x1c, 0x5f, 0x51, 0x92, 0xa0, 0x7a, 0x71, 0x92, + 0x40, 0xa3, 0x61, 0xd8, 0xc4, 0x20, 0x9c, 0xe7, 0x38, 0xec, 0x8b, 0xd6, 0x29, 0x83, 0x30, 0x95, + 0xec, 0xd1, 0x52, 0xd8, 0xd7, 0xe0, 0x8d, 0xb1, 0x2d, 0xde, 0x86, 0xb2, 0x1f, 0x10, 0x71, 0xd5, + 0xd2, 0xf9, 0x2b, 0xac, 0xee, 0x05, 0x46, 0xd9, 0x0f, 0xf0, 0x15, 0x73, 0xec, 0x4b, 0x82, 0x87, + 0xaf, 0x18, 0xed, 0x1e, 0x45, 0x5c, 0x86, 0xea, 0x11, 0x3a, 0x2c, 0x9a, 0xae, 0xeb, 0xff, 0x4c, + 0xda, 0x4f, 0x43, 0x69, 0x27, 0x32, 0x58, 0xc0, 0xa1, 0x94, 0x78, 0xe6, 0x44, 0x46, 0x81, 0x69, + 0x49, 0x25, 0x82, 0x19, 0x42, 0xbf, 0x0a, 0xe5, 0xbd, 0x40, 0x34, 0xa0, 0x32, 0x1c, 0x8c, 0xba, + 0x0b, 0xd8, 0xd8, 0x1c, 0xec, 0x74, 0xd1, 0xa2, 0xd4, 0xbb, 0x0d, 0xfd, 0x8b, 0x32, 0x68, 0x4f, + 0xa6, 0xb1, 0x89, 0xba, 0x25, 0xc2, 0x5b, 0x16, 0x25, 0x34, 0x13, 0xc5, 0x6f, 0x40, 0x33, 0x8a, + 0xcd, 0x90, 0xbc, 0x12, 0xb6, 0x4e, 0x0d, 0x82, 0x47, 0x91, 0x78, 0x17, 0x6a, 0xd2, 0x3e, 0x94, + 0x89, 0xb9, 0xe8, 0xce, 0xde, 0xd7, 0xe0, 0x6e, 0xb1, 0x02, 0xf5, 0xc8, 0x3a, 0x92, 0x13, 0xb3, + 0x57, 0xcd, 0x06, 0x0e, 0x09, 0xc3, 0x6e, 0xb8, 0xa1, 0xfa, 0xc5, 0x3b, 0x50, 0x43, 0xde, 0x44, + 0x2a, 0xae, 0xa4, 0x48, 0x14, 0xd9, 0xa0, 0x86, 0x71, 0x27, 0x0a, 0x9e, 0x1d, 0xfa, 0xc1, 0xd8, + 0x0f, 0x88, 0xf6, 0x9d, 0xb5, 0x2b, 0xa4, 0xe3, 0x92, 0xdb, 0xac, 0x6e, 0x86, 0x7e, 0xb0, 0x17, + 0x18, 0x75, 0x9b, 0x7e, 0x31, 0xca, 0xa1, 0xe1, 0x2c, 0x11, 0x6c, 0x14, 0x34, 0xc4, 0x70, 0x2a, + 0x69, 0x05, 0x9a, 0x13, 0x19, 0x9b, 0xb6, 0x19, 0x9b, 0xca, 0x36, 0x2c, 0xb2, 0xca, 0x64, 0x9c, + 0x91, 0xf6, 0xea, 0xf7, 0xa0, 0xce, 0x4b, 0x8b, 0x26, 0x54, 0x77, 0xf7, 0x76, 0x07, 0x4c, 0xd6, + 0xf5, 0x9d, 0x9d, 0x6e, 0x09, 0x51, 0x9b, 0xeb, 0xa3, 0xf5, 0x6e, 0x19, 0x5b, 0xa3, 0x1f, 0x3d, + 0x1d, 0x74, 0x2b, 0xfa, 0x3f, 0x94, 0xa0, 0x99, 0xac, 0x23, 0x3e, 0x01, 0xc0, 0x27, 0x3c, 0x3e, + 0x72, 0xbc, 0xd4, 0xc1, 0xbb, 0x96, 0xdf, 0x69, 0x15, 0xb9, 0xfa, 0x29, 0xf6, 0xb2, 0x79, 0xa5, + 0x17, 0x4f, 0x70, 0x7f, 0x08, 0x9d, 0x62, 0xe7, 0x1c, 0x4f, 0xf7, 0x4e, 0xde, 0xaa, 0x74, 0xd6, + 0xde, 0x28, 0x2c, 0x8d, 0x33, 0x49, 0xb4, 0x73, 0x06, 0xe6, 0x2e, 0x34, 0x13, 0xb4, 0x68, 0x41, + 0x63, 0x73, 0xb0, 0xb5, 0xfe, 0x6c, 0x07, 0x45, 0x05, 0xa0, 0x3e, 0xdc, 0xde, 0x7d, 0xb4, 0x33, + 0xe0, 0x6b, 0xed, 0x6c, 0x0f, 0x47, 0xdd, 0xb2, 0xfe, 0x87, 0x25, 0x68, 0x26, 0x9e, 0x8c, 0x78, + 0x1f, 0x9d, 0x0f, 0x72, 0xd2, 0x94, 0x25, 0xa2, 0x8c, 0x50, 0x2e, 0x6c, 0x35, 0x92, 0x7e, 0x7c, + 0x8b, 0xa4, 0x58, 0x13, 0xdf, 0x86, 0x80, 0x7c, 0xd4, 0x5c, 0x29, 0x24, 0x74, 0x04, 0x54, 0x6d, + 0xdf, 0x93, 0xca, 0x61, 0xa6, 0x36, 0xc9, 0xa0, 0xe3, 0x59, 0x32, 0x0b, 0x27, 0x1a, 0x04, 0x8f, + 0x22, 0x3d, 0x66, 0x3f, 0x3a, 0x3d, 0x58, 0xba, 0x5b, 0x29, 0xbf, 0xdb, 0xb9, 0xa0, 0xa4, 0x7c, + 0x3e, 0x28, 0xc9, 0x0c, 0x67, 0xed, 0xcb, 0x0c, 0xa7, 0xfe, 0xf3, 0x3a, 0x74, 0x0c, 0x19, 0xc5, + 0x7e, 0x28, 0x95, 0x5f, 0xf8, 0xaa, 0x27, 0x74, 0x1d, 0x20, 0xe4, 0xc1, 0xd9, 0xd6, 0x9a, 0xc2, + 0x70, 0x34, 0xe5, 0xfa, 0x16, 0xc9, 0xae, 0xb2, 0x90, 0x29, 0x2c, 0xae, 0x81, 0xb6, 0x6f, 0x5a, + 0xc7, 0xbc, 0x2c, 0xdb, 0xc9, 0x26, 0x23, 0x78, 0x5d, 0xd3, 0xb2, 0x64, 0x14, 0x8d, 0x51, 0x14, + 0xd8, 0x5a, 0x6a, 0x8c, 0x79, 0x2c, 0xcf, 0xc4, 0x7d, 0x80, 0x48, 0x5a, 0xa1, 0x8c, 0xa9, 0x1b, + 0x6d, 0xa6, 0xb6, 0xb1, 0xf4, 0xab, 0x17, 0xcb, 0x0b, 0xff, 0xf4, 0x62, 0x59, 0x1b, 0x4a, 0x2f, + 0x72, 0x62, 0xe7, 0x44, 0x1a, 0x1a, 0x0f, 0xc2, 0x19, 0xdf, 0x86, 0x76, 0x24, 0x23, 0x34, 0xb6, + 0xe3, 0xd8, 0x3f, 0x96, 0xec, 0x97, 0xcf, 0x9d, 0xb4, 0xa8, 0xc6, 0x8d, 0x70, 0x18, 0x2a, 0x22, + 0xd3, 0xf3, 0xbd, 0xb3, 0x89, 0x3f, 0x8d, 0x94, 0x65, 0xc9, 0x10, 0x62, 0x15, 0x2e, 0x4b, 0xcf, + 0x0a, 0xcf, 0x02, 0xbc, 0x11, 0x9e, 0x65, 0x7c, 0xe0, 0xb8, 0x52, 0x39, 0xf4, 0x4b, 0x59, 0xd7, + 0x63, 0x79, 0xb6, 0xe5, 0xb8, 0x12, 0xaf, 0x75, 0x62, 0x4e, 0xdd, 0x78, 0x4c, 0xf9, 0x02, 0xe0, + 0x6b, 0x11, 0x66, 0xdd, 0xb6, 0x43, 0x71, 0x1b, 0x96, 0xb8, 0x3b, 0xf4, 0x5d, 0xe9, 0xd8, 0xbc, + 0x58, 0x8b, 0x46, 0x5d, 0xa2, 0x0e, 0x83, 0xf0, 0xb4, 0xd4, 0x2a, 0x5c, 0xe6, 0xb1, 0x7c, 0xc7, + 0x64, 0xf4, 0x22, 0x6f, 0x4d, 0x5d, 0x43, 0xd5, 0x53, 0xdc, 0x3a, 0x30, 0xe3, 0x23, 0x8a, 0x02, + 0x92, 0xad, 0x9f, 0x9a, 0xf1, 0x11, 0xfa, 0x05, 0xdc, 0x7d, 0xe0, 0x48, 0x97, 0xa3, 0x78, 0xcd, + 0xe0, 0x19, 0x5b, 0x88, 0x41, 0xbf, 0x40, 0x0d, 0xf0, 0xc3, 0x89, 0xc9, 0xe9, 0x47, 0xcd, 0xe0, + 0x49, 0x5b, 0x84, 0xc2, 0x2d, 0x14, 0x47, 0xbd, 0xe9, 0x84, 0x12, 0x91, 0x55, 0x43, 0xf1, 0x78, + 0x77, 0x3a, 0x11, 0xef, 0x43, 0xd7, 0xf1, 0xac, 0x50, 0x4e, 0xa4, 0x17, 0x9b, 0xee, 0xf8, 0x20, + 0xf4, 0x27, 0xbd, 0x25, 0x1a, 0x74, 0x29, 0x87, 0xdf, 0x0a, 0xfd, 0x89, 0xca, 0xde, 0x04, 0x66, + 0x18, 0x3b, 0xa6, 0xdb, 0x13, 0x49, 0xf6, 0xe6, 0x29, 0x23, 0xc4, 0x3b, 0xd0, 0xc6, 0xd9, 0xbb, + 0xa9, 0x85, 0xb8, 0x4c, 0xcb, 0x14, 0x91, 0xe2, 0x3b, 0xf0, 0xa6, 0x13, 0xa5, 0xe0, 0xfa, 0xcf, + 0x4c, 0x94, 0x68, 0x92, 0xcc, 0xde, 0x15, 0x5a, 0xf1, 0xa2, 0x6e, 0xfd, 0x65, 0x05, 0x9a, 0x69, + 0xf8, 0x7a, 0x07, 0xb4, 0x49, 0xa2, 0x7f, 0x95, 0xe3, 0xd9, 0x2e, 0x28, 0x65, 0x23, 0xeb, 0x17, + 0xd7, 0xa1, 0x7c, 0x7c, 0xa2, 0x6c, 0x41, 0x7b, 0x95, 0x0b, 0x07, 0xc1, 0xfe, 0x47, 0xab, 0x8f, + 0x9f, 0x1b, 0xe5, 0xe3, 0x93, 0xaf, 0xf0, 0x0e, 0xc5, 0x7b, 0x70, 0xc9, 0x72, 0xa5, 0xe9, 0x8d, + 0x33, 0x6f, 0x89, 0xe4, 0xdc, 0xe8, 0x10, 0xfa, 0x69, 0xea, 0x32, 0xdd, 0x82, 0x9a, 0x2d, 0xdd, + 0xd8, 0xcc, 0xe7, 0xaf, 0xf7, 0x42, 0xd3, 0x72, 0xe5, 0x26, 0xa2, 0x0d, 0xee, 0x45, 0x5b, 0x90, + 0x86, 0x8c, 0x39, 0x5b, 0x30, 0x27, 0x5c, 0x4c, 0xf5, 0x0c, 0xe4, 0xf5, 0xcc, 0x1d, 0x58, 0x92, + 0xa7, 0x01, 0x19, 0xc0, 0x71, 0x9a, 0x21, 0x61, 0xcb, 0xdc, 0x4d, 0x3a, 0x1e, 0x26, 0x99, 0x92, + 0x0f, 0x50, 0x05, 0x32, 0xa9, 0x17, 0x69, 0x2f, 0x41, 0x3a, 0xb4, 0xa0, 0x56, 0x8c, 0x64, 0x88, + 0x78, 0x1f, 0x34, 0xcb, 0xb6, 0xc6, 0x4c, 0x99, 0x76, 0x76, 0xb6, 0x87, 0x9b, 0x0f, 0x99, 0x24, + 0x4d, 0xcb, 0xb6, 0x38, 0x4a, 0x28, 0x84, 0xb2, 0x9d, 0xd7, 0x09, 0x65, 0xf3, 0x46, 0xbe, 0x5b, + 0x30, 0xf2, 0x9f, 0x55, 0x9b, 0x8d, 0x6e, 0x53, 0x7f, 0x1b, 0x9a, 0xc9, 0x46, 0xa8, 0xba, 0x23, + 0xe9, 0xa9, 0x34, 0x05, 0xa9, 0x6e, 0x04, 0x47, 0x91, 0x6e, 0x41, 0xe5, 0xf1, 0xf3, 0x21, 0x69, + 0x70, 0x34, 0xa6, 0x35, 0xf2, 0xbd, 0xa8, 0x9d, 0x6a, 0xf5, 0x72, 0x4e, 0xab, 0xdf, 0x60, 0x83, + 0x48, 0x0c, 0x4a, 0x72, 0xbb, 0x39, 0x0c, 0x92, 0x98, 0x9d, 0x81, 0x2a, 0xa7, 0x7d, 0x09, 0xd0, + 0xff, 0xbd, 0x02, 0x0d, 0xe5, 0xaf, 0xa1, 0x11, 0x9c, 0xa6, 0x69, 0x49, 0x6c, 0x16, 0x03, 0xe9, + 0xd4, 0xf1, 0xcb, 0xd7, 0x86, 0x2a, 0x5f, 0x5e, 0x1b, 0x12, 0x9f, 0xc0, 0x62, 0xc0, 0x7d, 0x79, + 0x57, 0xf1, 0xcd, 0xfc, 0x1c, 0xf5, 0x4b, 0xf3, 0x5a, 0x41, 0x06, 0x20, 0x29, 0x29, 0x41, 0x1e, + 0x9b, 0x87, 0x8a, 0x02, 0x0d, 0x84, 0x47, 0xe6, 0xe1, 0x6b, 0xf9, 0x7d, 0x1d, 0x72, 0x20, 0x17, + 0xc9, 0x80, 0xa0, 0xaf, 0x98, 0xe7, 0x4c, 0xbb, 0xe8, 0x7e, 0x5d, 0x03, 0xcd, 0xf2, 0x27, 0x13, + 0x87, 0xfa, 0x3a, 0x2a, 0x0d, 0x47, 0x88, 0x51, 0xa4, 0xff, 0x5e, 0x09, 0x1a, 0xea, 0x5e, 0xe7, + 0x8c, 0xfb, 0xc6, 0xf6, 0xee, 0xba, 0xf1, 0xa3, 0x6e, 0x09, 0x9d, 0x97, 0xed, 0xdd, 0x51, 0xb7, + 0x2c, 0x34, 0xa8, 0x6d, 0xed, 0xec, 0xad, 0x8f, 0xba, 0x15, 0x34, 0xf8, 0x1b, 0x7b, 0x7b, 0x3b, + 0xdd, 0xaa, 0x58, 0x84, 0xe6, 0xe6, 0xfa, 0x68, 0x30, 0xda, 0x7e, 0x32, 0xe8, 0xd6, 0x70, 0xec, + 0xa3, 0xc1, 0x5e, 0xb7, 0x8e, 0x8d, 0x67, 0xdb, 0x9b, 0xdd, 0x06, 0xf6, 0x3f, 0x5d, 0x1f, 0x0e, + 0x7f, 0xb0, 0x67, 0x6c, 0x76, 0x9b, 0xe4, 0x34, 0x8c, 0x8c, 0xed, 0xdd, 0x47, 0x5d, 0x0d, 0xdb, + 0x7b, 0x1b, 0x9f, 0x0d, 0x1e, 0x8e, 0xba, 0xa0, 0x3f, 0x80, 0x56, 0x8e, 0x56, 0x38, 0xdb, 0x18, + 0x6c, 0x75, 0x17, 0x70, 0xcb, 0xe7, 0xeb, 0x3b, 0xcf, 0xd0, 0xc7, 0xe8, 0x00, 0x50, 0x73, 0xbc, + 0xb3, 0xbe, 0xfb, 0xa8, 0x5b, 0x56, 0x1e, 0xea, 0xf7, 0xa1, 0xf9, 0xcc, 0xb1, 0x37, 0x5c, 0xdf, + 0x3a, 0x46, 0xf1, 0xd9, 0x37, 0x23, 0xa9, 0xe4, 0x8d, 0xda, 0x18, 0x0f, 0xd0, 0xa3, 0x8d, 0x14, + 0xaf, 0x15, 0x84, 0x14, 0xf3, 0xa6, 0x93, 0x31, 0xd5, 0x0f, 0x2b, 0x6c, 0x88, 0xbd, 0xe9, 0xe4, + 0x99, 0x63, 0x47, 0xfa, 0x31, 0x34, 0x9e, 0x39, 0xf6, 0x53, 0xd3, 0x3a, 0x26, 0x35, 0x8c, 0x4b, + 0x8f, 0x23, 0xe7, 0x73, 0xa9, 0x0c, 0xb6, 0x46, 0x98, 0xa1, 0xf3, 0xb9, 0x14, 0xef, 0x40, 0x9d, + 0x80, 0x24, 0x85, 0x42, 0x4f, 0x2d, 0x39, 0x8e, 0xa1, 0xfa, 0xa8, 0x7c, 0xe7, 0xba, 0xbe, 0x35, + 0x0e, 0xe5, 0x41, 0xef, 0x4d, 0xe6, 0x00, 0x21, 0x0c, 0x79, 0xa0, 0xff, 0x41, 0x29, 0xbd, 0x39, + 0x55, 0x89, 0x96, 0xa1, 0x1a, 0x98, 0xd6, 0xb1, 0xf2, 0x97, 0x5a, 0x6a, 0x41, 0x3c, 0x8c, 0x41, + 0x1d, 0xe2, 0x3d, 0x68, 0x2a, 0x41, 0x4a, 0x76, 0x6d, 0xe5, 0x24, 0xce, 0x48, 0x3b, 0x8b, 0x8c, + 0xaf, 0x14, 0x19, 0x4f, 0xd1, 0x76, 0xe0, 0x3a, 0x31, 0x3f, 0x1b, 0x7c, 0x9c, 0x04, 0xe9, 0x1f, + 0x01, 0x64, 0x05, 0xbb, 0x39, 0xee, 0xe3, 0x15, 0xa8, 0x99, 0xae, 0x63, 0x26, 0xd1, 0x3b, 0x03, + 0xfa, 0x2e, 0xb4, 0x72, 0x65, 0x3e, 0xa4, 0xad, 0xe9, 0xba, 0x68, 0xc3, 0xf9, 0xed, 0x37, 0x8d, + 0x86, 0xe9, 0xba, 0x8f, 0xe5, 0x59, 0x84, 0xae, 0x3b, 0x57, 0x08, 0xcb, 0x33, 0x45, 0x24, 0x9a, + 0x6a, 0x70, 0xa7, 0xfe, 0x01, 0xd4, 0xb7, 0x92, 0x00, 0x27, 0x79, 0x0c, 0xa5, 0x8b, 0x1e, 0x83, + 0xfe, 0xb1, 0x3a, 0x33, 0xd5, 0xa1, 0xc4, 0x1d, 0x55, 0x89, 0x8c, 0xb8, 0xee, 0x59, 0xca, 0xf2, + 0x3f, 0x3c, 0x48, 0x15, 0x21, 0x69, 0xb0, 0xbe, 0x09, 0xcd, 0x57, 0xd6, 0x76, 0x15, 0x01, 0xca, + 0x19, 0x01, 0xe6, 0x54, 0x7b, 0xf5, 0x9f, 0x00, 0x64, 0x15, 0x4b, 0xf5, 0x36, 0x79, 0x15, 0x7c, + 0x9b, 0xb7, 0xa1, 0x69, 0x1d, 0x39, 0xae, 0x1d, 0x4a, 0xaf, 0x70, 0xeb, 0xac, 0xc6, 0x99, 0xf6, + 0x8b, 0x9b, 0x50, 0xa5, 0x42, 0x6c, 0x25, 0xd3, 0xdc, 0x69, 0x15, 0x96, 0x7a, 0xf4, 0x53, 0x68, + 0x73, 0x4c, 0xf4, 0x1a, 0x1e, 0x65, 0x51, 0x75, 0x96, 0xcf, 0xa9, 0xce, 0xab, 0x50, 0x27, 0x17, + 0x25, 0xb9, 0x8d, 0x82, 0x2e, 0x50, 0xa9, 0x7f, 0x5c, 0x06, 0xe0, 0xad, 0x77, 0x7d, 0x5b, 0x16, + 0x93, 0x0f, 0xa5, 0xd9, 0xe4, 0x83, 0x80, 0x6a, 0x5a, 0x63, 0xd7, 0x0c, 0x6a, 0x67, 0xc6, 0x50, + 0x25, 0x24, 0xd8, 0x18, 0xbe, 0x05, 0x1a, 0x79, 0x91, 0xce, 0xe7, 0x54, 0xe0, 0xc1, 0x0d, 0x33, + 0x44, 0xbe, 0xe2, 0x5c, 0x2b, 0x56, 0x9c, 0xd3, 0xf2, 0x5b, 0x9d, 0x57, 0xe3, 0xf2, 0xdb, 0x9c, + 0x4a, 0x22, 0x67, 0x84, 0x22, 0x19, 0xc6, 0x49, 0x3a, 0x83, 0xa1, 0x34, 0x32, 0xd7, 0xd4, 0x58, + 0x93, 0x73, 0x3a, 0x9e, 0x3f, 0xb6, 0x7c, 0xef, 0xc0, 0x75, 0xac, 0x58, 0x55, 0x98, 0xc1, 0xf3, + 0x1f, 0x2a, 0x0c, 0x2d, 0xe6, 0x39, 0x3f, 0x9d, 0xb2, 0x33, 0x89, 0x8b, 0x11, 0xa4, 0x7f, 0x02, + 0x8b, 0x09, 0x5f, 0xa8, 0x90, 0x77, 0x3b, 0x8d, 0x66, 0x4b, 0x19, 0xcf, 0x33, 0xf2, 0x6d, 0x94, + 0x7b, 0xa5, 0x24, 0x9e, 0xd5, 0x7f, 0xbf, 0x9a, 0x4c, 0x56, 0xf5, 0xa6, 0x57, 0xd3, 0xb6, 0x98, + 0xa0, 0x28, 0xbf, 0x56, 0x82, 0xe2, 0x3b, 0xa0, 0xd9, 0x14, 0x73, 0x3b, 0x27, 0x89, 0x71, 0xeb, + 0xcf, 0xc6, 0xd7, 0x2a, 0x2a, 0x27, 0x6f, 0x3f, 0x1d, 0xfc, 0x25, 0xfc, 0x49, 0xb9, 0x50, 0x9b, + 0xc7, 0x85, 0xfa, 0xd7, 0xe4, 0x42, 0x46, 0xe4, 0x4e, 0x9e, 0xc8, 0xe8, 0x38, 0x7b, 0xbe, 0x37, + 0xf6, 0xa6, 0xae, 0x6b, 0xee, 0xbb, 0x52, 0xb1, 0xa7, 0xe5, 0xf9, 0xde, 0xae, 0x42, 0xa1, 0xdf, + 0x9f, 0x1f, 0xc2, 0x4a, 0x80, 0x59, 0x75, 0x29, 0x37, 0x8e, 0x54, 0xc5, 0x0a, 0x74, 0xfd, 0xfd, + 0x9f, 0x48, 0x2b, 0x26, 0x4a, 0x8e, 0xe9, 0xf5, 0xb3, 0xd3, 0xdf, 0x61, 0x3c, 0x92, 0x0e, 0xdd, + 0xda, 0x59, 0xb1, 0x68, 0xcf, 0x8a, 0x85, 0xfe, 0x31, 0x68, 0x29, 0xf5, 0x72, 0x71, 0xbf, 0x06, + 0xb5, 0xed, 0xdd, 0xcd, 0xc1, 0x0f, 0xbb, 0x25, 0x34, 0xaf, 0xc6, 0xe0, 0xf9, 0xc0, 0x18, 0x0e, + 0xba, 0x65, 0x34, 0x7d, 0x9b, 0x83, 0x9d, 0xc1, 0x68, 0xd0, 0xad, 0xb0, 0xeb, 0x44, 0xe5, 0x20, + 0xd7, 0xb1, 0x9c, 0x58, 0x1f, 0x02, 0x64, 0xc9, 0x0c, 0xd4, 0xe2, 0xd9, 0xe1, 0x54, 0x36, 0x35, + 0x4e, 0x8e, 0xb5, 0x92, 0x3e, 0xe0, 0xf2, 0x45, 0x29, 0x13, 0xee, 0xd7, 0xd7, 0x40, 0x7b, 0x62, + 0x06, 0x9f, 0x72, 0xe1, 0xf4, 0x16, 0x74, 0x28, 0x1e, 0x48, 0x22, 0x2d, 0x56, 0xae, 0x8b, 0x46, + 0x3b, 0xc5, 0xa2, 0xae, 0xd6, 0xff, 0xa2, 0x04, 0x57, 0x9e, 0xf8, 0x27, 0x32, 0xf5, 0x8f, 0x9f, + 0x9a, 0x67, 0xae, 0x6f, 0xda, 0x5f, 0x22, 0x9e, 0xd7, 0x01, 0x22, 0x7f, 0x4a, 0x85, 0xcc, 0xa4, + 0xec, 0x6b, 0x68, 0x8c, 0x79, 0xa4, 0xbe, 0x57, 0x91, 0x51, 0x4c, 0x9d, 0xca, 0xf0, 0x22, 0x8c, + 0x5d, 0x6f, 0x40, 0x3d, 0x3e, 0xf5, 0xb2, 0x22, 0x74, 0x2d, 0xa6, 0x2a, 0xc0, 0x5c, 0x77, 0xb9, + 0x36, 0xdf, 0x5d, 0xd6, 0x1f, 0x82, 0x36, 0x3a, 0xa5, 0x3c, 0xf8, 0xb4, 0xe8, 0xb0, 0x96, 0x5e, + 0xe1, 0x16, 0x95, 0x67, 0xdc, 0xa2, 0x7f, 0x2b, 0x41, 0x2b, 0xe7, 0xf7, 0x8b, 0x6f, 0x42, 0x35, + 0x3e, 0xf5, 0x8a, 0xdf, 0x7a, 0x24, 0x9b, 0x18, 0xd4, 0x75, 0x2e, 0xd7, 0x5b, 0x3e, 0x97, 0xeb, + 0x15, 0x3b, 0x70, 0x89, 0x35, 0x75, 0x72, 0x89, 0x24, 0x25, 0xf6, 0xf6, 0x4c, 0x9c, 0xc1, 0xb5, + 0x82, 0xe4, 0x4a, 0x2a, 0xcf, 0xd3, 0x39, 0x2c, 0x20, 0xfb, 0xeb, 0x70, 0x79, 0xce, 0xb0, 0xaf, + 0x52, 0x35, 0xd2, 0x97, 0xa1, 0x3d, 0x3a, 0xf5, 0x46, 0xce, 0x44, 0x46, 0xb1, 0x39, 0x09, 0xc8, + 0xad, 0x54, 0x96, 0xb6, 0x6a, 0x94, 0xe3, 0x48, 0x7f, 0x17, 0x16, 0x9f, 0x4a, 0x19, 0x1a, 0x32, + 0x0a, 0x7c, 0x8f, 0x9d, 0x29, 0x95, 0xa3, 0x67, 0xb3, 0xae, 0x20, 0xfd, 0x77, 0x41, 0x33, 0xcc, + 0x83, 0x78, 0xc3, 0x8c, 0xad, 0xa3, 0xaf, 0x92, 0xf4, 0x79, 0x17, 0x1a, 0x01, 0xcb, 0x94, 0x8a, + 0x06, 0x17, 0xc9, 0xbc, 0x2b, 0x39, 0x33, 0x92, 0x4e, 0xfd, 0xdb, 0xd0, 0x51, 0x05, 0xb3, 0xe4, + 0x24, 0xb9, 0xaa, 0x5a, 0xe9, 0xc2, 0xaa, 0x9a, 0x7e, 0x08, 0xed, 0x64, 0x1e, 0x1b, 0xcb, 0xd7, + 0x9a, 0xf6, 0xd5, 0x3f, 0x5b, 0xd0, 0x7f, 0x07, 0x2e, 0x0f, 0xa7, 0xfb, 0x91, 0x15, 0x3a, 0x94, + 0xa3, 0x48, 0xb6, 0xeb, 0x43, 0x33, 0x08, 0xe5, 0x81, 0x73, 0x2a, 0x93, 0x27, 0x96, 0xc2, 0xe2, + 0x36, 0x34, 0x26, 0x48, 0x2f, 0x99, 0x3d, 0xde, 0x2c, 0xc6, 0x7d, 0x82, 0x3d, 0x46, 0x32, 0x40, + 0xff, 0x2e, 0x5c, 0x29, 0x2e, 0xaf, 0xa8, 0xf0, 0x36, 0x54, 0x8e, 0x4f, 0x22, 0x45, 0xe6, 0xa5, + 0x42, 0x8c, 0x4c, 0xdf, 0x8b, 0x60, 0xaf, 0xfe, 0x37, 0x25, 0xa8, 0xec, 0x4e, 0x27, 0xf9, 0x8f, + 0xe1, 0xaa, 0xfc, 0x31, 0xdc, 0xb5, 0x7c, 0x3e, 0x9f, 0x63, 0xae, 0x2c, 0x6f, 0xff, 0x16, 0x68, + 0x07, 0x7e, 0xf8, 0x33, 0x33, 0xb4, 0xa5, 0xad, 0x2c, 0x76, 0x86, 0x20, 0x57, 0x7b, 0x3a, 0x09, + 0x94, 0xda, 0xa7, 0xb6, 0xb8, 0xa5, 0x6c, 0x3e, 0xc7, 0x41, 0x4b, 0x48, 0xd9, 0xdd, 0xe9, 0x64, + 0xd5, 0x95, 0x66, 0x44, 0x46, 0x88, 0xdd, 0x00, 0xfd, 0x0e, 0x68, 0x29, 0x0a, 0x15, 0xe4, 0xee, + 0x70, 0xbc, 0xbd, 0xc9, 0x39, 0x52, 0x8c, 0x18, 0x4a, 0xa8, 0x1c, 0x47, 0x3f, 0xdc, 0x1d, 0x8f, + 0x86, 0xdd, 0xb2, 0xfe, 0x63, 0x68, 0x25, 0xef, 0x67, 0xdb, 0xa6, 0x82, 0x20, 0x3d, 0xe0, 0x6d, + 0xbb, 0xf0, 0x9e, 0xb7, 0x29, 0xa4, 0x93, 0x9e, 0xbd, 0x9d, 0x3c, 0x3c, 0x06, 0x8a, 0x37, 0x54, + 0xd5, 0xc5, 0xe4, 0x86, 0xfa, 0x00, 0x96, 0x0c, 0x2a, 0x6c, 0xa0, 0x41, 0x4e, 0x58, 0x76, 0x15, + 0xea, 0x9e, 0x6f, 0xcb, 0x74, 0x03, 0x05, 0xe1, 0xce, 0x8a, 0xd9, 0x4a, 0xa5, 0xa5, 0xbc, 0x97, + 0xb0, 0x84, 0x5a, 0xb2, 0x28, 0x68, 0x85, 0xa4, 0x7b, 0x69, 0x26, 0xe9, 0x8e, 0x9b, 0xa8, 0xfa, + 0x3a, 0xfb, 0x47, 0x49, 0x4d, 0xbd, 0x0f, 0x4d, 0x3b, 0x8a, 0xe9, 0x59, 0x2b, 0xdd, 0x98, 0xc2, + 0xfa, 0x3d, 0xb8, 0xbc, 0x1e, 0x04, 0xee, 0x59, 0x52, 0x8d, 0x54, 0x1b, 0xf5, 0xb2, 0x92, 0x65, + 0x49, 0xc5, 0x91, 0x0c, 0xea, 0x5b, 0xb0, 0x98, 0x64, 0x24, 0x9e, 0xc8, 0xd8, 0x24, 0x8d, 0xe7, + 0x3a, 0x85, 0x90, 0xbc, 0xc9, 0x88, 0x51, 0x31, 0xb5, 0x3f, 0x73, 0xbf, 0x55, 0xa8, 0x2b, 0x75, + 0x2a, 0xa0, 0x6a, 0xf9, 0x36, 0x6f, 0x54, 0x33, 0xa8, 0x8d, 0x52, 0x35, 0x89, 0x0e, 0x13, 0x0f, + 0x79, 0x12, 0x1d, 0xea, 0xff, 0x55, 0x86, 0xf6, 0x06, 0x65, 0xaa, 0x92, 0x33, 0xe6, 0xb2, 0xb8, + 0xa5, 0x42, 0x16, 0x37, 0x9f, 0xb1, 0x2d, 0x17, 0x32, 0xb6, 0x85, 0x03, 0x55, 0x8a, 0x6e, 0xed, + 0x9b, 0xd0, 0x98, 0x7a, 0xce, 0x69, 0x62, 0x27, 0x34, 0x72, 0x0f, 0x4e, 0x47, 0x91, 0xb8, 0x09, + 0x2d, 0x34, 0x25, 0x8e, 0xc7, 0x59, 0x52, 0x4e, 0x75, 0xe6, 0x51, 0x33, 0xb9, 0xd0, 0xfa, 0xab, + 0x73, 0xa1, 0x8d, 0xaf, 0x93, 0x0b, 0x6d, 0x7e, 0x8d, 0x5c, 0xa8, 0x36, 0x9b, 0x0b, 0x2d, 0x3a, + 0xee, 0x70, 0xce, 0x71, 0xbf, 0x0e, 0xc0, 0x9f, 0x0a, 0x1d, 0x4c, 0x5d, 0x57, 0x79, 0x37, 0x1a, + 0x61, 0xb6, 0xa6, 0xae, 0xab, 0xef, 0x40, 0x27, 0x61, 0x80, 0x52, 0x14, 0x9f, 0xc0, 0x25, 0x55, + 0x0b, 0x91, 0xa1, 0x4a, 0xbf, 0xb1, 0xfe, 0xa3, 0x57, 0xca, 0xe5, 0x0a, 0xd5, 0x63, 0x74, 0xec, + 0x3c, 0x18, 0xe9, 0xbf, 0x2c, 0x41, 0xbb, 0x30, 0x42, 0x3c, 0xc8, 0x2a, 0x2b, 0x25, 0x7a, 0xeb, + 0xbd, 0x73, 0xab, 0xbc, 0xba, 0xba, 0x52, 0x9e, 0xa9, 0xae, 0xe8, 0x77, 0xd3, 0x9a, 0x89, 0xaa, + 0x94, 0x2c, 0xa4, 0x95, 0x12, 0x2a, 0x2e, 0xac, 0x8f, 0x46, 0x46, 0xb7, 0x2c, 0xea, 0x50, 0xde, + 0x1d, 0x76, 0x2b, 0xfa, 0x6f, 0xca, 0xd0, 0x1e, 0x9c, 0x06, 0xf4, 0xd9, 0xdc, 0x97, 0x46, 0x41, + 0x39, 0xe9, 0x2b, 0x17, 0xa4, 0x2f, 0x27, 0x47, 0x15, 0x55, 0x2a, 0x66, 0x39, 0xc2, 0xb8, 0x88, + 0x33, 0xb3, 0x4a, 0xbe, 0x18, 0xfa, 0xbf, 0x23, 0x5f, 0x05, 0xed, 0x04, 0xb3, 0x25, 0xc1, 0x1d, + 0xe8, 0x24, 0xc4, 0x55, 0xe2, 0xf3, 0x5a, 0x0f, 0x9f, 0x3f, 0xa7, 0x75, 0xd3, 0x24, 0x1d, 0x03, + 0xfa, 0x9f, 0x95, 0x41, 0x63, 0x69, 0xc4, 0xfb, 0xbc, 0xaf, 0x6c, 0x44, 0x29, 0xab, 0x3e, 0xa5, + 0x9d, 0xab, 0x8f, 0xe5, 0x59, 0x66, 0x27, 0xe6, 0x56, 0x6c, 0x55, 0x2a, 0x8f, 0xb3, 0x19, 0x94, + 0xca, 0xbb, 0x06, 0x1a, 0xbb, 0x78, 0x53, 0x55, 0xfa, 0xa8, 0x1a, 0xec, 0xf3, 0x3d, 0x73, 0xc8, + 0x4a, 0xc5, 0x32, 0x9c, 0x28, 0x4e, 0x51, 0xbb, 0x18, 0x37, 0xb6, 0x93, 0x88, 0xa5, 0x40, 0x91, + 0xc6, 0x2c, 0x45, 0x8e, 0xa0, 0xa1, 0xce, 0x86, 0x6e, 0xfc, 0xb3, 0xdd, 0xc7, 0xbb, 0x7b, 0x3f, + 0xd8, 0x2d, 0xc8, 0x68, 0xea, 0xe8, 0x97, 0xf3, 0x8e, 0x7e, 0x05, 0xf1, 0x0f, 0xf7, 0x9e, 0xed, + 0x8e, 0xba, 0x55, 0xd1, 0x06, 0x8d, 0x9a, 0x63, 0x63, 0xf0, 0xbc, 0x5b, 0xa3, 0x4c, 0xd8, 0xc3, + 0x4f, 0x07, 0x4f, 0xd6, 0xbb, 0xf5, 0xb4, 0x16, 0xd8, 0xd0, 0xff, 0xb4, 0x04, 0x4b, 0x4c, 0x90, + 0x7c, 0x52, 0x28, 0xff, 0xa1, 0x7b, 0x95, 0x3f, 0x74, 0xff, 0xdf, 0xcd, 0x03, 0xe1, 0xa4, 0xa9, + 0x93, 0x54, 0xdf, 0x39, 0x41, 0xd9, 0x9c, 0x3a, 0xaa, 0xe8, 0xfe, 0xf7, 0x25, 0xe8, 0x73, 0x7c, + 0xf1, 0x28, 0x34, 0x83, 0xa3, 0xef, 0xef, 0x9c, 0xcb, 0x48, 0x5c, 0xe4, 0x75, 0xdf, 0x82, 0x0e, + 0xfd, 0x15, 0xe0, 0xa7, 0xee, 0x58, 0x45, 0xc7, 0xcc, 0xdd, 0xb6, 0xc2, 0xf2, 0x42, 0xe2, 0x43, + 0x58, 0xe4, 0xbf, 0x0c, 0x50, 0xc6, 0xbe, 0x50, 0x39, 0x2e, 0x44, 0x37, 0x2d, 0x1e, 0xc5, 0x75, + 0xee, 0x07, 0xe9, 0xa4, 0x2c, 0x79, 0x71, 0xbe, 0x38, 0xac, 0xa6, 0x8c, 0x28, 0xa5, 0x71, 0x0f, + 0xae, 0xcd, 0xbd, 0x87, 0x12, 0xfb, 0x5c, 0xe2, 0x98, 0xa5, 0x4d, 0xff, 0x4d, 0x09, 0x9a, 0x1b, + 0x53, 0xf7, 0x98, 0x0c, 0xea, 0x75, 0x00, 0x69, 0x1f, 0x4a, 0xf5, 0xed, 0x7d, 0x89, 0x54, 0x88, + 0x86, 0x18, 0xfe, 0xfa, 0xfe, 0x13, 0x00, 0xbe, 0xe3, 0x78, 0x62, 0x06, 0x8a, 0x45, 0x54, 0xc9, + 0x4d, 0x16, 0x50, 0x77, 0x79, 0x62, 0x06, 0xaa, 0x92, 0x1b, 0x25, 0x70, 0x56, 0xe1, 0xae, 0xbc, + 0xa2, 0xc2, 0xdd, 0xdf, 0x85, 0x4e, 0x71, 0x89, 0x39, 0x09, 0xbb, 0x77, 0x8b, 0x5f, 0x11, 0x9d, + 0xa7, 0x61, 0x2e, 0x1e, 0xf8, 0x0c, 0x2e, 0xcd, 0x24, 0xff, 0x5f, 0xa5, 0x57, 0x0b, 0x4f, 0xa6, + 0x3c, 0xfb, 0x64, 0x3e, 0x80, 0xa5, 0x91, 0x19, 0x1d, 0xab, 0x18, 0x29, 0x73, 0x04, 0x62, 0x33, + 0x3a, 0x1e, 0xa7, 0x44, 0xad, 0x23, 0xb8, 0x6d, 0xeb, 0x0f, 0x40, 0xe4, 0x47, 0x2b, 0xfa, 0x63, + 0xec, 0x8b, 0xc3, 0x27, 0x32, 0x36, 0x13, 0x8f, 0x05, 0x11, 0x48, 0xbc, 0xb5, 0xbf, 0x2b, 0x41, + 0x15, 0x83, 0x0a, 0x71, 0x17, 0xb4, 0x4f, 0xa5, 0x19, 0xc6, 0xfb, 0xd2, 0x8c, 0x45, 0x21, 0x80, + 0xe8, 0x13, 0xdd, 0xb2, 0x2f, 0x93, 0xf4, 0x85, 0xfb, 0x25, 0xb1, 0xca, 0xdf, 0x4d, 0x27, 0xdf, + 0x83, 0xb7, 0x93, 0xe0, 0x84, 0x82, 0x97, 0x7e, 0x61, 0xbe, 0xbe, 0xb0, 0x42, 0xe3, 0x3f, 0xf3, + 0x1d, 0xef, 0x21, 0x7f, 0xad, 0x2b, 0x66, 0x83, 0x99, 0xd9, 0x19, 0xe2, 0x2e, 0xd4, 0xb7, 0x23, + 0x8c, 0x9a, 0xce, 0x0f, 0x25, 0xe2, 0xe7, 0x03, 0x2a, 0x7d, 0x61, 0xed, 0x2f, 0x6b, 0x50, 0xfd, + 0xb1, 0x0c, 0x7d, 0xf1, 0x01, 0x34, 0xd4, 0x77, 0x5c, 0x22, 0xf7, 0xbd, 0x56, 0x9f, 0x12, 0x3b, + 0x33, 0x1f, 0x78, 0xd1, 0x2e, 0x5d, 0xe6, 0x5f, 0x56, 0xf2, 0x12, 0xd9, 0x67, 0x66, 0xe7, 0x0e, + 0xf5, 0x31, 0x74, 0x87, 0x71, 0x28, 0xcd, 0x49, 0x6e, 0x78, 0x91, 0x54, 0xf3, 0xea, 0x67, 0x44, + 0xaf, 0x3b, 0x50, 0xe7, 0xd0, 0x74, 0x66, 0xc2, 0x6c, 0x71, 0x8c, 0x06, 0xbf, 0x07, 0xad, 0xe1, + 0x91, 0x3f, 0x75, 0xed, 0xa1, 0x0c, 0x4f, 0xa4, 0xc8, 0x45, 0x57, 0xfd, 0x5c, 0x5b, 0x5f, 0x10, + 0x0f, 0xa0, 0x8e, 0x1c, 0x09, 0x27, 0x62, 0x29, 0x17, 0x81, 0xb1, 0x98, 0xf4, 0x45, 0x1e, 0x95, + 0x50, 0x4a, 0xbc, 0x07, 0x1a, 0x87, 0x02, 0x18, 0x08, 0x34, 0x54, 0x74, 0xc1, 0xc7, 0xc8, 0x85, + 0x08, 0xfa, 0x82, 0x58, 0x01, 0xc8, 0xc5, 0xb4, 0xaf, 0x1a, 0xf9, 0x21, 0xb4, 0x1f, 0x92, 0x26, + 0xdc, 0x0b, 0xd7, 0xf7, 0xfd, 0x30, 0x16, 0xb3, 0xdf, 0x96, 0xf6, 0x67, 0x11, 0xfa, 0x02, 0x46, + 0x87, 0xa3, 0xf0, 0x8c, 0xc7, 0x2f, 0xa9, 0x54, 0x40, 0xb6, 0xdf, 0x1c, 0xba, 0x88, 0x8f, 0xd2, + 0x77, 0x95, 0x46, 0x00, 0xf3, 0x2a, 0x6d, 0x4c, 0x22, 0x7e, 0x03, 0x44, 0x22, 0xc8, 0xc2, 0x13, + 0xf1, 0x06, 0x57, 0xfd, 0x66, 0xc2, 0x95, 0xf3, 0x53, 0xb2, 0x50, 0x84, 0xa7, 0x9c, 0x0b, 0x4d, + 0x66, 0xa6, 0x7c, 0x0b, 0x16, 0xf3, 0x61, 0x85, 0xa0, 0xf2, 0xd5, 0x9c, 0x40, 0xa3, 0x38, 0x6d, + 0xed, 0x3f, 0x6a, 0x50, 0xff, 0x81, 0x1f, 0x1e, 0xcb, 0x50, 0xdc, 0x86, 0x3a, 0xd5, 0x6f, 0xd5, + 0x5b, 0x4a, 0x6b, 0xb9, 0xf3, 0x68, 0xf7, 0x0e, 0x68, 0x24, 0x19, 0xf8, 0xd8, 0x59, 0x5e, 0xe9, + 0xbf, 0x50, 0xbc, 0x38, 0x67, 0x4e, 0x49, 0xb8, 0x3b, 0x2c, 0xad, 0xe9, 0xf7, 0x1a, 0x85, 0xfa, + 0x6a, 0x9f, 0x58, 0xfa, 0xf8, 0xf9, 0x10, 0xdf, 0xe7, 0xfd, 0x12, 0xfa, 0x14, 0x43, 0x66, 0x1e, + 0x0e, 0xca, 0xfe, 0xeb, 0xc1, 0xcf, 0x3f, 0xfb, 0x73, 0x85, 0xbe, 0x20, 0xee, 0x41, 0x5d, 0x99, + 0x98, 0xa5, 0x4c, 0x11, 0x26, 0x37, 0xec, 0xe6, 0x51, 0x6a, 0xc2, 0x03, 0xa8, 0xb3, 0x39, 0xe6, + 0x09, 0x85, 0xb8, 0x86, 0xe5, 0xb4, 0xe8, 0x69, 0xeb, 0x0b, 0xe2, 0x0e, 0x34, 0x54, 0x75, 0x56, + 0xcc, 0x29, 0xd5, 0x9e, 0xe3, 0x58, 0x9d, 0x7d, 0x2d, 0x5e, 0xbf, 0xe0, 0xd4, 0xf2, 0xfa, 0x45, + 0x57, 0x8c, 0x9f, 0xbe, 0x21, 0x2d, 0xe9, 0xe4, 0x12, 0x73, 0x22, 0xa1, 0xc8, 0x1c, 0xfd, 0xf5, + 0x31, 0xb4, 0x0b, 0x49, 0x3c, 0xd1, 0x4b, 0xc4, 0x62, 0x36, 0xaf, 0x77, 0x4e, 0x6b, 0x7c, 0x17, + 0x34, 0x95, 0x76, 0xd8, 0x57, 0x82, 0x31, 0x27, 0xc9, 0xd1, 0x3f, 0x9f, 0x77, 0x20, 0x55, 0xf0, + 0x43, 0xb8, 0x3c, 0xc7, 0xb6, 0x0a, 0xfa, 0x5a, 0xf8, 0x62, 0xe7, 0xa1, 0xbf, 0x7c, 0x61, 0x7f, + 0x4a, 0x80, 0xaf, 0xf7, 0x9c, 0xbe, 0x07, 0x90, 0x99, 0x18, 0x7e, 0x1b, 0xe7, 0x0c, 0x54, 0xff, + 0xea, 0x2c, 0x3a, 0xd9, 0x74, 0xa3, 0xf7, 0xab, 0x2f, 0x6e, 0x94, 0x7e, 0xfd, 0xc5, 0x8d, 0xd2, + 0xbf, 0x7e, 0x71, 0xa3, 0xf4, 0xcb, 0xdf, 0xde, 0x58, 0xf8, 0xf5, 0x6f, 0x6f, 0x2c, 0xfc, 0xe3, + 0x6f, 0x6f, 0x2c, 0xec, 0xd7, 0xe9, 0x4f, 0x89, 0x1f, 0xfe, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, + 0xa1, 0x01, 0x6c, 0x5e, 0x0a, 0x39, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -9265,6 +9283,25 @@ func (m *RestoreRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.IsNamespaceAwareRestore { + i-- + if m.IsNamespaceAwareRestore { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xa0 + } + if m.FromNamespace != 0 { + i = encodeVarintPb(dAtA, i, uint64(m.FromNamespace)) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x98 + } if m.IsPartial { i-- if m.IsPartial { @@ -12809,6 +12846,12 @@ func (m *RestoreRequest) Size() (n int) { if m.IsPartial { n += 3 } + if m.FromNamespace != 0 { + n += 2 + sovPb(uint64(m.FromNamespace)) + } + if m.IsNamespaceAwareRestore { + n += 3 + } return n } @@ -19665,6 +19708,45 @@ func (m *RestoreRequest) Unmarshal(dAtA []byte) error { } } m.IsPartial = bool(v != 0) + case 19: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field FromNamespace", wireType) + } + m.FromNamespace = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.FromNamespace |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 20: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsNamespaceAwareRestore", 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.IsNamespaceAwareRestore = bool(v != 0) default: iNdEx = preIndex skippy, err := skipPb(dAtA[iNdEx:]) diff --git a/systest/integration2/incremental_restore_test.go b/systest/integration2/incremental_restore_test.go index 9f457f3aeac..55844ea9604 100644 --- a/systest/integration2/incremental_restore_test.go +++ b/systest/integration2/incremental_restore_test.go @@ -71,7 +71,7 @@ func TestIncrementalRestore(t *testing.T) { if i == 2 { incrFrom = 0 } - require.NoError(t, hc.Restore(c, dgraphtest.DefaultBackupDir, "", incrFrom, i, "")) + require.NoError(t, hc.Restore(c, dgraphtest.DefaultBackupDir, "", incrFrom, i)) require.NoError(t, dgraphtest.WaitForRestore(c)) for j := 1; j <= i; j++ { diff --git a/systest/online-restore/namespace-aware/restore_test.go b/systest/online-restore/namespace-aware/restore_test.go new file mode 100644 index 00000000000..18711c3376f --- /dev/null +++ b/systest/online-restore/namespace-aware/restore_test.go @@ -0,0 +1,219 @@ +//go:build integration2 + +/* + * Copyright 2023 Dgraph Labs, Inc. and Contributors * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package main + +import ( + "context" + "fmt" + "testing" + "time" + + "github.com/stretchr/testify/require" + + "github.com/dgraph-io/dgo/v230/protos/api" + "github.com/dgraph-io/dgraph/dgraphtest" + "github.com/dgraph-io/dgraph/x" +) + +func addData(gc *dgraphtest.GrpcClient, pred string, start, end int) error { + if err := gc.SetupSchema(fmt.Sprintf(`%v: string @index(exact) .`, pred)); err != nil { + return err + } + + rdf := "" + for i := start; i <= end; i++ { + rdf = rdf + fmt.Sprintf("_:a%v <%v> \"%v%v\" . \n", i, pred, pred, i) + } + _, err := gc.Mutate(&api.Mutation{SetNquads: []byte(rdf), CommitNow: true}) + return err +} + +func commonTest(t *testing.T, existingCluster, freshCluster *dgraphtest.LocalCluster) { + hc, err := existingCluster.HTTPClient() + require.NoError(t, err) + require.NoError(t, hc.LoginIntoNamespace(dgraphtest.DefaultUser, dgraphtest.DefaultPassword, x.GalaxyNamespace)) + + gc, cleanup, err := existingCluster.Client() + defer cleanup() + require.NoError(t, err) + require.NoError(t, gc.Login(context.Background(), dgraphtest.DefaultUser, dgraphtest.DefaultPassword)) + + namespaces := []uint64{0} + require.NoError(t, addData(gc, "pred", 1, 100)) + for i := 1; i <= 5; i++ { + ns, err := hc.AddNamespace() + require.NoError(t, err) + namespaces = append(namespaces, ns) + require.NoError(t, gc.LoginIntoNamespace(context.Background(), + dgraphtest.DefaultUser, dgraphtest.DefaultPassword, ns)) + require.NoError(t, addData(gc, "pred", 1, 100+int(ns))) + } + + require.NoError(t, hc.LoginIntoNamespace(dgraphtest.DefaultUser, dgraphtest.DefaultPassword, x.GalaxyNamespace)) + require.NoError(t, hc.Backup(existingCluster, false, dgraphtest.DefaultBackupDir)) + + restoreNamespaces := func(c *dgraphtest.LocalCluster) { + hc, err := c.HTTPClient() + require.NoError(t, err) + require.NoError(t, hc.LoginIntoNamespace(dgraphtest.DefaultUser, dgraphtest.DefaultPassword, x.GalaxyNamespace)) + + for _, ns := range namespaces { + require.NoError(t, hc.RestoreTenant(c, dgraphtest.DefaultBackupDir, "", 0, 0, ns)) + require.NoError(t, dgraphtest.WaitForRestore(c)) + + gc, cleanup, err = c.Client() + require.NoError(t, err) + defer cleanup() + + // Only the namespace '0' should have data + require.NoError(t, gc.LoginIntoNamespace(context.Background(), + dgraphtest.DefaultUser, dgraphtest.DefaultPassword, x.GalaxyNamespace)) + const query = `{ + all(func: has(pred)) { + count(uid) + } + }` + resp, err := gc.Query(query) + require.NoError(t, err) + require.NoError(t, dgraphtest.CompareJSON(fmt.Sprintf(`{"all":[{"count":%v}]}`, 100+ns), string(resp.Json))) + + // other namespaces should have no data + for _, ns2 := range namespaces[1:] { + require.Error(t, gc.LoginIntoNamespace(context.Background(), + dgraphtest.DefaultUser, dgraphtest.DefaultPassword, ns2)) + } + } + } + + t.Log("restoring on existing cluster") + restoreNamespaces(existingCluster) + + t.Log("restoring on fresh cluster") + restoreNamespaces(freshCluster) +} + +func commonIncRestoreTest(t *testing.T, existingCluster, freshCluster *dgraphtest.LocalCluster) { + hc, err := existingCluster.HTTPClient() + require.NoError(t, err) + require.NoError(t, hc.LoginIntoNamespace(dgraphtest.DefaultUser, dgraphtest.DefaultPassword, x.GalaxyNamespace)) + + gc, cleanup, err := existingCluster.Client() + defer cleanup() + require.NoError(t, err) + require.NoError(t, gc.Login(context.Background(), dgraphtest.DefaultUser, dgraphtest.DefaultPassword)) + + require.NoError(t, gc.DropAll()) + require.NoError(t, addData(gc, "pred", 1, 100)) + + namespaces := []uint64{} + for i := 1; i <= 5; i++ { + ns, err := hc.AddNamespace() + require.NoError(t, err) + namespaces = append(namespaces, ns) + } + + for j := 0; j < 5; j++ { + for i, ns := range namespaces { + require.NoError(t, gc.LoginIntoNamespace(context.Background(), + dgraphtest.DefaultUser, dgraphtest.DefaultPassword, ns)) + start := i*20 + 1 + end := (i + 1) * 20 + require.NoError(t, addData(gc, "pred", start, end)) + } + + require.NoError(t, hc.LoginIntoNamespace(dgraphtest.DefaultUser, dgraphtest.DefaultPassword, x.GalaxyNamespace)) + require.NoError(t, hc.Backup(existingCluster, j == 0, dgraphtest.DefaultBackupDir)) + } + + restoreNamespaces := func(c *dgraphtest.LocalCluster) { + hc, err := c.HTTPClient() + require.NoError(t, err) + require.NoError(t, hc.LoginIntoNamespace(dgraphtest.DefaultUser, dgraphtest.DefaultPassword, x.GalaxyNamespace)) + for _, ns := range namespaces { + for j := 0; j < 5; j++ { + incrFrom := j + 1 + if incrFrom == 1 { + incrFrom = 0 + } + + require.NoError(t, hc.RestoreTenant(c, dgraphtest.DefaultBackupDir, "", incrFrom, j+1, ns)) + require.NoError(t, dgraphtest.WaitForRestore(c)) + + gc, cleanup, err = c.Client() + require.NoError(t, err) + defer cleanup() + + require.NoError(t, gc.Login(context.Background(), dgraphtest.DefaultUser, dgraphtest.DefaultPassword)) + const query = `{ + all(func: has(pred)) { + count(uid) + } + }` + resp, err := gc.Query(query) + require.NoError(t, err) + require.NoError(t, dgraphtest.CompareJSON(fmt.Sprintf(`{"all":[{"count":%v}]}`, 20*(j+1)), string(resp.Json))) + } + } + } + + t.Log("restoring on fresh cluster") + restoreNamespaces(existingCluster) + + t.Log("restoring on fresh cluster") + restoreNamespaces(freshCluster) +} + +func TestNameSpaceAwareRestoreOnSingleNode(t *testing.T) { + baseClusterConf := dgraphtest.NewClusterConfig().WithNumAlphas(3).WithNumZeros(3). + WithReplicas(3).WithACL(20 * time.Hour).WithEncryption().WithUidLease(1000) + baseCluster, err := dgraphtest.NewLocalCluster(baseClusterConf) + require.NoError(t, err) + defer func() { baseCluster.Cleanup(t.Failed()) }() + require.NoError(t, baseCluster.Start()) + + freshClusterConf := dgraphtest.NewClusterConfig().WithNumAlphas(3).WithNumZeros(3). + WithReplicas(3).WithACL(20*time.Hour).WithEncryption().WithUidLease(1000). + WithAlphaVolume(baseClusterConf.GetClusterVolume(dgraphtest.DefaultBackupDir), dgraphtest.DefaultBackupDir) + freshCluster, err := dgraphtest.NewLocalCluster(freshClusterConf) + require.NoError(t, err) + defer func() { freshCluster.Cleanup(t.Failed()) }() + require.NoError(t, freshCluster.Start()) + + commonTest(t, baseCluster, freshCluster) + commonIncRestoreTest(t, baseCluster, freshCluster) +} + +func TestNamespaceAwareRestoreOnMultipleGroups(t *testing.T) { + baseClusterConf := dgraphtest.NewClusterConfig().WithNumAlphas(9).WithNumZeros(3). + WithReplicas(3).WithACL(20 * time.Hour).WithEncryption().WithUidLease(10000) + baseCluster, err := dgraphtest.NewLocalCluster(baseClusterConf) + require.NoError(t, err) + defer func() { baseCluster.Cleanup(t.Failed()) }() + require.NoError(t, baseCluster.Start()) + + freshClusterConf := dgraphtest.NewClusterConfig().WithNumAlphas(9).WithNumZeros(3). + WithReplicas(3).WithACL(20*time.Hour).WithEncryption().WithUidLease(10000). + WithAlphaVolume(baseClusterConf.GetClusterVolume(dgraphtest.DefaultBackupDir), dgraphtest.DefaultBackupDir) + freshCluster, err := dgraphtest.NewLocalCluster(freshClusterConf) + require.NoError(t, err) + defer func() { freshCluster.Cleanup(t.Failed()) }() + require.NoError(t, freshCluster.Start()) + + commonTest(t, baseCluster, freshCluster) + commonIncRestoreTest(t, baseCluster, freshCluster) +} diff --git a/worker/online_restore.go b/worker/online_restore.go index 5672513313b..f10e9a47a47 100644 --- a/worker/online_restore.go +++ b/worker/online_restore.go @@ -309,6 +309,39 @@ func handleRestoreProposal(ctx context.Context, req *pb.RestoreRequest, pidx uin return errors.Errorf("backup manifest does not contain information for group ID %d", req.GroupId) } + // When we change predicate names from {fromNamespace}-predicate to 0-predicate, + // this is not straight forward. This is because, Zero has a knowledge of what + // predicate belongs to what group. We need to ensure that while transforming predicate names, + // we let the Zero know. The algorithm that we follow here is that, + // the group that had the data at the time of backup, has the data after restore. + // For example, if we restore namespace 1 and 1-email belongs to group 1, after restore, + // 0-email would belong to group 1 as well. + + // There are two types of predicates in a namespace: + + // 1.reserved predicates are always in group 0, we don't need to worry about those. + // 2.let's understand user predicates with an example below. + // Before + // 0-email => group 1 + // 1-email => group 2 + + // While trying to restoreTenant (fromNamespace = 1) + // Need to transform 1-email => 0-email + + // Hence, need to move 0-email to group 2 from group 1 because the backup data of 1-email + // predicate is in group 2 (because it belonged to group 2 before at the time of backup). + // Only the Alphas that belong to group 2 has access to the backup data of 1-email. + // The 1-emaill would become 0-email after restoreTenant and still has to belong to same alphas. + // Hence, we need to move 0-email in the new cluster to group 2. + + // Alphas in Group 1 + // We remove 0-email from the processing here because only namespace 1 needs to be restored. + + // Alphas in Group 2 + // We transform 1-email to 0-email and add it in the list of predicates that needs to be restored. + if req.IsNamespaceAwareRestore { + restorePreds = buildPredsForDefaultNamespace(restorePreds, req.FromNamespace) + } for _, pred := range restorePreds { // Force the tablet to be moved to this group, even // if it's currently being served by another group. @@ -594,3 +627,16 @@ func RunOfflineRestore(dir, location, backupId, keyFile string, key x.Sensitive, // TODO: Fix this return value. return LoadResult{Version: manifest.ValidReadTs()} } + +func buildPredsForDefaultNamespace(restorePreds []string, fromNamespace uint64) []string { + filtered := restorePreds[:0] + for _, pred := range restorePreds { + ns, attr := x.ParseNamespaceAttr(pred) + if fromNamespace == ns { + // update namespace value to 0 + pred = x.NamespaceAttr(0, attr) + filtered = append(filtered, pred) + } + } + return filtered +} diff --git a/worker/restore_map.go b/worker/restore_map.go index 99c32e52739..4a962f18fac 100644 --- a/worker/restore_map.go +++ b/worker/restore_map.go @@ -113,6 +113,9 @@ type loadBackupInput struct { version int keepSchema bool compression string + + fromNamespace uint64 + isNamespaceAwareRestore bool } type listReq struct { @@ -323,6 +326,12 @@ func (m *mapper) processReqCh(ctx context.Context) error { return errors.Wrap(err, "fromBackupKey") } + // we will not process further if restore is namespace aware restore and namespace + // of current key is other than fromNamespace. + if in.isNamespaceAwareRestore && ns != in.fromNamespace { + return nil + } + // Filter keys using the preds set. Do not do this filtering for type keys // as they are meant to be in every group and their Attr value does not // match a predicate name. @@ -333,7 +342,11 @@ func (m *mapper) processReqCh(ctx context.Context) error { // Update the local max uid and max namespace values. maxUid = x.Max(maxUid, parsedKey.Uid) - maxNs = x.Max(maxNs, ns) + if in.isNamespaceAwareRestore { + maxNs = x.Max(maxNs, 0) + } else { + maxNs = x.Max(maxNs, ns) + } if !in.keepSchema && (parsedKey.IsSchema() || parsedKey.IsType()) { return nil @@ -342,11 +355,25 @@ func (m *mapper) processReqCh(ctx context.Context) error { return nil } + if in.isNamespaceAwareRestore { + // update a key to default namespace if user has requested namespace aware restore + // i.e 1-key => 0-key + _, attr := x.ParseNamespaceAttr(parsedKey.Attr) + parsedKey.Attr = x.NamespaceAttr(0, attr) + l := parsedKey.ToBackupKey() + restoreKey = x.FromBackupKey(l) + } + switch kv.GetUserMeta()[0] { case posting.BitEmptyPosting, posting.BitCompletePosting, posting.BitDeltaPosting: - if _, ok := in.dropNs[ns]; ok { + if in.isNamespaceAwareRestore { + if _, ok := in.dropNs[0]; ok { + return nil + } + } else if _, ok := in.dropNs[ns]; ok { return nil } + backupPl := &pb.BackupPostingList{} if err := backupPl.Unmarshal(kv.Value); err != nil { return errors.Wrapf(err, "while reading backup posting list") @@ -468,6 +495,49 @@ func (m *mapper) processReqCh(ctx context.Context) error { version := kv.Version kv.Version = m.restoreTs kv.Key = restoreKey + + transformNamespaceToZero := func(parsedKey x.ParsedKey) error { + if parsedKey.IsSchema() { + var update pb.SchemaUpdate + if err := update.Unmarshal(kv.Value); err != nil { + return err + } + _, attr := x.ParseNamespaceAttr(update.Predicate) + update.Predicate = x.NamespaceAttr(0, attr) + kv.Value, err = update.Marshal() + if err != nil { + return err + } + } + if parsedKey.IsType() { + var update pb.TypeUpdate + if err := update.Unmarshal(kv.Value); err != nil { + return err + } + _, attr := x.ParseNamespaceAttr(update.TypeName) + update.TypeName = x.NamespaceAttr(0, attr) + for _, sch := range update.Fields { + _, attr := x.ParseNamespaceAttr(sch.Predicate) + sch.Predicate = x.NamespaceAttr(0, attr) + } + + kv.Value, err = update.Marshal() + if err != nil { + return err + } + } + return nil + } + + if in.isNamespaceAwareRestore { + // If the user has requested a namespace-aware restore, + // then update all values to the zeroth(default) namespace. + // i.e 2-email => 0-email + if err := transformNamespaceToZero(parsedKey); err != nil { + return err + } + } + if err := toBuffer(kv, version); err != nil { return err } @@ -754,8 +824,10 @@ func RunMapper(req *pb.RestoreRequest, mapDir string) (*mapResult, error) { version: manifest.Version, restoreTs: req.RestoreTs, // Only map the schema keys corresponding to the latest backup. - keepSchema: i == 0, - compression: manifest.Compression, + keepSchema: i == 0, + compression: manifest.Compression, + fromNamespace: req.FromNamespace, + isNamespaceAwareRestore: req.IsNamespaceAwareRestore, } // This would stream the backups from the source, and map them in