diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 38a7e232b948..73fe05d30f4d 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -3042,6 +3042,10 @@ "description": "PodIP captures the IP of the pod for daemoned steps", "type": "string" }, + "progress": { + "description": "Progress to completion", + "type": "string" + }, "resourcesDuration": { "description": "ResourcesDuration is indicative, but not accurate, resource duration. This is populated when the nodes completes.", "type": "object", @@ -4602,6 +4606,10 @@ "description": "Phase a simple, high-level summary of where the workflow is in its lifecycle.", "type": "string" }, + "progress": { + "description": "Progress to completion", + "type": "string" + }, "resourcesDuration": { "description": "ResourcesDuration is the total for the workflow", "type": "object", diff --git a/cmd/argo/commands/get.go b/cmd/argo/commands/get.go index b73a0ac279bc..5b1408c2b4fc 100644 --- a/cmd/argo/commands/get.go +++ b/cmd/argo/commands/get.go @@ -145,6 +145,7 @@ func printWorkflowHelper(wf *wfv1.Workflow, getArgs getFlags) string { if wf.Status.EstimatedDuration > 0 { out += fmt.Sprintf(fmtStr, "EstimatedDuration:", humanize.Duration(wf.Status.EstimatedDuration.ToDuration())) } + out += fmt.Sprintf(fmtStr, "Progress:", wf.Status.Progress) } if !wf.Status.ResourcesDuration.IsZero() { out += fmt.Sprintf(fmtStr, "ResourcesDuration:", wf.Status.ResourcesDuration) diff --git a/cmd/argo/commands/get_test.go b/cmd/argo/commands/get_test.go index a86474b5aceb..4c729ba371cb 100644 --- a/cmd/argo/commands/get_test.go +++ b/cmd/argo/commands/get_test.go @@ -109,6 +109,16 @@ func TestStatusToNodeFieldSelector(t *testing.T) { } func Test_printWorkflowHelper(t *testing.T) { + t.Run("Progress", func(t *testing.T) { + var wf wfv1.Workflow + testutil.MustUnmarshallYAML(` +status: + phase: Running + progress: 1/2 +`, &wf) + output := printWorkflowHelper(&wf, getFlags{}) + assert.Regexp(t, `Progress: *1/2`, output) + }) t.Run("EstimatedDuration", func(t *testing.T) { var wf wfv1.Workflow testutil.MustUnmarshallYAML(` diff --git a/docs/fields.md b/docs/fields.md index f540b402f4df..fecd28658fc2 100644 --- a/docs/fields.md +++ b/docs/fields.md @@ -318,6 +318,8 @@ WorkflowTemplate is the definition of a workflow template resource - [`cron-backfill.yaml`](https://github.com/argoproj/argo/blob/master/examples/cron-backfill.yaml) +- [`progress-workflowtemplate.yaml`](https://github.com/argoproj/argo/blob/master/examples/progress-workflowtemplate.yaml) + - [`templates.yaml`](https://github.com/argoproj/argo/blob/master/examples/workflow-template/templates.yaml) @@ -529,6 +531,8 @@ WorkflowSpec is the specification of a Workflow. - [`pod-spec-yaml-patch.yaml`](https://github.com/argoproj/argo/blob/master/examples/pod-spec-yaml-patch.yaml) +- [`progress-workflowtemplate.yaml`](https://github.com/argoproj/argo/blob/master/examples/progress-workflowtemplate.yaml) + - [`recursive-for-loop.yaml`](https://github.com/argoproj/argo/blob/master/examples/recursive-for-loop.yaml) - [`resource-delete-with-flags.yaml`](https://github.com/argoproj/argo/blob/master/examples/resource-delete-with-flags.yaml) @@ -672,6 +676,7 @@ WorkflowStatus contains overall status information about a workflow |`outputs`|[`Outputs`](#outputs)|Outputs captures output values and artifact locations produced by the workflow via global outputs| |`persistentVolumeClaims`|`Array<`[`Volume`](#volume)`>`|PersistentVolumeClaims tracks all PVCs that were created as part of the io.argoproj.workflow.v1alpha1. The contents of this list are drained at the end of the workflow.| |`phase`|`string`|Phase a simple, high-level summary of where the workflow is in its lifecycle.| +|`progress`|`string`|Progress to completion| |`resourcesDuration`|`Map< integer , int64 >`|ResourcesDuration is the total for the workflow| |`startedAt`|[`Time`](#time)|Time at which this workflow started| |`storedTemplates`|[`Template`](#template)|StoredTemplates is a mapping between a template ref and the node's status.| @@ -878,6 +883,8 @@ CronWorkflowSpec is the specification of a CronWorkflow - [`pod-spec-yaml-patch.yaml`](https://github.com/argoproj/argo/blob/master/examples/pod-spec-yaml-patch.yaml) +- [`progress-workflowtemplate.yaml`](https://github.com/argoproj/argo/blob/master/examples/progress-workflowtemplate.yaml) + - [`recursive-for-loop.yaml`](https://github.com/argoproj/argo/blob/master/examples/recursive-for-loop.yaml) - [`resource-delete-with-flags.yaml`](https://github.com/argoproj/argo/blob/master/examples/resource-delete-with-flags.yaml) @@ -1187,6 +1194,8 @@ WorkflowTemplateSpec is a spec of WorkflowTemplate. - [`pod-spec-yaml-patch.yaml`](https://github.com/argoproj/argo/blob/master/examples/pod-spec-yaml-patch.yaml) +- [`progress-workflowtemplate.yaml`](https://github.com/argoproj/argo/blob/master/examples/progress-workflowtemplate.yaml) + - [`recursive-for-loop.yaml`](https://github.com/argoproj/argo/blob/master/examples/recursive-for-loop.yaml) - [`resource-delete-with-flags.yaml`](https://github.com/argoproj/argo/blob/master/examples/resource-delete-with-flags.yaml) @@ -1788,6 +1797,8 @@ Template is a reusable and composable unit of execution in a workflow - [`pod-spec-yaml-patch.yaml`](https://github.com/argoproj/argo/blob/master/examples/pod-spec-yaml-patch.yaml) +- [`progress-workflowtemplate.yaml`](https://github.com/argoproj/argo/blob/master/examples/progress-workflowtemplate.yaml) + - [`recursive-for-loop.yaml`](https://github.com/argoproj/argo/blob/master/examples/recursive-for-loop.yaml) - [`resource-delete-with-flags.yaml`](https://github.com/argoproj/argo/blob/master/examples/resource-delete-with-flags.yaml) @@ -1996,6 +2007,7 @@ NodeStatus contains status information about an individual node in the workflow |`outputs`|[`Outputs`](#outputs)|Outputs captures output parameter values and artifact locations produced by this template invocation| |`phase`|`string`|Phase a simple, high-level summary of where the node is in its lifecycle. Can be used as a state machine.| |`podIP`|`string`|PodIP captures the IP of the pod for daemoned steps| +|`progress`|`string`|Progress to completion| |`resourcesDuration`|`Map< integer , int64 >`|ResourcesDuration is indicative, but not accurate, resource duration. This is populated when the nodes completes.| |`startedAt`|[`Time`](#time)|Time at which this node started| |~`storedTemplateID`~|~`string`~|~StoredTemplateID is the ID of stored template.~ DEPRECATED: This value is not used anymore.| @@ -2906,6 +2918,8 @@ Pod metdata - [`pod-spec-yaml-patch.yaml`](https://github.com/argoproj/argo/blob/master/examples/pod-spec-yaml-patch.yaml) +- [`progress-workflowtemplate.yaml`](https://github.com/argoproj/argo/blob/master/examples/progress-workflowtemplate.yaml) + - [`recursive-for-loop.yaml`](https://github.com/argoproj/argo/blob/master/examples/recursive-for-loop.yaml) - [`resource-delete-with-flags.yaml`](https://github.com/argoproj/argo/blob/master/examples/resource-delete-with-flags.yaml) @@ -4179,6 +4193,8 @@ ObjectMeta is metadata that all persisted resources must have, which includes al - [`pod-spec-yaml-patch.yaml`](https://github.com/argoproj/argo/blob/master/examples/pod-spec-yaml-patch.yaml) +- [`progress-workflowtemplate.yaml`](https://github.com/argoproj/argo/blob/master/examples/progress-workflowtemplate.yaml) + - [`recursive-for-loop.yaml`](https://github.com/argoproj/argo/blob/master/examples/recursive-for-loop.yaml) - [`resource-delete-with-flags.yaml`](https://github.com/argoproj/argo/blob/master/examples/resource-delete-with-flags.yaml) @@ -4703,6 +4719,8 @@ A single application container that you want to run within a pod. - [`pod-spec-yaml-patch.yaml`](https://github.com/argoproj/argo/blob/master/examples/pod-spec-yaml-patch.yaml) +- [`progress-workflowtemplate.yaml`](https://github.com/argoproj/argo/blob/master/examples/progress-workflowtemplate.yaml) + - [`resubmit.yaml`](https://github.com/argoproj/argo/blob/master/examples/resubmit.yaml) - [`retry-backoff.yaml`](https://github.com/argoproj/argo/blob/master/examples/retry-backoff.yaml) @@ -5361,6 +5379,8 @@ PersistentVolumeClaimSpec describes the common attributes of storage devices and - [`pod-spec-yaml-patch.yaml`](https://github.com/argoproj/argo/blob/master/examples/pod-spec-yaml-patch.yaml) +- [`progress-workflowtemplate.yaml`](https://github.com/argoproj/argo/blob/master/examples/progress-workflowtemplate.yaml) + - [`recursive-for-loop.yaml`](https://github.com/argoproj/argo/blob/master/examples/recursive-for-loop.yaml) - [`resource-delete-with-flags.yaml`](https://github.com/argoproj/argo/blob/master/examples/resource-delete-with-flags.yaml) @@ -6380,6 +6400,8 @@ ListMeta describes metadata that synthetic resources must have, including lists - [`pod-spec-yaml-patch.yaml`](https://github.com/argoproj/argo/blob/master/examples/pod-spec-yaml-patch.yaml) +- [`progress-workflowtemplate.yaml`](https://github.com/argoproj/argo/blob/master/examples/progress-workflowtemplate.yaml) + - [`recursive-for-loop.yaml`](https://github.com/argoproj/argo/blob/master/examples/recursive-for-loop.yaml) - [`resource-delete-with-flags.yaml`](https://github.com/argoproj/argo/blob/master/examples/resource-delete-with-flags.yaml) diff --git a/docs/progress.md b/docs/progress.md new file mode 100644 index 000000000000..e8b2913f4e0e --- /dev/null +++ b/docs/progress.md @@ -0,0 +1,29 @@ +# Workflow Progress + +![alpha](assets/alpha.svg) + +> v2.12 and after + +When you run a workflow, the controller will report on its progress. + +We define progress as two numbers, `N/M` such that `0 <= N <= M and 0 <= M <= 1`. + +* `N` is the number of completed tasks. +* `M` is the total number of tasks. + +E.g. `0/0`, `0/1` or `50/100`. + +Unlike [estimated duration](estimated-duration.md), progress is deterministic. I.e. it will be the same for each workflow, regardless of any problems. + +Progress for each node is calculated as follows: + +1. For a pod node, the most recently logged `#argo progress=N/M` value. +2. For a leaf node either `1/1` in completed or `0/1` otherwise. +3. For non-leaf nodes, the sum of its children. + +For a whole workflow's, progress is the sum of all its leaf nodes. + +This allows you to have pods which report their own progress just by logging it. They should always print out `M/M` (i.e `N = M`) as the final line to correctly report progress. + +!!! Warning + `M` will increase during workflow run each time a node is added to the graph. \ No newline at end of file diff --git a/docs/swagger.md b/docs/swagger.md index c61f9d15efa2..511de9afb2cb 100644 --- a/docs/swagger.md +++ b/docs/swagger.md @@ -1261,6 +1261,7 @@ NodeStatus contains status information about an individual node in the workflow | outputs | [io.argoproj.workflow.v1alpha1.Outputs](#io.argoproj.workflow.v1alpha1.outputs) | Outputs captures output parameter values and artifact locations produced by this template invocation | No | | phase | string | Phase a simple, high-level summary of where the node is in its lifecycle. Can be used as a state machine. | No | | podIP | string | PodIP captures the IP of the pod for daemoned steps | No | +| progress | string | Progress to completion | No | | resourcesDuration | object | ResourcesDuration is indicative, but not accurate, resource duration. This is populated when the nodes completes. | No | | startedAt | [io.k8s.apimachinery.pkg.apis.meta.v1.Time](#io.k8s.apimachinery.pkg.apis.meta.v1.time) | Time at which this node started | No | | storedTemplateID | string | StoredTemplateID is the ID of stored template. DEPRECATED: This value is not used anymore. | No | @@ -1825,6 +1826,7 @@ WorkflowStatus contains overall status information about a workflow | outputs | [io.argoproj.workflow.v1alpha1.Outputs](#io.argoproj.workflow.v1alpha1.outputs) | Outputs captures output values and artifact locations produced by the workflow via global outputs | No | | persistentVolumeClaims | [ [io.k8s.api.core.v1.Volume](#io.k8s.api.core.v1.volume) ] | PersistentVolumeClaims tracks all PVCs that were created as part of the io.argoproj.workflow.v1alpha1. The contents of this list are drained at the end of the workflow. | No | | phase | string | Phase a simple, high-level summary of where the workflow is in its lifecycle. | No | +| progress | string | Progress to completion | No | | resourcesDuration | object | ResourcesDuration is the total for the workflow | No | | startedAt | [io.k8s.apimachinery.pkg.apis.meta.v1.Time](#io.k8s.apimachinery.pkg.apis.meta.v1.time) | Time at which this workflow started | No | | storedTemplates | object | StoredTemplates is a mapping between a template ref and the node's status. | No | diff --git a/examples/progress-workflowtemplate.yaml b/examples/progress-workflowtemplate.yaml new file mode 100644 index 000000000000..aa22d500b0c3 --- /dev/null +++ b/examples/progress-workflowtemplate.yaml @@ -0,0 +1,18 @@ +apiVersion: argoproj.io/v1alpha1 +kind: WorkflowTemplate +metadata: + name: progress +spec: + entrypoint: main + templates: + - name: main + container: + image: argoproj/argosay:v1 + command: [ sh, -c ] + args: + - | + for p in $(seq 1 100); do + echo "#argo progress=$p/100, message=\"my argo message\"" + sleep 10s + done + diff --git a/manifests/base/crds/full/argoproj.io_workflows.yaml b/manifests/base/crds/full/argoproj.io_workflows.yaml index 7fdf0bdd9646..d3fe98a8cc8e 100644 --- a/manifests/base/crds/full/argoproj.io_workflows.yaml +++ b/manifests/base/crds/full/argoproj.io_workflows.yaml @@ -7416,6 +7416,8 @@ spec: type: string podIP: type: string + progress: + type: string resourcesDuration: additionalProperties: format: int64 @@ -8393,6 +8395,8 @@ spec: type: array phase: type: string + progress: + type: string resourcesDuration: additionalProperties: format: int64 diff --git a/mkdocs.yml b/mkdocs.yml index 191e356da360..3a726b673a49 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -42,6 +42,7 @@ nav: - artifact-repository-ref.md - resource-duration.md - estimated-duration.md + - progress.md - workflow-creator.md - synchronization.md - workflow-of-workflows.md diff --git a/pkg/apis/workflow/v1alpha1/generated.pb.go b/pkg/apis/workflow/v1alpha1/generated.pb.go index dfd26e830ab7..c5698b678f37 100644 --- a/pkg/apis/workflow/v1alpha1/generated.pb.go +++ b/pkg/apis/workflow/v1alpha1/generated.pb.go @@ -2662,197 +2662,197 @@ func init() { } var fileDescriptor_c23edafa7e7ea072 = []byte{ - // 7261 bytes of a gzipped FileDescriptorProto + // 7290 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5d, 0x6c, 0x1c, 0xd7, 0x75, 0xb0, 0x87, 0xe4, 0x92, 0xbb, 0x67, 0x49, 0x91, 0xbc, 0xfa, 0x5b, 0xd3, 0xb2, 0xa8, 0x8c, 0x63, 0x43, 0xfe, 0x3e, 0x87, 0x8c, 0xe5, 0xf8, 0xfb, 0x9c, 0x38, 0xfe, 0xe1, 0xf2, 0x4f, 0xb2, 0x44, 0x91, 0x3e, 0x4b, 0x49, 0x4d, 0x64, 0xd8, 0x1d, 0xee, 0xde, 0xdd, 0x1d, 0x71, 0x77, 0x66, 0x3d, 0x33, 0x4b, 0x9a, 0x71, 0x8b, 0x3a, 0x41, 0x83, 0x34, 0x4d, 0x83, 0xb6, 0x28, 0x92, 0xba, - 0x08, 0x8a, 0xf6, 0xa5, 0xe8, 0x4b, 0xfb, 0x54, 0xb4, 0x2f, 0x05, 0xf2, 0x50, 0xb4, 0x45, 0x1a, - 0xa0, 0x68, 0xfa, 0xd4, 0x3c, 0x04, 0x4c, 0xcc, 0xbe, 0x38, 0x68, 0xd3, 0xa0, 0x0f, 0x41, 0x0b, - 0xa1, 0x40, 0x8b, 0xfb, 0x3b, 0x3f, 0x3b, 0x2b, 0x51, 0xb3, 0x14, 0x11, 0x34, 0x79, 0xdb, 0x39, - 0xe7, 0xdc, 0x73, 0xee, 0xff, 0x3d, 0x7f, 0xf7, 0x2e, 0x2c, 0x36, 0xec, 0xa0, 0xd9, 0xdd, 0x9a, - 0xab, 0xba, 0xed, 0x79, 0xcb, 0x6b, 0xb8, 0x1d, 0xcf, 0xbd, 0xc3, 0x7f, 0xcc, 0x77, 0xb6, 0x1b, - 0xf3, 0x56, 0xc7, 0xf6, 0xe7, 0x77, 0x5d, 0x6f, 0xbb, 0xde, 0x72, 0x77, 0xe7, 0x77, 0x9e, 0xb5, - 0x5a, 0x9d, 0xa6, 0xf5, 0xec, 0x7c, 0x83, 0x3a, 0xd4, 0xb3, 0x02, 0x5a, 0x9b, 0xeb, 0x78, 0x6e, - 0xe0, 0x92, 0xe7, 0x42, 0x26, 0x73, 0x8a, 0x09, 0xff, 0x31, 0xd7, 0xd9, 0x6e, 0xcc, 0x31, 0x26, - 0x73, 0x8a, 0xc9, 0x9c, 0x62, 0x32, 0xf3, 0xb1, 0x88, 0xe4, 0x86, 0xcb, 0x04, 0x32, 0x5e, 0x5b, - 0xdd, 0x3a, 0xff, 0xe2, 0x1f, 0xfc, 0x97, 0x90, 0x31, 0x63, 0x6e, 0xbf, 0xe0, 0xcf, 0xd9, 0x2e, - 0xab, 0xd2, 0x7c, 0xd5, 0xf5, 0xe8, 0xfc, 0x4e, 0x4f, 0x3d, 0x66, 0x9e, 0x8e, 0xd0, 0x74, 0xdc, - 0x96, 0x5d, 0xdd, 0x9b, 0xdf, 0x79, 0x76, 0x8b, 0x06, 0xbd, 0x55, 0x9e, 0xf9, 0x44, 0x48, 0xda, - 0xb6, 0xaa, 0x4d, 0xdb, 0xa1, 0xde, 0x5e, 0xd8, 0xe4, 0x36, 0x0d, 0xac, 0x34, 0x01, 0xf3, 0xfd, - 0x4a, 0x79, 0x5d, 0x27, 0xb0, 0xdb, 0xb4, 0xa7, 0xc0, 0xff, 0xbb, 0x5f, 0x01, 0xbf, 0xda, 0xa4, - 0x6d, 0xab, 0xa7, 0xdc, 0x73, 0xfd, 0xca, 0x75, 0x03, 0xbb, 0x35, 0x6f, 0x3b, 0x81, 0x1f, 0x78, - 0xc9, 0x42, 0xe6, 0x32, 0x8c, 0x2e, 0xb4, 0xdd, 0xae, 0x13, 0x90, 0x17, 0x21, 0xb7, 0x63, 0xb5, - 0xba, 0xb4, 0x64, 0x5c, 0x30, 0x2e, 0x16, 0xca, 0x4f, 0x7e, 0x6b, 0x7f, 0xf6, 0x91, 0x83, 0xfd, - 0xd9, 0xdc, 0x4d, 0x06, 0xbc, 0xbb, 0x3f, 0x7b, 0x8a, 0x3a, 0x55, 0xb7, 0x66, 0x3b, 0x8d, 0xf9, - 0x3b, 0xbe, 0xeb, 0xcc, 0x5d, 0xef, 0xb6, 0xb7, 0xa8, 0x87, 0xa2, 0x8c, 0xf9, 0x0f, 0x06, 0x4c, - 0x2e, 0x78, 0xd5, 0xa6, 0xbd, 0x43, 0x2b, 0x01, 0xe3, 0xdf, 0xd8, 0x23, 0xb7, 0x61, 0x38, 0xb0, - 0x3c, 0xce, 0xae, 0x78, 0xe9, 0xd5, 0xb9, 0x0c, 0xe3, 0x3d, 0xb7, 0x69, 0x79, 0x8a, 0x5d, 0x79, - 0xec, 0x60, 0x7f, 0x76, 0x78, 0xd3, 0xf2, 0x90, 0x71, 0x25, 0x6f, 0xc1, 0x88, 0xe3, 0x3a, 0xb4, - 0x34, 0xc4, 0xb9, 0x2f, 0x64, 0xe2, 0x7e, 0xdd, 0x75, 0x74, 0x6d, 0xcb, 0xf9, 0x83, 0xfd, 0xd9, - 0x11, 0x06, 0x41, 0xce, 0xd8, 0xfc, 0xb1, 0x01, 0x85, 0x05, 0xaf, 0xd1, 0x6d, 0x53, 0x27, 0xf0, - 0x89, 0x07, 0xd0, 0xb1, 0x3c, 0xab, 0x4d, 0x03, 0xea, 0xf9, 0x25, 0xe3, 0xc2, 0xf0, 0xc5, 0xe2, - 0xa5, 0x97, 0x33, 0x09, 0xdd, 0x50, 0x6c, 0xca, 0x44, 0xf6, 0x30, 0x68, 0x90, 0x8f, 0x11, 0x29, - 0xc4, 0x81, 0x82, 0xe5, 0x05, 0x76, 0xdd, 0xaa, 0x06, 0x7e, 0x69, 0x88, 0x8b, 0x7c, 0x29, 0x93, - 0xc8, 0x05, 0xc9, 0xa5, 0x3c, 0x2d, 0x25, 0x16, 0x14, 0xc4, 0xc7, 0x50, 0x84, 0xf9, 0xf7, 0x23, - 0x90, 0x57, 0x08, 0x72, 0x01, 0x46, 0x1c, 0xab, 0xad, 0x26, 0xc3, 0xb8, 0x2c, 0x38, 0x72, 0xdd, - 0x6a, 0xb3, 0x0e, 0xb2, 0xda, 0x94, 0x51, 0x74, 0xac, 0xa0, 0xc9, 0x47, 0x20, 0x42, 0xb1, 0x61, - 0x05, 0x4d, 0xe4, 0x18, 0x72, 0x0e, 0x46, 0xda, 0x6e, 0x8d, 0x96, 0x86, 0x2f, 0x18, 0x17, 0x73, - 0xa2, 0x83, 0xd7, 0xdc, 0x1a, 0x45, 0x0e, 0x65, 0xe5, 0xeb, 0x9e, 0xdb, 0x2e, 0x8d, 0xc4, 0xcb, - 0xaf, 0x78, 0x6e, 0x1b, 0x39, 0x86, 0x7c, 0xc5, 0x80, 0x29, 0x55, 0xbd, 0x6b, 0x6e, 0xd5, 0x0a, - 0x6c, 0xd7, 0x29, 0xe5, 0xf8, 0x80, 0x2f, 0x0f, 0xd4, 0x11, 0x8a, 0x59, 0xb9, 0x24, 0xa5, 0x4e, - 0x25, 0x31, 0xd8, 0x23, 0x98, 0x5c, 0x02, 0x68, 0xb4, 0xdc, 0x2d, 0xab, 0xc5, 0xfa, 0xa0, 0x34, - 0xca, 0x6b, 0xad, 0x87, 0x70, 0x55, 0x63, 0x30, 0x42, 0x45, 0xb6, 0x61, 0xcc, 0x12, 0xab, 0xa2, - 0x34, 0xc6, 0xeb, 0xbd, 0x94, 0xb1, 0xde, 0xb1, 0x95, 0x55, 0x2e, 0x1e, 0xec, 0xcf, 0x8e, 0x49, - 0x20, 0x2a, 0x09, 0xe4, 0x19, 0xc8, 0xbb, 0x1d, 0x56, 0x55, 0xab, 0x55, 0xca, 0x5f, 0x30, 0x2e, - 0xe6, 0xcb, 0x53, 0xb2, 0x7a, 0xf9, 0x75, 0x09, 0x47, 0x4d, 0x41, 0x9e, 0x86, 0x31, 0xbf, 0xbb, - 0xc5, 0x46, 0xab, 0x54, 0xe0, 0x6d, 0x99, 0x94, 0xc4, 0x63, 0x15, 0x01, 0x46, 0x85, 0x27, 0xcf, - 0x43, 0xd1, 0xa3, 0xd5, 0xae, 0xe7, 0x53, 0x36, 0x7c, 0x25, 0xe0, 0xbc, 0x4f, 0x4a, 0xf2, 0x22, - 0x86, 0x28, 0x8c, 0xd2, 0x99, 0xff, 0x38, 0x0a, 0x3d, 0xfd, 0x4a, 0x9e, 0x85, 0xa2, 0xac, 0xef, - 0x35, 0xb7, 0xe1, 0xf3, 0xe9, 0x95, 0x2f, 0x4f, 0x32, 0x3e, 0x0b, 0x21, 0x18, 0xa3, 0x34, 0xe4, - 0x16, 0x0c, 0xf9, 0xcf, 0xc9, 0x85, 0xfe, 0x4a, 0xa6, 0xfe, 0xab, 0x3c, 0xa7, 0x97, 0xc0, 0xe8, - 0xc1, 0xfe, 0xec, 0x50, 0xe5, 0x39, 0x1c, 0xf2, 0x9f, 0x63, 0x1b, 0x54, 0xc3, 0x0e, 0xf8, 0xf4, - 0xcc, 0xba, 0x41, 0xad, 0xda, 0x81, 0x66, 0xcd, 0x37, 0xa8, 0x55, 0x3b, 0x40, 0xc6, 0x95, 0x6d, - 0x50, 0xcd, 0x20, 0xe8, 0xf0, 0xe9, 0x9d, 0x75, 0x83, 0xba, 0xbc, 0xb9, 0xb9, 0xa1, 0xd9, 0xf3, - 0xf5, 0xc3, 0x20, 0xc8, 0x19, 0x93, 0x77, 0x59, 0x4f, 0x0a, 0x9c, 0xeb, 0xed, 0xc9, 0x75, 0x71, - 0x79, 0xa0, 0x75, 0xe1, 0x7a, 0x7b, 0x5a, 0x9c, 0x1c, 0x13, 0x8d, 0xc0, 0xa8, 0x34, 0xde, 0xba, - 0x5a, 0xdd, 0xe7, 0xcb, 0x20, 0x73, 0xeb, 0x96, 0x56, 0x2a, 0x89, 0xd6, 0x2d, 0xad, 0x54, 0x90, - 0x33, 0x66, 0x63, 0xe3, 0x59, 0xbb, 0x72, 0xd5, 0x64, 0x1b, 0x1b, 0xb4, 0x76, 0xe3, 0x63, 0x83, - 0xd6, 0x2e, 0x32, 0xae, 0x8c, 0xb9, 0xeb, 0xfb, 0x7c, 0x91, 0x64, 0x65, 0xbe, 0x5e, 0xa9, 0xc4, - 0x99, 0xaf, 0x57, 0x2a, 0xc8, 0xb8, 0xf2, 0x59, 0x55, 0xf5, 0xf9, 0xa2, 0xca, 0x3c, 0xab, 0x16, - 0x13, 0xcc, 0x57, 0x17, 0x2b, 0xc8, 0xb8, 0x9a, 0x0d, 0x38, 0xad, 0x30, 0x48, 0x3b, 0xae, 0x6f, - 0xf3, 0xa1, 0xa1, 0x75, 0x32, 0x0f, 0x85, 0xaa, 0xeb, 0xd4, 0xed, 0xc6, 0x9a, 0xd5, 0x91, 0x9b, - 0xb6, 0xde, 0xed, 0x17, 0x15, 0x02, 0x43, 0x1a, 0xf2, 0x38, 0x0c, 0x6f, 0xd3, 0x3d, 0xb9, 0x7b, - 0x17, 0x25, 0xe9, 0xf0, 0x55, 0xba, 0x87, 0x0c, 0x6e, 0x7e, 0xd3, 0x80, 0x93, 0x29, 0xd3, 0x82, - 0x15, 0xeb, 0x7a, 0x2d, 0x29, 0x41, 0x17, 0xbb, 0x81, 0xd7, 0x90, 0xc1, 0xc9, 0x97, 0x0c, 0x98, - 0x8c, 0xcc, 0x93, 0x85, 0xae, 0x3c, 0x20, 0xb2, 0xef, 0x7c, 0x31, 0x5e, 0xe5, 0xb3, 0x52, 0xe2, - 0x64, 0x02, 0x81, 0x49, 0xa9, 0xe6, 0x3f, 0x71, 0x8d, 0x24, 0x06, 0x23, 0x16, 0x9c, 0xe8, 0xfa, - 0xd4, 0x63, 0xc7, 0x57, 0x85, 0x56, 0x3d, 0x1a, 0x48, 0xe5, 0xe4, 0xc9, 0x39, 0xa1, 0x3a, 0xb1, - 0x5a, 0xcc, 0x31, 0x45, 0x71, 0x6e, 0xe7, 0xd9, 0x39, 0x41, 0x71, 0x95, 0xee, 0x55, 0x68, 0x8b, - 0x32, 0x1e, 0x65, 0x72, 0xb0, 0x3f, 0x7b, 0xe2, 0x46, 0x8c, 0x01, 0x26, 0x18, 0x32, 0x11, 0x1d, - 0xcb, 0xf7, 0x77, 0x5d, 0xaf, 0x26, 0x45, 0x0c, 0x3d, 0xb0, 0x88, 0x8d, 0x18, 0x03, 0x4c, 0x30, - 0x34, 0xff, 0xda, 0x80, 0xb1, 0xb2, 0x55, 0xdd, 0x76, 0xeb, 0x75, 0xb6, 0xe7, 0xd7, 0xba, 0x9e, - 0x38, 0x19, 0xc5, 0x98, 0xe8, 0x3d, 0x7f, 0x49, 0xc2, 0x51, 0x53, 0x90, 0x4d, 0x18, 0x15, 0xdd, - 0x21, 0x2b, 0xf5, 0xf1, 0x48, 0xa5, 0xb4, 0xca, 0xc8, 0x87, 0x83, 0xa9, 0x8c, 0x73, 0x42, 0x65, - 0x9c, 0xbb, 0xe2, 0x04, 0xeb, 0x4c, 0x0d, 0xb3, 0x9d, 0x46, 0x19, 0x0e, 0xf6, 0x67, 0x47, 0x57, - 0x38, 0x0f, 0x94, 0xbc, 0xd8, 0xf1, 0xd0, 0xb6, 0xde, 0x51, 0xe2, 0xf8, 0x76, 0x5a, 0x08, 0x8f, - 0x87, 0xb5, 0x10, 0x85, 0x51, 0x3a, 0xf3, 0x4d, 0xc8, 0x2d, 0x5a, 0xd5, 0x26, 0x25, 0x37, 0x92, - 0x53, 0xb7, 0x78, 0xe9, 0x62, 0x5a, 0x6f, 0xe9, 0x69, 0x1c, 0xed, 0xb0, 0x89, 0x7e, 0x13, 0xdc, - 0xfc, 0xd0, 0x80, 0xb3, 0x8b, 0xad, 0xae, 0x1f, 0x50, 0xef, 0x96, 0x9c, 0x57, 0x9b, 0xb4, 0xdd, - 0x69, 0x59, 0x01, 0x25, 0xbf, 0x08, 0x79, 0xa6, 0xae, 0xd7, 0xac, 0xc0, 0x92, 0x12, 0xfb, 0x77, - 0x05, 0x9f, 0x99, 0x8c, 0x9a, 0xd5, 0x61, 0x7d, 0xeb, 0x0e, 0xad, 0x06, 0x6b, 0x34, 0xb0, 0xc2, - 0xb3, 0x3f, 0x84, 0xa1, 0xe6, 0x4a, 0xb6, 0x61, 0xc4, 0xef, 0xd0, 0xaa, 0xec, 0xe8, 0x2b, 0x99, - 0x26, 0x7f, 0xb2, 0xda, 0x95, 0x0e, 0xad, 0x86, 0x8a, 0x12, 0xfb, 0x42, 0x2e, 0xc4, 0xfc, 0x37, - 0x03, 0x1e, 0xeb, 0xd3, 0xd4, 0x6b, 0xb6, 0x1f, 0x90, 0x37, 0x7a, 0x9a, 0x3b, 0x77, 0xb8, 0xe6, - 0xb2, 0xd2, 0xbc, 0xb1, 0x7a, 0x56, 0x29, 0x48, 0xa4, 0xa9, 0x6f, 0x43, 0xce, 0x0e, 0x68, 0x5b, - 0xe9, 0xa8, 0xd7, 0x32, 0xb5, 0xb5, 0x4f, 0xf5, 0xcb, 0x13, 0xca, 0x0c, 0xb9, 0xc2, 0x44, 0xa0, - 0x90, 0x64, 0xfe, 0x9d, 0x01, 0x6c, 0xd0, 0x6b, 0xb6, 0xd4, 0x29, 0x46, 0x82, 0xbd, 0x8e, 0xd2, - 0x55, 0x1f, 0x57, 0x1d, 0xb4, 0xb9, 0xd7, 0x61, 0x76, 0xcb, 0x84, 0x26, 0x64, 0x00, 0xe4, 0xa4, - 0xe4, 0x4d, 0x18, 0xf5, 0x03, 0x2b, 0xe8, 0xfa, 0x72, 0x03, 0x5c, 0x91, 0x85, 0x46, 0x2b, 0x1c, - 0x7a, 0x77, 0x7f, 0xf6, 0x50, 0xc6, 0xde, 0x9c, 0xe6, 0x2d, 0xca, 0xa1, 0xe4, 0xca, 0xb4, 0xab, - 0x36, 0xf5, 0x7d, 0xab, 0x41, 0xe5, 0x7a, 0xd0, 0xda, 0xd5, 0x9a, 0x00, 0xa3, 0xc2, 0x9b, 0x9f, - 0x01, 0x58, 0x74, 0x9d, 0xc0, 0x76, 0xba, 0x74, 0xdd, 0x21, 0x4f, 0x40, 0x8e, 0x7a, 0x9e, 0xeb, - 0x49, 0xcd, 0x48, 0x37, 0x7f, 0x99, 0x01, 0x51, 0xe0, 0xc8, 0x53, 0x6c, 0x1d, 0xdb, 0x2d, 0x5a, - 0xe3, 0xb5, 0xcf, 0x97, 0x4f, 0xa8, 0xda, 0xaf, 0x70, 0x28, 0x4a, 0xac, 0x39, 0x07, 0x63, 0x8b, - 0xcc, 0xb6, 0xa3, 0x1e, 0xe3, 0x1b, 0xb5, 0xee, 0x26, 0x62, 0xd6, 0x9d, 0xb2, 0xe2, 0xbe, 0x3d, - 0x04, 0xe3, 0x8b, 0x9e, 0xeb, 0xa8, 0x51, 0x38, 0x86, 0x75, 0xd2, 0x88, 0xad, 0x93, 0x6c, 0x6a, - 0x7d, 0xb4, 0xca, 0xfd, 0xd6, 0x08, 0x71, 0xf5, 0x88, 0x0b, 0x7d, 0x6f, 0x75, 0x70, 0x51, 0x9c, - 0x5d, 0xd8, 0xf9, 0xf1, 0x29, 0x60, 0x7e, 0xd7, 0x80, 0xa9, 0x28, 0xf9, 0x31, 0xac, 0xc4, 0x7a, - 0x7c, 0x25, 0x2e, 0x0c, 0xdc, 0xc4, 0x3e, 0xcb, 0xef, 0xbf, 0x72, 0xf1, 0xa6, 0xb1, 0x6e, 0x66, - 0xd6, 0xda, 0xf8, 0x6e, 0x04, 0x20, 0xdb, 0xb7, 0x30, 0xd0, 0xd6, 0xc7, 0x87, 0xf3, 0xa3, 0xb2, - 0x12, 0xe3, 0x51, 0xe8, 0xdd, 0xc4, 0x37, 0xc6, 0x84, 0xb3, 0x83, 0xd1, 0xaf, 0x36, 0x69, 0xad, - 0xdb, 0xa2, 0x72, 0x89, 0xeb, 0x8e, 0xab, 0x48, 0x38, 0x6a, 0x0a, 0xf2, 0x06, 0x4c, 0x57, 0x5d, - 0xa7, 0xda, 0xf5, 0x3c, 0xea, 0x54, 0xf7, 0x36, 0xb8, 0x1b, 0x48, 0x2e, 0xdc, 0x39, 0x59, 0x6c, - 0x7a, 0x31, 0x49, 0x70, 0x37, 0x0d, 0x88, 0xbd, 0x8c, 0x84, 0xa9, 0xe5, 0x77, 0xa8, 0x53, 0xe3, - 0xd6, 0x40, 0x3e, 0x6a, 0x6a, 0x71, 0x30, 0x2a, 0x3c, 0xb9, 0x01, 0x67, 0xfd, 0x80, 0xa9, 0x32, - 0x4e, 0x63, 0x89, 0x5a, 0xb5, 0x96, 0xed, 0x30, 0xc5, 0xc2, 0x75, 0x6a, 0x3e, 0x57, 0xf0, 0x87, - 0xcb, 0x8f, 0x1d, 0xec, 0xcf, 0x9e, 0xad, 0xa4, 0x93, 0x60, 0xbf, 0xb2, 0xe4, 0x4d, 0x98, 0xf1, - 0xbb, 0xd5, 0x2a, 0xf5, 0xfd, 0x7a, 0xb7, 0xf5, 0x9a, 0xbb, 0xe5, 0x5f, 0xb6, 0x7d, 0xa6, 0x15, - 0x5d, 0xb3, 0xdb, 0x76, 0xc0, 0x95, 0xf8, 0x5c, 0xf9, 0xfc, 0xc1, 0xfe, 0xec, 0x4c, 0xa5, 0x2f, - 0x15, 0xde, 0x83, 0x03, 0x41, 0x38, 0x23, 0xb6, 0x9c, 0x1e, 0xde, 0x63, 0x9c, 0xf7, 0xcc, 0xc1, - 0xfe, 0xec, 0x99, 0x95, 0x54, 0x0a, 0xec, 0x53, 0x92, 0x8d, 0x60, 0x60, 0xb7, 0xe9, 0xe7, 0x5c, - 0x87, 0x72, 0x4d, 0x3d, 0x32, 0x82, 0x9b, 0x12, 0x8e, 0x9a, 0x82, 0xdc, 0x09, 0x27, 0x1f, 0x5b, - 0x14, 0x52, 0xfd, 0x7e, 0xf0, 0xdd, 0xea, 0xd4, 0xc1, 0xfe, 0xec, 0xd4, 0xad, 0x08, 0x27, 0xb6, - 0xb0, 0x30, 0xc6, 0xdb, 0xfc, 0xdb, 0x21, 0x20, 0xbd, 0x1b, 0x01, 0xb9, 0x0a, 0xa3, 0x56, 0x35, - 0x60, 0xb6, 0xbe, 0xf0, 0x0f, 0x3d, 0x91, 0xa6, 0xc4, 0x08, 0x51, 0x48, 0xeb, 0x94, 0xcd, 0x10, - 0x1a, 0xee, 0x1e, 0x0b, 0xbc, 0x28, 0x4a, 0x16, 0xc4, 0x85, 0xe9, 0x96, 0xe5, 0x07, 0x6a, 0xae, - 0xd6, 0x58, 0x93, 0xe5, 0x26, 0xf9, 0x7f, 0x0e, 0xd7, 0x28, 0x56, 0xa2, 0x7c, 0x9a, 0xcd, 0xdc, - 0x6b, 0x49, 0x46, 0xd8, 0xcb, 0x9b, 0x78, 0x00, 0x55, 0x75, 0x98, 0xb1, 0x3d, 0x32, 0xbb, 0x87, - 0x4b, 0x9f, 0x89, 0xe1, 0xd6, 0xaf, 0x41, 0x3e, 0x46, 0xa4, 0x98, 0x3f, 0x1a, 0x85, 0xb1, 0xa5, - 0x85, 0xd5, 0x4d, 0xcb, 0xdf, 0x3e, 0x84, 0xc3, 0x89, 0x4d, 0x08, 0xa9, 0x16, 0x24, 0x97, 0xb4, - 0x52, 0x17, 0x50, 0x53, 0x10, 0x17, 0x0a, 0x96, 0x72, 0xdf, 0xc9, 0x2d, 0xff, 0xe5, 0x8c, 0x26, - 0x88, 0xe4, 0x12, 0x75, 0x9f, 0x49, 0x10, 0x86, 0x32, 0x88, 0x0f, 0x45, 0x25, 0x1c, 0x69, 0x5d, - 0xda, 0xfd, 0x19, 0xdd, 0x9e, 0x21, 0x1f, 0x61, 0x87, 0x47, 0x00, 0x18, 0x95, 0x42, 0x3e, 0x01, - 0xe3, 0x35, 0xca, 0x76, 0x0e, 0xea, 0x54, 0x6d, 0xca, 0x36, 0x89, 0x61, 0xd6, 0x2f, 0x6c, 0xb3, - 0x5c, 0x8a, 0xc0, 0x31, 0x46, 0x45, 0xee, 0x40, 0x61, 0xd7, 0x0e, 0x9a, 0x7c, 0x4f, 0x2f, 0x8d, - 0xf2, 0xa1, 0xfe, 0x64, 0xa6, 0x8a, 0x32, 0x0e, 0x61, 0xb7, 0xdc, 0x52, 0x3c, 0x31, 0x64, 0xcf, - 0x0c, 0x53, 0xf6, 0xc1, 0x7d, 0x9c, 0x7c, 0x37, 0x28, 0xc4, 0x0b, 0x70, 0x04, 0x86, 0x34, 0xc4, - 0x87, 0x71, 0xf6, 0x51, 0xa1, 0x6f, 0x77, 0xd9, 0x0a, 0x91, 0x56, 0x7a, 0x36, 0xcf, 0xa7, 0x62, - 0x22, 0x7a, 0xe4, 0x56, 0x84, 0x2d, 0xc6, 0x84, 0xb0, 0xd9, 0xb7, 0xdb, 0xa4, 0x8e, 0x74, 0x85, - 0xe9, 0xd9, 0x77, 0xab, 0x49, 0x1d, 0xe4, 0x18, 0xe2, 0xf2, 0xf5, 0x21, 0xd5, 0x34, 0xee, 0x03, - 0xcb, 0xea, 0x8d, 0x0a, 0xb5, 0xbd, 0xf2, 0x09, 0xb9, 0x38, 0xe4, 0x37, 0x46, 0x44, 0x30, 0x25, - 0xcf, 0x75, 0x96, 0xdf, 0xb1, 0x83, 0x52, 0x91, 0x57, 0x4a, 0xef, 0x14, 0xeb, 0x1c, 0x8a, 0x12, - 0xcb, 0x4e, 0x17, 0x31, 0xb8, 0x7e, 0x69, 0x3c, 0xae, 0x6a, 0x8a, 0x19, 0xe0, 0xa3, 0xc2, 0x9b, - 0x7f, 0x65, 0x40, 0x91, 0xad, 0x37, 0xb5, 0x46, 0x9e, 0x82, 0xd1, 0xc0, 0xf2, 0x1a, 0xd2, 0x0e, - 0x8e, 0x88, 0xd8, 0xe4, 0x50, 0x94, 0x58, 0x62, 0x41, 0x2e, 0xb0, 0xfc, 0x6d, 0xa5, 0x57, 0x7c, - 0x3a, 0x53, 0xb3, 0xe5, 0x42, 0x0f, 0x55, 0x0a, 0xf6, 0xe5, 0xa3, 0xe0, 0x4c, 0x2e, 0x42, 0x9e, - 0x9d, 0x03, 0x2b, 0x96, 0x2f, 0x1c, 0x72, 0xf9, 0xf2, 0x38, 0x5b, 0xd8, 0x2b, 0x12, 0x86, 0x1a, - 0x6b, 0x3e, 0x0f, 0xb9, 0xe5, 0x1d, 0xea, 0xf0, 0x03, 0xc2, 0x97, 0x66, 0x60, 0xd2, 0xf6, 0x55, - 0xe6, 0x21, 0x6a, 0x0a, 0xf3, 0x0d, 0x38, 0xb1, 0xfc, 0x0e, 0xad, 0x76, 0x03, 0xd7, 0x13, 0xe6, - 0x22, 0x79, 0x0d, 0x88, 0x4f, 0xbd, 0x1d, 0xbb, 0x4a, 0x17, 0xaa, 0x55, 0xa6, 0x26, 0x5f, 0x0f, - 0xf7, 0x9f, 0x19, 0xc9, 0x89, 0x54, 0x7a, 0x28, 0x30, 0xa5, 0x94, 0xf9, 0xfb, 0x06, 0x14, 0x23, - 0x5e, 0x1b, 0xb6, 0xfb, 0x34, 0x16, 0x2b, 0xe5, 0x6e, 0x75, 0x5b, 0x3b, 0x19, 0x5e, 0xce, 0xea, - 0x0a, 0x12, 0x5c, 0xc2, 0x55, 0xa3, 0x41, 0x18, 0xca, 0xb8, 0x9f, 0x3b, 0xe7, 0x2f, 0x0c, 0x08, - 0xcb, 0xb1, 0x71, 0xdf, 0x0a, 0xab, 0x16, 0x19, 0x77, 0xc9, 0x57, 0x62, 0xc9, 0x7b, 0x06, 0x9c, - 0x8d, 0x37, 0x96, 0x9b, 0xde, 0x0f, 0xee, 0xd6, 0x98, 0x95, 0x02, 0xce, 0x56, 0xd2, 0xb9, 0x61, - 0x3f, 0x31, 0xe6, 0x4d, 0xc8, 0xad, 0x5a, 0xdd, 0x06, 0x3d, 0x94, 0x01, 0xc3, 0x66, 0x91, 0x47, - 0xad, 0x56, 0xa0, 0x0e, 0x4b, 0x39, 0x8b, 0x50, 0xc2, 0x50, 0x63, 0xcd, 0x3f, 0x19, 0x81, 0x62, - 0xc4, 0x79, 0xcb, 0x36, 0x00, 0x8f, 0x76, 0xdc, 0xe4, 0xf1, 0x83, 0xb4, 0xe3, 0x22, 0xc7, 0xb0, - 0xe9, 0xe6, 0xd1, 0x1d, 0xdb, 0xb7, 0x5d, 0x27, 0x79, 0xfc, 0xa0, 0x84, 0xa3, 0xa6, 0x20, 0xb3, - 0x90, 0xab, 0xd1, 0x4e, 0xd0, 0xe4, 0x93, 0x79, 0xa4, 0x5c, 0x60, 0x55, 0x5d, 0x62, 0x00, 0x14, - 0x70, 0x46, 0x50, 0xa7, 0x41, 0xb5, 0x59, 0x1a, 0xe1, 0x5b, 0x36, 0x27, 0x58, 0x61, 0x00, 0x14, - 0xf0, 0x14, 0x67, 0x55, 0xee, 0xe1, 0x3b, 0xab, 0x46, 0x8f, 0xd8, 0x59, 0x45, 0x3a, 0x70, 0xd2, - 0xf7, 0x9b, 0x1b, 0x9e, 0xbd, 0x63, 0x05, 0x34, 0x9c, 0x3d, 0x63, 0x0f, 0x22, 0xe7, 0xec, 0xc1, - 0xfe, 0xec, 0xc9, 0x4a, 0xe5, 0x72, 0x92, 0x0b, 0xa6, 0xb1, 0x26, 0x15, 0x38, 0x6d, 0x3b, 0x3e, - 0xad, 0x76, 0x3d, 0x7a, 0xa5, 0xe1, 0xb8, 0x1e, 0xbd, 0xec, 0xfa, 0x8c, 0x9d, 0x8c, 0x89, 0x28, - 0xf7, 0xc0, 0xe9, 0x2b, 0x69, 0x44, 0x98, 0x5e, 0xd6, 0xfc, 0xb6, 0x01, 0xe3, 0x51, 0x7f, 0x35, - 0xf1, 0x01, 0x9a, 0x4b, 0x2b, 0x15, 0xb1, 0x95, 0xc8, 0x15, 0xfe, 0x4a, 0x66, 0x37, 0xb8, 0x60, - 0x13, 0xea, 0x4b, 0x21, 0x0c, 0x23, 0x62, 0x0e, 0x11, 0x72, 0x7b, 0x02, 0x72, 0x75, 0xd7, 0xab, - 0x52, 0xb9, 0x87, 0xea, 0x55, 0xb2, 0xc2, 0x80, 0x28, 0x70, 0xe6, 0x87, 0x06, 0x44, 0x24, 0x90, - 0x5f, 0x81, 0x09, 0x26, 0xe3, 0xaa, 0xb7, 0x15, 0x6b, 0x4d, 0x39, 0x73, 0x6b, 0x34, 0xa7, 0xf2, - 0x69, 0x29, 0x7f, 0x22, 0x06, 0xc6, 0xb8, 0x3c, 0xf2, 0x7f, 0xa1, 0x60, 0xd5, 0x6a, 0x1e, 0xf5, - 0x7d, 0x2a, 0x8e, 0x98, 0x82, 0x70, 0xeb, 0x2d, 0x28, 0x20, 0x86, 0x78, 0xb6, 0x0c, 0x9b, 0xb5, - 0xba, 0xcf, 0x66, 0xb6, 0xb4, 0xd0, 0xf4, 0x32, 0x64, 0x42, 0x18, 0x1c, 0x35, 0x85, 0xf9, 0xd5, - 0x11, 0x88, 0xcb, 0x26, 0x35, 0x98, 0xdc, 0xf6, 0xb6, 0x16, 0xb9, 0xeb, 0x31, 0x8b, 0x13, 0xf8, - 0xe4, 0xc1, 0xfe, 0xec, 0xe4, 0xd5, 0x38, 0x07, 0x4c, 0xb2, 0x94, 0x52, 0xae, 0xd2, 0xbd, 0xc0, - 0xda, 0xca, 0xb2, 0x61, 0x2a, 0x29, 0x51, 0x0e, 0x98, 0x64, 0x49, 0x9e, 0x87, 0xe2, 0xb6, 0xb7, - 0xa5, 0x16, 0x79, 0xd2, 0xf3, 0x7a, 0x35, 0x44, 0x61, 0x94, 0x8e, 0x75, 0xe1, 0xb6, 0xb7, 0xc5, - 0x36, 0x45, 0x15, 0x7d, 0xd5, 0x5d, 0x78, 0x55, 0xc2, 0x51, 0x53, 0x90, 0x0e, 0x90, 0x6d, 0xd5, - 0x7b, 0xda, 0xd1, 0x2a, 0xf7, 0xa2, 0xc3, 0xfb, 0x69, 0xcf, 0xb0, 0xc3, 0xf4, 0x6a, 0x0f, 0x1f, - 0x4c, 0xe1, 0x4d, 0x3e, 0x03, 0x67, 0xb7, 0xbd, 0x2d, 0x79, 0x54, 0x6c, 0x78, 0xb6, 0x53, 0xb5, - 0x3b, 0xb1, 0xb0, 0xab, 0x3e, 0x4e, 0xae, 0xa6, 0x93, 0x61, 0xbf, 0xf2, 0xe6, 0xd7, 0xd8, 0x3a, - 0x8e, 0x44, 0xd5, 0xee, 0x17, 0xcf, 0xa8, 0xc3, 0x58, 0x93, 0x5a, 0x35, 0xea, 0x29, 0xdd, 0xe7, - 0xc5, 0x6c, 0xab, 0x82, 0xf3, 0x08, 0x35, 0x33, 0xf1, 0xed, 0xa3, 0x62, 0x6e, 0xae, 0xc3, 0xa8, - 0x80, 0x1d, 0xc2, 0x0e, 0xd2, 0x27, 0xe1, 0xd0, 0x3d, 0x5c, 0x79, 0xef, 0x1b, 0x50, 0xe0, 0xe6, - 0x74, 0x83, 0xe9, 0xd4, 0xba, 0xc8, 0xf0, 0x3d, 0x0e, 0xcf, 0x3a, 0x8c, 0x89, 0x73, 0xdf, 0xe7, - 0x67, 0x52, 0xd6, 0xb6, 0x8a, 0x74, 0x92, 0xb0, 0xad, 0x42, 0xa7, 0xf0, 0x51, 0x31, 0x37, 0xff, - 0xd5, 0x80, 0xd1, 0x2b, 0x4e, 0xa7, 0xfb, 0x33, 0x92, 0x56, 0xb1, 0x06, 0x23, 0xcc, 0x12, 0x8a, - 0xe7, 0xd7, 0x8c, 0x97, 0x9f, 0x8c, 0xe6, 0xd6, 0x94, 0xe2, 0xb9, 0x35, 0x68, 0xed, 0x2a, 0x37, - 0xb1, 0x28, 0xf3, 0xa9, 0xfc, 0xfb, 0x7f, 0x38, 0xfb, 0xc8, 0x7b, 0xdf, 0xbb, 0xf0, 0x88, 0xd9, - 0x82, 0x91, 0x6b, 0xb6, 0xb3, 0x7d, 0xb8, 0x79, 0xe2, 0x57, 0xdd, 0x4e, 0xcf, 0x3c, 0xa9, 0x30, - 0x20, 0x0a, 0x9c, 0x9a, 0xff, 0xc3, 0xe9, 0xf3, 0xdf, 0xfc, 0x82, 0x01, 0xd3, 0x6b, 0xb4, 0xed, - 0xda, 0x9f, 0xb3, 0x42, 0x2f, 0x37, 0x2b, 0xd4, 0xb4, 0x03, 0xe9, 0xa2, 0xd6, 0x85, 0x2e, 0xdb, - 0x01, 0x32, 0xf8, 0x7d, 0x74, 0x51, 0x1e, 0xaa, 0x64, 0x5b, 0xe5, 0xf5, 0x70, 0xcf, 0x0a, 0x43, - 0x95, 0x0a, 0x81, 0x21, 0x8d, 0xf9, 0xa7, 0x06, 0x8c, 0x89, 0x4a, 0x50, 0xc5, 0xdb, 0xe8, 0xc3, - 0xfb, 0x36, 0xe4, 0x78, 0x39, 0xb9, 0xdb, 0x7e, 0x2a, 0x9b, 0x81, 0xc6, 0x38, 0x08, 0x8d, 0x8c, - 0xff, 0x44, 0xc1, 0x93, 0xa9, 0xcd, 0x6d, 0xeb, 0x9d, 0x05, 0xed, 0xd3, 0xd7, 0x6a, 0xf3, 0x1a, - 0x87, 0xa2, 0xc4, 0x9a, 0xef, 0x0d, 0x43, 0x5e, 0xb9, 0x8e, 0xc8, 0x17, 0x0d, 0x28, 0x5a, 0x8e, - 0xe3, 0x06, 0x96, 0xf0, 0xac, 0x88, 0x49, 0x7e, 0x3d, 0x53, 0xc5, 0x14, 0xd3, 0xb9, 0x85, 0x90, - 0xe1, 0xb2, 0x13, 0x78, 0x7b, 0xe1, 0xa6, 0x1f, 0xc1, 0x60, 0x54, 0x2e, 0x79, 0x1b, 0x46, 0x5b, - 0xd6, 0x16, 0x6d, 0xa9, 0x39, 0x7f, 0x65, 0xb0, 0x1a, 0x5c, 0xe3, 0xbc, 0x84, 0x70, 0xdd, 0x0f, - 0x02, 0x88, 0x52, 0xd0, 0xcc, 0xcb, 0x30, 0x95, 0xac, 0x28, 0x99, 0x8a, 0x8c, 0x9f, 0x18, 0xb2, - 0x53, 0xb1, 0xed, 0x4c, 0x4d, 0xf8, 0xa1, 0x17, 0x8c, 0x99, 0x4f, 0x42, 0x31, 0x22, 0xe6, 0x41, + 0x08, 0x8a, 0xf6, 0xa5, 0xe8, 0x43, 0x5b, 0xf4, 0xa1, 0x68, 0x5f, 0x0a, 0xe4, 0xa1, 0x68, 0x8b, + 0x34, 0x40, 0xd1, 0xf4, 0xa9, 0x79, 0x08, 0x98, 0x98, 0x7d, 0x71, 0xd0, 0xa6, 0x79, 0x2a, 0x5a, + 0x08, 0x05, 0x5a, 0xdc, 0xdf, 0xf9, 0xd9, 0x59, 0x89, 0x9c, 0xa5, 0x84, 0xa0, 0xc9, 0xdb, 0xce, + 0x39, 0xe7, 0x9e, 0x73, 0xff, 0xef, 0xf9, 0xbb, 0x77, 0x61, 0xb1, 0x61, 0x07, 0xcd, 0xee, 0xd6, + 0x5c, 0xd5, 0x6d, 0xcf, 0x5b, 0x5e, 0xc3, 0xed, 0x78, 0xee, 0x1d, 0xfe, 0x63, 0xbe, 0xb3, 0xdd, + 0x98, 0xb7, 0x3a, 0xb6, 0x3f, 0xbf, 0xeb, 0x7a, 0xdb, 0xf5, 0x96, 0xbb, 0x3b, 0xbf, 0xf3, 0xac, + 0xd5, 0xea, 0x34, 0xad, 0x67, 0xe7, 0x1b, 0xd4, 0xa1, 0x9e, 0x15, 0xd0, 0xda, 0x5c, 0xc7, 0x73, + 0x03, 0x97, 0x3c, 0x17, 0x32, 0x99, 0x53, 0x4c, 0xf8, 0x8f, 0xb9, 0xce, 0x76, 0x63, 0x8e, 0x31, + 0x99, 0x53, 0x4c, 0xe6, 0x14, 0x93, 0x99, 0x8f, 0x45, 0x24, 0x37, 0x5c, 0x26, 0x90, 0xf1, 0xda, + 0xea, 0xd6, 0xf9, 0x17, 0xff, 0xe0, 0xbf, 0x84, 0x8c, 0x19, 0x73, 0xfb, 0x05, 0x7f, 0xce, 0x76, + 0x59, 0x95, 0xe6, 0xab, 0xae, 0x47, 0xe7, 0x77, 0x7a, 0xea, 0x31, 0xf3, 0x74, 0x84, 0xa6, 0xe3, + 0xb6, 0xec, 0xea, 0xde, 0xfc, 0xce, 0xb3, 0x5b, 0x34, 0xe8, 0xad, 0xf2, 0xcc, 0x27, 0x42, 0xd2, + 0xb6, 0x55, 0x6d, 0xda, 0x0e, 0xf5, 0xf6, 0xc2, 0x26, 0xb7, 0x69, 0x60, 0xa5, 0x09, 0x98, 0xef, + 0x57, 0xca, 0xeb, 0x3a, 0x81, 0xdd, 0xa6, 0x3d, 0x05, 0xfe, 0xdf, 0xfd, 0x0a, 0xf8, 0xd5, 0x26, + 0x6d, 0x5b, 0x3d, 0xe5, 0x9e, 0xeb, 0x57, 0xae, 0x1b, 0xd8, 0xad, 0x79, 0xdb, 0x09, 0xfc, 0xc0, + 0x4b, 0x16, 0x32, 0x97, 0x61, 0x74, 0xa1, 0xed, 0x76, 0x9d, 0x80, 0xbc, 0x08, 0xb9, 0x1d, 0xab, + 0xd5, 0xa5, 0x25, 0xe3, 0x82, 0x71, 0xb1, 0x50, 0x7e, 0xf2, 0x5b, 0xfb, 0xb3, 0x8f, 0x1c, 0xec, + 0xcf, 0xe6, 0x6e, 0x32, 0xe0, 0xdd, 0xfd, 0xd9, 0x53, 0xd4, 0xa9, 0xba, 0x35, 0xdb, 0x69, 0xcc, + 0xdf, 0xf1, 0x5d, 0x67, 0xee, 0x7a, 0xb7, 0xbd, 0x45, 0x3d, 0x14, 0x65, 0xcc, 0x7f, 0x30, 0x60, + 0x72, 0xc1, 0xab, 0x36, 0xed, 0x1d, 0x5a, 0x09, 0x18, 0xff, 0xc6, 0x1e, 0xb9, 0x0d, 0xc3, 0x81, + 0xe5, 0x71, 0x76, 0xc5, 0x4b, 0xaf, 0xce, 0x65, 0x18, 0xef, 0xb9, 0x4d, 0xcb, 0x53, 0xec, 0xca, + 0x63, 0x07, 0xfb, 0xb3, 0xc3, 0x9b, 0x96, 0x87, 0x8c, 0x2b, 0x79, 0x0b, 0x46, 0x1c, 0xd7, 0xa1, + 0xa5, 0x21, 0xce, 0x7d, 0x21, 0x13, 0xf7, 0xeb, 0xae, 0xa3, 0x6b, 0x5b, 0xce, 0x1f, 0xec, 0xcf, + 0x8e, 0x30, 0x08, 0x72, 0xc6, 0xe6, 0x8f, 0x0d, 0x28, 0x2c, 0x78, 0x8d, 0x6e, 0x9b, 0x3a, 0x81, + 0x4f, 0x3c, 0x80, 0x8e, 0xe5, 0x59, 0x6d, 0x1a, 0x50, 0xcf, 0x2f, 0x19, 0x17, 0x86, 0x2f, 0x16, + 0x2f, 0xbd, 0x9c, 0x49, 0xe8, 0x86, 0x62, 0x53, 0x26, 0xb2, 0x87, 0x41, 0x83, 0x7c, 0x8c, 0x48, + 0x21, 0x0e, 0x14, 0x2c, 0x2f, 0xb0, 0xeb, 0x56, 0x35, 0xf0, 0x4b, 0x43, 0x5c, 0xe4, 0x4b, 0x99, + 0x44, 0x2e, 0x48, 0x2e, 0xe5, 0x69, 0x29, 0xb1, 0xa0, 0x20, 0x3e, 0x86, 0x22, 0xcc, 0xbf, 0x1f, + 0x81, 0xbc, 0x42, 0x90, 0x0b, 0x30, 0xe2, 0x58, 0x6d, 0x35, 0x19, 0xc6, 0x65, 0xc1, 0x91, 0xeb, + 0x56, 0x9b, 0x75, 0x90, 0xd5, 0xa6, 0x8c, 0xa2, 0x63, 0x05, 0x4d, 0x3e, 0x02, 0x11, 0x8a, 0x0d, + 0x2b, 0x68, 0x22, 0xc7, 0x90, 0x73, 0x30, 0xd2, 0x76, 0x6b, 0xb4, 0x34, 0x7c, 0xc1, 0xb8, 0x98, + 0x13, 0x1d, 0xbc, 0xe6, 0xd6, 0x28, 0x72, 0x28, 0x2b, 0x5f, 0xf7, 0xdc, 0x76, 0x69, 0x24, 0x5e, + 0x7e, 0xc5, 0x73, 0xdb, 0xc8, 0x31, 0xe4, 0x2b, 0x06, 0x4c, 0xa9, 0xea, 0x5d, 0x73, 0xab, 0x56, + 0x60, 0xbb, 0x4e, 0x29, 0xc7, 0x07, 0x7c, 0x79, 0xa0, 0x8e, 0x50, 0xcc, 0xca, 0x25, 0x29, 0x75, + 0x2a, 0x89, 0xc1, 0x1e, 0xc1, 0xe4, 0x12, 0x40, 0xa3, 0xe5, 0x6e, 0x59, 0x2d, 0xd6, 0x07, 0xa5, + 0x51, 0x5e, 0x6b, 0x3d, 0x84, 0xab, 0x1a, 0x83, 0x11, 0x2a, 0xb2, 0x0d, 0x63, 0x96, 0x58, 0x15, + 0xa5, 0x31, 0x5e, 0xef, 0xa5, 0x8c, 0xf5, 0x8e, 0xad, 0xac, 0x72, 0xf1, 0x60, 0x7f, 0x76, 0x4c, + 0x02, 0x51, 0x49, 0x20, 0xcf, 0x40, 0xde, 0xed, 0xb0, 0xaa, 0x5a, 0xad, 0x52, 0xfe, 0x82, 0x71, + 0x31, 0x5f, 0x9e, 0x92, 0xd5, 0xcb, 0xaf, 0x4b, 0x38, 0x6a, 0x0a, 0xf2, 0x34, 0x8c, 0xf9, 0xdd, + 0x2d, 0x36, 0x5a, 0xa5, 0x02, 0x6f, 0xcb, 0xa4, 0x24, 0x1e, 0xab, 0x08, 0x30, 0x2a, 0x3c, 0x79, + 0x1e, 0x8a, 0x1e, 0xad, 0x76, 0x3d, 0x9f, 0xb2, 0xe1, 0x2b, 0x01, 0xe7, 0x7d, 0x52, 0x92, 0x17, + 0x31, 0x44, 0x61, 0x94, 0xce, 0xfc, 0xc7, 0x51, 0xe8, 0xe9, 0x57, 0xf2, 0x2c, 0x14, 0x65, 0x7d, + 0xaf, 0xb9, 0x0d, 0x9f, 0x4f, 0xaf, 0x7c, 0x79, 0x92, 0xf1, 0x59, 0x08, 0xc1, 0x18, 0xa5, 0x21, + 0xb7, 0x60, 0xc8, 0x7f, 0x4e, 0x2e, 0xf4, 0x57, 0x32, 0xf5, 0x5f, 0xe5, 0x39, 0xbd, 0x04, 0x46, + 0x0f, 0xf6, 0x67, 0x87, 0x2a, 0xcf, 0xe1, 0x90, 0xff, 0x1c, 0xdb, 0xa0, 0x1a, 0x76, 0xc0, 0xa7, + 0x67, 0xd6, 0x0d, 0x6a, 0xd5, 0x0e, 0x34, 0x6b, 0xbe, 0x41, 0xad, 0xda, 0x01, 0x32, 0xae, 0x6c, + 0x83, 0x6a, 0x06, 0x41, 0x87, 0x4f, 0xef, 0xac, 0x1b, 0xd4, 0xe5, 0xcd, 0xcd, 0x0d, 0xcd, 0x9e, + 0xaf, 0x1f, 0x06, 0x41, 0xce, 0x98, 0xbc, 0xcb, 0x7a, 0x52, 0xe0, 0x5c, 0x6f, 0x4f, 0xae, 0x8b, + 0xcb, 0x03, 0xad, 0x0b, 0xd7, 0xdb, 0xd3, 0xe2, 0xe4, 0x98, 0x68, 0x04, 0x46, 0xa5, 0xf1, 0xd6, + 0xd5, 0xea, 0x3e, 0x5f, 0x06, 0x99, 0x5b, 0xb7, 0xb4, 0x52, 0x49, 0xb4, 0x6e, 0x69, 0xa5, 0x82, + 0x9c, 0x31, 0x1b, 0x1b, 0xcf, 0xda, 0x95, 0xab, 0x26, 0xdb, 0xd8, 0xa0, 0xb5, 0x1b, 0x1f, 0x1b, + 0xb4, 0x76, 0x91, 0x71, 0x65, 0xcc, 0x5d, 0xdf, 0xe7, 0x8b, 0x24, 0x2b, 0xf3, 0xf5, 0x4a, 0x25, + 0xce, 0x7c, 0xbd, 0x52, 0x41, 0xc6, 0x95, 0xcf, 0xaa, 0xaa, 0xcf, 0x17, 0x55, 0xe6, 0x59, 0xb5, + 0x98, 0x60, 0xbe, 0xba, 0x58, 0x41, 0xc6, 0xd5, 0x6c, 0xc0, 0x69, 0x85, 0x41, 0xda, 0x71, 0x7d, + 0x9b, 0x0f, 0x0d, 0xad, 0x93, 0x79, 0x28, 0x54, 0x5d, 0xa7, 0x6e, 0x37, 0xd6, 0xac, 0x8e, 0xdc, + 0xb4, 0xf5, 0x6e, 0xbf, 0xa8, 0x10, 0x18, 0xd2, 0x90, 0xc7, 0x61, 0x78, 0x9b, 0xee, 0xc9, 0xdd, + 0xbb, 0x28, 0x49, 0x87, 0xaf, 0xd2, 0x3d, 0x64, 0x70, 0xf3, 0x9b, 0x06, 0x9c, 0x4c, 0x99, 0x16, + 0xac, 0x58, 0xd7, 0x6b, 0x49, 0x09, 0xba, 0xd8, 0x0d, 0xbc, 0x86, 0x0c, 0x4e, 0xbe, 0x64, 0xc0, + 0x64, 0x64, 0x9e, 0x2c, 0x74, 0xe5, 0x01, 0x91, 0x7d, 0xe7, 0x8b, 0xf1, 0x2a, 0x9f, 0x95, 0x12, + 0x27, 0x13, 0x08, 0x4c, 0x4a, 0x35, 0xff, 0x89, 0x6b, 0x24, 0x31, 0x18, 0xb1, 0xe0, 0x44, 0xd7, + 0xa7, 0x1e, 0x3b, 0xbe, 0x2a, 0xb4, 0xea, 0xd1, 0x40, 0x2a, 0x27, 0x4f, 0xce, 0x09, 0xd5, 0x89, + 0xd5, 0x62, 0x8e, 0x29, 0x8a, 0x73, 0x3b, 0xcf, 0xce, 0x09, 0x8a, 0xab, 0x74, 0xaf, 0x42, 0x5b, + 0x94, 0xf1, 0x28, 0x93, 0x83, 0xfd, 0xd9, 0x13, 0x37, 0x62, 0x0c, 0x30, 0xc1, 0x90, 0x89, 0xe8, + 0x58, 0xbe, 0xbf, 0xeb, 0x7a, 0x35, 0x29, 0x62, 0xe8, 0xc8, 0x22, 0x36, 0x62, 0x0c, 0x30, 0xc1, + 0xd0, 0xfc, 0x6b, 0x03, 0xc6, 0xca, 0x56, 0x75, 0xdb, 0xad, 0xd7, 0xd9, 0x9e, 0x5f, 0xeb, 0x7a, + 0xe2, 0x64, 0x14, 0x63, 0xa2, 0xf7, 0xfc, 0x25, 0x09, 0x47, 0x4d, 0x41, 0x36, 0x61, 0x54, 0x74, + 0x87, 0xac, 0xd4, 0xc7, 0x23, 0x95, 0xd2, 0x2a, 0x23, 0x1f, 0x0e, 0xa6, 0x32, 0xce, 0x09, 0x95, + 0x71, 0xee, 0x8a, 0x13, 0xac, 0x33, 0x35, 0xcc, 0x76, 0x1a, 0x65, 0x38, 0xd8, 0x9f, 0x1d, 0x5d, + 0xe1, 0x3c, 0x50, 0xf2, 0x62, 0xc7, 0x43, 0xdb, 0x7a, 0x47, 0x89, 0xe3, 0xdb, 0x69, 0x21, 0x3c, + 0x1e, 0xd6, 0x42, 0x14, 0x46, 0xe9, 0xcc, 0x37, 0x21, 0xb7, 0x68, 0x55, 0x9b, 0x94, 0xdc, 0x48, + 0x4e, 0xdd, 0xe2, 0xa5, 0x8b, 0x69, 0xbd, 0xa5, 0xa7, 0x71, 0xb4, 0xc3, 0x26, 0xfa, 0x4d, 0x70, + 0xf3, 0x43, 0x03, 0xce, 0x2e, 0xb6, 0xba, 0x7e, 0x40, 0xbd, 0x5b, 0x72, 0x5e, 0x6d, 0xd2, 0x76, + 0xa7, 0x65, 0x05, 0x94, 0xfc, 0x3c, 0xe4, 0x99, 0xba, 0x5e, 0xb3, 0x02, 0x4b, 0x4a, 0xec, 0xdf, + 0x15, 0x7c, 0x66, 0x32, 0x6a, 0x56, 0x87, 0xf5, 0xad, 0x3b, 0xb4, 0x1a, 0xac, 0xd1, 0xc0, 0x0a, + 0xcf, 0xfe, 0x10, 0x86, 0x9a, 0x2b, 0xd9, 0x86, 0x11, 0xbf, 0x43, 0xab, 0xb2, 0xa3, 0xaf, 0x64, + 0x9a, 0xfc, 0xc9, 0x6a, 0x57, 0x3a, 0xb4, 0x1a, 0x2a, 0x4a, 0xec, 0x0b, 0xb9, 0x10, 0xf3, 0xdf, + 0x0c, 0x78, 0xac, 0x4f, 0x53, 0xaf, 0xd9, 0x7e, 0x40, 0xde, 0xe8, 0x69, 0xee, 0xdc, 0xe1, 0x9a, + 0xcb, 0x4a, 0xf3, 0xc6, 0xea, 0x59, 0xa5, 0x20, 0x91, 0xa6, 0xbe, 0x0d, 0x39, 0x3b, 0xa0, 0x6d, + 0xa5, 0xa3, 0x5e, 0xcb, 0xd4, 0xd6, 0x3e, 0xd5, 0x2f, 0x4f, 0x28, 0x33, 0xe4, 0x0a, 0x13, 0x81, + 0x42, 0x92, 0xf9, 0x77, 0x06, 0xb0, 0x41, 0xaf, 0xd9, 0x52, 0xa7, 0x18, 0x09, 0xf6, 0x3a, 0x4a, + 0x57, 0x7d, 0x5c, 0x75, 0xd0, 0xe6, 0x5e, 0x87, 0xd9, 0x2d, 0x13, 0x9a, 0x90, 0x01, 0x90, 0x93, + 0x92, 0x37, 0x61, 0xd4, 0x0f, 0xac, 0xa0, 0xeb, 0xcb, 0x0d, 0x70, 0x45, 0x16, 0x1a, 0xad, 0x70, + 0xe8, 0xdd, 0xfd, 0xd9, 0x43, 0x19, 0x7b, 0x73, 0x9a, 0xb7, 0x28, 0x87, 0x92, 0x2b, 0xd3, 0xae, + 0xda, 0xd4, 0xf7, 0xad, 0x06, 0x95, 0xeb, 0x41, 0x6b, 0x57, 0x6b, 0x02, 0x8c, 0x0a, 0x6f, 0x7e, + 0x06, 0x60, 0xd1, 0x75, 0x02, 0xdb, 0xe9, 0xd2, 0x75, 0x87, 0x3c, 0x01, 0x39, 0xea, 0x79, 0xae, + 0x27, 0x35, 0x23, 0xdd, 0xfc, 0x65, 0x06, 0x44, 0x81, 0x23, 0x4f, 0xb1, 0x75, 0x6c, 0xb7, 0x68, + 0x8d, 0xd7, 0x3e, 0x5f, 0x3e, 0xa1, 0x6a, 0xbf, 0xc2, 0xa1, 0x28, 0xb1, 0xe6, 0x1c, 0x8c, 0x2d, + 0x32, 0xdb, 0x8e, 0x7a, 0x8c, 0x6f, 0xd4, 0xba, 0x9b, 0x88, 0x59, 0x77, 0xca, 0x8a, 0xfb, 0xf6, + 0x10, 0x8c, 0x2f, 0x7a, 0xae, 0xa3, 0x46, 0xe1, 0x21, 0xac, 0x93, 0x46, 0x6c, 0x9d, 0x64, 0x53, + 0xeb, 0xa3, 0x55, 0xee, 0xb7, 0x46, 0x88, 0xab, 0x47, 0x5c, 0xe8, 0x7b, 0xab, 0x83, 0x8b, 0xe2, + 0xec, 0xc2, 0xce, 0x8f, 0x4f, 0x01, 0xf3, 0xbb, 0x06, 0x4c, 0x45, 0xc9, 0x1f, 0xc2, 0x4a, 0xac, + 0xc7, 0x57, 0xe2, 0xc2, 0xc0, 0x4d, 0xec, 0xb3, 0xfc, 0xfe, 0x2b, 0x17, 0x6f, 0x1a, 0xeb, 0x66, + 0x66, 0xad, 0x8d, 0xef, 0x46, 0x00, 0xb2, 0x7d, 0x0b, 0x03, 0x6d, 0x7d, 0x7c, 0x38, 0x3f, 0x2a, + 0x2b, 0x31, 0x1e, 0x85, 0xde, 0x4d, 0x7c, 0x63, 0x4c, 0x38, 0x3b, 0x18, 0xfd, 0x6a, 0x93, 0xd6, + 0xba, 0x2d, 0x2a, 0x97, 0xb8, 0xee, 0xb8, 0x8a, 0x84, 0xa3, 0xa6, 0x20, 0x6f, 0xc0, 0x74, 0xd5, + 0x75, 0xaa, 0x5d, 0xcf, 0xa3, 0x4e, 0x75, 0x6f, 0x83, 0xbb, 0x81, 0xe4, 0xc2, 0x9d, 0x93, 0xc5, + 0xa6, 0x17, 0x93, 0x04, 0x77, 0xd3, 0x80, 0xd8, 0xcb, 0x48, 0x98, 0x5a, 0x7e, 0x87, 0x3a, 0x35, + 0x6e, 0x0d, 0xe4, 0xa3, 0xa6, 0x16, 0x07, 0xa3, 0xc2, 0x93, 0x1b, 0x70, 0xd6, 0x0f, 0x98, 0x2a, + 0xe3, 0x34, 0x96, 0xa8, 0x55, 0x6b, 0xd9, 0x0e, 0x53, 0x2c, 0x5c, 0xa7, 0xe6, 0x73, 0x05, 0x7f, + 0xb8, 0xfc, 0xd8, 0xc1, 0xfe, 0xec, 0xd9, 0x4a, 0x3a, 0x09, 0xf6, 0x2b, 0x4b, 0xde, 0x84, 0x19, + 0xbf, 0x5b, 0xad, 0x52, 0xdf, 0xaf, 0x77, 0x5b, 0xaf, 0xb9, 0x5b, 0xfe, 0x65, 0xdb, 0x67, 0x5a, + 0xd1, 0x35, 0xbb, 0x6d, 0x07, 0x5c, 0x89, 0xcf, 0x95, 0xcf, 0x1f, 0xec, 0xcf, 0xce, 0x54, 0xfa, + 0x52, 0xe1, 0x3d, 0x38, 0x10, 0x84, 0x33, 0x62, 0xcb, 0xe9, 0xe1, 0x3d, 0xc6, 0x79, 0xcf, 0x1c, + 0xec, 0xcf, 0x9e, 0x59, 0x49, 0xa5, 0xc0, 0x3e, 0x25, 0xd9, 0x08, 0x06, 0x76, 0x9b, 0x7e, 0xce, + 0x75, 0x28, 0xd7, 0xd4, 0x23, 0x23, 0xb8, 0x29, 0xe1, 0xa8, 0x29, 0xc8, 0x9d, 0x70, 0xf2, 0xb1, + 0x45, 0x21, 0xd5, 0xef, 0xa3, 0xef, 0x56, 0xa7, 0x0e, 0xf6, 0x67, 0xa7, 0x6e, 0x45, 0x38, 0xb1, + 0x85, 0x85, 0x31, 0xde, 0xe6, 0xdf, 0x0e, 0x01, 0xe9, 0xdd, 0x08, 0xc8, 0x55, 0x18, 0xb5, 0xaa, + 0x01, 0xb3, 0xf5, 0x85, 0x7f, 0xe8, 0x89, 0x34, 0x25, 0x46, 0x88, 0x42, 0x5a, 0xa7, 0x6c, 0x86, + 0xd0, 0x70, 0xf7, 0x58, 0xe0, 0x45, 0x51, 0xb2, 0x20, 0x2e, 0x4c, 0xb7, 0x2c, 0x3f, 0x50, 0x73, + 0xb5, 0xc6, 0x9a, 0x2c, 0x37, 0xc9, 0xff, 0x73, 0xb8, 0x46, 0xb1, 0x12, 0xe5, 0xd3, 0x6c, 0xe6, + 0x5e, 0x4b, 0x32, 0xc2, 0x5e, 0xde, 0xc4, 0x03, 0xa8, 0xaa, 0xc3, 0x8c, 0xed, 0x91, 0xd9, 0x3d, + 0x5c, 0xfa, 0x4c, 0x0c, 0xb7, 0x7e, 0x0d, 0xf2, 0x31, 0x22, 0xc5, 0xfc, 0xd1, 0x28, 0x8c, 0x2d, + 0x2d, 0xac, 0x6e, 0x5a, 0xfe, 0xf6, 0x21, 0x1c, 0x4e, 0x6c, 0x42, 0x48, 0xb5, 0x20, 0xb9, 0xa4, + 0x95, 0xba, 0x80, 0x9a, 0x82, 0xb8, 0x50, 0xb0, 0x94, 0xfb, 0x4e, 0x6e, 0xf9, 0x2f, 0x67, 0x34, + 0x41, 0x24, 0x97, 0xa8, 0xfb, 0x4c, 0x82, 0x30, 0x94, 0x41, 0x7c, 0x28, 0x2a, 0xe1, 0x48, 0xeb, + 0xd2, 0xee, 0xcf, 0xe8, 0xf6, 0x0c, 0xf9, 0x08, 0x3b, 0x3c, 0x02, 0xc0, 0xa8, 0x14, 0xf2, 0x09, + 0x18, 0xaf, 0x51, 0xb6, 0x73, 0x50, 0xa7, 0x6a, 0x53, 0xb6, 0x49, 0x0c, 0xb3, 0x7e, 0x61, 0x9b, + 0xe5, 0x52, 0x04, 0x8e, 0x31, 0x2a, 0x72, 0x07, 0x0a, 0xbb, 0x76, 0xd0, 0xe4, 0x7b, 0x7a, 0x69, + 0x94, 0x0f, 0xf5, 0x27, 0x33, 0x55, 0x94, 0x71, 0x08, 0xbb, 0xe5, 0x96, 0xe2, 0x89, 0x21, 0x7b, + 0x66, 0x98, 0xb2, 0x0f, 0xee, 0xe3, 0xe4, 0xbb, 0x41, 0x21, 0x5e, 0x80, 0x23, 0x30, 0xa4, 0x21, + 0x3e, 0x8c, 0xb3, 0x8f, 0x0a, 0x7d, 0xbb, 0xcb, 0x56, 0x88, 0xb4, 0xd2, 0xb3, 0x79, 0x3e, 0x15, + 0x13, 0xd1, 0x23, 0xb7, 0x22, 0x6c, 0x31, 0x26, 0x84, 0xcd, 0xbe, 0xdd, 0x26, 0x75, 0xa4, 0x2b, + 0x4c, 0xcf, 0xbe, 0x5b, 0x4d, 0xea, 0x20, 0xc7, 0x10, 0x97, 0xaf, 0x0f, 0xa9, 0xa6, 0x71, 0x1f, + 0x58, 0x56, 0x6f, 0x54, 0xa8, 0xed, 0x95, 0x4f, 0xc8, 0xc5, 0x21, 0xbf, 0x31, 0x22, 0x82, 0x29, + 0x79, 0xae, 0xb3, 0xfc, 0x8e, 0x1d, 0x94, 0x8a, 0xbc, 0x52, 0x7a, 0xa7, 0x58, 0xe7, 0x50, 0x94, + 0x58, 0x76, 0xba, 0x88, 0xc1, 0xf5, 0x4b, 0xe3, 0x71, 0x55, 0x53, 0xcc, 0x00, 0x1f, 0x15, 0xde, + 0xfc, 0x2b, 0x03, 0x8a, 0x6c, 0xbd, 0xa9, 0x35, 0xf2, 0x14, 0x8c, 0x06, 0x96, 0xd7, 0x90, 0x76, + 0x70, 0x44, 0xc4, 0x26, 0x87, 0xa2, 0xc4, 0x12, 0x0b, 0x72, 0x81, 0xe5, 0x6f, 0x2b, 0xbd, 0xe2, + 0xd3, 0x99, 0x9a, 0x2d, 0x17, 0x7a, 0xa8, 0x52, 0xb0, 0x2f, 0x1f, 0x05, 0x67, 0x72, 0x11, 0xf2, + 0xec, 0x1c, 0x58, 0xb1, 0x7c, 0xe1, 0x90, 0xcb, 0x97, 0xc7, 0xd9, 0xc2, 0x5e, 0x91, 0x30, 0xd4, + 0x58, 0xf3, 0x79, 0xc8, 0x2d, 0xef, 0x50, 0x87, 0x1f, 0x10, 0xbe, 0x34, 0x03, 0x93, 0xb6, 0xaf, + 0x32, 0x0f, 0x51, 0x53, 0x98, 0x6f, 0xc0, 0x89, 0xe5, 0x77, 0x68, 0xb5, 0x1b, 0xb8, 0x9e, 0x30, + 0x17, 0xc9, 0x6b, 0x40, 0x7c, 0xea, 0xed, 0xd8, 0x55, 0xba, 0x50, 0xad, 0x32, 0x35, 0xf9, 0x7a, + 0xb8, 0xff, 0xcc, 0x48, 0x4e, 0xa4, 0xd2, 0x43, 0x81, 0x29, 0xa5, 0xcc, 0xdf, 0x35, 0xa0, 0x18, + 0xf1, 0xda, 0xb0, 0xdd, 0xa7, 0xb1, 0x58, 0x29, 0x77, 0xab, 0xdb, 0xda, 0xc9, 0xf0, 0x72, 0x56, + 0x57, 0x90, 0xe0, 0x12, 0xae, 0x1a, 0x0d, 0xc2, 0x50, 0xc6, 0xfd, 0xdc, 0x39, 0x7f, 0x61, 0x40, + 0x58, 0x8e, 0x8d, 0xfb, 0x56, 0x58, 0xb5, 0xc8, 0xb8, 0x4b, 0xbe, 0x12, 0x4b, 0xde, 0x33, 0xe0, + 0x6c, 0xbc, 0xb1, 0xdc, 0xf4, 0x3e, 0xba, 0x5b, 0x63, 0x56, 0x0a, 0x38, 0x5b, 0x49, 0xe7, 0x86, + 0xfd, 0xc4, 0x98, 0x37, 0x21, 0xb7, 0x6a, 0x75, 0x1b, 0xf4, 0x50, 0x06, 0x0c, 0x9b, 0x45, 0x1e, + 0xb5, 0x5a, 0x81, 0x3a, 0x2c, 0xe5, 0x2c, 0x42, 0x09, 0x43, 0x8d, 0x35, 0xff, 0x78, 0x04, 0x8a, + 0x11, 0xe7, 0x2d, 0xdb, 0x00, 0x3c, 0xda, 0x71, 0x93, 0xc7, 0x0f, 0xd2, 0x8e, 0x8b, 0x1c, 0xc3, + 0xa6, 0x9b, 0x47, 0x77, 0x6c, 0xdf, 0x76, 0x9d, 0xe4, 0xf1, 0x83, 0x12, 0x8e, 0x9a, 0x82, 0xcc, + 0x42, 0xae, 0x46, 0x3b, 0x41, 0x93, 0x4f, 0xe6, 0x91, 0x72, 0x81, 0x55, 0x75, 0x89, 0x01, 0x50, + 0xc0, 0x19, 0x41, 0x9d, 0x06, 0xd5, 0x66, 0x69, 0x84, 0x6f, 0xd9, 0x9c, 0x60, 0x85, 0x01, 0x50, + 0xc0, 0x53, 0x9c, 0x55, 0xb9, 0x07, 0xef, 0xac, 0x1a, 0x3d, 0x66, 0x67, 0x15, 0xe9, 0xc0, 0x49, + 0xdf, 0x6f, 0x6e, 0x78, 0xf6, 0x8e, 0x15, 0xd0, 0x70, 0xf6, 0x8c, 0x1d, 0x45, 0xce, 0xd9, 0x83, + 0xfd, 0xd9, 0x93, 0x95, 0xca, 0xe5, 0x24, 0x17, 0x4c, 0x63, 0x4d, 0x2a, 0x70, 0xda, 0x76, 0x7c, + 0x5a, 0xed, 0x7a, 0xf4, 0x4a, 0xc3, 0x71, 0x3d, 0x7a, 0xd9, 0xf5, 0x19, 0x3b, 0x19, 0x13, 0x51, + 0xee, 0x81, 0xd3, 0x57, 0xd2, 0x88, 0x30, 0xbd, 0xac, 0xf9, 0x6d, 0x03, 0xc6, 0xa3, 0xfe, 0x6a, + 0xe2, 0x03, 0x34, 0x97, 0x56, 0x2a, 0x62, 0x2b, 0x91, 0x2b, 0xfc, 0x95, 0xcc, 0x6e, 0x70, 0xc1, + 0x26, 0xd4, 0x97, 0x42, 0x18, 0x46, 0xc4, 0x1c, 0x22, 0xe4, 0xf6, 0x04, 0xe4, 0xea, 0xae, 0x57, + 0xa5, 0x72, 0x0f, 0xd5, 0xab, 0x64, 0x85, 0x01, 0x51, 0xe0, 0xcc, 0x0f, 0x0d, 0x88, 0x48, 0x20, + 0xbf, 0x04, 0x13, 0x4c, 0xc6, 0x55, 0x6f, 0x2b, 0xd6, 0x9a, 0x72, 0xe6, 0xd6, 0x68, 0x4e, 0xe5, + 0xd3, 0x52, 0xfe, 0x44, 0x0c, 0x8c, 0x71, 0x79, 0xe4, 0xff, 0x42, 0xc1, 0xaa, 0xd5, 0x3c, 0xea, + 0xfb, 0x54, 0x1c, 0x31, 0x05, 0xe1, 0xd6, 0x5b, 0x50, 0x40, 0x0c, 0xf1, 0x6c, 0x19, 0x36, 0x6b, + 0x75, 0x9f, 0xcd, 0x6c, 0x69, 0xa1, 0xe9, 0x65, 0xc8, 0x84, 0x30, 0x38, 0x6a, 0x0a, 0xf3, 0xab, + 0x23, 0x10, 0x97, 0x4d, 0x6a, 0x30, 0xb9, 0xed, 0x6d, 0x2d, 0x72, 0xd7, 0x63, 0x16, 0x27, 0xf0, + 0xc9, 0x83, 0xfd, 0xd9, 0xc9, 0xab, 0x71, 0x0e, 0x98, 0x64, 0x29, 0xa5, 0x5c, 0xa5, 0x7b, 0x81, + 0xb5, 0x95, 0x65, 0xc3, 0x54, 0x52, 0xa2, 0x1c, 0x30, 0xc9, 0x92, 0x3c, 0x0f, 0xc5, 0x6d, 0x6f, + 0x4b, 0x2d, 0xf2, 0xa4, 0xe7, 0xf5, 0x6a, 0x88, 0xc2, 0x28, 0x1d, 0xeb, 0xc2, 0x6d, 0x6f, 0x8b, + 0x6d, 0x8a, 0x2a, 0xfa, 0xaa, 0xbb, 0xf0, 0xaa, 0x84, 0xa3, 0xa6, 0x20, 0x1d, 0x20, 0xdb, 0xaa, + 0xf7, 0xb4, 0xa3, 0x55, 0xee, 0x45, 0x87, 0xf7, 0xd3, 0x9e, 0x61, 0x87, 0xe9, 0xd5, 0x1e, 0x3e, + 0x98, 0xc2, 0x9b, 0x7c, 0x06, 0xce, 0x6e, 0x7b, 0x5b, 0xf2, 0xa8, 0xd8, 0xf0, 0x6c, 0xa7, 0x6a, + 0x77, 0x62, 0x61, 0x57, 0x7d, 0x9c, 0x5c, 0x4d, 0x27, 0xc3, 0x7e, 0xe5, 0xcd, 0xaf, 0xb1, 0x75, + 0x1c, 0x89, 0xaa, 0xdd, 0x2f, 0x9e, 0x51, 0x87, 0xb1, 0x26, 0xb5, 0x6a, 0xd4, 0x53, 0xba, 0xcf, + 0x8b, 0xd9, 0x56, 0x05, 0xe7, 0x11, 0x6a, 0x66, 0xe2, 0xdb, 0x47, 0xc5, 0xdc, 0x5c, 0x87, 0x51, + 0x01, 0x3b, 0x84, 0x1d, 0xa4, 0x4f, 0xc2, 0xa1, 0x7b, 0xb8, 0xf2, 0xde, 0x37, 0xa0, 0xc0, 0xcd, + 0xe9, 0x06, 0xd3, 0xa9, 0x75, 0x91, 0xe1, 0x7b, 0x1c, 0x9e, 0x75, 0x18, 0x13, 0xe7, 0xbe, 0xcf, + 0xcf, 0xa4, 0xac, 0x6d, 0x15, 0xe9, 0x24, 0x61, 0x5b, 0x85, 0x4e, 0xe1, 0xa3, 0x62, 0x6e, 0xfe, + 0xab, 0x01, 0xa3, 0x57, 0x9c, 0x4e, 0xf7, 0xa7, 0x24, 0xad, 0x62, 0x0d, 0x46, 0x98, 0x25, 0x14, + 0xcf, 0xaf, 0x19, 0x2f, 0x3f, 0x19, 0xcd, 0xad, 0x29, 0xc5, 0x73, 0x6b, 0xd0, 0xda, 0x55, 0x6e, + 0x62, 0x51, 0xe6, 0x53, 0xf9, 0xf7, 0x7f, 0x7f, 0xf6, 0x91, 0xf7, 0xbe, 0x77, 0xe1, 0x11, 0xb3, + 0x05, 0x23, 0xd7, 0x6c, 0x67, 0xfb, 0x70, 0xf3, 0xc4, 0xaf, 0xba, 0x9d, 0x9e, 0x79, 0x52, 0x61, + 0x40, 0x14, 0x38, 0x35, 0xff, 0x87, 0xd3, 0xe7, 0xbf, 0xf9, 0x05, 0x03, 0xa6, 0xd7, 0x68, 0xdb, + 0xb5, 0x3f, 0x67, 0x85, 0x5e, 0x6e, 0x56, 0xa8, 0x69, 0x07, 0xd2, 0x45, 0xad, 0x0b, 0x5d, 0xb6, + 0x03, 0x64, 0xf0, 0xfb, 0xe8, 0xa2, 0x3c, 0x54, 0xc9, 0xb6, 0xca, 0xeb, 0xe1, 0x9e, 0x15, 0x86, + 0x2a, 0x15, 0x02, 0x43, 0x1a, 0xf3, 0x4f, 0x0c, 0x18, 0x13, 0x95, 0xa0, 0x8a, 0xb7, 0xd1, 0x87, + 0xf7, 0x6d, 0xc8, 0xf1, 0x72, 0x72, 0xb7, 0xfd, 0x54, 0x36, 0x03, 0x8d, 0x71, 0x10, 0x1a, 0x19, + 0xff, 0x89, 0x82, 0x27, 0x53, 0x9b, 0xdb, 0xd6, 0x3b, 0x0b, 0xda, 0xa7, 0xaf, 0xd5, 0xe6, 0x35, + 0x0e, 0x45, 0x89, 0x35, 0xdf, 0x1b, 0x86, 0xbc, 0x72, 0x1d, 0x91, 0x2f, 0x1a, 0x50, 0xb4, 0x1c, + 0xc7, 0x0d, 0x2c, 0xe1, 0x59, 0x11, 0x93, 0xfc, 0x7a, 0xa6, 0x8a, 0x29, 0xa6, 0x73, 0x0b, 0x21, + 0xc3, 0x65, 0x27, 0xf0, 0xf6, 0xc2, 0x4d, 0x3f, 0x82, 0xc1, 0xa8, 0x5c, 0xf2, 0x36, 0x8c, 0xb6, + 0xac, 0x2d, 0xda, 0x52, 0x73, 0xfe, 0xca, 0x60, 0x35, 0xb8, 0xc6, 0x79, 0x09, 0xe1, 0xba, 0x1f, + 0x04, 0x10, 0xa5, 0xa0, 0x99, 0x97, 0x61, 0x2a, 0x59, 0x51, 0x32, 0x15, 0x19, 0x3f, 0x31, 0x64, + 0xa7, 0x62, 0xdb, 0x99, 0x9a, 0xf0, 0x43, 0x2f, 0x18, 0x33, 0x9f, 0x84, 0x62, 0x44, 0xcc, 0x51, 0x8a, 0x9a, 0xaf, 0x43, 0x71, 0x8d, 0x06, 0x9e, 0x5d, 0xe5, 0x0c, 0xee, 0x37, 0x6b, 0x0e, 0xb5, 0xa3, 0x7e, 0x8e, 0x4d, 0x42, 0xc6, 0xd2, 0x27, 0x2e, 0x40, 0xc7, 0x73, 0xdb, 0x34, 0x68, 0xd2, 0xae, 0x1a, 0xd1, 0x6c, 0xca, 0xdf, 0x86, 0x66, 0x23, 0x7c, 0x01, 0xe1, 0x37, 0x46, 0x44, 0x98, @@ -2861,262 +2861,264 @@ var fileDescriptor_c23edafa7e7ea072 = []byte{ 0x66, 0x37, 0xdd, 0x56, 0x8d, 0x7a, 0xb2, 0x07, 0xf4, 0x88, 0x5e, 0xe6, 0x50, 0x94, 0x58, 0xf3, 0x87, 0x06, 0x14, 0x79, 0x41, 0xb9, 0x11, 0xb4, 0x60, 0xac, 0x29, 0xe4, 0xc8, 0x5e, 0xc8, 0xe6, 0xed, 0x8f, 0x56, 0x38, 0x72, 0x48, 0x0a, 0x00, 0x2a, 0x11, 0x4c, 0xda, 0xae, 0x65, 0x07, 0x4c, - 0xda, 0xd0, 0x91, 0x4b, 0xbb, 0x25, 0x38, 0xa3, 0x12, 0x61, 0xfe, 0x64, 0x12, 0xe0, 0xba, 0x5b, - 0xa3, 0xb2, 0xa9, 0x33, 0x30, 0x64, 0xd7, 0x64, 0x27, 0x82, 0x2c, 0x34, 0x74, 0x65, 0x09, 0x87, - 0xec, 0x9a, 0x1e, 0x95, 0xa1, 0xbe, 0x7b, 0xf1, 0xf3, 0x50, 0xac, 0xd9, 0x7e, 0xa7, 0x65, 0xed, - 0x5d, 0x4f, 0xd1, 0xd4, 0x96, 0x42, 0x14, 0x46, 0xe9, 0xc8, 0x33, 0x32, 0xb2, 0x29, 0xb4, 0xb4, - 0x52, 0x22, 0xb2, 0x99, 0x67, 0xd5, 0x8b, 0x04, 0x35, 0x5f, 0x80, 0x71, 0xe5, 0x1b, 0xe4, 0x52, - 0x72, 0xbc, 0xd4, 0x29, 0x15, 0x3d, 0xd9, 0x8c, 0xe0, 0x30, 0x46, 0x99, 0xf4, 0x5d, 0x8e, 0x1e, - 0x8b, 0xef, 0x72, 0x09, 0xa6, 0xfc, 0xc0, 0xf5, 0x68, 0x4d, 0x51, 0x5c, 0x59, 0x2a, 0x91, 0x58, - 0x43, 0xa7, 0x2a, 0x09, 0x3c, 0xf6, 0x94, 0x20, 0x1b, 0x70, 0x6a, 0x37, 0x11, 0x34, 0xe6, 0x8d, - 0x3f, 0xc9, 0x39, 0x9d, 0x93, 0x9c, 0x4e, 0xdd, 0x4a, 0xa1, 0xc1, 0xd4, 0x92, 0xe4, 0x45, 0x98, - 0x50, 0xd5, 0xe4, 0x47, 0x65, 0xe9, 0x14, 0x67, 0xa5, 0x6d, 0x99, 0xcd, 0x28, 0x12, 0xe3, 0xb4, - 0xe4, 0xe3, 0x90, 0xeb, 0x34, 0x2d, 0x9f, 0x4a, 0x57, 0xa7, 0xf2, 0x23, 0xe5, 0x36, 0x18, 0xf0, - 0xee, 0xfe, 0x6c, 0x81, 0x8d, 0x19, 0xff, 0x40, 0x41, 0x48, 0x2e, 0x01, 0x6c, 0xb9, 0x5d, 0xa7, - 0x66, 0x79, 0x7b, 0x57, 0x96, 0x64, 0xa4, 0x43, 0xeb, 0x30, 0x65, 0x8d, 0xc1, 0x08, 0x55, 0x34, - 0xbc, 0x5c, 0xb8, 0x77, 0x78, 0x99, 0xdc, 0x86, 0x02, 0x8f, 0x0a, 0xd1, 0xda, 0x42, 0x20, 0xdd, - 0x96, 0x0f, 0x12, 0x40, 0xd0, 0x27, 0x73, 0x45, 0x31, 0xc1, 0x90, 0x1f, 0x79, 0x13, 0xa0, 0x6e, - 0x3b, 0xb6, 0xdf, 0xe4, 0xdc, 0x8b, 0x0f, 0xcc, 0x5d, 0xb7, 0x73, 0x45, 0x73, 0xc1, 0x08, 0x47, + 0xda, 0xd0, 0xb1, 0x4b, 0xbb, 0x25, 0x38, 0xa3, 0x12, 0x61, 0xfe, 0xe9, 0x14, 0xc0, 0x75, 0xb7, + 0x46, 0x65, 0x53, 0x67, 0x60, 0xc8, 0xae, 0xc9, 0x4e, 0x04, 0x59, 0x68, 0xe8, 0xca, 0x12, 0x0e, + 0xd9, 0x35, 0x3d, 0x2a, 0x43, 0x7d, 0xf7, 0xe2, 0xe7, 0xa1, 0x58, 0xb3, 0xfd, 0x4e, 0xcb, 0xda, + 0xbb, 0x9e, 0xa2, 0xa9, 0x2d, 0x85, 0x28, 0x8c, 0xd2, 0x91, 0x67, 0x64, 0x64, 0x53, 0x68, 0x69, + 0xa5, 0x44, 0x64, 0x33, 0xcf, 0xaa, 0x17, 0x09, 0x6a, 0xbe, 0x00, 0xe3, 0xca, 0x37, 0xc8, 0xa5, + 0xe4, 0x78, 0xa9, 0x53, 0x2a, 0x7a, 0xb2, 0x19, 0xc1, 0x61, 0x8c, 0x32, 0xe9, 0xbb, 0x1c, 0x7d, + 0x28, 0xbe, 0xcb, 0x25, 0x98, 0xf2, 0x03, 0xd7, 0xa3, 0x35, 0x45, 0x71, 0x65, 0xa9, 0x44, 0x62, + 0x0d, 0x9d, 0xaa, 0x24, 0xf0, 0xd8, 0x53, 0x82, 0x6c, 0xc0, 0xa9, 0xdd, 0x44, 0xd0, 0x98, 0x37, + 0xfe, 0x24, 0xe7, 0x74, 0x4e, 0x72, 0x3a, 0x75, 0x2b, 0x85, 0x06, 0x53, 0x4b, 0x92, 0x17, 0x61, + 0x42, 0x55, 0x93, 0x1f, 0x95, 0xa5, 0x53, 0x9c, 0x95, 0xb6, 0x65, 0x36, 0xa3, 0x48, 0x8c, 0xd3, + 0x92, 0x8f, 0x43, 0xae, 0xd3, 0xb4, 0x7c, 0x2a, 0x5d, 0x9d, 0xca, 0x8f, 0x94, 0xdb, 0x60, 0xc0, + 0xbb, 0xfb, 0xb3, 0x05, 0x36, 0x66, 0xfc, 0x03, 0x05, 0x21, 0xb9, 0x04, 0xb0, 0xe5, 0x76, 0x9d, + 0x9a, 0xe5, 0xed, 0x5d, 0x59, 0x92, 0x91, 0x0e, 0xad, 0xc3, 0x94, 0x35, 0x06, 0x23, 0x54, 0xd1, + 0xf0, 0x72, 0xe1, 0xde, 0xe1, 0x65, 0x72, 0x1b, 0x0a, 0x3c, 0x2a, 0x44, 0x6b, 0x0b, 0x81, 0x74, + 0x5b, 0x1e, 0x25, 0x80, 0xa0, 0x4f, 0xe6, 0x8a, 0x62, 0x82, 0x21, 0x3f, 0xf2, 0x26, 0x40, 0xdd, + 0x76, 0x6c, 0xbf, 0xc9, 0xb9, 0x17, 0x8f, 0xcc, 0x5d, 0xb7, 0x73, 0x45, 0x73, 0xc1, 0x08, 0x47, 0xf2, 0x06, 0x4c, 0x53, 0x3f, 0xb0, 0xdb, 0x56, 0x40, 0x6b, 0x3a, 0xc1, 0xa4, 0xc4, 0x03, 0x61, - 0x3a, 0x2e, 0xb7, 0x9c, 0x24, 0xb8, 0x9b, 0x06, 0xc4, 0x5e, 0x46, 0xe4, 0x5f, 0x0c, 0x98, 0xf6, - 0xa8, 0xef, 0x76, 0xbd, 0x2a, 0xf5, 0x35, 0xfb, 0xd3, 0x7c, 0x6b, 0xb9, 0x99, 0x31, 0xa3, 0x58, - 0xed, 0x17, 0x73, 0x98, 0x64, 0x2c, 0xce, 0x4a, 0xaa, 0xaa, 0xdd, 0x83, 0xbf, 0x9b, 0x06, 0xfc, - 0xc2, 0xf7, 0x67, 0x67, 0x7b, 0x93, 0xd8, 0x35, 0x73, 0x36, 0x5f, 0x7f, 0xfd, 0xfb, 0xb3, 0x53, - 0xea, 0x3b, 0x6c, 0x6d, 0x4f, 0xbb, 0xd8, 0x41, 0xd0, 0x71, 0x6b, 0x57, 0x36, 0xa4, 0x97, 0x58, - 0x1f, 0x04, 0x1b, 0x0c, 0x88, 0x02, 0x47, 0x2e, 0x42, 0xbe, 0x66, 0xd1, 0xb6, 0xeb, 0xd0, 0x5a, - 0x69, 0x22, 0x74, 0xa0, 0x2d, 0x49, 0x18, 0x6a, 0x2c, 0x79, 0x0b, 0x46, 0x6d, 0xae, 0xc4, 0x97, - 0x4e, 0xf0, 0x61, 0xcf, 0x66, 0x2c, 0x08, 0x3b, 0x40, 0xa4, 0x15, 0x89, 0xdf, 0x28, 0xd9, 0x92, - 0x2a, 0x8c, 0xb9, 0xdd, 0x80, 0x4b, 0x98, 0xe4, 0x12, 0xb2, 0xb9, 0x9d, 0xd7, 0x05, 0x0f, 0x91, - 0x33, 0x2b, 0x3f, 0x50, 0x71, 0x66, 0xed, 0xad, 0x36, 0xed, 0x56, 0xcd, 0xa3, 0x4e, 0x69, 0x8a, - 0x7b, 0x1e, 0x78, 0x7b, 0x17, 0x25, 0x0c, 0x35, 0x96, 0xfc, 0x7f, 0x98, 0x70, 0xbb, 0x01, 0x5f, - 0x83, 0x6c, 0x94, 0xfd, 0xd2, 0x34, 0x27, 0x9f, 0x66, 0x3b, 0xc2, 0x7a, 0x14, 0x81, 0x71, 0x3a, - 0xb6, 0x2b, 0x37, 0x5d, 0x3f, 0x60, 0x1f, 0x7c, 0x63, 0x3a, 0x13, 0xdf, 0x95, 0x2f, 0x47, 0x70, - 0x18, 0xa3, 0x24, 0x5f, 0x31, 0x60, 0xba, 0x9d, 0x54, 0xbe, 0x4b, 0x67, 0x79, 0x67, 0xac, 0x64, - 0x54, 0xdf, 0x12, 0xdc, 0x44, 0x80, 0xb0, 0x07, 0x8c, 0xbd, 0x72, 0xc9, 0x1f, 0x18, 0x70, 0xda, - 0xdf, 0x73, 0xaa, 0x4d, 0xcf, 0x75, 0xe2, 0x35, 0x7a, 0x94, 0xd7, 0xe8, 0x7a, 0xf6, 0x15, 0x93, - 0xc6, 0xb5, 0xfc, 0xe8, 0xc1, 0xfe, 0xec, 0xe9, 0x54, 0x14, 0xa6, 0xd7, 0x63, 0x66, 0x09, 0xce, - 0xa4, 0xaf, 0xba, 0xfb, 0xa9, 0x8e, 0xc3, 0x51, 0xd5, 0x71, 0x05, 0x1e, 0xed, 0x5b, 0x29, 0xb6, - 0xf1, 0x2a, 0x15, 0xc4, 0x88, 0x6f, 0xbc, 0x3d, 0xfa, 0xc3, 0x09, 0x18, 0x8f, 0x5e, 0x30, 0xe0, - 0x21, 0x82, 0x48, 0xd6, 0x28, 0x71, 0xa1, 0xe0, 0x56, 0x8e, 0x22, 0x44, 0xb0, 0x5e, 0xe9, 0x09, - 0x11, 0x68, 0x10, 0x86, 0x32, 0xee, 0x17, 0x22, 0xf8, 0xf3, 0x21, 0x08, 0xcb, 0x91, 0x67, 0x20, - 0x4f, 0x9d, 0x5a, 0xc7, 0xb5, 0x9d, 0x20, 0x19, 0x5c, 0x59, 0x96, 0x70, 0xd4, 0x14, 0x91, 0x80, - 0xc2, 0xd0, 0x3d, 0x03, 0x0a, 0x4d, 0x98, 0xb4, 0x78, 0x12, 0x41, 0xe8, 0x09, 0x1e, 0x7e, 0x20, - 0x4f, 0xb0, 0x4e, 0xff, 0x8c, 0x73, 0xc1, 0x24, 0x5b, 0x26, 0xc9, 0x0f, 0x8b, 0x73, 0x49, 0x23, - 0x99, 0x24, 0x55, 0xe2, 0x5c, 0x30, 0xc9, 0xd6, 0xfc, 0xcb, 0x21, 0x50, 0xfb, 0xca, 0xcf, 0x82, - 0x3f, 0x83, 0x98, 0x30, 0xea, 0x51, 0xbf, 0xdb, 0x0a, 0xa4, 0x16, 0xcb, 0xf7, 0x6e, 0xe4, 0x10, - 0x94, 0x18, 0xb6, 0xad, 0xd2, 0x77, 0xec, 0x60, 0xd1, 0xad, 0x29, 0xdd, 0x95, 0x6f, 0xab, 0xcb, - 0x12, 0x86, 0x1a, 0x6b, 0xee, 0xc2, 0x04, 0x6b, 0x57, 0xab, 0x45, 0x5b, 0x95, 0x80, 0x76, 0x7c, - 0x52, 0x87, 0x9c, 0xcf, 0x7e, 0x0c, 0x64, 0x50, 0x84, 0x99, 0x19, 0xb4, 0x13, 0x71, 0x7c, 0x30, - 0xbe, 0x28, 0xd8, 0x9b, 0x5f, 0x1f, 0x82, 0x82, 0xee, 0xd1, 0x43, 0x78, 0x53, 0x9e, 0x84, 0xb1, - 0x1a, 0xad, 0x5b, 0xac, 0xdd, 0x72, 0x05, 0x89, 0x10, 0x2b, 0x07, 0xa1, 0xc2, 0x91, 0xd9, 0xb8, - 0xa7, 0xad, 0xd0, 0xe3, 0x65, 0xdb, 0x86, 0x02, 0xff, 0xb1, 0xa2, 0xee, 0xbe, 0x64, 0x9d, 0x21, - 0x37, 0x15, 0x17, 0xe1, 0x2c, 0xd7, 0x9f, 0x18, 0xf2, 0x4f, 0xdc, 0x59, 0xc9, 0x1d, 0xe6, 0xce, - 0x8a, 0xb9, 0x02, 0x4c, 0x25, 0x58, 0x5d, 0x24, 0x2f, 0x41, 0xde, 0x97, 0x9b, 0x97, 0xec, 0x97, - 0x8f, 0xe8, 0xf8, 0xaa, 0x84, 0xdf, 0xdd, 0x9f, 0x9d, 0xe0, 0xc4, 0x0a, 0x80, 0xba, 0x88, 0xf9, - 0xa5, 0x11, 0x88, 0x98, 0xb3, 0x87, 0xe8, 0xe1, 0x5a, 0xc2, 0x43, 0xf1, 0x6a, 0x56, 0x0f, 0x85, - 0x32, 0xfb, 0xc5, 0xd4, 0x8c, 0x3b, 0x25, 0x58, 0x3d, 0x9a, 0xb4, 0xd5, 0x91, 0xe3, 0xa3, 0xeb, - 0x71, 0x99, 0xb6, 0x3a, 0xc8, 0x31, 0x3a, 0x17, 0x60, 0xa4, 0x6f, 0x2e, 0xc0, 0x6d, 0xc8, 0x35, - 0xac, 0x6e, 0x83, 0x4a, 0x2f, 0x78, 0x36, 0x2f, 0x13, 0x0f, 0x6b, 0x8a, 0x09, 0xc2, 0x7f, 0xa2, - 0xe0, 0xc9, 0x26, 0x48, 0x53, 0x39, 0x6e, 0xa5, 0x25, 0x96, 0x6d, 0x82, 0x68, 0xf7, 0xaf, 0x98, - 0x20, 0xfa, 0x13, 0x43, 0xfe, 0x4c, 0xc9, 0xaa, 0x8a, 0x0c, 0x51, 0x19, 0x92, 0xfb, 0x74, 0xc6, - 0x94, 0x06, 0xce, 0x43, 0xac, 0x09, 0xf9, 0x81, 0x8a, 0xb3, 0x39, 0x0f, 0xc5, 0xc8, 0x5d, 0x0c, - 0xd6, 0xbf, 0x3a, 0xff, 0x31, 0xd2, 0xbf, 0x4b, 0x56, 0x60, 0x21, 0xc7, 0x98, 0xdf, 0x18, 0x06, - 0xad, 0xd2, 0x46, 0x93, 0x15, 0xac, 0x6a, 0x24, 0xd1, 0x3d, 0x96, 0x39, 0xe5, 0x3a, 0x28, 0xb1, - 0xcc, 0x7c, 0x6b, 0x53, 0xaf, 0xa1, 0x0f, 0x5e, 0xb9, 0x5c, 0xb5, 0xf9, 0xb6, 0x16, 0x45, 0x62, - 0x9c, 0x96, 0x1d, 0x7b, 0x6d, 0xcb, 0xb1, 0xeb, 0xd4, 0x0f, 0x92, 0xd1, 0xa5, 0x35, 0x09, 0x47, - 0x4d, 0x41, 0x56, 0x61, 0xda, 0xa7, 0xc1, 0xfa, 0xae, 0x43, 0x3d, 0x9d, 0xd1, 0x25, 0x53, 0xfc, - 0x1e, 0x55, 0x7a, 0x7e, 0x25, 0x49, 0x80, 0xbd, 0x65, 0xb8, 0x29, 0x2c, 0xb2, 0xeb, 0x74, 0xa6, - 0x94, 0x5c, 0xad, 0xa1, 0x29, 0x9c, 0xc0, 0x63, 0x4f, 0x09, 0xc6, 0xa5, 0x6e, 0xd9, 0xad, 0xae, - 0x47, 0x43, 0x2e, 0xa3, 0x71, 0x2e, 0x2b, 0x09, 0x3c, 0xf6, 0x94, 0xe0, 0x81, 0xe9, 0x96, 0xd5, - 0xf0, 0x4b, 0x63, 0x91, 0xc0, 0x34, 0x03, 0xa0, 0x80, 0x9b, 0xef, 0x0f, 0xc1, 0x04, 0xd2, 0xc0, - 0xdb, 0xd3, 0xbd, 0xf6, 0x3a, 0xe4, 0x5a, 0x3c, 0xdb, 0xcf, 0xc8, 0x78, 0xad, 0x80, 0x0b, 0x11, - 0xe9, 0x80, 0x82, 0x13, 0x59, 0x82, 0xa2, 0xc7, 0x64, 0xc8, 0x5c, 0x4c, 0x31, 0x86, 0x66, 0x78, - 0xe7, 0x4c, 0xa3, 0xee, 0xc6, 0x3f, 0x31, 0x5a, 0x8c, 0x38, 0x30, 0xb6, 0x25, 0x6e, 0x4a, 0x48, - 0x3d, 0x23, 0xdb, 0xf4, 0x96, 0xb7, 0x2d, 0x78, 0x10, 0x4b, 0x5d, 0xbd, 0xb8, 0x1b, 0xfe, 0x44, - 0x25, 0xc4, 0x7c, 0xdf, 0x00, 0x08, 0x2f, 0x9b, 0x91, 0x6d, 0xc8, 0xfb, 0xcf, 0xc5, 0x34, 0xbc, - 0x8c, 0x69, 0x4c, 0x92, 0x49, 0x24, 0xc1, 0x45, 0x42, 0x50, 0x0b, 0xb8, 0x9f, 0x7a, 0xf7, 0xe1, - 0x30, 0xe8, 0x52, 0x0f, 0x49, 0xbb, 0x7b, 0x8a, 0x69, 0x06, 0x8d, 0xf0, 0x0e, 0x88, 0xa6, 0x43, - 0x0e, 0x45, 0x89, 0x65, 0xda, 0x81, 0x8a, 0xb2, 0xcb, 0xd5, 0xc2, 0xb5, 0x03, 0x15, 0x90, 0x47, - 0x8d, 0x4d, 0xd3, 0x17, 0x73, 0xc7, 0xa6, 0x2f, 0x8e, 0x3e, 0x14, 0x7d, 0x91, 0x99, 0x10, 0x9e, - 0xdb, 0xa2, 0x0b, 0x78, 0x5d, 0xfa, 0x88, 0xb4, 0x09, 0x81, 0x02, 0x8c, 0x0a, 0x4f, 0x9e, 0x87, - 0x62, 0xd7, 0xa7, 0x95, 0xa5, 0xab, 0x8b, 0x1e, 0xad, 0xf9, 0x32, 0x81, 0x41, 0x7b, 0x0d, 0x6f, - 0x84, 0x28, 0x8c, 0xd2, 0x99, 0xbf, 0x66, 0xc0, 0x89, 0x4a, 0xd5, 0xb3, 0x3b, 0x81, 0xde, 0x3c, - 0xaf, 0xf3, 0x3b, 0x36, 0x81, 0xc5, 0x96, 0xa2, 0x9c, 0x8a, 0x8f, 0xf7, 0x89, 0xdd, 0x0a, 0xa2, - 0xd8, 0xed, 0x31, 0x01, 0xc2, 0x90, 0x05, 0x1b, 0x6a, 0xb1, 0x3d, 0x27, 0xa7, 0x44, 0x85, 0x43, - 0x51, 0x62, 0xcd, 0x3b, 0x30, 0x55, 0xa1, 0x6d, 0xab, 0xd3, 0xe4, 0xb9, 0x14, 0xc2, 0x8d, 0x3b, - 0x0f, 0x05, 0x5f, 0xc1, 0x92, 0x57, 0xd5, 0x34, 0x31, 0x86, 0x34, 0x4c, 0xf5, 0x12, 0xfe, 0x67, - 0x95, 0x1d, 0x50, 0x54, 0xee, 0x61, 0x11, 0x43, 0x15, 0x3f, 0xcc, 0x5d, 0x18, 0x0f, 0x8b, 0xd3, - 0x3a, 0x69, 0xc0, 0x64, 0x35, 0x12, 0x8a, 0x46, 0x5a, 0x7f, 0xe0, 0xdb, 0x45, 0x3c, 0x0c, 0xbf, - 0x18, 0x67, 0x82, 0x49, 0xae, 0xe6, 0x4f, 0x0c, 0x98, 0xd4, 0x92, 0xa5, 0xa1, 0xd8, 0x49, 0x7a, - 0xc6, 0x97, 0x33, 0x26, 0x30, 0xc6, 0x3b, 0xef, 0x1e, 0xde, 0xf1, 0x4e, 0xd2, 0x3b, 0x7e, 0xd4, - 0x12, 0x7b, 0x2c, 0xdc, 0x3f, 0x1a, 0x82, 0xbc, 0xce, 0xa0, 0x7c, 0x1d, 0x72, 0xfc, 0xbc, 0x1f, - 0xec, 0x0c, 0xe0, 0xba, 0x03, 0x0a, 0x4e, 0x8c, 0x25, 0x77, 0x35, 0x66, 0xbe, 0xad, 0x56, 0x10, - 0x5a, 0xbf, 0xe5, 0x05, 0x28, 0x38, 0x91, 0xab, 0x30, 0x4c, 0x9d, 0x9a, 0x3c, 0x0c, 0x1e, 0x9c, - 0x21, 0xbf, 0x8c, 0xb9, 0xec, 0xd4, 0x90, 0x71, 0xe1, 0xd7, 0x70, 0x5c, 0xaf, 0x6d, 0x05, 0x52, - 0x55, 0x0c, 0xaf, 0xe1, 0x70, 0x28, 0x4a, 0xac, 0xf9, 0x9b, 0x43, 0x30, 0x5a, 0xe9, 0x6e, 0xb1, - 0x63, 0xed, 0x77, 0x0d, 0x38, 0x99, 0x74, 0x3a, 0x87, 0x13, 0xf3, 0xf2, 0x91, 0x5c, 0x13, 0x43, - 0x5a, 0x2f, 0x3f, 0x26, 0xab, 0x72, 0x32, 0x05, 0x89, 0x69, 0x35, 0x60, 0x6a, 0x67, 0x98, 0x2f, - 0x3d, 0x74, 0x24, 0xf9, 0xd2, 0x13, 0xfd, 0x72, 0xa5, 0xcd, 0xbf, 0x19, 0x01, 0x10, 0x3d, 0xb2, - 0xde, 0x09, 0x0e, 0x63, 0x1b, 0xbc, 0x00, 0xe3, 0xea, 0xe5, 0x8a, 0xeb, 0x61, 0xa4, 0x45, 0x3b, - 0xd1, 0x56, 0x23, 0x38, 0x8c, 0x51, 0x32, 0x13, 0x88, 0x3a, 0x81, 0xb7, 0x27, 0x0e, 0xbb, 0x91, - 0xb8, 0x09, 0xb4, 0xac, 0x31, 0x18, 0xa1, 0x22, 0x73, 0x31, 0x33, 0x5e, 0xe4, 0x54, 0x9f, 0xb8, - 0x87, 0x09, 0xfe, 0x22, 0x4c, 0xe8, 0xaf, 0x15, 0xbb, 0xa5, 0xd2, 0x54, 0xb4, 0xca, 0xb9, 0x11, - 0x45, 0x62, 0x9c, 0x96, 0xbc, 0x0c, 0x27, 0xe2, 0xc9, 0x8f, 0xf2, 0x58, 0x38, 0x23, 0x4b, 0x9f, - 0x88, 0xe7, 0x4c, 0x62, 0x82, 0x9a, 0xcd, 0xc2, 0x9a, 0xb7, 0x87, 0x5d, 0x47, 0x9e, 0x0f, 0x7a, - 0x16, 0x2e, 0x71, 0x28, 0x4a, 0x2c, 0xeb, 0x42, 0x56, 0x92, 0x7a, 0x02, 0xce, 0x03, 0x07, 0xf9, - 0xb0, 0x0b, 0x2b, 0x11, 0x1c, 0xc6, 0x28, 0x99, 0x04, 0x69, 0x98, 0x41, 0x7c, 0x9e, 0x27, 0x4c, - 0xab, 0x0e, 0x9c, 0x70, 0xe3, 0xba, 0xb0, 0x88, 0x08, 0x7c, 0xe2, 0x90, 0xb7, 0x30, 0x62, 0x65, - 0x45, 0x76, 0x61, 0x42, 0x75, 0x4e, 0xf0, 0x37, 0x4f, 0xc2, 0x74, 0xa5, 0xdb, 0xe9, 0xb4, 0x6c, - 0x5a, 0xd3, 0xf6, 0xaf, 0xf9, 0x0a, 0x4c, 0xca, 0x7b, 0x35, 0xfa, 0xf8, 0x7b, 0xa0, 0x6b, 0xb2, - 0xe6, 0x3e, 0xdb, 0xcf, 0xe3, 0xee, 0x3f, 0xe2, 0x24, 0x0f, 0xad, 0xac, 0xae, 0x89, 0xe8, 0x11, - 0x25, 0x56, 0x48, 0xea, 0x99, 0x77, 0x5b, 0x85, 0x6d, 0x07, 0x49, 0x64, 0xe0, 0x91, 0x4e, 0xb1, - 0x0b, 0x46, 0xc3, 0xbd, 0xe6, 0x8f, 0x0c, 0x48, 0xf7, 0xac, 0x92, 0xb7, 0x7b, 0x9b, 0xb9, 0x34, - 0x58, 0x33, 0xa5, 0x37, 0xb7, 0x7f, 0x4b, 0xad, 0x78, 0x4b, 0x5f, 0xcd, 0xde, 0x52, 0x29, 0xaa, - 0xb7, 0xbd, 0xff, 0x61, 0x40, 0x71, 0x73, 0xf3, 0x9a, 0xb6, 0x57, 0x10, 0xce, 0xf8, 0xe2, 0x66, - 0xd4, 0x42, 0x3d, 0xa0, 0xde, 0xa2, 0xdb, 0xee, 0xb4, 0xa8, 0x9e, 0x1c, 0xf2, 0xba, 0x52, 0x25, - 0x95, 0x02, 0xfb, 0x94, 0x24, 0x57, 0xe0, 0x64, 0x14, 0x23, 0xcd, 0x35, 0xde, 0xa8, 0x9c, 0xcc, - 0x60, 0xed, 0x45, 0x63, 0x5a, 0x99, 0x24, 0x2b, 0x69, 0xb3, 0xc9, 0x67, 0x54, 0x7a, 0x58, 0x49, - 0x34, 0xa6, 0x95, 0x31, 0xd7, 0xa1, 0x18, 0x79, 0x43, 0x87, 0xbc, 0x0a, 0x53, 0x55, 0xb7, 0xdd, - 0xf1, 0xa8, 0xef, 0xdb, 0xae, 0x73, 0x8d, 0xee, 0xd0, 0x96, 0x6c, 0x32, 0xbf, 0xf7, 0xb4, 0x98, - 0xc0, 0x61, 0x0f, 0xb5, 0xf9, 0x67, 0x8f, 0x81, 0xbe, 0x6d, 0xf3, 0xf3, 0x3b, 0x3b, 0x99, 0xe2, - 0xde, 0x55, 0x1d, 0x39, 0xcb, 0x0d, 0x1e, 0x39, 0xd3, 0x7b, 0x71, 0x22, 0x7a, 0xd6, 0x08, 0xa3, - 0x67, 0xa3, 0x47, 0x10, 0x3d, 0xd3, 0x4a, 0x60, 0x4f, 0x04, 0xed, 0xcb, 0x06, 0x8c, 0x3b, 0x6e, - 0x8d, 0x2a, 0x9d, 0x99, 0xbb, 0x0d, 0x8a, 0x97, 0xd6, 0x07, 0xea, 0x44, 0x11, 0x16, 0x92, 0x1c, - 0x45, 0xe0, 0x54, 0x1f, 0x54, 0x51, 0x14, 0xc6, 0x44, 0x93, 0x15, 0xc8, 0x5b, 0xf5, 0xba, 0xed, - 0xd8, 0xc1, 0x9e, 0xbc, 0x36, 0x74, 0x2e, 0x4d, 0xd5, 0x5f, 0x90, 0x34, 0xc2, 0xec, 0x54, 0x5f, - 0xa8, 0xcb, 0x32, 0xbb, 0x5d, 0xdf, 0xd2, 0x2d, 0x0c, 0x60, 0xb7, 0xab, 0x6c, 0xa9, 0x88, 0x13, - 0x49, 0xdd, 0x28, 0x0c, 0x2f, 0xed, 0x9a, 0x30, 0x2a, 0x82, 0xaa, 0xf2, 0x61, 0x1d, 0xee, 0xb4, - 0x14, 0x01, 0x57, 0x94, 0x18, 0xd2, 0x50, 0x4e, 0xf1, 0x22, 0xef, 0xdc, 0x72, 0xe6, 0x90, 0x82, - 0xf6, 0xb3, 0xa7, 0x7b, 0xc5, 0xc9, 0x6b, 0x51, 0x3b, 0x71, 0xfc, 0x30, 0x76, 0xe2, 0x44, 0x5f, - 0x1b, 0xb1, 0x01, 0xa3, 0x3e, 0xb7, 0x42, 0x79, 0x24, 0xb9, 0x78, 0x69, 0x31, 0xdb, 0x41, 0x12, - 0x33, 0x64, 0x45, 0xef, 0x08, 0x18, 0x4a, 0xf6, 0xc4, 0x85, 0xbc, 0x0a, 0x77, 0xcb, 0x60, 0x74, - 0x36, 0xd3, 0x27, 0xe9, 0x72, 0x54, 0x97, 0x47, 0x04, 0x14, 0xb5, 0x10, 0x72, 0x1b, 0x86, 0x6b, - 0x56, 0x43, 0x86, 0xa5, 0x5f, 0xcd, 0x7c, 0x1b, 0x4a, 0x89, 0xe1, 0x56, 0xc5, 0xd2, 0xc2, 0x2a, - 0x32, 0xae, 0x64, 0x3b, 0xbc, 0x2d, 0x3c, 0x35, 0xc8, 0x01, 0x1c, 0x57, 0x81, 0x84, 0xcd, 0xdc, - 0x73, 0xdf, 0x78, 0x19, 0xc6, 0x76, 0xdc, 0x56, 0xb7, 0x2d, 0xe3, 0xd9, 0xc5, 0x4b, 0x33, 0x69, - 0xa3, 0x7d, 0x93, 0x93, 0x84, 0x9b, 0x80, 0xf8, 0xf6, 0x51, 0x95, 0x25, 0x5f, 0x30, 0xe0, 0x04, - 0x5b, 0x3a, 0x7a, 0x1e, 0xf8, 0x25, 0x32, 0xc0, 0x4c, 0xbd, 0xe1, 0xb3, 0xa3, 0x55, 0xcd, 0x30, - 0xad, 0x08, 0x5f, 0x89, 0x49, 0xc0, 0x84, 0x44, 0xd2, 0x81, 0xbc, 0x6f, 0xd7, 0x68, 0xd5, 0xf2, - 0xfc, 0xd2, 0xc9, 0x23, 0x93, 0x1e, 0xba, 0xdc, 0x24, 0x6f, 0xd4, 0x52, 0xc8, 0xaf, 0xf2, 0xd7, - 0x6e, 0xe4, 0x4b, 0x55, 0xf2, 0x7d, 0xb2, 0x53, 0x47, 0xf9, 0x3e, 0xd9, 0x49, 0xf1, 0xd4, 0x4d, - 0x4c, 0x02, 0x26, 0x45, 0x92, 0xcf, 0x1b, 0x70, 0x5a, 0x5c, 0x1b, 0x4e, 0xde, 0x19, 0x3f, 0x9d, - 0xd1, 0xce, 0xe5, 0xb1, 0xf7, 0x85, 0x34, 0x96, 0x98, 0x2e, 0x89, 0xbc, 0x0b, 0x13, 0x5e, 0xd4, - 0x27, 0xcc, 0xd3, 0x1c, 0xb2, 0x8e, 0x40, 0xcc, 0xbb, 0x2c, 0x52, 0x2c, 0x62, 0x20, 0x8c, 0xcb, - 0x22, 0xcf, 0x42, 0xb1, 0x23, 0x37, 0x37, 0xdb, 0x6f, 0xf3, 0x0c, 0x89, 0x61, 0x71, 0x08, 0x6f, - 0x84, 0x60, 0x8c, 0xd2, 0x90, 0x1b, 0x50, 0x0c, 0xdc, 0x16, 0xf5, 0x64, 0x56, 0x6e, 0x89, 0xcf, - 0x97, 0xf3, 0x69, 0x93, 0x7f, 0x53, 0x93, 0x85, 0xae, 0xb7, 0x10, 0xe6, 0x63, 0x94, 0x0f, 0xb3, - 0x04, 0xd5, 0xa3, 0x02, 0x1e, 0x37, 0x54, 0x1f, 0x8d, 0x5b, 0x82, 0x95, 0x28, 0x12, 0xe3, 0xb4, - 0x64, 0x15, 0xa6, 0x3b, 0x9e, 0xed, 0x7a, 0x76, 0xb0, 0xb7, 0xd8, 0xb2, 0x7c, 0x9f, 0x33, 0x98, - 0xe1, 0x0c, 0x74, 0x38, 0x61, 0x23, 0x49, 0x80, 0xbd, 0x65, 0xc8, 0x45, 0xc8, 0x2b, 0x60, 0xe9, - 0x31, 0xae, 0xde, 0xf1, 0x9d, 0x4c, 0x95, 0x45, 0x8d, 0xed, 0x73, 0x07, 0xf2, 0x5c, 0x96, 0x3b, - 0x90, 0xa4, 0x06, 0xe7, 0xac, 0x6e, 0xe0, 0xf2, 0xf4, 0xff, 0x78, 0x91, 0x4d, 0x77, 0x9b, 0x3a, - 0xa5, 0x0b, 0xfc, 0x78, 0xbb, 0x70, 0xb0, 0x3f, 0x7b, 0x6e, 0xe1, 0x1e, 0x74, 0x78, 0x4f, 0x2e, - 0xa4, 0x0d, 0x79, 0x2a, 0xef, 0x71, 0x96, 0x3e, 0x32, 0xc0, 0xb9, 0x12, 0xbf, 0x0c, 0xaa, 0xe2, - 0xd3, 0x02, 0x86, 0x5a, 0x04, 0xd9, 0x84, 0x62, 0xd3, 0xf5, 0x83, 0x85, 0x96, 0x6d, 0xf9, 0xd4, - 0x2f, 0x3d, 0xce, 0xe7, 0x49, 0xea, 0x91, 0x78, 0x59, 0x91, 0x85, 0xd3, 0xe4, 0x72, 0x58, 0x12, - 0xa3, 0x6c, 0x08, 0xe5, 0xde, 0xe6, 0x2e, 0x1f, 0x35, 0xd7, 0x09, 0xe8, 0x3b, 0x41, 0xe9, 0x3c, - 0x6f, 0xcb, 0x53, 0x69, 0x9c, 0x37, 0xdc, 0x5a, 0x25, 0x4e, 0x2d, 0x36, 0x86, 0x04, 0x10, 0x93, - 0x3c, 0x99, 0xc9, 0xdf, 0x71, 0x6b, 0x95, 0x0e, 0xad, 0x6e, 0x58, 0x41, 0xb5, 0x59, 0x9a, 0x8d, - 0x7b, 0x4d, 0x36, 0x22, 0x38, 0x8c, 0x51, 0x92, 0x2a, 0x8c, 0xb5, 0x45, 0xb2, 0x73, 0xe9, 0x89, - 0x01, 0xd4, 0x47, 0x99, 0x30, 0x2d, 0x0e, 0x1f, 0xf9, 0x81, 0x8a, 0x33, 0xf9, 0xba, 0x01, 0x93, - 0x89, 0x4c, 0x9e, 0xd2, 0x47, 0x07, 0x39, 0xf2, 0xe2, 0xbc, 0xca, 0x4f, 0xf1, 0x4e, 0x8a, 0x03, - 0xef, 0xf6, 0x82, 0x30, 0x59, 0x09, 0xd1, 0x7a, 0x7e, 0xdf, 0xa0, 0xf4, 0xe4, 0x40, 0xad, 0xe7, - 0x3c, 0x54, 0xeb, 0xf9, 0x07, 0x2a, 0xce, 0xe4, 0x69, 0x18, 0x0b, 0xec, 0x36, 0x75, 0xbb, 0x41, - 0xe9, 0xa9, 0x78, 0x1c, 0x60, 0x53, 0x80, 0x51, 0xe1, 0x67, 0x5e, 0x81, 0xe9, 0x1e, 0x85, 0xf8, - 0x81, 0xd2, 0xe1, 0x7f, 0xc0, 0x0c, 0xe0, 0x88, 0x09, 0x72, 0xd4, 0x86, 0xdb, 0x2a, 0x4c, 0xcb, - 0xc7, 0x69, 0x99, 0xb6, 0xd4, 0xea, 0xea, 0x87, 0xc0, 0x22, 0x81, 0x50, 0x4c, 0x12, 0x60, 0x6f, - 0x19, 0x36, 0x63, 0xab, 0xe2, 0x25, 0x28, 0x91, 0x7a, 0x3b, 0x12, 0x77, 0x52, 0x2d, 0x46, 0x70, - 0x18, 0xa3, 0x34, 0xff, 0xd8, 0x80, 0x89, 0xd8, 0xc9, 0x7d, 0xe4, 0x31, 0x8f, 0x15, 0x20, 0x6d, - 0xdb, 0xf3, 0x5c, 0x4f, 0xa8, 0x3f, 0x6b, 0x6c, 0x4f, 0xf2, 0xe5, 0x35, 0x63, 0x7e, 0xbd, 0x6d, - 0xad, 0x07, 0x8b, 0x29, 0x25, 0xcc, 0xff, 0x1c, 0x82, 0x30, 0x5b, 0x43, 0xdf, 0xe9, 0x34, 0xfa, - 0xde, 0xe9, 0x7c, 0x06, 0xf2, 0x77, 0x7c, 0xd7, 0xd9, 0x08, 0x6f, 0x7e, 0xea, 0xa1, 0x78, 0xad, - 0xb2, 0x7e, 0x9d, 0x53, 0x6a, 0x0a, 0x4e, 0xfd, 0xf6, 0x8a, 0xdd, 0x0a, 0x7a, 0xef, 0x47, 0xbe, - 0xf6, 0xba, 0x80, 0xa3, 0xa6, 0xe0, 0xcf, 0x4d, 0xed, 0x50, 0xed, 0x73, 0x0c, 0x9f, 0x9b, 0x62, - 0x40, 0x14, 0x38, 0x32, 0x0f, 0x05, 0xed, 0xb2, 0x94, 0x1e, 0x54, 0xdd, 0x53, 0xda, 0xb5, 0x89, - 0x21, 0x0d, 0xd7, 0xc4, 0xa4, 0x5b, 0x4e, 0x5a, 0x9f, 0x2b, 0x19, 0x75, 0xd8, 0x84, 0x6f, 0x4f, - 0x6c, 0xd3, 0x0a, 0x8c, 0x5a, 0x4a, 0x34, 0x3b, 0x27, 0xd7, 0x3f, 0x3b, 0xc7, 0xfc, 0xe2, 0x30, - 0x8c, 0xdd, 0xa4, 0x1e, 0xbf, 0xa1, 0xfd, 0x34, 0x8c, 0xed, 0x88, 0x9f, 0xc9, 0x54, 0x3e, 0x49, - 0x81, 0x0a, 0xcf, 0x3a, 0x60, 0xab, 0x6b, 0xb7, 0x6a, 0x4b, 0xe1, 0x6a, 0xd0, 0x1d, 0x50, 0x56, - 0x08, 0x0c, 0x69, 0x58, 0x81, 0x06, 0xd3, 0x4d, 0xdb, 0x6d, 0x3b, 0x48, 0x5e, 0x71, 0x5a, 0x55, - 0x08, 0x0c, 0x69, 0xc8, 0x53, 0x30, 0xda, 0xb0, 0x83, 0x4d, 0xab, 0x91, 0x0c, 0x25, 0xac, 0x72, - 0x28, 0x4a, 0x2c, 0xf7, 0x83, 0xdb, 0xc1, 0xa6, 0x47, 0xb9, 0x5f, 0xad, 0x27, 0xc5, 0x7f, 0x35, - 0x82, 0xc3, 0x18, 0x25, 0xaf, 0x92, 0x2b, 0x5b, 0x26, 0xfd, 0xd3, 0x61, 0x95, 0x14, 0x02, 0x43, - 0x1a, 0x36, 0x91, 0xaa, 0x6e, 0xbb, 0x63, 0xb7, 0x64, 0x6e, 0x48, 0x64, 0x22, 0x2d, 0x4a, 0x38, - 0x6a, 0x0a, 0x46, 0xcd, 0xb6, 0x82, 0xba, 0xeb, 0xb5, 0x93, 0xaf, 0xf5, 0x6c, 0x48, 0x38, 0x6a, - 0x0a, 0xf3, 0x26, 0x4c, 0x88, 0x25, 0xb1, 0xd8, 0xb2, 0xec, 0xf6, 0xea, 0x22, 0x59, 0xee, 0xc9, - 0x35, 0x7a, 0x3a, 0x25, 0xd7, 0xe8, 0x74, 0xac, 0x50, 0x4a, 0xce, 0xd1, 0x37, 0x87, 0x20, 0x7f, - 0x8c, 0x8f, 0x97, 0x55, 0x63, 0x8f, 0x97, 0x1d, 0xc1, 0x4b, 0x57, 0x69, 0x0f, 0x97, 0x6d, 0x27, - 0x1e, 0x2e, 0x5b, 0x1c, 0x30, 0x23, 0xee, 0x9e, 0x8f, 0x96, 0xfd, 0xd0, 0x00, 0x7d, 0x55, 0x82, - 0xef, 0x01, 0x65, 0xdb, 0xe1, 0xd1, 0xc5, 0x87, 0xdf, 0x99, 0x6e, 0xac, 0x33, 0xd7, 0x06, 0x6a, - 0x65, 0xb4, 0xea, 0x7d, 0x5f, 0x4d, 0xfc, 0xd0, 0x80, 0x52, 0x5a, 0x81, 0x63, 0x78, 0xa8, 0xcd, - 0x89, 0x3f, 0xd4, 0x76, 0xe5, 0xc8, 0x1a, 0xdb, 0xe7, 0xc1, 0xb6, 0xef, 0xf5, 0x69, 0x2a, 0x7f, - 0x2a, 0xed, 0x2d, 0x75, 0x06, 0x18, 0x03, 0x84, 0x1a, 0x04, 0xd7, 0xf4, 0xf3, 0xe3, 0x2d, 0x18, - 0xf5, 0x79, 0xb0, 0x4f, 0x8e, 0xed, 0x8b, 0x19, 0x0f, 0x03, 0xc6, 0x42, 0x3a, 0x80, 0xf8, 0x6f, - 0x94, 0x6c, 0xcd, 0xef, 0x18, 0x30, 0x7e, 0x8c, 0xcf, 0xec, 0x6d, 0xc5, 0x47, 0xef, 0xa5, 0x81, - 0x46, 0xaf, 0xcf, 0x88, 0x7d, 0xed, 0x31, 0x88, 0x3d, 0x6f, 0x47, 0x1c, 0x28, 0x28, 0x75, 0x4b, - 0xe5, 0xc6, 0xbe, 0x34, 0x90, 0x8f, 0x35, 0xdc, 0xfe, 0x15, 0xc4, 0xc7, 0x50, 0x44, 0x22, 0x6e, - 0x3a, 0x74, 0xa8, 0xb8, 0xe9, 0xb1, 0xfb, 0xef, 0xd3, 0xcd, 0xd7, 0x91, 0x87, 0x62, 0xbe, 0x9e, - 0x3b, 0x72, 0xf3, 0xf5, 0xf1, 0x87, 0x6f, 0xbe, 0x46, 0xfc, 0x7b, 0xb9, 0x01, 0xfc, 0x7b, 0xef, - 0xc2, 0xa9, 0x9d, 0xf0, 0xe8, 0xd5, 0xf3, 0x45, 0xbe, 0x1d, 0xf6, 0x74, 0xaa, 0xd1, 0xca, 0xd4, - 0x08, 0x3f, 0xa0, 0x4e, 0x10, 0x39, 0xb4, 0xc3, 0xfb, 0x78, 0x37, 0x53, 0xd8, 0x61, 0xaa, 0x90, - 0xa4, 0x77, 0x67, 0xec, 0x10, 0xde, 0x9d, 0x6f, 0x18, 0x70, 0xda, 0x4a, 0x7b, 0x27, 0x5b, 0x86, - 0x05, 0x5e, 0x1b, 0xc8, 0x3d, 0x17, 0xe3, 0x28, 0x7d, 0x65, 0x69, 0x28, 0x4c, 0xaf, 0x03, 0x53, - 0x56, 0x95, 0x87, 0x57, 0x04, 0xe1, 0xd3, 0x7d, 0xb3, 0x5f, 0x4d, 0x46, 0x56, 0x80, 0xf7, 0x76, - 0x65, 0x60, 0x35, 0xe3, 0x08, 0xa2, 0x2b, 0xc5, 0x01, 0xa2, 0x2b, 0x09, 0xd7, 0xdb, 0xf8, 0x11, - 0xb9, 0xde, 0x1c, 0x98, 0xb2, 0xdb, 0x56, 0x83, 0x6e, 0x74, 0x5b, 0x2d, 0x91, 0x6a, 0xe7, 0x97, - 0x26, 0x38, 0xef, 0xd4, 0x7c, 0xaf, 0x6b, 0x6e, 0xd5, 0x6a, 0x25, 0x5f, 0x63, 0xd4, 0x79, 0xb2, - 0x57, 0x12, 0x9c, 0xb0, 0x87, 0x37, 0x9b, 0x96, 0xfc, 0xb6, 0x16, 0x0d, 0x58, 0x6f, 0xf3, 0xc0, - 0x83, 0xfc, 0x27, 0x83, 0xcb, 0x21, 0x18, 0xa3, 0x34, 0xe4, 0x2a, 0x14, 0x6a, 0x8e, 0x2f, 0x53, - 0x5a, 0x27, 0xf9, 0x2e, 0xf5, 0x31, 0xb6, 0xb7, 0x2d, 0x5d, 0xaf, 0xe8, 0x64, 0xd6, 0x73, 0x29, - 0xd7, 0xfd, 0x34, 0x1e, 0xc3, 0xf2, 0x64, 0x8d, 0x33, 0x93, 0x4f, 0xf6, 0x88, 0x48, 0xc1, 0x85, - 0x3e, 0xde, 0xa3, 0xa5, 0xeb, 0xea, 0x85, 0xa1, 0x09, 0x29, 0x4e, 0x3e, 0xc4, 0x13, 0x72, 0x88, - 0x3c, 0x37, 0x37, 0x7d, 0xcf, 0xe7, 0xe6, 0x6e, 0xc0, 0xd9, 0x20, 0x68, 0xc5, 0x02, 0xd0, 0xf2, - 0xbe, 0x26, 0xbf, 0xbc, 0x9b, 0x13, 0x2f, 0x94, 0x6e, 0x6e, 0x5e, 0x4b, 0x23, 0xc1, 0x7e, 0x65, - 0x79, 0x24, 0x36, 0x68, 0x69, 0xef, 0xf1, 0xf9, 0x41, 0x22, 0xb1, 0x61, 0xa4, 0x5f, 0x46, 0x62, - 0x43, 0x00, 0x46, 0xa5, 0x90, 0xf5, 0x7e, 0x7e, 0xf3, 0x93, 0x7c, 0x8f, 0x79, 0x70, 0x2f, 0x78, - 0xd4, 0xf1, 0x7a, 0xea, 0x9e, 0x8e, 0xd7, 0x1e, 0x47, 0xf1, 0xe9, 0x07, 0x70, 0x14, 0xdf, 0xe6, - 0x57, 0x39, 0x57, 0x17, 0xa5, 0x93, 0x3d, 0x9b, 0xc6, 0xc6, 0xef, 0x6d, 0x88, 0x64, 0x09, 0xfe, - 0x13, 0x05, 0x4f, 0xb2, 0x01, 0xa7, 0x3a, 0x6e, 0xad, 0xc7, 0xcf, 0xcc, 0xbd, 0xea, 0x91, 0x0b, - 0xd5, 0x1b, 0x29, 0x34, 0x98, 0x5a, 0x92, 0x6f, 0xe0, 0x21, 0x9c, 0xdf, 0xdf, 0xcd, 0xc9, 0x0d, - 0x3c, 0x04, 0x63, 0x94, 0x26, 0xe9, 0x76, 0x7d, 0xf4, 0xa1, 0xb9, 0x5d, 0x67, 0x8e, 0xc1, 0xed, - 0xfa, 0xd8, 0xa1, 0xdd, 0xae, 0xbf, 0x0c, 0x27, 0x3b, 0x6e, 0x6d, 0xc9, 0xf6, 0xbd, 0x2e, 0xff, - 0x9f, 0x96, 0x72, 0xb7, 0xd6, 0xa0, 0x01, 0xf7, 0xdb, 0x16, 0x2f, 0x5d, 0x8a, 0x56, 0x52, 0xfc, - 0x55, 0xd5, 0x9c, 0xfc, 0xab, 0x2a, 0xbe, 0xc8, 0x13, 0xa5, 0xb8, 0xdd, 0xc3, 0xb3, 0x45, 0x52, - 0x90, 0x98, 0x26, 0x27, 0xea, 0xf5, 0xbd, 0xf0, 0xd0, 0xbc, 0xbe, 0xaf, 0x42, 0xde, 0x6f, 0x76, - 0x83, 0x9a, 0xbb, 0xeb, 0x70, 0x07, 0x7e, 0x41, 0xbf, 0xef, 0x9c, 0xaf, 0x48, 0xf8, 0xdd, 0xfd, - 0xd9, 0x29, 0xf5, 0x3b, 0x62, 0xe5, 0x4b, 0x08, 0xf9, 0x9d, 0x3e, 0x49, 0x94, 0xe6, 0x11, 0x27, - 0x51, 0x9e, 0x7d, 0xa0, 0x04, 0xca, 0x34, 0x6f, 0xf6, 0x13, 0x3f, 0x0d, 0xde, 0xec, 0xdf, 0x30, - 0x60, 0x62, 0x27, 0xea, 0x38, 0x91, 0x4e, 0xf6, 0x6c, 0xb1, 0xb9, 0x98, 0x0b, 0xa6, 0x6c, 0xb2, - 0xbd, 0x2a, 0x06, 0xba, 0x9b, 0x04, 0x60, 0x5c, 0x78, 0x6f, 0xa4, 0xf0, 0xc9, 0xe3, 0x8b, 0x14, - 0x0e, 0xee, 0x49, 0xff, 0xf7, 0x49, 0x38, 0x91, 0x78, 0xf7, 0x59, 0x3f, 0xf9, 0x60, 0x1c, 0xf6, - 0xc9, 0x87, 0xd8, 0x9b, 0x0c, 0x43, 0x0f, 0xf5, 0x4d, 0x86, 0xe1, 0xe3, 0x79, 0x93, 0x61, 0xea, - 0xa8, 0xde, 0x64, 0x88, 0xbc, 0x6c, 0x31, 0x72, 0x9f, 0x97, 0x2d, 0x16, 0x60, 0x52, 0xa5, 0xa7, - 0x51, 0x79, 0x27, 0x5f, 0xb8, 0x43, 0xf5, 0x5d, 0x8c, 0xc5, 0x38, 0x1a, 0x93, 0xf4, 0xe4, 0x97, - 0x20, 0xe7, 0xf0, 0x82, 0xa3, 0x03, 0xbc, 0xca, 0x14, 0x9f, 0x0e, 0x5c, 0xb9, 0x96, 0x0f, 0x23, - 0xa9, 0xcc, 0x85, 0x1c, 0x87, 0xdd, 0x55, 0x3f, 0x50, 0x08, 0x25, 0x6f, 0x40, 0xc9, 0xad, 0xd7, - 0x5b, 0xae, 0x55, 0x0b, 0xdf, 0x8d, 0x50, 0x1e, 0x5a, 0x91, 0x69, 0x7b, 0x41, 0x32, 0x28, 0xad, - 0xf7, 0xa1, 0xc3, 0xbe, 0x1c, 0x98, 0x0d, 0x34, 0x19, 0x7f, 0x2d, 0xc5, 0x2f, 0x15, 0x78, 0x33, - 0x7f, 0xe1, 0x28, 0x9a, 0x19, 0x7f, 0x9a, 0x45, 0x36, 0x38, 0xbc, 0x05, 0x13, 0xc7, 0x62, 0xb2, - 0x26, 0xc4, 0x83, 0x33, 0x9d, 0x34, 0x0b, 0xd1, 0x97, 0xf9, 0x63, 0xf7, 0xb2, 0x53, 0xcf, 0x4b, - 0x29, 0x67, 0x52, 0x6d, 0x4c, 0x1f, 0xfb, 0x70, 0x8e, 0xbe, 0x28, 0x91, 0x7f, 0x68, 0x2f, 0x4a, - 0xc4, 0xdf, 0x51, 0x9f, 0x38, 0x8e, 0x77, 0xd4, 0xc9, 0x8f, 0x53, 0x1f, 0x32, 0x11, 0x86, 0xd5, - 0x67, 0x8f, 0x62, 0xb0, 0x7f, 0xea, 0x1e, 0x33, 0xf9, 0x3d, 0x03, 0x66, 0xc4, 0x94, 0x4a, 0xfb, - 0x93, 0x1c, 0x99, 0x05, 0x76, 0x04, 0x0e, 0x79, 0x1e, 0xd7, 0xab, 0xc4, 0x04, 0x71, 0x0f, 0xf2, - 0x3d, 0x84, 0x93, 0x2f, 0xa7, 0x28, 0x02, 0x93, 0x03, 0xb8, 0x1d, 0xd2, 0x9f, 0xc7, 0x38, 0x79, - 0x70, 0x88, 0xb3, 0x7f, 0x66, 0x4f, 0xbc, 0x61, 0xd5, 0xf7, 0x05, 0xb5, 0x1b, 0xd1, 0x83, 0x2e, - 0xeb, 0x23, 0x66, 0xe1, 0xde, 0x13, 0x7d, 0xbd, 0xed, 0xf3, 0x06, 0x9c, 0x4a, 0xdb, 0x24, 0x52, - 0x6a, 0x51, 0x89, 0xd7, 0x62, 0x30, 0xbf, 0x66, 0xb4, 0x0e, 0x47, 0xf3, 0x22, 0xc8, 0x6f, 0x8f, - 0x46, 0x7c, 0xb1, 0x01, 0xed, 0xfc, 0x3c, 0xef, 0x39, 0x53, 0xde, 0x73, 0xec, 0x5f, 0x07, 0x72, - 0xc7, 0xf8, 0xaf, 0x03, 0xa3, 0x19, 0xfe, 0x75, 0x60, 0xec, 0x38, 0xff, 0x75, 0x20, 0x7f, 0xc8, - 0x7f, 0x1d, 0x28, 0xfc, 0xd4, 0xfc, 0xeb, 0x80, 0xf9, 0x81, 0x01, 0x53, 0xff, 0xdb, 0xff, 0x56, - 0xed, 0x07, 0x91, 0x60, 0xe8, 0x31, 0xfe, 0x9f, 0xda, 0x9d, 0x78, 0x78, 0x69, 0xf9, 0x48, 0x1a, - 0xd9, 0x27, 0xcc, 0xf4, 0x36, 0xa4, 0x19, 0xb8, 0x87, 0xbb, 0x90, 0x17, 0x4b, 0xd4, 0x19, 0x3a, - 0x74, 0xa2, 0xce, 0x7f, 0xa7, 0xf4, 0x2a, 0x3f, 0x37, 0xdf, 0x7d, 0x58, 0xff, 0x1f, 0x75, 0x2a, - 0xed, 0xff, 0xa3, 0x12, 0xff, 0x17, 0x95, 0xfc, 0xff, 0xa0, 0xa1, 0x87, 0xf7, 0xff, 0x41, 0xe5, - 0xb9, 0x6f, 0x7d, 0x70, 0xfe, 0x91, 0xef, 0x7c, 0x70, 0xfe, 0x91, 0xef, 0x7e, 0x70, 0xfe, 0x91, - 0xf7, 0x0e, 0xce, 0x1b, 0xdf, 0x3a, 0x38, 0x6f, 0x7c, 0xe7, 0xe0, 0xbc, 0xf1, 0xdd, 0x83, 0xf3, - 0xc6, 0x0f, 0x0e, 0xce, 0x1b, 0xbf, 0xf5, 0xcf, 0xe7, 0x1f, 0xf9, 0x6c, 0x5e, 0x35, 0xe6, 0x7f, - 0x02, 0x00, 0x00, 0xff, 0xff, 0x17, 0xa7, 0x93, 0x19, 0x70, 0x7d, 0x00, 0x00, + 0x3a, 0x2e, 0xb7, 0x9c, 0x24, 0xb8, 0x9b, 0x06, 0xc4, 0x5e, 0x46, 0xe4, 0x05, 0xc8, 0x77, 0x3c, + 0xb7, 0xc1, 0x0c, 0xcb, 0xd2, 0x4c, 0x6c, 0xba, 0xe4, 0x37, 0x24, 0xfc, 0x6e, 0xe4, 0x37, 0x6a, + 0x6a, 0xf2, 0x2f, 0x06, 0x4c, 0x7b, 0xd4, 0x77, 0xbb, 0x5e, 0x95, 0xfa, 0xba, 0x62, 0xa7, 0xf9, + 0xa6, 0x74, 0x33, 0x63, 0x2e, 0xb2, 0xda, 0x69, 0xe6, 0x30, 0xc9, 0x58, 0x9c, 0xb2, 0x54, 0x35, + 0xb8, 0x07, 0x7f, 0x37, 0x0d, 0xf8, 0x85, 0xef, 0xcf, 0xce, 0xf6, 0xa6, 0xbf, 0x6b, 0xe6, 0x6c, + 0xa6, 0xff, 0xea, 0xf7, 0x67, 0xa7, 0xd4, 0x77, 0xd8, 0x4f, 0x3d, 0xed, 0x62, 0x47, 0x48, 0xc7, + 0xad, 0x5d, 0xd9, 0x90, 0xfe, 0x65, 0x7d, 0x84, 0x6c, 0x30, 0x20, 0x0a, 0x1c, 0xb9, 0x08, 0xf9, + 0x9a, 0x45, 0xdb, 0xae, 0x43, 0x6b, 0xa5, 0x89, 0xd0, 0xf5, 0xb6, 0x24, 0x61, 0xa8, 0xb1, 0xe4, + 0x2d, 0x18, 0xb5, 0xb9, 0xfa, 0x5f, 0x3a, 0xc1, 0x27, 0x4c, 0x36, 0x33, 0x43, 0x58, 0x10, 0x22, + 0x21, 0x49, 0xfc, 0x46, 0xc9, 0x96, 0x54, 0x61, 0xcc, 0xed, 0x06, 0x5c, 0xc2, 0x24, 0x97, 0x90, + 0xcd, 0x61, 0xbd, 0x2e, 0x78, 0x88, 0x6c, 0x5b, 0xf9, 0x81, 0x8a, 0x33, 0x6b, 0x6f, 0xb5, 0x69, + 0xb7, 0x6a, 0x1e, 0x75, 0x4a, 0x53, 0xdc, 0x67, 0xc1, 0xdb, 0xbb, 0x28, 0x61, 0xa8, 0xb1, 0xe4, + 0xff, 0xc3, 0x84, 0xdb, 0x0d, 0xf8, 0xea, 0x65, 0xa3, 0xec, 0x97, 0xa6, 0x39, 0xf9, 0x34, 0xdb, + 0x4b, 0xd6, 0xa3, 0x08, 0x8c, 0xd3, 0xb1, 0xfd, 0xbc, 0xe9, 0xfa, 0x01, 0xfb, 0xe0, 0x5b, 0xda, + 0x99, 0xf8, 0x7e, 0x7e, 0x39, 0x82, 0xc3, 0x18, 0x25, 0xf9, 0x8a, 0x01, 0xd3, 0xed, 0xa4, 0xda, + 0x5e, 0x3a, 0xcb, 0x3b, 0x63, 0x25, 0xa3, 0xe2, 0x97, 0xe0, 0x26, 0x42, 0x8b, 0x3d, 0x60, 0xec, + 0x95, 0x4b, 0x7e, 0xcf, 0x80, 0xd3, 0xfe, 0x9e, 0x53, 0x6d, 0x7a, 0xae, 0x13, 0xaf, 0xd1, 0xa3, + 0xbc, 0x46, 0xd7, 0xb3, 0xaf, 0x98, 0x34, 0xae, 0xe5, 0x47, 0x0f, 0xf6, 0x67, 0x4f, 0xa7, 0xa2, + 0x30, 0xbd, 0x1e, 0x33, 0x4b, 0x70, 0x26, 0x7d, 0xd5, 0xdd, 0x4f, 0xe9, 0x1c, 0x8e, 0x2a, 0x9d, + 0x2b, 0xf0, 0x68, 0xdf, 0x4a, 0xb1, 0x2d, 0x5b, 0x29, 0x2f, 0x46, 0x7c, 0xcb, 0xee, 0xd1, 0x3c, + 0x4e, 0xc0, 0x78, 0xf4, 0x6a, 0x02, 0x0f, 0x2e, 0x44, 0xf2, 0x4d, 0x89, 0x0b, 0x05, 0xb7, 0x72, + 0x1c, 0xc1, 0x85, 0xf5, 0x4a, 0x4f, 0x70, 0x41, 0x83, 0x30, 0x94, 0x71, 0xbf, 0xe0, 0xc2, 0x9f, + 0x0f, 0x41, 0x58, 0x8e, 0x3c, 0x03, 0x79, 0xea, 0xd4, 0x3a, 0xae, 0xed, 0x04, 0xc9, 0xb0, 0xcc, + 0xb2, 0x84, 0xa3, 0xa6, 0x88, 0x84, 0x22, 0x86, 0xee, 0x19, 0x8a, 0x68, 0xc2, 0xa4, 0xc5, 0xd3, + 0x0f, 0x42, 0x1f, 0xf2, 0xf0, 0x91, 0x7c, 0xc8, 0x3a, 0x71, 0x34, 0xce, 0x05, 0x93, 0x6c, 0x99, + 0x24, 0x3f, 0x2c, 0xce, 0x25, 0x8d, 0x64, 0x92, 0x54, 0x89, 0x73, 0xc1, 0x24, 0x5b, 0xf3, 0x2f, + 0x87, 0x40, 0xed, 0x2b, 0x3f, 0x0d, 0x9e, 0x10, 0x62, 0xc2, 0xa8, 0x47, 0xfd, 0x6e, 0x2b, 0x90, + 0xfa, 0x2f, 0xdf, 0xbb, 0x91, 0x43, 0x50, 0x62, 0xd8, 0xb6, 0x4a, 0xdf, 0xb1, 0x83, 0x45, 0xb7, + 0xa6, 0xb4, 0x5e, 0xbe, 0xad, 0x2e, 0x4b, 0x18, 0x6a, 0xac, 0xb9, 0x0b, 0x13, 0xac, 0x5d, 0xad, + 0x16, 0x6d, 0x55, 0x02, 0xda, 0xf1, 0x49, 0x1d, 0x72, 0x3e, 0xfb, 0x31, 0x90, 0x29, 0x12, 0xe6, + 0x74, 0xd0, 0x4e, 0xc4, 0x65, 0xc2, 0xf8, 0xa2, 0x60, 0x6f, 0x7e, 0x7d, 0x08, 0x0a, 0xba, 0x47, + 0x0f, 0xe1, 0x87, 0x79, 0x12, 0xc6, 0x6a, 0xb4, 0x6e, 0xb1, 0x76, 0xcb, 0x15, 0x24, 0x82, 0xb3, + 0x1c, 0x84, 0x0a, 0x47, 0x66, 0xe3, 0x3e, 0xba, 0x42, 0x8f, 0x7f, 0x6e, 0x1b, 0x0a, 0xfc, 0xc7, + 0x8a, 0xba, 0x35, 0x93, 0x75, 0x86, 0xdc, 0x54, 0x5c, 0x84, 0x9b, 0x5d, 0x7f, 0x62, 0xc8, 0x3f, + 0x71, 0xdb, 0x25, 0x77, 0x98, 0xdb, 0x2e, 0xe6, 0x0a, 0x30, 0x95, 0x60, 0x75, 0x91, 0xbc, 0x04, + 0x79, 0x5f, 0x6e, 0x5e, 0xb2, 0x5f, 0x3e, 0xa2, 0x23, 0xb3, 0x12, 0x7e, 0x77, 0x7f, 0x76, 0x82, + 0x13, 0x2b, 0x00, 0xea, 0x22, 0xe6, 0x97, 0x46, 0x20, 0x62, 0x08, 0x1f, 0xa2, 0x87, 0x6b, 0x09, + 0xdf, 0xc6, 0xab, 0x59, 0x7d, 0x1b, 0xca, 0x61, 0x20, 0xa6, 0x66, 0xdc, 0x9d, 0xc1, 0xea, 0xd1, + 0xa4, 0xad, 0x8e, 0x1c, 0x1f, 0x5d, 0x8f, 0xcb, 0xb4, 0xd5, 0x41, 0x8e, 0xd1, 0x59, 0x04, 0x23, + 0x7d, 0xb3, 0x08, 0x6e, 0x43, 0xae, 0x61, 0x75, 0x1b, 0x54, 0xfa, 0xcf, 0xb3, 0xf9, 0xa7, 0x78, + 0x40, 0x54, 0x4c, 0x10, 0xfe, 0x13, 0x05, 0x4f, 0x36, 0x41, 0x9a, 0xca, 0xe5, 0x2b, 0x6d, 0xb8, + 0x6c, 0x13, 0x44, 0x3b, 0x8e, 0xc5, 0x04, 0xd1, 0x9f, 0x18, 0xf2, 0x67, 0x4a, 0x56, 0x55, 0xe4, + 0x96, 0xca, 0x60, 0xde, 0xa7, 0x33, 0x26, 0x43, 0x70, 0x1e, 0x62, 0x4d, 0xc8, 0x0f, 0x54, 0x9c, + 0xcd, 0x79, 0x28, 0x46, 0x6e, 0x71, 0xb0, 0xfe, 0xd5, 0x99, 0x93, 0x91, 0xfe, 0x5d, 0xb2, 0x02, + 0x0b, 0x39, 0xc6, 0xfc, 0xc6, 0x30, 0x68, 0x95, 0x36, 0x9a, 0xe6, 0x60, 0x55, 0x23, 0x29, 0xf2, + 0xb1, 0x9c, 0x2b, 0xd7, 0x41, 0x89, 0x65, 0x86, 0x5f, 0x9b, 0x7a, 0x0d, 0x7d, 0xf0, 0xca, 0xe5, + 0xaa, 0x0d, 0xbf, 0xb5, 0x28, 0x12, 0xe3, 0xb4, 0xec, 0xd8, 0x6b, 0x5b, 0x8e, 0x5d, 0xa7, 0x7e, + 0x90, 0x8c, 0x4b, 0xad, 0x49, 0x38, 0x6a, 0x0a, 0xb2, 0x0a, 0xd3, 0x3e, 0x0d, 0xd6, 0x77, 0x1d, + 0xea, 0xe9, 0x5c, 0x30, 0x99, 0x1c, 0xf8, 0xa8, 0xd2, 0xf3, 0x2b, 0x49, 0x02, 0xec, 0x2d, 0xc3, + 0x8d, 0x68, 0x91, 0x97, 0xa7, 0x73, 0xac, 0xe4, 0x6a, 0x0d, 0x8d, 0xe8, 0x04, 0x1e, 0x7b, 0x4a, + 0x30, 0x2e, 0x75, 0xcb, 0x6e, 0x75, 0x3d, 0x1a, 0x72, 0x19, 0x8d, 0x73, 0x59, 0x49, 0xe0, 0xb1, + 0xa7, 0x04, 0x0f, 0x69, 0xb7, 0xac, 0x86, 0x5f, 0x1a, 0x8b, 0x84, 0xb4, 0x19, 0x00, 0x05, 0xdc, + 0x7c, 0x7f, 0x08, 0x26, 0x90, 0x06, 0xde, 0x9e, 0xee, 0xb5, 0xd7, 0x21, 0xd7, 0xe2, 0x79, 0x82, + 0x46, 0xc6, 0x0b, 0x09, 0x5c, 0x88, 0x48, 0x24, 0x14, 0x9c, 0xc8, 0x12, 0x14, 0x3d, 0x26, 0x43, + 0x66, 0x71, 0x8a, 0x31, 0x34, 0xc3, 0xdb, 0x6a, 0x1a, 0x75, 0x37, 0xfe, 0x89, 0xd1, 0x62, 0xc4, + 0x81, 0xb1, 0x2d, 0x71, 0xc7, 0x42, 0xea, 0x19, 0xd9, 0xa6, 0xb7, 0xbc, 0xa7, 0xc1, 0xc3, 0x5f, + 0xea, 0xd2, 0xc6, 0xdd, 0xf0, 0x27, 0x2a, 0x21, 0xe6, 0xfb, 0x06, 0x40, 0x78, 0x4d, 0x8d, 0x6c, + 0x43, 0xde, 0x7f, 0x2e, 0xa6, 0xe1, 0x65, 0x4c, 0x80, 0x92, 0x4c, 0x22, 0xa9, 0x31, 0x12, 0x82, + 0x5a, 0xc0, 0xfd, 0xd4, 0xbb, 0x0f, 0x87, 0x41, 0x97, 0x7a, 0x40, 0xda, 0xdd, 0x53, 0x4c, 0x33, + 0x68, 0x84, 0xb7, 0x47, 0x34, 0x1d, 0x72, 0x28, 0x4a, 0x2c, 0xd3, 0x0e, 0x54, 0x7c, 0x5e, 0xae, + 0x16, 0xae, 0x1d, 0xa8, 0x50, 0x3e, 0x6a, 0x6c, 0x9a, 0xbe, 0x98, 0x7b, 0x68, 0xfa, 0xe2, 0xe8, + 0x03, 0xd1, 0x17, 0x99, 0x09, 0xe1, 0xb9, 0x2d, 0xba, 0x80, 0xd7, 0xa5, 0x77, 0x49, 0x9b, 0x10, + 0x28, 0xc0, 0xa8, 0xf0, 0xe4, 0x79, 0x28, 0x76, 0x7d, 0x5a, 0x59, 0xba, 0xba, 0xe8, 0xd1, 0x9a, + 0x2f, 0x53, 0x1f, 0xb4, 0xbf, 0xf1, 0x46, 0x88, 0xc2, 0x28, 0x9d, 0xf9, 0x2b, 0x06, 0x9c, 0xa8, + 0x54, 0x3d, 0xbb, 0x13, 0xe8, 0xcd, 0xf3, 0x3a, 0xbf, 0x9d, 0x13, 0x58, 0x6c, 0x29, 0xca, 0xa9, + 0xf8, 0x78, 0x9f, 0xa8, 0xaf, 0x20, 0x8a, 0xdd, 0x3b, 0x13, 0x20, 0x0c, 0x59, 0xb0, 0xa1, 0x16, + 0xdb, 0x73, 0x72, 0x4a, 0x54, 0x38, 0x14, 0x25, 0xd6, 0xbc, 0x03, 0x53, 0x15, 0xda, 0xb6, 0x3a, + 0x4d, 0x9e, 0x85, 0x21, 0x1c, 0xc0, 0xf3, 0x50, 0xf0, 0x15, 0x2c, 0x79, 0xc9, 0x4d, 0x13, 0x63, + 0x48, 0xc3, 0x54, 0x2f, 0xe1, 0xb9, 0x56, 0x79, 0x05, 0x45, 0xe5, 0x58, 0x16, 0xd1, 0x57, 0xf1, + 0xc3, 0xdc, 0x85, 0xf1, 0xb0, 0x38, 0xad, 0x93, 0x06, 0x4c, 0x56, 0x23, 0x41, 0x6c, 0xa4, 0xf5, + 0x23, 0xdf, 0x4b, 0xe2, 0x01, 0xfc, 0xc5, 0x38, 0x13, 0x4c, 0x72, 0x35, 0xff, 0xdd, 0x80, 0x49, + 0x2d, 0x59, 0x1a, 0x8a, 0x9d, 0xa4, 0x4f, 0x7d, 0x39, 0x63, 0xea, 0x63, 0xbc, 0xf3, 0xee, 0xe1, + 0x57, 0xef, 0x24, 0xfd, 0xea, 0xc7, 0x2d, 0xb1, 0xc7, 0xc2, 0xfd, 0x83, 0x21, 0xc8, 0xeb, 0xdc, + 0xcb, 0xd7, 0x21, 0xc7, 0xcf, 0xfb, 0xc1, 0xce, 0x00, 0xae, 0x3b, 0xa0, 0xe0, 0xc4, 0x58, 0x72, + 0x27, 0x65, 0xe6, 0x7b, 0x6e, 0x05, 0xa1, 0xf5, 0x5b, 0x5e, 0x80, 0x82, 0x13, 0xb9, 0x0a, 0xc3, + 0xd4, 0xa9, 0xc9, 0xc3, 0xe0, 0xe8, 0x0c, 0xf9, 0x35, 0xce, 0x65, 0xa7, 0x86, 0x8c, 0x0b, 0xbf, + 0xc0, 0xe3, 0x7a, 0x6d, 0x2b, 0x90, 0xaa, 0x62, 0x78, 0x81, 0x87, 0x43, 0x51, 0x62, 0xcd, 0x5f, + 0x1f, 0x82, 0xd1, 0x4a, 0x77, 0x8b, 0x1d, 0x6b, 0xbf, 0x6d, 0xc0, 0xc9, 0xa4, 0xbb, 0x3a, 0x9c, + 0x98, 0x97, 0x8f, 0xe5, 0x82, 0x19, 0xd2, 0x7a, 0xf9, 0x31, 0x59, 0x95, 0x93, 0x29, 0x48, 0x4c, + 0xab, 0x01, 0x53, 0x3b, 0xc3, 0x4c, 0xeb, 0xa1, 0x63, 0xc9, 0xb4, 0x9e, 0xe8, 0x97, 0x65, 0x6d, + 0xfe, 0xcd, 0x08, 0x80, 0xe8, 0x91, 0xf5, 0x4e, 0x70, 0x18, 0xdb, 0xe0, 0x05, 0x18, 0x57, 0x6f, + 0x5e, 0x5c, 0x0f, 0x63, 0x34, 0xda, 0x89, 0xb6, 0x1a, 0xc1, 0x61, 0x8c, 0x92, 0x99, 0x40, 0xd4, + 0x09, 0xbc, 0x3d, 0x71, 0xd8, 0x8d, 0xc4, 0x4d, 0xa0, 0x65, 0x8d, 0xc1, 0x08, 0x15, 0x99, 0x8b, + 0x99, 0xf1, 0x22, 0x1b, 0xfb, 0xc4, 0x3d, 0x4c, 0xf0, 0x17, 0x61, 0x42, 0x7f, 0xad, 0xd8, 0x2d, + 0x95, 0xe0, 0xa2, 0x55, 0xce, 0x8d, 0x28, 0x12, 0xe3, 0xb4, 0xe4, 0x65, 0x38, 0x11, 0x4f, 0x9b, + 0x94, 0xc7, 0xc2, 0x19, 0x59, 0xfa, 0x44, 0x3c, 0xdb, 0x12, 0x13, 0xd4, 0x6c, 0x16, 0xd6, 0xbc, + 0x3d, 0xec, 0x3a, 0xf2, 0x7c, 0xd0, 0xb3, 0x70, 0x89, 0x43, 0x51, 0x62, 0x59, 0x17, 0xb2, 0x92, + 0xd4, 0x13, 0x70, 0x1e, 0x72, 0xc8, 0x87, 0x5d, 0x58, 0x89, 0xe0, 0x30, 0x46, 0xc9, 0x24, 0x48, + 0xc3, 0x0c, 0xe2, 0xf3, 0x3c, 0x61, 0x5a, 0x75, 0xe0, 0x84, 0x1b, 0xd7, 0x85, 0x45, 0x2c, 0xe1, + 0x13, 0x87, 0xbc, 0xbf, 0x11, 0x2b, 0x2b, 0xf2, 0x12, 0x13, 0xaa, 0x73, 0x82, 0xbf, 0x79, 0x12, + 0xa6, 0x2b, 0xdd, 0x4e, 0xa7, 0x65, 0xd3, 0x9a, 0xb6, 0x7f, 0xcd, 0x57, 0x60, 0x52, 0xde, 0xc8, + 0xd1, 0xc7, 0xdf, 0x91, 0x2e, 0xd8, 0x9a, 0xfb, 0x6c, 0x3f, 0x8f, 0xbb, 0xff, 0x88, 0x93, 0x3c, + 0xb4, 0xb2, 0xba, 0x26, 0xa2, 0x47, 0x94, 0x58, 0x21, 0xa9, 0x67, 0xde, 0x6d, 0x15, 0xf0, 0x1d, + 0x24, 0x05, 0x82, 0xc7, 0x48, 0xc5, 0x2e, 0x18, 0x0d, 0x14, 0x9b, 0x3f, 0x32, 0x20, 0xdd, 0xb3, + 0x4a, 0xde, 0xee, 0x6d, 0xe6, 0xd2, 0x60, 0xcd, 0x94, 0xde, 0xdc, 0xfe, 0x2d, 0xb5, 0xe2, 0x2d, + 0x7d, 0x35, 0x7b, 0x4b, 0xa5, 0xa8, 0xde, 0xf6, 0xfe, 0x87, 0x01, 0xc5, 0xcd, 0xcd, 0x6b, 0xda, + 0x5e, 0x41, 0x38, 0xe3, 0x8b, 0x3b, 0x55, 0x0b, 0xf5, 0x80, 0x7a, 0x8b, 0x6e, 0xbb, 0xd3, 0xa2, + 0x7a, 0x72, 0xc8, 0x8b, 0x4e, 0x95, 0x54, 0x0a, 0xec, 0x53, 0x92, 0x5c, 0x81, 0x93, 0x51, 0x8c, + 0x34, 0xd7, 0x78, 0xa3, 0x72, 0x32, 0xf7, 0xb5, 0x17, 0x8d, 0x69, 0x65, 0x92, 0xac, 0xa4, 0xcd, + 0x26, 0x1f, 0x60, 0xe9, 0x61, 0x25, 0xd1, 0x98, 0x56, 0xc6, 0x5c, 0x87, 0x62, 0xe4, 0xf5, 0x1d, + 0xf2, 0x2a, 0x4c, 0x55, 0xdd, 0x76, 0xc7, 0xa3, 0xbe, 0x6f, 0xbb, 0xce, 0x35, 0xba, 0x43, 0x5b, + 0xb2, 0xc9, 0xfc, 0xc6, 0xd4, 0x62, 0x02, 0x87, 0x3d, 0xd4, 0xe6, 0x9f, 0x3d, 0x06, 0xfa, 0x9e, + 0xce, 0xcf, 0x6e, 0xfb, 0x64, 0x8a, 0x98, 0x57, 0x75, 0xe4, 0x2c, 0x37, 0x78, 0xe4, 0x4c, 0xef, + 0xc5, 0x89, 0xe8, 0x59, 0x23, 0x8c, 0x9e, 0x8d, 0x1e, 0x43, 0xf4, 0x4c, 0x2b, 0x81, 0x3d, 0x11, + 0xb4, 0x2f, 0x1b, 0x30, 0xee, 0xb8, 0x35, 0xaa, 0x74, 0x66, 0xee, 0x36, 0x28, 0x5e, 0x5a, 0x1f, + 0xa8, 0x13, 0x45, 0x58, 0x48, 0x72, 0x14, 0x81, 0x53, 0x7d, 0x50, 0x45, 0x51, 0x18, 0x13, 0x4d, + 0x56, 0x20, 0x6f, 0xd5, 0xeb, 0xb6, 0x63, 0x07, 0x7b, 0xf2, 0xc2, 0xd1, 0xb9, 0x34, 0x55, 0x7f, + 0x41, 0xd2, 0x08, 0xb3, 0x53, 0x7d, 0xa1, 0x2e, 0xcb, 0xec, 0x76, 0x7d, 0xbf, 0xb7, 0x30, 0x80, + 0xdd, 0xae, 0xf2, 0xac, 0x22, 0x4e, 0x24, 0x75, 0x17, 0x31, 0xbc, 0xee, 0x6b, 0xc2, 0xa8, 0x08, + 0xaa, 0xca, 0x27, 0x79, 0xb8, 0xd3, 0x52, 0x04, 0x5c, 0x51, 0x62, 0x48, 0x43, 0x39, 0xc5, 0x8b, + 0xbc, 0x73, 0xcb, 0x99, 0x43, 0x0a, 0xda, 0xcf, 0x9e, 0xee, 0x15, 0x27, 0xaf, 0x45, 0xed, 0xc4, + 0xf1, 0xc3, 0xd8, 0x89, 0x13, 0x7d, 0x6d, 0xc4, 0x06, 0x8c, 0xfa, 0xdc, 0x0a, 0xe5, 0x91, 0xe4, + 0xe2, 0xa5, 0xc5, 0x6c, 0x07, 0x49, 0xcc, 0x90, 0x15, 0xbd, 0x23, 0x60, 0x28, 0xd9, 0x13, 0x17, + 0xf2, 0x2a, 0xdc, 0x2d, 0x83, 0xd1, 0xd9, 0x4c, 0x9f, 0xa4, 0xcb, 0x51, 0x5d, 0x3b, 0x11, 0x50, + 0xd4, 0x42, 0xc8, 0x6d, 0x18, 0xae, 0x59, 0x0d, 0x19, 0x96, 0x7e, 0x35, 0xf3, 0x3d, 0x2a, 0x25, + 0x86, 0x5b, 0x15, 0x4b, 0x0b, 0xab, 0xc8, 0xb8, 0x92, 0xed, 0xf0, 0x9e, 0xf1, 0xd4, 0x20, 0x07, + 0x70, 0x5c, 0x05, 0x12, 0x36, 0x73, 0xcf, 0x4d, 0xe5, 0x65, 0x18, 0xdb, 0x71, 0x5b, 0xdd, 0xb6, + 0x8c, 0x67, 0x17, 0x2f, 0xcd, 0xa4, 0x8d, 0xf6, 0x4d, 0x4e, 0x12, 0x6e, 0x02, 0xe2, 0xdb, 0x47, + 0x55, 0x96, 0x7c, 0xc1, 0x80, 0x13, 0x6c, 0xe9, 0xe8, 0x79, 0xe0, 0x97, 0xc8, 0x00, 0x33, 0xf5, + 0x86, 0xcf, 0x8e, 0x56, 0x35, 0xc3, 0xb4, 0x22, 0x7c, 0x25, 0x26, 0x01, 0x13, 0x12, 0x49, 0x07, + 0xf2, 0xbe, 0x5d, 0xa3, 0x55, 0xcb, 0xf3, 0x4b, 0x27, 0x8f, 0x4d, 0x7a, 0xe8, 0x72, 0x93, 0xbc, + 0x51, 0x4b, 0x21, 0xbf, 0xcc, 0xdf, 0xc9, 0x91, 0x6f, 0x5c, 0xc9, 0x97, 0xcd, 0x4e, 0x1d, 0xe7, + 0xcb, 0x66, 0x27, 0xc5, 0x23, 0x39, 0x31, 0x09, 0x98, 0x14, 0x49, 0x3e, 0x6f, 0xc0, 0x69, 0x71, + 0xe1, 0x38, 0x79, 0xdb, 0xfc, 0x74, 0x46, 0x3b, 0x97, 0xc7, 0xde, 0x17, 0xd2, 0x58, 0x62, 0xba, + 0x24, 0xf2, 0x2e, 0x4c, 0x78, 0x51, 0x9f, 0x30, 0x4f, 0x73, 0xc8, 0x3a, 0x02, 0x31, 0xef, 0xb2, + 0x48, 0xb1, 0x88, 0x81, 0x30, 0x2e, 0x8b, 0x3c, 0x0b, 0xc5, 0x8e, 0xdc, 0xdc, 0x6c, 0xbf, 0xcd, + 0x33, 0x24, 0x86, 0xc5, 0x21, 0xbc, 0x11, 0x82, 0x31, 0x4a, 0x43, 0x6e, 0x40, 0x31, 0x70, 0x5b, + 0xd4, 0x93, 0xf9, 0xbc, 0x25, 0x3e, 0x5f, 0xce, 0xa7, 0x4d, 0xfe, 0x4d, 0x4d, 0x16, 0xba, 0xde, + 0x42, 0x98, 0x8f, 0x51, 0x3e, 0xcc, 0x12, 0x54, 0xcf, 0x11, 0x78, 0xdc, 0x50, 0x7d, 0x34, 0x6e, + 0x09, 0x56, 0xa2, 0x48, 0x8c, 0xd3, 0x92, 0x55, 0x98, 0xee, 0x78, 0xb6, 0xeb, 0xd9, 0xc1, 0xde, + 0x62, 0xcb, 0xf2, 0x7d, 0xce, 0x40, 0xa4, 0x34, 0xe9, 0x70, 0xc2, 0x46, 0x92, 0x00, 0x7b, 0xcb, + 0x90, 0x8b, 0x90, 0x57, 0xc0, 0xd2, 0x63, 0x5c, 0xbd, 0x1b, 0x17, 0xe9, 0x50, 0x02, 0x86, 0x1a, + 0xdb, 0xe7, 0xf6, 0xe4, 0xb9, 0x2c, 0xb7, 0x27, 0x49, 0x0d, 0xce, 0x59, 0xdd, 0xc0, 0xe5, 0x17, + 0x07, 0xe2, 0x45, 0x36, 0xdd, 0x6d, 0xea, 0x94, 0x2e, 0xf0, 0xe3, 0xed, 0xc2, 0xc1, 0xfe, 0xec, + 0xb9, 0x85, 0x7b, 0xd0, 0xe1, 0x3d, 0xb9, 0x90, 0x36, 0xe4, 0xa9, 0xbc, 0x01, 0x5a, 0xfa, 0xc8, + 0x00, 0xe7, 0x4a, 0xfc, 0x1a, 0xa9, 0x8a, 0x4f, 0x0b, 0x18, 0x6a, 0x11, 0x64, 0x13, 0x8a, 0x4d, + 0xd7, 0x0f, 0x16, 0x5a, 0xb6, 0xe5, 0x53, 0xbf, 0xf4, 0x38, 0x9f, 0x27, 0xa9, 0x47, 0xe2, 0x65, + 0x45, 0x16, 0x4e, 0x93, 0xcb, 0x61, 0x49, 0x8c, 0xb2, 0x21, 0x94, 0x7b, 0x9b, 0xbb, 0x7c, 0xd4, + 0x5c, 0x27, 0xa0, 0xef, 0x04, 0xa5, 0xf3, 0xbc, 0x2d, 0x4f, 0xa5, 0x71, 0xde, 0x70, 0x6b, 0x95, + 0x38, 0xb5, 0xd8, 0x18, 0x12, 0x40, 0x4c, 0xf2, 0x64, 0x26, 0x7f, 0xc7, 0xad, 0x55, 0x3a, 0xb4, + 0xba, 0x61, 0x05, 0xd5, 0x66, 0x69, 0x36, 0xee, 0x35, 0xd9, 0x88, 0xe0, 0x30, 0x46, 0x49, 0xaa, + 0x30, 0xd6, 0x16, 0x69, 0xd2, 0xa5, 0x27, 0x06, 0x50, 0x1f, 0x65, 0xaa, 0xb5, 0x38, 0x7c, 0xe4, + 0x07, 0x2a, 0xce, 0xe4, 0xeb, 0x06, 0x4c, 0x26, 0x32, 0x79, 0x4a, 0x1f, 0x1d, 0xe4, 0xc8, 0x8b, + 0xf3, 0x2a, 0x3f, 0xc5, 0x3b, 0x29, 0x0e, 0xbc, 0xdb, 0x0b, 0xc2, 0x64, 0x25, 0x44, 0xeb, 0xf9, + 0x4d, 0x85, 0xd2, 0x93, 0x03, 0xb5, 0x9e, 0xf3, 0x50, 0xad, 0xe7, 0x1f, 0xa8, 0x38, 0x93, 0xa7, + 0x61, 0x2c, 0xb0, 0xdb, 0xd4, 0xed, 0x06, 0xa5, 0xa7, 0xe2, 0x71, 0x80, 0x4d, 0x01, 0x46, 0x85, + 0x9f, 0x79, 0x05, 0xa6, 0x7b, 0x14, 0xe2, 0x23, 0x25, 0xd2, 0xff, 0x80, 0x19, 0xc0, 0x11, 0x13, + 0xe4, 0xb8, 0x0d, 0xb7, 0x55, 0x98, 0x96, 0xcf, 0xda, 0x32, 0x6d, 0xa9, 0xd5, 0xd5, 0x4f, 0x88, + 0x45, 0x02, 0xa1, 0x98, 0x24, 0xc0, 0xde, 0x32, 0x6c, 0xc6, 0x56, 0xc5, 0x1b, 0x52, 0x22, 0x69, + 0x77, 0x24, 0xee, 0xa4, 0x5a, 0x8c, 0xe0, 0x30, 0x46, 0x69, 0xfe, 0xa1, 0x01, 0x13, 0xb1, 0x93, + 0xfb, 0xd8, 0x63, 0x1e, 0x2b, 0x40, 0xda, 0xb6, 0xe7, 0xb9, 0x9e, 0x50, 0x7f, 0xd6, 0xd8, 0x9e, + 0xe4, 0xcb, 0x0b, 0xca, 0xfc, 0x62, 0xdc, 0x5a, 0x0f, 0x16, 0x53, 0x4a, 0x98, 0xff, 0x39, 0x04, + 0x61, 0xb6, 0x86, 0xbe, 0x0d, 0x6a, 0xf4, 0xbd, 0x0d, 0xfa, 0x0c, 0xe4, 0xef, 0xf8, 0xae, 0xb3, + 0x11, 0xde, 0x19, 0xd5, 0x43, 0xf1, 0x5a, 0x65, 0xfd, 0x3a, 0xa7, 0xd4, 0x14, 0x9c, 0xfa, 0xed, + 0x15, 0xbb, 0x15, 0xf4, 0xde, 0xac, 0x7c, 0xed, 0x75, 0x01, 0x47, 0x4d, 0xc1, 0x1f, 0xaa, 0xda, + 0xa1, 0xda, 0xe7, 0x18, 0x3e, 0x54, 0xc5, 0x80, 0x28, 0x70, 0x64, 0x1e, 0x0a, 0xda, 0x65, 0x29, + 0x3d, 0xa8, 0xba, 0xa7, 0xb4, 0x6b, 0x13, 0x43, 0x1a, 0xae, 0x89, 0x49, 0xb7, 0x9c, 0xb4, 0x3e, + 0x57, 0x32, 0xea, 0xb0, 0x09, 0xdf, 0x9e, 0xd8, 0xa6, 0x15, 0x18, 0xb5, 0x94, 0x68, 0x76, 0x4e, + 0xae, 0x7f, 0x76, 0x8e, 0xf9, 0xc5, 0x61, 0x18, 0xbb, 0x49, 0x3d, 0x7e, 0xb7, 0xfb, 0x69, 0x18, + 0xdb, 0x11, 0x3f, 0x93, 0xa9, 0x7c, 0x92, 0x02, 0x15, 0x9e, 0x75, 0xc0, 0x56, 0xd7, 0x6e, 0xd5, + 0x96, 0xc2, 0xd5, 0xa0, 0x3b, 0xa0, 0xac, 0x10, 0x18, 0xd2, 0xb0, 0x02, 0x0d, 0xa6, 0x9b, 0xb6, + 0xdb, 0x76, 0x90, 0xbc, 0x1c, 0xb5, 0xaa, 0x10, 0x18, 0xd2, 0x90, 0xa7, 0x60, 0xb4, 0x61, 0x07, + 0x9b, 0x56, 0x23, 0x19, 0x4a, 0x58, 0xe5, 0x50, 0x94, 0x58, 0xee, 0x07, 0xb7, 0x83, 0x4d, 0x8f, + 0x72, 0xbf, 0x5a, 0xcf, 0xe5, 0x80, 0xd5, 0x08, 0x0e, 0x63, 0x94, 0xbc, 0x4a, 0xae, 0x6c, 0x99, + 0xf4, 0x4f, 0x87, 0x55, 0x52, 0x08, 0x0c, 0x69, 0xd8, 0x44, 0xaa, 0xba, 0xed, 0x8e, 0xdd, 0x92, + 0xb9, 0x21, 0x91, 0x89, 0xb4, 0x28, 0xe1, 0xa8, 0x29, 0x18, 0x35, 0xdb, 0x0a, 0xea, 0xae, 0xd7, + 0x4e, 0xbe, 0xf3, 0xb3, 0x21, 0xe1, 0xa8, 0x29, 0xcc, 0x9b, 0x30, 0x21, 0x96, 0xc4, 0x62, 0xcb, + 0xb2, 0xdb, 0xab, 0x8b, 0x64, 0xb9, 0x27, 0xd7, 0xe8, 0xe9, 0x94, 0x5c, 0xa3, 0xd3, 0xb1, 0x42, + 0x29, 0x39, 0x47, 0xdf, 0x1c, 0x82, 0xfc, 0x43, 0x7c, 0xf6, 0xac, 0x1a, 0x7b, 0xf6, 0xec, 0x18, + 0xde, 0xc8, 0x4a, 0x7b, 0xf2, 0x6c, 0x3b, 0xf1, 0xe4, 0xd9, 0xe2, 0x80, 0x19, 0x71, 0xf7, 0x7c, + 0xee, 0xec, 0x87, 0x06, 0xe8, 0x4b, 0x16, 0x7c, 0x0f, 0x28, 0xdb, 0x0e, 0x8f, 0x2e, 0x3e, 0xf8, + 0xce, 0x74, 0x63, 0x9d, 0xb9, 0x36, 0x50, 0x2b, 0xa3, 0x55, 0xef, 0xfb, 0xde, 0xe2, 0x87, 0x06, + 0x94, 0xd2, 0x0a, 0x3c, 0x84, 0x27, 0xde, 0x9c, 0xf8, 0x13, 0x6f, 0x57, 0x8e, 0xad, 0xb1, 0x7d, + 0x9e, 0x7a, 0xfb, 0x5e, 0x9f, 0xa6, 0xf2, 0x47, 0xd6, 0xde, 0x52, 0x67, 0x80, 0x31, 0x40, 0xa8, + 0x41, 0x70, 0x4d, 0x3f, 0x3f, 0xde, 0x82, 0x51, 0x9f, 0x07, 0xfb, 0xe4, 0xd8, 0xbe, 0x98, 0xf1, + 0x30, 0x60, 0x2c, 0xa4, 0x03, 0x88, 0xff, 0x46, 0xc9, 0xd6, 0xfc, 0x8e, 0x01, 0xe3, 0x0f, 0xf1, + 0x81, 0xbe, 0xad, 0xf8, 0xe8, 0xbd, 0x34, 0xd0, 0xe8, 0xf5, 0x19, 0xb1, 0xaf, 0x3d, 0x06, 0xb1, + 0x87, 0xf1, 0x88, 0x03, 0x05, 0xa5, 0x6e, 0xa9, 0xdc, 0xd8, 0x97, 0x06, 0xf2, 0xb1, 0x86, 0xdb, + 0xbf, 0x82, 0xf8, 0x18, 0x8a, 0x48, 0xc4, 0x4d, 0x87, 0x0e, 0x15, 0x37, 0x7d, 0xe8, 0xfe, 0xfb, + 0x74, 0xf3, 0x75, 0xe4, 0x81, 0x98, 0xaf, 0xe7, 0x8e, 0xdd, 0x7c, 0x7d, 0xfc, 0xc1, 0x9b, 0xaf, + 0x11, 0xff, 0x5e, 0x6e, 0x00, 0xff, 0xde, 0xbb, 0x70, 0x6a, 0x27, 0x3c, 0x7a, 0xf5, 0x7c, 0x91, + 0xaf, 0x8e, 0x3d, 0x9d, 0x6a, 0xb4, 0x32, 0x35, 0xc2, 0x0f, 0xa8, 0x13, 0x44, 0x0e, 0xed, 0xf0, + 0x26, 0xdf, 0xcd, 0x14, 0x76, 0x98, 0x2a, 0x24, 0xe9, 0xdd, 0x19, 0x3b, 0x84, 0x77, 0xe7, 0x1b, + 0x06, 0x9c, 0xb6, 0xd2, 0x5e, 0xd8, 0x96, 0x61, 0x81, 0xd7, 0x06, 0x72, 0xcf, 0xc5, 0x38, 0x4a, + 0x5f, 0x59, 0x1a, 0x0a, 0xd3, 0xeb, 0xc0, 0x94, 0x55, 0xe5, 0xe1, 0x15, 0x41, 0xf8, 0x74, 0xdf, + 0xec, 0x57, 0x93, 0x91, 0x15, 0xe0, 0xbd, 0x5d, 0x19, 0x58, 0xcd, 0x38, 0x86, 0xe8, 0x4a, 0x71, + 0x80, 0xe8, 0x4a, 0xc2, 0xf5, 0x36, 0x7e, 0x4c, 0xae, 0x37, 0x07, 0xa6, 0xec, 0xb6, 0xd5, 0xa0, + 0x1b, 0xdd, 0x56, 0x4b, 0xa4, 0xda, 0xf9, 0xa5, 0x09, 0xce, 0x3b, 0x35, 0xdf, 0xeb, 0x9a, 0x5b, + 0xb5, 0x5a, 0xc9, 0x77, 0x1c, 0x75, 0x9e, 0xec, 0x95, 0x04, 0x27, 0xec, 0xe1, 0xcd, 0xa6, 0x25, + 0xbf, 0xad, 0x45, 0x03, 0xd6, 0xdb, 0x3c, 0xf0, 0x20, 0xff, 0x03, 0xe1, 0x72, 0x08, 0xc6, 0x28, + 0x0d, 0xb9, 0x0a, 0x85, 0x9a, 0xe3, 0xcb, 0x94, 0xd6, 0x49, 0xbe, 0x4b, 0x7d, 0x8c, 0xed, 0x6d, + 0x4b, 0xd7, 0x2b, 0x3a, 0x99, 0xf5, 0x5c, 0xca, 0x75, 0x3f, 0x8d, 0xc7, 0xb0, 0x3c, 0x59, 0xe3, + 0xcc, 0xe4, 0x63, 0x3f, 0x22, 0x52, 0x70, 0xa1, 0x8f, 0xf7, 0x68, 0xe9, 0xba, 0x7a, 0x9b, 0x68, + 0x42, 0x8a, 0x93, 0x4f, 0xf8, 0x84, 0x1c, 0x22, 0x0f, 0xd5, 0x4d, 0xdf, 0xf3, 0xa1, 0xba, 0x1b, + 0x70, 0x36, 0x08, 0x5a, 0xb1, 0x00, 0xb4, 0xbc, 0xe9, 0xc9, 0xaf, 0xfd, 0xe6, 0xc4, 0xdb, 0xa6, + 0x9b, 0x9b, 0xd7, 0xd2, 0x48, 0xb0, 0x5f, 0x59, 0x1e, 0x89, 0x0d, 0x5a, 0xda, 0x7b, 0x7c, 0x7e, + 0x90, 0x48, 0x6c, 0x18, 0xe9, 0x97, 0x91, 0xd8, 0x10, 0x80, 0x51, 0x29, 0x64, 0xbd, 0x9f, 0xdf, + 0xfc, 0x24, 0xdf, 0x63, 0x8e, 0xee, 0x05, 0x8f, 0x3a, 0x5e, 0x4f, 0xdd, 0xd3, 0xf1, 0xda, 0xe3, + 0x28, 0x3e, 0x7d, 0x04, 0x47, 0xf1, 0x6d, 0x7e, 0x95, 0x73, 0x75, 0x51, 0x3a, 0xd9, 0xb3, 0x69, + 0x6c, 0xfc, 0xde, 0x86, 0x48, 0x96, 0xe0, 0x3f, 0x51, 0xf0, 0x24, 0x1b, 0x70, 0xaa, 0xe3, 0xd6, + 0x7a, 0xfc, 0xcc, 0xdc, 0xab, 0x1e, 0xb9, 0x8a, 0xbd, 0x91, 0x42, 0x83, 0xa9, 0x25, 0xf9, 0x06, + 0x1e, 0xc2, 0xf9, 0xcd, 0xdf, 0x9c, 0xdc, 0xc0, 0x43, 0x30, 0x46, 0x69, 0x92, 0x6e, 0xd7, 0x47, + 0x1f, 0x98, 0xdb, 0x75, 0xe6, 0x21, 0xb8, 0x5d, 0x1f, 0x3b, 0xb4, 0xdb, 0xf5, 0x17, 0xe1, 0x64, + 0xc7, 0xad, 0x2d, 0xd9, 0xbe, 0xd7, 0xe5, 0xff, 0xf0, 0x52, 0xee, 0xd6, 0x1a, 0x34, 0xe0, 0x7e, + 0xdb, 0xe2, 0xa5, 0x4b, 0xd1, 0x4a, 0x8a, 0x3f, 0xb9, 0x9a, 0x93, 0x7f, 0x72, 0xc5, 0x17, 0x79, + 0xa2, 0x14, 0xb7, 0x7b, 0x78, 0xb6, 0x48, 0x0a, 0x12, 0xd3, 0xe4, 0x44, 0xbd, 0xbe, 0x17, 0x1e, + 0x98, 0xd7, 0xf7, 0x55, 0xc8, 0xfb, 0xcd, 0x6e, 0x50, 0x73, 0x77, 0x1d, 0xee, 0xc0, 0x2f, 0xe8, + 0x97, 0xa1, 0xf3, 0x15, 0x09, 0xbf, 0xbb, 0x3f, 0x3b, 0xa5, 0x7e, 0x47, 0xac, 0x7c, 0x09, 0x21, + 0xbf, 0xd5, 0x27, 0x89, 0xd2, 0x3c, 0xe6, 0x24, 0xca, 0xb3, 0x47, 0x4a, 0xa0, 0x4c, 0xf3, 0x66, + 0x3f, 0xf1, 0x93, 0xe0, 0xcd, 0xfe, 0x35, 0x03, 0x26, 0x76, 0xa2, 0x8e, 0x13, 0xe9, 0x64, 0xcf, + 0x16, 0x9b, 0x8b, 0xb9, 0x60, 0xca, 0x26, 0xdb, 0xab, 0x62, 0xa0, 0xbb, 0x49, 0x00, 0xc6, 0x85, + 0xf7, 0x46, 0x0a, 0x9f, 0x7c, 0x78, 0x91, 0xc2, 0xc1, 0x3d, 0xe9, 0x7f, 0x34, 0x05, 0x27, 0x12, + 0x2f, 0x46, 0xeb, 0xc7, 0x22, 0x8c, 0xc3, 0x3e, 0x16, 0x11, 0x7b, 0xcd, 0x61, 0xe8, 0x81, 0xbe, + 0xe6, 0x30, 0xfc, 0x70, 0x5e, 0x73, 0x98, 0x7a, 0x10, 0xaf, 0x39, 0x4c, 0x1f, 0xe9, 0x35, 0x87, + 0xc8, 0x6b, 0x1a, 0x23, 0xf7, 0x79, 0x4d, 0x63, 0x01, 0x26, 0x55, 0x62, 0x1b, 0x95, 0xb7, 0xf9, + 0x85, 0x23, 0x55, 0xdf, 0xe2, 0x58, 0x8c, 0xa3, 0x31, 0x49, 0x4f, 0x7e, 0x01, 0x72, 0x0e, 0x2f, + 0x38, 0x3a, 0xc0, 0x4b, 0x50, 0xf1, 0x89, 0xc4, 0xd5, 0x72, 0xf9, 0x18, 0x93, 0xca, 0x79, 0xc8, + 0x71, 0xd8, 0x5d, 0xf5, 0x03, 0x85, 0x50, 0xf2, 0x06, 0x94, 0xdc, 0x7a, 0xbd, 0xe5, 0x5a, 0xb5, + 0xf0, 0xc5, 0x09, 0xe5, 0xdb, 0x15, 0x39, 0xba, 0x17, 0x24, 0x83, 0xd2, 0x7a, 0x1f, 0x3a, 0xec, + 0xcb, 0x81, 0x59, 0x4f, 0x93, 0xf1, 0x17, 0x5a, 0xfc, 0x52, 0x81, 0x37, 0xf3, 0xe7, 0x8e, 0xa3, + 0x99, 0xf1, 0xe7, 0x60, 0x64, 0x83, 0xc3, 0xfb, 0x33, 0x71, 0x2c, 0x26, 0x6b, 0x42, 0x3c, 0x38, + 0xd3, 0x49, 0xb3, 0x2d, 0x7d, 0x99, 0x79, 0x76, 0x2f, 0x0b, 0xf7, 0xbc, 0x94, 0x72, 0x26, 0xd5, + 0x3a, 0xf5, 0xb1, 0x0f, 0xe7, 0xe8, 0x5b, 0x14, 0xf9, 0x07, 0xf6, 0x16, 0x45, 0xfc, 0xed, 0xf6, + 0x89, 0x87, 0xf1, 0x76, 0x3b, 0xf9, 0x71, 0xea, 0x13, 0x28, 0xc2, 0x24, 0xfb, 0xec, 0x71, 0x0c, + 0xf6, 0x4f, 0xdc, 0x33, 0x28, 0xbf, 0x63, 0xc0, 0x8c, 0x98, 0x52, 0x69, 0x7f, 0xcc, 0x23, 0xf3, + 0xc7, 0x8e, 0xc1, 0x95, 0xcf, 0x23, 0x82, 0x95, 0x98, 0x20, 0xee, 0x7b, 0xbe, 0x87, 0x70, 0xf2, + 0xe5, 0x14, 0x15, 0x62, 0x72, 0x00, 0x87, 0x45, 0xfa, 0xc3, 0x1a, 0x27, 0x0f, 0x0e, 0xa1, 0x35, + 0xcc, 0xec, 0x89, 0x77, 0xb3, 0xfa, 0xbe, 0xda, 0x76, 0x23, 0x7a, 0x44, 0x66, 0x7d, 0x38, 0x2d, + 0xdc, 0x7b, 0xa2, 0x2f, 0xc6, 0x7d, 0xde, 0x80, 0x53, 0x69, 0x9b, 0x44, 0x4a, 0x2d, 0x2a, 0xf1, + 0x5a, 0x0c, 0xe6, 0x11, 0x8d, 0xd6, 0xe1, 0x78, 0xde, 0x12, 0xf9, 0xcd, 0xd1, 0x88, 0x17, 0x37, + 0xa0, 0x9d, 0x9f, 0x65, 0x4c, 0x67, 0xca, 0x98, 0x8e, 0xfd, 0xd3, 0x41, 0xee, 0x21, 0xfe, 0xd3, + 0xc1, 0x68, 0x86, 0x7f, 0x3a, 0x18, 0x7b, 0x98, 0xff, 0x74, 0x90, 0x3f, 0xe4, 0x3f, 0x1d, 0x14, + 0x7e, 0x62, 0xfe, 0xe9, 0xc0, 0xfc, 0xc0, 0x80, 0xa9, 0xff, 0xed, 0x7f, 0xe5, 0xf6, 0x83, 0x48, + 0x18, 0xf5, 0x21, 0xfe, 0x87, 0xdb, 0x9d, 0x78, 0x60, 0x6a, 0xf9, 0x58, 0x1a, 0xd9, 0x27, 0x40, + 0xf5, 0x36, 0xa4, 0x99, 0xc6, 0x87, 0xbb, 0xca, 0x17, 0x4b, 0xf1, 0x19, 0x3a, 0x74, 0x8a, 0xcf, + 0x7f, 0xa7, 0xf4, 0x2a, 0x3f, 0x37, 0xdf, 0x7d, 0x50, 0xff, 0x59, 0x75, 0x2a, 0xed, 0x3f, 0xab, + 0x12, 0xff, 0x51, 0x95, 0xfc, 0xcf, 0xa2, 0xa1, 0x07, 0xf7, 0x9f, 0x45, 0xe5, 0xb9, 0x6f, 0x7d, + 0x70, 0xfe, 0x91, 0xef, 0x7c, 0x70, 0xfe, 0x91, 0xef, 0x7e, 0x70, 0xfe, 0x91, 0xf7, 0x0e, 0xce, + 0x1b, 0xdf, 0x3a, 0x38, 0x6f, 0x7c, 0xe7, 0xe0, 0xbc, 0xf1, 0xdd, 0x83, 0xf3, 0xc6, 0x0f, 0x0e, + 0xce, 0x1b, 0xbf, 0xf1, 0xcf, 0xe7, 0x1f, 0xf9, 0x6c, 0x5e, 0x35, 0xe6, 0x7f, 0x02, 0x00, 0x00, + 0xff, 0xff, 0xd8, 0xe3, 0x24, 0x73, 0xe4, 0x7d, 0x00, 0x00, } func (m *Amount) Marshal() (dAtA []byte, err error) { @@ -5301,6 +5303,13 @@ func (m *NodeStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i -= len(m.Progress) + copy(dAtA[i:], m.Progress) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Progress))) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xd2 if m.SynchronizationStatus != nil { { size, err := m.SynchronizationStatus.MarshalToSizedBuffer(dAtA[:i]) @@ -8179,6 +8188,13 @@ func (m *WorkflowStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i -= len(m.Progress) + copy(dAtA[i:], m.Progress) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Progress))) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x8a i = encodeVarintGenerated(dAtA, i, uint64(m.EstimatedDuration)) i-- dAtA[i] = 0x1 @@ -9541,6 +9557,8 @@ func (m *NodeStatus) Size() (n int) { l = m.SynchronizationStatus.Size() n += 2 + l + sovGenerated(uint64(l)) } + l = len(m.Progress) + n += 2 + l + sovGenerated(uint64(l)) return n } @@ -10554,6 +10572,8 @@ func (m *WorkflowStatus) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } n += 2 + sovGenerated(uint64(m.EstimatedDuration)) + l = len(m.Progress) + n += 2 + l + sovGenerated(uint64(l)) return n } @@ -11312,6 +11332,7 @@ func (this *NodeStatus) String() string { `MemoizationStatus:` + strings.Replace(this.MemoizationStatus.String(), "MemoizationStatus", "MemoizationStatus", 1) + `,`, `EstimatedDuration:` + fmt.Sprintf("%v", this.EstimatedDuration) + `,`, `SynchronizationStatus:` + strings.Replace(this.SynchronizationStatus.String(), "NodeSynchronizationStatus", "NodeSynchronizationStatus", 1) + `,`, + `Progress:` + fmt.Sprintf("%v", this.Progress) + `,`, `}`, }, "") return s @@ -12032,6 +12053,7 @@ func (this *WorkflowStatus) String() string { `StoredWorkflowSpec:` + strings.Replace(this.StoredWorkflowSpec.String(), "WorkflowSpec", "WorkflowSpec", 1) + `,`, `Synchronization:` + strings.Replace(this.Synchronization.String(), "SynchronizationStatus", "SynchronizationStatus", 1) + `,`, `EstimatedDuration:` + fmt.Sprintf("%v", this.EstimatedDuration) + `,`, + `Progress:` + fmt.Sprintf("%v", this.Progress) + `,`, `}`, }, "") return s @@ -19737,6 +19759,38 @@ func (m *NodeStatus) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 26: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Progress", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Progress = Progress(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -28698,6 +28752,38 @@ func (m *WorkflowStatus) Unmarshal(dAtA []byte) error { break } } + case 17: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Progress", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Progress = Progress(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/workflow/v1alpha1/generated.proto b/pkg/apis/workflow/v1alpha1/generated.proto index 3da10d1088c8..c8b7d2f34a6d 100644 --- a/pkg/apis/workflow/v1alpha1/generated.proto +++ b/pkg/apis/workflow/v1alpha1/generated.proto @@ -632,6 +632,9 @@ message NodeStatus { // EstimatedDuration in seconds. optional int64 estimatedDuration = 24; + // Progress to completion + optional string progress = 26; + // ResourcesDuration is indicative, but not accurate, resource duration. This is populated when the nodes completes. map resourcesDuration = 21; @@ -1452,6 +1455,9 @@ message WorkflowStatus { // EstimatedDuration in seconds. optional int64 estimatedDuration = 16; + // Progress to completion + optional string progress = 17; + // A human readable message indicating details about why the workflow is in this condition. optional string message = 4; diff --git a/pkg/apis/workflow/v1alpha1/openapi_generated.go b/pkg/apis/workflow/v1alpha1/openapi_generated.go index ac13898f6411..02c40101df18 100644 --- a/pkg/apis/workflow/v1alpha1/openapi_generated.go +++ b/pkg/apis/workflow/v1alpha1/openapi_generated.go @@ -2091,6 +2091,13 @@ func schema_pkg_apis_workflow_v1alpha1_NodeStatus(ref common.ReferenceCallback) Format: "int32", }, }, + "progress": { + SchemaProps: spec.SchemaProps{ + Description: "Progress to completion", + Type: []string{"string"}, + Format: "", + }, + }, "resourcesDuration": { SchemaProps: spec.SchemaProps{ Description: "ResourcesDuration is indicative, but not accurate, resource duration. This is populated when the nodes completes.", @@ -4775,6 +4782,13 @@ func schema_pkg_apis_workflow_v1alpha1_WorkflowStatus(ref common.ReferenceCallba Format: "int32", }, }, + "progress": { + SchemaProps: spec.SchemaProps{ + Description: "Progress to completion", + Type: []string{"string"}, + Format: "", + }, + }, "message": { SchemaProps: spec.SchemaProps{ Description: "A human readable message indicating details about why the workflow is in this condition.", diff --git a/pkg/apis/workflow/v1alpha1/progress.go b/pkg/apis/workflow/v1alpha1/progress.go new file mode 100644 index 000000000000..82ea054078da --- /dev/null +++ b/pkg/apis/workflow/v1alpha1/progress.go @@ -0,0 +1,44 @@ +package v1alpha1 + +import ( + "fmt" + "strconv" + "strings" +) + +// Progress in N/M format. N is number of task complete. M is number of tasks. +type Progress string + +func NewProgress(n, m int64) (Progress, bool) { + return ParseProgress(fmt.Sprintf("%v/%v", n, m)) +} + +func ParseProgress(s string) (Progress, bool) { + v := Progress(s) + return v, v.IsValid() +} + +func (in Progress) parts() []string { + return strings.SplitN(string(in), "/", 2) +} + +func (in Progress) N() int64 { + return parseInt64(in.parts()[0]) +} + +func (in Progress) M() int64 { + return parseInt64(in.parts()[1]) +} + +func (in Progress) Add(x Progress) Progress { + return Progress(fmt.Sprintf("%v/%v", in.N()+x.N(), in.M()+x.M())) +} + +func (in Progress) IsValid() bool { + return in != "" && in.N() >= 0 && in.N() <= in.M() && in.M() > 0 +} + +func parseInt64(s string) int64 { + v, _ := strconv.ParseInt(s, 10, 64) + return v +} diff --git a/pkg/apis/workflow/v1alpha1/progress_test.go b/pkg/apis/workflow/v1alpha1/progress_test.go new file mode 100644 index 000000000000..fe55b4fa765a --- /dev/null +++ b/pkg/apis/workflow/v1alpha1/progress_test.go @@ -0,0 +1,28 @@ +package v1alpha1 + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestProgress(t *testing.T) { + t.Run("ParseProgress", func(t *testing.T) { + _, ok := ParseProgress("") + assert.False(t, ok) + progress, ok := ParseProgress("0/1") + assert.True(t, ok) + assert.Equal(t, Progress("0/1"), progress) + }) + t.Run("IsValid", func(t *testing.T) { + assert.False(t, Progress("").IsValid()) + assert.False(t, Progress("/0").IsValid()) + assert.False(t, Progress("0/").IsValid()) + assert.False(t, Progress("0/0").IsValid()) + assert.False(t, Progress("1/0").IsValid()) + assert.True(t, Progress("0/1").IsValid()) + }) + t.Run("Add", func(t *testing.T) { + assert.Equal(t, Progress("1/2"), Progress("0/0").Add("1/2")) + }) +} diff --git a/pkg/apis/workflow/v1alpha1/workflow_types.go b/pkg/apis/workflow/v1alpha1/workflow_types.go index ca9476ffa8fb..3cc747935316 100644 --- a/pkg/apis/workflow/v1alpha1/workflow_types.go +++ b/pkg/apis/workflow/v1alpha1/workflow_types.go @@ -68,15 +68,6 @@ const ( NodeTypeSuspend NodeType = "Suspend" ) -func (t NodeType) IsLeaf() bool { - switch t { - case NodeTypePod, NodeTypeRetry, NodeTypeSkipped, NodeTypeSuspend: - return true - default: - return false - } -} - // PodGCStrategy is the strategy when to delete completed pods for GC. type PodGCStrategy string @@ -1092,6 +1083,9 @@ type WorkflowStatus struct { // EstimatedDuration in seconds. EstimatedDuration EstimatedDuration `json:"estimatedDuration,omitempty" protobuf:"varint,16,opt,name=estimatedDuration,casttype=EstimatedDuration"` + // Progress to completion + Progress Progress `json:"progress,omitempty" protobuf:"bytes,17,opt,name=progress,casttype=Progress"` + // A human readable message indicating details about why the workflow is in this condition. Message string `json:"message,omitempty" protobuf:"bytes,4,opt,name=message"` @@ -1356,6 +1350,9 @@ type NodeStatus struct { // EstimatedDuration in seconds. EstimatedDuration EstimatedDuration `json:"estimatedDuration,omitempty" protobuf:"varint,24,opt,name=estimatedDuration,casttype=EstimatedDuration"` + // Progress to completion + Progress Progress `json:"progress,omitempty" protobuf:"bytes,26,opt,name=progress,casttype=Progress"` + // ResourcesDuration is indicative, but not accurate, resource duration. This is populated when the nodes completes. ResourcesDuration ResourcesDuration `json:"resourcesDuration,omitempty" protobuf:"bytes,21,opt,name=resourcesDuration"` @@ -1531,10 +1528,6 @@ func (n NodeStatus) GetDuration() time.Duration { return n.FinishedAt.Sub(n.StartedAt.Time) } -func (in *NodeStatus) IsLeaf() bool { - return in.Type.IsLeaf() -} - // S3Bucket contains the access information required for interfacing with an S3 bucket type S3Bucket struct { // Endpoint is the hostname of the bucket endpoint diff --git a/test/e2e/progress_test.go b/test/e2e/progress_test.go new file mode 100644 index 000000000000..ea2ffbc292ef --- /dev/null +++ b/test/e2e/progress_test.go @@ -0,0 +1,55 @@ +// +build e2e + +package e2e + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/suite" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + wfv1 "github.com/argoproj/argo/pkg/apis/workflow/v1alpha1" + "github.com/argoproj/argo/test/e2e/fixtures" +) + +type ProgressSuite struct { + fixtures.E2ESuite +} + +func (s *ProgressSuite) TestDefaultProgress() { + s.Given(). + Workflow("@testdata/basic-workflow.yaml"). + When(). + SubmitWorkflow(). + WaitForWorkflow(). + Then(). + ExpectWorkflow(func(t *testing.T, metadata *metav1.ObjectMeta, status *wfv1.WorkflowStatus) { + assert.Equal(t, wfv1.NodeSucceeded, status.Phase) + assert.Equal(t, wfv1.Progress("1/1"), status.Progress) + assert.Equal(t, wfv1.Progress("1/1"), status.Nodes[metadata.Name].Progress) + }) +} + +func (s *ProgressSuite) TestLoggedProgress() { + s.Given(). + Workflow("@testdata/progress-workflow.yaml"). + When(). + SubmitWorkflow(). + WaitForWorkflow(). + Then(). + ExpectWorkflow(func(t *testing.T, metadata *metav1.ObjectMeta, status *wfv1.WorkflowStatus) { + assert.Equal(t, wfv1.NodeSucceeded, status.Phase) + assert.Equal(t, wfv1.Progress("50/100"), status.Progress) + // DAG + assert.Equal(t, wfv1.Progress("50/100"), status.Nodes[metadata.Name].Progress) + // Pod + podNode := status.Nodes.FindByDisplayName("progress") + assert.Equal(t, wfv1.Progress("50/100"), podNode.Progress) + assert.Equal(t, "my-message", podNode.Message) + }) +} + +func TestProgressSuite(t *testing.T) { + suite.Run(t, new(ProgressSuite)) +} diff --git a/test/e2e/testdata/progress-workflow.yaml b/test/e2e/testdata/progress-workflow.yaml new file mode 100644 index 000000000000..c659971a2b4b --- /dev/null +++ b/test/e2e/testdata/progress-workflow.yaml @@ -0,0 +1,21 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Workflow +metadata: + generateName: progress- + labels: + argo-e2e: "true" +spec: + entrypoint: main + templates: + - name: main + dag: + tasks: + - name: progress + template: progress + - name: progress + container: + image: argoproj/argosay:v2 + args: + - echo + - '#argo progress=50/100 message="my-message"' + diff --git a/ui/src/app/shared/services/workflows-service.ts b/ui/src/app/shared/services/workflows-service.ts index 9a17c0de0f94..fc68718fd9f8 100644 --- a/ui/src/app/shared/services/workflows-service.ts +++ b/ui/src/app/shared/services/workflows-service.ts @@ -36,6 +36,7 @@ export class WorkflowsService { 'items.status.finishedAt', 'items.status.startedAt', 'items.status.estimatedDuration', + 'items.status.progress', 'items.spec.suspend' ]; params.push(`fields=${fields.join(',')}`); @@ -78,6 +79,7 @@ export class WorkflowsService { 'result.object.status.phase', 'result.object.status.startedAt', 'result.object.status.estimatedDuration', + 'result.object.status.progress', 'result.type', 'result.object.metadata.labels', 'result.object.spec.suspend' diff --git a/ui/src/app/workflows/components/workflow-node-info/workflow-node-info.tsx b/ui/src/app/workflows/components/workflow-node-info/workflow-node-info.tsx index 678a1a520b88..3a837c9a31eb 100644 --- a/ui/src/app/workflows/components/workflow-node-info/workflow-node-info.tsx +++ b/ui/src/app/workflows/components/workflow-node-info/workflow-node-info.tsx @@ -64,6 +64,7 @@ export const WorkflowNodeSummary = (props: Props) => { title: 'DURATION', value: {now => } }, + {title: 'PROGRESS', value: props.node.progress || '-'}, { title: 'MEMOIZATION', value: ( diff --git a/ui/src/app/workflows/components/workflow-summary-panel.tsx b/ui/src/app/workflows/components/workflow-summary-panel.tsx index 300fe6cc433b..eaeb6dd59db8 100644 --- a/ui/src/app/workflows/components/workflow-summary-panel.tsx +++ b/ui/src/app/workflows/components/workflow-summary-panel.tsx @@ -46,7 +46,8 @@ export const WorkflowSummaryPanel = (props: {workflow: Workflow}) => ( estimatedDuration={props.workflow.status.estimatedDuration} /> ) - } + }, + {title: 'Progress', value: props.workflow.status.progress || '-'} ]; const creator = props.workflow.metadata.labels[labels.creator]; if (creator) { diff --git a/ui/src/app/workflows/components/workflows-list/workflows-list.tsx b/ui/src/app/workflows/components/workflows-list/workflows-list.tsx index da0c23f02baf..f7d0910d4302 100644 --- a/ui/src/app/workflows/components/workflows-list/workflows-list.tsx +++ b/ui/src/app/workflows/components/workflows-list/workflows-list.tsx @@ -314,6 +314,7 @@ export class WorkflowsList extends BasePage, State> {
STARTED
FINISHED
DURATION
+
PROGRESS
DETAILS
diff --git a/ui/src/app/workflows/components/workflows-row/workflows-row.tsx b/ui/src/app/workflows/components/workflows-row/workflows-row.tsx index 8d3115095788..d554ec80938a 100644 --- a/ui/src/app/workflows/components/workflows-row/workflows-row.tsx +++ b/ui/src/app/workflows/components/workflows-row/workflows-row.tsx @@ -59,6 +59,7 @@ export class WorkflowsRow extends React.Component {() => } +
{wf.status.progress || '-'}
0 { + if strings.Contains(line, "#argo") { + log.Info("`#argo` appeared in the first 10 logs lines, continuing progress monitoring") + countDown = -1 + } else { + countDown-- + } + } + if v := messageRegexp.FindStringSubmatch(line); len(v) == 2 { + message := v[1] + log.WithField("message", message).Info() + we.annotations[common.AnnotationKeyNodeMessage] = message + } + if v := progressRegexp.FindStringSubmatch(line); len(v) == 2 { + progress, ok := wfv1.ParseProgress(v[1]) + if ok { + log.WithField("progress", progress).Info() + we.annotations[common.AnnotationKeyProgress] = string(progress) + } + } + } + } +} + // monitorAnnotations starts a goroutine which monitors for any changes to the pod annotations. // Emits an event on the returned channel upon any updates func (we *WorkflowExecutor) monitorAnnotations(ctx context.Context) <-chan struct{} { diff --git a/workflow/progress/updater.go b/workflow/progress/updater.go new file mode 100644 index 000000000000..e6640d7d0748 --- /dev/null +++ b/workflow/progress/updater.go @@ -0,0 +1,83 @@ +package progress + +import ( + apiv1 "k8s.io/api/core/v1" + "k8s.io/client-go/tools/cache" + + wfv1 "github.com/argoproj/argo/pkg/apis/workflow/v1alpha1" + "github.com/argoproj/argo/workflow/common" +) + +func UpdateProgress(podInformer cache.SharedIndexInformer, wf *wfv1.Workflow) bool { + updated := false + wf.Status.Progress = "0/0" + for nodeID, node := range wf.Status.Nodes { + if node.Type != wfv1.NodeTypePod { + continue + } + progress := podProgress(podInformer, wf.Namespace, nodeID, node.Progress) + // bit of a cheat, we kind of assume `0/1` is always set by the controller, not the pod + // and that if it is fulfilled, it should be complete + if node.Fulfilled() { + if progress == "" || progress == "0/1" { + progress = "1/1" + } + } else if progress == "" { + progress = "0/1" + } + if progress.IsValid() && node.Progress != progress { + node.Progress = progress + wf.Status.Nodes[nodeID] = node + updated = true + } + wf.Status.Progress = wf.Status.Progress.Add(progress) + } + for nodeID, node := range wf.Status.Nodes { + if node.Type == wfv1.NodeTypePod { + continue + } + progress := sumProgress(wf, node, make(map[string]bool)) + if progress.IsValid() && node.Progress != progress { + node.Progress = progress + wf.Status.Nodes[nodeID] = node + updated = true + } + + } + return updated +} + +func sumProgress(wf *wfv1.Workflow, node wfv1.NodeStatus, visited map[string]bool) wfv1.Progress { + progress := wfv1.Progress("0/0") + for _, childNodeID := range node.Children { + if visited[childNodeID] { + continue + } + visited[childNodeID] = true + // this will tolerate missing child (will be "") and therefore ignored + child := wf.Status.Nodes[childNodeID] + progress = progress.Add(sumProgress(wf, child, visited)) + if child.Type == wfv1.NodeTypePod { + v := child.Progress + if v.IsValid() { + progress = progress.Add(v) + } + } + } + return progress +} + +func podProgress(podInformer cache.SharedIndexInformer, namespace, name string, progress wfv1.Progress) wfv1.Progress { + // for pods, lets see what the annotation says pod can get deleted of course, so + // can be empty and return "", even it previously had a value + obj, _, _ := podInformer.GetStore().GetByKey(namespace + "/" + name) + if pod, ok := obj.(*apiv1.Pod); ok { + if annotation, ok := pod.Annotations[common.AnnotationKeyProgress]; ok { + v, ok := wfv1.ParseProgress(annotation) + if ok { + return v + } + } + } + return progress +} diff --git a/workflow/progress/updater_test.go b/workflow/progress/updater_test.go new file mode 100644 index 000000000000..2701ab0ca495 --- /dev/null +++ b/workflow/progress/updater_test.go @@ -0,0 +1,41 @@ +package progress + +import ( + "testing" + + "github.com/stretchr/testify/assert" + corev1 "k8s.io/api/core/v1" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + wfv1 "github.com/argoproj/argo/pkg/apis/workflow/v1alpha1" + testutil "github.com/argoproj/argo/test/util" + "github.com/argoproj/argo/workflow/common" +) + +func TestUpdator(t *testing.T) { + wf := &wfv1.Workflow{ + ObjectMeta: metav1.ObjectMeta{Namespace: "my-ns"}, + Status: wfv1.WorkflowStatus{ + Nodes: wfv1.Nodes{ + "pod-1": wfv1.NodeStatus{Phase: wfv1.NodeSucceeded, Type: wfv1.NodeTypePod}, + "pod-2": wfv1.NodeStatus{Type: wfv1.NodeTypePod}, + "pod-3": wfv1.NodeStatus{Type: wfv1.NodeTypePod}, + "wf": wfv1.NodeStatus{Children: []string{"pod-1", "pod-2", "pod-3"}}, + }, + }, + } + podInformer := testutil.NewSharedIndexInformer() + podInformer.Indexer.SetByKey("my-ns/pod-3", &corev1.Pod{ + ObjectMeta: metav1.ObjectMeta{ + Annotations: map[string]string{ + common.AnnotationKeyProgress: "50/100", + }, + }, + }) + assert.True(t, UpdateProgress(podInformer, wf)) + assert.Equal(t, wfv1.Progress("1/1"), wf.Status.Nodes["pod-1"].Progress) + assert.Equal(t, wfv1.Progress("0/1"), wf.Status.Nodes["pod-2"].Progress) + assert.Equal(t, wfv1.Progress("50/100"), wf.Status.Nodes["pod-3"].Progress) + assert.Equal(t, wfv1.Progress("51/102"), wf.Status.Nodes["wf"].Progress) + assert.Equal(t, wfv1.Progress("51/102"), wf.Status.Progress) +}