From c63c2bc1838bc6069703c3cd31873b51329ce15d Mon Sep 17 00:00:00 2001 From: Garett MacGowan Date: Wed, 3 Jan 2024 14:52:00 -0500 Subject: [PATCH] fix: fix missing artifacts for stopped workflows. Fixes #12401 (#12402) Signed-off-by: Garett MacGowan --- api/jsonschema/schema.json | 4 +- api/openapi-spec/swagger.json | 4 +- cmd/argoexec/commands/wait.go | 3 + docs/fields.md | 2 +- .../base/crds/full/argoproj.io_workflows.yaml | 2 +- pkg/apis/workflow/v1alpha1/generated.pb.go | 1416 ++++++++--------- pkg/apis/workflow/v1alpha1/generated.proto | 4 +- .../workflow/v1alpha1/openapi_generated.go | 4 +- pkg/apis/workflow/v1alpha1/workflow_types.go | 36 +- .../v1alpha1/zz_generated.deepcopy.go | 4 +- ...oArgoprojWorkflowV1alpha1WorkflowStatus.md | 2 +- ...oproj_workflow_v1alpha1_workflow_status.py | 8 +- ...oArgoprojWorkflowV1alpha1WorkflowStatus.md | 2 +- sdks/python/client/docs/WorkflowServiceApi.md | 4 +- test/e2e/argo_server_test.go | 23 + test/e2e/daemon_pod_test.go | 2 +- test/e2e/functional_test.go | 2 +- .../testdata/artifact-workflow-stopped.yaml | 99 ++ workflow/controller/operator.go | 29 +- workflow/controller/taskresult.go | 10 +- workflow/executor/executor.go | 21 + 21 files changed, 910 insertions(+), 771 deletions(-) create mode 100644 test/e2e/testdata/artifact-workflow-stopped.yaml diff --git a/api/jsonschema/schema.json b/api/jsonschema/schema.json index 935355c1cdfc..17dee0928faf 100644 --- a/api/jsonschema/schema.json +++ b/api/jsonschema/schema.json @@ -7612,11 +7612,11 @@ "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.SynchronizationStatus", "description": "Synchronization stores the status of synchronization locks" }, - "taskResultsCompleted": { + "taskResultsCompletionStatus": { "additionalProperties": { "type": "boolean" }, - "description": "Have task results been completed? (mapped by Pod name) used to prevent premature garbage collection of artifacts.", + "description": "TaskResultsCompletionStatus tracks task result completion status (mapped by pod name). Used to prevent premature archiving and garbage collection.", "type": "object" } }, diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 193a102766e5..6c45f522eb2c 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -11535,8 +11535,8 @@ "description": "Synchronization stores the status of synchronization locks", "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.SynchronizationStatus" }, - "taskResultsCompleted": { - "description": "Have task results been completed? (mapped by Pod name) used to prevent premature garbage collection of artifacts.", + "taskResultsCompletionStatus": { + "description": "TaskResultsCompletionStatus tracks task result completion status (mapped by pod name). Used to prevent premature archiving and garbage collection.", "type": "object", "additionalProperties": { "type": "boolean" diff --git a/cmd/argoexec/commands/wait.go b/cmd/argoexec/commands/wait.go index d13d7086d652..193b0ff6440b 100644 --- a/cmd/argoexec/commands/wait.go +++ b/cmd/argoexec/commands/wait.go @@ -35,6 +35,9 @@ func waitContainer(ctx context.Context) error { defer stats.LogStats() stats.StartStatsTicker(5 * time.Minute) + // Create a new empty (placeholder) task result with LabelKeyReportOutputsCompleted set to false. + wfExecutor.InitializeOutput(bgCtx) + // Wait for main container to complete err := wfExecutor.Wait(ctx) if err != nil { diff --git a/docs/fields.md b/docs/fields.md index 182a43f1cfc4..93e9f7d745ed 100644 --- a/docs/fields.md +++ b/docs/fields.md @@ -861,7 +861,7 @@ WorkflowStatus contains overall status information about a workflow |`storedTemplates`|[`Template`](#template)|StoredTemplates is a mapping between a template ref and the node's status.| |`storedWorkflowTemplateSpec`|[`WorkflowSpec`](#workflowspec)|StoredWorkflowSpec stores the WorkflowTemplate spec for future execution.| |`synchronization`|[`SynchronizationStatus`](#synchronizationstatus)|Synchronization stores the status of synchronization locks| -|`taskResultsCompleted`|`Map< boolean , string >`|Have task results been completed? (mapped by Pod name) used to prevent premature garbage collection of artifacts.| +|`taskResultsCompletionStatus`|`Map< boolean , string >`|TaskResultsCompletionStatus tracks task result completion status (mapped by pod name). Used to prevent premature archiving and garbage collection.| ## CronWorkflowSpec diff --git a/manifests/base/crds/full/argoproj.io_workflows.yaml b/manifests/base/crds/full/argoproj.io_workflows.yaml index 403d156f3c4e..8e4edfa1e749 100644 --- a/manifests/base/crds/full/argoproj.io_workflows.yaml +++ b/manifests/base/crds/full/argoproj.io_workflows.yaml @@ -49284,7 +49284,7 @@ spec: type: array type: object type: object - taskResultsCompleted: + taskResultsCompletionStatus: additionalProperties: type: boolean type: object diff --git a/pkg/apis/workflow/v1alpha1/generated.pb.go b/pkg/apis/workflow/v1alpha1/generated.pb.go index 8486cc171be7..8e251852fd3b 100644 --- a/pkg/apis/workflow/v1alpha1/generated.pb.go +++ b/pkg/apis/workflow/v1alpha1/generated.pb.go @@ -4397,7 +4397,7 @@ func init() { proto.RegisterMapType((Nodes)(nil), "github.com.argoproj.argo_workflows.v3.pkg.apis.workflow.v1alpha1.WorkflowStatus.NodesEntry") proto.RegisterMapType((ResourcesDuration)(nil), "github.com.argoproj.argo_workflows.v3.pkg.apis.workflow.v1alpha1.WorkflowStatus.ResourcesDurationEntry") proto.RegisterMapType((map[string]Template)(nil), "github.com.argoproj.argo_workflows.v3.pkg.apis.workflow.v1alpha1.WorkflowStatus.StoredTemplatesEntry") - proto.RegisterMapType((map[string]bool)(nil), "github.com.argoproj.argo_workflows.v3.pkg.apis.workflow.v1alpha1.WorkflowStatus.TaskResultsCompletedEntry") + proto.RegisterMapType((map[string]bool)(nil), "github.com.argoproj.argo_workflows.v3.pkg.apis.workflow.v1alpha1.WorkflowStatus.TaskResultsCompletionStatusEntry") proto.RegisterType((*WorkflowStep)(nil), "github.com.argoproj.argo_workflows.v3.pkg.apis.workflow.v1alpha1.WorkflowStep") proto.RegisterMapType((LifecycleHooks)(nil), "github.com.argoproj.argo_workflows.v3.pkg.apis.workflow.v1alpha1.WorkflowStep.HooksEntry") proto.RegisterType((*WorkflowTaskResult)(nil), "github.com.argoproj.argo_workflows.v3.pkg.apis.workflow.v1alpha1.WorkflowTaskResult") @@ -4420,688 +4420,688 @@ func init() { var fileDescriptor_724696e352c3df5f = []byte{ // 10913 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0xbd, 0x6b, 0x70, 0x64, 0xc7, - 0x75, 0x18, 0xcc, 0x3b, 0xc0, 0xe0, 0x71, 0xf0, 0x58, 0x6c, 0xef, 0x6b, 0x08, 0x92, 0x0b, 0xfa, - 0x52, 0xe4, 0x47, 0xda, 0x14, 0xd6, 0x5c, 0x4a, 0x5f, 0x18, 0x29, 0x91, 0x84, 0xc7, 0x02, 0xbb, - 0x04, 0xb0, 0x00, 0x7b, 0xb0, 0x5c, 0x93, 0xa2, 0x25, 0x5d, 0xcc, 0x34, 0x66, 0x2e, 0x31, 0x73, - 0xef, 0xe8, 0xde, 0x3b, 0xc0, 0x82, 0x0f, 0x49, 0xa1, 0xf5, 0x8c, 0x65, 0x2b, 0x91, 0x25, 0x59, - 0x52, 0x92, 0x2a, 0x45, 0x91, 0x12, 0x96, 0xec, 0x8a, 0xcb, 0xfe, 0x95, 0xb2, 0xf3, 0x2b, 0x95, - 0x72, 0x29, 0xe5, 0x54, 0x45, 0x2e, 0x2b, 0x25, 0xfd, 0xb0, 0xc1, 0x08, 0x49, 0xf4, 0x23, 0x89, - 0xaa, 0x62, 0x55, 0xec, 0xd8, 0x9b, 0x47, 0xa5, 0xfa, 0x79, 0xbb, 0xef, 0xdc, 0xc1, 0x0e, 0xb0, - 0x0d, 0x2c, 0xcb, 0xfe, 0x05, 0xcc, 0xe9, 0xd3, 0xe7, 0x74, 0xf7, 0xed, 0x3e, 0x7d, 0xfa, 0x9c, - 0xd3, 0xa7, 0x61, 0xad, 0xe6, 0x27, 0xf5, 0xf6, 0xc6, 0x74, 0x25, 0x6c, 0x5e, 0xf2, 0xa2, 0x5a, - 0xd8, 0x8a, 0xc2, 0x97, 0xd9, 0x3f, 0xef, 0xdc, 0x09, 0xa3, 0xad, 0xcd, 0x46, 0xb8, 0x13, 0x5f, - 0xda, 0x7e, 0xfa, 0x52, 0x6b, 0xab, 0x76, 0xc9, 0x6b, 0xf9, 0xf1, 0x25, 0x09, 0xbd, 0xb4, 0xfd, - 0x94, 0xd7, 0x68, 0xd5, 0xbd, 0xa7, 0x2e, 0xd5, 0x48, 0x40, 0x22, 0x2f, 0x21, 0xd5, 0xe9, 0x56, - 0x14, 0x26, 0x21, 0xfa, 0x40, 0x4a, 0x71, 0x5a, 0x52, 0x64, 0xff, 0x7c, 0x58, 0x51, 0x9c, 0xde, - 0x7e, 0x7a, 0xba, 0xb5, 0x55, 0x9b, 0xa6, 0x14, 0xa7, 0x25, 0x74, 0x5a, 0x52, 0x9c, 0x7c, 0xa7, - 0xd6, 0xa6, 0x5a, 0x58, 0x0b, 0x2f, 0x31, 0xc2, 0x1b, 0xed, 0x4d, 0xf6, 0x8b, 0xfd, 0x60, 0xff, - 0x71, 0x86, 0x93, 0xee, 0xd6, 0x33, 0xf1, 0xb4, 0x1f, 0xd2, 0xf6, 0x5d, 0xaa, 0x84, 0x11, 0xb9, - 0xb4, 0xdd, 0xd1, 0xa8, 0xc9, 0x77, 0x68, 0x38, 0xad, 0xb0, 0xe1, 0x57, 0x76, 0xf3, 0xb0, 0xde, - 0x95, 0x62, 0x35, 0xbd, 0x4a, 0xdd, 0x0f, 0x48, 0xb4, 0x9b, 0x76, 0xbd, 0x49, 0x12, 0x2f, 0xaf, - 0xd6, 0xa5, 0x6e, 0xb5, 0xa2, 0x76, 0x90, 0xf8, 0x4d, 0xd2, 0x51, 0xe1, 0xff, 0xbf, 0x53, 0x85, - 0xb8, 0x52, 0x27, 0x4d, 0xaf, 0xa3, 0xde, 0xd3, 0xdd, 0xea, 0xb5, 0x13, 0xbf, 0x71, 0xc9, 0x0f, - 0x92, 0x38, 0x89, 0xb2, 0x95, 0xdc, 0x2b, 0x30, 0x30, 0xd3, 0x0c, 0xdb, 0x41, 0x82, 0xde, 0x0b, - 0xc5, 0x6d, 0xaf, 0xd1, 0x26, 0x25, 0xe7, 0x61, 0xe7, 0xf1, 0xe1, 0xd9, 0x47, 0xbf, 0xbb, 0x37, - 0x75, 0xdf, 0xfe, 0xde, 0x54, 0xf1, 0x79, 0x0a, 0xbc, 0xbd, 0x37, 0x75, 0x96, 0x04, 0x95, 0xb0, - 0xea, 0x07, 0xb5, 0x4b, 0x2f, 0xc7, 0x61, 0x30, 0x7d, 0xbd, 0xdd, 0xdc, 0x20, 0x11, 0xe6, 0x75, - 0xdc, 0x3f, 0x2a, 0xc0, 0xa9, 0x99, 0xa8, 0x52, 0xf7, 0xb7, 0x49, 0x39, 0xa1, 0xf4, 0x6b, 0xbb, - 0xa8, 0x0e, 0x7d, 0x89, 0x17, 0x31, 0x72, 0x23, 0x97, 0x57, 0xa6, 0xef, 0xf6, 0xbb, 0x4f, 0xaf, - 0x7b, 0x91, 0xa4, 0x3d, 0x3b, 0xb8, 0xbf, 0x37, 0xd5, 0xb7, 0xee, 0x45, 0x98, 0xb2, 0x40, 0x0d, - 0xe8, 0x0f, 0xc2, 0x80, 0x94, 0x0a, 0x8c, 0xd5, 0xf5, 0xbb, 0x67, 0x75, 0x3d, 0x0c, 0x54, 0x3f, - 0x66, 0x87, 0xf6, 0xf7, 0xa6, 0xfa, 0x29, 0x04, 0x33, 0x2e, 0xb4, 0x5f, 0xaf, 0xf8, 0xad, 0x52, - 0x9f, 0xad, 0x7e, 0xbd, 0xe8, 0xb7, 0xcc, 0x7e, 0xbd, 0xe8, 0xb7, 0x30, 0x65, 0xe1, 0x7e, 0xae, - 0x00, 0xc3, 0x33, 0x51, 0xad, 0xdd, 0x24, 0x41, 0x12, 0xa3, 0x8f, 0x03, 0xb4, 0xbc, 0xc8, 0x6b, - 0x92, 0x84, 0x44, 0x71, 0xc9, 0x79, 0xb8, 0xef, 0xf1, 0x91, 0xcb, 0x4b, 0x77, 0xcf, 0x7e, 0x4d, - 0xd2, 0x9c, 0x45, 0xe2, 0x93, 0x83, 0x02, 0xc5, 0x58, 0x63, 0x89, 0x5e, 0x85, 0x61, 0x2f, 0x4a, - 0xfc, 0x4d, 0xaf, 0x92, 0xc4, 0xa5, 0x02, 0xe3, 0xff, 0xec, 0xdd, 0xf3, 0x9f, 0x11, 0x24, 0x67, - 0x4f, 0x0b, 0xf6, 0xc3, 0x12, 0x12, 0xe3, 0x94, 0x9f, 0xfb, 0xbb, 0xfd, 0x30, 0x32, 0x13, 0x25, - 0x8b, 0x73, 0xe5, 0xc4, 0x4b, 0xda, 0x31, 0xfa, 0x03, 0x07, 0xce, 0xc4, 0x7c, 0xd8, 0x7c, 0x12, - 0xaf, 0x45, 0x61, 0x85, 0xc4, 0x31, 0xa9, 0x8a, 0x71, 0xd9, 0xb4, 0xd2, 0x2e, 0xc9, 0x6c, 0xba, - 0xdc, 0xc9, 0xe8, 0x4a, 0x90, 0x44, 0xbb, 0xb3, 0x4f, 0x89, 0x36, 0x9f, 0xc9, 0xc1, 0x78, 0xe3, - 0xad, 0x29, 0x24, 0xbb, 0x42, 0x29, 0xf1, 0x4f, 0x8c, 0xf3, 0x5a, 0x8d, 0xbe, 0xe6, 0xc0, 0x68, - 0x2b, 0xac, 0xc6, 0x98, 0x54, 0xc2, 0x76, 0x8b, 0x54, 0xc5, 0xf0, 0x7e, 0xd8, 0x6e, 0x37, 0xd6, - 0x34, 0x0e, 0xbc, 0xfd, 0x67, 0x45, 0xfb, 0x47, 0xf5, 0x22, 0x6c, 0x34, 0x05, 0x3d, 0x03, 0xa3, - 0x41, 0x98, 0x94, 0x5b, 0xa4, 0xe2, 0x6f, 0xfa, 0xa4, 0xca, 0x26, 0xfe, 0x50, 0x5a, 0xf3, 0xba, - 0x56, 0x86, 0x0d, 0xcc, 0xc9, 0x05, 0x28, 0x75, 0x1b, 0x39, 0x34, 0x01, 0x7d, 0x5b, 0x64, 0x97, - 0x0b, 0x1b, 0x4c, 0xff, 0x45, 0x67, 0xa5, 0x00, 0xa2, 0xcb, 0x78, 0x48, 0x48, 0x96, 0xf7, 0x14, - 0x9e, 0x71, 0x26, 0xdf, 0x0f, 0xa7, 0x3b, 0x9a, 0x7e, 0x18, 0x02, 0xee, 0xf7, 0x06, 0x60, 0x48, - 0x7e, 0x0a, 0xf4, 0x30, 0xf4, 0x07, 0x5e, 0x53, 0xca, 0xb9, 0x51, 0xd1, 0x8f, 0xfe, 0xeb, 0x5e, - 0x93, 0xae, 0x70, 0xaf, 0x49, 0x28, 0x46, 0xcb, 0x4b, 0xea, 0x8c, 0x8e, 0x86, 0xb1, 0xe6, 0x25, - 0x75, 0xcc, 0x4a, 0xd0, 0x83, 0xd0, 0xdf, 0x0c, 0xab, 0x84, 0x8d, 0x45, 0x91, 0x4b, 0x88, 0x95, - 0xb0, 0x4a, 0x30, 0x83, 0xd2, 0xfa, 0x9b, 0x51, 0xd8, 0x2c, 0xf5, 0x9b, 0xf5, 0x17, 0xa2, 0xb0, - 0x89, 0x59, 0x09, 0xfa, 0xaa, 0x03, 0x13, 0x72, 0x6e, 0x2f, 0x87, 0x15, 0x2f, 0xf1, 0xc3, 0xa0, - 0x54, 0x64, 0x12, 0x05, 0xdb, 0x5b, 0x52, 0x92, 0xf2, 0x6c, 0x49, 0x34, 0x61, 0x22, 0x5b, 0x82, - 0x3b, 0x5a, 0x81, 0x2e, 0x03, 0xd4, 0x1a, 0xe1, 0x86, 0xd7, 0xa0, 0x03, 0x52, 0x1a, 0x60, 0x5d, - 0x50, 0x92, 0x61, 0x51, 0x95, 0x60, 0x0d, 0x0b, 0xdd, 0x82, 0x41, 0x8f, 0x4b, 0xff, 0xd2, 0x20, - 0xeb, 0xc4, 0x73, 0x36, 0x3a, 0x61, 0x6c, 0x27, 0xb3, 0x23, 0xfb, 0x7b, 0x53, 0x83, 0x02, 0x88, - 0x25, 0x3b, 0xf4, 0x24, 0x0c, 0x85, 0x2d, 0xda, 0x6e, 0xaf, 0x51, 0x1a, 0x62, 0x13, 0x73, 0x42, - 0xb4, 0x75, 0x68, 0x55, 0xc0, 0xb1, 0xc2, 0x40, 0x4f, 0xc0, 0x60, 0xdc, 0xde, 0xa0, 0xdf, 0xb1, - 0x34, 0xcc, 0x3a, 0x76, 0x4a, 0x20, 0x0f, 0x96, 0x39, 0x18, 0xcb, 0x72, 0xf4, 0x6e, 0x18, 0x89, - 0x48, 0xa5, 0x1d, 0xc5, 0x84, 0x7e, 0xd8, 0x12, 0x30, 0xda, 0x67, 0x04, 0xfa, 0x08, 0x4e, 0x8b, - 0xb0, 0x8e, 0x87, 0xde, 0x07, 0xe3, 0xf4, 0x03, 0x5f, 0xb9, 0xd5, 0x8a, 0x48, 0x1c, 0xd3, 0xaf, - 0x3a, 0xc2, 0x18, 0x9d, 0x17, 0x35, 0xc7, 0x17, 0x8c, 0x52, 0x9c, 0xc1, 0x46, 0xaf, 0x01, 0x78, - 0x4a, 0x66, 0x94, 0x46, 0xd9, 0x60, 0x2e, 0xdb, 0x9b, 0x11, 0x8b, 0x73, 0xb3, 0xe3, 0xf4, 0x3b, - 0xa6, 0xbf, 0xb1, 0xc6, 0x8f, 0x8e, 0x4f, 0x95, 0x34, 0x48, 0x42, 0xaa, 0xa5, 0x31, 0xd6, 0x61, - 0x35, 0x3e, 0xf3, 0x1c, 0x8c, 0x65, 0xb9, 0xfb, 0x0f, 0x0a, 0xa0, 0x51, 0x41, 0xb3, 0x30, 0x24, - 0xe4, 0x9a, 0x58, 0x92, 0xb3, 0x8f, 0xc9, 0xef, 0x20, 0xbf, 0xe0, 0xed, 0xbd, 0x5c, 0x79, 0xa8, - 0xea, 0xa1, 0xd7, 0x61, 0xa4, 0x15, 0x56, 0x57, 0x48, 0xe2, 0x55, 0xbd, 0xc4, 0x13, 0xbb, 0xb9, - 0x85, 0x1d, 0x46, 0x52, 0x9c, 0x3d, 0x45, 0x3f, 0xdd, 0x5a, 0xca, 0x02, 0xeb, 0xfc, 0xd0, 0xb3, - 0x80, 0x62, 0x12, 0x6d, 0xfb, 0x15, 0x32, 0x53, 0xa9, 0x50, 0x95, 0x88, 0x2d, 0x80, 0x3e, 0xd6, - 0x99, 0x49, 0xd1, 0x19, 0x54, 0xee, 0xc0, 0xc0, 0x39, 0xb5, 0xdc, 0xef, 0x17, 0x60, 0x5c, 0xeb, - 0x6b, 0x8b, 0x54, 0xd0, 0x9b, 0x0e, 0x9c, 0x52, 0xdb, 0xd9, 0xec, 0xee, 0x75, 0x3a, 0xab, 0xf8, - 0x66, 0x45, 0x6c, 0x7e, 0x5f, 0xca, 0x4b, 0xfd, 0x14, 0x7c, 0xb8, 0xac, 0xbf, 0x20, 0xfa, 0x70, - 0x2a, 0x53, 0x8a, 0xb3, 0xcd, 0x9a, 0xfc, 0x8a, 0x03, 0x67, 0xf3, 0x48, 0xe4, 0xc8, 0xdc, 0xba, - 0x2e, 0x73, 0xad, 0x0a, 0x2f, 0xca, 0x95, 0x76, 0x46, 0x97, 0xe3, 0xff, 0xb7, 0x00, 0x13, 0xfa, - 0x14, 0x62, 0x9a, 0xc0, 0xbf, 0x72, 0xe0, 0x9c, 0xec, 0x01, 0x26, 0x71, 0xbb, 0x91, 0x19, 0xde, - 0xa6, 0xd5, 0xe1, 0xe5, 0x3b, 0xe9, 0x4c, 0x1e, 0x3f, 0x3e, 0xcc, 0x0f, 0x89, 0x61, 0x3e, 0x97, - 0x8b, 0x83, 0xf3, 0x9b, 0x3a, 0xf9, 0x2d, 0x07, 0x26, 0xbb, 0x13, 0xcd, 0x19, 0xf8, 0x96, 0x39, - 0xf0, 0x2f, 0xda, 0xeb, 0x24, 0x67, 0xcf, 0x86, 0x9f, 0x75, 0x56, 0xff, 0x00, 0xbf, 0x39, 0x04, - 0x1d, 0x7b, 0x08, 0x7a, 0x0a, 0x46, 0x84, 0x38, 0x5e, 0x0e, 0x6b, 0x31, 0x6b, 0xe4, 0x10, 0x5f, - 0x6b, 0x33, 0x29, 0x18, 0xeb, 0x38, 0xa8, 0x0a, 0x85, 0xf8, 0x69, 0xd1, 0x74, 0x0b, 0xe2, 0xad, - 0xfc, 0xb4, 0xd2, 0x22, 0x07, 0xf6, 0xf7, 0xa6, 0x0a, 0xe5, 0xa7, 0x71, 0x21, 0x7e, 0x9a, 0x6a, - 0xea, 0x35, 0x3f, 0xb1, 0xa7, 0xa9, 0x2f, 0xfa, 0x89, 0xe2, 0xc3, 0x34, 0xf5, 0x45, 0x3f, 0xc1, - 0x94, 0x05, 0x3d, 0x81, 0xd4, 0x93, 0xa4, 0xc5, 0x76, 0x7c, 0x2b, 0x27, 0x90, 0xab, 0xeb, 0xeb, - 0x6b, 0x8a, 0x17, 0xd3, 0x2f, 0x28, 0x04, 0x33, 0x2e, 0xe8, 0xb3, 0x0e, 0x1d, 0x71, 0x5e, 0x18, - 0x46, 0xbb, 0x42, 0x71, 0xb8, 0x61, 0x6f, 0x0a, 0x84, 0xd1, 0xae, 0x62, 0x2e, 0x3e, 0xa4, 0x2a, - 0xc0, 0x3a, 0x6b, 0xd6, 0xf1, 0xea, 0x66, 0xcc, 0xf4, 0x04, 0x3b, 0x1d, 0x9f, 0x5f, 0x28, 0x67, - 0x3a, 0x3e, 0xbf, 0x50, 0xc6, 0x8c, 0x0b, 0xfd, 0xa0, 0x91, 0xb7, 0x23, 0x74, 0x0c, 0x0b, 0x1f, - 0x14, 0x7b, 0x3b, 0xe6, 0x07, 0xc5, 0xde, 0x0e, 0xa6, 0x2c, 0x28, 0xa7, 0x30, 0x8e, 0x99, 0x4a, - 0x61, 0x85, 0xd3, 0x6a, 0xb9, 0x6c, 0x72, 0x5a, 0x2d, 0x97, 0x31, 0x65, 0xc1, 0x26, 0x69, 0x25, - 0x66, 0xfa, 0x88, 0x9d, 0x49, 0x3a, 0x97, 0xe1, 0xb4, 0x38, 0x57, 0xc6, 0x94, 0x05, 0x15, 0x19, - 0xde, 0x2b, 0xed, 0x88, 0x2b, 0x33, 0x23, 0x97, 0x57, 0x2d, 0xcc, 0x17, 0x4a, 0x4e, 0x71, 0x1b, - 0xde, 0xdf, 0x9b, 0x2a, 0x32, 0x10, 0xe6, 0x8c, 0xdc, 0xdf, 0xef, 0x4b, 0xc5, 0x85, 0x94, 0xe7, - 0xe8, 0xef, 0xb3, 0x8d, 0x50, 0xc8, 0x02, 0xa1, 0xfa, 0x3a, 0xc7, 0xa6, 0xfa, 0x9e, 0xe1, 0x3b, - 0x9e, 0xc1, 0x0e, 0x67, 0xf9, 0xa3, 0x2f, 0x3a, 0x9d, 0x67, 0x5b, 0xcf, 0xfe, 0x5e, 0x96, 0x6e, - 0xcc, 0x7c, 0xaf, 0x38, 0xf0, 0xc8, 0x3b, 0xf9, 0x59, 0x27, 0x55, 0x22, 0xe2, 0x6e, 0xfb, 0xc0, - 0x47, 0xcc, 0x7d, 0xc0, 0xe2, 0x81, 0x5c, 0x97, 0xfb, 0x9f, 0x73, 0x60, 0x4c, 0xc2, 0xa9, 0x7a, - 0x1c, 0xa3, 0x5b, 0x30, 0x24, 0x5b, 0x2a, 0xbe, 0x9e, 0x4d, 0x5b, 0x80, 0x52, 0xe2, 0x55, 0x63, - 0x14, 0x37, 0xf7, 0xcd, 0x01, 0x40, 0xe9, 0x5e, 0xd5, 0x0a, 0x63, 0x9f, 0x49, 0xa2, 0x23, 0xec, - 0x42, 0x81, 0xb6, 0x0b, 0x3d, 0x6f, 0x73, 0x17, 0x4a, 0x9b, 0x65, 0xec, 0x47, 0x5f, 0xcc, 0xc8, - 0x6d, 0xbe, 0x31, 0x7d, 0xf8, 0x58, 0xe4, 0xb6, 0xd6, 0x84, 0x83, 0x25, 0xf8, 0xb6, 0x90, 0xe0, - 0x7c, 0xeb, 0xfa, 0x05, 0xbb, 0x12, 0x5c, 0x6b, 0x45, 0x56, 0x96, 0x47, 0x5c, 0xc2, 0xf2, 0xbd, - 0xeb, 0xa6, 0x55, 0x09, 0xab, 0x71, 0x35, 0x65, 0x6d, 0xc4, 0x65, 0xed, 0x80, 0x2d, 0x9e, 0x9a, - 0xac, 0xcd, 0xf2, 0x54, 0x52, 0xf7, 0x15, 0x29, 0x75, 0xf9, 0xae, 0xf5, 0x82, 0x65, 0xa9, 0xab, - 0xf1, 0xed, 0x94, 0xbf, 0x1f, 0x85, 0x73, 0x9d, 0x78, 0x98, 0x6c, 0xa2, 0x4b, 0x30, 0x5c, 0x09, - 0x83, 0x4d, 0xbf, 0xb6, 0xe2, 0xb5, 0xc4, 0x79, 0x4d, 0xc9, 0xa2, 0x39, 0x59, 0x80, 0x53, 0x1c, - 0xf4, 0x10, 0x17, 0x3c, 0xdc, 0x22, 0x32, 0x22, 0x50, 0xfb, 0x96, 0xc8, 0x2e, 0x93, 0x42, 0xef, - 0x19, 0xfa, 0xea, 0x37, 0xa6, 0xee, 0xfb, 0xc4, 0x1f, 0x3f, 0x7c, 0x9f, 0xfb, 0x87, 0x7d, 0xf0, - 0x40, 0x2e, 0x4f, 0xa1, 0xad, 0xff, 0xa6, 0xa1, 0xad, 0x6b, 0xe5, 0x42, 0x8a, 0xdc, 0xb4, 0xa9, - 0xc8, 0x6a, 0xe4, 0xf3, 0xf4, 0x72, 0xad, 0x18, 0xe7, 0x37, 0x8a, 0x0e, 0x54, 0xe0, 0x35, 0x49, - 0xdc, 0xf2, 0x2a, 0x44, 0xf4, 0x5e, 0x0d, 0xd4, 0x75, 0x59, 0x80, 0x53, 0x1c, 0x7e, 0x84, 0xde, - 0xf4, 0xda, 0x8d, 0x44, 0x18, 0xca, 0xb4, 0x23, 0x34, 0x03, 0x63, 0x59, 0x8e, 0xfe, 0xa1, 0x03, - 0xa8, 0x93, 0xab, 0x58, 0x88, 0xeb, 0xc7, 0x31, 0x0e, 0xb3, 0xe7, 0xf7, 0xb5, 0x43, 0xb8, 0xd6, - 0xd3, 0x9c, 0x76, 0x68, 0xdf, 0xf4, 0x63, 0xe9, 0x3e, 0xc4, 0x0f, 0x07, 0x3d, 0xd8, 0xd0, 0x98, - 0xa9, 0xa5, 0x52, 0x21, 0x71, 0xcc, 0xcd, 0x71, 0xba, 0xa9, 0x85, 0x81, 0xb1, 0x2c, 0x47, 0x53, - 0x50, 0x24, 0x51, 0x14, 0x46, 0xe2, 0xac, 0xcd, 0xa6, 0xf1, 0x15, 0x0a, 0xc0, 0x1c, 0xee, 0xfe, - 0xb8, 0x00, 0xa5, 0x6e, 0xa7, 0x13, 0xf4, 0x3b, 0xda, 0xb9, 0x5a, 0x9c, 0x9c, 0xc4, 0xc1, 0x2f, - 0x3c, 0xbe, 0x33, 0x51, 0xf6, 0x00, 0xd8, 0xe5, 0x84, 0x2d, 0x4a, 0x71, 0xb6, 0x81, 0x93, 0x5f, - 0xd2, 0x4e, 0xd8, 0x3a, 0x89, 0x9c, 0x0d, 0x7e, 0xd3, 0xdc, 0xe0, 0xd7, 0x6c, 0x77, 0x4a, 0xdf, - 0xe6, 0xff, 0xa4, 0x08, 0x67, 0x64, 0x69, 0x99, 0xd0, 0xad, 0xf2, 0xb9, 0x36, 0x89, 0x76, 0xd1, - 0x0f, 0x1c, 0x38, 0xeb, 0x65, 0x4d, 0x37, 0x3e, 0x39, 0x86, 0x81, 0xd6, 0xb8, 0x4e, 0xcf, 0xe4, - 0x70, 0xe4, 0x03, 0x7d, 0x59, 0x0c, 0xf4, 0xd9, 0x3c, 0x94, 0x2e, 0x76, 0xf7, 0xdc, 0x0e, 0xa0, - 0x67, 0x60, 0x54, 0xc2, 0x99, 0xb9, 0x87, 0x2f, 0x71, 0x65, 0xdc, 0x9e, 0xd1, 0xca, 0xb0, 0x81, - 0x49, 0x6b, 0x26, 0xa4, 0xd9, 0x6a, 0x78, 0x09, 0xd1, 0x0c, 0x45, 0xaa, 0xe6, 0xba, 0x56, 0x86, - 0x0d, 0x4c, 0xf4, 0x18, 0x0c, 0x04, 0x61, 0x95, 0x5c, 0xab, 0x0a, 0x03, 0xf1, 0xb8, 0xa8, 0x33, - 0x70, 0x9d, 0x41, 0xb1, 0x28, 0x45, 0x8f, 0xa6, 0xd6, 0xb8, 0x22, 0x5b, 0x42, 0x23, 0x79, 0x96, - 0x38, 0xf4, 0x8f, 0x1d, 0x18, 0xa6, 0x35, 0xd6, 0x77, 0x5b, 0x84, 0xee, 0x6d, 0xf4, 0x8b, 0x54, - 0x8f, 0xe7, 0x8b, 0x5c, 0x97, 0x6c, 0x4c, 0x53, 0xc7, 0xb0, 0x82, 0xbf, 0xf1, 0xd6, 0xd4, 0x90, - 0xfc, 0x81, 0xd3, 0x56, 0x4d, 0x2e, 0xc2, 0xfd, 0x5d, 0xbf, 0xe6, 0xa1, 0x5c, 0x01, 0x7f, 0x0b, - 0xc6, 0xcd, 0x46, 0x1c, 0xca, 0x0f, 0xf0, 0x2f, 0xb4, 0x65, 0xc7, 0xfb, 0x25, 0xe4, 0xd9, 0x3d, - 0xd3, 0x66, 0xd5, 0x64, 0x98, 0x17, 0x53, 0xcf, 0x9c, 0x0c, 0xf3, 0x62, 0x32, 0xcc, 0xbb, 0x7f, - 0xe0, 0xa4, 0x4b, 0x53, 0x53, 0xf3, 0xe8, 0xc6, 0xdc, 0x8e, 0x1a, 0x42, 0x10, 0xab, 0x8d, 0xf9, - 0x06, 0x5e, 0xc6, 0x14, 0x8e, 0xbe, 0xa4, 0x49, 0x47, 0x5a, 0xad, 0x2d, 0xdc, 0x1a, 0x96, 0x4c, - 0xf4, 0x06, 0xe1, 0x4e, 0xf9, 0x27, 0x0a, 0x70, 0xb6, 0x09, 0xee, 0x17, 0x0b, 0xf0, 0xd0, 0x81, - 0x4a, 0x6b, 0x6e, 0xc3, 0x9d, 0x7b, 0xde, 0x70, 0xba, 0xad, 0x45, 0xa4, 0x15, 0xde, 0xc0, 0xcb, - 0xe2, 0x7b, 0xa9, 0x6d, 0x0d, 0x73, 0x30, 0x96, 0xe5, 0x54, 0x75, 0xd8, 0x22, 0xbb, 0x0b, 0x61, - 0xd4, 0xf4, 0x12, 0x21, 0x1d, 0x94, 0xea, 0xb0, 0x24, 0x0b, 0x70, 0x8a, 0xe3, 0xfe, 0xc0, 0x81, - 0x6c, 0x03, 0x90, 0x07, 0xe3, 0xed, 0x98, 0x44, 0x74, 0x4b, 0x2d, 0x93, 0x4a, 0x44, 0xe4, 0xf4, - 0x7c, 0x74, 0x9a, 0x7b, 0xfb, 0x69, 0x0f, 0xa7, 0x2b, 0x61, 0x44, 0xa6, 0xb7, 0x9f, 0x9a, 0xe6, - 0x18, 0x4b, 0x64, 0xb7, 0x4c, 0x1a, 0x84, 0xd2, 0x98, 0x45, 0xfb, 0x7b, 0x53, 0xe3, 0x37, 0x0c, - 0x02, 0x38, 0x43, 0x90, 0xb2, 0x68, 0x79, 0x71, 0xbc, 0x13, 0x46, 0x55, 0xc1, 0xa2, 0x70, 0x68, - 0x16, 0x6b, 0x06, 0x01, 0x9c, 0x21, 0xe8, 0x7e, 0x9f, 0x1e, 0x1f, 0x75, 0xad, 0x15, 0x7d, 0x83, - 0xea, 0x3e, 0x14, 0x32, 0xdb, 0x08, 0x37, 0xe6, 0xc2, 0x20, 0xf1, 0xfc, 0x80, 0xc8, 0x60, 0x81, - 0x75, 0x4b, 0x3a, 0xb2, 0x41, 0x3b, 0xb5, 0xe1, 0x77, 0x96, 0xe1, 0x9c, 0xb6, 0x50, 0x1d, 0x67, - 0xa3, 0x11, 0x6e, 0x64, 0xbd, 0x80, 0x14, 0x09, 0xb3, 0x12, 0xf7, 0xa7, 0x0e, 0x5c, 0xe8, 0xa2, - 0x8c, 0xa3, 0xaf, 0x38, 0x30, 0xb6, 0xf1, 0xb6, 0xe8, 0x9b, 0xd9, 0x0c, 0xf4, 0x3e, 0x18, 0xa7, - 0x00, 0xba, 0x13, 0x89, 0xb9, 0x59, 0x30, 0x3d, 0x54, 0xb3, 0x46, 0x29, 0xce, 0x60, 0xbb, 0xbf, - 0x56, 0x80, 0x1c, 0x2e, 0xe8, 0x49, 0x18, 0x22, 0x41, 0xb5, 0x15, 0xfa, 0x41, 0x22, 0x84, 0x91, - 0x92, 0x7a, 0x57, 0x04, 0x1c, 0x2b, 0x0c, 0x71, 0xfe, 0x10, 0x03, 0x53, 0xe8, 0x38, 0x7f, 0x88, - 0x96, 0xa7, 0x38, 0xa8, 0x06, 0x13, 0x1e, 0xf7, 0xaf, 0xb0, 0xb9, 0xc7, 0xa6, 0x69, 0xdf, 0x61, - 0xa6, 0xe9, 0x59, 0xe6, 0xfe, 0xcc, 0x90, 0xc0, 0x1d, 0x44, 0xd1, 0xbb, 0x61, 0xa4, 0x1d, 0x93, - 0xf2, 0xfc, 0xd2, 0x5c, 0x44, 0xaa, 0xfc, 0x54, 0xac, 0xf9, 0xfd, 0x6e, 0xa4, 0x45, 0x58, 0xc7, - 0x73, 0xff, 0xb5, 0x03, 0x83, 0xb3, 0x5e, 0x65, 0x2b, 0xdc, 0xdc, 0xa4, 0x43, 0x51, 0x6d, 0x47, - 0xa9, 0x61, 0x4b, 0x1b, 0x8a, 0x79, 0x01, 0xc7, 0x0a, 0x03, 0xad, 0xc3, 0x00, 0x5f, 0xf0, 0x62, - 0xd9, 0xfd, 0xbc, 0xd6, 0x1f, 0x15, 0xc7, 0xc3, 0xa6, 0x43, 0x3b, 0xf1, 0x1b, 0xd3, 0x3c, 0x8e, - 0x67, 0xfa, 0x5a, 0x90, 0xac, 0x46, 0xe5, 0x24, 0xf2, 0x83, 0xda, 0x2c, 0xd0, 0xed, 0x62, 0x81, - 0xd1, 0xc0, 0x82, 0x16, 0xed, 0x46, 0xd3, 0xbb, 0x25, 0xd9, 0x09, 0xf1, 0xa3, 0xba, 0xb1, 0x92, - 0x16, 0x61, 0x1d, 0xcf, 0xfd, 0x43, 0x07, 0x86, 0x67, 0xbd, 0xd8, 0xaf, 0xfc, 0x15, 0x12, 0x3e, - 0x1f, 0x82, 0xe2, 0x9c, 0x57, 0xa9, 0x13, 0x74, 0x23, 0x7b, 0xe8, 0x1d, 0xb9, 0xfc, 0x78, 0x1e, - 0x1b, 0x75, 0x00, 0xd6, 0x39, 0x8d, 0x75, 0x3b, 0x1a, 0xbb, 0x6f, 0x39, 0x30, 0x3e, 0xd7, 0xf0, - 0x49, 0x90, 0xcc, 0x91, 0x28, 0x61, 0x03, 0x57, 0x83, 0x89, 0x8a, 0x82, 0x1c, 0x65, 0xe8, 0xd8, - 0x6c, 0x9d, 0xcb, 0x90, 0xc0, 0x1d, 0x44, 0x51, 0x15, 0x4e, 0x71, 0x58, 0xba, 0x2a, 0x0e, 0x35, - 0x7e, 0xcc, 0x3a, 0x3a, 0x67, 0x52, 0xc0, 0x59, 0x92, 0xee, 0x4f, 0x1c, 0xb8, 0x30, 0xd7, 0x68, - 0xc7, 0x09, 0x89, 0x6e, 0x0a, 0x69, 0x24, 0xd5, 0x5b, 0xf4, 0x11, 0x18, 0x6a, 0x4a, 0x8f, 0xad, - 0x73, 0x87, 0x09, 0xcc, 0xe4, 0x19, 0xc5, 0xa6, 0x8d, 0x59, 0xdd, 0x78, 0x99, 0x54, 0x92, 0x15, - 0x92, 0x78, 0x69, 0x78, 0x41, 0x0a, 0xc3, 0x8a, 0x2a, 0x6a, 0x41, 0x7f, 0xdc, 0x22, 0x15, 0x7b, - 0xd1, 0x5d, 0xb2, 0x0f, 0xe5, 0x16, 0xa9, 0xa4, 0x72, 0x9d, 0xf9, 0x1a, 0x19, 0x27, 0xf7, 0x7f, - 0x39, 0xf0, 0x40, 0x97, 0xfe, 0x2e, 0xfb, 0x71, 0x82, 0x5e, 0xea, 0xe8, 0xf3, 0x74, 0x6f, 0x7d, - 0xa6, 0xb5, 0x59, 0x8f, 0x95, 0x40, 0x90, 0x10, 0xad, 0xbf, 0x1f, 0x83, 0xa2, 0x9f, 0x90, 0xa6, - 0x34, 0x43, 0x5b, 0x30, 0x18, 0x75, 0xe9, 0xcb, 0xec, 0x98, 0x8c, 0xf1, 0xbb, 0x46, 0xf9, 0x61, - 0xce, 0xd6, 0xdd, 0x82, 0x81, 0xb9, 0xb0, 0xd1, 0x6e, 0x06, 0xbd, 0x45, 0xca, 0x24, 0xbb, 0x2d, - 0x92, 0xdd, 0x23, 0x99, 0xfa, 0xcf, 0x4a, 0xa4, 0xe1, 0xa8, 0x2f, 0xdf, 0x70, 0xe4, 0xfe, 0x1b, - 0x07, 0xe8, 0xaa, 0xaa, 0xfa, 0xc2, 0x93, 0xc8, 0xc9, 0x71, 0x86, 0x0f, 0xe9, 0xe4, 0x6e, 0xef, - 0x4d, 0x8d, 0x29, 0x44, 0x8d, 0xfe, 0x87, 0x60, 0x20, 0x66, 0x47, 0x72, 0xd1, 0x86, 0x05, 0xa9, - 0x3f, 0xf3, 0x83, 0xfa, 0xed, 0xbd, 0xa9, 0x9e, 0xc2, 0x36, 0xa7, 0x15, 0x6d, 0xe1, 0xf4, 0x14, - 0x54, 0xa9, 0xc2, 0xd7, 0x24, 0x71, 0xec, 0xd5, 0xe4, 0x09, 0x4f, 0x29, 0x7c, 0x2b, 0x1c, 0x8c, - 0x65, 0xb9, 0xfb, 0x65, 0x07, 0xc6, 0xd4, 0xe6, 0x45, 0xd5, 0x77, 0x74, 0x5d, 0xdf, 0xe6, 0xf8, - 0x4c, 0x79, 0xa8, 0x8b, 0xc4, 0x11, 0x1b, 0xf9, 0xc1, 0xbb, 0xe0, 0xbb, 0x60, 0xb4, 0x4a, 0x5a, - 0x24, 0xa8, 0x92, 0xa0, 0x42, 0x8f, 0xdf, 0x74, 0x86, 0x0c, 0xcf, 0x4e, 0xd0, 0xf3, 0xe6, 0xbc, - 0x06, 0xc7, 0x06, 0x96, 0xfb, 0x4d, 0x07, 0xee, 0x57, 0xe4, 0xca, 0x24, 0xc1, 0x24, 0x89, 0x76, - 0x55, 0x98, 0xe6, 0xe1, 0x76, 0xab, 0x9b, 0x54, 0xff, 0x4d, 0x22, 0xce, 0xfc, 0x68, 0xdb, 0xd5, - 0x08, 0xd7, 0x96, 0x19, 0x11, 0x2c, 0xa9, 0xb9, 0xbf, 0xda, 0x07, 0x67, 0xf5, 0x46, 0x2a, 0x01, - 0xf3, 0x4b, 0x0e, 0x80, 0x1a, 0x01, 0xba, 0x21, 0xf7, 0xd9, 0xf1, 0x5d, 0x19, 0x5f, 0x2a, 0x15, - 0x41, 0x0a, 0x1c, 0x63, 0x8d, 0x2d, 0x7a, 0x01, 0x46, 0xb7, 0xe9, 0xa2, 0x20, 0x2b, 0x54, 0x5d, - 0x88, 0x4b, 0x7d, 0xac, 0x19, 0x53, 0x79, 0x1f, 0xf3, 0xf9, 0x14, 0x2f, 0x35, 0x07, 0x68, 0xc0, - 0x18, 0x1b, 0xa4, 0xe8, 0x49, 0x67, 0x2c, 0xd2, 0x3f, 0x89, 0xb0, 0x89, 0x7f, 0xd0, 0x62, 0x1f, - 0xb3, 0x5f, 0x7d, 0xf6, 0xf4, 0xfe, 0xde, 0xd4, 0x98, 0x01, 0xc2, 0x66, 0x23, 0xdc, 0x17, 0x80, - 0x8d, 0x85, 0x1f, 0xb4, 0xc9, 0x6a, 0x80, 0x1e, 0x91, 0x36, 0x3a, 0xee, 0x57, 0x51, 0x92, 0x43, - 0xb7, 0xd3, 0xd1, 0xb3, 0xec, 0xa6, 0xe7, 0x37, 0x58, 0xf8, 0x22, 0xc5, 0x52, 0x67, 0xd9, 0x05, - 0x06, 0xc5, 0xa2, 0xd4, 0x9d, 0x86, 0xc1, 0x39, 0xda, 0x77, 0x12, 0x51, 0xba, 0x7a, 0xd4, 0xf1, - 0x98, 0x11, 0x75, 0x2c, 0xa3, 0x8b, 0xd7, 0xe1, 0xdc, 0x5c, 0x44, 0xbc, 0x84, 0x94, 0x9f, 0x9e, - 0x6d, 0x57, 0xb6, 0x48, 0xc2, 0x43, 0xbb, 0x62, 0xf4, 0x5e, 0x18, 0x0b, 0xd9, 0x96, 0xb1, 0x1c, - 0x56, 0xb6, 0xfc, 0xa0, 0x26, 0x4c, 0xae, 0xe7, 0x04, 0x95, 0xb1, 0x55, 0xbd, 0x10, 0x9b, 0xb8, - 0xee, 0x7f, 0x2a, 0xc0, 0xe8, 0x5c, 0x14, 0x06, 0x52, 0x2c, 0x9e, 0xc0, 0x56, 0x96, 0x18, 0x5b, - 0x99, 0x05, 0x77, 0xa7, 0xde, 0xfe, 0x6e, 0xdb, 0x19, 0x7a, 0x4d, 0x89, 0xc8, 0x3e, 0x5b, 0x47, - 0x10, 0x83, 0x2f, 0xa3, 0x9d, 0x7e, 0x6c, 0x53, 0x80, 0xba, 0xff, 0xd9, 0x81, 0x09, 0x1d, 0xfd, - 0x04, 0x76, 0xd0, 0xd8, 0xdc, 0x41, 0xaf, 0xdb, 0xed, 0x6f, 0x97, 0x6d, 0xf3, 0x73, 0x03, 0x66, - 0x3f, 0x99, 0xaf, 0xfb, 0xab, 0x0e, 0x8c, 0xee, 0x68, 0x00, 0xd1, 0x59, 0xdb, 0x4a, 0xcc, 0x3b, - 0xa4, 0x98, 0xd1, 0xa1, 0xb7, 0x33, 0xbf, 0xb1, 0xd1, 0x12, 0x2a, 0xf7, 0xe3, 0x4a, 0x9d, 0x54, - 0xdb, 0x0d, 0xb9, 0x7d, 0xab, 0x21, 0x2d, 0x0b, 0x38, 0x56, 0x18, 0xe8, 0x25, 0x38, 0x5d, 0x09, - 0x83, 0x4a, 0x3b, 0x8a, 0x48, 0x50, 0xd9, 0x5d, 0x63, 0x77, 0x24, 0xc4, 0x86, 0x38, 0x2d, 0xaa, - 0x9d, 0x9e, 0xcb, 0x22, 0xdc, 0xce, 0x03, 0xe2, 0x4e, 0x42, 0xdc, 0x59, 0x10, 0xd3, 0x2d, 0x4b, - 0x1c, 0xb8, 0x34, 0x67, 0x01, 0x03, 0x63, 0x59, 0x8e, 0x6e, 0xc0, 0x85, 0x38, 0xf1, 0xa2, 0xc4, - 0x0f, 0x6a, 0xf3, 0xc4, 0xab, 0x36, 0xfc, 0x80, 0x1e, 0x25, 0xc2, 0xa0, 0xca, 0x5d, 0x89, 0x7d, - 0xb3, 0x0f, 0xec, 0xef, 0x4d, 0x5d, 0x28, 0xe7, 0xa3, 0xe0, 0x6e, 0x75, 0xd1, 0x87, 0x60, 0x52, - 0xb8, 0x23, 0x36, 0xdb, 0x8d, 0x67, 0xc3, 0x8d, 0xf8, 0xaa, 0x1f, 0xd3, 0x73, 0xfc, 0xb2, 0xdf, - 0xf4, 0x13, 0xe6, 0x30, 0x2c, 0xce, 0x5e, 0xdc, 0xdf, 0x9b, 0x9a, 0x2c, 0x77, 0xc5, 0xc2, 0x07, - 0x50, 0x40, 0x18, 0xce, 0x73, 0xe1, 0xd7, 0x41, 0x7b, 0x90, 0xd1, 0x9e, 0xdc, 0xdf, 0x9b, 0x3a, - 0xbf, 0x90, 0x8b, 0x81, 0xbb, 0xd4, 0xa4, 0x5f, 0x30, 0xf1, 0x9b, 0xe4, 0x95, 0x30, 0x20, 0x2c, - 0x50, 0x45, 0xfb, 0x82, 0xeb, 0x02, 0x8e, 0x15, 0x06, 0x7a, 0x39, 0x9d, 0x89, 0x74, 0xb9, 0x88, - 0x80, 0x93, 0xc3, 0x4b, 0x38, 0x76, 0x34, 0xb9, 0xa9, 0x51, 0x62, 0x91, 0x94, 0x06, 0x6d, 0xf7, - 0x8f, 0x0a, 0x80, 0x3a, 0x45, 0x04, 0x5a, 0x82, 0x01, 0xaf, 0x92, 0xf8, 0xdb, 0x32, 0x32, 0xef, - 0x91, 0xbc, 0xed, 0x93, 0xb3, 0xc2, 0x64, 0x93, 0xd0, 0x19, 0x42, 0x52, 0xb9, 0x32, 0xc3, 0xaa, - 0x62, 0x41, 0x02, 0x85, 0x70, 0xba, 0xe1, 0xc5, 0x89, 0x9c, 0xab, 0x55, 0xda, 0x65, 0x21, 0x58, - 0x7f, 0xb6, 0xb7, 0x4e, 0xd1, 0x1a, 0xb3, 0xe7, 0xe8, 0xcc, 0x5d, 0xce, 0x12, 0xc2, 0x9d, 0xb4, - 0xd1, 0xc7, 0x99, 0x1e, 0xc2, 0x95, 0x44, 0xa9, 0x00, 0x2c, 0x59, 0xd9, 0xa3, 0x39, 0x4d, 0x43, - 0x07, 0x11, 0x6c, 0xb0, 0xc6, 0xd2, 0xfd, 0xb7, 0x00, 0x83, 0xf3, 0x33, 0x8b, 0xeb, 0x5e, 0xbc, - 0xd5, 0x83, 0x6a, 0x4e, 0x67, 0x87, 0xd0, 0xa1, 0xb2, 0xeb, 0x5b, 0xea, 0x56, 0x58, 0x61, 0xa0, - 0x00, 0x06, 0xfc, 0x80, 0x2e, 0x88, 0xd2, 0xb8, 0x2d, 0xf3, 0xb7, 0x3a, 0x66, 0x30, 0xfb, 0xc4, - 0x35, 0x46, 0x1d, 0x0b, 0x2e, 0xe8, 0x35, 0x18, 0xf6, 0xe4, 0xcd, 0x16, 0xb1, 0x2d, 0x2d, 0xd9, - 0xb0, 0xeb, 0x0a, 0x92, 0x7a, 0x64, 0x8d, 0x00, 0xe1, 0x94, 0x21, 0xfa, 0x84, 0x03, 0x23, 0xb2, - 0xeb, 0x98, 0x6c, 0x0a, 0x97, 0xeb, 0x8a, 0xbd, 0x3e, 0x63, 0xb2, 0xc9, 0xc3, 0x2e, 0x34, 0x00, - 0xd6, 0x59, 0x76, 0xa8, 0xf2, 0xc5, 0x5e, 0x54, 0x79, 0xb4, 0x03, 0xc3, 0x3b, 0x7e, 0x52, 0x67, - 0x1b, 0x8f, 0x70, 0xf5, 0x2c, 0xdc, 0x7d, 0xab, 0x29, 0xb9, 0x74, 0xc4, 0x6e, 0x4a, 0x06, 0x38, - 0xe5, 0x85, 0x2e, 0x71, 0xc6, 0xec, 0x66, 0x10, 0x13, 0x59, 0xc3, 0x66, 0x05, 0x56, 0x80, 0x53, - 0x1c, 0x3a, 0xc4, 0xa3, 0xf4, 0x57, 0x99, 0x7c, 0xb4, 0x4d, 0xd7, 0xb1, 0x08, 0xa5, 0xb3, 0x30, - 0xaf, 0x24, 0x45, 0x3e, 0x58, 0x37, 0x35, 0x1e, 0xd8, 0xe0, 0x48, 0xd7, 0xc8, 0x4e, 0x9d, 0x04, - 0x22, 0xd4, 0x5f, 0xad, 0x91, 0x9b, 0x75, 0x12, 0x60, 0x56, 0x82, 0x5e, 0xe3, 0x47, 0x0b, 0xae, - 0xe3, 0x8a, 0xb0, 0xb8, 0x65, 0x3b, 0x6a, 0x37, 0xa7, 0xc9, 0xa3, 0xed, 0xd3, 0xdf, 0x58, 0xe3, - 0x47, 0xd5, 0xe5, 0x30, 0xb8, 0x72, 0xcb, 0x4f, 0xc4, 0x1d, 0x01, 0x25, 0xe9, 0x56, 0x19, 0x14, - 0x8b, 0x52, 0x1e, 0x52, 0x40, 0x27, 0x41, 0xcc, 0x2e, 0x04, 0x0c, 0xeb, 0x21, 0x05, 0x0c, 0x8c, - 0x65, 0x39, 0xfa, 0x47, 0x0e, 0x14, 0xeb, 0x61, 0xb8, 0x15, 0x97, 0xc6, 0xd8, 0xe4, 0xb0, 0xa0, - 0xea, 0x09, 0x89, 0x33, 0x7d, 0x95, 0x92, 0x35, 0x6f, 0x3d, 0x15, 0x19, 0xec, 0xf6, 0xde, 0xd4, - 0xf8, 0xb2, 0xbf, 0x49, 0x2a, 0xbb, 0x95, 0x06, 0x61, 0x90, 0x37, 0xde, 0xd2, 0x20, 0x57, 0xb6, - 0x49, 0x90, 0x60, 0xde, 0xaa, 0xc9, 0xcf, 0x39, 0x00, 0x29, 0xa1, 0x1c, 0xdf, 0x1d, 0x31, 0xbd, - 0xdd, 0x16, 0xce, 0x79, 0x46, 0xd3, 0x74, 0x67, 0xe0, 0xbf, 0x73, 0x60, 0x84, 0x76, 0x4e, 0x8a, - 0xc0, 0xc7, 0x60, 0x20, 0xf1, 0xa2, 0x1a, 0x91, 0xf6, 0x6b, 0xf5, 0x39, 0xd6, 0x19, 0x14, 0x8b, - 0x52, 0x14, 0x40, 0x31, 0xf1, 0xe2, 0x2d, 0xa9, 0x5d, 0x5e, 0xb3, 0x36, 0xc4, 0xa9, 0x62, 0x49, - 0x7f, 0xc5, 0x98, 0xb3, 0x41, 0x8f, 0xc3, 0x10, 0x55, 0x00, 0x16, 0xbc, 0x58, 0x86, 0x94, 0x8c, - 0x52, 0x21, 0xbe, 0x20, 0x60, 0x58, 0x95, 0xba, 0xbf, 0x56, 0x80, 0xfe, 0x79, 0x7e, 0xce, 0x18, - 0x88, 0xc3, 0x76, 0x54, 0x21, 0x42, 0xdf, 0xb4, 0x30, 0xa7, 0x29, 0xdd, 0x32, 0xa3, 0xa9, 0x69, - 0xfa, 0xec, 0x37, 0x16, 0xbc, 0xe8, 0x41, 0x76, 0x3c, 0x89, 0xbc, 0x20, 0xde, 0x64, 0x9e, 0x02, - 0x3f, 0x0c, 0xc4, 0x10, 0x59, 0x98, 0x85, 0xeb, 0x06, 0xdd, 0x72, 0x42, 0x5a, 0xa9, 0xc3, 0xc2, - 0x2c, 0xc3, 0x99, 0x36, 0xb8, 0xbf, 0xee, 0x00, 0xa4, 0xad, 0x47, 0x9f, 0x75, 0x60, 0xcc, 0xd3, - 0x43, 0x19, 0xc5, 0x18, 0xad, 0xda, 0x73, 0x2b, 0x32, 0xb2, 0xfc, 0x88, 0x6d, 0x80, 0xb0, 0xc9, - 0xd8, 0x7d, 0x37, 0x14, 0xd9, 0xea, 0x60, 0xba, 0xb8, 0x30, 0xc9, 0x66, 0x6d, 0x30, 0xd2, 0x54, - 0x8b, 0x15, 0x86, 0xfb, 0x12, 0x8c, 0x5f, 0xb9, 0x45, 0x2a, 0xed, 0x24, 0x8c, 0xb8, 0x41, 0xba, - 0xcb, 0xd5, 0x15, 0xe7, 0x48, 0x57, 0x57, 0xbe, 0xe3, 0xc0, 0x88, 0x16, 0xd7, 0x46, 0x77, 0xea, - 0xda, 0x5c, 0x99, 0x9f, 0xbb, 0xc5, 0x50, 0x2d, 0x59, 0x89, 0x9c, 0xe3, 0x24, 0xd3, 0x6d, 0x44, - 0x81, 0x70, 0xca, 0xf0, 0x0e, 0x71, 0x67, 0xee, 0xef, 0x3b, 0x70, 0x2e, 0x37, 0x08, 0xef, 0x1e, - 0x37, 0xdb, 0xf0, 0xfd, 0x16, 0x7a, 0xf0, 0xfd, 0xfe, 0xb6, 0x03, 0x29, 0x25, 0x2a, 0x8a, 0x36, - 0xd2, 0x96, 0x6b, 0xa2, 0x48, 0x70, 0x12, 0xa5, 0xe8, 0x35, 0xb8, 0x60, 0x7e, 0xc1, 0x23, 0xba, - 0x01, 0xf8, 0x99, 0x29, 0x9f, 0x12, 0xee, 0xc6, 0xc2, 0xfd, 0x9a, 0x03, 0xc5, 0x45, 0xaf, 0x5d, - 0x23, 0x3d, 0x59, 0x71, 0xa8, 0x1c, 0x8b, 0x88, 0xd7, 0x48, 0xa4, 0x9e, 0x2e, 0xe4, 0x18, 0x16, - 0x30, 0xac, 0x4a, 0xd1, 0x0c, 0x0c, 0x87, 0x2d, 0x62, 0xb8, 0xae, 0x1e, 0x91, 0xa3, 0xb7, 0x2a, - 0x0b, 0xe8, 0xb6, 0xc3, 0xb8, 0x2b, 0x08, 0x4e, 0x6b, 0xb9, 0x3f, 0x28, 0xc2, 0x88, 0x76, 0x5d, - 0x83, 0xea, 0x02, 0x11, 0x69, 0x85, 0x59, 0x7d, 0x99, 0x4e, 0x18, 0xcc, 0x4a, 0xe8, 0x1a, 0x8c, - 0xc8, 0xb6, 0x1f, 0x73, 0xb1, 0x65, 0xac, 0x41, 0x2c, 0xe0, 0x58, 0x61, 0xa0, 0x29, 0x28, 0x56, - 0x49, 0x2b, 0xa9, 0xb3, 0xe6, 0xf5, 0xf3, 0x98, 0xb5, 0x79, 0x0a, 0xc0, 0x1c, 0x4e, 0x11, 0x36, - 0x49, 0x52, 0xa9, 0x33, 0x83, 0xa5, 0x08, 0x6a, 0x5b, 0xa0, 0x00, 0xcc, 0xe1, 0x39, 0xce, 0xb5, - 0xe2, 0xf1, 0x3b, 0xd7, 0x06, 0x2c, 0x3b, 0xd7, 0x50, 0x0b, 0xce, 0xc4, 0x71, 0x7d, 0x2d, 0xf2, - 0xb7, 0xbd, 0x84, 0xa4, 0xb3, 0x6f, 0xf0, 0x30, 0x7c, 0x2e, 0xb0, 0x0b, 0xd4, 0xe5, 0xab, 0x59, - 0x2a, 0x38, 0x8f, 0x34, 0x2a, 0xc3, 0x39, 0x3f, 0x88, 0x49, 0xa5, 0x1d, 0x91, 0x6b, 0xb5, 0x20, - 0x8c, 0xc8, 0xd5, 0x30, 0xa6, 0xe4, 0xc4, 0xf5, 0x4f, 0x15, 0xe6, 0x79, 0x2d, 0x0f, 0x09, 0xe7, - 0xd7, 0x45, 0x8b, 0x70, 0xba, 0xea, 0xc7, 0xde, 0x46, 0x83, 0x94, 0xdb, 0x1b, 0xcd, 0x90, 0x1e, - 0xfa, 0xf8, 0x95, 0x8c, 0xa1, 0xd9, 0xfb, 0xa5, 0x79, 0x63, 0x3e, 0x8b, 0x80, 0x3b, 0xeb, 0xa0, - 0x67, 0x60, 0x34, 0xf6, 0x83, 0x5a, 0x83, 0xcc, 0x46, 0x5e, 0x50, 0xa9, 0x8b, 0x7b, 0xa3, 0xca, - 0x0c, 0x5c, 0xd6, 0xca, 0xb0, 0x81, 0xc9, 0xd6, 0x3c, 0xaf, 0x93, 0xd1, 0x06, 0x05, 0xb6, 0x28, - 0x75, 0x7f, 0xe8, 0xc0, 0xa8, 0x1e, 0x62, 0x4d, 0x35, 0x6d, 0xa8, 0xcf, 0x2f, 0x94, 0xf9, 0x5e, - 0x60, 0x6f, 0xc7, 0xbf, 0xaa, 0x68, 0xa6, 0x27, 0xd3, 0x14, 0x86, 0x35, 0x9e, 0x3d, 0x5c, 0x98, - 0x7e, 0x04, 0x8a, 0x9b, 0x21, 0x55, 0x48, 0xfa, 0x4c, 0xfb, 0xf1, 0x02, 0x05, 0x62, 0x5e, 0xe6, - 0xfe, 0x0f, 0x07, 0xce, 0xe7, 0x47, 0x8f, 0xbf, 0x1d, 0x3a, 0x79, 0x19, 0x80, 0x76, 0xc5, 0x10, - 0xea, 0x5a, 0xca, 0x04, 0x59, 0x82, 0x35, 0xac, 0xde, 0xba, 0xfd, 0xe7, 0x54, 0x29, 0x4e, 0xf9, - 0x7c, 0xde, 0x81, 0x31, 0xca, 0x76, 0x29, 0xda, 0x30, 0x7a, 0xbb, 0x6a, 0xa7, 0xb7, 0x8a, 0x6c, - 0x6a, 0x26, 0x37, 0xc0, 0xd8, 0x64, 0x8e, 0x7e, 0x0e, 0x86, 0xbd, 0x6a, 0x35, 0x22, 0x71, 0xac, - 0x1c, 0x4e, 0xcc, 0x17, 0x3e, 0x23, 0x81, 0x38, 0x2d, 0xa7, 0x42, 0xb4, 0x5e, 0xdd, 0x8c, 0xa9, - 0x5c, 0x12, 0x82, 0x5b, 0x09, 0x51, 0xca, 0x84, 0xc2, 0xb1, 0xc2, 0x70, 0x7f, 0xa5, 0x1f, 0x4c, - 0xde, 0xa8, 0x0a, 0xa7, 0xb6, 0xa2, 0x8d, 0x39, 0xe6, 0xaf, 0x3f, 0x8a, 0xdf, 0x9c, 0xf9, 0xb3, - 0x97, 0x4c, 0x0a, 0x38, 0x4b, 0x52, 0x70, 0x59, 0x22, 0xbb, 0x89, 0xb7, 0x71, 0x64, 0xaf, 0xf9, - 0x92, 0x49, 0x01, 0x67, 0x49, 0xa2, 0x77, 0xc3, 0xc8, 0x56, 0xb4, 0x21, 0x45, 0x74, 0x36, 0x04, - 0x63, 0x29, 0x2d, 0xc2, 0x3a, 0x1e, 0x1d, 0xc2, 0xad, 0x68, 0x83, 0xee, 0x8a, 0x32, 0x81, 0x80, - 0x1a, 0xc2, 0x25, 0x01, 0xc7, 0x0a, 0x03, 0xb5, 0x00, 0x6d, 0xc9, 0xd1, 0x53, 0xd1, 0x09, 0x62, - 0x27, 0xe9, 0x3d, 0xb8, 0x81, 0x85, 0x85, 0x2f, 0x75, 0xd0, 0xc1, 0x39, 0xb4, 0xd1, 0x0b, 0x70, - 0x61, 0x2b, 0xda, 0x10, 0xca, 0xc2, 0x5a, 0xe4, 0x07, 0x15, 0xbf, 0x65, 0x24, 0x0b, 0x98, 0x12, - 0xcd, 0xbd, 0xb0, 0x94, 0x8f, 0x86, 0xbb, 0xd5, 0x77, 0x7f, 0xa7, 0x1f, 0xd8, 0x35, 0x47, 0x2a, - 0x0b, 0x9b, 0x24, 0xa9, 0x87, 0xd5, 0xac, 0xfe, 0xb3, 0xc2, 0xa0, 0x58, 0x94, 0xca, 0xe0, 0xc7, - 0x42, 0x97, 0xe0, 0xc7, 0x1d, 0x18, 0xac, 0x13, 0xaf, 0x4a, 0x22, 0x69, 0xae, 0x5b, 0xb6, 0x73, - 0x31, 0xf3, 0x2a, 0x23, 0x9a, 0x1e, 0xc3, 0xf9, 0xef, 0x18, 0x4b, 0x6e, 0xe8, 0x3d, 0x30, 0x4e, - 0x15, 0x99, 0xb0, 0x9d, 0x48, 0xdb, 0x74, 0x3f, 0xb3, 0x4d, 0xb3, 0x1d, 0x75, 0xdd, 0x28, 0xc1, - 0x19, 0x4c, 0x34, 0x0f, 0x13, 0xc2, 0x8e, 0xac, 0xcc, 0x80, 0x62, 0x60, 0x55, 0x16, 0x87, 0x72, - 0xa6, 0x1c, 0x77, 0xd4, 0x60, 0xc1, 0x6b, 0x61, 0x95, 0xbb, 0x12, 0xf5, 0xe0, 0xb5, 0xb0, 0xba, - 0x8b, 0x59, 0x09, 0x7a, 0x05, 0x86, 0xe8, 0xdf, 0x85, 0x28, 0x6c, 0x0a, 0xdb, 0xcc, 0x9a, 0x9d, - 0xd1, 0xa1, 0x3c, 0xc4, 0x49, 0x91, 0x29, 0x78, 0xb3, 0x82, 0x0b, 0x56, 0xfc, 0xe8, 0x79, 0x45, - 0xee, 0xc3, 0xe5, 0x2d, 0xbf, 0xf5, 0x3c, 0x89, 0xfc, 0xcd, 0x5d, 0xa6, 0x34, 0x0c, 0xa5, 0xe7, - 0x95, 0x6b, 0x1d, 0x18, 0x38, 0xa7, 0x96, 0xfb, 0xf9, 0x02, 0x8c, 0xea, 0xb7, 0x65, 0xef, 0x14, - 0x11, 0x1b, 0xa7, 0x93, 0x82, 0x9f, 0x4e, 0xaf, 0x5a, 0xe8, 0xf6, 0x9d, 0x26, 0x44, 0x1d, 0xfa, - 0xbd, 0xb6, 0xd0, 0x16, 0xad, 0x18, 0xc1, 0x58, 0x8f, 0xdb, 0x49, 0x9d, 0x5f, 0xab, 0x62, 0xb1, - 0xaa, 0x8c, 0x83, 0xfb, 0xa9, 0x3e, 0x18, 0x92, 0x85, 0xe8, 0x93, 0x0e, 0x40, 0x1a, 0x33, 0x24, - 0x44, 0xe9, 0x9a, 0x8d, 0x80, 0x12, 0x3d, 0xdc, 0x49, 0x33, 0x5c, 0x2b, 0x38, 0xd6, 0xf8, 0xa2, - 0x04, 0x06, 0x42, 0xda, 0xb8, 0xcb, 0xf6, 0x6e, 0x7c, 0xaf, 0x52, 0xc6, 0x97, 0x19, 0xf7, 0xd4, - 0x6c, 0xc6, 0x60, 0x58, 0xf0, 0xa2, 0x27, 0xc0, 0x0d, 0x19, 0xca, 0x66, 0xcf, 0xc4, 0xac, 0xa2, - 0xe3, 0xd2, 0x03, 0x9d, 0x02, 0xe1, 0x94, 0xa1, 0xfb, 0x14, 0x8c, 0x9b, 0x8b, 0x81, 0x9e, 0x08, - 0x36, 0x76, 0x13, 0xc2, 0xed, 0x0d, 0xa3, 0xfc, 0x44, 0x30, 0x4b, 0x01, 0x98, 0xc3, 0xdd, 0xef, - 0x53, 0x3d, 0x40, 0x89, 0x97, 0x1e, 0x4c, 0xfc, 0x8f, 0xe8, 0xc6, 0xb2, 0x6e, 0xc7, 0xae, 0x8f, - 0xc3, 0x30, 0xfb, 0x87, 0x2d, 0xf4, 0x3e, 0x5b, 0x8e, 0xe7, 0xb4, 0x9d, 0x62, 0xa9, 0x33, 0x9d, - 0xe0, 0x79, 0xc9, 0x08, 0xa7, 0x3c, 0xdd, 0x10, 0x26, 0xb2, 0xd8, 0xe8, 0x83, 0x30, 0x1a, 0xcb, - 0x6d, 0x35, 0xbd, 0xfb, 0xd5, 0xe3, 0xf6, 0xcb, 0xec, 0xbe, 0x65, 0xad, 0x3a, 0x36, 0x88, 0xb9, - 0xab, 0x30, 0x60, 0x75, 0x08, 0xdd, 0x6f, 0x3b, 0x30, 0xcc, 0x3c, 0x6f, 0xb5, 0xc8, 0x6b, 0xa6, - 0x55, 0xfa, 0x0e, 0x18, 0xf5, 0x18, 0x06, 0xf9, 0x19, 0x5d, 0x46, 0xac, 0x58, 0x90, 0x32, 0x3c, - 0x51, 0x5b, 0x2a, 0x65, 0xb8, 0x31, 0x20, 0xc6, 0x92, 0x93, 0xfb, 0xe9, 0x02, 0x0c, 0x5c, 0x0b, - 0x5a, 0xed, 0xbf, 0xf6, 0xc9, 0xc2, 0x56, 0xa0, 0xff, 0x5a, 0x42, 0x9a, 0x66, 0x4e, 0xbb, 0xd1, - 0xd9, 0x47, 0xf5, 0x7c, 0x76, 0x25, 0x33, 0x9f, 0x1d, 0xf6, 0x76, 0x64, 0x40, 0x97, 0xb0, 0x11, - 0xa7, 0xf7, 0xdf, 0x9e, 0x84, 0xe1, 0x65, 0x6f, 0x83, 0x34, 0x96, 0xc8, 0x2e, 0xbb, 0xad, 0xc6, - 0x83, 0x0b, 0x9c, 0xf4, 0x60, 0x6f, 0x04, 0x02, 0xcc, 0xc3, 0x38, 0xc3, 0x56, 0x8b, 0x81, 0x9e, - 0x1c, 0x48, 0x9a, 0x10, 0xc8, 0x31, 0x4f, 0x0e, 0x5a, 0x32, 0x20, 0x0d, 0xcb, 0x9d, 0x86, 0x91, - 0x94, 0x4a, 0x0f, 0x5c, 0x7f, 0x5a, 0x80, 0x31, 0xc3, 0xd4, 0x6d, 0x38, 0x00, 0x9d, 0x3b, 0x3a, - 0x00, 0x0d, 0x87, 0x5c, 0xe1, 0x5e, 0x3b, 0xe4, 0xfa, 0x4e, 0xde, 0x21, 0x67, 0x7e, 0xa4, 0xfe, - 0x9e, 0x3e, 0x52, 0x03, 0xfa, 0x97, 0xfd, 0x60, 0xab, 0x37, 0x39, 0x13, 0x57, 0xc2, 0x56, 0x87, - 0x9c, 0x29, 0x53, 0x20, 0xe6, 0x65, 0x52, 0x73, 0xe9, 0xcb, 0xd7, 0x5c, 0xdc, 0x4f, 0x3a, 0x30, - 0xba, 0xe2, 0x05, 0xfe, 0x26, 0x89, 0x13, 0x36, 0xaf, 0x92, 0x63, 0xbd, 0xb5, 0x34, 0xda, 0xe5, - 0xfe, 0xfd, 0x1b, 0x0e, 0x9c, 0x5e, 0x21, 0xcd, 0xd0, 0x7f, 0xc5, 0x4b, 0xe3, 0x25, 0x69, 0xdb, - 0xeb, 0x7e, 0x22, 0xc2, 0xc3, 0x54, 0xdb, 0xaf, 0xfa, 0x09, 0xa6, 0xf0, 0x3b, 0xd8, 0x71, 0xd9, - 0x7d, 0x00, 0x7a, 0x40, 0xd3, 0x6e, 0xd2, 0xa5, 0x91, 0x90, 0xb2, 0x00, 0xa7, 0x38, 0xee, 0xef, - 0x3a, 0x30, 0xc8, 0x1b, 0xa1, 0x42, 0x4c, 0x9d, 0x2e, 0xb4, 0xeb, 0x50, 0x64, 0xf5, 0xc4, 0xac, - 0x5e, 0xb4, 0xa0, 0xfe, 0x50, 0x72, 0x7c, 0x0d, 0xb2, 0x7f, 0x31, 0x67, 0xc0, 0x8e, 0x2d, 0xde, - 0xad, 0x19, 0x15, 0x2a, 0x9a, 0x1e, 0x5b, 0x18, 0x14, 0x8b, 0x52, 0xf7, 0xeb, 0x7d, 0x30, 0xa4, - 0xd2, 0x4e, 0xb1, 0xa4, 0x00, 0x41, 0x10, 0x26, 0x1e, 0x0f, 0x2c, 0xe0, 0xb2, 0xfa, 0x83, 0xf6, - 0xd2, 0x5e, 0x4d, 0xcf, 0xa4, 0xd4, 0xb9, 0xff, 0x4e, 0x1d, 0x42, 0xb5, 0x12, 0xac, 0x37, 0x02, - 0x7d, 0x0c, 0x06, 0x1a, 0x54, 0xfa, 0x48, 0xd1, 0xfd, 0xbc, 0xc5, 0xe6, 0x30, 0xb1, 0x26, 0x5a, - 0xa2, 0x46, 0x88, 0x03, 0xb1, 0xe0, 0x3a, 0xf9, 0x3e, 0x98, 0xc8, 0xb6, 0xfa, 0x4e, 0x17, 0xfd, - 0x86, 0xf5, 0x6b, 0x82, 0x7f, 0x53, 0x48, 0xcf, 0xc3, 0x57, 0x75, 0x9f, 0x83, 0x91, 0x15, 0x92, - 0x44, 0x7e, 0x85, 0x11, 0xb8, 0xd3, 0xe4, 0xea, 0x49, 0x7f, 0xf8, 0x0c, 0x9b, 0xac, 0x94, 0x66, - 0x8c, 0x5e, 0x03, 0x68, 0x45, 0x21, 0x3d, 0xbf, 0x92, 0xb6, 0xfc, 0xd8, 0x16, 0xf4, 0xe1, 0x35, - 0x45, 0x93, 0xbb, 0x9c, 0xd3, 0xdf, 0x58, 0xe3, 0xe7, 0xbe, 0x08, 0xc5, 0x95, 0x76, 0x42, 0x6e, - 0xf5, 0x20, 0xb1, 0x0e, 0x7b, 0xf3, 0xdd, 0xfd, 0x20, 0x8c, 0x32, 0xda, 0x57, 0xc3, 0x06, 0xdd, - 0x56, 0xe9, 0xd0, 0x34, 0xe9, 0xef, 0xac, 0x53, 0x80, 0x21, 0x61, 0x5e, 0x46, 0x97, 0x4c, 0x3d, - 0x6c, 0x54, 0xd5, 0x2d, 0x20, 0x35, 0x21, 0xae, 0x32, 0x28, 0x16, 0xa5, 0xee, 0x2f, 0x15, 0x60, - 0x84, 0x55, 0x14, 0xe2, 0x66, 0x17, 0x06, 0xeb, 0x9c, 0x8f, 0x18, 0x43, 0x0b, 0x21, 0x75, 0x7a, - 0xeb, 0xb5, 0xb3, 0x1c, 0x07, 0x60, 0xc9, 0x8f, 0xb2, 0xde, 0xf1, 0xfc, 0x84, 0xb2, 0x2e, 0x1c, - 0x2f, 0xeb, 0x9b, 0x9c, 0x0d, 0x96, 0xfc, 0xdc, 0x5f, 0x04, 0x76, 0xbb, 0x76, 0xa1, 0xe1, 0xd5, - 0xf8, 0xc8, 0x85, 0x5b, 0xa4, 0x2a, 0x64, 0xae, 0x36, 0x72, 0x14, 0x8a, 0x45, 0x29, 0xbf, 0xb1, - 0x98, 0x44, 0xbe, 0x8a, 0xca, 0xd5, 0x6e, 0x2c, 0x32, 0xb0, 0x8c, 0xc1, 0xae, 0xba, 0x5f, 0x2e, - 0x00, 0xb0, 0x24, 0x65, 0xfc, 0x52, 0xec, 0xcf, 0x43, 0xb1, 0x55, 0xf7, 0xe2, 0xac, 0x23, 0xb1, - 0xb8, 0x46, 0x81, 0xb7, 0xc5, 0xb5, 0x5f, 0xf6, 0x03, 0x73, 0x44, 0x3d, 0x58, 0xbe, 0x70, 0x70, - 0xb0, 0x3c, 0x6a, 0xc1, 0x60, 0xd8, 0x4e, 0xa8, 0xae, 0x2a, 0x36, 0x7b, 0x0b, 0x7e, 0xf4, 0x55, - 0x4e, 0x90, 0x47, 0x98, 0x8b, 0x1f, 0x58, 0xb2, 0x41, 0xcf, 0xc0, 0x50, 0x2b, 0x0a, 0x6b, 0x74, - 0xef, 0x16, 0xdb, 0xfb, 0x83, 0x52, 0x1f, 0x5a, 0x13, 0xf0, 0xdb, 0xda, 0xff, 0x58, 0x61, 0xbb, - 0x7f, 0x3c, 0xc1, 0xc7, 0x45, 0xcc, 0xbd, 0x49, 0x28, 0xf8, 0xd2, 0x32, 0x05, 0x82, 0x44, 0xe1, - 0xda, 0x3c, 0x2e, 0xf8, 0x55, 0xb5, 0xae, 0x0a, 0x5d, 0xd7, 0xd5, 0xbb, 0x61, 0xa4, 0xea, 0xc7, - 0xad, 0x86, 0xb7, 0x7b, 0x3d, 0xc7, 0x2c, 0x38, 0x9f, 0x16, 0x61, 0x1d, 0x0f, 0x3d, 0x29, 0xae, - 0x46, 0xf4, 0x1b, 0xa6, 0x20, 0x79, 0x35, 0x22, 0xbd, 0x74, 0xcd, 0x6f, 0x45, 0x64, 0x2f, 0xa7, - 0x17, 0x7b, 0xbe, 0x9c, 0x9e, 0xd5, 0xc4, 0x06, 0x4e, 0x5e, 0x13, 0x7b, 0x2f, 0x8c, 0xc9, 0x9f, - 0x4c, 0x3d, 0x2a, 0x9d, 0x65, 0xad, 0x57, 0xe6, 0xea, 0x75, 0xbd, 0x10, 0x9b, 0xb8, 0xe9, 0xa4, - 0x1d, 0xec, 0x75, 0xd2, 0x5e, 0x06, 0xd8, 0x08, 0xdb, 0x41, 0xd5, 0x8b, 0x76, 0xaf, 0xcd, 0x8b, - 0x40, 0x4a, 0xa5, 0xf8, 0xcd, 0xaa, 0x12, 0xac, 0x61, 0xe9, 0x13, 0x7d, 0xf8, 0x0e, 0x13, 0xfd, - 0x83, 0x30, 0xcc, 0x82, 0x4e, 0x49, 0x75, 0x26, 0x11, 0x21, 0x46, 0x87, 0x89, 0x4f, 0x54, 0x32, - 0xb7, 0x2c, 0x89, 0xe0, 0x94, 0x1e, 0xfa, 0x10, 0xc0, 0xa6, 0x1f, 0xf8, 0x71, 0x9d, 0x51, 0x1f, - 0x39, 0x34, 0x75, 0xd5, 0xcf, 0x05, 0x45, 0x05, 0x6b, 0x14, 0xd1, 0x4b, 0x70, 0x9a, 0xc4, 0x89, - 0xdf, 0xf4, 0x12, 0x52, 0x55, 0x97, 0x09, 0x4b, 0xcc, 0x96, 0xa9, 0xc2, 0x7e, 0xaf, 0x64, 0x11, - 0x6e, 0xe7, 0x01, 0x71, 0x27, 0x21, 0x63, 0x45, 0x4e, 0x1e, 0x66, 0x45, 0xa2, 0xbf, 0x70, 0xe0, - 0x74, 0x44, 0x78, 0xdc, 0x49, 0xac, 0x1a, 0x76, 0x8e, 0x89, 0xe3, 0x8a, 0x8d, 0xfc, 0xdf, 0x2a, - 0xd1, 0x07, 0xce, 0x72, 0xe1, 0x8a, 0x0b, 0x91, 0xbd, 0xef, 0x28, 0xbf, 0x9d, 0x07, 0x7c, 0xe3, - 0xad, 0xa9, 0xa9, 0xce, 0x3c, 0xf4, 0x8a, 0x38, 0x5d, 0x79, 0x7f, 0xf7, 0xad, 0xa9, 0x09, 0xf9, - 0x3b, 0x1d, 0xb4, 0x8e, 0x4e, 0xd2, 0x6d, 0xb5, 0x15, 0x56, 0xaf, 0xad, 0x89, 0x58, 0x30, 0xb5, - 0xad, 0xae, 0x51, 0x20, 0xe6, 0x65, 0xe8, 0x71, 0x18, 0xaa, 0x7a, 0xa4, 0x19, 0x06, 0x2a, 0x93, - 0x2b, 0xd3, 0xe6, 0xe7, 0x05, 0x0c, 0xab, 0x52, 0x7a, 0x86, 0x08, 0xc4, 0x96, 0x52, 0x7a, 0xc0, - 0xd6, 0x19, 0x42, 0x6e, 0x52, 0x9c, 0xab, 0xfc, 0x85, 0x15, 0x27, 0xd4, 0x80, 0x01, 0x9f, 0x19, - 0x2a, 0x44, 0xb8, 0xa9, 0x05, 0xeb, 0x08, 0x37, 0x7c, 0xc8, 0x60, 0x53, 0x26, 0xfa, 0x05, 0x0f, - 0x7d, 0xaf, 0x39, 0x75, 0x32, 0x7b, 0xcd, 0xe3, 0x30, 0x54, 0xa9, 0xfb, 0x8d, 0x6a, 0x44, 0x82, - 0xd2, 0x04, 0x3b, 0xb1, 0xb3, 0x91, 0x98, 0x13, 0x30, 0xac, 0x4a, 0xd1, 0xdf, 0x80, 0xb1, 0xb0, - 0x9d, 0x30, 0xd1, 0x42, 0xc7, 0x29, 0x2e, 0x9d, 0x66, 0xe8, 0x2c, 0x78, 0x68, 0x55, 0x2f, 0xc0, - 0x26, 0x1e, 0x15, 0xf1, 0xf5, 0x30, 0x66, 0x39, 0x69, 0x98, 0x88, 0x3f, 0x6f, 0x8a, 0xf8, 0xab, - 0x5a, 0x19, 0x36, 0x30, 0xd1, 0x57, 0x1d, 0x38, 0xdd, 0xcc, 0x1e, 0xe0, 0x4a, 0x17, 0xd8, 0xc8, - 0x94, 0x6d, 0x28, 0xfa, 0x19, 0xd2, 0x3c, 0xc6, 0xba, 0x03, 0x8c, 0x3b, 0x1b, 0xc1, 0xb2, 0x43, - 0xc5, 0xbb, 0x41, 0xa5, 0x1e, 0x85, 0x81, 0xd9, 0xbc, 0xfb, 0x6d, 0xdd, 0x89, 0x62, 0x6b, 0x3b, - 0x8f, 0xc5, 0xec, 0xfd, 0xfb, 0x7b, 0x53, 0xe7, 0x72, 0x8b, 0x70, 0x7e, 0xa3, 0x26, 0xe7, 0xe1, - 0x7c, 0xbe, 0x7c, 0xb8, 0xd3, 0x89, 0xa3, 0x4f, 0x3f, 0x71, 0x2c, 0xc0, 0xfd, 0x5d, 0x1b, 0x45, - 0x77, 0x1a, 0xa9, 0x6d, 0x3a, 0xe6, 0x4e, 0xd3, 0xa1, 0x1d, 0x8e, 0xc3, 0xa8, 0xfe, 0x70, 0x81, - 0xfb, 0x7f, 0xfa, 0x00, 0x52, 0x3b, 0x39, 0xf2, 0x60, 0x9c, 0xdb, 0xe4, 0xaf, 0xcd, 0x1f, 0xf9, - 0x36, 0xf7, 0x9c, 0x41, 0x00, 0x67, 0x08, 0xa2, 0x26, 0x20, 0x0e, 0xe1, 0xbf, 0x8f, 0xe2, 0x5b, - 0x65, 0xae, 0xc8, 0xb9, 0x0e, 0x22, 0x38, 0x87, 0x30, 0xed, 0x51, 0x12, 0x6e, 0x91, 0xe0, 0x06, - 0x5e, 0x3e, 0x4a, 0x4a, 0x00, 0xee, 0x8d, 0x33, 0x08, 0xe0, 0x0c, 0x41, 0xe4, 0xc2, 0x00, 0xb3, - 0xcd, 0xc8, 0x00, 0x6d, 0x26, 0x5e, 0x98, 0xa6, 0x11, 0x63, 0x51, 0x82, 0xbe, 0xec, 0xc0, 0xb8, - 0xcc, 0x6c, 0xc0, 0xac, 0xa1, 0x32, 0x34, 0xfb, 0x86, 0x2d, 0x3f, 0xc7, 0x15, 0x9d, 0x7a, 0x1a, - 0xf8, 0x68, 0x80, 0x63, 0x9c, 0x69, 0x84, 0xfb, 0x02, 0x9c, 0xc9, 0xa9, 0x6e, 0xe5, 0x44, 0xfb, - 0x1d, 0x07, 0x46, 0xb4, 0x84, 0x7b, 0xe8, 0x35, 0x18, 0x0e, 0xcb, 0xd6, 0xa3, 0xed, 0x56, 0xcb, - 0x1d, 0xd1, 0x76, 0x0a, 0x84, 0x53, 0x86, 0xbd, 0x04, 0x09, 0xe6, 0x66, 0x07, 0xbc, 0xc7, 0xcd, - 0x3e, 0x74, 0x90, 0xe0, 0xaf, 0x14, 0x21, 0xa5, 0x74, 0xc8, 0x8c, 0x1b, 0x69, 0x48, 0x61, 0xe1, - 0xc0, 0x90, 0xc2, 0x2a, 0x9c, 0xf2, 0x98, 0x2f, 0xf9, 0x88, 0x79, 0x36, 0x78, 0xbe, 0x55, 0x93, - 0x02, 0xce, 0x92, 0xa4, 0x5c, 0xe2, 0xb4, 0x2a, 0xe3, 0xd2, 0x7f, 0x68, 0x2e, 0x65, 0x93, 0x02, - 0xce, 0x92, 0x44, 0x2f, 0x41, 0xa9, 0xc2, 0xee, 0x8d, 0xf2, 0x3e, 0x5e, 0xdb, 0xbc, 0x1e, 0x26, - 0x6b, 0x11, 0x89, 0x49, 0x90, 0x88, 0x8c, 0x5a, 0x0f, 0x8b, 0x51, 0x28, 0xcd, 0x75, 0xc1, 0xc3, - 0x5d, 0x29, 0xd0, 0x63, 0x0a, 0x73, 0x46, 0xfb, 0xc9, 0x2e, 0x13, 0x22, 0xc2, 0x4b, 0xaf, 0x8e, - 0x29, 0x65, 0xbd, 0x10, 0x9b, 0xb8, 0xe8, 0x97, 0x1d, 0x18, 0x6b, 0x48, 0x73, 0x3d, 0x6e, 0x37, - 0x64, 0x7a, 0x48, 0x6c, 0x65, 0xfa, 0x2d, 0xeb, 0x94, 0xb9, 0x2e, 0x61, 0x80, 0xb0, 0xc9, 0x3b, - 0x9b, 0xf4, 0x64, 0xa8, 0xc7, 0xa4, 0x27, 0xdf, 0x77, 0x60, 0x22, 0xcb, 0x0d, 0x6d, 0xc1, 0x43, - 0x4d, 0x2f, 0xda, 0xba, 0x16, 0x6c, 0x46, 0xec, 0x22, 0x46, 0xc2, 0x27, 0xc3, 0xcc, 0x66, 0x42, - 0xa2, 0x79, 0x6f, 0x97, 0xbb, 0x3f, 0x8b, 0xea, 0x7d, 0xa1, 0x87, 0x56, 0x0e, 0x42, 0xc6, 0x07, - 0xd3, 0x42, 0x65, 0x38, 0x47, 0x11, 0x58, 0x4e, 0x34, 0x3f, 0x0c, 0x52, 0x26, 0x05, 0xc6, 0x44, - 0x05, 0x03, 0xae, 0xe4, 0x21, 0xe1, 0xfc, 0xba, 0xee, 0x15, 0x18, 0xe0, 0x97, 0xd0, 0xee, 0xca, - 0x7f, 0xe4, 0xfe, 0xfb, 0x02, 0x48, 0xc5, 0xf0, 0xaf, 0xb7, 0x3b, 0x8e, 0x6e, 0xa2, 0x11, 0x33, - 0x29, 0x09, 0x6b, 0x07, 0xdb, 0x44, 0x45, 0xf6, 0x41, 0x51, 0x42, 0x35, 0x66, 0x72, 0xcb, 0x4f, - 0xe6, 0xc2, 0xaa, 0xb4, 0x71, 0x30, 0x8d, 0xf9, 0x8a, 0x80, 0x61, 0x55, 0xea, 0x7e, 0xd2, 0x81, - 0x31, 0xda, 0xcb, 0x46, 0x83, 0x34, 0xca, 0x09, 0x69, 0xc5, 0x28, 0x86, 0x62, 0x4c, 0xff, 0xb1, - 0x67, 0x0a, 0x4c, 0x2f, 0x2e, 0x92, 0x96, 0xe6, 0xac, 0xa1, 0x4c, 0x30, 0xe7, 0xe5, 0xbe, 0xd9, - 0x07, 0xc3, 0x6a, 0xb0, 0x7b, 0xb0, 0xa7, 0x5e, 0x4e, 0x13, 0x83, 0x72, 0x09, 0x5c, 0xd2, 0x92, - 0x82, 0xde, 0xa6, 0x43, 0x17, 0xec, 0xf2, 0x0c, 0x09, 0x69, 0x86, 0xd0, 0x27, 0x4d, 0x57, 0xf3, - 0x79, 0x7d, 0xfe, 0x69, 0xf8, 0xc2, 0xe7, 0x7c, 0x4b, 0xf7, 0xf4, 0xf7, 0xdb, 0xda, 0xcd, 0x94, - 0x1b, 0xb3, 0xbb, 0x8b, 0x3f, 0xf3, 0x66, 0x4c, 0xb1, 0xa7, 0x37, 0x63, 0x9e, 0x80, 0x7e, 0x12, - 0xb4, 0x9b, 0x4c, 0x55, 0x1a, 0x66, 0x47, 0x84, 0xfe, 0x2b, 0x41, 0xbb, 0x69, 0xf6, 0x8c, 0xa1, - 0xa0, 0xf7, 0xc1, 0x48, 0x95, 0xc4, 0x95, 0xc8, 0x67, 0xd7, 0xfe, 0x85, 0x65, 0xe7, 0x41, 0x66, - 0x2e, 0x4b, 0xc1, 0x66, 0x45, 0xbd, 0x82, 0xfb, 0x0a, 0x0c, 0xac, 0x35, 0xda, 0x35, 0x3f, 0x40, - 0x2d, 0x18, 0xe0, 0x49, 0x00, 0xc4, 0x6e, 0x6f, 0xe1, 0xdc, 0xc9, 0x45, 0x85, 0x16, 0x85, 0xc2, - 0xef, 0xaf, 0x0a, 0x3e, 0xee, 0x6f, 0x15, 0x80, 0x1e, 0xcd, 0x17, 0xe7, 0xd0, 0xdf, 0xee, 0x78, - 0x22, 0xe5, 0x67, 0x72, 0x9e, 0x48, 0x19, 0x63, 0xc8, 0x39, 0xaf, 0xa3, 0x34, 0x60, 0x8c, 0x39, - 0x47, 0xe4, 0x1e, 0x28, 0xd4, 0xea, 0xa7, 0x7b, 0xbc, 0x37, 0xaf, 0x57, 0x15, 0x3b, 0x82, 0x0e, - 0xc2, 0x26, 0x71, 0xb4, 0x0b, 0x67, 0x78, 0x7e, 0xc9, 0x79, 0xd2, 0xf0, 0x76, 0x8d, 0x3c, 0x52, - 0x3d, 0xdf, 0xd5, 0x97, 0xb5, 0x78, 0x80, 0xf7, 0x7c, 0x27, 0x39, 0x9c, 0xc7, 0xc3, 0xfd, 0xbd, - 0x7e, 0xd0, 0xdc, 0x17, 0x3d, 0xac, 0xac, 0x8f, 0x66, 0x9c, 0x55, 0x2b, 0x56, 0x9c, 0x55, 0xd2, - 0x03, 0xc4, 0xa5, 0x95, 0xe9, 0x9f, 0xa2, 0x8d, 0xaa, 0x93, 0x46, 0x4b, 0xac, 0x4b, 0xd5, 0xa8, - 0xab, 0xa4, 0xd1, 0xc2, 0xac, 0x44, 0x5d, 0x3e, 0xec, 0xef, 0x7a, 0xf9, 0xb0, 0x0e, 0xc5, 0x9a, - 0xd7, 0xae, 0x11, 0x11, 0xad, 0x69, 0xc1, 0x2f, 0xc9, 0xae, 0x43, 0x70, 0xbf, 0x24, 0xfb, 0x17, - 0x73, 0x06, 0x54, 0x30, 0xd4, 0x65, 0xf8, 0x8a, 0x30, 0xe8, 0x5a, 0x10, 0x0c, 0x2a, 0x22, 0x86, - 0x0b, 0x06, 0xf5, 0x13, 0xa7, 0xcc, 0x50, 0x0b, 0x06, 0x2b, 0x3c, 0xd3, 0x87, 0xd0, 0x6f, 0xae, - 0xd9, 0xb8, 0x5d, 0xc9, 0x08, 0x72, 0xcb, 0x8b, 0xf8, 0x81, 0x25, 0x1b, 0xf7, 0x12, 0x8c, 0x68, - 0xaf, 0x3a, 0xd0, 0xcf, 0xa0, 0x92, 0x4c, 0x68, 0x9f, 0x61, 0xde, 0x4b, 0x3c, 0xcc, 0x4a, 0xdc, - 0x6f, 0xf6, 0x83, 0xb2, 0xbb, 0xe9, 0x77, 0x01, 0xbd, 0x8a, 0x96, 0x12, 0xc7, 0xb8, 0x84, 0x1e, - 0x06, 0x58, 0x94, 0x52, 0x1d, 0xb0, 0x49, 0xa2, 0x9a, 0x3a, 0x73, 0x0b, 0xd1, 0xae, 0x74, 0xc0, - 0x15, 0xbd, 0x10, 0x9b, 0xb8, 0x54, 0x81, 0x6f, 0x0a, 0x77, 0x7e, 0x36, 0x58, 0x5a, 0xba, 0xf9, - 0xb1, 0xc2, 0x40, 0x9f, 0x74, 0x60, 0xb4, 0xa9, 0x79, 0xff, 0x45, 0xd0, 0xa6, 0x0d, 0xe7, 0x93, - 0x46, 0x95, 0x07, 0x57, 0xe9, 0x10, 0x6c, 0x70, 0x45, 0x8b, 0x70, 0x3a, 0x26, 0xc9, 0xea, 0x4e, - 0x40, 0x22, 0x75, 0x47, 0x5f, 0x24, 0x6d, 0x50, 0x37, 0x25, 0xca, 0x59, 0x04, 0xdc, 0x59, 0x27, - 0x37, 0xce, 0xb5, 0x78, 0xe8, 0x38, 0xd7, 0x79, 0x98, 0xd8, 0xf4, 0xfc, 0x46, 0x3b, 0x22, 0x5d, - 0xa3, 0x65, 0x17, 0x32, 0xe5, 0xb8, 0xa3, 0x06, 0xbb, 0xac, 0xd3, 0xf0, 0x6a, 0x71, 0x69, 0x50, - 0xbb, 0xac, 0x43, 0x01, 0x98, 0xc3, 0xdd, 0xdf, 0x70, 0x80, 0x67, 0xcb, 0x99, 0xd9, 0xdc, 0xf4, - 0x03, 0x3f, 0xd9, 0x45, 0x5f, 0x73, 0x60, 0x22, 0x08, 0xab, 0x64, 0x26, 0x48, 0x7c, 0x09, 0xb4, - 0x97, 0xc2, 0x9c, 0xf1, 0xba, 0x9e, 0x21, 0xcf, 0x53, 0x2f, 0x64, 0xa1, 0xb8, 0xa3, 0x19, 0xee, - 0x05, 0x38, 0x97, 0x4b, 0xc0, 0xfd, 0x7e, 0x1f, 0x98, 0x49, 0x7f, 0xd0, 0x73, 0x50, 0x6c, 0xb0, - 0x34, 0x14, 0xce, 0x11, 0xb3, 0x39, 0xb1, 0xb1, 0xe2, 0x79, 0x2a, 0x38, 0x25, 0x34, 0x0f, 0x23, - 0x2c, 0x93, 0x90, 0x48, 0x12, 0xc2, 0x57, 0x84, 0x9b, 0xbe, 0x9c, 0xa6, 0x8a, 0x6e, 0x9b, 0x3f, - 0xb1, 0x5e, 0x0d, 0xbd, 0x0a, 0x83, 0x1b, 0x3c, 0x9f, 0xa2, 0x3d, 0xff, 0xa0, 0x48, 0xd0, 0xc8, - 0xf4, 0x28, 0x99, 0xad, 0xf1, 0x76, 0xfa, 0x2f, 0x96, 0x1c, 0xd1, 0x2e, 0x0c, 0x79, 0xf2, 0x9b, - 0xf6, 0xdb, 0xba, 0x7c, 0x61, 0xcc, 0x1f, 0x11, 0x5d, 0x23, 0xbf, 0xa1, 0x62, 0x97, 0x09, 0x43, - 0x2a, 0xf6, 0x14, 0x86, 0xf4, 0x6d, 0x07, 0x20, 0x7d, 0x7c, 0x02, 0xdd, 0x82, 0xa1, 0xf8, 0x69, - 0xc3, 0xa8, 0x61, 0xe3, 0xd6, 0xbd, 0xa0, 0xa8, 0xdd, 0x4c, 0x15, 0x10, 0xac, 0xb8, 0xdd, 0xc9, - 0x10, 0xf3, 0x53, 0x07, 0xce, 0xe6, 0x3d, 0x92, 0x71, 0x0f, 0x5b, 0x7c, 0x58, 0x1b, 0x8c, 0xa8, - 0xb0, 0x16, 0x91, 0x4d, 0xff, 0x56, 0x4e, 0x56, 0x5f, 0x5e, 0x80, 0x53, 0x1c, 0xf7, 0x8d, 0x41, - 0x50, 0x8c, 0x8f, 0xc9, 0x66, 0xf3, 0x18, 0x3d, 0x5f, 0xd5, 0xd2, 0xcb, 0x92, 0x0a, 0x0f, 0x33, - 0x28, 0x16, 0xa5, 0xf4, 0x8c, 0x25, 0x03, 0xe8, 0x85, 0xc8, 0x66, 0xb3, 0x50, 0x06, 0xda, 0x63, - 0x55, 0x9a, 0x67, 0x05, 0x2a, 0x9e, 0x88, 0x15, 0x68, 0xc0, 0xbe, 0x15, 0xe8, 0x09, 0x18, 0x8c, - 0xc2, 0x06, 0x99, 0xc1, 0xd7, 0xc5, 0xc9, 0x21, 0x0d, 0x80, 0xe0, 0x60, 0x2c, 0xcb, 0x8f, 0x68, - 0x07, 0x41, 0xbf, 0xed, 0x1c, 0x60, 0x68, 0x1a, 0xb6, 0xb5, 0x27, 0xe4, 0xa6, 0x40, 0x63, 0xc7, - 0xa0, 0xa3, 0x58, 0xaf, 0xbe, 0xee, 0xc0, 0x69, 0x12, 0x54, 0xa2, 0x5d, 0x46, 0x47, 0x50, 0x13, - 0xfe, 0xe9, 0x1b, 0x36, 0x16, 0xdf, 0x95, 0x2c, 0x71, 0xee, 0x06, 0xea, 0x00, 0xe3, 0xce, 0x66, - 0xa0, 0x55, 0x18, 0xaa, 0x78, 0x62, 0x46, 0x8c, 0x1c, 0x66, 0x46, 0x70, 0x2f, 0xdb, 0x8c, 0x98, - 0x0a, 0x8a, 0x88, 0xfb, 0xe3, 0x02, 0x9c, 0xc9, 0x69, 0x12, 0xbb, 0x6c, 0xd5, 0xa4, 0x33, 0xf2, - 0x5a, 0x35, 0xbb, 0x1e, 0x97, 0x04, 0x1c, 0x2b, 0x0c, 0xb4, 0x06, 0x67, 0xb7, 0x9a, 0x71, 0x4a, - 0x65, 0x2e, 0x0c, 0x12, 0x72, 0x4b, 0xae, 0x4e, 0xe9, 0xbb, 0x3e, 0xbb, 0x94, 0x83, 0x83, 0x73, - 0x6b, 0x52, 0xf5, 0x85, 0x04, 0xde, 0x46, 0x83, 0xa4, 0x45, 0xe2, 0xaa, 0xa0, 0x52, 0x5f, 0xae, - 0x64, 0xca, 0x71, 0x47, 0x0d, 0xf4, 0x59, 0x07, 0x1e, 0x88, 0x49, 0xb4, 0x4d, 0xa2, 0xb2, 0x5f, - 0x25, 0x73, 0xed, 0x38, 0x09, 0x9b, 0x24, 0x3a, 0xa2, 0x69, 0x75, 0x6a, 0x7f, 0x6f, 0xea, 0x81, - 0x72, 0x77, 0x6a, 0xf8, 0x20, 0x56, 0xee, 0x67, 0x1d, 0x18, 0x2f, 0xb3, 0x83, 0xb7, 0xd2, 0xa5, - 0x6d, 0x27, 0xc1, 0x7c, 0x4c, 0x25, 0xb7, 0xc8, 0x48, 0x45, 0x33, 0x1d, 0x85, 0xfb, 0x32, 0x4c, - 0x94, 0x49, 0xd3, 0x6b, 0xd5, 0xd9, 0x3d, 0x5f, 0x1e, 0xbb, 0x75, 0x09, 0x86, 0x63, 0x09, 0xcb, - 0xbe, 0x7b, 0xa3, 0x90, 0x71, 0x8a, 0x83, 0x1e, 0xe5, 0x71, 0x66, 0xf2, 0xb6, 0xd0, 0x30, 0x3f, - 0x75, 0xf0, 0xe0, 0xb4, 0x18, 0xcb, 0x32, 0xf7, 0x4d, 0x07, 0x46, 0xd3, 0xfa, 0x64, 0x13, 0xd5, - 0xe0, 0x54, 0x45, 0xbb, 0x69, 0x97, 0xde, 0x71, 0xe8, 0xfd, 0x52, 0x1e, 0xcf, 0xcd, 0x6b, 0x12, - 0xc1, 0x59, 0xaa, 0x87, 0x0f, 0xd3, 0xfb, 0x42, 0x01, 0x4e, 0xa9, 0xa6, 0x0a, 0x27, 0xe3, 0xeb, - 0xd9, 0x68, 0x3a, 0x6c, 0x23, 0x4d, 0x8f, 0x39, 0xf6, 0x07, 0x44, 0xd4, 0xbd, 0x9e, 0x8d, 0xa8, - 0x3b, 0x56, 0xf6, 0x1d, 0x7e, 0xd3, 0x6f, 0x17, 0x60, 0x48, 0x25, 0x0d, 0x7a, 0x0e, 0x8a, 0xec, - 0x28, 0x79, 0x77, 0x0a, 0x31, 0x3b, 0x96, 0x62, 0x4e, 0x89, 0x92, 0x64, 0x11, 0x3b, 0x47, 0xce, - 0x98, 0x3a, 0xcc, 0x8d, 0x8f, 0x5e, 0x94, 0x60, 0x4e, 0x09, 0x2d, 0x41, 0x1f, 0x09, 0xaa, 0x42, - 0x33, 0x3e, 0x3c, 0x41, 0xf6, 0x42, 0xd5, 0x95, 0xa0, 0x8a, 0x29, 0x15, 0x96, 0xb6, 0x93, 0x2b, - 0x40, 0x99, 0xf7, 0x48, 0x84, 0xf6, 0x23, 0x4a, 0xdd, 0x5f, 0xee, 0x83, 0x81, 0x72, 0x7b, 0x83, - 0xea, 0xf8, 0xdf, 0x72, 0xe0, 0xcc, 0x4e, 0x26, 0x9d, 0x70, 0x3a, 0xc7, 0x6f, 0xd8, 0x33, 0xc0, - 0xea, 0x51, 0x63, 0x0f, 0xc8, 0xc7, 0xd6, 0x73, 0x0a, 0x71, 0x5e, 0x73, 0x8c, 0x8c, 0x9e, 0x7d, - 0xc7, 0x92, 0xd1, 0xf3, 0xd6, 0x31, 0x5f, 0x9b, 0x18, 0xeb, 0x76, 0x65, 0xc2, 0xfd, 0xbd, 0x22, - 0x00, 0xff, 0x1a, 0xab, 0xad, 0xa4, 0x17, 0x33, 0xd9, 0x33, 0x30, 0x5a, 0x23, 0x01, 0x89, 0x64, - 0x4c, 0x60, 0xe6, 0xa9, 0x9b, 0x45, 0xad, 0x0c, 0x1b, 0x98, 0xec, 0x4c, 0x12, 0x24, 0xd1, 0x2e, - 0xd7, 0x5b, 0xb3, 0x57, 0x23, 0x54, 0x09, 0xd6, 0xb0, 0xd0, 0xb4, 0xe1, 0xf1, 0xe0, 0xce, 0xf3, - 0xf1, 0x03, 0x1c, 0x14, 0xef, 0x83, 0x71, 0x33, 0xcf, 0x88, 0x50, 0xd6, 0x94, 0xb3, 0xdb, 0x4c, - 0x4f, 0x82, 0x33, 0xd8, 0x74, 0x12, 0x57, 0xa3, 0x5d, 0xdc, 0x0e, 0x84, 0xd6, 0xa6, 0x26, 0xf1, - 0x3c, 0x83, 0x62, 0x51, 0xca, 0x12, 0x34, 0xb0, 0xfd, 0x8b, 0xc3, 0x45, 0x92, 0x87, 0x34, 0x41, - 0x83, 0x56, 0x86, 0x0d, 0x4c, 0xca, 0x41, 0x98, 0x19, 0xc1, 0x5c, 0x26, 0x19, 0xdb, 0x60, 0x0b, - 0xc6, 0x43, 0xd3, 0x3c, 0xc2, 0x55, 0x98, 0x77, 0xf5, 0x38, 0xf5, 0x8c, 0xba, 0x3c, 0x48, 0x21, - 0x63, 0x4d, 0xc9, 0xd0, 0xa7, 0x6a, 0xab, 0x7e, 0x83, 0x60, 0xd4, 0x0c, 0x29, 0xed, 0x1a, 0xe4, - 0xbf, 0x06, 0x67, 0x5b, 0x61, 0x75, 0x2d, 0xf2, 0xc3, 0xc8, 0x4f, 0x76, 0xe7, 0x1a, 0x5e, 0x1c, - 0xb3, 0x89, 0x31, 0x66, 0xaa, 0x33, 0x6b, 0x39, 0x38, 0x38, 0xb7, 0x26, 0x3d, 0x60, 0xb4, 0x04, - 0x90, 0x05, 0x76, 0x15, 0xb9, 0x42, 0x26, 0x11, 0xb1, 0x2a, 0x75, 0xcf, 0xc0, 0xe9, 0x72, 0xbb, - 0xd5, 0x6a, 0xf8, 0xa4, 0xaa, 0x3c, 0x0a, 0xee, 0xfb, 0xe1, 0x94, 0xc8, 0xf7, 0xa9, 0x94, 0x87, - 0x43, 0x65, 0xa7, 0x76, 0xff, 0xc2, 0x81, 0x53, 0x99, 0x30, 0x1a, 0xf4, 0x6a, 0x76, 0xcb, 0xb7, - 0x62, 0x33, 0xd3, 0x37, 0x7b, 0xbe, 0x48, 0x73, 0xd5, 0x87, 0xba, 0x8c, 0x81, 0xb7, 0x76, 0xf7, - 0x84, 0x45, 0x8a, 0xf3, 0x1d, 0x41, 0x0f, 0xa4, 0x77, 0x3f, 0x53, 0x80, 0xfc, 0xd8, 0x25, 0xf4, - 0xb1, 0xce, 0x01, 0x78, 0xce, 0xe2, 0x00, 0x88, 0xe0, 0xa9, 0xee, 0x63, 0x10, 0x98, 0x63, 0xb0, - 0x62, 0x69, 0x0c, 0x04, 0xdf, 0xce, 0x91, 0xf8, 0x9f, 0x0e, 0x8c, 0xac, 0xaf, 0x2f, 0x2b, 0x13, - 0x17, 0x86, 0xf3, 0x31, 0xbf, 0x5b, 0xcf, 0x5c, 0xbc, 0x73, 0x61, 0xb3, 0xc5, 0x3d, 0xbe, 0xc2, - 0x13, 0xcd, 0x52, 0xaf, 0x96, 0x73, 0x31, 0x70, 0x97, 0x9a, 0xe8, 0x1a, 0x9c, 0xd1, 0x4b, 0xca, - 0xda, 0x4b, 0x77, 0x45, 0x91, 0xcf, 0xa6, 0xb3, 0x18, 0xe7, 0xd5, 0xc9, 0x92, 0x12, 0xd6, 0x4a, - 0xb6, 0x5d, 0xe5, 0x90, 0x12, 0xc5, 0x38, 0xaf, 0x8e, 0xbb, 0x0a, 0x23, 0xeb, 0x5e, 0xa4, 0x3a, - 0xfe, 0x01, 0x98, 0xa8, 0x84, 0x4d, 0x69, 0x25, 0x5a, 0x26, 0xdb, 0xa4, 0x21, 0xba, 0xcc, 0x9f, - 0x97, 0xc8, 0x94, 0xe1, 0x0e, 0x6c, 0xf7, 0xbf, 0x5f, 0x04, 0x75, 0x57, 0xb0, 0x87, 0x1d, 0xa6, - 0xa5, 0xa2, 0x3a, 0x8b, 0x96, 0xa3, 0x3a, 0x95, 0xac, 0xcd, 0x44, 0x76, 0x26, 0x69, 0x64, 0xe7, - 0x80, 0xed, 0xc8, 0x4e, 0xa5, 0x30, 0x76, 0x44, 0x77, 0x7e, 0xc5, 0x81, 0xd1, 0x20, 0xac, 0x12, - 0xe5, 0x8a, 0x1b, 0x64, 0x5a, 0xeb, 0x4b, 0xf6, 0x82, 0xe4, 0x79, 0x94, 0xa2, 0x20, 0xcf, 0x23, - 0x8e, 0xd5, 0x16, 0xa5, 0x17, 0x61, 0xa3, 0x1d, 0x68, 0x41, 0xb3, 0x5b, 0x72, 0xf7, 0xc0, 0x83, - 0x79, 0xc7, 0x8d, 0x3b, 0x1a, 0x21, 0x6f, 0x69, 0x7a, 0xd3, 0xb0, 0x2d, 0x7b, 0x9c, 0xbc, 0x00, - 0xa6, 0x79, 0x39, 0x64, 0xf6, 0xe0, 0x54, 0x9f, 0x72, 0x61, 0x80, 0x87, 0x26, 0x8b, 0xcc, 0x49, - 0xcc, 0xf9, 0xc6, 0xc3, 0x96, 0xb1, 0x28, 0x41, 0x89, 0x74, 0xf7, 0x8f, 0xd8, 0x7a, 0x0b, 0xc0, - 0x08, 0x27, 0xc8, 0xf7, 0xf7, 0xa3, 0x67, 0xf5, 0x63, 0xec, 0x68, 0x2f, 0xc7, 0xd8, 0xb1, 0xae, - 0x47, 0xd8, 0xcf, 0x3b, 0x30, 0x5a, 0xd1, 0x72, 0xf3, 0x97, 0x1e, 0xb7, 0xf5, 0x06, 0x71, 0xde, - 0x13, 0x0a, 0xdc, 0xa7, 0x63, 0xbc, 0x05, 0x60, 0x70, 0x67, 0xe9, 0x22, 0xd9, 0x99, 0x9d, 0x6d, - 0xfd, 0x56, 0x32, 0x44, 0x98, 0x36, 0x00, 0x19, 0x36, 0x49, 0x61, 0x58, 0xf0, 0x42, 0xaf, 0xc1, - 0x90, 0x8c, 0x6e, 0x17, 0x51, 0xe0, 0xd8, 0x86, 0x91, 0xdd, 0xf4, 0xe4, 0xc9, 0x1c, 0x73, 0x1c, - 0x8a, 0x15, 0x47, 0x54, 0x87, 0xbe, 0xaa, 0x57, 0x13, 0xf1, 0xe0, 0x2b, 0x76, 0x72, 0x78, 0x4a, - 0x9e, 0xec, 0x78, 0x35, 0x3f, 0xb3, 0x88, 0x29, 0x0b, 0x74, 0x2b, 0x4d, 0x6e, 0x3e, 0x61, 0x6d, - 0xf7, 0x35, 0xd5, 0x24, 0x6e, 0x95, 0xe8, 0xc8, 0x95, 0x5e, 0x15, 0xce, 0xcf, 0xff, 0x8f, 0xb1, - 0x5d, 0xb0, 0x93, 0x04, 0x94, 0x67, 0x1c, 0x49, 0x1d, 0xa8, 0x94, 0x4b, 0x3d, 0x49, 0x5a, 0xa5, - 0x9f, 0xb5, 0xc5, 0x85, 0xe5, 0xcd, 0xe0, 0xcf, 0x45, 0xaf, 0xaf, 0xaf, 0x61, 0x46, 0x1d, 0x35, - 0x60, 0xa0, 0xc5, 0x62, 0x38, 0x4a, 0x3f, 0x67, 0x6b, 0x6f, 0xe1, 0x31, 0x21, 0x7c, 0x6e, 0xf2, - 0xff, 0xb1, 0xe0, 0x81, 0xae, 0xc0, 0x20, 0x7f, 0xa3, 0x83, 0xc7, 0xe3, 0x8f, 0x5c, 0x9e, 0xec, - 0xfe, 0xd2, 0x47, 0xba, 0x51, 0xf0, 0xdf, 0x31, 0x96, 0x75, 0xd1, 0x17, 0x1c, 0x18, 0xa7, 0x12, - 0x35, 0x7d, 0x54, 0xa4, 0x84, 0x6c, 0xc9, 0xac, 0x1b, 0x31, 0xd5, 0x48, 0xa4, 0xac, 0x51, 0xc7, - 0xa4, 0x6b, 0x06, 0x3b, 0x9c, 0x61, 0x8f, 0x5e, 0x87, 0xa1, 0xd8, 0xaf, 0x92, 0x8a, 0x17, 0xc5, - 0xa5, 0x33, 0xc7, 0xd3, 0x94, 0xd4, 0xdd, 0x22, 0x18, 0x61, 0xc5, 0x32, 0xf7, 0xed, 0xff, 0xb3, - 0xf7, 0xf8, 0xed, 0xff, 0xbf, 0xe3, 0xc0, 0x39, 0x9e, 0x53, 0x3e, 0xfb, 0xa0, 0xc0, 0xb9, 0x23, - 0x9a, 0x57, 0xd8, 0x45, 0x82, 0x99, 0x3c, 0x92, 0x38, 0x9f, 0x13, 0x4b, 0x4a, 0x6b, 0xbe, 0x01, - 0x73, 0xde, 0xaa, 0xdb, 0xb1, 0xf7, 0x77, 0x5f, 0xd0, 0x53, 0x30, 0xd2, 0x12, 0xdb, 0xa1, 0x1f, - 0x37, 0xd9, 0xb5, 0x90, 0x3e, 0x7e, 0x61, 0x6f, 0x2d, 0x05, 0x63, 0x1d, 0xc7, 0xc8, 0x50, 0xfc, - 0xc4, 0x41, 0x19, 0x8a, 0xd1, 0x0d, 0x18, 0x49, 0xc2, 0x86, 0x48, 0xd2, 0x19, 0x97, 0x4a, 0x6c, - 0x06, 0x5e, 0xcc, 0x5b, 0x5b, 0xeb, 0x0a, 0x2d, 0x3d, 0xc9, 0xa6, 0xb0, 0x18, 0xeb, 0x74, 0x58, - 0x28, 0xae, 0xc8, 0xd5, 0x1f, 0xb1, 0x23, 0xec, 0xfd, 0x99, 0x50, 0x5c, 0xbd, 0x10, 0x9b, 0xb8, - 0x68, 0x11, 0x4e, 0xb7, 0x3a, 0xce, 0xc0, 0xfc, 0x3a, 0x9a, 0x8a, 0x68, 0xe8, 0x3c, 0x00, 0x77, - 0xd6, 0x31, 0x4e, 0xbf, 0x0f, 0x1c, 0x74, 0xfa, 0xed, 0x92, 0xaf, 0xf7, 0xc1, 0xa3, 0xe4, 0xeb, - 0x45, 0x55, 0x78, 0xd0, 0x6b, 0x27, 0x21, 0xcb, 0x0d, 0x63, 0x56, 0xe1, 0x51, 0xc9, 0x0f, 0xf3, - 0x40, 0xe7, 0xfd, 0xbd, 0xa9, 0x07, 0x67, 0x0e, 0xc0, 0xc3, 0x07, 0x52, 0x41, 0xaf, 0xc0, 0x10, - 0x11, 0x39, 0x87, 0x4b, 0x3f, 0x63, 0x4b, 0x49, 0x30, 0xb3, 0x18, 0xcb, 0x80, 0x4f, 0x0e, 0xc3, - 0x8a, 0x1f, 0x5a, 0x87, 0x91, 0x7a, 0x18, 0x27, 0x33, 0x0d, 0xdf, 0x8b, 0x49, 0x5c, 0x7a, 0x88, - 0x4d, 0x9a, 0x5c, 0xdd, 0xeb, 0xaa, 0x44, 0x4b, 0xe7, 0xcc, 0xd5, 0xb4, 0x26, 0xd6, 0xc9, 0x20, - 0xc2, 0x9c, 0x8f, 0x2c, 0x24, 0x5b, 0xfa, 0x71, 0x2e, 0xb2, 0x8e, 0x3d, 0x96, 0x47, 0x79, 0x2d, - 0xac, 0x96, 0x4d, 0x6c, 0xe5, 0x7d, 0xd4, 0x81, 0x38, 0x4b, 0x13, 0x3d, 0x03, 0xa3, 0xad, 0xb0, - 0x5a, 0x6e, 0x91, 0xca, 0x9a, 0x97, 0x54, 0xea, 0xa5, 0x29, 0xd3, 0xea, 0xb6, 0xa6, 0x95, 0x61, - 0x03, 0x13, 0xb5, 0x60, 0xb0, 0xc9, 0x93, 0x06, 0x94, 0x1e, 0xb1, 0x75, 0xb6, 0x11, 0x59, 0x08, - 0xb8, 0xbe, 0x20, 0x7e, 0x60, 0xc9, 0x06, 0xfd, 0x13, 0x07, 0x4e, 0x65, 0x2e, 0x3a, 0x95, 0xde, - 0x61, 0x4d, 0x65, 0x31, 0x09, 0xcf, 0x3e, 0xc6, 0x86, 0xcf, 0x04, 0xde, 0xee, 0x04, 0xe1, 0x6c, - 0x8b, 0xf8, 0xb8, 0xb0, 0xcc, 0x1f, 0xa5, 0x47, 0xed, 0x8d, 0x0b, 0x23, 0x28, 0xc7, 0x85, 0xfd, - 0xc0, 0x92, 0x0d, 0x7a, 0x02, 0x06, 0x45, 0x92, 0xbe, 0xd2, 0x63, 0xa6, 0x07, 0x59, 0xe4, 0xf2, - 0xc3, 0xb2, 0x7c, 0xf2, 0xfd, 0x70, 0xba, 0xe3, 0xe8, 0x76, 0xa8, 0xf4, 0x13, 0xbf, 0xee, 0x80, - 0x7e, 0x33, 0xda, 0xfa, 0x43, 0x1f, 0xcf, 0xc0, 0x68, 0x85, 0x3f, 0x07, 0xc8, 0xef, 0x56, 0xf7, - 0x9b, 0xf6, 0xcf, 0x39, 0xad, 0x0c, 0x1b, 0x98, 0xee, 0x55, 0x40, 0x9d, 0x59, 0xd8, 0x8f, 0x94, - 0xdb, 0xe8, 0x9f, 0x39, 0x30, 0x66, 0xe8, 0x0c, 0xd6, 0x7d, 0x84, 0x0b, 0x80, 0x9a, 0x7e, 0x14, - 0x85, 0x91, 0xfe, 0xee, 0x9a, 0xc8, 0x7f, 0xc0, 0x6e, 0x98, 0xad, 0x74, 0x94, 0xe2, 0x9c, 0x1a, - 0xee, 0x6f, 0xf5, 0x43, 0x1a, 0xf1, 0xac, 0xd2, 0xdc, 0x3a, 0x5d, 0xd3, 0xdc, 0x3e, 0x09, 0x43, - 0x2f, 0xc7, 0x61, 0xb0, 0x96, 0x26, 0xc3, 0x55, 0xdf, 0xe2, 0xd9, 0xf2, 0xea, 0x75, 0x86, 0xa9, - 0x30, 0x18, 0xf6, 0x47, 0x17, 0xfc, 0x46, 0xd2, 0x99, 0x2d, 0xf5, 0xd9, 0xe7, 0x38, 0x1c, 0x2b, - 0x0c, 0xf6, 0x04, 0xdb, 0x36, 0x51, 0x86, 0xf1, 0xf4, 0x09, 0x36, 0xfe, 0xc0, 0x02, 0x2b, 0x43, - 0x97, 0x60, 0x58, 0x19, 0xd5, 0x85, 0xa5, 0x5e, 0x8d, 0x94, 0xb2, 0xbc, 0xe3, 0x14, 0x87, 0x29, - 0x84, 0xc2, 0x10, 0x2b, 0x4c, 0x28, 0x65, 0x1b, 0xc7, 0x93, 0x8c, 0x69, 0x97, 0xcb, 0x76, 0x09, - 0xc6, 0x8a, 0x65, 0x9e, 0x9f, 0x74, 0xf8, 0x58, 0xfc, 0xa4, 0x5a, 0xf8, 0x7d, 0xb1, 0xd7, 0xf0, - 0x7b, 0x73, 0x6e, 0x0f, 0xf5, 0x34, 0xb7, 0x3f, 0xd5, 0x07, 0x83, 0xcf, 0x93, 0x88, 0x25, 0x09, - 0x7f, 0x02, 0x06, 0xb7, 0xf9, 0xbf, 0xd9, 0xbb, 0x9b, 0x02, 0x03, 0xcb, 0x72, 0xfa, 0xdd, 0x36, - 0xda, 0x7e, 0xa3, 0x3a, 0x9f, 0xae, 0xe2, 0x34, 0xbf, 0xa0, 0x2c, 0xc0, 0x29, 0x0e, 0xad, 0x50, - 0xa3, 0x9a, 0x7d, 0xb3, 0xe9, 0x77, 0xbc, 0x2e, 0xbe, 0x28, 0x0b, 0x70, 0x8a, 0x83, 0x1e, 0x83, - 0x81, 0x9a, 0x9f, 0xac, 0x7b, 0xb5, 0xac, 0x97, 0x6f, 0x91, 0x41, 0xb1, 0x28, 0x65, 0x6e, 0x22, - 0x3f, 0x59, 0x8f, 0x08, 0xb3, 0xec, 0x76, 0xa4, 0x8e, 0x58, 0xd4, 0xca, 0xb0, 0x81, 0xc9, 0x9a, - 0x14, 0x8a, 0x9e, 0x89, 0x20, 0xcc, 0xb4, 0x49, 0xb2, 0x00, 0xa7, 0x38, 0x74, 0xfe, 0x57, 0xc2, - 0x66, 0xcb, 0x6f, 0x88, 0xf0, 0x60, 0x6d, 0xfe, 0xcf, 0x09, 0x38, 0x56, 0x18, 0x14, 0x9b, 0x8a, - 0x30, 0x2a, 0x7e, 0xb2, 0xcf, 0x5d, 0xad, 0x09, 0x38, 0x56, 0x18, 0xee, 0xf3, 0x30, 0xc6, 0x57, - 0xf2, 0x5c, 0xc3, 0xf3, 0x9b, 0x8b, 0x73, 0xe8, 0x4a, 0x47, 0xf8, 0xfd, 0x13, 0x39, 0xe1, 0xf7, - 0xe7, 0x8c, 0x4a, 0x9d, 0x61, 0xf8, 0xee, 0x0f, 0x0b, 0x30, 0x74, 0x82, 0x2f, 0x06, 0x9e, 0xf8, - 0xe3, 0xb7, 0xe8, 0x56, 0xe6, 0xb5, 0xc0, 0x35, 0x9b, 0xb7, 0x69, 0x0e, 0x7c, 0x29, 0xf0, 0xbf, - 0x14, 0xe0, 0xbc, 0x44, 0x95, 0x67, 0xb9, 0xc5, 0x39, 0xf6, 0xdc, 0xd5, 0xf1, 0x0f, 0x74, 0x64, - 0x0c, 0xf4, 0x9a, 0xbd, 0xd3, 0xe8, 0xe2, 0x5c, 0xd7, 0xa1, 0x7e, 0x25, 0x33, 0xd4, 0xd8, 0x2a, - 0xd7, 0x83, 0x07, 0xfb, 0x2f, 0x1d, 0x98, 0xcc, 0x1f, 0xec, 0x13, 0x78, 0xa0, 0xf1, 0x75, 0xf3, - 0x81, 0xc6, 0x5f, 0xb0, 0x37, 0xc5, 0xcc, 0xae, 0x74, 0x79, 0xaa, 0xf1, 0xcf, 0x1d, 0x38, 0x2b, - 0x2b, 0xb0, 0xdd, 0x73, 0xd6, 0x0f, 0x58, 0x20, 0xca, 0xf1, 0x4f, 0xb3, 0xd7, 0x8c, 0x69, 0xf6, - 0xa2, 0xbd, 0x8e, 0xeb, 0xfd, 0xe8, 0xfa, 0xb0, 0xf5, 0x9f, 0x39, 0x50, 0xca, 0xab, 0x70, 0x02, - 0x9f, 0xfc, 0x55, 0xf3, 0x93, 0x3f, 0x7f, 0x3c, 0x3d, 0xef, 0xfe, 0xc1, 0x4b, 0xdd, 0x06, 0x0a, - 0x35, 0xa4, 0x5e, 0xe5, 0xd8, 0xf2, 0xd1, 0x72, 0x16, 0xf9, 0x0a, 0x5a, 0x03, 0x06, 0x62, 0x16, - 0xb5, 0x21, 0xa6, 0xc0, 0x55, 0x1b, 0xda, 0x16, 0xa5, 0x27, 0x6c, 0xec, 0xec, 0x7f, 0x2c, 0x78, - 0xb8, 0xbf, 0x51, 0x80, 0x0b, 0xea, 0xe1, 0x55, 0xb2, 0x4d, 0x1a, 0xe9, 0xfa, 0x60, 0x4f, 0x2a, - 0x78, 0xea, 0xa7, 0xbd, 0x27, 0x15, 0x52, 0x16, 0xe9, 0x5a, 0x48, 0x61, 0x58, 0xe3, 0x89, 0xca, - 0x70, 0x8e, 0x3d, 0x81, 0xb0, 0xe0, 0x07, 0x5e, 0xc3, 0x7f, 0x85, 0x44, 0x98, 0x34, 0xc3, 0x6d, - 0xaf, 0x21, 0x34, 0x75, 0x75, 0x7d, 0x77, 0x21, 0x0f, 0x09, 0xe7, 0xd7, 0xed, 0x38, 0x71, 0xf7, - 0xf5, 0x7a, 0xe2, 0x76, 0xff, 0xc4, 0x81, 0xd1, 0x13, 0x7c, 0xa6, 0x36, 0x34, 0x97, 0xc4, 0xb3, - 0xf6, 0x96, 0x44, 0x97, 0x65, 0xb0, 0x57, 0x84, 0x8e, 0x97, 0x3b, 0xd1, 0xa7, 0x1d, 0x15, 0xd7, - 0xc2, 0x63, 0xff, 0x3e, 0x64, 0xaf, 0x1d, 0x87, 0xc9, 0xf9, 0x88, 0xbe, 0x9e, 0x49, 0x84, 0x59, - 0xb0, 0x95, 0xcd, 0xa9, 0xa3, 0x35, 0x47, 0x48, 0x88, 0xf9, 0x15, 0x07, 0x80, 0xb7, 0x53, 0xe4, - 0xd1, 0xa6, 0x6d, 0xdb, 0x38, 0xb6, 0x91, 0xa2, 0x4c, 0x78, 0xd3, 0xd4, 0x12, 0x4a, 0x0b, 0xb0, - 0xd6, 0x92, 0xbb, 0xc8, 0x74, 0x79, 0xd7, 0x49, 0x36, 0xbf, 0xe0, 0xc0, 0xa9, 0x4c, 0x73, 0x73, - 0xea, 0x6f, 0x9a, 0x2f, 0xfa, 0x59, 0xd0, 0xac, 0xcc, 0xec, 0xca, 0xba, 0xf1, 0xe4, 0xbf, 0xb9, - 0x60, 0x3c, 0x79, 0x8c, 0x5e, 0x85, 0x61, 0x69, 0xf9, 0x90, 0xd3, 0xdb, 0xe6, 0xcb, 0xa6, 0xea, - 0x78, 0x23, 0x21, 0x31, 0x4e, 0xf9, 0x65, 0xc2, 0xe6, 0x0a, 0x3d, 0x85, 0xcd, 0xdd, 0xdb, 0x77, - 0x51, 0xf3, 0xed, 0xd2, 0xfd, 0xc7, 0x62, 0x97, 0x7e, 0xd0, 0xba, 0x5d, 0xfa, 0xa1, 0x13, 0xb6, - 0x4b, 0x6b, 0x4e, 0xc2, 0xe2, 0x5d, 0x38, 0x09, 0x5f, 0x85, 0xb3, 0xdb, 0xe9, 0xa1, 0x53, 0xcd, - 0x24, 0x91, 0x43, 0xe8, 0x89, 0x5c, 0x6b, 0x34, 0x3d, 0x40, 0xc7, 0x09, 0x09, 0x12, 0xed, 0xb8, - 0x9a, 0x46, 0xec, 0x3d, 0x9f, 0x43, 0x0e, 0xe7, 0x32, 0xc9, 0x7a, 0x7b, 0x06, 0x7b, 0xf0, 0xf6, - 0xbc, 0xe9, 0xc0, 0x39, 0xaf, 0xe3, 0x0e, 0x17, 0x26, 0x9b, 0x22, 0xe4, 0xe4, 0xa6, 0x3d, 0x15, - 0xc2, 0x20, 0x2f, 0xdc, 0x6a, 0x79, 0x45, 0x38, 0xbf, 0x41, 0xe8, 0xd1, 0xd4, 0xf5, 0xce, 0xe3, - 0x3c, 0xf3, 0xfd, 0xe4, 0x5f, 0xcf, 0xc6, 0xf3, 0x00, 0x1b, 0xfa, 0x8f, 0xd8, 0x3d, 0x6d, 0x5b, - 0x88, 0xe9, 0x19, 0xb9, 0x8b, 0x98, 0x9e, 0x8c, 0xeb, 0x6d, 0xd4, 0x92, 0xeb, 0x2d, 0x80, 0x09, - 0xbf, 0xe9, 0xd5, 0xc8, 0x5a, 0xbb, 0xd1, 0xe0, 0x77, 0x40, 0xe4, 0xdb, 0xb3, 0xb9, 0x16, 0xbc, - 0xe5, 0xb0, 0xe2, 0x35, 0xb2, 0x4f, 0x7c, 0xab, 0xbb, 0x2e, 0xd7, 0x32, 0x94, 0x70, 0x07, 0x6d, - 0x3a, 0x61, 0x59, 0x32, 0x3b, 0x92, 0xd0, 0xd1, 0x66, 0x81, 0x23, 0x43, 0x7c, 0xc2, 0x5e, 0x4d, - 0xc1, 0x58, 0xc7, 0x41, 0x4b, 0x30, 0x5c, 0x0d, 0x62, 0x71, 0x1d, 0xf5, 0x14, 0x13, 0x66, 0xef, - 0xa4, 0x22, 0x70, 0xfe, 0x7a, 0x59, 0x5d, 0x44, 0x7d, 0x30, 0x27, 0x3b, 0xa3, 0x2a, 0xc7, 0x69, - 0x7d, 0xb4, 0xc2, 0x88, 0x89, 0x87, 0xb9, 0x78, 0x3c, 0xc7, 0xc3, 0x5d, 0x1c, 0x46, 0xf3, 0xd7, - 0xe5, 0xd3, 0x62, 0x63, 0x82, 0x9d, 0x78, 0x61, 0x2b, 0xa5, 0xa0, 0xbd, 0x01, 0x7c, 0xfa, 0xc0, - 0x37, 0x80, 0x59, 0x5a, 0xd6, 0xa4, 0xa1, 0xdc, 0xc3, 0x17, 0xad, 0xa5, 0x65, 0x4d, 0x23, 0x25, - 0x45, 0x5a, 0xd6, 0x14, 0x80, 0x75, 0x96, 0x68, 0xb5, 0x9b, 0x9b, 0xfc, 0x0c, 0x13, 0x1a, 0x87, - 0x77, 0x7a, 0xeb, 0xfe, 0xd2, 0xb3, 0x07, 0xfa, 0x4b, 0x3b, 0xfc, 0xbb, 0xe7, 0x0e, 0xe1, 0xdf, - 0xad, 0xb3, 0x84, 0x99, 0x8b, 0x73, 0xc2, 0xa5, 0x6e, 0xe1, 0x7c, 0xc7, 0x52, 0x74, 0xf0, 0xc8, - 0x53, 0xf6, 0x2f, 0xe6, 0x0c, 0xba, 0x06, 0x54, 0x5f, 0x38, 0x72, 0x40, 0x35, 0x15, 0xcf, 0x29, - 0x9c, 0x65, 0x5e, 0x2d, 0x0a, 0xf1, 0x9c, 0x82, 0xb1, 0x8e, 0x93, 0xf5, 0x96, 0xde, 0x7f, 0x6c, - 0xde, 0xd2, 0xc9, 0x13, 0xf0, 0x96, 0x3e, 0xd0, 0xb3, 0xb7, 0xf4, 0x16, 0x9c, 0x69, 0x85, 0xd5, - 0x79, 0x3f, 0x8e, 0xda, 0xec, 0x52, 0xdc, 0x6c, 0xbb, 0x5a, 0x23, 0x09, 0x73, 0xb7, 0x8e, 0x5c, - 0x7e, 0xa7, 0xde, 0xc8, 0x16, 0x5b, 0xc8, 0x72, 0x8d, 0x66, 0x2a, 0x30, 0xd3, 0x09, 0x8b, 0xba, - 0xcd, 0x29, 0xc4, 0x79, 0x2c, 0x74, 0x3f, 0xed, 0xc3, 0x27, 0xe3, 0xa7, 0xfd, 0x00, 0x0c, 0xc5, - 0xf5, 0x76, 0x52, 0x0d, 0x77, 0x02, 0xe6, 0x8c, 0x1f, 0x9e, 0x7d, 0x87, 0x32, 0x65, 0x0b, 0xf8, - 0xed, 0xbd, 0xa9, 0x09, 0xf9, 0xbf, 0x66, 0xc5, 0x16, 0x10, 0xf4, 0x8d, 0x2e, 0xf7, 0x77, 0xdc, - 0xe3, 0xbc, 0xbf, 0x73, 0xe1, 0x50, 0x77, 0x77, 0xf2, 0x9c, 0xd1, 0x8f, 0xbc, 0xed, 0x9c, 0xd1, - 0x5f, 0x73, 0x60, 0x6c, 0x5b, 0x77, 0x19, 0x08, 0x87, 0xb9, 0x85, 0xc0, 0x1d, 0xc3, 0x13, 0x31, - 0xeb, 0x52, 0x39, 0x67, 0x80, 0x6e, 0x67, 0x01, 0xd8, 0x6c, 0x49, 0x4e, 0x50, 0xd1, 0xa3, 0xf7, - 0x2a, 0xa8, 0xe8, 0x75, 0x26, 0xc7, 0xe4, 0x21, 0x97, 0x79, 0xd1, 0xed, 0xc6, 0x14, 0x4b, 0x99, - 0xa8, 0x42, 0x8a, 0x75, 0x7e, 0xe8, 0xf3, 0x0e, 0x4c, 0xc8, 0x73, 0x99, 0x70, 0xf9, 0xc5, 0x22, - 0x2a, 0xd2, 0xe6, 0x71, 0x90, 0x85, 0xd5, 0xaf, 0x67, 0xf8, 0xe0, 0x0e, 0xce, 0x54, 0xaa, 0xab, - 0x20, 0xb4, 0x5a, 0xcc, 0x82, 0x7f, 0x85, 0x0e, 0x33, 0x93, 0x82, 0xb1, 0x8e, 0x83, 0xbe, 0xa9, - 0x1e, 0xf6, 0x7f, 0x82, 0x09, 0xf4, 0x17, 0x2c, 0xeb, 0xa6, 0x36, 0x5e, 0xf7, 0x47, 0x5f, 0x72, - 0x60, 0x62, 0x27, 0x63, 0xd0, 0x10, 0x61, 0xa1, 0xd8, 0xbe, 0xa9, 0x84, 0x0f, 0x77, 0x16, 0x8a, - 0x3b, 0x5a, 0x80, 0x3e, 0x67, 0x1a, 0x3a, 0x79, 0xfc, 0xa8, 0xc5, 0x01, 0xcc, 0x18, 0x56, 0xf9, - 0x35, 0xb7, 0x7c, 0x8b, 0xe7, 0x5d, 0xc7, 0x87, 0x4c, 0xd2, 0xce, 0xa4, 0x1f, 0x2b, 0xa7, 0x2a, - 0x31, 0xed, 0x2d, 0x16, 0x16, 0xbb, 0xf1, 0xf9, 0x75, 0x73, 0xcb, 0x9f, 0x9e, 0x83, 0x71, 0xd3, - 0xb7, 0x87, 0xde, 0x65, 0xbe, 0x19, 0x71, 0x31, 0x9b, 0x7e, 0x7f, 0x4c, 0xe2, 0x1b, 0x29, 0xf8, - 0x8d, 0x1c, 0xf9, 0x85, 0x63, 0xcd, 0x91, 0xdf, 0x77, 0x32, 0x39, 0xf2, 0x27, 0x8e, 0x23, 0x47, - 0xfe, 0xe9, 0x43, 0xe5, 0xc8, 0xd7, 0xde, 0x28, 0xe8, 0xbf, 0xc3, 0x1b, 0x05, 0x33, 0x70, 0x4a, - 0xde, 0xfd, 0x21, 0x22, 0x0d, 0x39, 0x77, 0xfb, 0x5f, 0x10, 0x55, 0x4e, 0xcd, 0x99, 0xc5, 0x38, - 0x8b, 0x4f, 0x17, 0x59, 0x31, 0x60, 0x35, 0x07, 0x6c, 0x3d, 0x60, 0x64, 0x4e, 0x2d, 0x76, 0x7c, - 0x16, 0x22, 0x4a, 0x46, 0x3b, 0x17, 0x19, 0xec, 0xb6, 0xfc, 0x07, 0xf3, 0x16, 0xa0, 0x97, 0xa0, - 0x14, 0x6e, 0x6e, 0x36, 0x42, 0xaf, 0x9a, 0x26, 0xf2, 0x97, 0x71, 0x09, 0xfc, 0xee, 0xa6, 0xca, - 0xfb, 0xba, 0xda, 0x05, 0x0f, 0x77, 0xa5, 0x80, 0xde, 0xa4, 0x8a, 0x49, 0x12, 0x46, 0xa4, 0x9a, - 0xda, 0x6a, 0x86, 0x59, 0x9f, 0x89, 0xf5, 0x3e, 0x97, 0x4d, 0x3e, 0xbc, 0xf7, 0xea, 0xa3, 0x64, - 0x4a, 0x71, 0xb6, 0x59, 0x28, 0x82, 0xf3, 0xad, 0x3c, 0x53, 0x51, 0x2c, 0x6e, 0x2c, 0x1d, 0x64, - 0xb0, 0x92, 0x4b, 0xf7, 0x7c, 0xae, 0xb1, 0x29, 0xc6, 0x5d, 0x28, 0xeb, 0xc9, 0xf6, 0x87, 0x4e, - 0x26, 0xd9, 0xfe, 0xc7, 0x01, 0x2a, 0x32, 0x95, 0x97, 0x34, 0x3e, 0x2c, 0x59, 0xb9, 0x4a, 0xc3, - 0x69, 0x6a, 0xef, 0x9b, 0x2a, 0x36, 0x58, 0x63, 0x89, 0xfe, 0x77, 0xee, 0x6b, 0x14, 0xdc, 0xc2, - 0x52, 0xb3, 0x3e, 0x27, 0xde, 0x76, 0x2f, 0x52, 0xfc, 0x53, 0x07, 0x26, 0xf9, 0xcc, 0xcb, 0x2a, - 0xf7, 0x54, 0xb5, 0x10, 0x77, 0x7b, 0x6c, 0x87, 0xae, 0xb0, 0x28, 0xbe, 0xb2, 0xc1, 0x95, 0x39, - 0xba, 0x0f, 0x68, 0x09, 0xfa, 0x4a, 0xce, 0x91, 0xe2, 0x94, 0x2d, 0x9b, 0x65, 0xfe, 0x9b, 0x02, - 0x67, 0xf6, 0x7b, 0x39, 0x45, 0xfc, 0xf3, 0xae, 0x26, 0x55, 0xc4, 0x9a, 0xf7, 0x8b, 0xc7, 0x64, - 0x52, 0xd5, 0x1f, 0x3e, 0x38, 0x94, 0x61, 0xf5, 0x0b, 0x0e, 0x4c, 0x78, 0x99, 0x50, 0x13, 0x66, - 0x07, 0xb2, 0x62, 0x93, 0x9a, 0x89, 0xd2, 0xf8, 0x15, 0xa6, 0xe4, 0x65, 0xa3, 0x5a, 0x70, 0x07, - 0x73, 0xf4, 0x2f, 0x1d, 0x38, 0x9b, 0x78, 0xf1, 0x16, 0x4f, 0x2b, 0x1c, 0x8b, 0xbb, 0xba, 0xa4, - 0x5a, 0x3a, 0xcb, 0x96, 0xe1, 0xcb, 0xd6, 0x97, 0xe1, 0x7a, 0x0e, 0x33, 0xbe, 0x12, 0x95, 0xa1, - 0x27, 0x0f, 0x05, 0xe7, 0xb6, 0x72, 0xf2, 0xd3, 0x0e, 0x7f, 0x62, 0xaa, 0xab, 0x5a, 0xb7, 0x61, - 0xaa, 0x75, 0xcb, 0x36, 0x1f, 0xb9, 0xd1, 0xf5, 0xcb, 0x5f, 0x75, 0xe0, 0x6c, 0xde, 0xae, 0x93, - 0xd3, 0xa4, 0x8f, 0x98, 0x4d, 0xb2, 0x78, 0x92, 0xd2, 0x1b, 0x64, 0xe5, 0x8d, 0x8d, 0xc9, 0x45, - 0xb8, 0xbf, 0xeb, 0x07, 0xbb, 0x13, 0xa1, 0x21, 0x5d, 0xe7, 0xfd, 0xb3, 0x61, 0xcd, 0xc5, 0x98, - 0x90, 0x96, 0xf5, 0x00, 0xed, 0x00, 0x06, 0xfc, 0xa0, 0xe1, 0x07, 0x44, 0x5c, 0xc6, 0xb4, 0x79, - 0x40, 0x15, 0x8f, 0xe3, 0x50, 0xea, 0x58, 0x70, 0xb9, 0xc7, 0x1e, 0xc7, 0xec, 0x73, 0x63, 0xfd, - 0x27, 0xff, 0xdc, 0xd8, 0x0e, 0x0c, 0xef, 0xf8, 0x49, 0x9d, 0x45, 0x4a, 0x08, 0x47, 0x9e, 0x85, - 0x4b, 0x8c, 0x94, 0x5c, 0xda, 0xf7, 0x9b, 0x92, 0x01, 0x4e, 0x79, 0xa1, 0x4b, 0x9c, 0x31, 0x0b, - 0xcb, 0xce, 0xc6, 0xcb, 0xde, 0x94, 0x05, 0x38, 0xc5, 0xa1, 0x83, 0x35, 0x4a, 0x7f, 0xc9, 0x64, - 0x45, 0x22, 0xa7, 0xae, 0x8d, 0x5c, 0x89, 0x82, 0x22, 0xbf, 0x2a, 0x7c, 0x53, 0xe3, 0x81, 0x0d, - 0x8e, 0x2a, 0xad, 0xf1, 0x50, 0xd7, 0xb4, 0xc6, 0xaf, 0x31, 0x6d, 0x2c, 0xf1, 0x83, 0x36, 0x59, - 0x0d, 0x44, 0x30, 0xf7, 0xb2, 0x9d, 0x8b, 0xcd, 0x9c, 0x26, 0x3f, 0x5f, 0xa7, 0xbf, 0xb1, 0xc6, - 0x4f, 0xf3, 0xa7, 0x8c, 0x1c, 0xe8, 0x4f, 0x49, 0xed, 0x29, 0xa3, 0xd6, 0xed, 0x29, 0x09, 0x69, - 0x59, 0xb1, 0xa7, 0xbc, 0xad, 0xce, 0xfa, 0x7f, 0xe9, 0x00, 0x52, 0x4a, 0x95, 0x92, 0xa4, 0x27, - 0x10, 0x31, 0xf9, 0x09, 0x07, 0x20, 0x50, 0x8f, 0x52, 0xda, 0xdd, 0xfe, 0x38, 0xcd, 0xb4, 0x01, - 0x29, 0x0c, 0x6b, 0x3c, 0xdd, 0x3f, 0x75, 0xd2, 0xc0, 0xe4, 0xb4, 0xef, 0x27, 0x10, 0x21, 0xb6, - 0x6b, 0x46, 0x88, 0xad, 0x5b, 0xb4, 0xcb, 0xab, 0x6e, 0x74, 0x89, 0x15, 0xfb, 0x49, 0x01, 0x4e, - 0xe9, 0xc8, 0x65, 0x72, 0x12, 0x1f, 0x7b, 0xc7, 0x08, 0x8f, 0xbd, 0x61, 0xb7, 0xbf, 0x65, 0xe1, - 0xde, 0xc9, 0x0b, 0xc5, 0xfe, 0x78, 0x26, 0x14, 0xfb, 0xa6, 0x7d, 0xd6, 0x07, 0xc7, 0x63, 0xff, - 0x57, 0x07, 0xce, 0x64, 0x6a, 0x9c, 0xc0, 0x04, 0xdb, 0x36, 0x27, 0xd8, 0x73, 0xd6, 0x7b, 0xdd, - 0x65, 0x76, 0x7d, 0xab, 0xd0, 0xd1, 0x5b, 0x76, 0x42, 0xfb, 0x94, 0x03, 0x45, 0xaa, 0x1f, 0xcb, - 0x60, 0xad, 0x8f, 0x1c, 0xcb, 0x0c, 0x60, 0xba, 0xbb, 0x90, 0xce, 0xaa, 0x7d, 0x0c, 0x86, 0x39, - 0xf7, 0xc9, 0x4f, 0x3a, 0x00, 0x29, 0xd2, 0xbd, 0xd2, 0x7d, 0xdd, 0xef, 0x14, 0xe0, 0x5c, 0xee, - 0x34, 0x42, 0x9f, 0x51, 0xe6, 0x36, 0xc7, 0x76, 0x28, 0xa2, 0xc1, 0x48, 0xb7, 0xba, 0x8d, 0x19, - 0x56, 0x37, 0x61, 0x6c, 0xbb, 0x57, 0x27, 0x17, 0x21, 0xa6, 0xb5, 0xc1, 0xfa, 0xb1, 0x93, 0x46, - 0xb7, 0xaa, 0xa4, 0x45, 0x7f, 0x05, 0x6f, 0xe8, 0xb8, 0x3f, 0xd1, 0xae, 0x2f, 0xc8, 0x8e, 0x9e, - 0x80, 0xac, 0xd8, 0x31, 0x65, 0x05, 0xb6, 0xef, 0x24, 0xee, 0x22, 0x2c, 0x3e, 0x0a, 0x79, 0x5e, - 0xe3, 0xde, 0x32, 0x1e, 0x1a, 0x77, 0x5d, 0x0b, 0x3d, 0xdf, 0x75, 0x1d, 0x83, 0x91, 0x17, 0xfd, - 0x96, 0x72, 0x70, 0x4e, 0x7f, 0xf7, 0x47, 0x17, 0xef, 0xfb, 0xde, 0x8f, 0x2e, 0xde, 0xf7, 0xc3, - 0x1f, 0x5d, 0xbc, 0xef, 0x13, 0xfb, 0x17, 0x9d, 0xef, 0xee, 0x5f, 0x74, 0xbe, 0xb7, 0x7f, 0xd1, - 0xf9, 0xe1, 0xfe, 0x45, 0xe7, 0x3f, 0xec, 0x5f, 0x74, 0xfe, 0xde, 0x7f, 0xbc, 0x78, 0xdf, 0x8b, - 0x43, 0xb2, 0x63, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x2e, 0x1c, 0xa2, 0x5b, 0x37, 0xd5, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7d, 0x6d, 0x70, 0x24, 0xc7, + 0x75, 0x18, 0x67, 0x81, 0xc5, 0xc7, 0xc3, 0xc7, 0xe1, 0xfa, 0xbe, 0x96, 0x20, 0x79, 0xa0, 0x87, + 0x22, 0x43, 0xda, 0x14, 0xce, 0x3c, 0x4a, 0x09, 0x23, 0x25, 0x92, 0xf0, 0x71, 0xc0, 0x1d, 0x01, + 0x1c, 0xc0, 0x5e, 0x1c, 0xcf, 0xa4, 0x68, 0x49, 0x83, 0xdd, 0xc6, 0xee, 0x10, 0xbb, 0x33, 0xcb, + 0x99, 0x59, 0xe0, 0xc0, 0x0f, 0x49, 0xa1, 0xf5, 0x19, 0xcb, 0x56, 0x22, 0x4b, 0xb2, 0xa4, 0x24, + 0x55, 0x8a, 0x22, 0x25, 0x2c, 0xd9, 0x15, 0x97, 0xfd, 0x2b, 0x65, 0xff, 0x4b, 0xa5, 0x5c, 0x4a, + 0x39, 0x55, 0x91, 0xcb, 0x4a, 0x49, 0x3f, 0x6c, 0x30, 0x42, 0x12, 0xfd, 0x48, 0xa2, 0xaa, 0x44, + 0x15, 0x3b, 0xf6, 0xe5, 0xa3, 0x5c, 0xfd, 0x39, 0xdd, 0xb3, 0xb3, 0xb8, 0x05, 0xae, 0x81, 0x53, + 0xd9, 0xbf, 0x80, 0x7d, 0xfd, 0xfa, 0xbd, 0xee, 0x9e, 0xee, 0xd7, 0xaf, 0xdf, 0x7b, 0xfd, 0x1a, + 0xd6, 0x6a, 0x7e, 0x52, 0x6f, 0x6f, 0x4c, 0x57, 0xc2, 0xe6, 0x25, 0x2f, 0xaa, 0x85, 0xad, 0x28, + 0x7c, 0x99, 0xfd, 0xf3, 0xce, 0x9d, 0x30, 0xda, 0xda, 0x6c, 0x84, 0x3b, 0xf1, 0xa5, 0xed, 0xa7, + 0x2f, 0xb5, 0xb6, 0x6a, 0x97, 0xbc, 0x96, 0x1f, 0x5f, 0x92, 0xd0, 0x4b, 0xdb, 0x4f, 0x79, 0x8d, + 0x56, 0xdd, 0x7b, 0xea, 0x52, 0x8d, 0x04, 0x24, 0xf2, 0x12, 0x52, 0x9d, 0x6e, 0x45, 0x61, 0x12, + 0xa2, 0x0f, 0xa4, 0x14, 0xa7, 0x25, 0x45, 0xf6, 0xcf, 0x87, 0x15, 0xc5, 0xe9, 0xed, 0xa7, 0xa7, + 0x5b, 0x5b, 0xb5, 0x69, 0x4a, 0x71, 0x5a, 0x42, 0xa7, 0x25, 0xc5, 0xc9, 0x77, 0x6a, 0x6d, 0xaa, + 0x85, 0xb5, 0xf0, 0x12, 0x23, 0xbc, 0xd1, 0xde, 0x64, 0xbf, 0xd8, 0x0f, 0xf6, 0x1f, 0x67, 0x38, + 0xe9, 0x6e, 0x3d, 0x13, 0x4f, 0xfb, 0x21, 0x6d, 0xdf, 0xa5, 0x4a, 0x18, 0x91, 0x4b, 0xdb, 0x1d, + 0x8d, 0x9a, 0x7c, 0x87, 0x86, 0xd3, 0x0a, 0x1b, 0x7e, 0x65, 0x37, 0x0f, 0xeb, 0x5d, 0x29, 0x56, + 0xd3, 0xab, 0xd4, 0xfd, 0x80, 0x44, 0xbb, 0x69, 0xd7, 0x9b, 0x24, 0xf1, 0xf2, 0x6a, 0x5d, 0xea, + 0x56, 0x2b, 0x6a, 0x07, 0x89, 0xdf, 0x24, 0x1d, 0x15, 0xfe, 0xe6, 0x9d, 0x2a, 0xc4, 0x95, 0x3a, + 0x69, 0x7a, 0x1d, 0xf5, 0x9e, 0xee, 0x56, 0xaf, 0x9d, 0xf8, 0x8d, 0x4b, 0x7e, 0x90, 0xc4, 0x49, + 0x94, 0xad, 0xe4, 0x5e, 0x81, 0x81, 0x99, 0x66, 0xd8, 0x0e, 0x12, 0xf4, 0x5e, 0x28, 0x6e, 0x7b, + 0x8d, 0x36, 0x29, 0x39, 0x0f, 0x3b, 0x8f, 0x0f, 0xcf, 0x3e, 0xfa, 0x9d, 0xbd, 0xa9, 0xfb, 0xf6, + 0xf7, 0xa6, 0x8a, 0xcf, 0x53, 0xe0, 0xed, 0xbd, 0xa9, 0xb3, 0x24, 0xa8, 0x84, 0x55, 0x3f, 0xa8, + 0x5d, 0x7a, 0x39, 0x0e, 0x83, 0xe9, 0xeb, 0xed, 0xe6, 0x06, 0x89, 0x30, 0xaf, 0xe3, 0xfe, 0x51, + 0x01, 0x4e, 0xcd, 0x44, 0x95, 0xba, 0xbf, 0x4d, 0xca, 0x09, 0xa5, 0x5f, 0xdb, 0x45, 0x75, 0xe8, + 0x4b, 0xbc, 0x88, 0x91, 0x1b, 0xb9, 0xbc, 0x32, 0x7d, 0xb7, 0xdf, 0x7d, 0x7a, 0xdd, 0x8b, 0x24, + 0xed, 0xd9, 0xc1, 0xfd, 0xbd, 0xa9, 0xbe, 0x75, 0x2f, 0xc2, 0x94, 0x05, 0x6a, 0x40, 0x7f, 0x10, + 0x06, 0xa4, 0x54, 0x60, 0xac, 0xae, 0xdf, 0x3d, 0xab, 0xeb, 0x61, 0xa0, 0xfa, 0x31, 0x3b, 0xb4, + 0xbf, 0x37, 0xd5, 0x4f, 0x21, 0x98, 0x71, 0xa1, 0xfd, 0x7a, 0xd5, 0x6f, 0x95, 0xfa, 0x6c, 0xf5, + 0xeb, 0x45, 0xbf, 0x65, 0xf6, 0xeb, 0x45, 0xbf, 0x85, 0x29, 0x0b, 0xf7, 0xb3, 0x05, 0x18, 0x9e, + 0x89, 0x6a, 0xed, 0x26, 0x09, 0x92, 0x18, 0x7d, 0x0c, 0xa0, 0xe5, 0x45, 0x5e, 0x93, 0x24, 0x24, + 0x8a, 0x4b, 0xce, 0xc3, 0x7d, 0x8f, 0x8f, 0x5c, 0x5e, 0xba, 0x7b, 0xf6, 0x6b, 0x92, 0xe6, 0x2c, + 0x12, 0x9f, 0x1c, 0x14, 0x28, 0xc6, 0x1a, 0x4b, 0xf4, 0x1a, 0x0c, 0x7b, 0x51, 0xe2, 0x6f, 0x7a, + 0x95, 0x24, 0x2e, 0x15, 0x18, 0xff, 0x67, 0xef, 0x9e, 0xff, 0x8c, 0x20, 0x39, 0x7b, 0x5a, 0xb0, + 0x1f, 0x96, 0x90, 0x18, 0xa7, 0xfc, 0xdc, 0xdf, 0xed, 0x87, 0x91, 0x99, 0x28, 0x59, 0x9c, 0x2b, + 0x27, 0x5e, 0xd2, 0x8e, 0xd1, 0x1f, 0x38, 0x70, 0x26, 0xe6, 0xc3, 0xe6, 0x93, 0x78, 0x2d, 0x0a, + 0x2b, 0x24, 0x8e, 0x49, 0x55, 0x8c, 0xcb, 0xa6, 0x95, 0x76, 0x49, 0x66, 0xd3, 0xe5, 0x4e, 0x46, + 0x57, 0x82, 0x24, 0xda, 0x9d, 0x7d, 0x4a, 0xb4, 0xf9, 0x4c, 0x0e, 0xc6, 0x9b, 0x6f, 0x4f, 0x21, + 0xd9, 0x15, 0x4a, 0x89, 0x7f, 0x62, 0x9c, 0xd7, 0x6a, 0xf4, 0x55, 0x07, 0x46, 0x5b, 0x61, 0x35, + 0xc6, 0xa4, 0x12, 0xb6, 0x5b, 0xa4, 0x2a, 0x86, 0xf7, 0xc3, 0x76, 0xbb, 0xb1, 0xa6, 0x71, 0xe0, + 0xed, 0x3f, 0x2b, 0xda, 0x3f, 0xaa, 0x17, 0x61, 0xa3, 0x29, 0xe8, 0x19, 0x18, 0x0d, 0xc2, 0xa4, + 0xdc, 0x22, 0x15, 0x7f, 0xd3, 0x27, 0x55, 0x36, 0xf1, 0x87, 0xd2, 0x9a, 0xd7, 0xb5, 0x32, 0x6c, + 0x60, 0x4e, 0x2e, 0x40, 0xa9, 0xdb, 0xc8, 0xa1, 0x09, 0xe8, 0xdb, 0x22, 0xbb, 0x5c, 0xd8, 0x60, + 0xfa, 0x2f, 0x3a, 0x2b, 0x05, 0x10, 0x5d, 0xc6, 0x43, 0x42, 0xb2, 0xbc, 0xa7, 0xf0, 0x8c, 0x33, + 0xf9, 0x7e, 0x38, 0xdd, 0xd1, 0xf4, 0xc3, 0x10, 0x70, 0xbf, 0x3b, 0x00, 0x43, 0xf2, 0x53, 0xa0, + 0x87, 0xa1, 0x3f, 0xf0, 0x9a, 0x52, 0xce, 0x8d, 0x8a, 0x7e, 0xf4, 0x5f, 0xf7, 0x9a, 0x74, 0x85, + 0x7b, 0x4d, 0x42, 0x31, 0x5a, 0x5e, 0x52, 0x67, 0x74, 0x34, 0x8c, 0x35, 0x2f, 0xa9, 0x63, 0x56, + 0x82, 0x1e, 0x84, 0xfe, 0x66, 0x58, 0x25, 0x6c, 0x2c, 0x8a, 0x5c, 0x42, 0xac, 0x84, 0x55, 0x82, + 0x19, 0x94, 0xd6, 0xdf, 0x8c, 0xc2, 0x66, 0xa9, 0xdf, 0xac, 0xbf, 0x10, 0x85, 0x4d, 0xcc, 0x4a, + 0xd0, 0x57, 0x1c, 0x98, 0x90, 0x73, 0x7b, 0x39, 0xac, 0x78, 0x89, 0x1f, 0x06, 0xa5, 0x22, 0x93, + 0x28, 0xd8, 0xde, 0x92, 0x92, 0x94, 0x67, 0x4b, 0xa2, 0x09, 0x13, 0xd9, 0x12, 0xdc, 0xd1, 0x0a, + 0x74, 0x19, 0xa0, 0xd6, 0x08, 0x37, 0xbc, 0x06, 0x1d, 0x90, 0xd2, 0x00, 0xeb, 0x82, 0x92, 0x0c, + 0x8b, 0xaa, 0x04, 0x6b, 0x58, 0xe8, 0x16, 0x0c, 0x7a, 0x5c, 0xfa, 0x97, 0x06, 0x59, 0x27, 0x9e, + 0xb3, 0xd1, 0x09, 0x63, 0x3b, 0x99, 0x1d, 0xd9, 0xdf, 0x9b, 0x1a, 0x14, 0x40, 0x2c, 0xd9, 0xa1, + 0x27, 0x61, 0x28, 0x6c, 0xd1, 0x76, 0x7b, 0x8d, 0xd2, 0x10, 0x9b, 0x98, 0x13, 0xa2, 0xad, 0x43, + 0xab, 0x02, 0x8e, 0x15, 0x06, 0x7a, 0x02, 0x06, 0xe3, 0xf6, 0x06, 0xfd, 0x8e, 0xa5, 0x61, 0xd6, + 0xb1, 0x53, 0x02, 0x79, 0xb0, 0xcc, 0xc1, 0x58, 0x96, 0xa3, 0x77, 0xc3, 0x48, 0x44, 0x2a, 0xed, + 0x28, 0x26, 0xf4, 0xc3, 0x96, 0x80, 0xd1, 0x3e, 0x23, 0xd0, 0x47, 0x70, 0x5a, 0x84, 0x75, 0x3c, + 0xf4, 0x3e, 0x18, 0xa7, 0x1f, 0xf8, 0xca, 0xad, 0x56, 0x44, 0xe2, 0x98, 0x7e, 0xd5, 0x11, 0xc6, + 0xe8, 0xbc, 0xa8, 0x39, 0xbe, 0x60, 0x94, 0xe2, 0x0c, 0x36, 0x7a, 0x1d, 0xc0, 0x53, 0x32, 0xa3, + 0x34, 0xca, 0x06, 0x73, 0xd9, 0xde, 0x8c, 0x58, 0x9c, 0x9b, 0x1d, 0xa7, 0xdf, 0x31, 0xfd, 0x8d, + 0x35, 0x7e, 0x74, 0x7c, 0xaa, 0xa4, 0x41, 0x12, 0x52, 0x2d, 0x8d, 0xb1, 0x0e, 0xab, 0xf1, 0x99, + 0xe7, 0x60, 0x2c, 0xcb, 0xdd, 0x7f, 0x54, 0x00, 0x8d, 0x0a, 0x9a, 0x85, 0x21, 0x21, 0xd7, 0xc4, + 0x92, 0x9c, 0x7d, 0x4c, 0x7e, 0x07, 0xf9, 0x05, 0x6f, 0xef, 0xe5, 0xca, 0x43, 0x55, 0x0f, 0xbd, + 0x01, 0x23, 0xad, 0xb0, 0xba, 0x42, 0x12, 0xaf, 0xea, 0x25, 0x9e, 0xd8, 0xcd, 0x2d, 0xec, 0x30, + 0x92, 0xe2, 0xec, 0x29, 0xfa, 0xe9, 0xd6, 0x52, 0x16, 0x58, 0xe7, 0x87, 0x9e, 0x05, 0x14, 0x93, + 0x68, 0xdb, 0xaf, 0x90, 0x99, 0x4a, 0x85, 0xaa, 0x44, 0x6c, 0x01, 0xf4, 0xb1, 0xce, 0x4c, 0x8a, + 0xce, 0xa0, 0x72, 0x07, 0x06, 0xce, 0xa9, 0xe5, 0x7e, 0xaf, 0x00, 0xe3, 0x5a, 0x5f, 0x5b, 0xa4, + 0x82, 0xde, 0x72, 0xe0, 0x94, 0xda, 0xce, 0x66, 0x77, 0xaf, 0xd3, 0x59, 0xc5, 0x37, 0x2b, 0x62, + 0xf3, 0xfb, 0x52, 0x5e, 0xea, 0xa7, 0xe0, 0xc3, 0x65, 0xfd, 0x05, 0xd1, 0x87, 0x53, 0x99, 0x52, + 0x9c, 0x6d, 0xd6, 0xe4, 0x97, 0x1d, 0x38, 0x9b, 0x47, 0x22, 0x47, 0xe6, 0xd6, 0x75, 0x99, 0x6b, + 0x55, 0x78, 0x51, 0xae, 0xb4, 0x33, 0xba, 0x1c, 0xff, 0xff, 0x05, 0x98, 0xd0, 0xa7, 0x10, 0xd3, + 0x04, 0xfe, 0xb5, 0x03, 0xe7, 0x64, 0x0f, 0x30, 0x89, 0xdb, 0x8d, 0xcc, 0xf0, 0x36, 0xad, 0x0e, + 0x2f, 0xdf, 0x49, 0x67, 0xf2, 0xf8, 0xf1, 0x61, 0x7e, 0x48, 0x0c, 0xf3, 0xb9, 0x5c, 0x1c, 0x9c, + 0xdf, 0xd4, 0xc9, 0x6f, 0x3a, 0x30, 0xd9, 0x9d, 0x68, 0xce, 0xc0, 0xb7, 0xcc, 0x81, 0x7f, 0xd1, + 0x5e, 0x27, 0x39, 0x7b, 0x36, 0xfc, 0xac, 0xb3, 0xfa, 0x07, 0xf8, 0xcd, 0x21, 0xe8, 0xd8, 0x43, + 0xd0, 0x53, 0x30, 0x22, 0xc4, 0xf1, 0x72, 0x58, 0x8b, 0x59, 0x23, 0x87, 0xf8, 0x5a, 0x9b, 0x49, + 0xc1, 0x58, 0xc7, 0x41, 0x55, 0x28, 0xc4, 0x4f, 0x8b, 0xa6, 0x5b, 0x10, 0x6f, 0xe5, 0xa7, 0x95, + 0x16, 0x39, 0xb0, 0xbf, 0x37, 0x55, 0x28, 0x3f, 0x8d, 0x0b, 0xf1, 0xd3, 0x54, 0x53, 0xaf, 0xf9, + 0x89, 0x3d, 0x4d, 0x7d, 0xd1, 0x4f, 0x14, 0x1f, 0xa6, 0xa9, 0x2f, 0xfa, 0x09, 0xa6, 0x2c, 0xe8, + 0x09, 0xa4, 0x9e, 0x24, 0x2d, 0xb6, 0xe3, 0x5b, 0x39, 0x81, 0x5c, 0x5d, 0x5f, 0x5f, 0x53, 0xbc, + 0x98, 0x7e, 0x41, 0x21, 0x98, 0x71, 0x41, 0x9f, 0x71, 0xe8, 0x88, 0xf3, 0xc2, 0x30, 0xda, 0x15, + 0x8a, 0xc3, 0x0d, 0x7b, 0x53, 0x20, 0x8c, 0x76, 0x15, 0x73, 0xf1, 0x21, 0x55, 0x01, 0xd6, 0x59, + 0xb3, 0x8e, 0x57, 0x37, 0x63, 0xa6, 0x27, 0xd8, 0xe9, 0xf8, 0xfc, 0x42, 0x39, 0xd3, 0xf1, 0xf9, + 0x85, 0x32, 0x66, 0x5c, 0xe8, 0x07, 0x8d, 0xbc, 0x1d, 0xa1, 0x63, 0x58, 0xf8, 0xa0, 0xd8, 0xdb, + 0x31, 0x3f, 0x28, 0xf6, 0x76, 0x30, 0x65, 0x41, 0x39, 0x85, 0x71, 0xcc, 0x54, 0x0a, 0x2b, 0x9c, + 0x56, 0xcb, 0x65, 0x93, 0xd3, 0x6a, 0xb9, 0x8c, 0x29, 0x0b, 0x36, 0x49, 0x2b, 0x31, 0xd3, 0x47, + 0xec, 0x4c, 0xd2, 0xb9, 0x0c, 0xa7, 0xc5, 0xb9, 0x32, 0xa6, 0x2c, 0xa8, 0xc8, 0xf0, 0x5e, 0x6d, + 0x47, 0x5c, 0x99, 0x19, 0xb9, 0xbc, 0x6a, 0x61, 0xbe, 0x50, 0x72, 0x8a, 0xdb, 0xf0, 0xfe, 0xde, + 0x54, 0x91, 0x81, 0x30, 0x67, 0xe4, 0xfe, 0x7e, 0x5f, 0x2a, 0x2e, 0xa4, 0x3c, 0x47, 0xff, 0x90, + 0x6d, 0x84, 0x42, 0x16, 0x08, 0xd5, 0xd7, 0x39, 0x36, 0xd5, 0xf7, 0x0c, 0xdf, 0xf1, 0x0c, 0x76, + 0x38, 0xcb, 0x1f, 0x7d, 0xc1, 0xe9, 0x3c, 0xdb, 0x7a, 0xf6, 0xf7, 0xb2, 0x74, 0x63, 0xe6, 0x7b, + 0xc5, 0x81, 0x47, 0xde, 0xc9, 0xcf, 0x38, 0xa9, 0x12, 0x11, 0x77, 0xdb, 0x07, 0x3e, 0x62, 0xee, + 0x03, 0x16, 0x0f, 0xe4, 0xba, 0xdc, 0xff, 0xac, 0x03, 0x63, 0x12, 0x4e, 0xd5, 0xe3, 0x18, 0xdd, + 0x82, 0x21, 0xd9, 0x52, 0xf1, 0xf5, 0x6c, 0xda, 0x02, 0x94, 0x12, 0xaf, 0x1a, 0xa3, 0xb8, 0xb9, + 0x6f, 0x0d, 0x00, 0x4a, 0xf7, 0xaa, 0x56, 0x18, 0xfb, 0x4c, 0x12, 0x1d, 0x61, 0x17, 0x0a, 0xb4, + 0x5d, 0xe8, 0x79, 0x9b, 0xbb, 0x50, 0xda, 0x2c, 0x63, 0x3f, 0xfa, 0x42, 0x46, 0x6e, 0xf3, 0x8d, + 0xe9, 0xc3, 0xc7, 0x22, 0xb7, 0xb5, 0x26, 0x1c, 0x2c, 0xc1, 0xb7, 0x85, 0x04, 0xe7, 0x5b, 0xd7, + 0x2f, 0xd8, 0x95, 0xe0, 0x5a, 0x2b, 0xb2, 0xb2, 0x3c, 0xe2, 0x12, 0x96, 0xef, 0x5d, 0x37, 0xad, + 0x4a, 0x58, 0x8d, 0xab, 0x29, 0x6b, 0x23, 0x2e, 0x6b, 0x07, 0x6c, 0xf1, 0xd4, 0x64, 0x6d, 0x96, + 0xa7, 0x92, 0xba, 0xaf, 0x4a, 0xa9, 0xcb, 0x77, 0xad, 0x17, 0x2c, 0x4b, 0x5d, 0x8d, 0x6f, 0xa7, + 0xfc, 0x7d, 0x05, 0xce, 0x75, 0xe2, 0x61, 0xb2, 0x89, 0x2e, 0xc1, 0x70, 0x25, 0x0c, 0x36, 0xfd, + 0xda, 0x8a, 0xd7, 0x12, 0xe7, 0x35, 0x25, 0x8b, 0xe6, 0x64, 0x01, 0x4e, 0x71, 0xd0, 0x43, 0x5c, + 0xf0, 0x70, 0x8b, 0xc8, 0x88, 0x40, 0xed, 0x5b, 0x22, 0xbb, 0x4c, 0x0a, 0xbd, 0x67, 0xe8, 0x2b, + 0x5f, 0x9f, 0xba, 0xef, 0xe3, 0x7f, 0xfc, 0xf0, 0x7d, 0xee, 0x1f, 0xf6, 0xc1, 0x03, 0xb9, 0x3c, + 0x85, 0xb6, 0xfe, 0x9b, 0x86, 0xb6, 0xae, 0x95, 0x0b, 0x29, 0x72, 0xd3, 0xa6, 0x22, 0xab, 0x91, + 0xcf, 0xd3, 0xcb, 0xb5, 0x62, 0x9c, 0xdf, 0x28, 0x3a, 0x50, 0x81, 0xd7, 0x24, 0x71, 0xcb, 0xab, + 0x10, 0xd1, 0x7b, 0x35, 0x50, 0xd7, 0x65, 0x01, 0x4e, 0x71, 0xf8, 0x11, 0x7a, 0xd3, 0x6b, 0x37, + 0x12, 0x61, 0x28, 0xd3, 0x8e, 0xd0, 0x0c, 0x8c, 0x65, 0x39, 0xfa, 0xc7, 0x0e, 0xa0, 0x4e, 0xae, + 0x62, 0x21, 0xae, 0x1f, 0xc7, 0x38, 0xcc, 0x9e, 0xdf, 0xd7, 0x0e, 0xe1, 0x5a, 0x4f, 0x73, 0xda, + 0xa1, 0x7d, 0xd3, 0x8f, 0xa6, 0xfb, 0x10, 0x3f, 0x1c, 0xf4, 0x60, 0x43, 0x63, 0xa6, 0x96, 0x4a, + 0x85, 0xc4, 0x31, 0x37, 0xc7, 0xe9, 0xa6, 0x16, 0x06, 0xc6, 0xb2, 0x1c, 0x4d, 0x41, 0x91, 0x44, + 0x51, 0x18, 0x89, 0xb3, 0x36, 0x9b, 0xc6, 0x57, 0x28, 0x00, 0x73, 0xb8, 0xfb, 0xa3, 0x02, 0x94, + 0xba, 0x9d, 0x4e, 0xd0, 0xef, 0x68, 0xe7, 0x6a, 0x71, 0x72, 0x12, 0x07, 0xbf, 0xf0, 0xf8, 0xce, + 0x44, 0xd9, 0x03, 0x60, 0x97, 0x13, 0xb6, 0x28, 0xc5, 0xd9, 0x06, 0x4e, 0x7e, 0x51, 0x3b, 0x61, + 0xeb, 0x24, 0x72, 0x36, 0xf8, 0x4d, 0x73, 0x83, 0x5f, 0xb3, 0xdd, 0x29, 0x7d, 0x9b, 0xff, 0x93, + 0x22, 0x9c, 0x91, 0xa5, 0x65, 0x42, 0xb7, 0xca, 0xe7, 0xda, 0x24, 0xda, 0x45, 0xdf, 0x77, 0xe0, + 0xac, 0x97, 0x35, 0xdd, 0xf8, 0xe4, 0x18, 0x06, 0x5a, 0xe3, 0x3a, 0x3d, 0x93, 0xc3, 0x91, 0x0f, + 0xf4, 0x65, 0x31, 0xd0, 0x67, 0xf3, 0x50, 0xba, 0xd8, 0xdd, 0x73, 0x3b, 0x80, 0x9e, 0x81, 0x51, + 0x09, 0x67, 0xe6, 0x1e, 0xbe, 0xc4, 0x95, 0x71, 0x7b, 0x46, 0x2b, 0xc3, 0x06, 0x26, 0xad, 0x99, + 0x90, 0x66, 0xab, 0xe1, 0x25, 0x44, 0x33, 0x14, 0xa9, 0x9a, 0xeb, 0x5a, 0x19, 0x36, 0x30, 0xd1, + 0x63, 0x30, 0x10, 0x84, 0x55, 0x72, 0xad, 0x2a, 0x0c, 0xc4, 0xe3, 0xa2, 0xce, 0xc0, 0x75, 0x06, + 0xc5, 0xa2, 0x14, 0x3d, 0x9a, 0x5a, 0xe3, 0x8a, 0x6c, 0x09, 0x8d, 0xe4, 0x59, 0xe2, 0xd0, 0x3f, + 0x75, 0x60, 0x98, 0xd6, 0x58, 0xdf, 0x6d, 0x11, 0xba, 0xb7, 0xd1, 0x2f, 0x52, 0x3d, 0x9e, 0x2f, + 0x72, 0x5d, 0xb2, 0x31, 0x4d, 0x1d, 0xc3, 0x0a, 0xfe, 0xe6, 0xdb, 0x53, 0x43, 0xf2, 0x07, 0x4e, + 0x5b, 0x35, 0xb9, 0x08, 0xf7, 0x77, 0xfd, 0x9a, 0x87, 0x72, 0x05, 0xfc, 0x1d, 0x18, 0x37, 0x1b, + 0x71, 0x28, 0x3f, 0xc0, 0xbf, 0xd2, 0x96, 0x1d, 0xef, 0x97, 0x90, 0x67, 0xf7, 0x4c, 0x9b, 0x55, + 0x93, 0x61, 0x5e, 0x4c, 0x3d, 0x73, 0x32, 0xcc, 0x8b, 0xc9, 0x30, 0xef, 0xfe, 0x81, 0x93, 0x2e, + 0x4d, 0x4d, 0xcd, 0xa3, 0x1b, 0x73, 0x3b, 0x6a, 0x08, 0x41, 0xac, 0x36, 0xe6, 0x1b, 0x78, 0x19, + 0x53, 0x38, 0xfa, 0xa2, 0x26, 0x1d, 0x69, 0xb5, 0xb6, 0x70, 0x6b, 0x58, 0x32, 0xd1, 0x1b, 0x84, + 0x3b, 0xe5, 0x9f, 0x28, 0xc0, 0xd9, 0x26, 0xb8, 0x5f, 0x28, 0xc0, 0x43, 0x07, 0x2a, 0xad, 0xb9, + 0x0d, 0x77, 0xee, 0x79, 0xc3, 0xe9, 0xb6, 0x16, 0x91, 0x56, 0x78, 0x03, 0x2f, 0x8b, 0xef, 0xa5, + 0xb6, 0x35, 0xcc, 0xc1, 0x58, 0x96, 0x53, 0xd5, 0x61, 0x8b, 0xec, 0x2e, 0x84, 0x51, 0xd3, 0x4b, + 0x84, 0x74, 0x50, 0xaa, 0xc3, 0x92, 0x2c, 0xc0, 0x29, 0x8e, 0xfb, 0x7d, 0x07, 0xb2, 0x0d, 0x40, + 0x1e, 0x8c, 0xb7, 0x63, 0x12, 0xd1, 0x2d, 0xb5, 0x4c, 0x2a, 0x11, 0x91, 0xd3, 0xf3, 0xd1, 0x69, + 0xee, 0xed, 0xa7, 0x3d, 0x9c, 0xae, 0x84, 0x11, 0x99, 0xde, 0x7e, 0x6a, 0x9a, 0x63, 0x2c, 0x91, + 0xdd, 0x32, 0x69, 0x10, 0x4a, 0x63, 0x16, 0xed, 0xef, 0x4d, 0x8d, 0xdf, 0x30, 0x08, 0xe0, 0x0c, + 0x41, 0xca, 0xa2, 0xe5, 0xc5, 0xf1, 0x4e, 0x18, 0x55, 0x05, 0x8b, 0xc2, 0xa1, 0x59, 0xac, 0x19, + 0x04, 0x70, 0x86, 0xa0, 0xfb, 0x3d, 0x7a, 0x7c, 0xd4, 0xb5, 0x56, 0xf4, 0x75, 0xaa, 0xfb, 0x50, + 0xc8, 0x6c, 0x23, 0xdc, 0x98, 0x0b, 0x83, 0xc4, 0xf3, 0x03, 0x22, 0x83, 0x05, 0xd6, 0x2d, 0xe9, + 0xc8, 0x06, 0xed, 0xd4, 0x86, 0xdf, 0x59, 0x86, 0x73, 0xda, 0x42, 0x75, 0x9c, 0x8d, 0x46, 0xb8, + 0x91, 0xf5, 0x02, 0x52, 0x24, 0xcc, 0x4a, 0xdc, 0x9f, 0x38, 0x70, 0xa1, 0x8b, 0x32, 0x8e, 0xbe, + 0xec, 0xc0, 0xd8, 0xc6, 0x4f, 0x45, 0xdf, 0xcc, 0x66, 0xa0, 0xf7, 0xc1, 0x38, 0x05, 0xd0, 0x9d, + 0x48, 0xcc, 0xcd, 0x82, 0xe9, 0xa1, 0x9a, 0x35, 0x4a, 0x71, 0x06, 0xdb, 0xfd, 0xb5, 0x02, 0xe4, + 0x70, 0x41, 0x4f, 0xc2, 0x10, 0x09, 0xaa, 0xad, 0xd0, 0x0f, 0x12, 0x21, 0x8c, 0x94, 0xd4, 0xbb, + 0x22, 0xe0, 0x58, 0x61, 0x88, 0xf3, 0x87, 0x18, 0x98, 0x42, 0xc7, 0xf9, 0x43, 0xb4, 0x3c, 0xc5, + 0x41, 0x35, 0x98, 0xf0, 0xb8, 0x7f, 0x85, 0xcd, 0x3d, 0x36, 0x4d, 0xfb, 0x0e, 0x33, 0x4d, 0xcf, + 0x32, 0xf7, 0x67, 0x86, 0x04, 0xee, 0x20, 0x8a, 0xde, 0x0d, 0x23, 0xed, 0x98, 0x94, 0xe7, 0x97, + 0xe6, 0x22, 0x52, 0xe5, 0xa7, 0x62, 0xcd, 0xef, 0x77, 0x23, 0x2d, 0xc2, 0x3a, 0x9e, 0xfb, 0x6f, + 0x1c, 0x18, 0x9c, 0xf5, 0x2a, 0x5b, 0xe1, 0xe6, 0x26, 0x1d, 0x8a, 0x6a, 0x3b, 0x4a, 0x0d, 0x5b, + 0xda, 0x50, 0xcc, 0x0b, 0x38, 0x56, 0x18, 0x68, 0x1d, 0x06, 0xf8, 0x82, 0x17, 0xcb, 0xee, 0xe7, + 0xb5, 0xfe, 0xa8, 0x38, 0x1e, 0x36, 0x1d, 0xda, 0x89, 0xdf, 0x98, 0xe6, 0x71, 0x3c, 0xd3, 0xd7, + 0x82, 0x64, 0x35, 0x2a, 0x27, 0x91, 0x1f, 0xd4, 0x66, 0x81, 0x6e, 0x17, 0x0b, 0x8c, 0x06, 0x16, + 0xb4, 0x68, 0x37, 0x9a, 0xde, 0x2d, 0xc9, 0x4e, 0x88, 0x1f, 0xd5, 0x8d, 0x95, 0xb4, 0x08, 0xeb, + 0x78, 0xee, 0x1f, 0x3a, 0x30, 0x3c, 0xeb, 0xc5, 0x7e, 0xe5, 0xaf, 0x90, 0xf0, 0xf9, 0x10, 0x14, + 0xe7, 0xbc, 0x4a, 0x9d, 0xa0, 0x1b, 0xd9, 0x43, 0xef, 0xc8, 0xe5, 0xc7, 0xf3, 0xd8, 0xa8, 0x03, + 0xb0, 0xce, 0x69, 0xac, 0xdb, 0xd1, 0xd8, 0x7d, 0xdb, 0x81, 0xf1, 0xb9, 0x86, 0x4f, 0x82, 0x64, + 0x8e, 0x44, 0x09, 0x1b, 0xb8, 0x1a, 0x4c, 0x54, 0x14, 0xe4, 0x28, 0x43, 0xc7, 0x66, 0xeb, 0x5c, + 0x86, 0x04, 0xee, 0x20, 0x8a, 0xaa, 0x70, 0x8a, 0xc3, 0xd2, 0x55, 0x71, 0xa8, 0xf1, 0x63, 0xd6, + 0xd1, 0x39, 0x93, 0x02, 0xce, 0x92, 0x74, 0x7f, 0xec, 0xc0, 0x85, 0xb9, 0x46, 0x3b, 0x4e, 0x48, + 0x74, 0x53, 0x48, 0x23, 0xa9, 0xde, 0xa2, 0x8f, 0xc0, 0x50, 0x53, 0x7a, 0x6c, 0x9d, 0x3b, 0x4c, + 0x60, 0x26, 0xcf, 0x28, 0x36, 0x6d, 0xcc, 0xea, 0xc6, 0xcb, 0xa4, 0x92, 0xac, 0x90, 0xc4, 0x4b, + 0xc3, 0x0b, 0x52, 0x18, 0x56, 0x54, 0x51, 0x0b, 0xfa, 0xe3, 0x16, 0xa9, 0xd8, 0x8b, 0xee, 0x92, + 0x7d, 0x28, 0xb7, 0x48, 0x25, 0x95, 0xeb, 0xcc, 0xd7, 0xc8, 0x38, 0xb9, 0xff, 0xc7, 0x81, 0x07, + 0xba, 0xf4, 0x77, 0xd9, 0x8f, 0x13, 0xf4, 0x52, 0x47, 0x9f, 0xa7, 0x7b, 0xeb, 0x33, 0xad, 0xcd, + 0x7a, 0xac, 0x04, 0x82, 0x84, 0x68, 0xfd, 0xfd, 0x28, 0x14, 0xfd, 0x84, 0x34, 0xa5, 0x19, 0xda, + 0x82, 0xc1, 0xa8, 0x4b, 0x5f, 0x66, 0xc7, 0x64, 0x8c, 0xdf, 0x35, 0xca, 0x0f, 0x73, 0xb6, 0xee, + 0x16, 0x0c, 0xcc, 0x85, 0x8d, 0x76, 0x33, 0xe8, 0x2d, 0x52, 0x26, 0xd9, 0x6d, 0x91, 0xec, 0x1e, + 0xc9, 0xd4, 0x7f, 0x56, 0x22, 0x0d, 0x47, 0x7d, 0xf9, 0x86, 0x23, 0xf7, 0xdf, 0x3a, 0x40, 0x57, + 0x55, 0xd5, 0x17, 0x9e, 0x44, 0x4e, 0x8e, 0x33, 0x7c, 0x48, 0x27, 0x77, 0x7b, 0x6f, 0x6a, 0x4c, + 0x21, 0x6a, 0xf4, 0x3f, 0x04, 0x03, 0x31, 0x3b, 0x92, 0x8b, 0x36, 0x2c, 0x48, 0xfd, 0x99, 0x1f, + 0xd4, 0x6f, 0xef, 0x4d, 0xf5, 0x14, 0xb6, 0x39, 0xad, 0x68, 0x0b, 0xa7, 0xa7, 0xa0, 0x4a, 0x15, + 0xbe, 0x26, 0x89, 0x63, 0xaf, 0x26, 0x4f, 0x78, 0x4a, 0xe1, 0x5b, 0xe1, 0x60, 0x2c, 0xcb, 0xdd, + 0x2f, 0x39, 0x30, 0xa6, 0x36, 0x2f, 0xaa, 0xbe, 0xa3, 0xeb, 0xfa, 0x36, 0xc7, 0x67, 0xca, 0x43, + 0x5d, 0x24, 0x8e, 0xd8, 0xc8, 0x0f, 0xde, 0x05, 0xdf, 0x05, 0xa3, 0x55, 0xd2, 0x22, 0x41, 0x95, + 0x04, 0x15, 0x7a, 0xfc, 0xa6, 0x33, 0x64, 0x78, 0x76, 0x82, 0x9e, 0x37, 0xe7, 0x35, 0x38, 0x36, + 0xb0, 0xdc, 0x6f, 0x38, 0x70, 0xbf, 0x22, 0x57, 0x26, 0x09, 0x26, 0x49, 0xb4, 0xab, 0xc2, 0x34, + 0x0f, 0xb7, 0x5b, 0xdd, 0xa4, 0xfa, 0x6f, 0x12, 0x71, 0xe6, 0x47, 0xdb, 0xae, 0x46, 0xb8, 0xb6, + 0xcc, 0x88, 0x60, 0x49, 0xcd, 0xfd, 0xd5, 0x3e, 0x38, 0xab, 0x37, 0x52, 0x09, 0x98, 0x5f, 0x72, + 0x00, 0xd4, 0x08, 0xd0, 0x0d, 0xb9, 0xcf, 0x8e, 0xef, 0xca, 0xf8, 0x52, 0xa9, 0x08, 0x52, 0xe0, + 0x18, 0x6b, 0x6c, 0xd1, 0x0b, 0x30, 0xba, 0x4d, 0x17, 0x05, 0x59, 0xa1, 0xea, 0x42, 0x5c, 0xea, + 0x63, 0xcd, 0x98, 0xca, 0xfb, 0x98, 0xcf, 0xa7, 0x78, 0xa9, 0x39, 0x40, 0x03, 0xc6, 0xd8, 0x20, + 0x45, 0x4f, 0x3a, 0x63, 0x91, 0xfe, 0x49, 0x84, 0x4d, 0xfc, 0x83, 0x16, 0xfb, 0x98, 0xfd, 0xea, + 0xb3, 0xa7, 0xf7, 0xf7, 0xa6, 0xc6, 0x0c, 0x10, 0x36, 0x1b, 0xe1, 0xbe, 0x00, 0x6c, 0x2c, 0xfc, + 0xa0, 0x4d, 0x56, 0x03, 0xf4, 0x88, 0xb4, 0xd1, 0x71, 0xbf, 0x8a, 0x92, 0x1c, 0xba, 0x9d, 0x8e, + 0x9e, 0x65, 0x37, 0x3d, 0xbf, 0xc1, 0xc2, 0x17, 0x29, 0x96, 0x3a, 0xcb, 0x2e, 0x30, 0x28, 0x16, + 0xa5, 0xee, 0x34, 0x0c, 0xce, 0xd1, 0xbe, 0x93, 0x88, 0xd2, 0xd5, 0xa3, 0x8e, 0xc7, 0x8c, 0xa8, + 0x63, 0x19, 0x5d, 0xbc, 0x0e, 0xe7, 0xe6, 0x22, 0xe2, 0x25, 0xa4, 0xfc, 0xf4, 0x6c, 0xbb, 0xb2, + 0x45, 0x12, 0x1e, 0xda, 0x15, 0xa3, 0xf7, 0xc2, 0x58, 0xc8, 0xb6, 0x8c, 0xe5, 0xb0, 0xb2, 0xe5, + 0x07, 0x35, 0x61, 0x72, 0x3d, 0x27, 0xa8, 0x8c, 0xad, 0xea, 0x85, 0xd8, 0xc4, 0x75, 0xff, 0x73, + 0x01, 0x46, 0xe7, 0xa2, 0x30, 0x90, 0x62, 0xf1, 0x04, 0xb6, 0xb2, 0xc4, 0xd8, 0xca, 0x2c, 0xb8, + 0x3b, 0xf5, 0xf6, 0x77, 0xdb, 0xce, 0xd0, 0xeb, 0x4a, 0x44, 0xf6, 0xd9, 0x3a, 0x82, 0x18, 0x7c, + 0x19, 0xed, 0xf4, 0x63, 0x9b, 0x02, 0xd4, 0xfd, 0x2f, 0x0e, 0x4c, 0xe8, 0xe8, 0x27, 0xb0, 0x83, + 0xc6, 0xe6, 0x0e, 0x7a, 0xdd, 0x6e, 0x7f, 0xbb, 0x6c, 0x9b, 0x9f, 0x1d, 0x30, 0xfb, 0xc9, 0x7c, + 0xdd, 0x5f, 0x71, 0x60, 0x74, 0x47, 0x03, 0x88, 0xce, 0xda, 0x56, 0x62, 0xde, 0x21, 0xc5, 0x8c, + 0x0e, 0xbd, 0x9d, 0xf9, 0x8d, 0x8d, 0x96, 0x50, 0xb9, 0x1f, 0x57, 0xea, 0xa4, 0xda, 0x6e, 0xc8, + 0xed, 0x5b, 0x0d, 0x69, 0x59, 0xc0, 0xb1, 0xc2, 0x40, 0x2f, 0xc1, 0xe9, 0x4a, 0x18, 0x54, 0xda, + 0x51, 0x44, 0x82, 0xca, 0xee, 0x1a, 0xbb, 0x23, 0x21, 0x36, 0xc4, 0x69, 0x51, 0xed, 0xf4, 0x5c, + 0x16, 0xe1, 0x76, 0x1e, 0x10, 0x77, 0x12, 0xe2, 0xce, 0x82, 0x98, 0x6e, 0x59, 0xe2, 0xc0, 0xa5, + 0x39, 0x0b, 0x18, 0x18, 0xcb, 0x72, 0x74, 0x03, 0x2e, 0xc4, 0x89, 0x17, 0x25, 0x7e, 0x50, 0x9b, + 0x27, 0x5e, 0xb5, 0xe1, 0x07, 0xf4, 0x28, 0x11, 0x06, 0x55, 0xee, 0x4a, 0xec, 0x9b, 0x7d, 0x60, + 0x7f, 0x6f, 0xea, 0x42, 0x39, 0x1f, 0x05, 0x77, 0xab, 0x8b, 0x3e, 0x04, 0x93, 0xc2, 0x1d, 0xb1, + 0xd9, 0x6e, 0x3c, 0x1b, 0x6e, 0xc4, 0x57, 0xfd, 0x98, 0x9e, 0xe3, 0x97, 0xfd, 0xa6, 0x9f, 0x30, + 0x87, 0x61, 0x71, 0xf6, 0xe2, 0xfe, 0xde, 0xd4, 0x64, 0xb9, 0x2b, 0x16, 0x3e, 0x80, 0x02, 0xc2, + 0x70, 0x9e, 0x0b, 0xbf, 0x0e, 0xda, 0x83, 0x8c, 0xf6, 0xe4, 0xfe, 0xde, 0xd4, 0xf9, 0x85, 0x5c, + 0x0c, 0xdc, 0xa5, 0x26, 0xfd, 0x82, 0x89, 0xdf, 0x24, 0xaf, 0x86, 0x01, 0x61, 0x81, 0x2a, 0xda, + 0x17, 0x5c, 0x17, 0x70, 0xac, 0x30, 0xd0, 0xcb, 0xe9, 0x4c, 0xa4, 0xcb, 0x45, 0x04, 0x9c, 0x1c, + 0x5e, 0xc2, 0xb1, 0xa3, 0xc9, 0x4d, 0x8d, 0x12, 0x8b, 0xa4, 0x34, 0x68, 0xbb, 0x7f, 0x54, 0x00, + 0xd4, 0x29, 0x22, 0xd0, 0x12, 0x0c, 0x78, 0x95, 0xc4, 0xdf, 0x96, 0x91, 0x79, 0x8f, 0xe4, 0x6d, + 0x9f, 0x9c, 0x15, 0x26, 0x9b, 0x84, 0xce, 0x10, 0x92, 0xca, 0x95, 0x19, 0x56, 0x15, 0x0b, 0x12, + 0x28, 0x84, 0xd3, 0x0d, 0x2f, 0x4e, 0xe4, 0x5c, 0xad, 0xd2, 0x2e, 0x0b, 0xc1, 0xfa, 0xb3, 0xbd, + 0x75, 0x8a, 0xd6, 0x98, 0x3d, 0x47, 0x67, 0xee, 0x72, 0x96, 0x10, 0xee, 0xa4, 0x8d, 0x3e, 0xc6, + 0xf4, 0x10, 0xae, 0x24, 0x4a, 0x05, 0x60, 0xc9, 0xca, 0x1e, 0xcd, 0x69, 0x1a, 0x3a, 0x88, 0x60, + 0x83, 0x35, 0x96, 0xee, 0xbf, 0x03, 0x18, 0x9c, 0x9f, 0x59, 0x5c, 0xf7, 0xe2, 0xad, 0x1e, 0x54, + 0x73, 0x3a, 0x3b, 0x84, 0x0e, 0x95, 0x5d, 0xdf, 0x52, 0xb7, 0xc2, 0x0a, 0x03, 0x05, 0x30, 0xe0, + 0x07, 0x74, 0x41, 0x94, 0xc6, 0x6d, 0x99, 0xbf, 0xd5, 0x31, 0x83, 0xd9, 0x27, 0xae, 0x31, 0xea, + 0x58, 0x70, 0x41, 0xaf, 0xc3, 0xb0, 0x27, 0x6f, 0xb6, 0x88, 0x6d, 0x69, 0xc9, 0x86, 0x5d, 0x57, + 0x90, 0xd4, 0x23, 0x6b, 0x04, 0x08, 0xa7, 0x0c, 0xd1, 0xc7, 0x1d, 0x18, 0x91, 0x5d, 0xc7, 0x64, + 0x53, 0xb8, 0x5c, 0x57, 0xec, 0xf5, 0x19, 0x93, 0x4d, 0x1e, 0x76, 0xa1, 0x01, 0xb0, 0xce, 0xb2, + 0x43, 0x95, 0x2f, 0xf6, 0xa2, 0xca, 0xa3, 0x1d, 0x18, 0xde, 0xf1, 0x93, 0x3a, 0xdb, 0x78, 0x84, + 0xab, 0x67, 0xe1, 0xee, 0x5b, 0x4d, 0xc9, 0xa5, 0x23, 0x76, 0x53, 0x32, 0xc0, 0x29, 0x2f, 0x74, + 0x89, 0x33, 0x66, 0x37, 0x83, 0x98, 0xc8, 0x1a, 0x36, 0x2b, 0xb0, 0x02, 0x9c, 0xe2, 0xd0, 0x21, + 0x1e, 0xa5, 0xbf, 0xca, 0xe4, 0x95, 0x36, 0x5d, 0xc7, 0x22, 0x94, 0xce, 0xc2, 0xbc, 0x92, 0x14, + 0xf9, 0x60, 0xdd, 0xd4, 0x78, 0x60, 0x83, 0x23, 0x5d, 0x23, 0x3b, 0x75, 0x12, 0x88, 0x50, 0x7f, + 0xb5, 0x46, 0x6e, 0xd6, 0x49, 0x80, 0x59, 0x09, 0x7a, 0x9d, 0x1f, 0x2d, 0xb8, 0x8e, 0x2b, 0xc2, + 0xe2, 0x96, 0xed, 0xa8, 0xdd, 0x9c, 0x26, 0x8f, 0xb6, 0x4f, 0x7f, 0x63, 0x8d, 0x1f, 0x55, 0x97, + 0xc3, 0xe0, 0xca, 0x2d, 0x3f, 0x11, 0x77, 0x04, 0x94, 0xa4, 0x5b, 0x65, 0x50, 0x2c, 0x4a, 0x79, + 0x48, 0x01, 0x9d, 0x04, 0x31, 0xbb, 0x10, 0x30, 0xac, 0x87, 0x14, 0x30, 0x30, 0x96, 0xe5, 0xe8, + 0x9f, 0x38, 0x50, 0xac, 0x87, 0xe1, 0x56, 0x5c, 0x1a, 0x63, 0x93, 0xc3, 0x82, 0xaa, 0x27, 0x24, + 0xce, 0xf4, 0x55, 0x4a, 0xd6, 0xbc, 0xf5, 0x54, 0x64, 0xb0, 0xdb, 0x7b, 0x53, 0xe3, 0xcb, 0xfe, + 0x26, 0xa9, 0xec, 0x56, 0x1a, 0x84, 0x41, 0xde, 0x7c, 0x5b, 0x83, 0x5c, 0xd9, 0x26, 0x41, 0x82, + 0x79, 0xab, 0x26, 0x3f, 0xeb, 0x00, 0xa4, 0x84, 0x72, 0x7c, 0x77, 0xc4, 0xf4, 0x76, 0x5b, 0x38, + 0xe7, 0x19, 0x4d, 0xd3, 0x9d, 0x81, 0xff, 0xde, 0x81, 0x11, 0xda, 0x39, 0x29, 0x02, 0x1f, 0x83, + 0x81, 0xc4, 0x8b, 0x6a, 0x44, 0xda, 0xaf, 0xd5, 0xe7, 0x58, 0x67, 0x50, 0x2c, 0x4a, 0x51, 0x00, + 0xc5, 0xc4, 0x8b, 0xb7, 0xa4, 0x76, 0x79, 0xcd, 0xda, 0x10, 0xa7, 0x8a, 0x25, 0xfd, 0x15, 0x63, + 0xce, 0x06, 0x3d, 0x0e, 0x43, 0x54, 0x01, 0x58, 0xf0, 0x62, 0x19, 0x52, 0x32, 0x4a, 0x85, 0xf8, + 0x82, 0x80, 0x61, 0x55, 0xea, 0xfe, 0x5a, 0x01, 0xfa, 0xe7, 0xf9, 0x39, 0x63, 0x20, 0x0e, 0xdb, + 0x51, 0x85, 0x08, 0x7d, 0xd3, 0xc2, 0x9c, 0xa6, 0x74, 0xcb, 0x8c, 0xa6, 0xa6, 0xe9, 0xb3, 0xdf, + 0x58, 0xf0, 0xa2, 0x07, 0xd9, 0xf1, 0x24, 0xf2, 0x82, 0x78, 0x93, 0x79, 0x0a, 0xfc, 0x30, 0x10, + 0x43, 0x64, 0x61, 0x16, 0xae, 0x1b, 0x74, 0xcb, 0x09, 0x69, 0xa5, 0x0e, 0x0b, 0xb3, 0x0c, 0x67, + 0xda, 0xe0, 0xfe, 0xba, 0x03, 0x90, 0xb6, 0x1e, 0x7d, 0xc6, 0x81, 0x31, 0x4f, 0x0f, 0x65, 0x14, + 0x63, 0xb4, 0x6a, 0xcf, 0xad, 0xc8, 0xc8, 0xf2, 0x23, 0xb6, 0x01, 0xc2, 0x26, 0x63, 0xf7, 0xdd, + 0x50, 0x64, 0xab, 0x83, 0xe9, 0xe2, 0xc2, 0x24, 0x9b, 0xb5, 0xc1, 0x48, 0x53, 0x2d, 0x56, 0x18, + 0xee, 0x4b, 0x30, 0x7e, 0xe5, 0x16, 0xa9, 0xb4, 0x93, 0x30, 0xe2, 0x06, 0xe9, 0x2e, 0x57, 0x57, + 0x9c, 0x23, 0x5d, 0x5d, 0xf9, 0xb6, 0x03, 0x23, 0x5a, 0x5c, 0x1b, 0xdd, 0xa9, 0x6b, 0x73, 0x65, + 0x7e, 0xee, 0x16, 0x43, 0xb5, 0x64, 0x25, 0x72, 0x8e, 0x93, 0x4c, 0xb7, 0x11, 0x05, 0xc2, 0x29, + 0xc3, 0x3b, 0xc4, 0x9d, 0xb9, 0xbf, 0xef, 0xc0, 0xb9, 0xdc, 0x20, 0xbc, 0x7b, 0xdc, 0x6c, 0xc3, + 0xf7, 0x5b, 0xe8, 0xc1, 0xf7, 0xfb, 0xdb, 0x0e, 0xa4, 0x94, 0xa8, 0x28, 0xda, 0x48, 0x5b, 0xae, + 0x89, 0x22, 0xc1, 0x49, 0x94, 0xa2, 0xd7, 0xe1, 0x82, 0xf9, 0x05, 0x8f, 0xe8, 0x06, 0xe0, 0x67, + 0xa6, 0x7c, 0x4a, 0xb8, 0x1b, 0x0b, 0xf7, 0xab, 0x0e, 0x14, 0x17, 0xbd, 0x76, 0x8d, 0xf4, 0x64, + 0xc5, 0xa1, 0x72, 0x2c, 0x22, 0x5e, 0x23, 0x91, 0x7a, 0xba, 0x90, 0x63, 0x58, 0xc0, 0xb0, 0x2a, + 0x45, 0x33, 0x30, 0x1c, 0xb6, 0x88, 0xe1, 0xba, 0x7a, 0x44, 0x8e, 0xde, 0xaa, 0x2c, 0xa0, 0xdb, + 0x0e, 0xe3, 0xae, 0x20, 0x38, 0xad, 0xe5, 0x7e, 0xbf, 0x08, 0x23, 0xda, 0x75, 0x0d, 0xaa, 0x0b, + 0x44, 0xa4, 0x15, 0x66, 0xf5, 0x65, 0x3a, 0x61, 0x30, 0x2b, 0xa1, 0x6b, 0x30, 0x22, 0xdb, 0x7e, + 0xcc, 0xc5, 0x96, 0xb1, 0x06, 0xb1, 0x80, 0x63, 0x85, 0x81, 0xa6, 0xa0, 0x58, 0x25, 0xad, 0xa4, + 0xce, 0x9a, 0xd7, 0xcf, 0x63, 0xd6, 0xe6, 0x29, 0x00, 0x73, 0x38, 0x45, 0xd8, 0x24, 0x49, 0xa5, + 0xce, 0x0c, 0x96, 0x22, 0xa8, 0x6d, 0x81, 0x02, 0x30, 0x87, 0xe7, 0x38, 0xd7, 0x8a, 0xc7, 0xef, + 0x5c, 0x1b, 0xb0, 0xec, 0x5c, 0x43, 0x2d, 0x38, 0x13, 0xc7, 0xf5, 0xb5, 0xc8, 0xdf, 0xf6, 0x12, + 0x92, 0xce, 0xbe, 0xc1, 0xc3, 0xf0, 0xb9, 0xc0, 0x2e, 0x50, 0x97, 0xaf, 0x66, 0xa9, 0xe0, 0x3c, + 0xd2, 0xa8, 0x0c, 0xe7, 0xfc, 0x20, 0x26, 0x95, 0x76, 0x44, 0xae, 0xd5, 0x82, 0x30, 0x22, 0x57, + 0xc3, 0x98, 0x92, 0x13, 0xd7, 0x3f, 0x55, 0x98, 0xe7, 0xb5, 0x3c, 0x24, 0x9c, 0x5f, 0x17, 0x2d, + 0xc2, 0xe9, 0xaa, 0x1f, 0x7b, 0x1b, 0x0d, 0x52, 0x6e, 0x6f, 0x34, 0x43, 0x7a, 0xe8, 0xe3, 0x57, + 0x32, 0x86, 0x66, 0xef, 0x97, 0xe6, 0x8d, 0xf9, 0x2c, 0x02, 0xee, 0xac, 0x83, 0x9e, 0x81, 0xd1, + 0xd8, 0x0f, 0x6a, 0x0d, 0x32, 0x1b, 0x79, 0x41, 0xa5, 0x2e, 0xee, 0x8d, 0x2a, 0x33, 0x70, 0x59, + 0x2b, 0xc3, 0x06, 0x26, 0x5b, 0xf3, 0xbc, 0x4e, 0x46, 0x1b, 0x14, 0xd8, 0xa2, 0xd4, 0xfd, 0x81, + 0x03, 0xa3, 0x7a, 0x88, 0x35, 0xd5, 0xb4, 0xa1, 0x3e, 0xbf, 0x50, 0xe6, 0x7b, 0x81, 0xbd, 0x1d, + 0xff, 0xaa, 0xa2, 0x99, 0x9e, 0x4c, 0x53, 0x18, 0xd6, 0x78, 0xf6, 0x70, 0x61, 0xfa, 0x11, 0x28, + 0x6e, 0x86, 0x54, 0x21, 0xe9, 0x33, 0xed, 0xc7, 0x0b, 0x14, 0x88, 0x79, 0x99, 0xfb, 0xbf, 0x1c, + 0x38, 0x9f, 0x1f, 0x3d, 0xfe, 0xd3, 0xd0, 0xc9, 0xcb, 0x00, 0xb4, 0x2b, 0x86, 0x50, 0xd7, 0x52, + 0x26, 0xc8, 0x12, 0xac, 0x61, 0xf5, 0xd6, 0xed, 0x3f, 0xa3, 0x4a, 0x71, 0xca, 0xe7, 0x73, 0x0e, + 0x8c, 0x51, 0xb6, 0x4b, 0xd1, 0x86, 0xd1, 0xdb, 0x55, 0x3b, 0xbd, 0x55, 0x64, 0x53, 0x33, 0xb9, + 0x01, 0xc6, 0x26, 0x73, 0xf4, 0x73, 0x30, 0xec, 0x55, 0xab, 0x11, 0x89, 0x63, 0xe5, 0x70, 0x62, + 0xbe, 0xf0, 0x19, 0x09, 0xc4, 0x69, 0x39, 0x15, 0xa2, 0xf5, 0xea, 0x66, 0x4c, 0xe5, 0x92, 0x10, + 0xdc, 0x4a, 0x88, 0x52, 0x26, 0x14, 0x8e, 0x15, 0x86, 0xfb, 0x2b, 0xfd, 0x60, 0xf2, 0x46, 0x55, + 0x38, 0xb5, 0x15, 0x6d, 0xcc, 0x31, 0x7f, 0xfd, 0x51, 0xfc, 0xe6, 0xcc, 0x9f, 0xbd, 0x64, 0x52, + 0xc0, 0x59, 0x92, 0x82, 0xcb, 0x12, 0xd9, 0x4d, 0xbc, 0x8d, 0x23, 0x7b, 0xcd, 0x97, 0x4c, 0x0a, + 0x38, 0x4b, 0x12, 0xbd, 0x1b, 0x46, 0xb6, 0xa2, 0x0d, 0x29, 0xa2, 0xb3, 0x21, 0x18, 0x4b, 0x69, + 0x11, 0xd6, 0xf1, 0xe8, 0x10, 0x6e, 0x45, 0x1b, 0x74, 0x57, 0x94, 0x09, 0x04, 0xd4, 0x10, 0x2e, + 0x09, 0x38, 0x56, 0x18, 0xa8, 0x05, 0x68, 0x4b, 0x8e, 0x9e, 0x8a, 0x4e, 0x10, 0x3b, 0x49, 0xef, + 0xc1, 0x0d, 0x2c, 0x2c, 0x7c, 0xa9, 0x83, 0x0e, 0xce, 0xa1, 0x8d, 0x5e, 0x80, 0x0b, 0x5b, 0xd1, + 0x86, 0x50, 0x16, 0xd6, 0x22, 0x3f, 0xa8, 0xf8, 0x2d, 0x23, 0x59, 0xc0, 0x94, 0x68, 0xee, 0x85, + 0xa5, 0x7c, 0x34, 0xdc, 0xad, 0xbe, 0xfb, 0x3b, 0xfd, 0xc0, 0xae, 0x39, 0x52, 0x59, 0xd8, 0x24, + 0x49, 0x3d, 0xac, 0x66, 0xf5, 0x9f, 0x15, 0x06, 0xc5, 0xa2, 0x54, 0x06, 0x3f, 0x16, 0xba, 0x04, + 0x3f, 0xee, 0xc0, 0x60, 0x9d, 0x78, 0x55, 0x12, 0x49, 0x73, 0xdd, 0xb2, 0x9d, 0x8b, 0x99, 0x57, + 0x19, 0xd1, 0xf4, 0x18, 0xce, 0x7f, 0xc7, 0x58, 0x72, 0x43, 0xef, 0x81, 0x71, 0xaa, 0xc8, 0x84, + 0xed, 0x44, 0xda, 0xa6, 0xfb, 0x99, 0x6d, 0x9a, 0xed, 0xa8, 0xeb, 0x46, 0x09, 0xce, 0x60, 0xa2, + 0x79, 0x98, 0x10, 0x76, 0x64, 0x65, 0x06, 0x14, 0x03, 0xab, 0xb2, 0x38, 0x94, 0x33, 0xe5, 0xb8, + 0xa3, 0x06, 0x0b, 0x5e, 0x0b, 0xab, 0xdc, 0x95, 0xa8, 0x07, 0xaf, 0x85, 0xd5, 0x5d, 0xcc, 0x4a, + 0xd0, 0xab, 0x30, 0x44, 0xff, 0x2e, 0x44, 0x61, 0x53, 0xd8, 0x66, 0xd6, 0xec, 0x8c, 0x0e, 0xe5, + 0x21, 0x4e, 0x8a, 0x4c, 0xc1, 0x9b, 0x15, 0x5c, 0xb0, 0xe2, 0x47, 0xcf, 0x2b, 0x72, 0x1f, 0x2e, + 0x6f, 0xf9, 0xad, 0xe7, 0x49, 0xe4, 0x6f, 0xee, 0x32, 0xa5, 0x61, 0x28, 0x3d, 0xaf, 0x5c, 0xeb, + 0xc0, 0xc0, 0x39, 0xb5, 0xdc, 0xcf, 0x15, 0x60, 0x54, 0xbf, 0x2d, 0x7b, 0xa7, 0x88, 0xd8, 0x38, + 0x9d, 0x14, 0xfc, 0x74, 0x7a, 0xd5, 0x42, 0xb7, 0xef, 0x34, 0x21, 0xea, 0xd0, 0xef, 0xb5, 0x85, + 0xb6, 0x68, 0xc5, 0x08, 0xc6, 0x7a, 0xdc, 0x4e, 0xea, 0xfc, 0x5a, 0x15, 0x8b, 0x55, 0x65, 0x1c, + 0xdc, 0x4f, 0xf6, 0xc1, 0x90, 0x2c, 0x44, 0x9f, 0x70, 0x00, 0xd2, 0x98, 0x21, 0x21, 0x4a, 0xd7, + 0x6c, 0x04, 0x94, 0xe8, 0xe1, 0x4e, 0x9a, 0xe1, 0x5a, 0xc1, 0xb1, 0xc6, 0x17, 0x25, 0x30, 0x10, + 0xd2, 0xc6, 0x5d, 0xb6, 0x77, 0xe3, 0x7b, 0x95, 0x32, 0xbe, 0xcc, 0xb8, 0xa7, 0x66, 0x33, 0x06, + 0xc3, 0x82, 0x17, 0x3d, 0x01, 0x6e, 0xc8, 0x50, 0x36, 0x7b, 0x26, 0x66, 0x15, 0x1d, 0x97, 0x1e, + 0xe8, 0x14, 0x08, 0xa7, 0x0c, 0xdd, 0xa7, 0x60, 0xdc, 0x5c, 0x0c, 0xf4, 0x44, 0xb0, 0xb1, 0x9b, + 0x10, 0x6e, 0x6f, 0x18, 0xe5, 0x27, 0x82, 0x59, 0x0a, 0xc0, 0x1c, 0xee, 0x7e, 0x8f, 0xea, 0x01, + 0x4a, 0xbc, 0xf4, 0x60, 0xe2, 0x7f, 0x44, 0x37, 0x96, 0x75, 0x3b, 0x76, 0x7d, 0x0c, 0x86, 0xd9, + 0x3f, 0x6c, 0xa1, 0xf7, 0xd9, 0x72, 0x3c, 0xa7, 0xed, 0x14, 0x4b, 0x9d, 0xe9, 0x04, 0xcf, 0x4b, + 0x46, 0x38, 0xe5, 0xe9, 0x86, 0x30, 0x91, 0xc5, 0x46, 0x1f, 0x84, 0xd1, 0x58, 0x6e, 0xab, 0xe9, + 0xdd, 0xaf, 0x1e, 0xb7, 0x5f, 0x66, 0xf7, 0x2d, 0x6b, 0xd5, 0xb1, 0x41, 0xcc, 0x5d, 0x85, 0x01, + 0xab, 0x43, 0xe8, 0x7e, 0xcb, 0x81, 0x61, 0xe6, 0x79, 0xab, 0x45, 0x5e, 0x33, 0xad, 0xd2, 0x77, + 0xc0, 0xa8, 0xc7, 0x30, 0xc8, 0xcf, 0xe8, 0x32, 0x62, 0xc5, 0x82, 0x94, 0xe1, 0x89, 0xda, 0x52, + 0x29, 0xc3, 0x8d, 0x01, 0x31, 0x96, 0x9c, 0xdc, 0x4f, 0x15, 0x60, 0xe0, 0x5a, 0xd0, 0x6a, 0xff, + 0xb5, 0x4f, 0x16, 0xb6, 0x02, 0xfd, 0xd7, 0x12, 0xd2, 0x34, 0x73, 0xda, 0x8d, 0xce, 0x3e, 0xaa, + 0xe7, 0xb3, 0x2b, 0x99, 0xf9, 0xec, 0xb0, 0xb7, 0x23, 0x03, 0xba, 0x84, 0x8d, 0x38, 0xbd, 0xff, + 0xf6, 0x24, 0x0c, 0x2f, 0x7b, 0x1b, 0xa4, 0xb1, 0x44, 0x76, 0xd9, 0x6d, 0x35, 0x1e, 0x5c, 0xe0, + 0xa4, 0x07, 0x7b, 0x23, 0x10, 0x60, 0x1e, 0xc6, 0x19, 0xb6, 0x5a, 0x0c, 0xf4, 0xe4, 0x40, 0xd2, + 0x84, 0x40, 0x8e, 0x79, 0x72, 0xd0, 0x92, 0x01, 0x69, 0x58, 0xee, 0x34, 0x8c, 0xa4, 0x54, 0x7a, + 0xe0, 0xfa, 0x93, 0x02, 0x8c, 0x19, 0xa6, 0x6e, 0xc3, 0x01, 0xe8, 0xdc, 0xd1, 0x01, 0x68, 0x38, + 0xe4, 0x0a, 0xf7, 0xda, 0x21, 0xd7, 0x77, 0xf2, 0x0e, 0x39, 0xf3, 0x23, 0xf5, 0xf7, 0xf4, 0x91, + 0x1a, 0xd0, 0xbf, 0xec, 0x07, 0x5b, 0xbd, 0xc9, 0x99, 0xb8, 0x12, 0xb6, 0x3a, 0xe4, 0x4c, 0x99, + 0x02, 0x31, 0x2f, 0x93, 0x9a, 0x4b, 0x5f, 0xbe, 0xe6, 0xe2, 0x7e, 0xc2, 0x81, 0xd1, 0x15, 0x2f, + 0xf0, 0x37, 0x49, 0x9c, 0xb0, 0x79, 0x95, 0x1c, 0xeb, 0xad, 0xa5, 0xd1, 0x2e, 0xf7, 0xef, 0xdf, + 0x74, 0xe0, 0xf4, 0x0a, 0x69, 0x86, 0xfe, 0xab, 0x5e, 0x1a, 0x2f, 0x49, 0xdb, 0x5e, 0xf7, 0x13, + 0x11, 0x1e, 0xa6, 0xda, 0x7e, 0xd5, 0x4f, 0x30, 0x85, 0xdf, 0xc1, 0x8e, 0xcb, 0xee, 0x03, 0xd0, + 0x03, 0x9a, 0x76, 0x93, 0x2e, 0x8d, 0x84, 0x94, 0x05, 0x38, 0xc5, 0x71, 0x7f, 0xd7, 0x81, 0x41, + 0xde, 0x08, 0x15, 0x62, 0xea, 0x74, 0xa1, 0x5d, 0x87, 0x22, 0xab, 0x27, 0x66, 0xf5, 0xa2, 0x05, + 0xf5, 0x87, 0x92, 0xe3, 0x6b, 0x90, 0xfd, 0x8b, 0x39, 0x03, 0x76, 0x6c, 0xf1, 0x6e, 0xcd, 0xa8, + 0x50, 0xd1, 0xf4, 0xd8, 0xc2, 0xa0, 0x58, 0x94, 0xba, 0x5f, 0xeb, 0x83, 0x21, 0x95, 0x76, 0x8a, + 0x25, 0x05, 0x08, 0x82, 0x30, 0xf1, 0x78, 0x60, 0x01, 0x97, 0xd5, 0x1f, 0xb4, 0x97, 0xf6, 0x6a, + 0x7a, 0x26, 0xa5, 0xce, 0xfd, 0x77, 0xea, 0x10, 0xaa, 0x95, 0x60, 0xbd, 0x11, 0xe8, 0xa3, 0x30, + 0xd0, 0xa0, 0xd2, 0x47, 0x8a, 0xee, 0xe7, 0x2d, 0x36, 0x87, 0x89, 0x35, 0xd1, 0x12, 0x35, 0x42, + 0x1c, 0x88, 0x05, 0xd7, 0xc9, 0xf7, 0xc1, 0x44, 0xb6, 0xd5, 0x77, 0xba, 0xe8, 0x37, 0xac, 0x5f, + 0x13, 0xfc, 0xdb, 0x42, 0x7a, 0x1e, 0xbe, 0xaa, 0xfb, 0x1c, 0x8c, 0xac, 0x90, 0x24, 0xf2, 0x2b, + 0x8c, 0xc0, 0x9d, 0x26, 0x57, 0x4f, 0xfa, 0xc3, 0xa7, 0xd9, 0x64, 0xa5, 0x34, 0x63, 0xf4, 0x3a, + 0x40, 0x2b, 0x0a, 0xe9, 0xf9, 0x95, 0xb4, 0xe5, 0xc7, 0xb6, 0xa0, 0x0f, 0xaf, 0x29, 0x9a, 0xdc, + 0xe5, 0x9c, 0xfe, 0xc6, 0x1a, 0x3f, 0xf7, 0x45, 0x28, 0xae, 0xb4, 0x13, 0x72, 0xab, 0x07, 0x89, + 0x75, 0xd8, 0x9b, 0xef, 0xee, 0x07, 0x61, 0x94, 0xd1, 0xbe, 0x1a, 0x36, 0xe8, 0xb6, 0x4a, 0x87, + 0xa6, 0x49, 0x7f, 0x67, 0x9d, 0x02, 0x0c, 0x09, 0xf3, 0x32, 0xba, 0x64, 0xea, 0x61, 0xa3, 0xaa, + 0x6e, 0x01, 0xa9, 0x09, 0x71, 0x95, 0x41, 0xb1, 0x28, 0x75, 0x7f, 0xa9, 0x00, 0x23, 0xac, 0xa2, + 0x10, 0x37, 0xbb, 0x30, 0x58, 0xe7, 0x7c, 0xc4, 0x18, 0x5a, 0x08, 0xa9, 0xd3, 0x5b, 0xaf, 0x9d, + 0xe5, 0x38, 0x00, 0x4b, 0x7e, 0x94, 0xf5, 0x8e, 0xe7, 0x27, 0x94, 0x75, 0xe1, 0x78, 0x59, 0xdf, + 0xe4, 0x6c, 0xb0, 0xe4, 0xe7, 0xfe, 0x22, 0xb0, 0xdb, 0xb5, 0x0b, 0x0d, 0xaf, 0xc6, 0x47, 0x2e, + 0xdc, 0x22, 0x55, 0x21, 0x73, 0xb5, 0x91, 0xa3, 0x50, 0x2c, 0x4a, 0xf9, 0x8d, 0xc5, 0x24, 0xf2, + 0x55, 0x54, 0xae, 0x76, 0x63, 0x91, 0x81, 0x65, 0x0c, 0x76, 0xd5, 0xfd, 0x52, 0x01, 0x80, 0x25, + 0x29, 0xe3, 0x97, 0x62, 0x7f, 0x1e, 0x8a, 0xad, 0xba, 0x17, 0x67, 0x1d, 0x89, 0xc5, 0x35, 0x0a, + 0xbc, 0x2d, 0xae, 0xfd, 0xb2, 0x1f, 0x98, 0x23, 0xea, 0xc1, 0xf2, 0x85, 0x83, 0x83, 0xe5, 0x51, + 0x0b, 0x06, 0xc3, 0x76, 0x42, 0x75, 0x55, 0xb1, 0xd9, 0x5b, 0xf0, 0xa3, 0xaf, 0x72, 0x82, 0x3c, + 0xc2, 0x5c, 0xfc, 0xc0, 0x92, 0x0d, 0x7a, 0x06, 0x86, 0x5a, 0x51, 0x58, 0xa3, 0x7b, 0xb7, 0xd8, + 0xde, 0x1f, 0x94, 0xfa, 0xd0, 0x9a, 0x80, 0xdf, 0xd6, 0xfe, 0xc7, 0x0a, 0xdb, 0xfd, 0xe3, 0x09, + 0x3e, 0x2e, 0x62, 0xee, 0x4d, 0x42, 0xc1, 0x97, 0x96, 0x29, 0x10, 0x24, 0x0a, 0xd7, 0xe6, 0x71, + 0xc1, 0xaf, 0xaa, 0x75, 0x55, 0xe8, 0xba, 0xae, 0xde, 0x0d, 0x23, 0x55, 0x3f, 0x6e, 0x35, 0xbc, + 0xdd, 0xeb, 0x39, 0x66, 0xc1, 0xf9, 0xb4, 0x08, 0xeb, 0x78, 0xe8, 0x49, 0x71, 0x35, 0xa2, 0xdf, + 0x30, 0x05, 0xc9, 0xab, 0x11, 0xe9, 0xa5, 0x6b, 0x7e, 0x2b, 0x22, 0x7b, 0x39, 0xbd, 0xd8, 0xf3, + 0xe5, 0xf4, 0xac, 0x26, 0x36, 0x70, 0xf2, 0x9a, 0xd8, 0x7b, 0x61, 0x4c, 0xfe, 0x64, 0xea, 0x51, + 0xe9, 0x2c, 0x6b, 0xbd, 0x32, 0x57, 0xaf, 0xeb, 0x85, 0xd8, 0xc4, 0x4d, 0x27, 0xed, 0x60, 0xaf, + 0x93, 0xf6, 0x32, 0xc0, 0x46, 0xd8, 0x0e, 0xaa, 0x5e, 0xb4, 0x7b, 0x6d, 0x5e, 0x04, 0x52, 0x2a, + 0xc5, 0x6f, 0x56, 0x95, 0x60, 0x0d, 0x4b, 0x9f, 0xe8, 0xc3, 0x77, 0x98, 0xe8, 0x1f, 0x84, 0x61, + 0x16, 0x74, 0x4a, 0xaa, 0x33, 0x89, 0x08, 0x31, 0x3a, 0x4c, 0x7c, 0xa2, 0x92, 0xb9, 0x65, 0x49, + 0x04, 0xa7, 0xf4, 0xd0, 0x87, 0x00, 0x36, 0xfd, 0xc0, 0x8f, 0xeb, 0x8c, 0xfa, 0xc8, 0xa1, 0xa9, + 0xab, 0x7e, 0x2e, 0x28, 0x2a, 0x58, 0xa3, 0x88, 0x5e, 0x82, 0xd3, 0x24, 0x4e, 0xfc, 0xa6, 0x97, + 0x90, 0xaa, 0xba, 0x4c, 0x58, 0x62, 0xb6, 0x4c, 0x15, 0xf6, 0x7b, 0x25, 0x8b, 0x70, 0x3b, 0x0f, + 0x88, 0x3b, 0x09, 0x19, 0x2b, 0x72, 0xf2, 0x30, 0x2b, 0x12, 0xfd, 0xb9, 0x03, 0xa7, 0x23, 0xc2, + 0xe3, 0x4e, 0x62, 0xd5, 0xb0, 0x73, 0x4c, 0x1c, 0x57, 0x6c, 0xe4, 0xff, 0x56, 0x89, 0x3e, 0x70, + 0x96, 0x0b, 0x57, 0x5c, 0x88, 0xec, 0x7d, 0x47, 0xf9, 0xed, 0x3c, 0xe0, 0x9b, 0x6f, 0x4f, 0x4d, + 0x75, 0xe6, 0xa1, 0x57, 0xc4, 0xe9, 0xca, 0xfb, 0xfb, 0x6f, 0x4f, 0x4d, 0xc8, 0xdf, 0xe9, 0xa0, + 0x75, 0x74, 0x92, 0x6e, 0xab, 0xad, 0xb0, 0x7a, 0x6d, 0x4d, 0xc4, 0x82, 0xa9, 0x6d, 0x75, 0x8d, + 0x02, 0x31, 0x2f, 0x43, 0x8f, 0xc3, 0x50, 0xd5, 0x23, 0xcd, 0x30, 0x50, 0x99, 0x5c, 0x99, 0x36, + 0x3f, 0x2f, 0x60, 0x58, 0x95, 0xd2, 0x33, 0x44, 0x20, 0xb6, 0x94, 0xd2, 0x03, 0xb6, 0xce, 0x10, + 0x72, 0x93, 0xe2, 0x5c, 0xe5, 0x2f, 0xac, 0x38, 0xa1, 0x06, 0x0c, 0xf8, 0xcc, 0x50, 0x21, 0xc2, + 0x4d, 0x2d, 0x58, 0x47, 0xb8, 0xe1, 0x43, 0x06, 0x9b, 0x32, 0xd1, 0x2f, 0x78, 0xe8, 0x7b, 0xcd, + 0xa9, 0x93, 0xd9, 0x6b, 0x1e, 0x87, 0xa1, 0x4a, 0xdd, 0x6f, 0x54, 0x23, 0x12, 0x94, 0x26, 0xd8, + 0x89, 0x9d, 0x8d, 0xc4, 0x9c, 0x80, 0x61, 0x55, 0x8a, 0xfe, 0x16, 0x8c, 0x85, 0xed, 0x84, 0x89, + 0x16, 0x3a, 0x4e, 0x71, 0xe9, 0x34, 0x43, 0x67, 0xc1, 0x43, 0xab, 0x7a, 0x01, 0x36, 0xf1, 0xa8, + 0x88, 0xaf, 0x87, 0x31, 0xcb, 0x49, 0xc3, 0x44, 0xfc, 0x79, 0x53, 0xc4, 0x5f, 0xd5, 0xca, 0xb0, + 0x81, 0x89, 0xbe, 0xe2, 0xc0, 0xe9, 0x66, 0xf6, 0x00, 0x57, 0xba, 0xc0, 0x46, 0xa6, 0x6c, 0x43, + 0xd1, 0xcf, 0x90, 0xe6, 0x31, 0xd6, 0x1d, 0x60, 0xdc, 0xd9, 0x08, 0x96, 0x1d, 0x2a, 0xde, 0x0d, + 0x2a, 0xf5, 0x28, 0x0c, 0xcc, 0xe6, 0xdd, 0x6f, 0xeb, 0x4e, 0x14, 0x5b, 0xdb, 0x79, 0x2c, 0x66, + 0xef, 0xdf, 0xdf, 0x9b, 0x3a, 0x97, 0x5b, 0x84, 0xf3, 0x1b, 0x35, 0x39, 0x0f, 0xe7, 0xf3, 0xe5, + 0xc3, 0x9d, 0x4e, 0x1c, 0x7d, 0xfa, 0x89, 0x63, 0x01, 0xee, 0xef, 0xda, 0x28, 0xba, 0xd3, 0x48, + 0x6d, 0xd3, 0x31, 0x77, 0x9a, 0x0e, 0xed, 0x70, 0x1c, 0x46, 0xf5, 0x87, 0x0b, 0xdc, 0xff, 0xd7, + 0x07, 0x90, 0xda, 0xc9, 0x91, 0x07, 0xe3, 0xdc, 0x26, 0x7f, 0x6d, 0xfe, 0xc8, 0xb7, 0xb9, 0xe7, + 0x0c, 0x02, 0x38, 0x43, 0x10, 0x35, 0x01, 0x71, 0x08, 0xff, 0x7d, 0x14, 0xdf, 0x2a, 0x73, 0x45, + 0xce, 0x75, 0x10, 0xc1, 0x39, 0x84, 0x69, 0x8f, 0x92, 0x70, 0x8b, 0x04, 0x37, 0xf0, 0xf2, 0x51, + 0x52, 0x02, 0x70, 0x6f, 0x9c, 0x41, 0x00, 0x67, 0x08, 0x22, 0x17, 0x06, 0x98, 0x6d, 0x46, 0x06, + 0x68, 0x33, 0xf1, 0xc2, 0x34, 0x8d, 0x18, 0x8b, 0x12, 0xf4, 0x25, 0x07, 0xc6, 0x65, 0x66, 0x03, + 0x66, 0x0d, 0x95, 0xa1, 0xd9, 0x37, 0x6c, 0xf9, 0x39, 0xae, 0xe8, 0xd4, 0xd3, 0xc0, 0x47, 0x03, + 0x1c, 0xe3, 0x4c, 0x23, 0xdc, 0x17, 0xe0, 0x4c, 0x4e, 0x75, 0x2b, 0x27, 0xda, 0x6f, 0x3b, 0x30, + 0xa2, 0x25, 0xdc, 0x43, 0xaf, 0xc3, 0x70, 0x58, 0xb6, 0x1e, 0x6d, 0xb7, 0x5a, 0xee, 0x88, 0xb6, + 0x53, 0x20, 0x9c, 0x32, 0xec, 0x25, 0x48, 0x30, 0x37, 0x3b, 0xe0, 0x3d, 0x6e, 0xf6, 0xa1, 0x83, + 0x04, 0x7f, 0xa5, 0x08, 0x29, 0xa5, 0x43, 0x66, 0xdc, 0x48, 0x43, 0x0a, 0x0b, 0x07, 0x86, 0x14, + 0x56, 0xe1, 0x94, 0xc7, 0x7c, 0xc9, 0x47, 0xcc, 0xb3, 0xc1, 0xf3, 0xad, 0x9a, 0x14, 0x70, 0x96, + 0x24, 0xe5, 0x12, 0xa7, 0x55, 0x19, 0x97, 0xfe, 0x43, 0x73, 0x29, 0x9b, 0x14, 0x70, 0x96, 0x24, + 0x7a, 0x09, 0x4a, 0x15, 0x76, 0x6f, 0x94, 0xf7, 0xf1, 0xda, 0xe6, 0xf5, 0x30, 0x59, 0x8b, 0x48, + 0x4c, 0x82, 0x44, 0x64, 0xd4, 0x7a, 0x58, 0x8c, 0x42, 0x69, 0xae, 0x0b, 0x1e, 0xee, 0x4a, 0x81, + 0x1e, 0x53, 0x98, 0x33, 0xda, 0x4f, 0x76, 0x99, 0x10, 0x11, 0x5e, 0x7a, 0x75, 0x4c, 0x29, 0xeb, + 0x85, 0xd8, 0xc4, 0x45, 0xbf, 0xec, 0xc0, 0x58, 0x43, 0x9a, 0xeb, 0x71, 0xbb, 0x21, 0xd3, 0x43, + 0x62, 0x2b, 0xd3, 0x6f, 0x59, 0xa7, 0xcc, 0x75, 0x09, 0x03, 0x84, 0x4d, 0xde, 0xd9, 0xa4, 0x27, + 0x43, 0x3d, 0x26, 0x3d, 0xf9, 0x9e, 0x03, 0x13, 0x59, 0x6e, 0x68, 0x0b, 0x1e, 0x6a, 0x7a, 0xd1, + 0xd6, 0xb5, 0x60, 0x33, 0x62, 0x17, 0x31, 0x12, 0x3e, 0x19, 0x66, 0x36, 0x13, 0x12, 0xcd, 0x7b, + 0xbb, 0xdc, 0xfd, 0x59, 0x54, 0xef, 0x0b, 0x3d, 0xb4, 0x72, 0x10, 0x32, 0x3e, 0x98, 0x16, 0x2a, + 0xc3, 0x39, 0x8a, 0xc0, 0x72, 0xa2, 0xf9, 0x61, 0x90, 0x32, 0x29, 0x30, 0x26, 0x2a, 0x18, 0x70, + 0x25, 0x0f, 0x09, 0xe7, 0xd7, 0x75, 0xaf, 0xc0, 0x00, 0xbf, 0x84, 0x76, 0x57, 0xfe, 0x23, 0xf7, + 0x3f, 0x14, 0x40, 0x2a, 0x86, 0x7f, 0xbd, 0xdd, 0x71, 0x74, 0x13, 0x8d, 0x98, 0x49, 0x49, 0x58, + 0x3b, 0xd8, 0x26, 0x2a, 0xb2, 0x0f, 0x8a, 0x12, 0xaa, 0x31, 0x93, 0x5b, 0x7e, 0x32, 0x17, 0x56, + 0xa5, 0x8d, 0x83, 0x69, 0xcc, 0x57, 0x04, 0x0c, 0xab, 0x52, 0xf7, 0x13, 0x0e, 0x8c, 0xd1, 0x5e, + 0x36, 0x1a, 0xa4, 0x51, 0x4e, 0x48, 0x2b, 0x46, 0x31, 0x14, 0x63, 0xfa, 0x8f, 0x3d, 0x53, 0x60, + 0x7a, 0x71, 0x91, 0xb4, 0x34, 0x67, 0x0d, 0x65, 0x82, 0x39, 0x2f, 0xf7, 0xad, 0x3e, 0x18, 0x56, + 0x83, 0xdd, 0x83, 0x3d, 0xf5, 0x72, 0x9a, 0x18, 0x94, 0x4b, 0xe0, 0x92, 0x96, 0x14, 0xf4, 0x36, + 0x1d, 0xba, 0x60, 0x97, 0x67, 0x48, 0x48, 0x33, 0x84, 0x3e, 0x69, 0xba, 0x9a, 0xcf, 0xeb, 0xf3, + 0x4f, 0xc3, 0x17, 0x3e, 0xe7, 0x5b, 0xba, 0xa7, 0xbf, 0xdf, 0xd6, 0x6e, 0xa6, 0xdc, 0x98, 0xdd, + 0x5d, 0xfc, 0x99, 0x37, 0x63, 0x8a, 0x3d, 0xbd, 0x19, 0xf3, 0x04, 0xf4, 0x93, 0xa0, 0xdd, 0x64, + 0xaa, 0xd2, 0x30, 0x3b, 0x22, 0xf4, 0x5f, 0x09, 0xda, 0x4d, 0xb3, 0x67, 0x0c, 0x05, 0xbd, 0x0f, + 0x46, 0xaa, 0x24, 0xae, 0x44, 0x3e, 0xbb, 0xf6, 0x2f, 0x2c, 0x3b, 0x0f, 0x32, 0x73, 0x59, 0x0a, + 0x36, 0x2b, 0xea, 0x15, 0xdc, 0x57, 0x61, 0x60, 0xad, 0xd1, 0xae, 0xf9, 0x01, 0x6a, 0xc1, 0x00, + 0x4f, 0x02, 0x20, 0x76, 0x7b, 0x0b, 0xe7, 0x4e, 0x2e, 0x2a, 0xb4, 0x28, 0x14, 0x7e, 0x7f, 0x55, + 0xf0, 0x71, 0x7f, 0xab, 0x00, 0xf4, 0x68, 0xbe, 0x38, 0x87, 0xfe, 0x6e, 0xc7, 0x13, 0x29, 0x3f, + 0x93, 0xf3, 0x44, 0xca, 0x18, 0x43, 0xce, 0x79, 0x1d, 0xa5, 0x01, 0x63, 0xcc, 0x39, 0x22, 0xf7, + 0x40, 0xa1, 0x56, 0x3f, 0xdd, 0xe3, 0xbd, 0x79, 0xbd, 0xaa, 0xd8, 0x11, 0x74, 0x10, 0x36, 0x89, + 0xa3, 0x5d, 0x38, 0xc3, 0xf3, 0x4b, 0xce, 0x93, 0x86, 0xb7, 0x6b, 0xe4, 0x91, 0xea, 0xf9, 0xae, + 0xbe, 0xac, 0xc5, 0x03, 0xbc, 0xe7, 0x3b, 0xc9, 0xe1, 0x3c, 0x1e, 0xee, 0xef, 0xf5, 0x83, 0xe6, + 0xbe, 0xe8, 0x61, 0x65, 0xbd, 0x92, 0x71, 0x56, 0xad, 0x58, 0x71, 0x56, 0x49, 0x0f, 0x10, 0x97, + 0x56, 0xa6, 0x7f, 0x8a, 0x36, 0xaa, 0x4e, 0x1a, 0x2d, 0xb1, 0x2e, 0x55, 0xa3, 0xae, 0x92, 0x46, + 0x0b, 0xb3, 0x12, 0x75, 0xf9, 0xb0, 0xbf, 0xeb, 0xe5, 0xc3, 0x3a, 0x14, 0x6b, 0x5e, 0xbb, 0x46, + 0x44, 0xb4, 0xa6, 0x05, 0xbf, 0x24, 0xbb, 0x0e, 0xc1, 0xfd, 0x92, 0xec, 0x5f, 0xcc, 0x19, 0x50, + 0xc1, 0x50, 0x97, 0xe1, 0x2b, 0xc2, 0xa0, 0x6b, 0x41, 0x30, 0xa8, 0x88, 0x18, 0x2e, 0x18, 0xd4, + 0x4f, 0x9c, 0x32, 0x43, 0x2d, 0x18, 0xac, 0xf0, 0x4c, 0x1f, 0x42, 0xbf, 0xb9, 0x66, 0xe3, 0x76, + 0x25, 0x23, 0xc8, 0x2d, 0x2f, 0xe2, 0x07, 0x96, 0x6c, 0xdc, 0x4b, 0x30, 0xa2, 0xbd, 0xea, 0x40, + 0x3f, 0x83, 0x4a, 0x32, 0xa1, 0x7d, 0x86, 0x79, 0x2f, 0xf1, 0x30, 0x2b, 0x71, 0xbf, 0xd1, 0x0f, + 0xca, 0xee, 0xa6, 0xdf, 0x05, 0xf4, 0x2a, 0x5a, 0x4a, 0x1c, 0xe3, 0x12, 0x7a, 0x18, 0x60, 0x51, + 0x4a, 0x75, 0xc0, 0x26, 0x89, 0x6a, 0xea, 0xcc, 0x2d, 0x44, 0xbb, 0xd2, 0x01, 0x57, 0xf4, 0x42, + 0x6c, 0xe2, 0x52, 0x05, 0xbe, 0x29, 0xdc, 0xf9, 0xd9, 0x60, 0x69, 0xe9, 0xe6, 0xc7, 0x0a, 0x03, + 0x7d, 0xc2, 0x81, 0xd1, 0xa6, 0xe6, 0xfd, 0x17, 0x41, 0x9b, 0x36, 0x9c, 0x4f, 0x1a, 0x55, 0x1e, + 0x5c, 0xa5, 0x43, 0xb0, 0xc1, 0x15, 0x2d, 0xc2, 0xe9, 0x98, 0x24, 0xab, 0x3b, 0x01, 0x89, 0xd4, + 0x1d, 0x7d, 0x91, 0xb4, 0x41, 0xdd, 0x94, 0x28, 0x67, 0x11, 0x70, 0x67, 0x9d, 0xdc, 0x38, 0xd7, + 0xe2, 0xa1, 0xe3, 0x5c, 0xe7, 0x61, 0x62, 0xd3, 0xf3, 0x1b, 0xed, 0x88, 0x74, 0x8d, 0x96, 0x5d, + 0xc8, 0x94, 0xe3, 0x8e, 0x1a, 0xec, 0xb2, 0x4e, 0xc3, 0xab, 0xc5, 0xa5, 0x41, 0xed, 0xb2, 0x0e, + 0x05, 0x60, 0x0e, 0x77, 0x7f, 0xc3, 0x01, 0x9e, 0x2d, 0x67, 0x66, 0x73, 0xd3, 0x0f, 0xfc, 0x64, + 0x17, 0x7d, 0xd5, 0x81, 0x89, 0x20, 0xac, 0x92, 0x99, 0x20, 0xf1, 0x25, 0xd0, 0x5e, 0x0a, 0x73, + 0xc6, 0xeb, 0x7a, 0x86, 0x3c, 0x4f, 0xbd, 0x90, 0x85, 0xe2, 0x8e, 0x66, 0xb8, 0x17, 0xe0, 0x5c, + 0x2e, 0x01, 0xf7, 0x7b, 0x7d, 0x60, 0x26, 0xfd, 0x41, 0xcf, 0x41, 0xb1, 0xc1, 0xd2, 0x50, 0x38, + 0x47, 0xcc, 0xe6, 0xc4, 0xc6, 0x8a, 0xe7, 0xa9, 0xe0, 0x94, 0xd0, 0x3c, 0x8c, 0xb0, 0x4c, 0x42, + 0x22, 0x49, 0x08, 0x5f, 0x11, 0x6e, 0xfa, 0x72, 0x9a, 0x2a, 0xba, 0x6d, 0xfe, 0xc4, 0x7a, 0x35, + 0xf4, 0x1a, 0x0c, 0x6e, 0xf0, 0x7c, 0x8a, 0xf6, 0xfc, 0x83, 0x22, 0x41, 0x23, 0xd3, 0xa3, 0x64, + 0xb6, 0xc6, 0xdb, 0xe9, 0xbf, 0x58, 0x72, 0x44, 0xbb, 0x30, 0xe4, 0xc9, 0x6f, 0xda, 0x6f, 0xeb, + 0xf2, 0x85, 0x31, 0x7f, 0x44, 0x74, 0x8d, 0xfc, 0x86, 0x8a, 0x5d, 0x26, 0x0c, 0xa9, 0xd8, 0x53, + 0x18, 0xd2, 0xb7, 0x1c, 0x80, 0xf4, 0xf1, 0x09, 0x74, 0x0b, 0x86, 0xe2, 0xa7, 0x0d, 0xa3, 0x86, + 0x8d, 0x5b, 0xf7, 0x82, 0xa2, 0x76, 0x33, 0x55, 0x40, 0xb0, 0xe2, 0x76, 0x27, 0x43, 0xcc, 0x4f, + 0x1c, 0x38, 0x9b, 0xf7, 0x48, 0xc6, 0x3d, 0x6c, 0xf1, 0x61, 0x6d, 0x30, 0xa2, 0xc2, 0x5a, 0x44, + 0x36, 0xfd, 0x5b, 0x39, 0x59, 0x7d, 0x79, 0x01, 0x4e, 0x71, 0xdc, 0x37, 0x07, 0x41, 0x31, 0x3e, + 0x26, 0x9b, 0xcd, 0x63, 0xf4, 0x7c, 0x55, 0x4b, 0x2f, 0x4b, 0x2a, 0x3c, 0xcc, 0xa0, 0x58, 0x94, + 0xd2, 0x33, 0x96, 0x0c, 0xa0, 0x17, 0x22, 0x9b, 0xcd, 0x42, 0x19, 0x68, 0x8f, 0x55, 0x69, 0x9e, + 0x15, 0xa8, 0x78, 0x22, 0x56, 0xa0, 0x01, 0xfb, 0x56, 0xa0, 0x27, 0x60, 0x30, 0x0a, 0x1b, 0x64, + 0x06, 0x5f, 0x17, 0x27, 0x87, 0x34, 0x00, 0x82, 0x83, 0xb1, 0x2c, 0x3f, 0xa2, 0x1d, 0x04, 0xfd, + 0xb6, 0x73, 0x80, 0xa1, 0x69, 0xd8, 0xd6, 0x9e, 0x90, 0x9b, 0x02, 0x8d, 0x1d, 0x83, 0x8e, 0x62, + 0xbd, 0xfa, 0x9a, 0x03, 0xa7, 0x49, 0x50, 0x89, 0x76, 0x19, 0x1d, 0x41, 0x4d, 0xf8, 0xa7, 0x6f, + 0xd8, 0x58, 0x7c, 0x57, 0xb2, 0xc4, 0xb9, 0x1b, 0xa8, 0x03, 0x8c, 0x3b, 0x9b, 0x81, 0x56, 0x61, + 0xa8, 0xe2, 0x89, 0x19, 0x31, 0x72, 0x98, 0x19, 0xc1, 0xbd, 0x6c, 0x33, 0x62, 0x2a, 0x28, 0x22, + 0xee, 0x8f, 0x0a, 0x70, 0x26, 0xa7, 0x49, 0xec, 0xb2, 0x55, 0x93, 0xce, 0xc8, 0x6b, 0xd5, 0xec, + 0x7a, 0x5c, 0x12, 0x70, 0xac, 0x30, 0xd0, 0x1a, 0x9c, 0xdd, 0x6a, 0xc6, 0x29, 0x95, 0xb9, 0x30, + 0x48, 0xc8, 0x2d, 0xb9, 0x3a, 0xa5, 0xef, 0xfa, 0xec, 0x52, 0x0e, 0x0e, 0xce, 0xad, 0x49, 0xd5, + 0x17, 0x12, 0x78, 0x1b, 0x0d, 0x92, 0x16, 0x89, 0xab, 0x82, 0x4a, 0x7d, 0xb9, 0x92, 0x29, 0xc7, + 0x1d, 0x35, 0xd0, 0x67, 0x1c, 0x78, 0x20, 0x26, 0xd1, 0x36, 0x89, 0xca, 0x7e, 0x95, 0xcc, 0xb5, + 0xe3, 0x24, 0x6c, 0x92, 0xe8, 0x88, 0xa6, 0xd5, 0xa9, 0xfd, 0xbd, 0xa9, 0x07, 0xca, 0xdd, 0xa9, + 0xe1, 0x83, 0x58, 0xb9, 0x9f, 0x71, 0x60, 0xbc, 0xcc, 0x0e, 0xde, 0x4a, 0x97, 0xb6, 0x9d, 0x04, + 0xf3, 0x31, 0x95, 0xdc, 0x22, 0x23, 0x15, 0xcd, 0x74, 0x14, 0xee, 0xcb, 0x30, 0x51, 0x26, 0x4d, + 0xaf, 0x55, 0x67, 0xf7, 0x7c, 0x79, 0xec, 0xd6, 0x25, 0x18, 0x8e, 0x25, 0x2c, 0xfb, 0xee, 0x8d, + 0x42, 0xc6, 0x29, 0x0e, 0x7a, 0x94, 0xc7, 0x99, 0xc9, 0xdb, 0x42, 0xc3, 0xfc, 0xd4, 0xc1, 0x83, + 0xd3, 0x62, 0x2c, 0xcb, 0xdc, 0xb7, 0x1c, 0x18, 0x4d, 0xeb, 0x93, 0x4d, 0x54, 0x83, 0x53, 0x15, + 0xed, 0xa6, 0x5d, 0x7a, 0xc7, 0xa1, 0xf7, 0x4b, 0x79, 0x3c, 0x37, 0xaf, 0x49, 0x04, 0x67, 0xa9, + 0x1e, 0x3e, 0x4c, 0xef, 0xf3, 0x05, 0x38, 0xa5, 0x9a, 0x2a, 0x9c, 0x8c, 0x6f, 0x64, 0xa3, 0xe9, + 0xb0, 0x8d, 0x34, 0x3d, 0xe6, 0xd8, 0x1f, 0x10, 0x51, 0xf7, 0x46, 0x36, 0xa2, 0xee, 0x58, 0xd9, + 0x77, 0xf8, 0x4d, 0xbf, 0x55, 0x80, 0x21, 0x95, 0x34, 0xe8, 0x39, 0x28, 0xb2, 0xa3, 0xe4, 0xdd, + 0x29, 0xc4, 0xec, 0x58, 0x8a, 0x39, 0x25, 0x4a, 0x92, 0x45, 0xec, 0x1c, 0x39, 0x63, 0xea, 0x30, + 0x37, 0x3e, 0x7a, 0x51, 0x82, 0x39, 0x25, 0xb4, 0x04, 0x7d, 0x24, 0xa8, 0x0a, 0xcd, 0xf8, 0xf0, + 0x04, 0xd9, 0x0b, 0x55, 0x57, 0x82, 0x2a, 0xa6, 0x54, 0x58, 0xda, 0x4e, 0xae, 0x00, 0x65, 0xde, + 0x23, 0x11, 0xda, 0x8f, 0x28, 0x75, 0x7f, 0xb9, 0x0f, 0x06, 0xca, 0xed, 0x0d, 0xaa, 0xe3, 0x7f, + 0xd3, 0x81, 0x33, 0x3b, 0x99, 0x74, 0xc2, 0xe9, 0x1c, 0xbf, 0x61, 0xcf, 0x00, 0xab, 0x47, 0x8d, + 0x3d, 0x20, 0x1f, 0x5b, 0xcf, 0x29, 0xc4, 0x79, 0xcd, 0x31, 0x32, 0x7a, 0xf6, 0x1d, 0x4b, 0x46, + 0xcf, 0x5b, 0xc7, 0x7c, 0x6d, 0x62, 0xac, 0xdb, 0x95, 0x09, 0xf7, 0xf7, 0x8a, 0x00, 0xfc, 0x6b, + 0xac, 0xb6, 0x92, 0x5e, 0xcc, 0x64, 0xcf, 0xc0, 0x68, 0x8d, 0x04, 0x24, 0x92, 0x31, 0x81, 0x99, + 0xa7, 0x6e, 0x16, 0xb5, 0x32, 0x6c, 0x60, 0xb2, 0x33, 0x49, 0x90, 0x44, 0xbb, 0x5c, 0x6f, 0xcd, + 0x5e, 0x8d, 0x50, 0x25, 0x58, 0xc3, 0x42, 0xd3, 0x86, 0xc7, 0x83, 0x3b, 0xcf, 0xc7, 0x0f, 0x70, + 0x50, 0xbc, 0x0f, 0xc6, 0xcd, 0x3c, 0x23, 0x42, 0x59, 0x53, 0xce, 0x6e, 0x33, 0x3d, 0x09, 0xce, + 0x60, 0xd3, 0x49, 0x5c, 0x8d, 0x76, 0x71, 0x3b, 0x10, 0x5a, 0x9b, 0x9a, 0xc4, 0xf3, 0x0c, 0x8a, + 0x45, 0x29, 0x4b, 0xd0, 0xc0, 0xf6, 0x2f, 0x0e, 0x17, 0x49, 0x1e, 0xd2, 0x04, 0x0d, 0x5a, 0x19, + 0x36, 0x30, 0x29, 0x07, 0x61, 0x66, 0x04, 0x73, 0x99, 0x64, 0x6c, 0x83, 0x2d, 0x18, 0x0f, 0x4d, + 0xf3, 0x08, 0x57, 0x61, 0xde, 0xd5, 0xe3, 0xd4, 0x33, 0xea, 0xf2, 0x20, 0x85, 0x8c, 0x35, 0x25, + 0x43, 0x9f, 0xaa, 0xad, 0xfa, 0x0d, 0x82, 0x51, 0x33, 0xa4, 0xb4, 0x6b, 0x90, 0xff, 0x1a, 0x9c, + 0x6d, 0x85, 0xd5, 0xb5, 0xc8, 0x0f, 0x23, 0x3f, 0xd9, 0x9d, 0x6b, 0x78, 0x71, 0xcc, 0x26, 0xc6, + 0x98, 0xa9, 0xce, 0xac, 0xe5, 0xe0, 0xe0, 0xdc, 0x9a, 0xf4, 0x80, 0xd1, 0x12, 0x40, 0x16, 0xd8, + 0x55, 0xe4, 0x0a, 0x99, 0x44, 0xc4, 0xaa, 0xd4, 0x3d, 0x03, 0xa7, 0xcb, 0xed, 0x56, 0xab, 0xe1, + 0x93, 0xaa, 0xf2, 0x28, 0xb8, 0xef, 0x87, 0x53, 0x22, 0xdf, 0xa7, 0x52, 0x1e, 0x0e, 0x95, 0x9d, + 0xda, 0xfd, 0x73, 0x07, 0x4e, 0x65, 0xc2, 0x68, 0xd0, 0x6b, 0xd9, 0x2d, 0xdf, 0x8a, 0xcd, 0x4c, + 0xdf, 0xec, 0xf9, 0x22, 0xcd, 0x55, 0x1f, 0xea, 0x32, 0x06, 0xde, 0xda, 0xdd, 0x13, 0x16, 0x29, + 0xce, 0x77, 0x04, 0x3d, 0x90, 0xde, 0xfd, 0x74, 0x01, 0xf2, 0x63, 0x97, 0xd0, 0x47, 0x3b, 0x07, + 0xe0, 0x39, 0x8b, 0x03, 0x20, 0x82, 0xa7, 0xba, 0x8f, 0x41, 0x60, 0x8e, 0xc1, 0x8a, 0xa5, 0x31, + 0x10, 0x7c, 0x3b, 0x47, 0xe2, 0x7f, 0x3b, 0x30, 0xb2, 0xbe, 0xbe, 0xac, 0x4c, 0x5c, 0x18, 0xce, + 0xc7, 0xfc, 0x6e, 0x3d, 0x73, 0xf1, 0xce, 0x85, 0xcd, 0x16, 0xf7, 0xf8, 0x0a, 0x4f, 0x34, 0x4b, + 0xbd, 0x5a, 0xce, 0xc5, 0xc0, 0x5d, 0x6a, 0xa2, 0x6b, 0x70, 0x46, 0x2f, 0x29, 0x6b, 0x2f, 0xdd, + 0x15, 0x45, 0x3e, 0x9b, 0xce, 0x62, 0x9c, 0x57, 0x27, 0x4b, 0x4a, 0x58, 0x2b, 0xd9, 0x76, 0x95, + 0x43, 0x4a, 0x14, 0xe3, 0xbc, 0x3a, 0xee, 0x2a, 0x8c, 0xac, 0x7b, 0x91, 0xea, 0xf8, 0x07, 0x60, + 0xa2, 0x12, 0x36, 0xa5, 0x95, 0x68, 0x99, 0x6c, 0x93, 0x86, 0xe8, 0x32, 0x7f, 0x5e, 0x22, 0x53, + 0x86, 0x3b, 0xb0, 0xdd, 0xff, 0x71, 0x11, 0xd4, 0x5d, 0xc1, 0x1e, 0x76, 0x98, 0x96, 0x8a, 0xea, + 0x2c, 0x5a, 0x8e, 0xea, 0x54, 0xb2, 0x36, 0x13, 0xd9, 0x99, 0xa4, 0x91, 0x9d, 0x03, 0xb6, 0x23, + 0x3b, 0x95, 0xc2, 0xd8, 0x11, 0xdd, 0xf9, 0x65, 0x07, 0x46, 0x83, 0xb0, 0x4a, 0x94, 0x2b, 0x6e, + 0x90, 0x69, 0xad, 0x2f, 0xd9, 0x0b, 0x92, 0xe7, 0x51, 0x8a, 0x82, 0x3c, 0x8f, 0x38, 0x56, 0x5b, + 0x94, 0x5e, 0x84, 0x8d, 0x76, 0xa0, 0x05, 0xcd, 0x6e, 0xc9, 0xdd, 0x03, 0x0f, 0xe6, 0x1d, 0x37, + 0xee, 0x68, 0x84, 0xbc, 0xa5, 0xe9, 0x4d, 0xc3, 0xb6, 0xec, 0x71, 0xf2, 0x02, 0x98, 0xe6, 0xe5, + 0x90, 0xd9, 0x83, 0x53, 0x7d, 0xca, 0x85, 0x01, 0x1e, 0x9a, 0x2c, 0x32, 0x27, 0x31, 0xe7, 0x1b, + 0x0f, 0x5b, 0xc6, 0xa2, 0x04, 0x25, 0xd2, 0xdd, 0x3f, 0x62, 0xeb, 0x2d, 0x00, 0x23, 0x9c, 0x20, + 0xdf, 0xdf, 0x8f, 0x9e, 0xd5, 0x8f, 0xb1, 0xa3, 0xbd, 0x1c, 0x63, 0xc7, 0xba, 0x1e, 0x61, 0x3f, + 0xe7, 0xc0, 0x68, 0x45, 0xcb, 0xcd, 0x5f, 0x7a, 0xdc, 0xd6, 0x1b, 0xc4, 0x79, 0x4f, 0x28, 0x70, + 0x9f, 0x8e, 0xf1, 0x16, 0x80, 0xc1, 0x9d, 0xa5, 0x8b, 0x64, 0x67, 0x76, 0xb6, 0xf5, 0x5b, 0xc9, + 0x10, 0x61, 0xda, 0x00, 0x64, 0xd8, 0x24, 0x85, 0x61, 0xc1, 0x0b, 0xbd, 0x0e, 0x43, 0x32, 0xba, + 0x5d, 0x44, 0x81, 0x63, 0x1b, 0x46, 0x76, 0xd3, 0x93, 0x27, 0x73, 0xcc, 0x71, 0x28, 0x56, 0x1c, + 0x51, 0x1d, 0xfa, 0xaa, 0x5e, 0x4d, 0xc4, 0x83, 0xaf, 0xd8, 0xc9, 0xe1, 0x29, 0x79, 0xb2, 0xe3, + 0xd5, 0xfc, 0xcc, 0x22, 0xa6, 0x2c, 0xd0, 0xad, 0x34, 0xb9, 0xf9, 0x84, 0xb5, 0xdd, 0xd7, 0x54, + 0x93, 0xb8, 0x55, 0xa2, 0x23, 0x57, 0x7a, 0x55, 0x38, 0x3f, 0xff, 0x06, 0x63, 0xbb, 0x60, 0x27, + 0x09, 0x28, 0xcf, 0x38, 0x92, 0x3a, 0x50, 0x29, 0x97, 0x7a, 0x92, 0xb4, 0x4a, 0x3f, 0x6b, 0x8b, + 0x0b, 0xcb, 0x9b, 0xc1, 0x9f, 0x8b, 0x5e, 0x5f, 0x5f, 0xc3, 0x8c, 0x3a, 0x6a, 0xc0, 0x40, 0x8b, + 0xc5, 0x70, 0x94, 0x7e, 0xce, 0xd6, 0xde, 0xc2, 0x63, 0x42, 0xf8, 0xdc, 0xe4, 0xff, 0x63, 0xc1, + 0x03, 0x5d, 0x81, 0x41, 0xfe, 0x46, 0x07, 0x8f, 0xc7, 0x1f, 0xb9, 0x3c, 0xd9, 0xfd, 0xa5, 0x8f, + 0x74, 0xa3, 0xe0, 0xbf, 0x63, 0x2c, 0xeb, 0xa2, 0xcf, 0x3b, 0x30, 0x4e, 0x25, 0x6a, 0xfa, 0xa8, + 0x48, 0x09, 0xd9, 0x92, 0x59, 0x37, 0x62, 0xaa, 0x91, 0x48, 0x59, 0xa3, 0x8e, 0x49, 0xd7, 0x0c, + 0x76, 0x38, 0xc3, 0x1e, 0xbd, 0x01, 0x43, 0xb1, 0x5f, 0x25, 0x15, 0x2f, 0x8a, 0x4b, 0x67, 0x8e, + 0xa7, 0x29, 0xa9, 0xbb, 0x45, 0x30, 0xc2, 0x8a, 0x65, 0xee, 0xdb, 0xff, 0x67, 0xef, 0xf1, 0xdb, + 0xff, 0x7f, 0xcf, 0x81, 0x73, 0x3c, 0xa7, 0x7c, 0xf6, 0x41, 0x81, 0x73, 0x47, 0x34, 0xaf, 0xb0, + 0x8b, 0x04, 0x33, 0x79, 0x24, 0x71, 0x3e, 0x27, 0x96, 0x94, 0xd6, 0x7c, 0x03, 0xe6, 0xbc, 0x55, + 0xb7, 0x63, 0xef, 0xef, 0xbe, 0xa0, 0xa7, 0x60, 0xa4, 0x25, 0xb6, 0x43, 0x3f, 0x6e, 0xb2, 0x6b, + 0x21, 0x7d, 0xfc, 0xc2, 0xde, 0x5a, 0x0a, 0xc6, 0x3a, 0x8e, 0x91, 0xa1, 0xf8, 0x89, 0x83, 0x32, + 0x14, 0xa3, 0x1b, 0x30, 0x92, 0x84, 0x0d, 0x91, 0xa4, 0x33, 0x2e, 0x95, 0xd8, 0x0c, 0xbc, 0x98, + 0xb7, 0xb6, 0xd6, 0x15, 0x5a, 0x7a, 0x92, 0x4d, 0x61, 0x31, 0xd6, 0xe9, 0xb0, 0x50, 0x5c, 0x91, + 0xab, 0x3f, 0x62, 0x47, 0xd8, 0xfb, 0x33, 0xa1, 0xb8, 0x7a, 0x21, 0x36, 0x71, 0xd1, 0x22, 0x9c, + 0x6e, 0x75, 0x9c, 0x81, 0xf9, 0x75, 0x34, 0x15, 0xd1, 0xd0, 0x79, 0x00, 0xee, 0xac, 0x63, 0x9c, + 0x7e, 0x1f, 0x38, 0xe8, 0xf4, 0xdb, 0x25, 0x5f, 0xef, 0x83, 0x47, 0xc9, 0xd7, 0x8b, 0xaa, 0xf0, + 0xa0, 0xd7, 0x4e, 0x42, 0x96, 0x1b, 0xc6, 0xac, 0xc2, 0xa3, 0x92, 0x1f, 0xe6, 0x81, 0xce, 0xfb, + 0x7b, 0x53, 0x0f, 0xce, 0x1c, 0x80, 0x87, 0x0f, 0xa4, 0x82, 0x5e, 0x85, 0x21, 0x22, 0x72, 0x0e, + 0x97, 0x7e, 0xc6, 0x96, 0x92, 0x60, 0x66, 0x31, 0x96, 0x01, 0x9f, 0x1c, 0x86, 0x15, 0x3f, 0xb4, + 0x0e, 0x23, 0xf5, 0x30, 0x4e, 0x66, 0x1a, 0xbe, 0x17, 0x93, 0xb8, 0xf4, 0x10, 0x9b, 0x34, 0xb9, + 0xba, 0xd7, 0x55, 0x89, 0x96, 0xce, 0x99, 0xab, 0x69, 0x4d, 0xac, 0x93, 0x41, 0x84, 0x39, 0x1f, + 0x59, 0x48, 0xb6, 0xf4, 0xe3, 0x5c, 0x64, 0x1d, 0x7b, 0x2c, 0x8f, 0xf2, 0x5a, 0x58, 0x2d, 0x9b, + 0xd8, 0xca, 0xfb, 0xa8, 0x03, 0x71, 0x96, 0x26, 0x7a, 0x06, 0x46, 0x5b, 0x61, 0xb5, 0xdc, 0x22, + 0x95, 0x35, 0x2f, 0xa9, 0xd4, 0x4b, 0x53, 0xa6, 0xd5, 0x6d, 0x4d, 0x2b, 0xc3, 0x06, 0x26, 0x6a, + 0xc1, 0x60, 0x93, 0x27, 0x0d, 0x28, 0x3d, 0x62, 0xeb, 0x6c, 0x23, 0xb2, 0x10, 0x70, 0x7d, 0x41, + 0xfc, 0xc0, 0x92, 0x0d, 0xfa, 0x67, 0x0e, 0x9c, 0xca, 0x5c, 0x74, 0x2a, 0xbd, 0xc3, 0x9a, 0xca, + 0x62, 0x12, 0x9e, 0x7d, 0x8c, 0x0d, 0x9f, 0x09, 0xbc, 0xdd, 0x09, 0xc2, 0xd9, 0x16, 0xf1, 0x71, + 0x61, 0x99, 0x3f, 0x4a, 0x8f, 0xda, 0x1b, 0x17, 0x46, 0x50, 0x8e, 0x0b, 0xfb, 0x81, 0x25, 0x1b, + 0xf4, 0x04, 0x0c, 0x8a, 0x24, 0x7d, 0xa5, 0xc7, 0x4c, 0x0f, 0xb2, 0xc8, 0xe5, 0x87, 0x65, 0xf9, + 0xe4, 0xfb, 0xe1, 0x74, 0xc7, 0xd1, 0xed, 0x50, 0xe9, 0x27, 0x7e, 0xdd, 0x01, 0xfd, 0x66, 0xb4, + 0xf5, 0x87, 0x3e, 0x9e, 0x81, 0xd1, 0x0a, 0x7f, 0x0e, 0x90, 0xdf, 0xad, 0xee, 0x37, 0xed, 0x9f, + 0x73, 0x5a, 0x19, 0x36, 0x30, 0xdd, 0xab, 0x80, 0x3a, 0xb3, 0xb0, 0x1f, 0x29, 0xb7, 0xd1, 0xbf, + 0x70, 0x60, 0xcc, 0xd0, 0x19, 0xac, 0xfb, 0x08, 0x17, 0x00, 0x35, 0xfd, 0x28, 0x0a, 0x23, 0xfd, + 0xdd, 0x35, 0x91, 0xff, 0x80, 0xdd, 0x30, 0x5b, 0xe9, 0x28, 0xc5, 0x39, 0x35, 0xdc, 0xdf, 0xea, + 0x87, 0x34, 0xe2, 0x59, 0xa5, 0xb9, 0x75, 0xba, 0xa6, 0xb9, 0x7d, 0x12, 0x86, 0x5e, 0x8e, 0xc3, + 0x60, 0x2d, 0x4d, 0x86, 0xab, 0xbe, 0xc5, 0xb3, 0xe5, 0xd5, 0xeb, 0x0c, 0x53, 0x61, 0x30, 0xec, + 0x57, 0x16, 0xfc, 0x46, 0xd2, 0x99, 0x2d, 0xf5, 0xd9, 0xe7, 0x38, 0x1c, 0x2b, 0x0c, 0xf6, 0x04, + 0xdb, 0x36, 0x51, 0x86, 0xf1, 0xf4, 0x09, 0x36, 0xfe, 0xc0, 0x02, 0x2b, 0x43, 0x97, 0x60, 0x58, + 0x19, 0xd5, 0x85, 0xa5, 0x5e, 0x8d, 0x94, 0xb2, 0xbc, 0xe3, 0x14, 0x87, 0x29, 0x84, 0xc2, 0x10, + 0x2b, 0x4c, 0x28, 0x65, 0x1b, 0xc7, 0x93, 0x8c, 0x69, 0x97, 0xcb, 0x76, 0x09, 0xc6, 0x8a, 0x65, + 0x9e, 0x9f, 0x74, 0xf8, 0x58, 0xfc, 0xa4, 0x5a, 0xf8, 0x7d, 0xb1, 0xd7, 0xf0, 0x7b, 0x73, 0x6e, + 0x0f, 0xf5, 0x34, 0xb7, 0x3f, 0xd9, 0x07, 0x83, 0xcf, 0x93, 0x88, 0x25, 0x09, 0x7f, 0x02, 0x06, + 0xb7, 0xf9, 0xbf, 0xd9, 0xbb, 0x9b, 0x02, 0x03, 0xcb, 0x72, 0xfa, 0xdd, 0x36, 0xda, 0x7e, 0xa3, + 0x3a, 0x9f, 0xae, 0xe2, 0x34, 0xbf, 0xa0, 0x2c, 0xc0, 0x29, 0x0e, 0xad, 0x50, 0xa3, 0x9a, 0x7d, + 0xb3, 0xe9, 0x77, 0xbc, 0x2e, 0xbe, 0x28, 0x0b, 0x70, 0x8a, 0x83, 0x1e, 0x83, 0x81, 0x9a, 0x9f, + 0xac, 0x7b, 0xb5, 0xac, 0x97, 0x6f, 0x91, 0x41, 0xb1, 0x28, 0x65, 0x6e, 0x22, 0x3f, 0x59, 0x8f, + 0x08, 0xb3, 0xec, 0x76, 0xa4, 0x8e, 0x58, 0xd4, 0xca, 0xb0, 0x81, 0xc9, 0x9a, 0x14, 0x8a, 0x9e, + 0x89, 0x20, 0xcc, 0xb4, 0x49, 0xb2, 0x00, 0xa7, 0x38, 0x74, 0xfe, 0x57, 0xc2, 0x66, 0xcb, 0x6f, + 0x88, 0xf0, 0x60, 0x6d, 0xfe, 0xcf, 0x09, 0x38, 0x56, 0x18, 0x14, 0x9b, 0x8a, 0x30, 0x2a, 0x7e, + 0xb2, 0xcf, 0x5d, 0xad, 0x09, 0x38, 0x56, 0x18, 0xee, 0xf3, 0x30, 0xc6, 0x57, 0xf2, 0x5c, 0xc3, + 0xf3, 0x9b, 0x8b, 0x73, 0xe8, 0x4a, 0x47, 0xf8, 0xfd, 0x13, 0x39, 0xe1, 0xf7, 0xe7, 0x8c, 0x4a, + 0x9d, 0x61, 0xf8, 0xee, 0x0f, 0x0a, 0x30, 0x74, 0x82, 0x2f, 0x06, 0x9e, 0xf8, 0xe3, 0xb7, 0xe8, + 0x56, 0xe6, 0xb5, 0xc0, 0x35, 0x9b, 0xb7, 0x69, 0x0e, 0x7c, 0x29, 0xf0, 0xbf, 0x16, 0xe0, 0xbc, + 0x44, 0x95, 0x67, 0xb9, 0xc5, 0x39, 0xf6, 0xdc, 0xd5, 0xf1, 0x0f, 0x74, 0x64, 0x0c, 0xf4, 0x9a, + 0xbd, 0xd3, 0xe8, 0xe2, 0x5c, 0xd7, 0xa1, 0x7e, 0x35, 0x33, 0xd4, 0xd8, 0x2a, 0xd7, 0x83, 0x07, + 0xfb, 0x2f, 0x1c, 0x98, 0xcc, 0x1f, 0xec, 0x13, 0x78, 0xa0, 0xf1, 0x0d, 0xf3, 0x81, 0xc6, 0x5f, + 0xb0, 0x37, 0xc5, 0xcc, 0xae, 0x74, 0x79, 0xaa, 0xf1, 0xcf, 0x1c, 0x38, 0x2b, 0x2b, 0xb0, 0xdd, + 0x73, 0xd6, 0x0f, 0x58, 0x20, 0xca, 0xf1, 0x4f, 0xb3, 0xd7, 0x8d, 0x69, 0xf6, 0xa2, 0xbd, 0x8e, + 0xeb, 0xfd, 0xe8, 0xfa, 0xb0, 0xf5, 0x9f, 0x3a, 0x50, 0xca, 0xab, 0x70, 0x02, 0x9f, 0xfc, 0x35, + 0xf3, 0x93, 0x3f, 0x7f, 0x3c, 0x3d, 0xef, 0xfe, 0xc1, 0x4b, 0xdd, 0x06, 0x0a, 0x35, 0xa4, 0x5e, + 0xe5, 0xd8, 0xf2, 0xd1, 0x72, 0x16, 0xf9, 0x0a, 0x5a, 0x03, 0x06, 0x62, 0x16, 0xb5, 0x21, 0xa6, + 0xc0, 0x55, 0x1b, 0xda, 0x16, 0xa5, 0x27, 0x6c, 0xec, 0xec, 0x7f, 0x2c, 0x78, 0xb8, 0xbf, 0x51, + 0x80, 0x0b, 0xea, 0xe1, 0x55, 0xb2, 0x4d, 0x1a, 0xe9, 0xfa, 0x60, 0x4f, 0x2a, 0x78, 0xea, 0xa7, + 0xbd, 0x27, 0x15, 0x52, 0x16, 0xe9, 0x5a, 0x48, 0x61, 0x58, 0xe3, 0x89, 0xca, 0x70, 0x8e, 0x3d, + 0x81, 0xb0, 0xe0, 0x07, 0x5e, 0xc3, 0x7f, 0x95, 0x44, 0x98, 0x34, 0xc3, 0x6d, 0xaf, 0x21, 0x34, + 0x75, 0x75, 0x7d, 0x77, 0x21, 0x0f, 0x09, 0xe7, 0xd7, 0xed, 0x38, 0x71, 0xf7, 0xf5, 0x7a, 0xe2, + 0x76, 0xff, 0xc4, 0x81, 0xd1, 0x13, 0x7c, 0xa6, 0x36, 0x34, 0x97, 0xc4, 0xb3, 0xf6, 0x96, 0x44, + 0x97, 0x65, 0xb0, 0x57, 0x84, 0x8e, 0x97, 0x3b, 0xd1, 0xa7, 0x1c, 0x15, 0xd7, 0xc2, 0x63, 0xff, + 0x3e, 0x64, 0xaf, 0x1d, 0x87, 0xc9, 0xf9, 0x88, 0xbe, 0x96, 0x49, 0x84, 0x59, 0xb0, 0x95, 0xcd, + 0xa9, 0xa3, 0x35, 0x47, 0x48, 0x88, 0xf9, 0x65, 0x07, 0x80, 0xb7, 0x53, 0xe4, 0xd1, 0xa6, 0x6d, + 0xdb, 0x38, 0xb6, 0x91, 0xa2, 0x4c, 0x78, 0xd3, 0xd4, 0x12, 0x4a, 0x0b, 0xb0, 0xd6, 0x92, 0xbb, + 0xc8, 0x74, 0x79, 0xd7, 0x49, 0x36, 0x3f, 0xef, 0xc0, 0xa9, 0x4c, 0x73, 0x73, 0xea, 0x6f, 0x9a, + 0x2f, 0xfa, 0x59, 0xd0, 0xac, 0xcc, 0xec, 0xca, 0xba, 0xf1, 0xe4, 0xbf, 0xbb, 0x60, 0x3c, 0x79, + 0x8c, 0x5e, 0x83, 0x61, 0x69, 0xf9, 0x90, 0xd3, 0xdb, 0xe6, 0xcb, 0xa6, 0xea, 0x78, 0x23, 0x21, + 0x31, 0x4e, 0xf9, 0x65, 0xc2, 0xe6, 0x0a, 0x3d, 0x85, 0xcd, 0xdd, 0xdb, 0x77, 0x51, 0xf3, 0xed, + 0xd2, 0xfd, 0xc7, 0x62, 0x97, 0x7e, 0xd0, 0xba, 0x5d, 0xfa, 0xa1, 0x13, 0xb6, 0x4b, 0x6b, 0x4e, + 0xc2, 0xe2, 0x5d, 0x38, 0x09, 0x5f, 0x83, 0xb3, 0xdb, 0xe9, 0xa1, 0x53, 0xcd, 0x24, 0x91, 0x43, + 0xe8, 0x89, 0x5c, 0x6b, 0x34, 0x3d, 0x40, 0xc7, 0x09, 0x09, 0x12, 0xed, 0xb8, 0x9a, 0x46, 0xec, + 0x3d, 0x9f, 0x43, 0x0e, 0xe7, 0x32, 0xc9, 0x7a, 0x7b, 0x06, 0x7b, 0xf0, 0xf6, 0xbc, 0xe5, 0xc0, + 0x39, 0xaf, 0xe3, 0x0e, 0x17, 0x26, 0x9b, 0x22, 0xe4, 0xe4, 0xa6, 0x3d, 0x15, 0xc2, 0x20, 0x2f, + 0xdc, 0x6a, 0x79, 0x45, 0x38, 0xbf, 0x41, 0xe8, 0xd1, 0xd4, 0xf5, 0xce, 0xe3, 0x3c, 0xf3, 0xfd, + 0xe4, 0x5f, 0xcb, 0xc6, 0xf3, 0x00, 0x1b, 0xfa, 0x8f, 0xd8, 0x3d, 0x6d, 0x5b, 0x88, 0xe9, 0x19, + 0xb9, 0x8b, 0x98, 0x9e, 0x8c, 0xeb, 0x6d, 0xd4, 0x92, 0xeb, 0x2d, 0x80, 0x09, 0xbf, 0xe9, 0xd5, + 0xc8, 0x5a, 0xbb, 0xd1, 0xe0, 0x77, 0x40, 0xe4, 0xdb, 0xb3, 0xb9, 0x16, 0xbc, 0xe5, 0xb0, 0xe2, + 0x35, 0xb2, 0x4f, 0x7c, 0xab, 0xbb, 0x2e, 0xd7, 0x32, 0x94, 0x70, 0x07, 0x6d, 0x3a, 0x61, 0x59, + 0x32, 0x3b, 0x92, 0xd0, 0xd1, 0x66, 0x81, 0x23, 0x43, 0x7c, 0xc2, 0x5e, 0x4d, 0xc1, 0x58, 0xc7, + 0x41, 0x4b, 0x30, 0x5c, 0x0d, 0x62, 0x71, 0x1d, 0xf5, 0x14, 0x13, 0x66, 0xef, 0xa4, 0x22, 0x70, + 0xfe, 0x7a, 0x59, 0x5d, 0x44, 0x7d, 0x30, 0x27, 0x3b, 0xa3, 0x2a, 0xc7, 0x69, 0x7d, 0xb4, 0xc2, + 0x88, 0x89, 0x87, 0xb9, 0x78, 0x3c, 0xc7, 0xc3, 0x5d, 0x1c, 0x46, 0xf3, 0xd7, 0xe5, 0xd3, 0x62, + 0x63, 0x82, 0x9d, 0x78, 0x61, 0x2b, 0xa5, 0xa0, 0xbd, 0x01, 0x7c, 0xfa, 0xc0, 0x37, 0x80, 0x59, + 0x5a, 0xd6, 0xa4, 0xa1, 0xdc, 0xc3, 0x17, 0xad, 0xa5, 0x65, 0x4d, 0x23, 0x25, 0x45, 0x5a, 0xd6, + 0x14, 0x80, 0x75, 0x96, 0x68, 0xb5, 0x9b, 0x9b, 0xfc, 0x0c, 0x13, 0x1a, 0x87, 0x77, 0x7a, 0xeb, + 0xfe, 0xd2, 0xb3, 0x07, 0xfa, 0x4b, 0x3b, 0xfc, 0xbb, 0xe7, 0x0e, 0xe1, 0xdf, 0xad, 0xb3, 0x84, + 0x99, 0x8b, 0x73, 0xc2, 0xa5, 0x6e, 0xe1, 0x7c, 0xc7, 0x52, 0x74, 0xf0, 0xc8, 0x53, 0xf6, 0x2f, + 0xe6, 0x0c, 0xba, 0x06, 0x54, 0x5f, 0x38, 0x72, 0x40, 0x35, 0x15, 0xcf, 0x29, 0x9c, 0x65, 0x5e, + 0x2d, 0x0a, 0xf1, 0x9c, 0x82, 0xb1, 0x8e, 0x93, 0xf5, 0x96, 0xde, 0x7f, 0x6c, 0xde, 0xd2, 0xc9, + 0x13, 0xf0, 0x96, 0x3e, 0xd0, 0xb3, 0xb7, 0xf4, 0x16, 0x9c, 0x69, 0x85, 0xd5, 0x79, 0x3f, 0x8e, + 0xda, 0xec, 0x52, 0xdc, 0x6c, 0xbb, 0x5a, 0x23, 0x09, 0x73, 0xb7, 0x8e, 0x5c, 0x7e, 0xa7, 0xde, + 0xc8, 0x16, 0x5b, 0xc8, 0x72, 0x8d, 0x66, 0x2a, 0x30, 0xd3, 0x09, 0x8b, 0xba, 0xcd, 0x29, 0xc4, + 0x79, 0x2c, 0x74, 0x3f, 0xed, 0xc3, 0x27, 0xe3, 0xa7, 0xfd, 0x00, 0x0c, 0xc5, 0xf5, 0x76, 0x52, + 0x0d, 0x77, 0x02, 0xe6, 0x8c, 0x1f, 0x9e, 0x7d, 0x87, 0x32, 0x65, 0x0b, 0xf8, 0xed, 0xbd, 0xa9, + 0x09, 0xf9, 0xbf, 0x66, 0xc5, 0x16, 0x10, 0xf4, 0xf5, 0x2e, 0xf7, 0x77, 0xdc, 0xe3, 0xbc, 0xbf, + 0x73, 0xe1, 0x50, 0x77, 0x77, 0xf2, 0x9c, 0xd1, 0x8f, 0xfc, 0xd4, 0x39, 0xa3, 0xbf, 0xea, 0xc0, + 0xd8, 0xb6, 0xee, 0x32, 0x10, 0x0e, 0x73, 0x0b, 0x81, 0x3b, 0x86, 0x27, 0x62, 0xd6, 0xa5, 0x72, + 0xce, 0x00, 0xdd, 0xce, 0x02, 0xb0, 0xd9, 0x92, 0x9c, 0xa0, 0xa2, 0x47, 0xef, 0x55, 0x50, 0xd1, + 0x1b, 0x4c, 0x8e, 0xc9, 0x43, 0x2e, 0xf3, 0xa2, 0xdb, 0x8d, 0x29, 0x96, 0x32, 0x51, 0x85, 0x14, + 0xeb, 0xfc, 0xd0, 0xe7, 0x1c, 0x98, 0x90, 0xe7, 0x32, 0xe1, 0xf2, 0x8b, 0x45, 0x54, 0xa4, 0xcd, + 0xe3, 0x20, 0x0b, 0xab, 0x5f, 0xcf, 0xf0, 0xc1, 0x1d, 0x9c, 0xa9, 0x54, 0x57, 0x41, 0x68, 0xb5, + 0x98, 0x05, 0xff, 0x0a, 0x1d, 0x66, 0x26, 0x05, 0x63, 0x1d, 0x07, 0x7d, 0x43, 0x3d, 0xec, 0xff, + 0x04, 0x13, 0xe8, 0x2f, 0x58, 0xd6, 0x4d, 0x6d, 0xbc, 0xee, 0x8f, 0xbe, 0xe8, 0xc0, 0xc4, 0x4e, + 0xc6, 0xa0, 0x21, 0xc2, 0x42, 0xb1, 0x7d, 0x53, 0x09, 0x1f, 0xee, 0x2c, 0x14, 0x77, 0xb4, 0x00, + 0x7d, 0xd6, 0x34, 0x74, 0xf2, 0xf8, 0x51, 0x8b, 0x03, 0x98, 0x31, 0xac, 0xf2, 0x6b, 0x6e, 0xf9, + 0x16, 0xcf, 0xbb, 0x8e, 0x0f, 0x99, 0xa4, 0x9d, 0x49, 0x3f, 0x56, 0x4e, 0x55, 0x62, 0xda, 0x5b, + 0x2c, 0x2c, 0x76, 0xe3, 0xf3, 0xeb, 0xe6, 0x96, 0x2f, 0x9e, 0x87, 0x71, 0xd3, 0xb7, 0x87, 0xde, + 0x65, 0xbe, 0x19, 0x71, 0x31, 0x9b, 0x7e, 0x7f, 0x4c, 0xe2, 0x1b, 0x29, 0xf8, 0x8d, 0x1c, 0xf9, + 0x85, 0x63, 0xcd, 0x91, 0xdf, 0x77, 0x32, 0x39, 0xf2, 0x27, 0x8e, 0x23, 0x47, 0xfe, 0xe9, 0x43, + 0xe5, 0xc8, 0xd7, 0xde, 0x28, 0xe8, 0xbf, 0xc3, 0x1b, 0x05, 0x33, 0x70, 0x4a, 0xde, 0xfd, 0x21, + 0x22, 0x0d, 0x39, 0x77, 0xfb, 0x5f, 0x10, 0x55, 0x4e, 0xcd, 0x99, 0xc5, 0x38, 0x8b, 0x4f, 0x17, + 0x59, 0x31, 0x60, 0x35, 0x07, 0x6c, 0x3d, 0x60, 0x64, 0x4e, 0x2d, 0x76, 0x7c, 0x16, 0x22, 0x4a, + 0x46, 0x3b, 0x17, 0x19, 0xec, 0xb6, 0xfc, 0x07, 0xf3, 0x16, 0xa0, 0x97, 0xa0, 0x14, 0x6e, 0x6e, + 0x36, 0x42, 0xaf, 0x9a, 0x26, 0xf2, 0x97, 0x71, 0x09, 0xfc, 0xee, 0xa6, 0xca, 0xfb, 0xba, 0xda, + 0x05, 0x0f, 0x77, 0xa5, 0x80, 0xde, 0xa2, 0x8a, 0x49, 0x12, 0x46, 0xa4, 0x9a, 0xda, 0x6a, 0x86, + 0x59, 0x9f, 0x89, 0xf5, 0x3e, 0x97, 0x4d, 0x3e, 0xbc, 0xf7, 0xea, 0xa3, 0x64, 0x4a, 0x71, 0xb6, + 0x59, 0x28, 0x82, 0xf3, 0xad, 0x3c, 0x53, 0x51, 0x2c, 0x6e, 0x2c, 0x1d, 0x64, 0xb0, 0x92, 0x4b, + 0xf7, 0x7c, 0xae, 0xb1, 0x29, 0xc6, 0x5d, 0x28, 0xeb, 0xc9, 0xf6, 0x87, 0x4e, 0x26, 0xd9, 0xfe, + 0xc7, 0x00, 0x2a, 0x32, 0x95, 0x97, 0x34, 0x3e, 0x2c, 0x59, 0xb9, 0x4a, 0xc3, 0x69, 0x6a, 0xef, + 0x9b, 0x2a, 0x36, 0x58, 0x63, 0x89, 0xfe, 0x6f, 0xee, 0x6b, 0x14, 0xdc, 0xc2, 0x52, 0xb3, 0x3e, + 0x27, 0x7e, 0xea, 0x5e, 0xa4, 0xf8, 0xe7, 0x0e, 0x4c, 0xf2, 0x99, 0x97, 0x55, 0xee, 0xa9, 0x6a, + 0x21, 0xee, 0xf6, 0xd8, 0x0e, 0x5d, 0x61, 0x51, 0x7c, 0x65, 0x83, 0x2b, 0x73, 0x74, 0x1f, 0xd0, + 0x12, 0xf4, 0xe5, 0x9c, 0x23, 0xc5, 0x29, 0x5b, 0x36, 0xcb, 0xfc, 0x37, 0x05, 0xce, 0xec, 0xf7, + 0x72, 0x8a, 0xf8, 0x97, 0x5d, 0x4d, 0xaa, 0x88, 0x35, 0xef, 0x17, 0x8f, 0xc9, 0xa4, 0xaa, 0x3f, + 0x7c, 0x70, 0x28, 0xc3, 0xea, 0xe7, 0x1d, 0x98, 0xf0, 0x32, 0xa1, 0x26, 0xcc, 0x0e, 0x64, 0xc5, + 0x26, 0x35, 0x13, 0xa5, 0xf1, 0x2b, 0x4c, 0xc9, 0xcb, 0x46, 0xb5, 0xe0, 0x0e, 0xe6, 0xe8, 0x07, + 0x0e, 0x3c, 0x90, 0x78, 0xf1, 0x16, 0x4f, 0x2b, 0x1c, 0xa7, 0x77, 0x75, 0x45, 0xe3, 0xce, 0xb2, + 0xd5, 0xf8, 0x8a, 0xf5, 0xd5, 0xb8, 0xde, 0x9d, 0x27, 0x5f, 0x97, 0x8f, 0x88, 0x75, 0xf9, 0xc0, + 0x01, 0x98, 0xf8, 0xa0, 0xa6, 0x4f, 0x7e, 0xca, 0xe1, 0xcf, 0x4f, 0x75, 0x55, 0xf9, 0x36, 0x4c, + 0x95, 0x6f, 0xd9, 0xe6, 0x03, 0x38, 0xba, 0xee, 0xf9, 0xab, 0x0e, 0x9c, 0xcd, 0xdb, 0x91, 0x72, + 0x9a, 0xf4, 0x11, 0xb3, 0x49, 0x16, 0x4f, 0x59, 0x7a, 0x83, 0xac, 0xbc, 0xbf, 0x31, 0x79, 0x1d, + 0x1e, 0xbe, 0xd3, 0x57, 0xbc, 0x13, 0xbd, 0x21, 0x5d, 0x2d, 0xfe, 0xd3, 0x61, 0xcd, 0x0b, 0x99, + 0x90, 0x96, 0xf5, 0x18, 0xee, 0x00, 0x06, 0xfc, 0xa0, 0xe1, 0x07, 0x44, 0xdc, 0xd7, 0xb4, 0x79, + 0x86, 0x15, 0xef, 0xe7, 0x50, 0xea, 0x58, 0x70, 0xb9, 0xc7, 0x4e, 0xc9, 0xec, 0x8b, 0x64, 0xfd, + 0x27, 0xff, 0x22, 0xd9, 0x0e, 0x0c, 0xef, 0xf8, 0x49, 0x9d, 0x05, 0x53, 0x08, 0x5f, 0x9f, 0x85, + 0x7b, 0x8e, 0x94, 0x5c, 0xda, 0xf7, 0x9b, 0x92, 0x01, 0x4e, 0x79, 0xa1, 0x4b, 0x9c, 0x31, 0x8b, + 0xdc, 0xce, 0x86, 0xd4, 0xde, 0x94, 0x05, 0x38, 0xc5, 0xa1, 0x83, 0x35, 0x4a, 0x7f, 0xc9, 0x7c, + 0x46, 0x22, 0xed, 0xae, 0x8d, 0x74, 0x8a, 0x82, 0x22, 0xbf, 0x4d, 0x7c, 0x53, 0xe3, 0x81, 0x0d, + 0x8e, 0x2a, 0xf3, 0xf1, 0x50, 0xd7, 0xcc, 0xc7, 0xaf, 0x33, 0x85, 0x2d, 0xf1, 0x83, 0x36, 0x59, + 0x0d, 0x44, 0xbc, 0xf7, 0xb2, 0x9d, 0xbb, 0xcf, 0x9c, 0x26, 0x3f, 0x82, 0xa7, 0xbf, 0xb1, 0xc6, + 0x4f, 0x73, 0xb9, 0x8c, 0x1c, 0xe8, 0x72, 0x49, 0x4d, 0x2e, 0xa3, 0xd6, 0x4d, 0x2e, 0x09, 0x69, + 0x59, 0x31, 0xb9, 0xfc, 0x54, 0x99, 0x03, 0xfe, 0xc2, 0x01, 0xa4, 0xf4, 0x2e, 0x25, 0x50, 0x4f, + 0x20, 0xa8, 0xf2, 0xe3, 0x0e, 0x40, 0xa0, 0xde, 0xad, 0xb4, 0xbb, 0x0b, 0x72, 0x9a, 0x69, 0x03, + 0x52, 0x18, 0xd6, 0x78, 0xba, 0xff, 0xd3, 0x49, 0x63, 0x97, 0xd3, 0xbe, 0x9f, 0x40, 0x10, 0xd9, + 0xae, 0x19, 0x44, 0xb6, 0x6e, 0xd1, 0x74, 0xaf, 0xba, 0xd1, 0x25, 0x9c, 0xec, 0xc7, 0x05, 0x38, + 0xa5, 0x23, 0x97, 0xc9, 0x49, 0x7c, 0xec, 0x1d, 0x23, 0x82, 0xf6, 0x86, 0xdd, 0xfe, 0x96, 0x85, + 0x07, 0x28, 0x2f, 0x5a, 0xfb, 0x63, 0x99, 0x68, 0xed, 0x9b, 0xf6, 0x59, 0x1f, 0x1c, 0xb2, 0xfd, + 0xdf, 0x1c, 0x38, 0x93, 0xa9, 0x71, 0x02, 0x13, 0x6c, 0xdb, 0x9c, 0x60, 0xcf, 0x59, 0xef, 0x75, + 0x97, 0xd9, 0xf5, 0xcd, 0x42, 0x47, 0x6f, 0xd9, 0x21, 0xee, 0x93, 0x0e, 0x14, 0xa9, 0xb6, 0x2c, + 0xe3, 0xb9, 0x3e, 0x72, 0x2c, 0x33, 0x80, 0xe9, 0xf5, 0x42, 0x3a, 0xab, 0xf6, 0x31, 0x18, 0xe6, + 0xdc, 0x27, 0x3f, 0xe1, 0x00, 0xa4, 0x48, 0xf7, 0x4a, 0x05, 0x76, 0xbf, 0x5d, 0x80, 0x73, 0xb9, + 0xd3, 0x08, 0x7d, 0x5a, 0x59, 0xe4, 0x1c, 0xdb, 0xd1, 0x8a, 0x06, 0x23, 0xdd, 0x30, 0x37, 0x66, + 0x18, 0xe6, 0x84, 0x3d, 0xee, 0x5e, 0x1d, 0x60, 0x84, 0x98, 0xd6, 0x06, 0xeb, 0x47, 0x4e, 0x1a, + 0x00, 0xab, 0xf2, 0x1a, 0xfd, 0x15, 0xbc, 0xc4, 0xe3, 0xfe, 0x58, 0xbb, 0xe1, 0x20, 0x3b, 0x7a, + 0x02, 0xb2, 0x62, 0xc7, 0x94, 0x15, 0xd8, 0xbe, 0x1f, 0xb9, 0x8b, 0xb0, 0x78, 0x05, 0xf2, 0x1c, + 0xcb, 0xbd, 0x25, 0x45, 0x34, 0xae, 0xc3, 0x16, 0x7a, 0xbe, 0x0e, 0x3b, 0x06, 0x23, 0x2f, 0xfa, + 0x2d, 0xe5, 0x03, 0x9d, 0xfe, 0xce, 0x0f, 0x2f, 0xde, 0xf7, 0xdd, 0x1f, 0x5e, 0xbc, 0xef, 0x07, + 0x3f, 0xbc, 0x78, 0xdf, 0xc7, 0xf7, 0x2f, 0x3a, 0xdf, 0xd9, 0xbf, 0xe8, 0x7c, 0x77, 0xff, 0xa2, + 0xf3, 0x83, 0xfd, 0x8b, 0xce, 0x7f, 0xdc, 0xbf, 0xe8, 0xfc, 0x83, 0xff, 0x74, 0xf1, 0xbe, 0x17, + 0x87, 0x64, 0xc7, 0xfe, 0x32, 0x00, 0x00, 0xff, 0xff, 0xa6, 0xf7, 0x2e, 0xb8, 0x5a, 0xd5, 0x00, 0x00, } @@ -13184,14 +13184,14 @@ func (m *WorkflowStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if len(m.TaskResultsCompleted) > 0 { - keysForTaskResultsCompleted := make([]string, 0, len(m.TaskResultsCompleted)) - for k := range m.TaskResultsCompleted { - keysForTaskResultsCompleted = append(keysForTaskResultsCompleted, string(k)) + if len(m.TaskResultsCompletionStatus) > 0 { + keysForTaskResultsCompletionStatus := make([]string, 0, len(m.TaskResultsCompletionStatus)) + for k := range m.TaskResultsCompletionStatus { + keysForTaskResultsCompletionStatus = append(keysForTaskResultsCompletionStatus, string(k)) } - github_com_gogo_protobuf_sortkeys.Strings(keysForTaskResultsCompleted) - for iNdEx := len(keysForTaskResultsCompleted) - 1; iNdEx >= 0; iNdEx-- { - v := m.TaskResultsCompleted[string(keysForTaskResultsCompleted[iNdEx])] + github_com_gogo_protobuf_sortkeys.Strings(keysForTaskResultsCompletionStatus) + for iNdEx := len(keysForTaskResultsCompletionStatus) - 1; iNdEx >= 0; iNdEx-- { + v := m.TaskResultsCompletionStatus[string(keysForTaskResultsCompletionStatus[iNdEx])] baseI := i i-- if v { @@ -13201,9 +13201,9 @@ func (m *WorkflowStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { } i-- dAtA[i] = 0x10 - i -= len(keysForTaskResultsCompleted[iNdEx]) - copy(dAtA[i:], keysForTaskResultsCompleted[iNdEx]) - i = encodeVarintGenerated(dAtA, i, uint64(len(keysForTaskResultsCompleted[iNdEx]))) + i -= len(keysForTaskResultsCompletionStatus[iNdEx]) + copy(dAtA[i:], keysForTaskResultsCompletionStatus[iNdEx]) + i = encodeVarintGenerated(dAtA, i, uint64(len(keysForTaskResultsCompletionStatus[iNdEx]))) i-- dAtA[i] = 0xa i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) @@ -17007,8 +17007,8 @@ func (m *WorkflowStatus) Size() (n int) { l = m.ArtifactGCStatus.Size() n += 2 + l + sovGenerated(uint64(l)) } - if len(m.TaskResultsCompleted) > 0 { - for k, v := range m.TaskResultsCompleted { + if len(m.TaskResultsCompletionStatus) > 0 { + for k, v := range m.TaskResultsCompletionStatus { _ = k _ = v mapEntrySize := 1 + len(k) + sovGenerated(uint64(len(k))) + 1 + 1 @@ -19374,16 +19374,16 @@ func (this *WorkflowStatus) String() string { mapStringForResourcesDuration += fmt.Sprintf("%v: %v,", k, this.ResourcesDuration[k8s_io_api_core_v1.ResourceName(k)]) } mapStringForResourcesDuration += "}" - keysForTaskResultsCompleted := make([]string, 0, len(this.TaskResultsCompleted)) - for k := range this.TaskResultsCompleted { - keysForTaskResultsCompleted = append(keysForTaskResultsCompleted, k) + keysForTaskResultsCompletionStatus := make([]string, 0, len(this.TaskResultsCompletionStatus)) + for k := range this.TaskResultsCompletionStatus { + keysForTaskResultsCompletionStatus = append(keysForTaskResultsCompletionStatus, k) } - github_com_gogo_protobuf_sortkeys.Strings(keysForTaskResultsCompleted) - mapStringForTaskResultsCompleted := "map[string]bool{" - for _, k := range keysForTaskResultsCompleted { - mapStringForTaskResultsCompleted += fmt.Sprintf("%v: %v,", k, this.TaskResultsCompleted[k]) + github_com_gogo_protobuf_sortkeys.Strings(keysForTaskResultsCompletionStatus) + mapStringForTaskResultsCompletionStatus := "map[string]bool{" + for _, k := range keysForTaskResultsCompletionStatus { + mapStringForTaskResultsCompletionStatus += fmt.Sprintf("%v: %v,", k, this.TaskResultsCompletionStatus[k]) } - mapStringForTaskResultsCompleted += "}" + mapStringForTaskResultsCompletionStatus += "}" s := strings.Join([]string{`&WorkflowStatus{`, `Phase:` + fmt.Sprintf("%v", this.Phase) + `,`, `StartedAt:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.StartedAt), "Time", "v11.Time", 1), `&`, ``, 1) + `,`, @@ -19403,7 +19403,7 @@ func (this *WorkflowStatus) String() string { `Progress:` + fmt.Sprintf("%v", this.Progress) + `,`, `ArtifactRepositoryRef:` + strings.Replace(fmt.Sprintf("%v", this.ArtifactRepositoryRef), "ArtifactRepositoryRefStatus", "ArtifactRepositoryRefStatus", 1) + `,`, `ArtifactGCStatus:` + strings.Replace(this.ArtifactGCStatus.String(), "ArtGCStatus", "ArtGCStatus", 1) + `,`, - `TaskResultsCompleted:` + mapStringForTaskResultsCompleted + `,`, + `TaskResultsCompletionStatus:` + mapStringForTaskResultsCompletionStatus + `,`, `}`, }, "") return s @@ -45363,7 +45363,7 @@ func (m *WorkflowStatus) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 20: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TaskResultsCompleted", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TaskResultsCompletionStatus", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -45390,8 +45390,8 @@ func (m *WorkflowStatus) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.TaskResultsCompleted == nil { - m.TaskResultsCompleted = make(map[string]bool) + if m.TaskResultsCompletionStatus == nil { + m.TaskResultsCompletionStatus = make(map[string]bool) } var mapkey string var mapvalue bool @@ -45474,7 +45474,7 @@ func (m *WorkflowStatus) Unmarshal(dAtA []byte) error { iNdEx += skippy } } - m.TaskResultsCompleted[mapkey] = mapvalue + m.TaskResultsCompletionStatus[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex diff --git a/pkg/apis/workflow/v1alpha1/generated.proto b/pkg/apis/workflow/v1alpha1/generated.proto index 3a93236d93af..ccd66ad0d35b 100644 --- a/pkg/apis/workflow/v1alpha1/generated.proto +++ b/pkg/apis/workflow/v1alpha1/generated.proto @@ -2118,8 +2118,8 @@ message WorkflowStatus { // ArtifactGCStatus maintains the status of Artifact Garbage Collection optional ArtGCStatus artifactGCStatus = 19; - // Have task results been completed? (mapped by Pod name) used to prevent premature garbage collection of artifacts. - map taskResultsCompleted = 20; + // TaskResultsCompletionStatus tracks task result completion status (mapped by pod name). Used to prevent premature archiving and garbage collection. + map taskResultsCompletionStatus = 20; } // WorkflowStep is a reference to a template to execute in a series of step diff --git a/pkg/apis/workflow/v1alpha1/openapi_generated.go b/pkg/apis/workflow/v1alpha1/openapi_generated.go index 550b2e35dad8..8e64e3ae03a6 100644 --- a/pkg/apis/workflow/v1alpha1/openapi_generated.go +++ b/pkg/apis/workflow/v1alpha1/openapi_generated.go @@ -7840,9 +7840,9 @@ func schema_pkg_apis_workflow_v1alpha1_WorkflowStatus(ref common.ReferenceCallba Ref: ref("github.com/argoproj/argo-workflows/v3/pkg/apis/workflow/v1alpha1.ArtGCStatus"), }, }, - "taskResultsCompleted": { + "taskResultsCompletionStatus": { SchemaProps: spec.SchemaProps{ - Description: "Have task results been completed? (mapped by Pod name) used to prevent premature garbage collection of artifacts.", + Description: "TaskResultsCompletionStatus tracks task result completion status (mapped by pod name). Used to prevent premature archiving and garbage collection.", Type: []string{"object"}, AdditionalProperties: &spec.SchemaOrBool{ Allows: true, diff --git a/pkg/apis/workflow/v1alpha1/workflow_types.go b/pkg/apis/workflow/v1alpha1/workflow_types.go index cf9f8d7856bc..4e583adaff5f 100644 --- a/pkg/apis/workflow/v1alpha1/workflow_types.go +++ b/pkg/apis/workflow/v1alpha1/workflow_types.go @@ -1944,29 +1944,31 @@ type WorkflowStatus struct { // ArtifactGCStatus maintains the status of Artifact Garbage Collection ArtifactGCStatus *ArtGCStatus `json:"artifactGCStatus,omitempty" protobuf:"bytes,19,opt,name=artifactGCStatus"` - // Have task results been completed? (mapped by Pod name) used to prevent premature garbage collection of artifacts. - TaskResultsCompleted map[string]bool `json:"taskResultsCompleted,omitempty" protobuf:"bytes,20,opt,name=taskResultsCompleted"` + // TaskResultsCompletionStatus tracks task result completion status (mapped by pod name). Used to prevent premature archiving and garbage collection. + TaskResultsCompletionStatus map[string]bool `json:"taskResultsCompletionStatus,omitempty" protobuf:"bytes,20,opt,name=taskResultsCompletionStatus"` } -func (ws *WorkflowStatus) InitializeTaskResultIncomplete(resultName string) { - if ws.TaskResultsCompleted == nil { - ws.TaskResultsCompleted = make(map[string]bool) - } - if _, ok := ws.TaskResultsCompleted[resultName]; !ok { - ws.MarkTaskResultIncomplete(resultName) +func (ws *WorkflowStatus) MarkTaskResultIncomplete(name string) { + if ws.TaskResultsCompletionStatus == nil { + ws.TaskResultsCompletionStatus = make(map[string]bool) } + ws.TaskResultsCompletionStatus[name] = false } + func (ws *WorkflowStatus) MarkTaskResultComplete(name string) { - ws.TaskResultsCompleted[name] = true -} -func (ws *WorkflowStatus) MarkTaskResultIncomplete(name string) { - ws.TaskResultsCompleted[name] = false -} -func (ws *WorkflowStatus) GetTaskResultCompleted(name string) bool { - return ws.TaskResultsCompleted[name] + if ws.TaskResultsCompletionStatus == nil { + ws.TaskResultsCompletionStatus = make(map[string]bool) + } + ws.TaskResultsCompletionStatus[name] = true } -func (ws *WorkflowStatus) GetTaskResultsCompleted() map[string]bool { - return ws.TaskResultsCompleted + +func (ws *WorkflowStatus) TaskResultsInProgress() bool { + for _, value := range ws.TaskResultsCompletionStatus { + if !value { + return true + } + } + return false } func (ws *WorkflowStatus) IsOffloadNodeStatus() bool { diff --git a/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go index 7317450c1905..05aecefe7416 100644 --- a/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go @@ -3962,8 +3962,8 @@ func (in *WorkflowStatus) DeepCopyInto(out *WorkflowStatus) { *out = new(ArtGCStatus) (*in).DeepCopyInto(*out) } - if in.TaskResultsCompleted != nil { - in, out := &in.TaskResultsCompleted, &out.TaskResultsCompleted + if in.TaskResultsCompletionStatus != nil { + in, out := &in.TaskResultsCompletionStatus, &out.TaskResultsCompletionStatus *out = make(map[string]bool, len(*in)) for key, val := range *in { (*out)[key] = val diff --git a/sdks/java/client/docs/IoArgoprojWorkflowV1alpha1WorkflowStatus.md b/sdks/java/client/docs/IoArgoprojWorkflowV1alpha1WorkflowStatus.md index 7be95408157d..c008ea6ef78c 100644 --- a/sdks/java/client/docs/IoArgoprojWorkflowV1alpha1WorkflowStatus.md +++ b/sdks/java/client/docs/IoArgoprojWorkflowV1alpha1WorkflowStatus.md @@ -26,7 +26,7 @@ Name | Type | Description | Notes **storedTemplates** | [**Map<String, IoArgoprojWorkflowV1alpha1Template>**](IoArgoprojWorkflowV1alpha1Template.md) | StoredTemplates is a mapping between a template ref and the node's status. | [optional] **storedWorkflowTemplateSpec** | [**IoArgoprojWorkflowV1alpha1WorkflowSpec**](IoArgoprojWorkflowV1alpha1WorkflowSpec.md) | | [optional] **synchronization** | [**IoArgoprojWorkflowV1alpha1SynchronizationStatus**](IoArgoprojWorkflowV1alpha1SynchronizationStatus.md) | | [optional] -**taskResultsCompleted** | **Map<String, Boolean>** | Have task results been completed? (mapped by Pod name) used to prevent premature garbage collection of artifacts. | [optional] +**taskResultsCompletionStatus** | **Map<String, Boolean>** | TaskResultsCompletionStatus tracks task result completion status (mapped by pod name). Used to prevent premature archiving and garbage collection. | [optional] diff --git a/sdks/python/client/argo_workflows/model/io_argoproj_workflow_v1alpha1_workflow_status.py b/sdks/python/client/argo_workflows/model/io_argoproj_workflow_v1alpha1_workflow_status.py index 70a9cbf46250..45224a451dfb 100644 --- a/sdks/python/client/argo_workflows/model/io_argoproj_workflow_v1alpha1_workflow_status.py +++ b/sdks/python/client/argo_workflows/model/io_argoproj_workflow_v1alpha1_workflow_status.py @@ -121,7 +121,7 @@ def openapi_types(): 'stored_templates': ({str: (IoArgoprojWorkflowV1alpha1Template,)},), # noqa: E501 'stored_workflow_template_spec': (IoArgoprojWorkflowV1alpha1WorkflowSpec,), # noqa: E501 'synchronization': (IoArgoprojWorkflowV1alpha1SynchronizationStatus,), # noqa: E501 - 'task_results_completed': ({str: (bool,)},), # noqa: E501 + 'task_results_completion_status': ({str: (bool,)},), # noqa: E501 } @cached_property @@ -148,7 +148,7 @@ def discriminator(): 'stored_templates': 'storedTemplates', # noqa: E501 'stored_workflow_template_spec': 'storedWorkflowTemplateSpec', # noqa: E501 'synchronization': 'synchronization', # noqa: E501 - 'task_results_completed': 'taskResultsCompleted', # noqa: E501 + 'task_results_completion_status': 'taskResultsCompletionStatus', # noqa: E501 } read_only_vars = { @@ -210,7 +210,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 stored_templates ({str: (IoArgoprojWorkflowV1alpha1Template,)}): StoredTemplates is a mapping between a template ref and the node's status.. [optional] # noqa: E501 stored_workflow_template_spec (IoArgoprojWorkflowV1alpha1WorkflowSpec): [optional] # noqa: E501 synchronization (IoArgoprojWorkflowV1alpha1SynchronizationStatus): [optional] # noqa: E501 - task_results_completed ({str: (bool,)}): Have task results been completed? (mapped by Pod name) used to prevent premature garbage collection of artifacts.. [optional] # noqa: E501 + task_results_completion_status ({str: (bool,)}): TaskResultsCompletionStatus tracks task result completion status (mapped by pod name). Used to prevent premature archiving and garbage collection.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -310,7 +310,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 stored_templates ({str: (IoArgoprojWorkflowV1alpha1Template,)}): StoredTemplates is a mapping between a template ref and the node's status.. [optional] # noqa: E501 stored_workflow_template_spec (IoArgoprojWorkflowV1alpha1WorkflowSpec): [optional] # noqa: E501 synchronization (IoArgoprojWorkflowV1alpha1SynchronizationStatus): [optional] # noqa: E501 - task_results_completed ({str: (bool,)}): Have task results been completed? (mapped by Pod name) used to prevent premature garbage collection of artifacts.. [optional] # noqa: E501 + task_results_completion_status ({str: (bool,)}): TaskResultsCompletionStatus tracks task result completion status (mapped by pod name). Used to prevent premature archiving and garbage collection.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/sdks/python/client/docs/IoArgoprojWorkflowV1alpha1WorkflowStatus.md b/sdks/python/client/docs/IoArgoprojWorkflowV1alpha1WorkflowStatus.md index 4ba4c0e4d9e8..06b3715f3745 100644 --- a/sdks/python/client/docs/IoArgoprojWorkflowV1alpha1WorkflowStatus.md +++ b/sdks/python/client/docs/IoArgoprojWorkflowV1alpha1WorkflowStatus.md @@ -23,7 +23,7 @@ Name | Type | Description | Notes **stored_templates** | [**{str: (IoArgoprojWorkflowV1alpha1Template,)}**](IoArgoprojWorkflowV1alpha1Template.md) | StoredTemplates is a mapping between a template ref and the node's status. | [optional] **stored_workflow_template_spec** | [**IoArgoprojWorkflowV1alpha1WorkflowSpec**](IoArgoprojWorkflowV1alpha1WorkflowSpec.md) | | [optional] **synchronization** | [**IoArgoprojWorkflowV1alpha1SynchronizationStatus**](IoArgoprojWorkflowV1alpha1SynchronizationStatus.md) | | [optional] -**task_results_completed** | **{str: (bool,)}** | Have task results been completed? (mapped by Pod name) used to prevent premature garbage collection of artifacts. | [optional] +**task_results_completion_status** | **{str: (bool,)}** | TaskResultsCompletionStatus tracks task result completion status (mapped by pod name). Used to prevent premature archiving and garbage collection. | [optional] **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/sdks/python/client/docs/WorkflowServiceApi.md b/sdks/python/client/docs/WorkflowServiceApi.md index cd40058037d7..4296e4211333 100644 --- a/sdks/python/client/docs/WorkflowServiceApi.md +++ b/sdks/python/client/docs/WorkflowServiceApi.md @@ -27347,7 +27347,7 @@ with argo_workflows.ApiClient(configuration) as api_client: ], ), ), - task_results_completed={ + task_results_completion_status={ "key": True, }, ), @@ -54901,7 +54901,7 @@ with argo_workflows.ApiClient(configuration) as api_client: ], ), ), - task_results_completed={ + task_results_completion_status={ "key": True, }, ), diff --git a/test/e2e/argo_server_test.go b/test/e2e/argo_server_test.go index 4ab1eea1dcd3..a969a2f30e7a 100644 --- a/test/e2e/argo_server_test.go +++ b/test/e2e/argo_server_test.go @@ -1037,6 +1037,29 @@ spec: }) } +func (s *ArgoServerSuite) TestArtifactServerArchivedStoppedWorkflow() { + var uid types.UID + var nodeID string + s.Given(). + Workflow(`@testdata/artifact-workflow-stopped.yaml`). + When(). + SubmitWorkflow(). + WaitForWorkflow(fixtures.ToBeArchived). + Then(). + ExpectWorkflow(func(t *testing.T, metadata *metav1.ObjectMeta, status *wfv1.WorkflowStatus) { + uid = metadata.UID + nodeID = status.Nodes.FindByDisplayName("create-artifact").ID + }) + + s.Run("GetArtifactByNodeID", func() { + s.e().GET("/artifact-files/argo/archived-workflows/{uid}/{nodeID}/outputs/artifact-creator", uid, nodeID). + Expect(). + Status(200). + Body(). + Contains("testing") + }) +} + // make sure we can download an artifact func (s *ArgoServerSuite) TestArtifactServer() { var uid types.UID diff --git a/test/e2e/daemon_pod_test.go b/test/e2e/daemon_pod_test.go index b5fd33a63577..4ef9d1c10007 100644 --- a/test/e2e/daemon_pod_test.go +++ b/test/e2e/daemon_pod_test.go @@ -45,7 +45,7 @@ spec: `). When(). SubmitWorkflow(). - WaitForWorkflow(fixtures.ToBeSucceeded). + WaitForWorkflow(fixtures.ToBeCompleted). Then(). ExpectWorkflow(func(t *testing.T, metadata *v1.ObjectMeta, status *v1alpha1.WorkflowStatus) { assert.False(t, status.FinishedAt.IsZero()) diff --git a/test/e2e/functional_test.go b/test/e2e/functional_test.go index 7d68ece3652f..30a522287876 100644 --- a/test/e2e/functional_test.go +++ b/test/e2e/functional_test.go @@ -898,7 +898,7 @@ func (s *FunctionalSuite) TestDataTransformation() { Workflow("@testdata/data-transformation.yaml"). When(). SubmitWorkflow(). - WaitForWorkflow(90 * time.Second). + WaitForWorkflow(fixtures.ToBeSucceeded). Then(). ExpectWorkflow(func(t *testing.T, metadata *metav1.ObjectMeta, status *wfv1.WorkflowStatus) { assert.Equal(t, wfv1.WorkflowSucceeded, status.Phase) diff --git a/test/e2e/testdata/artifact-workflow-stopped.yaml b/test/e2e/testdata/artifact-workflow-stopped.yaml new file mode 100644 index 000000000000..051decd7e010 --- /dev/null +++ b/test/e2e/testdata/artifact-workflow-stopped.yaml @@ -0,0 +1,99 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Workflow +metadata: + generateName: wf-stopped- +spec: + workflowMetadata: + labels: + workflows.argoproj.io/test: "true" + workflows.argoproj.io/workflow: "wf-stopped" + entrypoint: wf-stopped-main + serviceAccountName: argo + executor: + serviceAccountName: default + volumeClaimTemplates: + - metadata: + name: artifacts + spec: + accessModes: [ "ReadWriteOnce" ] + resources: + requests: + storage: 1Gi + templates: + - name: wf-stopped-main + dag: + tasks: + - name: create-artifact + template: artifact-creator + - name: delay-stop-workflow + template: delay-stop + - name: stop-workflow + template: workflow-stopper + dependencies: [delay-stop-workflow] + - name: delay-stop + container: + image: alpine:latest + volumeMounts: + - name: artifacts + mountPath: /mnt/vol + command: [sh, -c] + args: + - | + echo "Delaying workflow stop" + ls /mnt + x=0 + while [ $x -le 60 ] + do + sleep 1 + if [ -f "/mnt/vol/test.txt" ]; then + echo "Artifact found in shared volume" + break + fi + x=$(( $x + 1 )) + done + - name: workflow-stopper + container: + image: argoproj/argocli:latest + args: + - stop + - -l + - workflows.argoproj.io/workflow=wf-stopped + - --namespace=argo + - --loglevel=debug + - name: artifact-creator + metadata: + labels: + template: "artifact-creator" + container: + image: alpine:latest + volumeMounts: + - name: artifacts + mountPath: /mnt/vol + command: [sh, -c] + args: + - | + echo 'testing' > /mnt/vol/test.txt + echo "Artifact saved to /mnt/vol/test.txt" + echo "Pretending to continue to do work." + ls /mnt + while : + do + sleep 1 + done + outputs: + artifacts: + - name: artifact-creator + path: /mnt/vol/test.txt + s3: + key: artifact-creator + bucket: my-bucket-3 + endpoint: minio:9000 + insecure: true + accessKeySecret: + name: my-minio-cred + key: accesskey + secretKeySecret: + name: my-minio-cred + key: secretkey + archive: + none: {} \ No newline at end of file diff --git a/workflow/controller/operator.go b/workflow/controller/operator.go index 384a3fa2024a..6b071fadfc1c 100644 --- a/workflow/controller/operator.go +++ b/workflow/controller/operator.go @@ -239,8 +239,8 @@ func (woc *wfOperationCtx) operate(ctx context.Context) { // Reconciliation of Outputs (Artifacts). See ReportOutputs() of executor.go. woc.taskResultReconciliation() - // Do artifact GC if all task results are completed. - if woc.checkTaskResultsCompleted() { + // Do artifact GC if task result reconciliation is complete. + if woc.checkReconciliationComplete() { if err := woc.garbageCollectArtifacts(ctx); err != nil { woc.log.WithError(err).Error("failed to GC artifacts") return @@ -788,7 +788,7 @@ func (woc *wfOperationCtx) persistUpdates(ctx context.Context) { } // Make sure the TaskResults are incorporated into WorkflowStatus before we delete them. - if woc.wf.Status.Phase.Completed() && woc.checkTaskResultsCompleted() { + if woc.checkReconciliationComplete() { if err := woc.deleteTaskResults(ctx); err != nil { woc.log.WithError(err).Warn("failed to delete task-results") } @@ -800,17 +800,9 @@ func (woc *wfOperationCtx) persistUpdates(ctx context.Context) { woc.queuePodsForCleanup() } -func (woc *wfOperationCtx) checkTaskResultsCompleted() bool { - taskResultsCompleted := woc.wf.Status.GetTaskResultsCompleted() - if len(taskResultsCompleted) == 0 { - return false - } - for _, completed := range taskResultsCompleted { - if !completed { - return false - } - } - return true +func (woc *wfOperationCtx) checkReconciliationComplete() bool { + woc.log.Debugf("Task results completion status: %v", woc.wf.Status.TaskResultsCompletionStatus) + return woc.wf.Status.Phase.Completed() && !woc.wf.Status.TaskResultsInProgress() } func (woc *wfOperationCtx) deleteTaskResults(ctx context.Context) error { @@ -1374,9 +1366,10 @@ func (woc *wfOperationCtx) assessNodeStatus(pod *apiv1.Pod, old *wfv1.NodeStatus if x, ok := pod.Annotations[common.AnnotationKeyReportOutputsCompleted]; ok { woc.log.Warn("workflow uses legacy/insecure pod patch, see https://argo-workflows.readthedocs.io/en/latest/workflow-rbac/") resultName := pod.GetName() - woc.wf.Status.InitializeTaskResultIncomplete(resultName) if x == "true" { woc.wf.Status.MarkTaskResultComplete(resultName) + } else { + woc.wf.Status.MarkTaskResultIncomplete(resultName) } } @@ -2262,7 +2255,6 @@ func (woc *wfOperationCtx) checkTemplateTimeout(tmpl *wfv1.Template, node *wfv1. // markWorkflowPhase is a convenience method to set the phase of the workflow with optional message // optionally marks the workflow completed, which sets the finishedAt timestamp and completed label func (woc *wfOperationCtx) markWorkflowPhase(ctx context.Context, phase wfv1.WorkflowPhase, message string) { - markCompleted := false if woc.wf.Status.Phase != phase { if woc.wf.Status.Fulfilled() { woc.log.WithFields(log.Fields{"fromPhase": woc.wf.Status.Phase, "toPhase": phase}). @@ -2286,7 +2278,6 @@ func (woc *wfOperationCtx) markWorkflowPhase(ctx context.Context, phase wfv1.Wor case wfv1.WorkflowFailed, wfv1.WorkflowError: woc.eventRecorder.Event(woc.wf, apiv1.EventTypeWarning, "WorkflowFailed", message) } - markCompleted = phase.Completed() } if woc.wf.Status.StartedAt.IsZero() && phase != wfv1.WorkflowPending { woc.updated = true @@ -2314,8 +2305,8 @@ func (woc *wfOperationCtx) markWorkflowPhase(ctx context.Context, phase wfv1.Wor switch phase { case wfv1.WorkflowSucceeded, wfv1.WorkflowFailed, wfv1.WorkflowError: - // wait for all daemon nodes to get terminated before marking workflow completed - if markCompleted && !woc.hasDaemonNodes() { + // Make sure all task results have been reconciled and wait for all daemon nodes to get terminated before marking the workflow completed. + if woc.checkReconciliationComplete() && !woc.hasDaemonNodes() { woc.log.Info("Marking workflow completed") woc.wf.Status.FinishedAt = metav1.Time{Time: time.Now().UTC()} woc.globalParams[common.GlobalVarWorkflowDuration] = fmt.Sprintf("%f", woc.wf.Status.FinishedAt.Sub(woc.wf.Status.StartedAt.Time).Seconds()) diff --git a/workflow/controller/taskresult.go b/workflow/controller/taskresult.go index e038a7c5b172..89448c7aab5a 100644 --- a/workflow/controller/taskresult.go +++ b/workflow/controller/taskresult.go @@ -63,13 +63,13 @@ func (woc *wfOperationCtx) taskResultReconciliation() { woc.log.Debugf("task result:\n%+v", result) woc.log.Debugf("task result name:\n%+v", resultName) - // Explicitly initialize the TaskResultsCompleted state for the given result. - woc.wf.Status.InitializeTaskResultIncomplete(resultName) - // If the task result is completed, set the state to true. if result.Labels[common.LabelKeyReportOutputsCompleted] == "true" { woc.log.Debugf("Marking task result complete %s", resultName) woc.wf.Status.MarkTaskResultComplete(resultName) + } else { + woc.log.Debugf("Marking task result incomplete %s", resultName) + woc.wf.Status.MarkTaskResultIncomplete(resultName) } nodeID := result.Name @@ -86,6 +86,8 @@ func (woc *wfOperationCtx) taskResultReconciliation() { if old.Outputs != nil && newNode.Outputs.ExitCode == nil { // prevent overwriting of ExitCode newNode.Outputs.ExitCode = old.Outputs.ExitCode } + // Add outputs to global scope here to ensure that they are reflected in archive. + woc.addOutputsToGlobalScope(newNode.Outputs) } if result.Progress.IsValid() { newNode.Progress = result.Progress @@ -98,6 +100,4 @@ func (woc *wfOperationCtx) taskResultReconciliation() { woc.updated = true } } - woc.log.Debugf("task results completed:\n%+v", woc.wf.Status.GetTaskResultsCompleted()) - woc.log.Debugf("task result completed len: %d", len(woc.wf.Status.GetTaskResultsCompleted())) } diff --git a/workflow/executor/executor.go b/workflow/executor/executor.go index e0a36855a764..b9a3062788aa 100644 --- a/workflow/executor/executor.go +++ b/workflow/executor/executor.go @@ -805,6 +805,27 @@ func (we *WorkflowExecutor) FinalizeOutput(ctx context.Context) { } } +func (we *WorkflowExecutor) InitializeOutput(ctx context.Context) { + err := retryutil.OnError(wait.Backoff{ + Duration: time.Second, + Factor: 2, + Jitter: 0.1, + Steps: 5, + Cap: 30 * time.Second, + }, errorsutil.IsTransientErr, func() error { + err := we.upsertTaskResult(ctx, wfv1.NodeResult{}) + if apierr.IsForbidden(err) { + log.WithError(err).Warn("failed to patch task set, falling back to legacy/insecure pod patch, see https://argoproj.github.io/argo-workflows/workflow-rbac/") + // Only added as a backup in case LabelKeyReportOutputsCompleted could not be set + err = we.AddAnnotation(ctx, common.AnnotationKeyReportOutputsCompleted, "false") + } + return err + }) + if err != nil { + we.AddError(err) + } +} + // ReportOutputs updates the WorkflowTaskResult (or falls back to annotate the Pod) func (we *WorkflowExecutor) ReportOutputs(ctx context.Context, logArtifacts []wfv1.Artifact) error { outputs := we.Template.Outputs.DeepCopy()