From 79217bc89e892ee82bdd5018b2bba65425924d36 Mon Sep 17 00:00:00 2001 From: Adam Gilat Date: Fri, 3 Apr 2020 23:52:12 +0300 Subject: [PATCH] feat(archive): allow specifying a compression level (#2575) --- api/openapi-spec/swagger.json | 9 +- examples/README.md | 30 + examples/artifact-disable-archive.yaml | 16 +- .../cluster-workflow-template.swagger.json | 7 + .../cronworkflow/cron-workflow.swagger.json | 7 + pkg/apiclient/workflow/workflow.swagger.json | 7 + .../workflow-archive.swagger.json | 7 + .../workflow-template.swagger.json | 7 + pkg/apis/workflow/v1alpha1/generated.pb.go | 789 +++++++++--------- pkg/apis/workflow/v1alpha1/generated.proto | 3 + pkg/apis/workflow/v1alpha1/workflow_types.go | 6 +- .../v1alpha1/zz_generated.deepcopy.go | 7 +- util/archive/archive.go | 7 +- util/archive/archive_test.go | 123 ++- workflow/executor/docker/docker.go | 17 +- workflow/executor/executor.go | 15 +- workflow/executor/k8sapi/k8sapi.go | 2 +- workflow/executor/kubelet/kubelet.go | 2 +- .../mocks/ContainerRuntimeExecutor.go | 10 +- workflow/executor/pns/pns.go | 4 +- 20 files changed, 651 insertions(+), 424 deletions(-) diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 5b64db236b60..28f5abc85700 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -2838,7 +2838,14 @@ }, "io.argoproj.workflow.v1alpha1.TarStrategy": { "type": "object", - "title": "TarStrategy will tar and gzip the file or directory when saving" + "title": "TarStrategy will tar and gzip the file or directory when saving", + "properties": { + "compressionLevel": { + "description": "CompressionLevel specifies the gzip compression level to use for the artifact.\nDefaults to gzip.DefaultCompression.", + "type": "integer", + "format": "int32" + } + } }, "io.argoproj.workflow.v1alpha1.Template": { "type": "object", diff --git a/examples/README.md b/examples/README.md index dda4da452a4e..91029be93438 100644 --- a/examples/README.md +++ b/examples/README.md @@ -372,6 +372,36 @@ spec: The `whalesay` template uses the `cowsay` command to generate a file named `/tmp/hello-world.txt`. It then `outputs` this file as an artifact named `hello-art`. In general, the artifact's `path` may be a directory rather than just a file. The `print-message` template takes an input artifact named `message`, unpacks it at the `path` named `/tmp/message` and then prints the contents of `/tmp/message` using the `cat` command. The `artifact-example` template passes the `hello-art` artifact generated as an output of the `generate-artifact` step as the `message` input artifact to the `print-message` step. DAG templates use the tasks prefix to refer to another task, for example `{{tasks.generate-artifact.outputs.artifacts.hello-art}}`. +Artifacts are packaged as Tarballs and gzipped by default. You may customize this behavior by specifying an archive strategy, using the `archive` field. For example: + +```yaml +<... snipped ...> + outputs: + artifacts: + # default behavior - tar+gzip default compression. + - name: hello-art-1 + path: /tmp/hello_world.txt + + # disable archiving entirely - upload the file / directory as is. + # this is useful when the container layout matches the desired target repository layout. + - name: hello-art-2 + path: /tmp/hello_world.txt + archive: + none: {} + + # customize the compression behavior (disabling it here). + # this is useful for files with varying compression benefits, + # e.g. disabling compression for a cached build workspace and large binaries, + # or increasing compression for "perfect" textual data - like a json/xml export of a large database. + - name: hello-art-3 + path: /tmp/hello_world.txt + archive: + tar: + # no compression (also accepts the standard gzip 1 to 9 values) + compressionLevel: 0 +<... snipped ...> +``` + ## The Structure of Workflow Specs We now know enough about the basic components of a workflow spec to review its basic structure: diff --git a/examples/artifact-disable-archive.yaml b/examples/artifact-disable-archive.yaml index 444b01ac5b53..6cd74410486f 100644 --- a/examples/artifact-disable-archive.yaml +++ b/examples/artifact-disable-archive.yaml @@ -1,6 +1,8 @@ # This example demonstrates the ability to disable the default behavior of archiving (tar.gz) # when saving output artifacts. For directories, when archive is set to none, files in directory # will be copied recursively in the case of S3. +# Another option is to keep the archiving behavior, but skip or modify the compression +# behavior using the 'tar.compressionLevel' field. apiVersion: argoproj.io/v1alpha1 kind: Workflow metadata: @@ -20,12 +22,14 @@ spec: from: "{{steps.generate-artifact.outputs.artifacts.etc}}" - name: hello-txt from: "{{steps.generate-artifact.outputs.artifacts.hello-txt}}" + - name: hello-txt-nc + from: "{{steps.generate-artifact.outputs.artifacts.hello-txt-nc}}" - name: whalesay container: image: docker/whalesay:latest command: [sh, -c] - args: ["cowsay hello world | tee /tmp/hello_world.txt ; sleep 1"] + args: ["cowsay hello world | tee /tmp/hello_world.txt | tee /tmp/hello_world_nc.txt ; sleep 1"] outputs: artifacts: - name: etc @@ -36,6 +40,12 @@ spec: path: /tmp/hello_world.txt archive: none: {} + - name: hello-txt-nc + path: /tmp/hello_world_nc.txt + archive: + tar: + # no compression (also accepts the standard gzip 1 to 9 values) + compressionLevel: 0 - name: print-message inputs: @@ -44,8 +54,10 @@ spec: path: /tmp/etc - name: hello-txt path: /tmp/hello.txt + - name: hello-txt-nc + path: /tmp/hello_nc.txt container: image: alpine:latest command: [sh, -c] args: - - cat /tmp/hello.txt && cd /tmp/etc && find . + - cat /tmp/hello.txt && cat /tmp/hello_nc.txt && cd /tmp/etc && find . diff --git a/pkg/apiclient/clusterworkflowtemplate/cluster-workflow-template.swagger.json b/pkg/apiclient/clusterworkflowtemplate/cluster-workflow-template.swagger.json index e0de56adfb96..1ff43886c829 100644 --- a/pkg/apiclient/clusterworkflowtemplate/cluster-workflow-template.swagger.json +++ b/pkg/apiclient/clusterworkflowtemplate/cluster-workflow-template.swagger.json @@ -1252,6 +1252,13 @@ }, "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.TarStrategy": { "type": "object", + "properties": { + "compressionLevel": { + "type": "integer", + "format": "int32", + "description": "CompressionLevel specifies the gzip compression level to use for the artifact.\nDefaults to gzip.DefaultCompression." + } + }, "title": "TarStrategy will tar and gzip the file or directory when saving" }, "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.Template": { diff --git a/pkg/apiclient/cronworkflow/cron-workflow.swagger.json b/pkg/apiclient/cronworkflow/cron-workflow.swagger.json index afa0ebd3637a..0d559be32ccc 100644 --- a/pkg/apiclient/cronworkflow/cron-workflow.swagger.json +++ b/pkg/apiclient/cronworkflow/cron-workflow.swagger.json @@ -1357,6 +1357,13 @@ }, "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.TarStrategy": { "type": "object", + "properties": { + "compressionLevel": { + "type": "integer", + "format": "int32", + "description": "CompressionLevel specifies the gzip compression level to use for the artifact.\nDefaults to gzip.DefaultCompression." + } + }, "title": "TarStrategy will tar and gzip the file or directory when saving" }, "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.Template": { diff --git a/pkg/apiclient/workflow/workflow.swagger.json b/pkg/apiclient/workflow/workflow.swagger.json index f277ed5eb4e8..609ad29f0959 100644 --- a/pkg/apiclient/workflow/workflow.swagger.json +++ b/pkg/apiclient/workflow/workflow.swagger.json @@ -1723,6 +1723,13 @@ }, "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.TarStrategy": { "type": "object", + "properties": { + "compressionLevel": { + "type": "integer", + "format": "int32", + "description": "CompressionLevel specifies the gzip compression level to use for the artifact.\nDefaults to gzip.DefaultCompression." + } + }, "title": "TarStrategy will tar and gzip the file or directory when saving" }, "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.Template": { diff --git a/pkg/apiclient/workflowarchive/workflow-archive.swagger.json b/pkg/apiclient/workflowarchive/workflow-archive.swagger.json index 09ebc1062064..766b0a79ad4a 100644 --- a/pkg/apiclient/workflowarchive/workflow-archive.swagger.json +++ b/pkg/apiclient/workflowarchive/workflow-archive.swagger.json @@ -1154,6 +1154,13 @@ }, "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.TarStrategy": { "type": "object", + "properties": { + "compressionLevel": { + "type": "integer", + "format": "int32", + "description": "CompressionLevel specifies the gzip compression level to use for the artifact.\nDefaults to gzip.DefaultCompression." + } + }, "title": "TarStrategy will tar and gzip the file or directory when saving" }, "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.Template": { diff --git a/pkg/apiclient/workflowtemplate/workflow-template.swagger.json b/pkg/apiclient/workflowtemplate/workflow-template.swagger.json index a7e8c03fcce4..205d007d946b 100644 --- a/pkg/apiclient/workflowtemplate/workflow-template.swagger.json +++ b/pkg/apiclient/workflowtemplate/workflow-template.swagger.json @@ -1225,6 +1225,13 @@ }, "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.TarStrategy": { "type": "object", + "properties": { + "compressionLevel": { + "type": "integer", + "format": "int32", + "description": "CompressionLevel specifies the gzip compression level to use for the artifact.\nDefaults to gzip.DefaultCompression." + } + }, "title": "TarStrategy will tar and gzip the file or directory when saving" }, "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.Template": { diff --git a/pkg/apis/workflow/v1alpha1/generated.pb.go b/pkg/apis/workflow/v1alpha1/generated.pb.go index 237c0eab50d9..070fb55aebcb 100644 --- a/pkg/apis/workflow/v1alpha1/generated.pb.go +++ b/pkg/apis/workflow/v1alpha1/generated.pb.go @@ -1996,385 +1996,387 @@ func init() { } var fileDescriptor_c23edafa7e7ea072 = []byte{ - // 6044 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7c, 0x5b, 0x6c, 0x1c, 0xd9, - 0x71, 0xa8, 0x86, 0xe4, 0x0c, 0x67, 0x6a, 0x48, 0x91, 0x3a, 0xa2, 0xa4, 0x59, 0xae, 0x96, 0x23, - 0xf7, 0xde, 0xdd, 0xab, 0xbd, 0x77, 0x4d, 0x7a, 0xb5, 0xde, 0x7b, 0xd7, 0x8f, 0x7d, 0x70, 0x48, - 0x51, 0xa2, 0x1e, 0x24, 0x5d, 0x43, 0x49, 0xb1, 0x77, 0x61, 0xa7, 0x39, 0x7d, 0x66, 0xa6, 0xc5, - 0x99, 0xee, 0xde, 0x3e, 0x3d, 0xe2, 0xd2, 0x9b, 0x20, 0x1b, 0x23, 0x81, 0xf3, 0x80, 0x81, 0x18, - 0x01, 0x0c, 0x03, 0x46, 0x80, 0xc0, 0x3f, 0xf9, 0x49, 0x3e, 0x93, 0x4f, 0x7f, 0x18, 0xf9, 0x30, - 0xfc, 0x13, 0x27, 0x3f, 0x71, 0x82, 0x80, 0xf6, 0x32, 0x48, 0x60, 0xc0, 0x41, 0xfc, 0x91, 0x8f, - 0x00, 0x44, 0x3e, 0x82, 0xf3, 0xe8, 0xd3, 0x8f, 0xe9, 0x91, 0xa8, 0x19, 0x4a, 0x71, 0x62, 0x7f, - 0x91, 0x53, 0x55, 0xa7, 0xea, 0x3c, 0xea, 0xd4, 0xa9, 0xaa, 0x53, 0xa7, 0x61, 0xa5, 0x65, 0x07, - 0xed, 0xde, 0xce, 0x62, 0xc3, 0xed, 0x2e, 0x99, 0x7e, 0xcb, 0xf5, 0x7c, 0xf7, 0xbe, 0xf8, 0x67, - 0xc9, 0xdb, 0x6d, 0x2d, 0x99, 0x9e, 0xcd, 0x96, 0xf6, 0x5c, 0x7f, 0xb7, 0xd9, 0x71, 0xf7, 0x96, - 0x1e, 0xbc, 0x62, 0x76, 0xbc, 0xb6, 0xf9, 0xca, 0x52, 0x8b, 0x3a, 0xd4, 0x37, 0x03, 0x6a, 0x2d, - 0x7a, 0xbe, 0x1b, 0xb8, 0xe4, 0xd5, 0x88, 0xc9, 0x62, 0xc8, 0x44, 0xfc, 0xb3, 0xe8, 0xed, 0xb6, - 0x16, 0x39, 0x93, 0xc5, 0x90, 0xc9, 0x62, 0xc8, 0x64, 0xfe, 0xe3, 0x31, 0xc9, 0x2d, 0x97, 0x0b, - 0xe4, 0xbc, 0x76, 0x7a, 0x4d, 0xf1, 0x4b, 0xfc, 0x10, 0xff, 0x49, 0x19, 0xf3, 0xc6, 0xee, 0xeb, - 0x6c, 0xd1, 0x76, 0x79, 0x97, 0x96, 0x1a, 0xae, 0x4f, 0x97, 0x1e, 0xf4, 0xf5, 0x63, 0xfe, 0xa5, - 0x18, 0x8d, 0xe7, 0x76, 0xec, 0xc6, 0xfe, 0xd2, 0x83, 0x57, 0x76, 0x68, 0xd0, 0xdf, 0xe5, 0xf9, - 0x4f, 0x46, 0xa4, 0x5d, 0xb3, 0xd1, 0xb6, 0x1d, 0xea, 0xef, 0x47, 0x43, 0xee, 0xd2, 0xc0, 0xcc, - 0x12, 0xb0, 0x34, 0xa8, 0x95, 0xdf, 0x73, 0x02, 0xbb, 0x4b, 0xfb, 0x1a, 0xfc, 0xbf, 0x47, 0x35, - 0x60, 0x8d, 0x36, 0xed, 0x9a, 0xe9, 0x76, 0xc6, 0x5f, 0xe5, 0x60, 0x66, 0xd9, 0x6f, 0xb4, 0xed, - 0x07, 0xb4, 0x1e, 0x70, 0x44, 0x6b, 0x9f, 0xbc, 0x03, 0xe3, 0x81, 0xe9, 0x57, 0x72, 0x97, 0x72, - 0x97, 0xcb, 0x57, 0xde, 0x5e, 0x1c, 0x62, 0xce, 0x17, 0xb7, 0x4d, 0x3f, 0x64, 0x57, 0x9b, 0x3c, - 0x3c, 0xa8, 0x8e, 0x6f, 0x9b, 0x3e, 0x72, 0xae, 0xe4, 0x4b, 0x30, 0xe1, 0xb8, 0x0e, 0xad, 0x8c, - 0x09, 0xee, 0xcb, 0x43, 0x71, 0xdf, 0x70, 0x1d, 0xdd, 0xdb, 0x5a, 0xf1, 0xf0, 0xa0, 0x3a, 0xc1, - 0x21, 0x28, 0x18, 0x1b, 0x3f, 0xcb, 0x41, 0x69, 0xd9, 0x6f, 0xf5, 0xba, 0xd4, 0x09, 0x18, 0xf1, - 0x01, 0x3c, 0xd3, 0x37, 0xbb, 0x34, 0xa0, 0x3e, 0xab, 0xe4, 0x2e, 0x8d, 0x5f, 0x2e, 0x5f, 0x79, - 0x73, 0x28, 0xa1, 0x5b, 0x21, 0x9b, 0x1a, 0xf9, 0xde, 0x41, 0xf5, 0xd4, 0xe1, 0x41, 0x15, 0x34, - 0x88, 0x61, 0x4c, 0x0a, 0x71, 0xa0, 0x64, 0xfa, 0x81, 0xdd, 0x34, 0x1b, 0x01, 0xab, 0x8c, 0x09, - 0x91, 0x6f, 0x0c, 0x25, 0x72, 0x59, 0x71, 0xa9, 0x9d, 0x51, 0x12, 0x4b, 0x21, 0x84, 0x61, 0x24, - 0xc2, 0xf8, 0xe9, 0x38, 0x14, 0x43, 0x04, 0xb9, 0x04, 0x13, 0x8e, 0xd9, 0xa5, 0x62, 0xf5, 0x4a, - 0xb5, 0x29, 0xd5, 0x70, 0x62, 0xc3, 0xec, 0xf2, 0x09, 0x32, 0xbb, 0x94, 0x53, 0x78, 0x66, 0xd0, - 0x16, 0x2b, 0x10, 0xa3, 0xd8, 0x32, 0x83, 0x36, 0x0a, 0x0c, 0xb9, 0x08, 0x13, 0x5d, 0xd7, 0xa2, - 0x95, 0xf1, 0x4b, 0xb9, 0xcb, 0x79, 0x39, 0xc1, 0xb7, 0x5d, 0x8b, 0xa2, 0x80, 0xf2, 0xf6, 0x4d, - 0xdf, 0xed, 0x56, 0x26, 0x92, 0xed, 0xd7, 0x7c, 0xb7, 0x8b, 0x02, 0x43, 0x7e, 0x3f, 0x07, 0xb3, - 0x61, 0xf7, 0x6e, 0xb9, 0x0d, 0x33, 0xb0, 0x5d, 0xa7, 0x92, 0x17, 0x0b, 0x7e, 0x75, 0xa4, 0x89, - 0x08, 0x99, 0xd5, 0x2a, 0x4a, 0xea, 0x6c, 0x1a, 0x83, 0x7d, 0x82, 0xc9, 0x15, 0x80, 0x56, 0xc7, - 0xdd, 0x31, 0x3b, 0x7c, 0x0e, 0x2a, 0x05, 0xd1, 0x6b, 0xbd, 0x84, 0xd7, 0x34, 0x06, 0x63, 0x54, - 0x64, 0x17, 0x26, 0x4d, 0xb9, 0x2b, 0x2a, 0x93, 0xa2, 0xdf, 0xab, 0x43, 0xf6, 0x3b, 0xb1, 0xb3, - 0x6a, 0xe5, 0xc3, 0x83, 0xea, 0xa4, 0x02, 0x62, 0x28, 0x81, 0xbc, 0x0c, 0x45, 0xd7, 0xe3, 0x5d, - 0x35, 0x3b, 0x95, 0xe2, 0xa5, 0xdc, 0xe5, 0x62, 0x6d, 0x56, 0x75, 0xaf, 0xb8, 0xa9, 0xe0, 0xa8, - 0x29, 0x8c, 0xbf, 0x2e, 0x40, 0xdf, 0xa8, 0xc9, 0x2b, 0x50, 0x56, 0xdc, 0x6e, 0xb9, 0x2d, 0x26, - 0x16, 0xbf, 0x58, 0x9b, 0x39, 0x3c, 0xa8, 0x96, 0x97, 0x23, 0x30, 0xc6, 0x69, 0xc8, 0x3d, 0x18, - 0x63, 0xaf, 0xaa, 0x6d, 0xf8, 0xd6, 0x50, 0xa3, 0xab, 0xbf, 0xaa, 0x15, 0xb4, 0x70, 0x78, 0x50, - 0x1d, 0xab, 0xbf, 0x8a, 0x63, 0xec, 0x55, 0x6e, 0x3e, 0x5a, 0x76, 0x20, 0x94, 0x67, 0x58, 0xf3, - 0x71, 0xcd, 0x0e, 0x34, 0x6b, 0x61, 0x3e, 0xae, 0xd9, 0x01, 0x72, 0xae, 0xdc, 0x7c, 0xb4, 0x83, - 0xc0, 0x13, 0xca, 0x37, 0xac, 0xf9, 0xb8, 0xbe, 0xbd, 0xbd, 0xa5, 0xd9, 0x0b, 0xed, 0xe6, 0x10, - 0x14, 0x8c, 0xc9, 0x07, 0x7c, 0x26, 0x25, 0xce, 0xf5, 0xf7, 0x95, 0xd6, 0x5e, 0x1f, 0x49, 0x6b, - 0x5d, 0x7f, 0x5f, 0x8b, 0x53, 0x6b, 0xa2, 0x11, 0x18, 0x97, 0x26, 0x46, 0x67, 0x35, 0x99, 0x50, - 0xd2, 0xa1, 0x47, 0xb7, 0xba, 0x56, 0x4f, 0x8d, 0x6e, 0x75, 0xad, 0x8e, 0x82, 0x31, 0x5f, 0x1b, - 0xdf, 0xdc, 0x53, 0x3a, 0x3d, 0xdc, 0xda, 0xa0, 0xb9, 0x97, 0x5c, 0x1b, 0x34, 0xf7, 0x90, 0x73, - 0xe5, 0xcc, 0x5d, 0xc6, 0x84, 0x0a, 0x0f, 0xcb, 0x7c, 0xb3, 0x5e, 0x4f, 0x32, 0xdf, 0xac, 0xd7, - 0x91, 0x73, 0x15, 0x5a, 0xd5, 0x60, 0x95, 0xd2, 0x28, 0x5a, 0xb5, 0x92, 0x62, 0x7e, 0x6d, 0xa5, - 0x8e, 0x9c, 0xab, 0xd1, 0x82, 0x73, 0x21, 0x06, 0xa9, 0xe7, 0x32, 0x5b, 0x2c, 0x0d, 0x6d, 0x92, - 0x25, 0x28, 0x35, 0x5c, 0xa7, 0x69, 0xb7, 0x6e, 0x9b, 0x9e, 0x32, 0xa9, 0xda, 0x16, 0xaf, 0x84, - 0x08, 0x8c, 0x68, 0xc8, 0x73, 0x30, 0xbe, 0x4b, 0xf7, 0x95, 0x6d, 0x2d, 0x2b, 0xd2, 0xf1, 0x9b, - 0x74, 0x1f, 0x39, 0xdc, 0xf8, 0x4e, 0x0e, 0xce, 0x66, 0xa8, 0x05, 0x6f, 0xd6, 0xf3, 0x3b, 0x4a, - 0x82, 0x6e, 0x76, 0x07, 0x6f, 0x21, 0x87, 0x93, 0xaf, 0xe6, 0x60, 0x26, 0xa6, 0x27, 0xcb, 0x3d, - 0x65, 0xbe, 0x87, 0xb7, 0x4b, 0x09, 0x5e, 0xb5, 0x0b, 0x4a, 0xe2, 0x4c, 0x0a, 0x81, 0x69, 0xa9, - 0xc6, 0xdf, 0x0a, 0x7f, 0x21, 0x01, 0x23, 0x26, 0x9c, 0xee, 0x31, 0xea, 0xf3, 0xc3, 0xa5, 0x4e, - 0x1b, 0x3e, 0x0d, 0x94, 0xeb, 0xf0, 0xc2, 0xa2, 0x74, 0x4a, 0x78, 0x2f, 0x16, 0xb9, 0x2b, 0xb5, - 0xf8, 0xe0, 0x95, 0x45, 0x49, 0x71, 0x93, 0xee, 0xd7, 0x69, 0x87, 0x72, 0x1e, 0x35, 0x72, 0x78, - 0x50, 0x3d, 0x7d, 0x27, 0xc1, 0x00, 0x53, 0x0c, 0xb9, 0x08, 0xcf, 0x64, 0x6c, 0xcf, 0xf5, 0x2d, - 0x25, 0x62, 0xec, 0xb1, 0x45, 0x6c, 0x25, 0x18, 0x60, 0x8a, 0xa1, 0xf1, 0x8d, 0x1c, 0x4c, 0xd6, - 0xcc, 0xc6, 0xae, 0xdb, 0x6c, 0x72, 0x8b, 0x6c, 0xf5, 0x7c, 0x79, 0x6e, 0xc9, 0x35, 0xd1, 0x16, - 0x79, 0x55, 0xc1, 0x51, 0x53, 0x90, 0x17, 0xa1, 0x20, 0xa7, 0x43, 0x74, 0x2a, 0x5f, 0x3b, 0xad, - 0x68, 0x0b, 0x6b, 0x02, 0x8a, 0x0a, 0x4b, 0x5e, 0x83, 0x72, 0xd7, 0x7c, 0x3f, 0x64, 0x20, 0x0c, - 0x64, 0xa9, 0x76, 0x56, 0x11, 0x97, 0x6f, 0x47, 0x28, 0x8c, 0xd3, 0x19, 0x3f, 0xc9, 0xc1, 0x85, - 0x95, 0x4e, 0x8f, 0x05, 0xd4, 0xbf, 0xa7, 0x56, 0x72, 0x9b, 0x76, 0xbd, 0x8e, 0x19, 0x50, 0xf2, - 0xab, 0x50, 0xe4, 0x2e, 0xa4, 0x65, 0x06, 0xa6, 0x9a, 0xf4, 0x4f, 0xc4, 0x66, 0x44, 0x7b, 0x82, - 0x91, 0x2e, 0x70, 0x6a, 0x3e, 0x47, 0x9b, 0x3b, 0xf7, 0x69, 0x23, 0xb8, 0x4d, 0x03, 0x33, 0x3a, - 0x0b, 0x23, 0x18, 0x6a, 0xae, 0x64, 0x17, 0x26, 0x98, 0x47, 0x1b, 0x6a, 0xbe, 0xd7, 0x87, 0x52, - 0xb7, 0x74, 0xb7, 0xeb, 0x1e, 0x6d, 0x44, 0x8e, 0x03, 0xff, 0x85, 0x42, 0x88, 0xf1, 0xaf, 0x39, - 0x78, 0x76, 0xc0, 0x50, 0x6f, 0xd9, 0x2c, 0x20, 0xef, 0xf6, 0x0d, 0x77, 0xf1, 0x78, 0xc3, 0xe5, - 0xad, 0xc5, 0x60, 0xf5, 0x3a, 0x86, 0x90, 0xd8, 0x50, 0xdf, 0x83, 0xbc, 0x1d, 0xd0, 0x6e, 0xe8, - 0xb3, 0xdd, 0x1a, 0x6a, 0xac, 0x03, 0xba, 0x5f, 0x9b, 0x56, 0x82, 0xf3, 0xeb, 0x5c, 0x04, 0x4a, - 0x49, 0xc6, 0xe7, 0x01, 0x56, 0x5c, 0x27, 0xb0, 0x9d, 0x1e, 0xdd, 0x74, 0xc8, 0xf3, 0x90, 0xa7, - 0xbe, 0xef, 0xfa, 0xea, 0xfc, 0xd6, 0x4d, 0xae, 0x72, 0x20, 0x4a, 0x9c, 0xd4, 0x36, 0xbb, 0x43, - 0x2d, 0xb1, 0x24, 0xc5, 0xb8, 0xb6, 0x71, 0x28, 0x2a, 0xac, 0xb1, 0x08, 0x93, 0x2b, 0x6e, 0xcf, - 0x09, 0xa8, 0xcf, 0xf9, 0x3e, 0x30, 0x3b, 0xbd, 0xd0, 0x29, 0xd4, 0x7c, 0xef, 0x72, 0x20, 0x4a, - 0x9c, 0xf1, 0xfd, 0x31, 0x98, 0x5a, 0xf1, 0x5d, 0x27, 0xec, 0xf9, 0x53, 0xd0, 0xad, 0x56, 0x42, - 0xb7, 0x86, 0x73, 0x0d, 0xe3, 0x5d, 0x1e, 0xa4, 0x57, 0xc4, 0x85, 0x02, 0x0b, 0xcc, 0xa0, 0xc7, - 0x94, 0x57, 0x72, 0x6d, 0x74, 0x51, 0x82, 0x5d, 0x34, 0xf9, 0xf2, 0x37, 0x2a, 0x31, 0xc6, 0x0f, - 0x73, 0x30, 0x1b, 0x27, 0x7f, 0x0a, 0xda, 0xdb, 0x4c, 0x6a, 0xef, 0xf2, 0xc8, 0x43, 0x1c, 0xa0, - 0xb2, 0xff, 0x91, 0x4f, 0x0e, 0x8d, 0x4f, 0x33, 0xf7, 0xf8, 0xa7, 0xf6, 0x62, 0x00, 0x35, 0xbe, - 0xe5, 0x91, 0xcc, 0x85, 0x58, 0xce, 0xff, 0xa5, 0x3a, 0x31, 0x15, 0x87, 0x1e, 0xa5, 0x7e, 0x63, - 0x42, 0x38, 0x37, 0xdf, 0x3c, 0xdc, 0xb5, 0x7a, 0x1d, 0xaa, 0x4e, 0x62, 0x3d, 0x71, 0x75, 0x05, - 0x47, 0x4d, 0x41, 0xde, 0x85, 0x33, 0x0d, 0xd7, 0x69, 0xf4, 0x7c, 0x9f, 0x3a, 0x8d, 0xfd, 0x2d, - 0x11, 0xce, 0x2b, 0xe3, 0xbc, 0xa8, 0x9a, 0x9d, 0x59, 0x49, 0x13, 0x1c, 0x65, 0x01, 0xb1, 0x9f, - 0x11, 0x79, 0x09, 0x26, 0x59, 0x8f, 0x79, 0xd4, 0xb1, 0x84, 0xcf, 0x5a, 0xac, 0xcd, 0x28, 0x9e, - 0x93, 0x75, 0x09, 0xc6, 0x10, 0x4f, 0xee, 0xc0, 0x05, 0x16, 0xf0, 0x03, 0xd7, 0x69, 0xad, 0x52, - 0xd3, 0xea, 0xd8, 0x0e, 0x3f, 0xfe, 0x5c, 0xc7, 0x62, 0xc2, 0x0d, 0x1d, 0xaf, 0x3d, 0x7b, 0x78, - 0x50, 0xbd, 0x50, 0xcf, 0x26, 0xc1, 0x41, 0x6d, 0xc9, 0x17, 0x61, 0x9e, 0xf5, 0x1a, 0x0d, 0xca, - 0x58, 0xb3, 0xd7, 0xb9, 0xe1, 0xee, 0xb0, 0xeb, 0x36, 0xe3, 0x67, 0xf7, 0x2d, 0xbb, 0x6b, 0x07, - 0xc2, 0xd5, 0xcc, 0xd7, 0x16, 0x0e, 0x0f, 0xaa, 0xf3, 0xf5, 0x81, 0x54, 0xf8, 0x10, 0x0e, 0x04, - 0xe1, 0xbc, 0x34, 0x39, 0x7d, 0xbc, 0x27, 0x05, 0xef, 0xf9, 0xc3, 0x83, 0xea, 0xf9, 0xb5, 0x4c, - 0x0a, 0x1c, 0xd0, 0x92, 0xaf, 0x60, 0x60, 0x77, 0xe9, 0x97, 0x5d, 0x87, 0x0a, 0x7f, 0x32, 0xb6, - 0x82, 0xdb, 0x0a, 0x8e, 0x9a, 0x82, 0xdc, 0x8f, 0x94, 0x8f, 0x6f, 0x0a, 0xe5, 0x24, 0x3e, 0xbe, - 0xb5, 0x9a, 0xe3, 0x11, 0xe5, 0xbd, 0x18, 0x27, 0xbe, 0xb1, 0x30, 0xc1, 0xdb, 0xf8, 0x9b, 0x1c, - 0x90, 0x7e, 0x43, 0x40, 0x6e, 0x42, 0xc1, 0x6c, 0x04, 0x3c, 0x5e, 0x94, 0x39, 0x86, 0xe7, 0xb3, - 0x1c, 0x13, 0x29, 0x0a, 0x69, 0x93, 0x72, 0x0d, 0xa1, 0x91, 0xf5, 0x58, 0x16, 0x4d, 0x51, 0xb1, - 0x20, 0x2e, 0x9c, 0xe9, 0x98, 0x2c, 0x08, 0x75, 0xd5, 0xe2, 0x43, 0x56, 0x46, 0xf2, 0xff, 0x1c, - 0x6f, 0x50, 0xbc, 0x45, 0xed, 0x1c, 0xd7, 0xdc, 0x5b, 0x69, 0x46, 0xd8, 0xcf, 0xdb, 0xf8, 0x6e, - 0x01, 0x26, 0x57, 0x97, 0xaf, 0x6d, 0x9b, 0x6c, 0xf7, 0x18, 0x09, 0x04, 0xbe, 0x38, 0xea, 0x58, - 0x4b, 0x6f, 0xaf, 0xf0, 0xb8, 0x43, 0x4d, 0x41, 0x5c, 0x28, 0x99, 0x61, 0x3a, 0x46, 0x99, 0xdf, - 0x37, 0x87, 0x74, 0x5a, 0x15, 0x97, 0x78, 0x3a, 0x44, 0x81, 0x30, 0x92, 0x41, 0x18, 0x94, 0x43, - 0xe1, 0x48, 0x9b, 0x2a, 0x52, 0x1c, 0x32, 0x8d, 0x15, 0xf1, 0x91, 0x91, 0x5b, 0x0c, 0x80, 0x71, - 0x29, 0xe4, 0x93, 0x30, 0x65, 0x51, 0xbe, 0x8b, 0xa9, 0xd3, 0xb0, 0x29, 0xdf, 0xb0, 0xe3, 0x7c, - 0x5e, 0xb8, 0xe1, 0x5a, 0x8d, 0xc1, 0x31, 0x41, 0x45, 0xee, 0x43, 0x69, 0xcf, 0x0e, 0xda, 0xc2, - 0xbe, 0x56, 0x0a, 0x42, 0x71, 0x3e, 0x35, 0x54, 0x47, 0x39, 0x87, 0x68, 0x5a, 0xee, 0x85, 0x3c, - 0x31, 0x62, 0xcf, 0x43, 0x19, 0xfe, 0x43, 0xe4, 0xac, 0xc4, 0xce, 0x2c, 0x25, 0x1b, 0x08, 0x04, - 0x46, 0x34, 0x84, 0xc1, 0x14, 0xff, 0x51, 0xa7, 0xef, 0xf5, 0xb8, 0xb6, 0xaa, 0xb8, 0x6e, 0xb8, - 0x4c, 0x56, 0xc8, 0x44, 0xce, 0xc8, 0xbd, 0x18, 0x5b, 0x4c, 0x08, 0xe1, 0xda, 0xb7, 0xd7, 0xa6, - 0x8e, 0xd8, 0xc2, 0x31, 0xed, 0xbb, 0xd7, 0xa6, 0x0e, 0x0a, 0x0c, 0x71, 0x01, 0x1a, 0xda, 0x65, - 0xaa, 0xc0, 0x08, 0xf9, 0x8b, 0xc8, 0xf3, 0xaa, 0x9d, 0xe6, 0x3e, 0x4a, 0xf4, 0x1b, 0x63, 0x22, - 0xb8, 0xc3, 0xe5, 0x3a, 0x57, 0xdf, 0xb7, 0x83, 0x4a, 0x59, 0x74, 0x4a, 0xef, 0xda, 0x4d, 0x01, - 0x45, 0x85, 0x35, 0xbe, 0x9b, 0x83, 0x32, 0xdf, 0x44, 0xa1, 0xe2, 0xbf, 0x08, 0x85, 0xc0, 0xf4, - 0x5b, 0x2a, 0x1c, 0x8a, 0xb5, 0xdb, 0x16, 0x50, 0x54, 0x58, 0x62, 0x42, 0x3e, 0x30, 0xd9, 0x6e, - 0x78, 0x70, 0x7f, 0x76, 0xa8, 0xb1, 0xa8, 0xdd, 0x1b, 0x9d, 0xd9, 0xfc, 0x17, 0x43, 0xc9, 0x99, - 0x5c, 0x86, 0x22, 0x37, 0xb4, 0x6b, 0x26, 0x93, 0x79, 0x99, 0x62, 0x6d, 0x8a, 0xef, 0xd6, 0x35, - 0x05, 0x43, 0x8d, 0x35, 0xde, 0x85, 0xd3, 0x57, 0xdf, 0xa7, 0x8d, 0x5e, 0xe0, 0xfa, 0x32, 0xbe, - 0x25, 0x37, 0x80, 0x30, 0xea, 0x3f, 0xb0, 0x1b, 0x74, 0xb9, 0xd1, 0xe0, 0x0e, 0xe5, 0x46, 0x64, - 0x1d, 0xe6, 0x95, 0x34, 0x52, 0xef, 0xa3, 0xc0, 0x8c, 0x56, 0xc6, 0x1f, 0xe5, 0xa0, 0x1c, 0x8b, - 0xc2, 0xb9, 0x6d, 0x68, 0xad, 0xd4, 0x6b, 0xbd, 0xc6, 0xae, 0x0e, 0x1a, 0xdf, 0x1c, 0x36, 0xb4, - 0x97, 0x5c, 0x22, 0x9d, 0xd6, 0x20, 0x8c, 0x64, 0x3c, 0x2a, 0x3c, 0xff, 0x8b, 0x1c, 0x44, 0xed, - 0xf8, 0x02, 0xee, 0x44, 0x5d, 0x8b, 0x2d, 0xa0, 0xe2, 0xab, 0xb0, 0xe4, 0xc3, 0x1c, 0x5c, 0x48, - 0x0e, 0x56, 0xc4, 0x9e, 0x8f, 0x1f, 0xa6, 0x56, 0x95, 0x80, 0x0b, 0xf5, 0x6c, 0x6e, 0x38, 0x48, - 0x8c, 0x71, 0x17, 0xf2, 0xd7, 0xcc, 0x5e, 0x8b, 0x1e, 0xcb, 0xd5, 0xe7, 0xea, 0xe0, 0x53, 0xb3, - 0x13, 0x84, 0xc7, 0x8a, 0x52, 0x07, 0x54, 0x30, 0xd4, 0x58, 0xe3, 0x4f, 0x27, 0xa0, 0x1c, 0x4b, - 0xc6, 0xf1, 0xed, 0xe9, 0x53, 0xcf, 0x4d, 0x1f, 0x0e, 0x48, 0x3d, 0x17, 0x05, 0x86, 0x1f, 0x0e, - 0x3e, 0x7d, 0x60, 0x33, 0x1e, 0xe1, 0xa6, 0x0e, 0x07, 0x54, 0x70, 0xd4, 0x14, 0xa4, 0x0a, 0x79, - 0x8b, 0x7a, 0x41, 0x5b, 0x68, 0xe5, 0x44, 0xad, 0xc4, 0xbb, 0xba, 0xca, 0x01, 0x28, 0xe1, 0x9c, - 0xa0, 0x49, 0x83, 0x46, 0xbb, 0x32, 0x21, 0x0c, 0xaa, 0x20, 0x58, 0xe3, 0x00, 0x94, 0xf0, 0x8c, - 0xe4, 0x43, 0xfe, 0xc9, 0x27, 0x1f, 0x0a, 0x27, 0x9c, 0x7c, 0x20, 0x1e, 0x9c, 0x65, 0xac, 0xbd, - 0xe5, 0xdb, 0x0f, 0xcc, 0x80, 0x46, 0xda, 0x33, 0xf9, 0x38, 0x72, 0x2e, 0x1c, 0x1e, 0x54, 0xcf, - 0xd6, 0xeb, 0xd7, 0xd3, 0x5c, 0x30, 0x8b, 0x35, 0xa9, 0xc3, 0x39, 0xdb, 0x61, 0xb4, 0xd1, 0xf3, - 0xe9, 0x7a, 0xcb, 0x71, 0x7d, 0x7a, 0xdd, 0x65, 0x9c, 0x9d, 0xca, 0x40, 0x3f, 0xa7, 0x16, 0xed, - 0xdc, 0x7a, 0x16, 0x11, 0x66, 0xb7, 0x35, 0xbe, 0x9f, 0x83, 0xa9, 0x78, 0xfe, 0x91, 0x30, 0x80, - 0xf6, 0xea, 0x5a, 0x5d, 0x9a, 0x12, 0xb5, 0xc3, 0xdf, 0x1a, 0x3a, 0xad, 0x29, 0xd9, 0x44, 0x41, - 0x65, 0x04, 0xc3, 0x98, 0x98, 0x63, 0x5c, 0x70, 0x3c, 0x0f, 0xf9, 0xa6, 0xeb, 0x37, 0xa8, 0x32, - 0x86, 0x7a, 0x97, 0xac, 0x71, 0x20, 0x4a, 0x9c, 0xf1, 0x93, 0x1c, 0xc4, 0x24, 0x90, 0xdf, 0x80, - 0x69, 0x2e, 0xe3, 0xa6, 0xbf, 0x93, 0x18, 0x4d, 0x6d, 0xe8, 0xd1, 0x68, 0x4e, 0xb5, 0x73, 0x4a, - 0xfe, 0x74, 0x02, 0x8c, 0x49, 0x79, 0xe4, 0xff, 0x42, 0xc9, 0xb4, 0x2c, 0x9f, 0x32, 0x46, 0xe5, - 0x59, 0x51, 0xaa, 0x4d, 0x0b, 0x27, 0x28, 0x04, 0x62, 0x84, 0xe7, 0xdb, 0xb0, 0x6d, 0x35, 0x19, - 0xd7, 0x6c, 0x15, 0xcb, 0xe8, 0x6d, 0xc8, 0x85, 0x70, 0x38, 0x6a, 0x0a, 0xe3, 0x6b, 0x13, 0x90, - 0x94, 0x4d, 0x2c, 0x98, 0xd9, 0xf5, 0x77, 0x56, 0x56, 0xcc, 0x46, 0x7b, 0xa8, 0xa4, 0xde, 0xd9, - 0xc3, 0x83, 0xea, 0xcc, 0xcd, 0x24, 0x07, 0x4c, 0xb3, 0x54, 0x52, 0x6e, 0xd2, 0xfd, 0xc0, 0xdc, - 0x19, 0xc6, 0x60, 0x86, 0x52, 0xe2, 0x1c, 0x30, 0xcd, 0x92, 0xbc, 0x06, 0xe5, 0x5d, 0x7f, 0x27, - 0xdc, 0xe4, 0xe9, 0xbc, 0xdb, 0xcd, 0x08, 0x85, 0x71, 0x3a, 0x3e, 0x85, 0xbb, 0xfe, 0x0e, 0x37, - 0x8a, 0xe1, 0x5d, 0x97, 0x9e, 0xc2, 0x9b, 0x0a, 0x8e, 0x9a, 0x82, 0x78, 0x40, 0x76, 0xc3, 0xd9, - 0xd3, 0x99, 0x61, 0x65, 0x8b, 0x2e, 0x67, 0x8d, 0x46, 0x13, 0xc5, 0x07, 0x74, 0x9e, 0x1f, 0xa6, - 0x37, 0xfb, 0xf8, 0x60, 0x06, 0x6f, 0xf2, 0x79, 0xb8, 0xb0, 0xeb, 0xef, 0xa8, 0xa3, 0x62, 0xcb, - 0xb7, 0x9d, 0x86, 0xed, 0x25, 0x2e, 0xb9, 0xf4, 0x71, 0x72, 0x33, 0x9b, 0x0c, 0x07, 0xb5, 0x37, - 0x3e, 0x0e, 0x53, 0xf1, 0x4b, 0x92, 0x47, 0xa4, 0xa7, 0x8d, 0x7b, 0x50, 0x12, 0xd1, 0x5b, 0x8b, - 0xbb, 0x8d, 0xfa, 0x04, 0x1a, 0x7f, 0xc8, 0x09, 0xf4, 0x02, 0x4c, 0xca, 0xc3, 0x93, 0x09, 0xc3, - 0x9e, 0x93, 0x37, 0x63, 0xf2, 0x5c, 0x65, 0x18, 0xe2, 0x8c, 0x7f, 0xc9, 0x41, 0x61, 0xdd, 0xf1, - 0x7a, 0xbf, 0x20, 0x17, 0xb9, 0xdf, 0x9e, 0x80, 0x09, 0xee, 0xac, 0x93, 0xcb, 0x30, 0x11, 0xec, - 0x7b, 0xf2, 0x10, 0x1f, 0xaf, 0xcd, 0x85, 0x16, 0x6c, 0x7b, 0xdf, 0xa3, 0x47, 0xea, 0x2f, 0x0a, - 0x0a, 0xf2, 0x26, 0x14, 0x9c, 0x5e, 0xf7, 0xae, 0xd9, 0x51, 0xd6, 0xee, 0xc5, 0xd0, 0x47, 0xd9, - 0x10, 0xd0, 0xa3, 0x83, 0xea, 0x1c, 0x75, 0x1a, 0xae, 0x65, 0x3b, 0xad, 0xa5, 0xfb, 0xcc, 0x75, - 0x16, 0x37, 0x7a, 0xdd, 0x1d, 0xea, 0xa3, 0x6a, 0x45, 0x5e, 0x82, 0xc9, 0x1d, 0xd7, 0xed, 0x70, - 0x06, 0xe3, 0xc9, 0xf4, 0x44, 0x4d, 0x82, 0x31, 0xc4, 0x73, 0x77, 0x88, 0x05, 0x3e, 0xa7, 0x9c, - 0x48, 0xba, 0x43, 0x75, 0x01, 0x45, 0x85, 0x25, 0x5d, 0x28, 0x74, 0x4d, 0x8f, 0xd3, 0xe5, 0xc5, - 0x94, 0x5d, 0x1d, 0x3a, 0xa2, 0x59, 0xbc, 0x2d, 0xf8, 0x5c, 0x75, 0x02, 0x7f, 0x3f, 0x12, 0x27, - 0x81, 0xa8, 0x84, 0x10, 0x1b, 0x26, 0x3b, 0x36, 0x0b, 0xb8, 0xbc, 0xc2, 0x08, 0x5a, 0xc1, 0xe5, - 0x09, 0x15, 0x8d, 0x66, 0xe0, 0x96, 0x64, 0x8b, 0x21, 0xff, 0xf9, 0x7d, 0x28, 0xc7, 0x7a, 0x44, - 0x66, 0xa5, 0x33, 0x29, 0x76, 0x85, 0xf0, 0x1f, 0xc9, 0x76, 0xa8, 0xfb, 0x63, 0x23, 0xf8, 0xb2, - 0xba, 0x27, 0x6a, 0xb3, 0x7c, 0x7a, 0xec, 0xf5, 0xdc, 0xa7, 0x8b, 0xdf, 0xfc, 0xe3, 0xea, 0xa9, - 0x0f, 0xff, 0xe1, 0xd2, 0x29, 0xe3, 0x2f, 0xc7, 0xa1, 0xa4, 0x49, 0xfe, 0x7b, 0x6b, 0x8a, 0x9f, - 0xd2, 0x94, 0x1b, 0xa3, 0xcd, 0xd7, 0xb1, 0xd4, 0x65, 0x39, 0xa9, 0x2e, 0x53, 0xb5, 0xff, 0x1d, - 0x5b, 0xea, 0xa3, 0x83, 0x6a, 0x25, 0x39, 0x09, 0x68, 0xee, 0xdd, 0xa6, 0x8c, 0x99, 0x2d, 0x1a, - 0xa9, 0xc1, 0xa7, 0x1e, 0xa5, 0x06, 0x73, 0x71, 0x35, 0x28, 0x65, 0x2f, 0x63, 0x07, 0x26, 0x6e, - 0xd9, 0xce, 0x71, 0xd2, 0x2d, 0xcf, 0x43, 0x9e, 0x35, 0x5c, 0x2f, 0xcc, 0xb5, 0x68, 0x83, 0x5a, - 0xe7, 0x40, 0x94, 0xb8, 0xd0, 0x42, 0x8f, 0x0f, 0xb0, 0xd0, 0x1f, 0x8e, 0x43, 0x31, 0x4c, 0x68, - 0x91, 0xdf, 0xce, 0x41, 0xd9, 0x74, 0x1c, 0x37, 0x10, 0xf7, 0x4b, 0xa1, 0x31, 0xdd, 0x18, 0x6a, - 0xf2, 0x43, 0xa6, 0x8b, 0xcb, 0x11, 0x43, 0xb9, 0x00, 0xfa, 0x80, 0x8d, 0x61, 0x30, 0x2e, 0x97, - 0xbc, 0x07, 0x85, 0x8e, 0xb9, 0x43, 0x3b, 0xa1, 0x6d, 0x5d, 0x1f, 0xad, 0x07, 0xb7, 0x04, 0xaf, - 0xd4, 0xea, 0x4b, 0x20, 0x2a, 0x41, 0xf3, 0x6f, 0xc2, 0x6c, 0xba, 0xa3, 0x8f, 0xb3, 0x7e, 0x7c, - 0xe9, 0x63, 0x62, 0x1e, 0xa7, 0xa9, 0xf1, 0x39, 0x28, 0xdf, 0xa6, 0x81, 0x6f, 0x37, 0x04, 0x83, - 0x30, 0x12, 0xcd, 0x65, 0x47, 0xa2, 0xd1, 0x29, 0x3a, 0xf6, 0x90, 0x2b, 0x9b, 0x2f, 0xc3, 0xa4, - 0x64, 0xc9, 0x88, 0x0b, 0xe0, 0xf9, 0x6e, 0x97, 0x06, 0x6d, 0xda, 0x0b, 0x57, 0x74, 0x38, 0x47, - 0x7b, 0x4b, 0xb3, 0x91, 0x59, 0x91, 0xe8, 0x37, 0xc6, 0x44, 0x18, 0x7f, 0x36, 0x05, 0xb0, 0xe1, - 0x5a, 0x54, 0xe5, 0x3f, 0xe7, 0x61, 0xcc, 0xb6, 0xd4, 0x68, 0x40, 0x75, 0x76, 0x6c, 0x7d, 0x15, - 0xc7, 0x6c, 0x4b, 0xab, 0xf8, 0xd8, 0x40, 0x15, 0x7f, 0x0d, 0xca, 0x96, 0xcd, 0xbc, 0x8e, 0xb9, - 0xbf, 0x91, 0xe1, 0xa1, 0xad, 0x46, 0x28, 0x8c, 0xd3, 0x91, 0x97, 0x95, 0xf1, 0x93, 0x56, 0xa6, - 0x92, 0x32, 0x7e, 0x45, 0xde, 0xbd, 0x98, 0x01, 0x7c, 0x1d, 0xa6, 0xc2, 0x8c, 0x9d, 0x90, 0x92, - 0x17, 0xad, 0x42, 0x93, 0x39, 0xb5, 0x1d, 0xc3, 0x61, 0x82, 0x32, 0x9d, 0x51, 0x2c, 0x3c, 0x95, - 0x8c, 0xe2, 0x2a, 0xcc, 0xb2, 0xc0, 0xf5, 0xa9, 0x15, 0x52, 0xac, 0xaf, 0x56, 0x48, 0x62, 0xa0, - 0xb3, 0xf5, 0x14, 0x1e, 0xfb, 0x5a, 0x90, 0x2d, 0x98, 0xdb, 0x4b, 0x5d, 0x45, 0x8a, 0xc1, 0x9f, - 0x15, 0x9c, 0x2e, 0x2a, 0x4e, 0x73, 0xf7, 0x32, 0x68, 0x30, 0xb3, 0x25, 0xf9, 0x0c, 0x4c, 0x87, - 0xdd, 0x14, 0x16, 0xa8, 0x32, 0x27, 0x58, 0xe9, 0x18, 0x66, 0x3b, 0x8e, 0xc4, 0x24, 0x2d, 0xf9, - 0x04, 0xe4, 0xbd, 0xb6, 0xc9, 0xa8, 0x4a, 0x40, 0x86, 0xf9, 0xa3, 0xfc, 0x16, 0x07, 0x1e, 0x1d, - 0x54, 0x4b, 0x7c, 0xcd, 0xc4, 0x0f, 0x94, 0x84, 0xe4, 0x0a, 0xc0, 0x8e, 0xdb, 0x73, 0x2c, 0xd3, - 0xdf, 0x5f, 0x5f, 0x55, 0x77, 0x01, 0xda, 0x6f, 0xab, 0x69, 0x0c, 0xc6, 0xa8, 0xf8, 0x51, 0xd5, - 0x95, 0x46, 0x5b, 0xe5, 0x11, 0xf5, 0x51, 0xa5, 0x6d, 0xb9, 0xc2, 0x93, 0x77, 0xa0, 0x24, 0xee, - 0x4d, 0xa8, 0xb5, 0x1c, 0xa8, 0x64, 0xe2, 0xe3, 0xa4, 0xd8, 0xb5, 0x3f, 0x57, 0x0f, 0x99, 0x60, - 0xc4, 0x8f, 0x7c, 0x11, 0xa0, 0x69, 0x3b, 0x36, 0x6b, 0x0b, 0xee, 0xe5, 0xc7, 0xe6, 0xae, 0xc7, - 0xb9, 0xa6, 0xb9, 0x60, 0x8c, 0x23, 0xf9, 0x69, 0x0e, 0xce, 0xf8, 0x94, 0xb9, 0x3d, 0xbf, 0x41, - 0x99, 0xae, 0x2b, 0x38, 0x27, 0x36, 0xff, 0xdd, 0x21, 0x2b, 0x2b, 0xc3, 0x1d, 0xbd, 0x88, 0x69, - 0xc6, 0xd2, 0xb2, 0xd2, 0xf0, 0x4a, 0xac, 0x0f, 0x7f, 0x94, 0x05, 0xfc, 0xca, 0x8f, 0xaa, 0xd5, - 0xfe, 0x82, 0x5a, 0xcd, 0x9c, 0x6b, 0xd4, 0xef, 0xfd, 0xa8, 0x3a, 0x1b, 0xfe, 0xd6, 0x15, 0x10, - 0xfd, 0xe3, 0xe2, 0x26, 0xd1, 0x73, 0xad, 0xf5, 0xad, 0xca, 0x54, 0xd2, 0x24, 0x6e, 0x71, 0x20, - 0x4a, 0x1c, 0xb9, 0x0c, 0x45, 0xcb, 0xa4, 0x5d, 0xd7, 0xa1, 0x56, 0x65, 0x3a, 0x4a, 0x6d, 0xad, - 0x2a, 0x18, 0x6a, 0x2c, 0xf9, 0x12, 0x14, 0x6c, 0x11, 0x5a, 0x54, 0x4e, 0x8b, 0x85, 0xf9, 0xcc, - 0x70, 0xce, 0x87, 0x60, 0x51, 0x03, 0x7e, 0xd6, 0xc8, 0xff, 0x51, 0xb1, 0x25, 0x0d, 0x98, 0x74, - 0x7b, 0x81, 0x90, 0x30, 0x23, 0x24, 0x0c, 0x97, 0xd9, 0xdd, 0x94, 0x3c, 0x64, 0x84, 0xa4, 0x7e, - 0x60, 0xc8, 0x99, 0x8f, 0xb7, 0xd1, 0xb6, 0x3b, 0x96, 0x4f, 0x9d, 0xca, 0xac, 0xc8, 0x09, 0x88, - 0xf1, 0xae, 0x28, 0x18, 0x6a, 0x2c, 0xf9, 0xff, 0x30, 0xed, 0xf6, 0x02, 0xb1, 0x4b, 0xf8, 0x2a, - 0xb3, 0xca, 0x19, 0x41, 0x7e, 0x86, 0xef, 0xd9, 0xcd, 0x38, 0x02, 0x93, 0x74, 0xf3, 0xab, 0x70, - 0x3e, 0x5b, 0x17, 0x1e, 0x75, 0xfc, 0x8d, 0xc7, 0x8f, 0xbf, 0xd3, 0x30, 0x15, 0x2f, 0xdb, 0x15, - 0xa9, 0xe0, 0x58, 0xb5, 0x17, 0x71, 0xa1, 0xe4, 0xd6, 0x4f, 0x22, 0x15, 0xbc, 0x59, 0xef, 0x4b, - 0x05, 0x6b, 0x10, 0x46, 0x32, 0x1e, 0x95, 0x0a, 0xfe, 0xf3, 0x31, 0x88, 0xda, 0x91, 0x97, 0xa1, - 0x48, 0x1d, 0xcb, 0x73, 0x6d, 0x27, 0x48, 0x17, 0x04, 0x5d, 0x55, 0x70, 0xd4, 0x14, 0xb1, 0xc4, - 0xf1, 0xd8, 0x43, 0x13, 0xc7, 0x6d, 0x98, 0x31, 0xc5, 0xb5, 0x6a, 0x94, 0xf1, 0x1b, 0x7f, 0xac, - 0x8c, 0x9f, 0x2e, 0xdb, 0x4a, 0x72, 0xc1, 0x34, 0x5b, 0x2e, 0x89, 0x45, 0xcd, 0x85, 0xa4, 0x89, - 0xa1, 0x24, 0xd5, 0x93, 0x5c, 0x30, 0xcd, 0xd6, 0xf8, 0xfa, 0x18, 0x84, 0x5a, 0xfa, 0x8b, 0x10, - 0xb3, 0x13, 0x03, 0x0a, 0x3e, 0x65, 0xbd, 0x4e, 0xa0, 0xbc, 0x16, 0x61, 0x09, 0x50, 0x40, 0x50, - 0x61, 0x8c, 0x3d, 0x98, 0xe6, 0xbd, 0xed, 0x74, 0x68, 0xa7, 0x1e, 0x50, 0x8f, 0x91, 0x26, 0xe4, - 0x19, 0xff, 0x47, 0xcd, 0xc9, 0x88, 0x65, 0x12, 0x01, 0xf5, 0x62, 0x51, 0x01, 0xe7, 0x8b, 0x92, - 0xbd, 0xf1, 0x8d, 0x31, 0x28, 0xe9, 0x79, 0x3a, 0x46, 0xa8, 0xf1, 0x02, 0x4c, 0x5a, 0xb4, 0x69, - 0xf2, 0xd1, 0xa8, 0x7d, 0xc1, 0x8d, 0xce, 0xaa, 0x04, 0x61, 0x88, 0x23, 0xd5, 0x64, 0x8a, 0xa7, - 0xd4, 0x97, 0xde, 0xd9, 0x85, 0x92, 0xf8, 0x67, 0x2d, 0xac, 0x13, 0x1f, 0x76, 0xdd, 0xef, 0x86, - 0x5c, 0x64, 0xaa, 0x53, 0xff, 0xc4, 0x88, 0x7f, 0xaa, 0xbe, 0x3b, 0x7f, 0x9c, 0xfa, 0x6e, 0x63, - 0x0d, 0xf8, 0xb1, 0x71, 0x6d, 0x85, 0xbc, 0x01, 0x45, 0xa6, 0x4c, 0x92, 0x9a, 0x97, 0x8f, 0xe9, - 0x52, 0x11, 0x05, 0x3f, 0x3a, 0xa8, 0x4e, 0x0b, 0xe2, 0x10, 0x80, 0xba, 0x89, 0xf1, 0xd5, 0x09, - 0x88, 0x39, 0xc8, 0xc7, 0x98, 0x61, 0x2b, 0x15, 0xf3, 0xbc, 0x3d, 0x6c, 0xcc, 0x13, 0x06, 0x12, - 0x52, 0xe1, 0x92, 0x61, 0x0e, 0xef, 0x47, 0x9b, 0x76, 0x3c, 0xb5, 0x3e, 0xba, 0x1f, 0xd7, 0x69, - 0xc7, 0x43, 0x81, 0xd1, 0xf7, 0xac, 0x13, 0x03, 0xef, 0x59, 0xdf, 0x81, 0x7c, 0xcb, 0xec, 0xb5, - 0xa8, 0xca, 0x61, 0x7e, 0x7a, 0xb8, 0x7b, 0x39, 0xce, 0x41, 0x2a, 0x88, 0xf8, 0x17, 0x25, 0x4f, - 0xae, 0x20, 0xed, 0x30, 0x63, 0xa8, 0xfc, 0xe9, 0xe1, 0x14, 0x44, 0xe7, 0x1d, 0xa5, 0x82, 0xe8, - 0x9f, 0x18, 0xf1, 0xe7, 0x07, 0x71, 0x43, 0x56, 0xc2, 0xa9, 0x0b, 0x95, 0xcf, 0x0e, 0x79, 0x5d, - 0x2c, 0x78, 0xc8, 0x3d, 0xa1, 0x7e, 0x60, 0xc8, 0xd9, 0x58, 0x82, 0x72, 0xac, 0x32, 0x9a, 0xcf, - 0xaf, 0xae, 0xf3, 0x8a, 0xcd, 0xef, 0xaa, 0x19, 0x98, 0x28, 0x30, 0xc6, 0xd1, 0x18, 0x68, 0xb7, - 0x27, 0x7e, 0x67, 0x6c, 0x36, 0x62, 0x65, 0xa7, 0x89, 0x0a, 0x11, 0xd7, 0x41, 0x85, 0xe5, 0x4e, - 0x78, 0x97, 0xfa, 0x2d, 0x7d, 0x9c, 0xaa, 0xed, 0xaa, 0x9d, 0xf0, 0xdb, 0x71, 0x24, 0x26, 0x69, - 0xf9, 0x61, 0xd6, 0x35, 0x1d, 0xbb, 0x49, 0x59, 0x90, 0xbe, 0x1b, 0xb8, 0xad, 0xe0, 0xa8, 0x29, - 0xc8, 0x35, 0x38, 0xc3, 0x68, 0xb0, 0xb9, 0xe7, 0x50, 0x5f, 0x57, 0xae, 0xa8, 0x52, 0xa6, 0x67, - 0x42, 0x5f, 0xb0, 0x9e, 0x26, 0xc0, 0xfe, 0x36, 0x22, 0xa0, 0x91, 0x55, 0x44, 0x2b, 0xae, 0x63, - 0xd9, 0xfa, 0x51, 0x48, 0x3c, 0xa0, 0x49, 0xe1, 0xb1, 0xaf, 0x05, 0xe7, 0xd2, 0x34, 0xed, 0x4e, - 0xcf, 0xa7, 0x11, 0x97, 0x42, 0x92, 0xcb, 0x5a, 0x0a, 0x8f, 0x7d, 0x2d, 0x8c, 0x7f, 0xce, 0xc1, - 0x34, 0xd2, 0xc0, 0xdf, 0xd7, 0x93, 0x52, 0x85, 0x7c, 0x47, 0x14, 0x2d, 0xe5, 0x44, 0xd1, 0x92, - 0x50, 0x59, 0x59, 0xa3, 0x24, 0xe1, 0x64, 0x15, 0xca, 0x3e, 0x6f, 0xa1, 0x0a, 0xc4, 0xe4, 0x84, - 0x1b, 0x61, 0x8c, 0x8a, 0x11, 0xea, 0x28, 0xf9, 0x13, 0xe3, 0xcd, 0x88, 0x03, 0x93, 0x3b, 0xb2, - 0xc8, 0x58, 0x1d, 0xf5, 0xc3, 0xe9, 0xa2, 0x2a, 0x54, 0x16, 0xf7, 0x05, 0x61, 0xd5, 0xf2, 0x51, - 0xf4, 0x2f, 0x86, 0x42, 0x8c, 0x6f, 0xe6, 0x00, 0xa2, 0x77, 0x1a, 0x64, 0x17, 0x8a, 0xec, 0xd5, - 0x84, 0x93, 0x35, 0x64, 0x3d, 0x87, 0x62, 0x12, 0x2b, 0xac, 0x53, 0x10, 0xd4, 0x02, 0x1e, 0xe5, - 0x61, 0xfd, 0x64, 0x1c, 0x74, 0xab, 0x27, 0xe4, 0x60, 0xbd, 0xc8, 0x0f, 0xe7, 0x56, 0x54, 0x6c, - 0xad, 0xe9, 0x50, 0x40, 0x51, 0x61, 0xb9, 0x17, 0x1d, 0x5e, 0x68, 0x2a, 0xd5, 0x16, 0x5e, 0x74, - 0x78, 0xf7, 0x89, 0x1a, 0x9b, 0xe5, 0xb2, 0xe5, 0x9f, 0x9a, 0xcb, 0x56, 0x78, 0x22, 0x2e, 0x1b, - 0x0f, 0x97, 0x7d, 0xb7, 0x43, 0x97, 0x71, 0x43, 0x85, 0xe5, 0x3a, 0x5c, 0x46, 0x09, 0xc6, 0x10, - 0x4f, 0x5e, 0x83, 0x72, 0x8f, 0xd1, 0xfa, 0xea, 0xcd, 0x15, 0x9f, 0x5a, 0x4c, 0xdd, 0x15, 0xeb, - 0x44, 0xcd, 0x9d, 0x08, 0x85, 0x71, 0x3a, 0xe3, 0x77, 0x72, 0x70, 0xba, 0xde, 0xf0, 0x6d, 0x2f, - 0xd0, 0x96, 0x6e, 0x43, 0xbc, 0xac, 0x08, 0x4c, 0x1e, 0xff, 0x2a, 0x55, 0x7c, 0x6e, 0xc0, 0x35, - 0x99, 0x24, 0x4a, 0x3c, 0xbc, 0x90, 0x20, 0x8c, 0x58, 0x88, 0x9c, 0xb3, 0xb0, 0xa5, 0x69, 0x95, - 0xa8, 0x0b, 0x28, 0x2a, 0xac, 0xf1, 0xad, 0x1c, 0x14, 0x75, 0xb5, 0xd1, 0xf3, 0x90, 0x17, 0xf6, - 0x3b, 0x5d, 0x2d, 0x21, 0xac, 0x3b, 0x4a, 0x9c, 0xc8, 0xbf, 0xf2, 0x90, 0xbe, 0x2f, 0xff, 0xca, - 0x81, 0x28, 0x71, 0x5c, 0xd7, 0xa9, 0x63, 0xa5, 0xf3, 0xaf, 0x57, 0x1d, 0x0b, 0x39, 0x5c, 0x14, - 0x6d, 0xbb, 0x7e, 0xd7, 0x0c, 0xd2, 0x19, 0xf1, 0x35, 0x01, 0x45, 0x85, 0x35, 0xde, 0x82, 0x19, - 0x55, 0x16, 0xaa, 0x27, 0xea, 0xb1, 0xde, 0x22, 0x18, 0xff, 0x9e, 0x83, 0xf2, 0xf6, 0xf6, 0x2d, - 0x6d, 0xd6, 0x10, 0xce, 0x33, 0x59, 0x07, 0xba, 0xdc, 0x0c, 0xa8, 0xbf, 0xe2, 0x76, 0xbd, 0x0e, - 0xd5, 0xbc, 0x54, 0x71, 0x66, 0x3d, 0x93, 0x02, 0x07, 0xb4, 0x24, 0xeb, 0x70, 0x36, 0x8e, 0x51, - 0x46, 0x5b, 0x3d, 0x7e, 0x90, 0x55, 0x08, 0xfd, 0x68, 0xcc, 0x6a, 0x93, 0x66, 0xa5, 0x2c, 0xb7, - 0x7a, 0x78, 0xd8, 0xc7, 0x4a, 0xa1, 0x31, 0xab, 0x8d, 0x31, 0x0d, 0xe5, 0xd8, 0xab, 0x53, 0xe3, - 0xdb, 0xcf, 0x80, 0xae, 0x46, 0xfc, 0x65, 0x4d, 0xe3, 0x50, 0x19, 0xc8, 0x86, 0xce, 0x90, 0xe4, - 0x47, 0xcf, 0x90, 0x68, 0x8d, 0x4f, 0x65, 0x49, 0x5a, 0x51, 0x96, 0xa4, 0x70, 0x02, 0x59, 0x12, - 0x6d, 0xba, 0xfa, 0x32, 0x25, 0xbf, 0x9b, 0x83, 0x29, 0xc7, 0xb5, 0x68, 0x68, 0x20, 0x2b, 0x93, - 0xc2, 0x01, 0xdf, 0x1c, 0x69, 0x12, 0x65, 0xc2, 0x4c, 0x71, 0x94, 0x09, 0x32, 0x9d, 0x50, 0x8e, - 0xa3, 0x30, 0x21, 0x9a, 0xac, 0x41, 0xd1, 0x6c, 0x36, 0x6d, 0xc7, 0x0e, 0xf6, 0x55, 0x59, 0xe5, - 0xc5, 0x2c, 0xdb, 0xb7, 0xac, 0x68, 0xe4, 0x69, 0x14, 0xfe, 0x42, 0xdd, 0x96, 0x1f, 0xe7, 0xfa, - 0x45, 0x41, 0x69, 0x84, 0xe3, 0x3c, 0xbc, 0x43, 0x89, 0x39, 0x82, 0x61, 0xf5, 0x73, 0xf4, 0xc0, - 0xc0, 0x80, 0x82, 0x4c, 0x9e, 0x89, 0x3c, 0x69, 0x51, 0x06, 0x1e, 0x32, 0xb1, 0x86, 0x0a, 0x43, - 0x5a, 0x61, 0x60, 0x5b, 0x16, 0x93, 0x5b, 0x1b, 0x3a, 0xd8, 0xd7, 0xb1, 0x72, 0x76, 0x64, 0x4b, - 0x6e, 0xc4, 0x8f, 0x8f, 0xa9, 0xe3, 0x1c, 0x1f, 0xd3, 0x03, 0x8f, 0x8e, 0x16, 0x14, 0x98, 0x38, - 0x9c, 0x44, 0xc6, 0xb0, 0x7c, 0x65, 0x65, 0x38, 0x97, 0x28, 0x71, 0xbe, 0xc9, 0xd9, 0x91, 0x30, - 0x54, 0xec, 0x89, 0x0b, 0xc5, 0x30, 0xad, 0xa9, 0x92, 0x8e, 0xc3, 0xdd, 0x8d, 0xa7, 0xc3, 0x86, - 0xb0, 0x7c, 0x4f, 0x42, 0x51, 0x0b, 0x21, 0xef, 0xc0, 0xb8, 0x65, 0xb6, 0x54, 0xfa, 0xf1, 0xed, - 0xa1, 0x0b, 0x4b, 0x43, 0x31, 0xe2, 0xd1, 0xe4, 0xea, 0xf2, 0x35, 0xe4, 0x5c, 0xc9, 0x6e, 0xf4, - 0xb2, 0x61, 0x76, 0x84, 0xb7, 0x88, 0xa9, 0xf3, 0x4e, 0x86, 0x57, 0x7d, 0x6f, 0x23, 0xae, 0xc2, - 0xe4, 0x03, 0xb7, 0xd3, 0xeb, 0xaa, 0xbc, 0x65, 0xf9, 0xca, 0x7c, 0xd6, 0x6a, 0xdf, 0x15, 0x24, - 0x91, 0x11, 0x90, 0xbf, 0x19, 0x86, 0x6d, 0xc9, 0x57, 0x72, 0x70, 0x9a, 0x6f, 0x1d, 0xad, 0x07, - 0xac, 0x42, 0x46, 0xd0, 0xd4, 0x3b, 0x8c, 0x1f, 0x8c, 0xa1, 0x86, 0x9d, 0x57, 0x62, 0x4f, 0xaf, - 0x27, 0x24, 0x60, 0x4a, 0x22, 0xf1, 0xa0, 0xc8, 0x6c, 0x8b, 0x36, 0x4c, 0x9f, 0x55, 0xce, 0x9e, - 0x98, 0xf4, 0xc8, 0x13, 0x57, 0xbc, 0x51, 0x4b, 0x21, 0xbf, 0x25, 0xde, 0x8f, 0xaa, 0xb7, 0xdf, - 0xea, 0x3d, 0xfe, 0xdc, 0x49, 0xbe, 0xc7, 0x3f, 0x2b, 0x1f, 0x8f, 0x26, 0x24, 0x60, 0x5a, 0x24, - 0xd9, 0x84, 0x73, 0xf2, 0x85, 0x43, 0xfa, 0x79, 0xcb, 0x39, 0x51, 0xbd, 0xf0, 0xcc, 0xe1, 0x41, - 0xf5, 0xdc, 0x72, 0x16, 0x01, 0x66, 0xb7, 0x23, 0x1f, 0xc0, 0xb4, 0x1f, 0x8f, 0xe2, 0x2a, 0xe7, - 0x47, 0xa8, 0xc9, 0x4b, 0xc4, 0x83, 0x32, 0x2f, 0x9e, 0x00, 0x61, 0x52, 0x16, 0x79, 0x05, 0xca, - 0x9e, 0xb2, 0x54, 0x36, 0xeb, 0x56, 0x2e, 0x88, 0x31, 0x88, 0x13, 0x75, 0x2b, 0x02, 0x63, 0x9c, - 0x86, 0xdc, 0x81, 0x72, 0xe0, 0x76, 0xa8, 0xaf, 0x2e, 0xde, 0x2b, 0x62, 0xf1, 0x17, 0xb2, 0x34, - 0x79, 0x5b, 0x93, 0x45, 0xee, 0x75, 0x04, 0x63, 0x18, 0xe7, 0x43, 0x3e, 0x03, 0xd3, 0xe1, 0x6b, - 0x26, 0x5f, 0x24, 0xc1, 0x9e, 0x49, 0x66, 0x03, 0xea, 0x71, 0x24, 0x26, 0x69, 0x79, 0x7c, 0xef, - 0xf9, 0xb6, 0xeb, 0xdb, 0xc1, 0xfe, 0x4a, 0xc7, 0x64, 0x4c, 0x30, 0x98, 0x17, 0x0c, 0x74, 0x7c, - 0xbf, 0x95, 0x26, 0xc0, 0xfe, 0x36, 0x3c, 0x88, 0x0a, 0x81, 0x95, 0x67, 0x85, 0x03, 0x27, 0xcc, - 0x52, 0xd8, 0x16, 0x35, 0x76, 0x40, 0x49, 0xf9, 0xc5, 0x61, 0x4a, 0xca, 0x89, 0x05, 0x17, 0xcd, - 0x5e, 0xe0, 0x76, 0x39, 0x20, 0xd9, 0x64, 0xdb, 0xdd, 0xa5, 0x4e, 0xe5, 0x92, 0x38, 0xab, 0x2e, - 0x1d, 0x1e, 0x54, 0x2f, 0x2e, 0x3f, 0x84, 0x0e, 0x1f, 0xca, 0x85, 0x74, 0xa1, 0x48, 0x55, 0x59, - 0x7c, 0xe5, 0x63, 0x23, 0x1c, 0x12, 0xc9, 0xda, 0x7a, 0x39, 0x41, 0x21, 0x0c, 0xb5, 0x08, 0xb2, - 0x0d, 0xe5, 0xb6, 0xcb, 0x82, 0xe5, 0x8e, 0x6d, 0x32, 0xca, 0x2a, 0xcf, 0x09, 0x3d, 0xc9, 0x3c, - 0xdf, 0xae, 0x87, 0x64, 0x91, 0x9a, 0x5c, 0x8f, 0x5a, 0x62, 0x9c, 0x0d, 0xa1, 0x22, 0xa2, 0xec, - 0x89, 0x55, 0x73, 0x9d, 0x80, 0xbe, 0x1f, 0x54, 0x16, 0xc4, 0x58, 0x5e, 0xcc, 0xe2, 0xbc, 0xe5, - 0x5a, 0xf5, 0x24, 0xb5, 0xdc, 0xe5, 0x29, 0x20, 0xa6, 0x79, 0x92, 0xd7, 0x61, 0xca, 0x73, 0xad, - 0xba, 0x47, 0x1b, 0x5b, 0x66, 0xd0, 0x68, 0x57, 0xaa, 0xc9, 0x7b, 0xf6, 0xad, 0x18, 0x0e, 0x13, - 0x94, 0x3c, 0x1a, 0xf0, 0x29, 0xeb, 0xed, 0x74, 0xed, 0x60, 0x8b, 0x3a, 0x96, 0xed, 0xb4, 0xb6, - 0x5c, 0x8b, 0x55, 0x0c, 0xb1, 0x84, 0x22, 0x1a, 0xc0, 0x7e, 0x34, 0x66, 0xb5, 0x21, 0x0d, 0x98, - 0xec, 0xca, 0xd2, 0x88, 0xca, 0xf3, 0x23, 0xb8, 0x95, 0xaa, 0xbc, 0x42, 0x1e, 0x4a, 0xea, 0x07, - 0x86, 0x9c, 0xe7, 0xdf, 0x82, 0x33, 0x7d, 0xfe, 0xdf, 0x63, 0xd5, 0x84, 0xfc, 0x98, 0x47, 0x6b, - 0x31, 0x8f, 0xfb, 0xa4, 0xe3, 0x94, 0x6b, 0x70, 0x46, 0x7d, 0xff, 0x87, 0x3b, 0x07, 0x9d, 0x9e, - 0x7e, 0x77, 0x1e, 0xcb, 0xdd, 0x61, 0x9a, 0x00, 0xfb, 0xdb, 0xf0, 0x35, 0x6d, 0xc8, 0x87, 0xcd, - 0xb2, 0x14, 0x49, 0x26, 0x49, 0xf4, 0x9a, 0xaa, 0x47, 0xcf, 0xf2, 0xca, 0x3f, 0x41, 0x69, 0xfc, - 0x49, 0x0e, 0xa6, 0x13, 0x07, 0xd5, 0x89, 0x47, 0xfe, 0x6b, 0x40, 0xba, 0xb6, 0xef, 0xbb, 0xbe, - 0x3c, 0xed, 0x6f, 0xf3, 0x5d, 0xcb, 0xd4, 0xbb, 0x06, 0x51, 0x4f, 0x7b, 0xbb, 0x0f, 0x8b, 0x19, - 0x2d, 0x8c, 0x7f, 0xca, 0x41, 0x74, 0xc1, 0xa0, 0x8b, 0xc8, 0x73, 0x03, 0x8b, 0xc8, 0x5f, 0x86, - 0xe2, 0x7d, 0xe6, 0x3a, 0x5b, 0x51, 0xa9, 0xb9, 0x5e, 0x8a, 0x1b, 0xf5, 0xcd, 0x0d, 0x41, 0xa9, - 0x29, 0x04, 0xf5, 0x7b, 0x6b, 0x76, 0x27, 0xe8, 0x2f, 0xc8, 0xbe, 0xf1, 0x39, 0x09, 0x47, 0x4d, - 0x41, 0x96, 0xa0, 0xa4, 0xef, 0xb4, 0x54, 0xca, 0x40, 0x4f, 0x82, 0xbe, 0xd0, 0xc1, 0x88, 0x86, - 0xbc, 0x14, 0xdd, 0xdc, 0xe4, 0x93, 0x39, 0x9c, 0xf4, 0xed, 0x8d, 0xf1, 0x9d, 0x31, 0x28, 0x3e, - 0xc5, 0x47, 0xde, 0x8d, 0xc4, 0x23, 0xef, 0x13, 0x78, 0x11, 0x9c, 0xf5, 0xc0, 0x7b, 0x37, 0xf5, - 0xc0, 0x7b, 0x65, 0xc4, 0x1b, 0xb5, 0x87, 0x3e, 0xee, 0xfe, 0xbb, 0x1c, 0x9c, 0x09, 0x49, 0xa3, - 0xc4, 0xf4, 0xa7, 0x62, 0x95, 0x98, 0xa5, 0xda, 0x0b, 0xa9, 0x62, 0xa4, 0x73, 0x7d, 0x0d, 0x62, - 0x95, 0x49, 0x5f, 0xd4, 0xbd, 0x97, 0x7a, 0xb4, 0x96, 0x14, 0x7c, 0x74, 0x50, 0x3d, 0xd6, 0x57, - 0xc4, 0x16, 0x35, 0xef, 0x64, 0x87, 0xe3, 0xf5, 0x30, 0xe3, 0x0f, 0xaf, 0x87, 0x31, 0x7e, 0x90, - 0x83, 0xa9, 0xa7, 0xf8, 0x68, 0x7d, 0x27, 0xf9, 0x68, 0xfd, 0x8d, 0x91, 0x96, 0x6d, 0xc0, 0x83, - 0xf5, 0xbf, 0x3f, 0x0f, 0x89, 0xc7, 0xe2, 0xc4, 0x81, 0x52, 0x68, 0x21, 0xc3, 0x1b, 0xd8, 0x37, - 0x46, 0xca, 0x02, 0x44, 0x7b, 0x33, 0x84, 0x30, 0x8c, 0x44, 0x90, 0x2b, 0x00, 0x94, 0x1f, 0x0d, - 0x32, 0xbb, 0x3d, 0x96, 0xbc, 0xa0, 0xbc, 0xaa, 0x31, 0x18, 0xa3, 0x7a, 0xfa, 0x19, 0xa6, 0x6c, - 0x9f, 0x6c, 0xe2, 0x89, 0xf8, 0x64, 0x17, 0x4f, 0xdc, 0x27, 0x7b, 0xee, 0xc9, 0xfb, 0x64, 0xb1, - 0x08, 0x34, 0x3f, 0x42, 0x04, 0xfa, 0x01, 0xcc, 0xc9, 0x7f, 0x57, 0x3a, 0xa6, 0xdd, 0xd5, 0xfa, - 0xa2, 0x6a, 0xd7, 0x5f, 0xca, 0xf4, 0xc4, 0xa8, 0xcf, 0x6c, 0x16, 0x50, 0x27, 0xb8, 0x1b, 0xb5, - 0x8c, 0x6a, 0xf7, 0xee, 0x66, 0xb0, 0xc3, 0x4c, 0x21, 0xe9, 0x90, 0x65, 0xf2, 0x18, 0x21, 0xcb, - 0xb7, 0x72, 0x70, 0xce, 0xcc, 0xfa, 0x36, 0x92, 0x4a, 0x5c, 0xdd, 0x18, 0x29, 0x80, 0x4c, 0x70, - 0x54, 0x01, 0x60, 0x16, 0x0a, 0xb3, 0xfb, 0x40, 0x5e, 0x88, 0x72, 0x10, 0x25, 0xa1, 0x54, 0xd9, - 0xd9, 0x83, 0xaf, 0xa5, 0x73, 0x7f, 0x20, 0x66, 0xbb, 0x3e, 0xf2, 0x61, 0x74, 0x02, 0xf9, 0xbf, - 0xf2, 0x08, 0xf9, 0xbf, 0x54, 0x3c, 0x39, 0x75, 0x42, 0xf1, 0xa4, 0x03, 0xb3, 0x76, 0xd7, 0x6c, - 0xd1, 0xad, 0x5e, 0xa7, 0x23, 0xef, 0x88, 0x58, 0x65, 0x5a, 0xf0, 0xce, 0x7c, 0xc9, 0xc4, 0xe3, - 0xfb, 0x4e, 0xfa, 0xdb, 0x06, 0xfa, 0x36, 0x76, 0x3d, 0xc5, 0x09, 0xfb, 0x78, 0x73, 0xb5, 0xe4, - 0x71, 0xca, 0x06, 0x0d, 0xf8, 0x6c, 0x8b, 0xd4, 0x98, 0xfa, 0x7a, 0xdd, 0xf5, 0x08, 0x8c, 0x71, - 0x1a, 0x72, 0x13, 0x4a, 0x96, 0xc3, 0xd4, 0x5d, 0xec, 0x8c, 0xb0, 0x52, 0x1f, 0xe7, 0xb6, 0x6d, - 0x75, 0xa3, 0xae, 0x6f, 0x61, 0x2f, 0x66, 0x14, 0x1e, 0x6a, 0x3c, 0x46, 0xed, 0xc9, 0x6d, 0xc1, - 0x4c, 0x3d, 0xeb, 0x93, 0xb9, 0xac, 0x4b, 0x03, 0x42, 0xa2, 0xd5, 0x8d, 0xf0, 0x15, 0xe2, 0xb4, - 0x12, 0xa7, 0x1e, 0xeb, 0x45, 0x1c, 0x62, 0x0f, 0xc6, 0xcf, 0x3c, 0xec, 0xc1, 0x38, 0xb9, 0x03, - 0x17, 0x82, 0xa0, 0x93, 0xb8, 0xe0, 0x50, 0xb5, 0x9d, 0xa2, 0xd0, 0x37, 0x2f, 0xbf, 0xf7, 0xb1, - 0xbd, 0x7d, 0x2b, 0x8b, 0x04, 0x07, 0xb5, 0x15, 0x77, 0x05, 0x41, 0x47, 0xa7, 0x44, 0x16, 0x46, - 0xb9, 0x2b, 0x88, 0x6e, 0x92, 0xd4, 0x5d, 0x41, 0x04, 0xc0, 0xb8, 0x94, 0xc1, 0xa9, 0x9d, 0xb3, - 0x43, 0xa6, 0x76, 0xe2, 0xd9, 0x84, 0xb9, 0x87, 0x66, 0x13, 0xfa, 0xb2, 0x1f, 0xe7, 0x1e, 0x23, - 0xfb, 0xf1, 0x8e, 0x28, 0x2a, 0xbd, 0xb6, 0xa2, 0x32, 0x47, 0xc3, 0x55, 0xb9, 0x88, 0xea, 0x20, - 0x59, 0x32, 0x20, 0xfe, 0x45, 0xc9, 0x93, 0x6c, 0xc1, 0x9c, 0xe7, 0x5a, 0x7d, 0xc9, 0x13, 0x91, - 0x2a, 0x8a, 0x15, 0x5f, 0x6f, 0x65, 0xd0, 0x60, 0x66, 0x4b, 0x61, 0xc0, 0x23, 0x78, 0xa5, 0x22, - 0x26, 0x46, 0x1a, 0xf0, 0x08, 0x8c, 0x71, 0x9a, 0x74, 0x2e, 0xe1, 0x99, 0x27, 0x96, 0x4b, 0x98, - 0x7f, 0x0a, 0xb9, 0x84, 0x67, 0x8f, 0x9d, 0x4b, 0xf8, 0x75, 0x38, 0xeb, 0xb9, 0xd6, 0xaa, 0xcd, - 0xfc, 0x9e, 0xf8, 0x72, 0x66, 0xad, 0x67, 0xb5, 0x68, 0x20, 0x92, 0x11, 0xe5, 0x2b, 0x57, 0xe2, - 0x9d, 0x94, 0x1f, 0xf0, 0x5d, 0x54, 0x1f, 0xf0, 0x15, 0x9b, 0x3c, 0xd5, 0x4a, 0x84, 0x1d, 0x22, - 0xff, 0x90, 0x81, 0xc4, 0x2c, 0x39, 0xf1, 0xfc, 0xc3, 0xa5, 0x27, 0x95, 0x7f, 0x20, 0x6f, 0x43, - 0x91, 0xb5, 0x7b, 0x81, 0xe5, 0xee, 0x39, 0x22, 0x2b, 0x55, 0xd2, 0x5f, 0x4b, 0x2a, 0xd6, 0x15, - 0xfc, 0xe8, 0xa0, 0x3a, 0x1b, 0xfe, 0x1f, 0xab, 0x5f, 0x53, 0x90, 0xd1, 0x33, 0x18, 0xff, 0x36, - 0x05, 0xa7, 0x53, 0x9f, 0xc2, 0xd1, 0x35, 0xfe, 0xb9, 0xe3, 0xd6, 0xf8, 0x27, 0x8a, 0xf0, 0xc7, - 0x9e, 0x68, 0x11, 0xfe, 0xf8, 0x89, 0x17, 0xe1, 0xc7, 0x82, 0xab, 0x89, 0x47, 0x3c, 0x36, 0x58, - 0x86, 0x99, 0x86, 0xdb, 0xf5, 0xc4, 0x13, 0x6d, 0x55, 0x84, 0x2d, 0x83, 0x75, 0x5d, 0xab, 0xb1, - 0x92, 0x44, 0x63, 0x9a, 0x9e, 0xfc, 0x1a, 0xe4, 0x1d, 0xd1, 0xb0, 0x30, 0xc2, 0xa3, 0xad, 0xe4, - 0x82, 0x09, 0x1f, 0x46, 0xbd, 0x9b, 0x0a, 0xaf, 0x30, 0xf2, 0x02, 0x76, 0x14, 0xfe, 0x83, 0x52, - 0x28, 0x79, 0x17, 0x2a, 0x6e, 0xb3, 0xd9, 0x71, 0x4d, 0x2b, 0x7a, 0x28, 0x70, 0x97, 0x7b, 0xa7, - 0xea, 0x52, 0xb0, 0x54, 0xbb, 0xa4, 0x18, 0x54, 0x36, 0x07, 0xd0, 0xe1, 0x40, 0x0e, 0xdc, 0xd5, - 0x9c, 0x49, 0x3e, 0x60, 0x61, 0x95, 0x92, 0x18, 0xe6, 0xaf, 0x9c, 0xc4, 0x30, 0x93, 0xaf, 0x65, - 0xd4, 0x80, 0xa3, 0x2a, 0x99, 0x24, 0x16, 0xd3, 0x3d, 0x21, 0x3e, 0x9c, 0xf7, 0xb2, 0x1c, 0x71, - 0xa6, 0x2e, 0x92, 0x1f, 0x16, 0x0e, 0x2c, 0x28, 0x29, 0xe7, 0x33, 0x5d, 0x79, 0x86, 0x03, 0x38, - 0xc7, 0x9f, 0x10, 0x14, 0x9f, 0xd8, 0x13, 0x82, 0x2f, 0x8b, 0x0f, 0xea, 0xc8, 0xc4, 0x41, 0xe8, - 0xe7, 0xad, 0x8d, 0x34, 0xe1, 0x3a, 0x0f, 0x11, 0x6d, 0x1e, 0x0d, 0x62, 0x18, 0x93, 0x46, 0x7e, - 0x96, 0xf9, 0x82, 0x45, 0xfa, 0xb1, 0x5f, 0x38, 0x89, 0x45, 0xff, 0x79, 0x7b, 0xc5, 0x32, 0xbf, - 0x2f, 0x9f, 0xcd, 0x0d, 0x7c, 0x40, 0x78, 0x27, 0xf9, 0x84, 0xf8, 0xad, 0x11, 0x9f, 0xf1, 0xc4, - 0x1f, 0x2f, 0xfe, 0x66, 0x0e, 0xe6, 0xb2, 0x36, 0x41, 0x46, 0x2f, 0xea, 0xc9, 0x5e, 0x8c, 0x96, - 0x1e, 0x89, 0xf7, 0xe1, 0x64, 0x1e, 0x93, 0x7c, 0xbd, 0x10, 0x4b, 0xe9, 0x04, 0xd4, 0xfb, 0x65, - 0x81, 0xcf, 0x50, 0x05, 0x3e, 0x89, 0xcf, 0x8f, 0xe5, 0x9f, 0xe2, 0xe7, 0xc7, 0x0a, 0x43, 0x7c, - 0x7e, 0x6c, 0xf2, 0x69, 0x7e, 0x7e, 0xac, 0x78, 0xcc, 0xcf, 0x8f, 0x95, 0x7e, 0x7e, 0x3e, 0x3f, - 0xf6, 0x51, 0x0e, 0x66, 0xff, 0xa7, 0x7f, 0x1f, 0xf8, 0xc7, 0x39, 0x98, 0xfb, 0x2f, 0xf8, 0x30, - 0xf0, 0xfd, 0x64, 0x96, 0xfa, 0xea, 0x89, 0x0c, 0x72, 0x40, 0xb6, 0xfa, 0x0f, 0x33, 0x86, 0x28, - 0xb2, 0xd6, 0x1f, 0x3c, 0xa9, 0x2f, 0xac, 0xce, 0x65, 0x7d, 0x61, 0x35, 0xf9, 0x45, 0xd5, 0xda, - 0xe2, 0xf7, 0x3e, 0x5a, 0x38, 0xf5, 0x83, 0x8f, 0x16, 0x4e, 0xfd, 0xf0, 0xa3, 0x85, 0x53, 0x1f, - 0x1e, 0x2e, 0xe4, 0xbe, 0x77, 0xb8, 0x90, 0xfb, 0xc1, 0xe1, 0x42, 0xee, 0x87, 0x87, 0x0b, 0xb9, - 0x1f, 0x1f, 0x2e, 0xe4, 0xfe, 0xe0, 0x1f, 0x17, 0x4e, 0x7d, 0xa1, 0x18, 0x0a, 0xf8, 0xcf, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x04, 0x30, 0x19, 0x70, 0xee, 0x65, 0x00, 0x00, + // 6067 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7c, 0x4d, 0x6c, 0x1c, 0xd9, + 0x71, 0xb0, 0x86, 0xe4, 0x0c, 0x67, 0x6a, 0x48, 0x91, 0x7c, 0xa2, 0xa4, 0x59, 0xae, 0x96, 0x23, + 0xf7, 0x7e, 0xbb, 0x9f, 0x36, 0x59, 0x93, 0x5e, 0xc9, 0x9b, 0xac, 0x7f, 0xf6, 0x87, 0x43, 0x8a, + 0x14, 0x25, 0x8a, 0xa4, 0x6b, 0x28, 0x29, 0xf6, 0x2e, 0xec, 0x34, 0xa7, 0xdf, 0xcc, 0xb4, 0x38, + 0xd3, 0x3d, 0xdb, 0xaf, 0x47, 0x5c, 0x7a, 0x13, 0x64, 0x63, 0x24, 0x70, 0x7e, 0x60, 0x20, 0x46, + 0x00, 0xc3, 0x80, 0x11, 0x20, 0xf0, 0x25, 0x97, 0xe4, 0x98, 0x1c, 0x7d, 0x30, 0x72, 0x30, 0x7c, + 0x89, 0x93, 0x4b, 0x9c, 0x20, 0xa0, 0xbd, 0x0c, 0x12, 0x2c, 0xe0, 0x20, 0x3e, 0xe4, 0x10, 0x80, + 0xc8, 0x21, 0x78, 0x3f, 0xfd, 0xfa, 0x67, 0x7a, 0x24, 0x6a, 0x86, 0x52, 0x9c, 0xd8, 0x27, 0x72, + 0xaa, 0xea, 0x55, 0xbd, 0x9f, 0x7a, 0xf5, 0xaa, 0xea, 0xd5, 0x6b, 0x58, 0x6e, 0xd8, 0x7e, 0xb3, + 0xbb, 0xbb, 0x50, 0x73, 0xdb, 0x8b, 0xa6, 0xd7, 0x70, 0x3b, 0x9e, 0x7b, 0x5f, 0xfc, 0xb3, 0xd8, + 0xd9, 0x6b, 0x2c, 0x9a, 0x1d, 0x9b, 0x2d, 0xee, 0xbb, 0xde, 0x5e, 0xbd, 0xe5, 0xee, 0x2f, 0x3e, + 0x78, 0xc5, 0x6c, 0x75, 0x9a, 0xe6, 0x2b, 0x8b, 0x0d, 0xea, 0x50, 0xcf, 0xf4, 0xa9, 0xb5, 0xd0, + 0xf1, 0x5c, 0xdf, 0x25, 0xd7, 0x42, 0x26, 0x0b, 0x01, 0x13, 0xf1, 0xcf, 0x42, 0x67, 0xaf, 0xb1, + 0xc0, 0x99, 0x2c, 0x04, 0x4c, 0x16, 0x02, 0x26, 0x73, 0x1f, 0x8f, 0x48, 0x6e, 0xb8, 0x5c, 0x20, + 0xe7, 0xb5, 0xdb, 0xad, 0x8b, 0x5f, 0xe2, 0x87, 0xf8, 0x4f, 0xca, 0x98, 0x33, 0xf6, 0x5e, 0x63, + 0x0b, 0xb6, 0xcb, 0xbb, 0xb4, 0x58, 0x73, 0x3d, 0xba, 0xf8, 0xa0, 0xa7, 0x1f, 0x73, 0x2f, 0x45, + 0x68, 0x3a, 0x6e, 0xcb, 0xae, 0x1d, 0x2c, 0x3e, 0x78, 0x65, 0x97, 0xfa, 0xbd, 0x5d, 0x9e, 0xfb, + 0x64, 0x48, 0xda, 0x36, 0x6b, 0x4d, 0xdb, 0xa1, 0xde, 0x41, 0x38, 0xe4, 0x36, 0xf5, 0xcd, 0x34, + 0x01, 0x8b, 0xfd, 0x5a, 0x79, 0x5d, 0xc7, 0xb7, 0xdb, 0xb4, 0xa7, 0xc1, 0xaf, 0x3c, 0xaa, 0x01, + 0xab, 0x35, 0x69, 0xdb, 0x4c, 0xb6, 0x33, 0xfe, 0x26, 0x03, 0x53, 0x4b, 0x5e, 0xad, 0x69, 0x3f, + 0xa0, 0x55, 0x9f, 0x23, 0x1a, 0x07, 0xe4, 0x6d, 0x18, 0xf5, 0x4d, 0xaf, 0x94, 0xb9, 0x9c, 0xb9, + 0x52, 0xbc, 0xfa, 0xd6, 0xc2, 0x00, 0x73, 0xbe, 0xb0, 0x63, 0x7a, 0x01, 0xbb, 0xca, 0xf8, 0xd1, + 0x61, 0x79, 0x74, 0xc7, 0xf4, 0x90, 0x73, 0x25, 0x5f, 0x82, 0x31, 0xc7, 0x75, 0x68, 0x69, 0x44, + 0x70, 0x5f, 0x1a, 0x88, 0xfb, 0xa6, 0xeb, 0xe8, 0xde, 0x56, 0xf2, 0x47, 0x87, 0xe5, 0x31, 0x0e, + 0x41, 0xc1, 0xd8, 0xf8, 0x69, 0x06, 0x0a, 0x4b, 0x5e, 0xa3, 0xdb, 0xa6, 0x8e, 0xcf, 0x88, 0x07, + 0xd0, 0x31, 0x3d, 0xb3, 0x4d, 0x7d, 0xea, 0xb1, 0x52, 0xe6, 0xf2, 0xe8, 0x95, 0xe2, 0xd5, 0x37, + 0x06, 0x12, 0xba, 0x1d, 0xb0, 0xa9, 0x90, 0xef, 0x1d, 0x96, 0xcf, 0x1c, 0x1d, 0x96, 0x41, 0x83, + 0x18, 0x46, 0xa4, 0x10, 0x07, 0x0a, 0xa6, 0xe7, 0xdb, 0x75, 0xb3, 0xe6, 0xb3, 0xd2, 0x88, 0x10, + 0xf9, 0xfa, 0x40, 0x22, 0x97, 0x14, 0x97, 0xca, 0x8c, 0x92, 0x58, 0x08, 0x20, 0x0c, 0x43, 0x11, + 0xc6, 0x4f, 0x46, 0x21, 0x1f, 0x20, 0xc8, 0x65, 0x18, 0x73, 0xcc, 0x36, 0x15, 0xab, 0x57, 0xa8, + 0x4c, 0xa8, 0x86, 0x63, 0x9b, 0x66, 0x9b, 0x4f, 0x90, 0xd9, 0xa6, 0x9c, 0xa2, 0x63, 0xfa, 0x4d, + 0xb1, 0x02, 0x11, 0x8a, 0x6d, 0xd3, 0x6f, 0xa2, 0xc0, 0x90, 0x4b, 0x30, 0xd6, 0x76, 0x2d, 0x5a, + 0x1a, 0xbd, 0x9c, 0xb9, 0x92, 0x95, 0x13, 0x7c, 0xdb, 0xb5, 0x28, 0x0a, 0x28, 0x6f, 0x5f, 0xf7, + 0xdc, 0x76, 0x69, 0x2c, 0xde, 0x7e, 0xd5, 0x73, 0xdb, 0x28, 0x30, 0xe4, 0x0f, 0x33, 0x30, 0x1d, + 0x74, 0x6f, 0xc3, 0xad, 0x99, 0xbe, 0xed, 0x3a, 0xa5, 0xac, 0x58, 0xf0, 0xeb, 0x43, 0x4d, 0x44, + 0xc0, 0xac, 0x52, 0x52, 0x52, 0xa7, 0x93, 0x18, 0xec, 0x11, 0x4c, 0xae, 0x02, 0x34, 0x5a, 0xee, + 0xae, 0xd9, 0xe2, 0x73, 0x50, 0xca, 0x89, 0x5e, 0xeb, 0x25, 0x5c, 0xd3, 0x18, 0x8c, 0x50, 0x91, + 0x3d, 0x18, 0x37, 0xe5, 0xae, 0x28, 0x8d, 0x8b, 0x7e, 0xaf, 0x0c, 0xd8, 0xef, 0xd8, 0xce, 0xaa, + 0x14, 0x8f, 0x0e, 0xcb, 0xe3, 0x0a, 0x88, 0x81, 0x04, 0xf2, 0x32, 0xe4, 0xdd, 0x0e, 0xef, 0xaa, + 0xd9, 0x2a, 0xe5, 0x2f, 0x67, 0xae, 0xe4, 0x2b, 0xd3, 0xaa, 0x7b, 0xf9, 0x2d, 0x05, 0x47, 0x4d, + 0x61, 0xfc, 0x6d, 0x0e, 0x7a, 0x46, 0x4d, 0x5e, 0x81, 0xa2, 0xe2, 0xb6, 0xe1, 0x36, 0x98, 0x58, + 0xfc, 0x7c, 0x65, 0xea, 0xe8, 0xb0, 0x5c, 0x5c, 0x0a, 0xc1, 0x18, 0xa5, 0x21, 0xf7, 0x60, 0x84, + 0x5d, 0x53, 0xdb, 0xf0, 0xcd, 0x81, 0x46, 0x57, 0xbd, 0xa6, 0x15, 0x34, 0x77, 0x74, 0x58, 0x1e, + 0xa9, 0x5e, 0xc3, 0x11, 0x76, 0x8d, 0x9b, 0x8f, 0x86, 0xed, 0x0b, 0xe5, 0x19, 0xd4, 0x7c, 0xac, + 0xd9, 0xbe, 0x66, 0x2d, 0xcc, 0xc7, 0x9a, 0xed, 0x23, 0xe7, 0xca, 0xcd, 0x47, 0xd3, 0xf7, 0x3b, + 0x42, 0xf9, 0x06, 0x35, 0x1f, 0x37, 0x76, 0x76, 0xb6, 0x35, 0x7b, 0xa1, 0xdd, 0x1c, 0x82, 0x82, + 0x31, 0x79, 0x9f, 0xcf, 0xa4, 0xc4, 0xb9, 0xde, 0x81, 0xd2, 0xda, 0x1b, 0x43, 0x69, 0xad, 0xeb, + 0x1d, 0x68, 0x71, 0x6a, 0x4d, 0x34, 0x02, 0xa3, 0xd2, 0xc4, 0xe8, 0xac, 0x3a, 0x13, 0x4a, 0x3a, + 0xf0, 0xe8, 0x56, 0x56, 0xab, 0x89, 0xd1, 0xad, 0xac, 0x56, 0x51, 0x30, 0xe6, 0x6b, 0xe3, 0x99, + 0xfb, 0x4a, 0xa7, 0x07, 0x5b, 0x1b, 0x34, 0xf7, 0xe3, 0x6b, 0x83, 0xe6, 0x3e, 0x72, 0xae, 0x9c, + 0xb9, 0xcb, 0x98, 0x50, 0xe1, 0x41, 0x99, 0x6f, 0x55, 0xab, 0x71, 0xe6, 0x5b, 0xd5, 0x2a, 0x72, + 0xae, 0x42, 0xab, 0x6a, 0xac, 0x54, 0x18, 0x46, 0xab, 0x96, 0x13, 0xcc, 0xd7, 0x96, 0xab, 0xc8, + 0xb9, 0x1a, 0x0d, 0x38, 0x1f, 0x60, 0x90, 0x76, 0x5c, 0x66, 0x8b, 0xa5, 0xa1, 0x75, 0xb2, 0x08, + 0x85, 0x9a, 0xeb, 0xd4, 0xed, 0xc6, 0x6d, 0xb3, 0xa3, 0x4c, 0xaa, 0xb6, 0xc5, 0xcb, 0x01, 0x02, + 0x43, 0x1a, 0xf2, 0x1c, 0x8c, 0xee, 0xd1, 0x03, 0x65, 0x5b, 0x8b, 0x8a, 0x74, 0xf4, 0x16, 0x3d, + 0x40, 0x0e, 0x37, 0xbe, 0x93, 0x81, 0x73, 0x29, 0x6a, 0xc1, 0x9b, 0x75, 0xbd, 0x96, 0x92, 0xa0, + 0x9b, 0xdd, 0xc1, 0x0d, 0xe4, 0x70, 0xf2, 0xd5, 0x0c, 0x4c, 0x45, 0xf4, 0x64, 0xa9, 0xab, 0xcc, + 0xf7, 0xe0, 0x76, 0x29, 0xc6, 0xab, 0x72, 0x51, 0x49, 0x9c, 0x4a, 0x20, 0x30, 0x29, 0xd5, 0xf8, + 0x7b, 0xe1, 0x2f, 0xc4, 0x60, 0xc4, 0x84, 0xb3, 0x5d, 0x46, 0x3d, 0x7e, 0xb8, 0x54, 0x69, 0xcd, + 0xa3, 0xbe, 0x72, 0x1d, 0x5e, 0x58, 0x90, 0x4e, 0x09, 0xef, 0xc5, 0x02, 0x77, 0xa5, 0x16, 0x1e, + 0xbc, 0xb2, 0x20, 0x29, 0x6e, 0xd1, 0x83, 0x2a, 0x6d, 0x51, 0xce, 0xa3, 0x42, 0x8e, 0x0e, 0xcb, + 0x67, 0xef, 0xc4, 0x18, 0x60, 0x82, 0x21, 0x17, 0xd1, 0x31, 0x19, 0xdb, 0x77, 0x3d, 0x4b, 0x89, + 0x18, 0x79, 0x6c, 0x11, 0xdb, 0x31, 0x06, 0x98, 0x60, 0x68, 0x7c, 0x23, 0x03, 0xe3, 0x15, 0xb3, + 0xb6, 0xe7, 0xd6, 0xeb, 0xdc, 0x22, 0x5b, 0x5d, 0x4f, 0x9e, 0x5b, 0x72, 0x4d, 0xb4, 0x45, 0x5e, + 0x51, 0x70, 0xd4, 0x14, 0xe4, 0x45, 0xc8, 0xc9, 0xe9, 0x10, 0x9d, 0xca, 0x56, 0xce, 0x2a, 0xda, + 0xdc, 0xaa, 0x80, 0xa2, 0xc2, 0x92, 0x57, 0xa1, 0xd8, 0x36, 0xdf, 0x0b, 0x18, 0x08, 0x03, 0x59, + 0xa8, 0x9c, 0x53, 0xc4, 0xc5, 0xdb, 0x21, 0x0a, 0xa3, 0x74, 0xc6, 0x47, 0x19, 0xb8, 0xb8, 0xdc, + 0xea, 0x32, 0x9f, 0x7a, 0xf7, 0xd4, 0x4a, 0xee, 0xd0, 0x76, 0xa7, 0x65, 0xfa, 0x94, 0xfc, 0x3a, + 0xe4, 0xb9, 0x0b, 0x69, 0x99, 0xbe, 0xa9, 0x26, 0xfd, 0x13, 0x91, 0x19, 0xd1, 0x9e, 0x60, 0xa8, + 0x0b, 0x9c, 0x9a, 0xcf, 0xd1, 0xd6, 0xee, 0x7d, 0x5a, 0xf3, 0x6f, 0x53, 0xdf, 0x0c, 0xcf, 0xc2, + 0x10, 0x86, 0x9a, 0x2b, 0xd9, 0x83, 0x31, 0xd6, 0xa1, 0x35, 0x35, 0xdf, 0xeb, 0x03, 0xa9, 0x5b, + 0xb2, 0xdb, 0xd5, 0x0e, 0xad, 0x85, 0x8e, 0x03, 0xff, 0x85, 0x42, 0x88, 0xf1, 0xef, 0x19, 0x78, + 0xb6, 0xcf, 0x50, 0x37, 0x6c, 0xe6, 0x93, 0x77, 0x7a, 0x86, 0xbb, 0x70, 0xb2, 0xe1, 0xf2, 0xd6, + 0x62, 0xb0, 0x7a, 0x1d, 0x03, 0x48, 0x64, 0xa8, 0xef, 0x42, 0xd6, 0xf6, 0x69, 0x3b, 0xf0, 0xd9, + 0x36, 0x06, 0x1a, 0x6b, 0x9f, 0xee, 0x57, 0x26, 0x95, 0xe0, 0xec, 0x3a, 0x17, 0x81, 0x52, 0x92, + 0xf1, 0x79, 0x80, 0x65, 0xd7, 0xf1, 0x6d, 0xa7, 0x4b, 0xb7, 0x1c, 0xf2, 0x3c, 0x64, 0xa9, 0xe7, + 0xb9, 0x9e, 0x3a, 0xbf, 0x75, 0x93, 0xeb, 0x1c, 0x88, 0x12, 0x27, 0xb5, 0xcd, 0x6e, 0x51, 0x4b, + 0x2c, 0x49, 0x3e, 0xaa, 0x6d, 0x1c, 0x8a, 0x0a, 0x6b, 0x2c, 0xc0, 0xf8, 0xb2, 0xdb, 0x75, 0x7c, + 0xea, 0x71, 0xbe, 0x0f, 0xcc, 0x56, 0x37, 0x70, 0x0a, 0x35, 0xdf, 0xbb, 0x1c, 0x88, 0x12, 0x67, + 0x7c, 0x7f, 0x04, 0x26, 0x96, 0x3d, 0xd7, 0x09, 0x7a, 0xfe, 0x14, 0x74, 0xab, 0x11, 0xd3, 0xad, + 0xc1, 0x5c, 0xc3, 0x68, 0x97, 0xfb, 0xe9, 0x15, 0x71, 0x21, 0xc7, 0x7c, 0xd3, 0xef, 0x32, 0xe5, + 0x95, 0xac, 0x0d, 0x2f, 0x4a, 0xb0, 0x0b, 0x27, 0x5f, 0xfe, 0x46, 0x25, 0xc6, 0xf8, 0x61, 0x06, + 0xa6, 0xa3, 0xe4, 0x4f, 0x41, 0x7b, 0xeb, 0x71, 0xed, 0x5d, 0x1a, 0x7a, 0x88, 0x7d, 0x54, 0xf6, + 0xbf, 0xb2, 0xf1, 0xa1, 0xf1, 0x69, 0xe6, 0x1e, 0xff, 0xc4, 0x7e, 0x04, 0xa0, 0xc6, 0xb7, 0x34, + 0x94, 0xb9, 0x10, 0xcb, 0xf9, 0xff, 0x54, 0x27, 0x26, 0xa2, 0xd0, 0xe3, 0xc4, 0x6f, 0x8c, 0x09, + 0xe7, 0xe6, 0x9b, 0x87, 0xbb, 0x56, 0xb7, 0x45, 0xd5, 0x49, 0xac, 0x27, 0xae, 0xaa, 0xe0, 0xa8, + 0x29, 0xc8, 0x3b, 0x30, 0x53, 0x73, 0x9d, 0x5a, 0xd7, 0xf3, 0xa8, 0x53, 0x3b, 0xd8, 0x16, 0xe1, + 0xbc, 0x32, 0xce, 0x0b, 0xaa, 0xd9, 0xcc, 0x72, 0x92, 0xe0, 0x38, 0x0d, 0x88, 0xbd, 0x8c, 0xc8, + 0x4b, 0x30, 0xce, 0xba, 0xac, 0x43, 0x1d, 0x4b, 0xf8, 0xac, 0xf9, 0xca, 0x94, 0xe2, 0x39, 0x5e, + 0x95, 0x60, 0x0c, 0xf0, 0xe4, 0x0e, 0x5c, 0x64, 0x3e, 0x3f, 0x70, 0x9d, 0xc6, 0x0a, 0x35, 0xad, + 0x96, 0xed, 0xf0, 0xe3, 0xcf, 0x75, 0x2c, 0x26, 0xdc, 0xd0, 0xd1, 0xca, 0xb3, 0x47, 0x87, 0xe5, + 0x8b, 0xd5, 0x74, 0x12, 0xec, 0xd7, 0x96, 0x7c, 0x11, 0xe6, 0x58, 0xb7, 0x56, 0xa3, 0x8c, 0xd5, + 0xbb, 0xad, 0x9b, 0xee, 0x2e, 0xbb, 0x61, 0x33, 0x7e, 0x76, 0x6f, 0xd8, 0x6d, 0xdb, 0x17, 0xae, + 0x66, 0xb6, 0x32, 0x7f, 0x74, 0x58, 0x9e, 0xab, 0xf6, 0xa5, 0xc2, 0x87, 0x70, 0x20, 0x08, 0x17, + 0xa4, 0xc9, 0xe9, 0xe1, 0x3d, 0x2e, 0x78, 0xcf, 0x1d, 0x1d, 0x96, 0x2f, 0xac, 0xa6, 0x52, 0x60, + 0x9f, 0x96, 0x7c, 0x05, 0x7d, 0xbb, 0x4d, 0xbf, 0xec, 0x3a, 0x54, 0xf8, 0x93, 0x91, 0x15, 0xdc, + 0x51, 0x70, 0xd4, 0x14, 0xe4, 0x7e, 0xa8, 0x7c, 0x7c, 0x53, 0x28, 0x27, 0xf1, 0xf1, 0xad, 0xd5, + 0x2c, 0x8f, 0x28, 0xef, 0x45, 0x38, 0xf1, 0x8d, 0x85, 0x31, 0xde, 0xc6, 0xdf, 0x65, 0x80, 0xf4, + 0x1a, 0x02, 0x72, 0x0b, 0x72, 0x66, 0xcd, 0xe7, 0xf1, 0xa2, 0xcc, 0x31, 0x3c, 0x9f, 0xe6, 0x98, + 0x48, 0x51, 0x48, 0xeb, 0x94, 0x6b, 0x08, 0x0d, 0xad, 0xc7, 0x92, 0x68, 0x8a, 0x8a, 0x05, 0x71, + 0x61, 0xa6, 0x65, 0x32, 0x3f, 0xd0, 0x55, 0x8b, 0x0f, 0x59, 0x19, 0xc9, 0x5f, 0x3a, 0xd9, 0xa0, + 0x78, 0x8b, 0xca, 0x79, 0xae, 0xb9, 0x1b, 0x49, 0x46, 0xd8, 0xcb, 0xdb, 0xf8, 0x6e, 0x0e, 0xc6, + 0x57, 0x96, 0xd6, 0x76, 0x4c, 0xb6, 0x77, 0x82, 0x04, 0x02, 0x5f, 0x1c, 0x75, 0xac, 0x25, 0xb7, + 0x57, 0x70, 0xdc, 0xa1, 0xa6, 0x20, 0x2e, 0x14, 0xcc, 0x20, 0x1d, 0xa3, 0xcc, 0xef, 0x1b, 0x03, + 0x3a, 0xad, 0x8a, 0x4b, 0x34, 0x1d, 0xa2, 0x40, 0x18, 0xca, 0x20, 0x0c, 0x8a, 0x81, 0x70, 0xa4, + 0x75, 0x15, 0x29, 0x0e, 0x98, 0xc6, 0x0a, 0xf9, 0xc8, 0xc8, 0x2d, 0x02, 0xc0, 0xa8, 0x14, 0xf2, + 0x49, 0x98, 0xb0, 0x28, 0xdf, 0xc5, 0xd4, 0xa9, 0xd9, 0x94, 0x6f, 0xd8, 0x51, 0x3e, 0x2f, 0xdc, + 0x70, 0xad, 0x44, 0xe0, 0x18, 0xa3, 0x22, 0xf7, 0xa1, 0xb0, 0x6f, 0xfb, 0x4d, 0x61, 0x5f, 0x4b, + 0x39, 0xa1, 0x38, 0x9f, 0x1a, 0xa8, 0xa3, 0x9c, 0x43, 0x38, 0x2d, 0xf7, 0x02, 0x9e, 0x18, 0xb2, + 0xe7, 0xa1, 0x0c, 0xff, 0x21, 0x72, 0x56, 0x62, 0x67, 0x16, 0xe2, 0x0d, 0x04, 0x02, 0x43, 0x1a, + 0xc2, 0x60, 0x82, 0xff, 0xa8, 0xd2, 0x77, 0xbb, 0x5c, 0x5b, 0x55, 0x5c, 0x37, 0x58, 0x26, 0x2b, + 0x60, 0x22, 0x67, 0xe4, 0x5e, 0x84, 0x2d, 0xc6, 0x84, 0x70, 0xed, 0xdb, 0x6f, 0x52, 0x47, 0x6c, + 0xe1, 0x88, 0xf6, 0xdd, 0x6b, 0x52, 0x07, 0x05, 0x86, 0xb8, 0x00, 0x35, 0xed, 0x32, 0x95, 0x60, + 0x88, 0xfc, 0x45, 0xe8, 0x79, 0x55, 0xce, 0x72, 0x1f, 0x25, 0xfc, 0x8d, 0x11, 0x11, 0xdc, 0xe1, + 0x72, 0x9d, 0xeb, 0xef, 0xd9, 0x7e, 0xa9, 0x28, 0x3a, 0xa5, 0x77, 0xed, 0x96, 0x80, 0xa2, 0xc2, + 0x1a, 0xdf, 0xcd, 0x40, 0x91, 0x6f, 0xa2, 0x40, 0xf1, 0x5f, 0x84, 0x9c, 0x6f, 0x7a, 0x0d, 0x15, + 0x0e, 0x45, 0xda, 0xed, 0x08, 0x28, 0x2a, 0x2c, 0x31, 0x21, 0xeb, 0x9b, 0x6c, 0x2f, 0x38, 0xb8, + 0x3f, 0x3b, 0xd0, 0x58, 0xd4, 0xee, 0x0d, 0xcf, 0x6c, 0xfe, 0x8b, 0xa1, 0xe4, 0x4c, 0xae, 0x40, + 0x9e, 0x1b, 0xda, 0x55, 0x93, 0xc9, 0xbc, 0x4c, 0xbe, 0x32, 0xc1, 0x77, 0xeb, 0xaa, 0x82, 0xa1, + 0xc6, 0x1a, 0xef, 0xc0, 0xd9, 0xeb, 0xef, 0xd1, 0x5a, 0xd7, 0x77, 0x3d, 0x19, 0xdf, 0x92, 0x9b, + 0x40, 0x18, 0xf5, 0x1e, 0xd8, 0x35, 0xba, 0x54, 0xab, 0x71, 0x87, 0x72, 0x33, 0xb4, 0x0e, 0x73, + 0x4a, 0x1a, 0xa9, 0xf6, 0x50, 0x60, 0x4a, 0x2b, 0xe3, 0x4f, 0x32, 0x50, 0x8c, 0x44, 0xe1, 0xdc, + 0x36, 0x34, 0x96, 0xab, 0x95, 0x6e, 0x6d, 0x4f, 0x07, 0x8d, 0x6f, 0x0c, 0x1a, 0xda, 0x4b, 0x2e, + 0xa1, 0x4e, 0x6b, 0x10, 0x86, 0x32, 0x1e, 0x15, 0x9e, 0xff, 0x55, 0x06, 0xc2, 0x76, 0x7c, 0x01, + 0x77, 0xc3, 0xae, 0x45, 0x16, 0x50, 0xf1, 0x55, 0x58, 0xf2, 0x41, 0x06, 0x2e, 0xc6, 0x07, 0x2b, + 0x62, 0xcf, 0xc7, 0x0f, 0x53, 0xcb, 0x4a, 0xc0, 0xc5, 0x6a, 0x3a, 0x37, 0xec, 0x27, 0xc6, 0xb8, + 0x0b, 0xd9, 0x35, 0xb3, 0xdb, 0xa0, 0x27, 0x72, 0xf5, 0xb9, 0x3a, 0x78, 0xd4, 0x6c, 0xf9, 0xc1, + 0xb1, 0xa2, 0xd4, 0x01, 0x15, 0x0c, 0x35, 0xd6, 0xf8, 0xf3, 0x31, 0x28, 0x46, 0x92, 0x71, 0x7c, + 0x7b, 0x7a, 0xb4, 0xe3, 0x26, 0x0f, 0x07, 0xa4, 0x1d, 0x17, 0x05, 0x86, 0x1f, 0x0e, 0x1e, 0x7d, + 0x60, 0x33, 0x1e, 0xe1, 0x26, 0x0e, 0x07, 0x54, 0x70, 0xd4, 0x14, 0xa4, 0x0c, 0x59, 0x8b, 0x76, + 0xfc, 0xa6, 0xd0, 0xca, 0xb1, 0x4a, 0x81, 0x77, 0x75, 0x85, 0x03, 0x50, 0xc2, 0x39, 0x41, 0x9d, + 0xfa, 0xb5, 0x66, 0x69, 0x4c, 0x18, 0x54, 0x41, 0xb0, 0xca, 0x01, 0x28, 0xe1, 0x29, 0xc9, 0x87, + 0xec, 0x93, 0x4f, 0x3e, 0xe4, 0x4e, 0x39, 0xf9, 0x40, 0x3a, 0x70, 0x8e, 0xb1, 0xe6, 0xb6, 0x67, + 0x3f, 0x30, 0x7d, 0x1a, 0x6a, 0xcf, 0xf8, 0xe3, 0xc8, 0xb9, 0x78, 0x74, 0x58, 0x3e, 0x57, 0xad, + 0xde, 0x48, 0x72, 0xc1, 0x34, 0xd6, 0xa4, 0x0a, 0xe7, 0x6d, 0x87, 0xd1, 0x5a, 0xd7, 0xa3, 0xeb, + 0x0d, 0xc7, 0xf5, 0xe8, 0x0d, 0x97, 0x71, 0x76, 0x2a, 0x03, 0xfd, 0x9c, 0x5a, 0xb4, 0xf3, 0xeb, + 0x69, 0x44, 0x98, 0xde, 0xd6, 0xf8, 0x7e, 0x06, 0x26, 0xa2, 0xf9, 0x47, 0xc2, 0x00, 0x9a, 0x2b, + 0xab, 0x55, 0x69, 0x4a, 0xd4, 0x0e, 0x7f, 0x73, 0xe0, 0xb4, 0xa6, 0x64, 0x13, 0x06, 0x95, 0x21, + 0x0c, 0x23, 0x62, 0x4e, 0x70, 0xc1, 0xf1, 0x3c, 0x64, 0xeb, 0xae, 0x57, 0xa3, 0xca, 0x18, 0xea, + 0x5d, 0xb2, 0xca, 0x81, 0x28, 0x71, 0xc6, 0x47, 0x19, 0x88, 0x48, 0x20, 0xbf, 0x05, 0x93, 0x5c, + 0xc6, 0x2d, 0x6f, 0x37, 0x36, 0x9a, 0xca, 0xc0, 0xa3, 0xd1, 0x9c, 0x2a, 0xe7, 0x95, 0xfc, 0xc9, + 0x18, 0x18, 0xe3, 0xf2, 0xc8, 0x2f, 0x43, 0xc1, 0xb4, 0x2c, 0x8f, 0x32, 0x46, 0xe5, 0x59, 0x51, + 0xa8, 0x4c, 0x0a, 0x27, 0x28, 0x00, 0x62, 0x88, 0xe7, 0xdb, 0xb0, 0x69, 0xd5, 0x19, 0xd7, 0x6c, + 0x15, 0xcb, 0xe8, 0x6d, 0xc8, 0x85, 0x70, 0x38, 0x6a, 0x0a, 0xe3, 0x6b, 0x63, 0x10, 0x97, 0x4d, + 0x2c, 0x98, 0xda, 0xf3, 0x76, 0x97, 0x97, 0xcd, 0x5a, 0x73, 0xa0, 0xa4, 0xde, 0xb9, 0xa3, 0xc3, + 0xf2, 0xd4, 0xad, 0x38, 0x07, 0x4c, 0xb2, 0x54, 0x52, 0x6e, 0xd1, 0x03, 0xdf, 0xdc, 0x1d, 0xc4, + 0x60, 0x06, 0x52, 0xa2, 0x1c, 0x30, 0xc9, 0x92, 0xbc, 0x0a, 0xc5, 0x3d, 0x6f, 0x37, 0xd8, 0xe4, + 0xc9, 0xbc, 0xdb, 0xad, 0x10, 0x85, 0x51, 0x3a, 0x3e, 0x85, 0x7b, 0xde, 0x2e, 0x37, 0x8a, 0xc1, + 0x5d, 0x97, 0x9e, 0xc2, 0x5b, 0x0a, 0x8e, 0x9a, 0x82, 0x74, 0x80, 0xec, 0x05, 0xb3, 0xa7, 0x33, + 0xc3, 0xca, 0x16, 0x5d, 0x49, 0x1b, 0x8d, 0x26, 0x8a, 0x0e, 0xe8, 0x02, 0x3f, 0x4c, 0x6f, 0xf5, + 0xf0, 0xc1, 0x14, 0xde, 0xe4, 0xf3, 0x70, 0x71, 0xcf, 0xdb, 0x55, 0x47, 0xc5, 0xb6, 0x67, 0x3b, + 0x35, 0xbb, 0x13, 0xbb, 0xe4, 0xd2, 0xc7, 0xc9, 0xad, 0x74, 0x32, 0xec, 0xd7, 0xde, 0xf8, 0x38, + 0x4c, 0x44, 0x2f, 0x49, 0x1e, 0x91, 0x9e, 0x36, 0xee, 0x41, 0x41, 0x44, 0x6f, 0x0d, 0xee, 0x36, + 0xea, 0x13, 0x68, 0xf4, 0x21, 0x27, 0xd0, 0x0b, 0x30, 0x2e, 0x0f, 0x4f, 0x26, 0x0c, 0x7b, 0x46, + 0xde, 0x8c, 0xc9, 0x73, 0x95, 0x61, 0x80, 0x33, 0xfe, 0x2d, 0x03, 0xb9, 0x75, 0xa7, 0xd3, 0xfd, + 0x39, 0xb9, 0xc8, 0xfd, 0xf6, 0x18, 0x8c, 0x71, 0x67, 0x9d, 0x5c, 0x81, 0x31, 0xff, 0xa0, 0x23, + 0x0f, 0xf1, 0xd1, 0xca, 0x6c, 0x60, 0xc1, 0x76, 0x0e, 0x3a, 0xf4, 0x58, 0xfd, 0x45, 0x41, 0x41, + 0xde, 0x80, 0x9c, 0xd3, 0x6d, 0xdf, 0x35, 0x5b, 0xca, 0xda, 0xbd, 0x18, 0xf8, 0x28, 0x9b, 0x02, + 0x7a, 0x7c, 0x58, 0x9e, 0xa5, 0x4e, 0xcd, 0xb5, 0x6c, 0xa7, 0xb1, 0x78, 0x9f, 0xb9, 0xce, 0xc2, + 0x66, 0xb7, 0xbd, 0x4b, 0x3d, 0x54, 0xad, 0xc8, 0x4b, 0x30, 0xbe, 0xeb, 0xba, 0x2d, 0xce, 0x60, + 0x34, 0x9e, 0x9e, 0xa8, 0x48, 0x30, 0x06, 0x78, 0xee, 0x0e, 0x31, 0xdf, 0xe3, 0x94, 0x63, 0x71, + 0x77, 0xa8, 0x2a, 0xa0, 0xa8, 0xb0, 0xa4, 0x0d, 0xb9, 0xb6, 0xd9, 0xe1, 0x74, 0x59, 0x31, 0x65, + 0xd7, 0x07, 0x8e, 0x68, 0x16, 0x6e, 0x0b, 0x3e, 0xd7, 0x1d, 0xdf, 0x3b, 0x08, 0xc5, 0x49, 0x20, + 0x2a, 0x21, 0xc4, 0x86, 0xf1, 0x96, 0xcd, 0x7c, 0x2e, 0x2f, 0x37, 0x84, 0x56, 0x70, 0x79, 0x42, + 0x45, 0xc3, 0x19, 0xd8, 0x90, 0x6c, 0x31, 0xe0, 0x3f, 0x77, 0x00, 0xc5, 0x48, 0x8f, 0xc8, 0xb4, + 0x74, 0x26, 0xc5, 0xae, 0x10, 0xfe, 0x23, 0xd9, 0x09, 0x74, 0x7f, 0x64, 0x08, 0x5f, 0x56, 0xf7, + 0x44, 0x6d, 0x96, 0x4f, 0x8f, 0xbc, 0x96, 0xf9, 0x74, 0xfe, 0x9b, 0x7f, 0x5a, 0x3e, 0xf3, 0xc1, + 0x3f, 0x5d, 0x3e, 0x63, 0xfc, 0xf5, 0x28, 0x14, 0x34, 0xc9, 0xff, 0x6e, 0x4d, 0xf1, 0x12, 0x9a, + 0x72, 0x73, 0xb8, 0xf9, 0x3a, 0x91, 0xba, 0x2c, 0xc5, 0xd5, 0x65, 0xa2, 0xf2, 0xff, 0x23, 0x4b, + 0x7d, 0x7c, 0x58, 0x2e, 0xc5, 0x27, 0x01, 0xcd, 0xfd, 0xdb, 0x94, 0x31, 0xb3, 0x41, 0x43, 0x35, + 0xf8, 0xd4, 0xa3, 0xd4, 0x60, 0x36, 0xaa, 0x06, 0x85, 0xf4, 0x65, 0x6c, 0xc1, 0xd8, 0x86, 0xed, + 0x9c, 0x24, 0xdd, 0xf2, 0x3c, 0x64, 0x59, 0xcd, 0xed, 0x04, 0xb9, 0x16, 0x6d, 0x50, 0xab, 0x1c, + 0x88, 0x12, 0x17, 0x58, 0xe8, 0xd1, 0x3e, 0x16, 0xfa, 0x83, 0x51, 0xc8, 0x07, 0x09, 0x2d, 0xf2, + 0xbb, 0x19, 0x28, 0x9a, 0x8e, 0xe3, 0xfa, 0xe2, 0x7e, 0x29, 0x30, 0xa6, 0x9b, 0x03, 0x4d, 0x7e, + 0xc0, 0x74, 0x61, 0x29, 0x64, 0x28, 0x17, 0x40, 0x1f, 0xb0, 0x11, 0x0c, 0x46, 0xe5, 0x92, 0x77, + 0x21, 0xd7, 0x32, 0x77, 0x69, 0x2b, 0xb0, 0xad, 0xeb, 0xc3, 0xf5, 0x60, 0x43, 0xf0, 0x4a, 0xac, + 0xbe, 0x04, 0xa2, 0x12, 0x34, 0xf7, 0x06, 0x4c, 0x27, 0x3b, 0xfa, 0x38, 0xeb, 0xc7, 0x97, 0x3e, + 0x22, 0xe6, 0x71, 0x9a, 0x1a, 0x9f, 0x83, 0xe2, 0x6d, 0xea, 0x7b, 0x76, 0x4d, 0x30, 0x08, 0x22, + 0xd1, 0x4c, 0x7a, 0x24, 0x1a, 0x9e, 0xa2, 0x23, 0x0f, 0xb9, 0xb2, 0xf9, 0x32, 0x8c, 0x4b, 0x96, + 0x8c, 0xb8, 0x00, 0x1d, 0xcf, 0x6d, 0x53, 0xbf, 0x49, 0xbb, 0xc1, 0x8a, 0x0e, 0xe6, 0x68, 0x6f, + 0x6b, 0x36, 0x32, 0x2b, 0x12, 0xfe, 0xc6, 0x88, 0x08, 0xe3, 0x2f, 0x26, 0x00, 0x36, 0x5d, 0x8b, + 0xaa, 0xfc, 0xe7, 0x1c, 0x8c, 0xd8, 0x96, 0x1a, 0x0d, 0xa8, 0xce, 0x8e, 0xac, 0xaf, 0xe0, 0x88, + 0x6d, 0x69, 0x15, 0x1f, 0xe9, 0xab, 0xe2, 0xaf, 0x42, 0xd1, 0xb2, 0x59, 0xa7, 0x65, 0x1e, 0x6c, + 0xa6, 0x78, 0x68, 0x2b, 0x21, 0x0a, 0xa3, 0x74, 0xe4, 0x65, 0x65, 0xfc, 0xa4, 0x95, 0x29, 0x25, + 0x8c, 0x5f, 0x9e, 0x77, 0x2f, 0x62, 0x00, 0x5f, 0x83, 0x89, 0x20, 0x63, 0x27, 0xa4, 0x64, 0x45, + 0xab, 0xc0, 0x64, 0x4e, 0xec, 0x44, 0x70, 0x18, 0xa3, 0x4c, 0x66, 0x14, 0x73, 0x4f, 0x25, 0xa3, + 0xb8, 0x02, 0xd3, 0xcc, 0x77, 0x3d, 0x6a, 0x05, 0x14, 0xeb, 0x2b, 0x25, 0x12, 0x1b, 0xe8, 0x74, + 0x35, 0x81, 0xc7, 0x9e, 0x16, 0x64, 0x1b, 0x66, 0xf7, 0x13, 0x57, 0x91, 0x62, 0xf0, 0xe7, 0x04, + 0xa7, 0x4b, 0x8a, 0xd3, 0xec, 0xbd, 0x14, 0x1a, 0x4c, 0x6d, 0x49, 0x3e, 0x03, 0x93, 0x41, 0x37, + 0x85, 0x05, 0x2a, 0xcd, 0x0a, 0x56, 0x3a, 0x86, 0xd9, 0x89, 0x22, 0x31, 0x4e, 0x4b, 0x3e, 0x01, + 0xd9, 0x4e, 0xd3, 0x64, 0x54, 0x25, 0x20, 0x83, 0xfc, 0x51, 0x76, 0x9b, 0x03, 0x8f, 0x0f, 0xcb, + 0x05, 0xbe, 0x66, 0xe2, 0x07, 0x4a, 0x42, 0x72, 0x15, 0x60, 0xd7, 0xed, 0x3a, 0x96, 0xe9, 0x1d, + 0xac, 0xaf, 0xa8, 0xbb, 0x00, 0xed, 0xb7, 0x55, 0x34, 0x06, 0x23, 0x54, 0xfc, 0xa8, 0x6a, 0x4b, + 0xa3, 0xad, 0xf2, 0x88, 0xfa, 0xa8, 0xd2, 0xb6, 0x5c, 0xe1, 0xc9, 0xdb, 0x50, 0x10, 0xf7, 0x26, + 0xd4, 0x5a, 0xf2, 0x55, 0x32, 0xf1, 0x71, 0x52, 0xec, 0xda, 0x9f, 0xab, 0x06, 0x4c, 0x30, 0xe4, + 0x47, 0xbe, 0x08, 0x50, 0xb7, 0x1d, 0x9b, 0x35, 0x05, 0xf7, 0xe2, 0x63, 0x73, 0xd7, 0xe3, 0x5c, + 0xd5, 0x5c, 0x30, 0xc2, 0x91, 0xfc, 0x24, 0x03, 0x33, 0x1e, 0x65, 0x6e, 0xd7, 0xab, 0x51, 0xa6, + 0xeb, 0x0a, 0xce, 0x8b, 0xcd, 0x7f, 0x77, 0xc0, 0xca, 0xca, 0x60, 0x47, 0x2f, 0x60, 0x92, 0xb1, + 0xb4, 0xac, 0x34, 0xb8, 0x12, 0xeb, 0xc1, 0x1f, 0xa7, 0x01, 0xbf, 0xf2, 0xa3, 0x72, 0xb9, 0xb7, + 0xa0, 0x56, 0x33, 0xe7, 0x1a, 0xf5, 0x07, 0x3f, 0x2a, 0x4f, 0x07, 0xbf, 0x75, 0x05, 0x44, 0xef, + 0xb8, 0xb8, 0x49, 0xec, 0xb8, 0xd6, 0xfa, 0x76, 0x69, 0x22, 0x6e, 0x12, 0xb7, 0x39, 0x10, 0x25, + 0x8e, 0x5c, 0x81, 0xbc, 0x65, 0xd2, 0xb6, 0xeb, 0x50, 0xab, 0x34, 0x19, 0xa6, 0xb6, 0x56, 0x14, + 0x0c, 0x35, 0x96, 0x7c, 0x09, 0x72, 0xb6, 0x08, 0x2d, 0x4a, 0x67, 0xc5, 0xc2, 0x7c, 0x66, 0x30, + 0xe7, 0x43, 0xb0, 0xa8, 0x00, 0x3f, 0x6b, 0xe4, 0xff, 0xa8, 0xd8, 0x92, 0x1a, 0x8c, 0xbb, 0x5d, + 0x5f, 0x48, 0x98, 0x12, 0x12, 0x06, 0xcb, 0xec, 0x6e, 0x49, 0x1e, 0x32, 0x42, 0x52, 0x3f, 0x30, + 0xe0, 0xcc, 0xc7, 0x5b, 0x6b, 0xda, 0x2d, 0xcb, 0xa3, 0x4e, 0x69, 0x5a, 0xe4, 0x04, 0xc4, 0x78, + 0x97, 0x15, 0x0c, 0x35, 0x96, 0xfc, 0x2a, 0x4c, 0xba, 0x5d, 0x5f, 0xec, 0x12, 0xbe, 0xca, 0xac, + 0x34, 0x23, 0xc8, 0x67, 0xf8, 0x9e, 0xdd, 0x8a, 0x22, 0x30, 0x4e, 0x37, 0xb7, 0x02, 0x17, 0xd2, + 0x75, 0xe1, 0x51, 0xc7, 0xdf, 0x68, 0xf4, 0xf8, 0x3b, 0x0b, 0x13, 0xd1, 0xb2, 0x5d, 0x91, 0x0a, + 0x8e, 0x54, 0x7b, 0x11, 0x17, 0x0a, 0x6e, 0xf5, 0x34, 0x52, 0xc1, 0x5b, 0xd5, 0x9e, 0x54, 0xb0, + 0x06, 0x61, 0x28, 0xe3, 0x51, 0xa9, 0xe0, 0xbf, 0x1c, 0x81, 0xb0, 0x1d, 0x79, 0x19, 0xf2, 0xd4, + 0xb1, 0x3a, 0xae, 0xed, 0xf8, 0xc9, 0x82, 0xa0, 0xeb, 0x0a, 0x8e, 0x9a, 0x22, 0x92, 0x38, 0x1e, + 0x79, 0x68, 0xe2, 0xb8, 0x09, 0x53, 0xa6, 0xb8, 0x56, 0x0d, 0x33, 0x7e, 0xa3, 0x8f, 0x95, 0xf1, + 0xd3, 0x65, 0x5b, 0x71, 0x2e, 0x98, 0x64, 0xcb, 0x25, 0xb1, 0xb0, 0xb9, 0x90, 0x34, 0x36, 0x90, + 0xa4, 0x6a, 0x9c, 0x0b, 0x26, 0xd9, 0x1a, 0x5f, 0x1f, 0x81, 0x40, 0x4b, 0x7f, 0x1e, 0x62, 0x76, + 0x62, 0x40, 0xce, 0xa3, 0xac, 0xdb, 0xf2, 0x95, 0xd7, 0x22, 0x2c, 0x01, 0x0a, 0x08, 0x2a, 0x8c, + 0xb1, 0x0f, 0x93, 0xbc, 0xb7, 0xad, 0x16, 0x6d, 0x55, 0x7d, 0xda, 0x61, 0xa4, 0x0e, 0x59, 0xc6, + 0xff, 0x51, 0x73, 0x32, 0x64, 0x99, 0x84, 0x4f, 0x3b, 0x91, 0xa8, 0x80, 0xf3, 0x45, 0xc9, 0xde, + 0xf8, 0xc6, 0x08, 0x14, 0xf4, 0x3c, 0x9d, 0x20, 0xd4, 0x78, 0x01, 0xc6, 0x2d, 0x5a, 0x37, 0xf9, + 0x68, 0xd4, 0xbe, 0xe0, 0x46, 0x67, 0x45, 0x82, 0x30, 0xc0, 0x91, 0x72, 0x3c, 0xc5, 0x53, 0xe8, + 0x49, 0xef, 0xec, 0x41, 0x41, 0xfc, 0xb3, 0x1a, 0xd4, 0x89, 0x0f, 0xba, 0xee, 0x77, 0x03, 0x2e, + 0x32, 0xd5, 0xa9, 0x7f, 0x62, 0xc8, 0x3f, 0x51, 0xdf, 0x9d, 0x3d, 0x49, 0x7d, 0xb7, 0xb1, 0x0a, + 0xfc, 0xd8, 0x58, 0x5b, 0x26, 0xaf, 0x43, 0x9e, 0x29, 0x93, 0xa4, 0xe6, 0xe5, 0x63, 0xba, 0x54, + 0x44, 0xc1, 0x8f, 0x0f, 0xcb, 0x93, 0x82, 0x38, 0x00, 0xa0, 0x6e, 0x62, 0x7c, 0x75, 0x0c, 0x22, + 0x0e, 0xf2, 0x09, 0x66, 0xd8, 0x4a, 0xc4, 0x3c, 0x6f, 0x0d, 0x1a, 0xf3, 0x04, 0x81, 0x84, 0x54, + 0xb8, 0x78, 0x98, 0xc3, 0xfb, 0xd1, 0xa4, 0xad, 0x8e, 0x5a, 0x1f, 0xdd, 0x8f, 0x1b, 0xb4, 0xd5, + 0x41, 0x81, 0xd1, 0xf7, 0xac, 0x63, 0x7d, 0xef, 0x59, 0xdf, 0x86, 0x6c, 0xc3, 0xec, 0x36, 0xa8, + 0xca, 0x61, 0x7e, 0x7a, 0xb0, 0x7b, 0x39, 0xce, 0x41, 0x2a, 0x88, 0xf8, 0x17, 0x25, 0x4f, 0xae, + 0x20, 0xcd, 0x20, 0x63, 0xa8, 0xfc, 0xe9, 0xc1, 0x14, 0x44, 0xe7, 0x1d, 0xa5, 0x82, 0xe8, 0x9f, + 0x18, 0xf2, 0xe7, 0x07, 0x71, 0x4d, 0x56, 0xc2, 0xa9, 0x0b, 0x95, 0xcf, 0x0e, 0x78, 0x5d, 0x2c, + 0x78, 0xc8, 0x3d, 0xa1, 0x7e, 0x60, 0xc0, 0xd9, 0x58, 0x84, 0x62, 0xa4, 0x32, 0x9a, 0xcf, 0xaf, + 0xae, 0xf3, 0x8a, 0xcc, 0xef, 0x8a, 0xe9, 0x9b, 0x28, 0x30, 0xc6, 0xf1, 0x08, 0x68, 0xb7, 0x27, + 0x7a, 0x67, 0x6c, 0xd6, 0x22, 0x65, 0xa7, 0xb1, 0x0a, 0x11, 0xd7, 0x41, 0x85, 0xe5, 0x4e, 0x78, + 0x9b, 0x7a, 0x0d, 0x7d, 0x9c, 0xaa, 0xed, 0xaa, 0x9d, 0xf0, 0xdb, 0x51, 0x24, 0xc6, 0x69, 0xf9, + 0x61, 0xd6, 0x36, 0x1d, 0xbb, 0x4e, 0x99, 0x9f, 0xbc, 0x1b, 0xb8, 0xad, 0xe0, 0xa8, 0x29, 0xc8, + 0x1a, 0xcc, 0x30, 0xea, 0x6f, 0xed, 0x3b, 0xd4, 0xd3, 0x95, 0x2b, 0xaa, 0x94, 0xe9, 0x99, 0xc0, + 0x17, 0xac, 0x26, 0x09, 0xb0, 0xb7, 0x8d, 0x08, 0x68, 0x64, 0x15, 0xd1, 0xb2, 0xeb, 0x58, 0xb6, + 0x7e, 0x14, 0x12, 0x0d, 0x68, 0x12, 0x78, 0xec, 0x69, 0xc1, 0xb9, 0xd4, 0x4d, 0xbb, 0xd5, 0xf5, + 0x68, 0xc8, 0x25, 0x17, 0xe7, 0xb2, 0x9a, 0xc0, 0x63, 0x4f, 0x0b, 0xe3, 0x5f, 0x33, 0x30, 0x89, + 0xd4, 0xf7, 0x0e, 0xf4, 0xa4, 0x94, 0x21, 0xdb, 0x12, 0x45, 0x4b, 0x19, 0x51, 0xb4, 0x24, 0x54, + 0x56, 0xd6, 0x28, 0x49, 0x38, 0x59, 0x81, 0xa2, 0xc7, 0x5b, 0xa8, 0x02, 0x31, 0x39, 0xe1, 0x46, + 0x10, 0xa3, 0x62, 0x88, 0x3a, 0x8e, 0xff, 0xc4, 0x68, 0x33, 0xe2, 0xc0, 0xf8, 0xae, 0x2c, 0x32, + 0x56, 0x47, 0xfd, 0x60, 0xba, 0xa8, 0x0a, 0x95, 0xc5, 0x7d, 0x41, 0x50, 0xb5, 0x7c, 0x1c, 0xfe, + 0x8b, 0x81, 0x10, 0xe3, 0x9b, 0x19, 0x80, 0xf0, 0x9d, 0x06, 0xd9, 0x83, 0x3c, 0xbb, 0x16, 0x73, + 0xb2, 0x06, 0xac, 0xe7, 0x50, 0x4c, 0x22, 0x85, 0x75, 0x0a, 0x82, 0x5a, 0xc0, 0xa3, 0x3c, 0xac, + 0x8f, 0x46, 0x41, 0xb7, 0x7a, 0x42, 0x0e, 0xd6, 0x8b, 0xfc, 0x70, 0x6e, 0x84, 0xc5, 0xd6, 0x9a, + 0x0e, 0x05, 0x14, 0x15, 0x96, 0x7b, 0xd1, 0xc1, 0x85, 0xa6, 0x52, 0x6d, 0xe1, 0x45, 0x07, 0x77, + 0x9f, 0xa8, 0xb1, 0x69, 0x2e, 0x5b, 0xf6, 0xa9, 0xb9, 0x6c, 0xb9, 0x27, 0xe2, 0xb2, 0xf1, 0x70, + 0xd9, 0x73, 0x5b, 0x74, 0x09, 0x37, 0x55, 0x58, 0xae, 0xc3, 0x65, 0x94, 0x60, 0x0c, 0xf0, 0xe4, + 0x55, 0x28, 0x76, 0x19, 0xad, 0xae, 0xdc, 0x5a, 0xf6, 0xa8, 0xc5, 0xd4, 0x5d, 0xb1, 0x4e, 0xd4, + 0xdc, 0x09, 0x51, 0x18, 0xa5, 0x33, 0x7e, 0x2f, 0x03, 0x67, 0xab, 0x35, 0xcf, 0xee, 0xf8, 0xda, + 0xd2, 0x6d, 0x8a, 0x97, 0x15, 0xbe, 0xc9, 0xe3, 0x5f, 0xa5, 0x8a, 0xcf, 0xf5, 0xb9, 0x26, 0x93, + 0x44, 0xb1, 0x87, 0x17, 0x12, 0x84, 0x21, 0x0b, 0x91, 0x73, 0x16, 0xb6, 0x34, 0xa9, 0x12, 0x55, + 0x01, 0x45, 0x85, 0x35, 0xbe, 0x95, 0x81, 0xbc, 0xae, 0x36, 0x7a, 0x1e, 0xb2, 0xc2, 0x7e, 0x27, + 0xab, 0x25, 0x84, 0x75, 0x47, 0x89, 0x13, 0xf9, 0x57, 0x1e, 0xd2, 0xf7, 0xe4, 0x5f, 0x39, 0x10, + 0x25, 0x8e, 0xeb, 0x3a, 0x75, 0xac, 0x64, 0xfe, 0xf5, 0xba, 0x63, 0x21, 0x87, 0x8b, 0xa2, 0x6d, + 0xd7, 0x6b, 0x9b, 0x7e, 0x32, 0x23, 0xbe, 0x2a, 0xa0, 0xa8, 0xb0, 0xc6, 0x9b, 0x30, 0xa5, 0xca, + 0x42, 0xf5, 0x44, 0x3d, 0xd6, 0x5b, 0x04, 0xe3, 0x3f, 0x33, 0x50, 0xdc, 0xd9, 0xd9, 0xd0, 0x66, + 0x0d, 0xe1, 0x02, 0x93, 0x75, 0xa0, 0x4b, 0x75, 0x9f, 0x7a, 0xcb, 0x6e, 0xbb, 0xd3, 0xa2, 0x9a, + 0x97, 0x2a, 0xce, 0xac, 0xa6, 0x52, 0x60, 0x9f, 0x96, 0x64, 0x1d, 0xce, 0x45, 0x31, 0xca, 0x68, + 0xab, 0xc7, 0x0f, 0xb2, 0x0a, 0xa1, 0x17, 0x8d, 0x69, 0x6d, 0x92, 0xac, 0x94, 0xe5, 0x56, 0x0f, + 0x0f, 0x7b, 0x58, 0x29, 0x34, 0xa6, 0xb5, 0x31, 0xb6, 0xa0, 0x18, 0x79, 0x75, 0x4a, 0xde, 0x82, + 0xe9, 0x9a, 0xdb, 0xee, 0x78, 0x94, 0x31, 0xdb, 0x75, 0x36, 0xe8, 0x03, 0xda, 0x52, 0x43, 0x16, + 0x55, 0x9e, 0xcb, 0x09, 0x1c, 0xf6, 0x50, 0x1b, 0xdf, 0x7e, 0x06, 0x74, 0x3d, 0xe3, 0x2f, 0xaa, + 0x22, 0x07, 0xca, 0x61, 0xd6, 0x74, 0x8e, 0x25, 0x3b, 0x7c, 0x8e, 0x45, 0xef, 0x99, 0x44, 0x9e, + 0xa5, 0x11, 0xe6, 0x59, 0x72, 0xa7, 0x90, 0x67, 0xd1, 0xc6, 0xaf, 0x27, 0xd7, 0xf2, 0xfb, 0x19, + 0x98, 0x70, 0x5c, 0x8b, 0x06, 0x26, 0xb6, 0x34, 0x2e, 0x5c, 0xf8, 0xad, 0xa1, 0x26, 0x51, 0xa6, + 0xdc, 0x14, 0x47, 0x99, 0x62, 0xd3, 0x29, 0xe9, 0x28, 0x0a, 0x63, 0xa2, 0xc9, 0x2a, 0xe4, 0xcd, + 0x7a, 0xdd, 0x76, 0x6c, 0xff, 0x40, 0x15, 0x66, 0x5e, 0x4a, 0xb3, 0x9e, 0x4b, 0x8a, 0x46, 0x9e, + 0x67, 0xc1, 0x2f, 0xd4, 0x6d, 0xb9, 0x43, 0xa0, 0xdf, 0x24, 0x14, 0x86, 0x70, 0x08, 0x82, 0x5b, + 0x98, 0x88, 0x2b, 0x19, 0xd4, 0x4f, 0x87, 0x4f, 0x14, 0x0c, 0xc8, 0xc9, 0xf4, 0x9b, 0xc8, 0xb4, + 0xe6, 0x65, 0xe8, 0x22, 0x53, 0x73, 0xa8, 0x30, 0xa4, 0x11, 0x84, 0xc6, 0x45, 0x31, 0xb9, 0x95, + 0x81, 0xd3, 0x05, 0x3a, 0xda, 0x4e, 0x8f, 0x8d, 0xc9, 0xcd, 0xe8, 0x01, 0x34, 0x71, 0x92, 0x03, + 0x68, 0xb2, 0xef, 0xe1, 0xd3, 0x80, 0x1c, 0x13, 0xc7, 0x9b, 0xc8, 0x39, 0x16, 0xaf, 0x2e, 0x0f, + 0xe6, 0x54, 0xc5, 0x4e, 0x48, 0x39, 0x3b, 0x12, 0x86, 0x8a, 0x3d, 0x71, 0x21, 0x1f, 0x24, 0x46, + 0x55, 0xda, 0x72, 0xb0, 0xdb, 0xf5, 0x64, 0xe0, 0x11, 0x14, 0x00, 0x4a, 0x28, 0x6a, 0x21, 0xe4, + 0x6d, 0x18, 0xb5, 0xcc, 0x86, 0x4a, 0x60, 0xbe, 0x35, 0x70, 0x69, 0x6a, 0x20, 0x46, 0x3c, 0xbb, + 0x5c, 0x59, 0x5a, 0x43, 0xce, 0x95, 0xec, 0x85, 0x6f, 0x23, 0xa6, 0x87, 0x78, 0xcd, 0x98, 0x38, + 0x31, 0x65, 0x80, 0xd6, 0xf3, 0xba, 0xe2, 0x3a, 0x8c, 0x3f, 0x70, 0x5b, 0xdd, 0xb6, 0xca, 0x7c, + 0x16, 0xaf, 0xce, 0xa5, 0xad, 0xf6, 0x5d, 0x41, 0x12, 0x1a, 0x01, 0xf9, 0x9b, 0x61, 0xd0, 0x96, + 0x7c, 0x25, 0x03, 0x67, 0xf9, 0xd6, 0xd1, 0x7a, 0xc0, 0x4a, 0x64, 0x08, 0x4d, 0xbd, 0xc3, 0xf8, + 0xd1, 0x1a, 0x68, 0xd8, 0x05, 0x25, 0xf6, 0xec, 0x7a, 0x4c, 0x02, 0x26, 0x24, 0x92, 0x0e, 0xe4, + 0x99, 0x6d, 0xd1, 0x9a, 0xe9, 0xb1, 0xd2, 0xb9, 0x53, 0x93, 0x1e, 0xfa, 0xf2, 0x8a, 0x37, 0x6a, + 0x29, 0xe4, 0x77, 0xc4, 0x0b, 0x54, 0xf5, 0x7a, 0x5c, 0xbd, 0xe8, 0x9f, 0x3d, 0xcd, 0x17, 0xfd, + 0xe7, 0xe4, 0xf3, 0xd3, 0x98, 0x04, 0x4c, 0x8a, 0x24, 0x5b, 0x70, 0x5e, 0xbe, 0x91, 0x48, 0x3e, + 0x90, 0x39, 0x2f, 0xea, 0x1f, 0x9e, 0x39, 0x3a, 0x2c, 0x9f, 0x5f, 0x4a, 0x23, 0xc0, 0xf4, 0x76, + 0xe4, 0x7d, 0x98, 0xf4, 0xa2, 0x71, 0x60, 0xe9, 0xc2, 0x10, 0x55, 0x7d, 0xb1, 0x88, 0x52, 0x66, + 0xd6, 0x63, 0x20, 0x8c, 0xcb, 0x22, 0xaf, 0x40, 0xb1, 0xa3, 0x2c, 0x95, 0xcd, 0xda, 0xa5, 0x8b, + 0x62, 0x0c, 0xe2, 0x44, 0xdd, 0x0e, 0xc1, 0x18, 0xa5, 0x21, 0x77, 0xa0, 0xe8, 0xbb, 0x2d, 0xea, + 0xa9, 0xab, 0xfb, 0x92, 0x58, 0xfc, 0xf9, 0x34, 0x4d, 0xde, 0xd1, 0x64, 0xa1, 0x83, 0x1e, 0xc2, + 0x18, 0x46, 0xf9, 0x90, 0xcf, 0xc0, 0x64, 0xf0, 0x1e, 0xca, 0x13, 0x69, 0xb4, 0x67, 0xe2, 0xf9, + 0x84, 0x6a, 0x14, 0x89, 0x71, 0x5a, 0xb2, 0x06, 0x33, 0x1d, 0xcf, 0x76, 0x3d, 0xdb, 0x3f, 0x58, + 0x6e, 0x99, 0x8c, 0x09, 0x06, 0x73, 0x82, 0x81, 0xce, 0x10, 0x6c, 0x27, 0x09, 0xb0, 0xb7, 0x0d, + 0x0f, 0xc3, 0x02, 0x60, 0xe9, 0x59, 0xe1, 0xab, 0x09, 0xb3, 0x14, 0xb4, 0x45, 0x8d, 0xed, 0x53, + 0x94, 0x7e, 0x69, 0x90, 0xa2, 0x74, 0x62, 0xc1, 0x25, 0xb3, 0xeb, 0xbb, 0x6d, 0x0e, 0x88, 0x37, + 0xd9, 0x71, 0xf7, 0xa8, 0x53, 0xba, 0x2c, 0xce, 0xaa, 0xcb, 0x47, 0x87, 0xe5, 0x4b, 0x4b, 0x0f, + 0xa1, 0xc3, 0x87, 0x72, 0x21, 0x6d, 0xc8, 0x53, 0x55, 0x58, 0x5f, 0xfa, 0xd8, 0x10, 0x87, 0x44, + 0xbc, 0x3a, 0x5f, 0x4e, 0x50, 0x00, 0x43, 0x2d, 0x82, 0xec, 0x40, 0xb1, 0xe9, 0x32, 0x7f, 0xa9, + 0x65, 0x9b, 0x8c, 0xb2, 0xd2, 0x73, 0x42, 0x4f, 0x52, 0xcf, 0xb7, 0x1b, 0x01, 0x59, 0xa8, 0x26, + 0x37, 0xc2, 0x96, 0x18, 0x65, 0x43, 0xa8, 0x88, 0x49, 0xbb, 0x62, 0xd5, 0x5c, 0xc7, 0xa7, 0xef, + 0xf9, 0xa5, 0x79, 0x31, 0x96, 0x17, 0xd3, 0x38, 0x6f, 0xbb, 0x56, 0x35, 0x4e, 0x2d, 0x77, 0x79, + 0x02, 0x88, 0x49, 0x9e, 0xe4, 0x35, 0x98, 0xe8, 0xb8, 0x56, 0xb5, 0x43, 0x6b, 0xdb, 0xa6, 0x5f, + 0x6b, 0x96, 0xca, 0xf1, 0x9b, 0xfa, 0xed, 0x08, 0x0e, 0x63, 0x94, 0x3c, 0x9e, 0xf0, 0x28, 0xeb, + 0xee, 0xb6, 0x6d, 0x7f, 0x9b, 0x3a, 0x96, 0xed, 0x34, 0xb6, 0x5d, 0x8b, 0x95, 0x0c, 0xb1, 0x84, + 0x22, 0x9e, 0xc0, 0x5e, 0x34, 0xa6, 0xb5, 0x21, 0x35, 0x18, 0x6f, 0xcb, 0xe2, 0x8a, 0xd2, 0xf3, + 0x43, 0xb8, 0x95, 0xaa, 0x40, 0x43, 0x1e, 0x4a, 0xea, 0x07, 0x06, 0x9c, 0xe7, 0xde, 0x84, 0x99, + 0x1e, 0xff, 0xef, 0xb1, 0xaa, 0x4a, 0x7e, 0xcc, 0xe3, 0xbd, 0x88, 0xc7, 0x7d, 0xda, 0x71, 0xca, + 0x1a, 0xcc, 0xa8, 0x2f, 0x08, 0x71, 0xe7, 0xa0, 0xd5, 0xd5, 0x2f, 0xd7, 0x23, 0xd9, 0x3f, 0x4c, + 0x12, 0x60, 0x6f, 0x1b, 0xbe, 0xa6, 0x35, 0xf9, 0x34, 0x5a, 0x16, 0x33, 0xc9, 0x34, 0x8b, 0x5e, + 0x53, 0xf5, 0x6c, 0x5a, 0x16, 0x0d, 0xc4, 0x28, 0x8d, 0x3f, 0xcb, 0xc0, 0x64, 0xec, 0xa0, 0x3a, + 0xf5, 0xdc, 0xc1, 0x2a, 0x90, 0xb6, 0xed, 0x79, 0xae, 0x27, 0x4f, 0xfb, 0xdb, 0x7c, 0xd7, 0x32, + 0xf5, 0x32, 0x42, 0x54, 0xe4, 0xde, 0xee, 0xc1, 0x62, 0x4a, 0x0b, 0xe3, 0x5f, 0x32, 0x10, 0x5e, + 0x51, 0xe8, 0x32, 0xf4, 0x4c, 0xdf, 0x32, 0xf4, 0x97, 0x21, 0x7f, 0x9f, 0xb9, 0xce, 0x76, 0x58, + 0xac, 0xae, 0x97, 0xe2, 0x66, 0x75, 0x6b, 0x53, 0x50, 0x6a, 0x0a, 0x41, 0xfd, 0xee, 0xaa, 0xdd, + 0xf2, 0x7b, 0x4b, 0xba, 0x6f, 0x7e, 0x4e, 0xc2, 0x51, 0x53, 0x90, 0x45, 0x28, 0xe8, 0x5b, 0x31, + 0x95, 0x74, 0xd0, 0x93, 0xa0, 0xaf, 0x84, 0x30, 0xa4, 0x21, 0x2f, 0x85, 0x77, 0x3f, 0xd9, 0x78, + 0x16, 0x28, 0x79, 0xff, 0x63, 0x7c, 0x67, 0x04, 0xf2, 0x4f, 0xf1, 0x99, 0x78, 0x2d, 0xf6, 0x4c, + 0xfc, 0x14, 0xde, 0x14, 0xa7, 0x3d, 0x11, 0xdf, 0x4b, 0x3c, 0x11, 0x5f, 0x1e, 0xf2, 0x4e, 0xee, + 0xa1, 0xcf, 0xc3, 0xff, 0x21, 0x03, 0x33, 0x01, 0x69, 0x98, 0xda, 0xfe, 0x54, 0xa4, 0x96, 0xb3, + 0x50, 0x79, 0x21, 0x51, 0xce, 0x74, 0xbe, 0xa7, 0x41, 0xa4, 0xb6, 0xe9, 0x8b, 0xba, 0xf7, 0x52, + 0x8f, 0x56, 0xe3, 0x82, 0x8f, 0x0f, 0xcb, 0x27, 0xfa, 0x0e, 0xd9, 0x82, 0xe6, 0x1d, 0xef, 0x70, + 0xb4, 0xa2, 0x66, 0xf4, 0xe1, 0x15, 0x35, 0xc6, 0x0f, 0x32, 0x30, 0xf1, 0x14, 0x9f, 0xbd, 0xef, + 0xc6, 0x9f, 0xbd, 0xbf, 0x3e, 0xd4, 0xb2, 0xf5, 0x79, 0xf2, 0xfe, 0x8f, 0x17, 0x20, 0xf6, 0xdc, + 0x9c, 0x38, 0x50, 0x08, 0x2c, 0x64, 0x70, 0x87, 0xfb, 0xfa, 0x50, 0x59, 0x80, 0x70, 0x6f, 0x06, + 0x10, 0x86, 0xa1, 0x08, 0x72, 0x15, 0x80, 0xf2, 0xa3, 0x41, 0xe6, 0xc7, 0x47, 0xe2, 0x57, 0x9c, + 0xd7, 0x35, 0x06, 0x23, 0x54, 0x4f, 0x3f, 0xc3, 0x94, 0xee, 0x93, 0x8d, 0x3d, 0x11, 0x9f, 0xec, + 0xd2, 0xa9, 0xfb, 0x64, 0xcf, 0x3d, 0x79, 0x9f, 0x2c, 0x12, 0x81, 0x66, 0x87, 0x88, 0x40, 0xdf, + 0x87, 0x59, 0xf9, 0xef, 0x72, 0xcb, 0xb4, 0xdb, 0x5a, 0x5f, 0x54, 0xf5, 0xfb, 0x4b, 0xa9, 0x9e, + 0x18, 0xf5, 0x98, 0xcd, 0x7c, 0xea, 0xf8, 0x77, 0xc3, 0x96, 0x61, 0xf5, 0xdf, 0xdd, 0x14, 0x76, + 0x98, 0x2a, 0x24, 0x19, 0xb2, 0x8c, 0x9f, 0x20, 0x64, 0xf9, 0x56, 0x06, 0xce, 0x9b, 0x69, 0x5f, + 0x57, 0x52, 0x89, 0xab, 0x9b, 0x43, 0x05, 0x90, 0x31, 0x8e, 0x2a, 0x00, 0x4c, 0x43, 0x61, 0x7a, + 0x1f, 0xc8, 0x0b, 0x61, 0x0e, 0xa2, 0x20, 0x94, 0x2a, 0x3d, 0x7b, 0xf0, 0xb5, 0x64, 0xee, 0x0f, + 0xc4, 0x6c, 0x57, 0x87, 0x3e, 0x8c, 0x4e, 0x21, 0xff, 0x57, 0x1c, 0x22, 0xff, 0x97, 0x88, 0x27, + 0x27, 0x4e, 0x29, 0x9e, 0x74, 0x60, 0xda, 0x6e, 0x9b, 0x0d, 0xba, 0xdd, 0x6d, 0xb5, 0xe4, 0x2d, + 0x13, 0x2b, 0x4d, 0x0a, 0xde, 0xa9, 0x6f, 0xa1, 0x78, 0x7c, 0xdf, 0x4a, 0x7e, 0x1d, 0x41, 0xdf, + 0xe7, 0xae, 0x27, 0x38, 0x61, 0x0f, 0x6f, 0xae, 0x96, 0x3c, 0x4e, 0xd9, 0xa4, 0x3e, 0x9f, 0x6d, + 0x91, 0x1a, 0x53, 0xdf, 0xbf, 0xbb, 0x11, 0x82, 0x31, 0x4a, 0x43, 0x6e, 0x41, 0xc1, 0x72, 0x98, + 0xba, 0xcd, 0x9d, 0x12, 0x56, 0xea, 0xe3, 0xdc, 0xb6, 0xad, 0x6c, 0x56, 0xf5, 0x3d, 0xee, 0xa5, + 0x94, 0xd2, 0x45, 0x8d, 0xc7, 0xb0, 0x3d, 0xb9, 0x2d, 0x98, 0xa9, 0x87, 0x81, 0x32, 0x97, 0x75, + 0xb9, 0x4f, 0x48, 0xb4, 0xb2, 0x19, 0xbc, 0x63, 0x9c, 0x54, 0xe2, 0xd4, 0x73, 0xbf, 0x90, 0x43, + 0xe4, 0xc9, 0xf9, 0xcc, 0xc3, 0x9e, 0x9c, 0x93, 0x3b, 0x70, 0xd1, 0xf7, 0x5b, 0xb1, 0x2b, 0x12, + 0x55, 0x1d, 0x2a, 0x4a, 0x85, 0xb3, 0xf2, 0x8b, 0x21, 0x3b, 0x3b, 0x1b, 0x69, 0x24, 0xd8, 0xaf, + 0xad, 0xb8, 0x2b, 0xf0, 0x5b, 0x3a, 0x25, 0x32, 0x3f, 0xcc, 0x5d, 0x41, 0x78, 0x17, 0xa5, 0xee, + 0x0a, 0x42, 0x00, 0x46, 0xa5, 0xf4, 0x4f, 0xed, 0x9c, 0x1b, 0x30, 0xb5, 0x13, 0xcd, 0x26, 0xcc, + 0x3e, 0x34, 0x9b, 0xd0, 0x93, 0xfd, 0x38, 0xff, 0x18, 0xd9, 0x8f, 0xb7, 0x45, 0x59, 0xea, 0xda, + 0xb2, 0xca, 0x1c, 0x0d, 0x56, 0x27, 0x23, 0xea, 0x8b, 0x64, 0xd1, 0x81, 0xf8, 0x17, 0x25, 0x4f, + 0xb2, 0x0d, 0xb3, 0x1d, 0xd7, 0xea, 0x49, 0x9e, 0x88, 0x54, 0x51, 0xa4, 0x7c, 0x7b, 0x3b, 0x85, + 0x06, 0x53, 0x5b, 0x0a, 0x03, 0x1e, 0xc2, 0x4b, 0x25, 0x31, 0x31, 0xd2, 0x80, 0x87, 0x60, 0x8c, + 0xd2, 0x24, 0x73, 0x09, 0xcf, 0x3c, 0xb1, 0x5c, 0xc2, 0xdc, 0x53, 0xc8, 0x25, 0x3c, 0x7b, 0xe2, + 0x5c, 0xc2, 0x6f, 0xc2, 0xb9, 0x8e, 0x6b, 0xad, 0xd8, 0xcc, 0xeb, 0x8a, 0x6f, 0x6f, 0x56, 0xba, + 0x56, 0x83, 0xfa, 0x22, 0x19, 0x51, 0xbc, 0x7a, 0x35, 0xda, 0x49, 0xf9, 0x09, 0xe0, 0x05, 0xf5, + 0x09, 0x60, 0xb1, 0xc9, 0x13, 0xad, 0x44, 0xd8, 0x21, 0xf2, 0x0f, 0x29, 0x48, 0x4c, 0x93, 0x13, + 0xcd, 0x3f, 0x5c, 0x7e, 0x52, 0xf9, 0x07, 0xf2, 0x16, 0xe4, 0x59, 0xb3, 0xeb, 0x5b, 0xee, 0xbe, + 0x23, 0xb2, 0x52, 0x05, 0xfd, 0xbd, 0xa5, 0x7c, 0x55, 0xc1, 0x8f, 0x0f, 0xcb, 0xd3, 0xc1, 0xff, + 0x91, 0x0a, 0x38, 0x05, 0x19, 0x3e, 0x83, 0xf1, 0x1f, 0x13, 0x70, 0x36, 0xf1, 0x31, 0x1d, 0xfd, + 0x4a, 0x20, 0x73, 0xd2, 0x57, 0x02, 0xb1, 0x32, 0xfe, 0x91, 0x27, 0x5a, 0xc6, 0x3f, 0x7a, 0xea, + 0x65, 0xfc, 0x91, 0xe0, 0x6a, 0xec, 0x11, 0xcf, 0x15, 0x96, 0x60, 0x2a, 0xb8, 0xa7, 0xa6, 0xaa, + 0x8c, 0x5b, 0x06, 0xeb, 0xba, 0xda, 0x63, 0x39, 0x8e, 0xc6, 0x24, 0x3d, 0xf9, 0x0d, 0xc8, 0x3a, + 0xa2, 0x61, 0x6e, 0x88, 0x67, 0x5f, 0xf1, 0x05, 0x13, 0x3e, 0x8c, 0x7a, 0x79, 0x15, 0x5c, 0x61, + 0x64, 0x05, 0xec, 0x38, 0xf8, 0x07, 0xa5, 0x50, 0xf2, 0x0e, 0x94, 0xdc, 0x7a, 0xbd, 0xe5, 0x9a, + 0x56, 0xf8, 0xd4, 0xe0, 0x2e, 0xf7, 0x4e, 0xd5, 0xa5, 0x60, 0xa1, 0x72, 0x59, 0x31, 0x28, 0x6d, + 0xf5, 0xa1, 0xc3, 0xbe, 0x1c, 0xb8, 0xab, 0x39, 0x15, 0x7f, 0x02, 0xc3, 0x4a, 0x05, 0x31, 0xcc, + 0x5f, 0x3b, 0x8d, 0x61, 0xc6, 0xdf, 0xdb, 0xa8, 0x01, 0x87, 0x75, 0x36, 0x71, 0x2c, 0x26, 0x7b, + 0x42, 0x3c, 0xb8, 0xd0, 0x49, 0x73, 0xc4, 0x99, 0xba, 0x48, 0x7e, 0x58, 0x38, 0x30, 0xaf, 0xa4, + 0x5c, 0x48, 0x75, 0xe5, 0x19, 0xf6, 0xe1, 0x1c, 0x7d, 0x84, 0x90, 0x7f, 0x62, 0x8f, 0x10, 0xbe, + 0x2c, 0x3e, 0xc9, 0x23, 0x13, 0x07, 0x81, 0x9f, 0xb7, 0x3a, 0xd4, 0x84, 0xeb, 0x3c, 0x44, 0xb8, + 0x79, 0x34, 0x88, 0x61, 0x44, 0x1a, 0xf9, 0x69, 0xea, 0x1b, 0x18, 0xe9, 0xc7, 0x7e, 0xe1, 0x34, + 0x16, 0xfd, 0x67, 0xed, 0x1d, 0xcc, 0xdc, 0x81, 0x7c, 0x78, 0xd7, 0xf7, 0x09, 0xe2, 0x9d, 0xf8, + 0x23, 0xe4, 0x37, 0x87, 0x7c, 0x08, 0x14, 0x7d, 0xfe, 0xf8, 0xdb, 0x19, 0x98, 0x4d, 0xdb, 0x04, + 0x29, 0xbd, 0xa8, 0xc6, 0x7b, 0x31, 0x5c, 0x7a, 0x24, 0xda, 0x87, 0xd3, 0x79, 0x8e, 0xf2, 0xf5, + 0x5c, 0x24, 0xa5, 0xe3, 0xd3, 0xce, 0x2f, 0x0a, 0x7c, 0x06, 0x2a, 0xf0, 0x89, 0x7d, 0xc0, 0x2c, + 0xfb, 0x14, 0x3f, 0x60, 0x96, 0x1b, 0xe0, 0x03, 0x66, 0xe3, 0x4f, 0xf3, 0x03, 0x66, 0xf9, 0x13, + 0x7e, 0xc0, 0xac, 0xf0, 0xb3, 0xf3, 0x01, 0xb3, 0x0f, 0x33, 0x30, 0xfd, 0x7f, 0xfd, 0x0b, 0xc3, + 0x3f, 0xce, 0xc0, 0xec, 0xff, 0xc0, 0xa7, 0x85, 0xef, 0xc7, 0xb3, 0xd4, 0xd7, 0x4f, 0x65, 0x90, + 0x7d, 0xb2, 0xd5, 0x7f, 0x9c, 0x32, 0x44, 0x91, 0xb5, 0x7e, 0xff, 0x49, 0x7d, 0xa3, 0x75, 0x36, + 0xed, 0x1b, 0xad, 0xf1, 0x6f, 0xb2, 0x56, 0x16, 0xbe, 0xf7, 0xe1, 0xfc, 0x99, 0x1f, 0x7c, 0x38, + 0x7f, 0xe6, 0x87, 0x1f, 0xce, 0x9f, 0xf9, 0xe0, 0x68, 0x3e, 0xf3, 0xbd, 0xa3, 0xf9, 0xcc, 0x0f, + 0x8e, 0xe6, 0x33, 0x3f, 0x3c, 0x9a, 0xcf, 0xfc, 0xf8, 0x68, 0x3e, 0xf3, 0x47, 0xff, 0x3c, 0x7f, + 0xe6, 0x0b, 0xf9, 0x40, 0xc0, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0xc6, 0x09, 0x31, 0xec, 0x30, + 0x66, 0x00, 0x00, } func (m *ArchiveStrategy) Marshal() (dAtA []byte, err error) { @@ -5253,6 +5255,11 @@ func (m *TarStrategy) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.CompressionLevel != nil { + i = encodeVarintGenerated(dAtA, i, uint64(*m.CompressionLevel)) + i-- + dAtA[i] = 0x8 + } return len(dAtA) - i, nil } @@ -7827,6 +7834,9 @@ func (m *TarStrategy) Size() (n int) { } var l int _ = l + if m.CompressionLevel != nil { + n += 1 + sovGenerated(uint64(*m.CompressionLevel)) + } return n } @@ -9091,6 +9101,7 @@ func (this *TarStrategy) String() string { return "nil" } s := strings.Join([]string{`&TarStrategy{`, + `CompressionLevel:` + valueToStringGenerated(this.CompressionLevel) + `,`, `}`, }, "") return s @@ -18831,6 +18842,26 @@ func (m *TarStrategy) Unmarshal(dAtA []byte) error { return fmt.Errorf("proto: TarStrategy: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field CompressionLevel", wireType) + } + var v int32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.CompressionLevel = &v 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 5481d4964078..cfba7c900be1 100644 --- a/pkg/apis/workflow/v1alpha1/generated.proto +++ b/pkg/apis/workflow/v1alpha1/generated.proto @@ -788,6 +788,9 @@ message TTLStrategy { // TarStrategy will tar and gzip the file or directory when saving message TarStrategy { + // CompressionLevel specifies the gzip compression level to use for the artifact. + // Defaults to gzip.DefaultCompression. + optional int32 compressionLevel = 1; } // Template is a reusable and composable unit of execution in a workflow diff --git a/pkg/apis/workflow/v1alpha1/workflow_types.go b/pkg/apis/workflow/v1alpha1/workflow_types.go index a9c1dbc4825a..b5ddea61ad4e 100644 --- a/pkg/apis/workflow/v1alpha1/workflow_types.go +++ b/pkg/apis/workflow/v1alpha1/workflow_types.go @@ -642,7 +642,11 @@ type ArchiveStrategy struct { } // TarStrategy will tar and gzip the file or directory when saving -type TarStrategy struct{} +type TarStrategy struct { + // CompressionLevel specifies the gzip compression level to use for the artifact. + // Defaults to gzip.DefaultCompression. + CompressionLevel *int32 `json:"compressionLevel,omitempty" protobuf:"varint,1,opt,name=compressionLevel"` +} // NoneStrategy indicates to skip tar process and upload the files or directory tree as independent // files. Note that if the artifact is a directory, the artifact driver must support the ability to diff --git a/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go index 591bdd86b889..8e767ecf2b57 100644 --- a/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go @@ -19,7 +19,7 @@ func (in *ArchiveStrategy) DeepCopyInto(out *ArchiveStrategy) { if in.Tar != nil { in, out := &in.Tar, &out.Tar *out = new(TarStrategy) - **out = **in + (*in).DeepCopyInto(*out) } if in.None != nil { in, out := &in.None, &out.None @@ -1423,6 +1423,11 @@ func (in *TTLStrategy) DeepCopy() *TTLStrategy { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *TarStrategy) DeepCopyInto(out *TarStrategy) { *out = *in + if in.CompressionLevel != nil { + in, out := &in.CompressionLevel, &out.CompressionLevel + *out = new(int32) + **out = **in + } return } diff --git a/util/archive/archive.go b/util/archive/archive.go index 1f6724b8b904..9f22844d4553 100644 --- a/util/archive/archive.go +++ b/util/archive/archive.go @@ -18,7 +18,7 @@ type flusher interface { } // TarGzToWriter tar.gz's the source path to the supplied writer -func TarGzToWriter(sourcePath string, w io.Writer) error { +func TarGzToWriter(sourcePath string, level int, w io.Writer) error { sourcePath, err := filepath.Abs(sourcePath) if err != nil { return errors.InternalErrorf("getting absolute path: %v", err) @@ -37,7 +37,10 @@ func TarGzToWriter(sourcePath string, w io.Writer) error { if flush, ok := w.(flusher); ok { defer func() { _ = flush.Flush() }() } - gzw := gzip.NewWriter(w) + gzw, err := gzip.NewWriterLevel(w, level) + if err != nil { + return errors.InternalWrapError(err) + } defer util.Close(gzw) tw := tar.NewWriter(gzw) defer util.Close(tw) diff --git a/util/archive/archive_test.go b/util/archive/archive_test.go index 873d0f803066..2c8f7f6a5ee3 100644 --- a/util/archive/archive_test.go +++ b/util/archive/archive_test.go @@ -2,6 +2,7 @@ package archive import ( "bufio" + "compress/gzip" "crypto/rand" "encoding/hex" "os" @@ -31,36 +32,110 @@ func tempFile(dir, prefix, suffix string) (*os.File, error) { } func TestTarDirectory(t *testing.T) { - f, err := tempFile(os.TempDir()+"/argo-test", "dir-", ".tgz") - assert.NoError(t, err) - log.Infof("Taring to %s", f.Name()) - w := bufio.NewWriter(f) + tests := []struct { + name string + src string + level int + wantErr bool + }{ + { + "dir_missing", + "./fake/dir", + gzip.NoCompression, + true, + }, + { + "level_default", + "../../test/e2e", + gzip.DefaultCompression, + false, + }, + { + "level_none", + "../../test/e2e", + gzip.NoCompression, + false, + }, + { + "level_out_of_range", + "../../test/e2e", + -5, + true, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + f, err := tempFile(os.TempDir()+"/argo-test", "dir-"+tt.name+"-", ".tgz") + assert.NoError(t, err) + + log.Infof("Taring to %s", f.Name()) - err = TarGzToWriter("../../test/e2e", w) - assert.NoError(t, err) + err = TarGzToWriter(tt.src, tt.level, bufio.NewWriter(f)) + if tt.wantErr { + assert.Error(t, err) + } else { + assert.NoError(t, err) + } - err = f.Close() - assert.NoError(t, err) + err = os.Remove(f.Name()) + assert.NoError(t, err) + + err = f.Close() + assert.NoError(t, err) + }) + } } func TestTarFile(t *testing.T) { - data, err := tempFile(os.TempDir()+"/argo-test", "file-", "") - assert.NoError(t, err) - _, err = data.WriteString("hello world") - assert.NoError(t, err) - data.Close() + tests := []struct { + name string + level int + wantErr bool + }{ + { + "level_default", + gzip.DefaultCompression, + false, + }, + { + "level_none", + gzip.NoCompression, + false, + }, + { + "level_out_of_range", + -5, + true, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + data, err := tempFile(os.TempDir()+"/argo-test", "file-"+tt.name+"-", "") + assert.NoError(t, err) + _, err = data.WriteString("hello world") + assert.NoError(t, err) + err = data.Close() + assert.NoError(t, err) + + dataTarPath := data.Name() + ".tgz" + f, err := os.Create(dataTarPath) + assert.NoError(t, err) - dataTarPath := data.Name() + ".tgz" - f, err := os.Create(dataTarPath) - assert.NoError(t, err) - log.Infof("Taring to %s", f.Name()) - w := bufio.NewWriter(f) + log.Infof("Taring to %s", f.Name()) - err = TarGzToWriter(data.Name(), w) - assert.NoError(t, err) - err = os.Remove(data.Name()) - assert.NoError(t, err) + err = TarGzToWriter(data.Name(), tt.level, bufio.NewWriter(f)) + if tt.wantErr { + assert.Error(t, err) + } else { + assert.NoError(t, err) + } - err = f.Close() - assert.NoError(t, err) + err = os.Remove(data.Name()) + assert.NoError(t, err) + err = f.Close() + assert.NoError(t, err) + err = os.Remove(f.Name()) + assert.NoError(t, err) + }) + } } diff --git a/workflow/executor/docker/docker.go b/workflow/executor/docker/docker.go index cab9b18945a7..b92ab752a24e 100644 --- a/workflow/executor/docker/docker.go +++ b/workflow/executor/docker/docker.go @@ -7,6 +7,7 @@ import ( "io" "os" "os/exec" + "strconv" "sync" "time" @@ -45,9 +46,21 @@ func (d *DockerExecutor) GetFileContents(containerID string, sourcePath string) return string(out), nil } -func (d *DockerExecutor) CopyFile(containerID string, sourcePath string, destPath string) error { +func (d *DockerExecutor) CopyFile(containerID string, sourcePath string, destPath string, compressionLevel int) error { log.Infof("Archiving %s:%s to %s", containerID, sourcePath, destPath) - dockerCpCmd := fmt.Sprintf("docker cp -a %s:%s - | gzip > %s", containerID, sourcePath, destPath) + var levelFlag string + switch compressionLevel { + case gzip.NoCompression: + // best we can do - if we skip gzip it's a different file + levelFlag = "-1" + case gzip.DefaultCompression: + // use cmd default + levelFlag = "" + default: + // -1 through -9 (or error) + levelFlag = "-" + strconv.Itoa(compressionLevel) + } + dockerCpCmd := fmt.Sprintf("docker cp -a %s:%s - | gzip %s > %s", containerID, sourcePath, levelFlag, destPath) err := common.RunCommand("sh", "-c", dockerCpCmd) if err != nil { return err diff --git a/workflow/executor/executor.go b/workflow/executor/executor.go index 9228cad29c27..78a3e454cf21 100644 --- a/workflow/executor/executor.go +++ b/workflow/executor/executor.go @@ -3,6 +3,7 @@ package executor import ( "bufio" "bytes" + "compress/gzip" "context" "encoding/json" "fmt" @@ -69,7 +70,7 @@ type ContainerRuntimeExecutor interface { GetFileContents(containerID string, sourcePath string) (string, error) // CopyFile copies a source file in a container to a local path - CopyFile(containerID string, sourcePath string, destPath string) error + CopyFile(containerID string, sourcePath string, destPath string, compressionLevel int) error // GetOutputStream returns the entirety of the container output as a io.Reader // Used to capture script results as an output parameter, and to archive container logs @@ -313,6 +314,14 @@ func (we *WorkflowExecutor) stageArchiveFile(mainCtrID string, art *wfv1.Artifac Tar: &wfv1.TarStrategy{}, } } + compressionLevel := gzip.NoCompression + if strategy.Tar != nil { + if l := strategy.Tar.CompressionLevel; l != nil { + compressionLevel = int(*l) + } else { + compressionLevel = gzip.DefaultCompression + } + } if !we.isBaseImagePath(art.Path) { // If we get here, we are uploading an artifact from a mirrored volume mount which the wait @@ -332,7 +341,7 @@ func (we *WorkflowExecutor) stageArchiveFile(mainCtrID string, art *wfv1.Artifac return "", "", errors.InternalWrapError(err) } w := bufio.NewWriter(f) - err = archive.TarGzToWriter(mountedArtPath, w) + err = archive.TarGzToWriter(mountedArtPath, compressionLevel, w) if err != nil { return "", "", err } @@ -344,7 +353,7 @@ func (we *WorkflowExecutor) stageArchiveFile(mainCtrID string, art *wfv1.Artifac localArtPath := filepath.Join(tempOutArtDir, fileName) log.Infof("Copying %s from container base image layer to %s", art.Path, localArtPath) - err := we.RuntimeExecutor.CopyFile(mainCtrID, art.Path, localArtPath) + err := we.RuntimeExecutor.CopyFile(mainCtrID, art.Path, localArtPath, compressionLevel) if err != nil { return "", "", err } diff --git a/workflow/executor/k8sapi/k8sapi.go b/workflow/executor/k8sapi/k8sapi.go index 8c44ef06e548..72bd249f6a18 100644 --- a/workflow/executor/k8sapi/k8sapi.go +++ b/workflow/executor/k8sapi/k8sapi.go @@ -29,7 +29,7 @@ func (k *K8sAPIExecutor) GetFileContents(containerID string, sourcePath string) return "", errors.Errorf(errors.CodeNotImplemented, "GetFileContents() is not implemented in the k8sapi executor.") } -func (k *K8sAPIExecutor) CopyFile(containerID string, sourcePath string, destPath string) error { +func (k *K8sAPIExecutor) CopyFile(containerID string, sourcePath string, destPath string, compressionLevel int) error { return errors.Errorf(errors.CodeNotImplemented, "CopyFile() is not implemented in the k8sapi executor.") } diff --git a/workflow/executor/kubelet/kubelet.go b/workflow/executor/kubelet/kubelet.go index cf5115e1b274..acef2adf77ed 100644 --- a/workflow/executor/kubelet/kubelet.go +++ b/workflow/executor/kubelet/kubelet.go @@ -27,7 +27,7 @@ func (k *KubeletExecutor) GetFileContents(containerID string, sourcePath string) return "", errors.Errorf(errors.CodeNotImplemented, "GetFileContents() is not implemented in the kubelet executor.") } -func (k *KubeletExecutor) CopyFile(containerID string, sourcePath string, destPath string) error { +func (k *KubeletExecutor) CopyFile(containerID string, sourcePath string, destPath string, compressionLevel int) error { return errors.Errorf(errors.CodeNotImplemented, "CopyFile() is not implemented in the kubelet executor.") } diff --git a/workflow/executor/mocks/ContainerRuntimeExecutor.go b/workflow/executor/mocks/ContainerRuntimeExecutor.go index 13bb32400268..961874f3ed9c 100644 --- a/workflow/executor/mocks/ContainerRuntimeExecutor.go +++ b/workflow/executor/mocks/ContainerRuntimeExecutor.go @@ -13,13 +13,13 @@ type ContainerRuntimeExecutor struct { mock.Mock } -// CopyFile provides a mock function with given fields: containerID, sourcePath, destPath -func (_m *ContainerRuntimeExecutor) CopyFile(containerID string, sourcePath string, destPath string) error { - ret := _m.Called(containerID, sourcePath, destPath) +// CopyFile provides a mock function with given fields: containerID, sourcePath, destPath, compressionLevel +func (_m *ContainerRuntimeExecutor) CopyFile(containerID string, sourcePath string, destPath string, compressionLevel int) error { + ret := _m.Called(containerID, sourcePath, destPath, compressionLevel) var r0 error - if rf, ok := ret.Get(0).(func(string, string, string) error); ok { - r0 = rf(containerID, sourcePath, destPath) + if rf, ok := ret.Get(0).(func(string, string, string, int) error); ok { + r0 = rf(containerID, sourcePath, destPath, compressionLevel) } else { r0 = ret.Error(0) } diff --git a/workflow/executor/pns/pns.go b/workflow/executor/pns/pns.go index 592b72bf6513..97ef89e50bc4 100644 --- a/workflow/executor/pns/pns.go +++ b/workflow/executor/pns/pns.go @@ -116,7 +116,7 @@ func (p *PNSExecutor) exitChroot() error { } // CopyFile copies a source file in a container to a local path -func (p *PNSExecutor) CopyFile(containerID string, sourcePath string, destPath string) (err error) { +func (p *PNSExecutor) CopyFile(containerID string, sourcePath string, destPath string, compressionLevel int) (err error) { destFile, err := os.Create(destPath) if err != nil { return err @@ -138,7 +138,7 @@ func (p *PNSExecutor) CopyFile(containerID string, sourcePath string, destPath s return err } - err = archive.TarGzToWriter(sourcePath, w) + err = archive.TarGzToWriter(sourcePath, compressionLevel, w) return err }