From 8d5d0bc9234f4da732eaf913fe50ca042fdf2242 Mon Sep 17 00:00:00 2001 From: Alex Collins Date: Tue, 28 Jul 2020 15:02:10 -0700 Subject: [PATCH 01/47] feat(controller): Estimated workflow progress --- api/openapi-spec/swagger.json | 8 + docs/fields.md | 2 + docs/swagger.md | 2 + .../base/crds/full/argoproj.io_workflows.yaml | 6 + pkg/apis/workflow/v1alpha1/generated.pb.go | 912 ++++++++++-------- pkg/apis/workflow/v1alpha1/generated.proto | 4 + .../workflow/v1alpha1/openapi_generated.go | 12 + pkg/apis/workflow/v1alpha1/workflow_types.go | 18 + ui/src/app/shared/components/duration.tsx | 16 + .../resource-editor/resource-editor.tsx | 6 +- .../app/shared/services/workflows-service.ts | 1 + .../components/workflow-dag/workflow-dag.scss | 6 + .../components/workflow-dag/workflow-dag.tsx | 23 +- .../workflow-node-info/workflow-node-info.tsx | 11 +- .../components/workflow-summary-panel.tsx | 48 +- .../workflows-list/workflows-list.tsx | 7 +- .../workflows-row/workflows-row.tsx | 27 +- ui/src/models/workflows.ts | 3 + workflow/controller/operator.go | 91 +- workflow/util/util.go | 1 + 20 files changed, 751 insertions(+), 453 deletions(-) create mode 100644 ui/src/app/shared/components/duration.tsx diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 486e64db817c..a021729658ab 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -2771,6 +2771,10 @@ "description": "DisplayName is a human readable representation of the node. Unique within a template boundary", "type": "string" }, + "estimatedDuration": { + "type": "integer", + "format": "int64" + }, "finishedAt": { "description": "Time at which this node completed", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" @@ -4240,6 +4244,10 @@ "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.Condition" } }, + "estimatedDuration": { + "type": "integer", + "format": "int64" + }, "finishedAt": { "description": "Time at which this workflow completed", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" diff --git a/docs/fields.md b/docs/fields.md index 16727f8f14c7..0b4b953eba79 100644 --- a/docs/fields.md +++ b/docs/fields.md @@ -634,6 +634,7 @@ WorkflowStatus contains overall status information about a workflow |:----------:|:----------:|---------------| |`compressedNodes`|`string`|Compressed and base64 decoded Nodes map| |`conditions`|`Array<`[`Condition`](#condition)`>`|Conditions is a list of conditions the Workflow may have| +|`estimatedDuration`|`int64`|_No description available_| |`finishedAt`|[`Time`](#time)|Time at which this workflow completed| |`message`|`string`|A human readable message indicating details about why the workflow is in this condition.| |`nodes`|[`NodeStatus`](#nodestatus)|Nodes is a mapping between a node ID and the node's status.| @@ -1849,6 +1850,7 @@ NodeStatus contains status information about an individual node in the workflow |`children`|`Array< string >`|Children is a list of child node IDs| |`daemoned`|`boolean`|Daemoned tracks whether or not this node was daemoned and need to be terminated| |`displayName`|`string`|DisplayName is a human readable representation of the node. Unique within a template boundary| +|`estimatedDuration`|`int64`|_No description available_| |`finishedAt`|[`Time`](#time)|Time at which this node completed| |`hostNodeName`|`string`|HostNodeName name of the Kubernetes node on which the Pod is running, if applicable| |`id`|`string`|ID is a unique identifier of a node within the worklow It is implemented as a hash of the node name, which makes the ID deterministic| diff --git a/docs/swagger.md b/docs/swagger.md index e6f6be98b10c..a3db36f942b5 100644 --- a/docs/swagger.md +++ b/docs/swagger.md @@ -1160,6 +1160,7 @@ NodeStatus contains status information about an individual node in the workflow | children | [ string ] | Children is a list of child node IDs | No | | daemoned | boolean | Daemoned tracks whether or not this node was daemoned and need to be terminated | No | | displayName | string | DisplayName is a human readable representation of the node. Unique within a template boundary | No | +| estimatedDuration | long | | No | | finishedAt | [io.k8s.apimachinery.pkg.apis.meta.v1.Time](#io.k8s.apimachinery.pkg.apis.meta.v1.time) | Time at which this node completed | No | | hostNodeName | string | HostNodeName name of the Kubernetes node on which the Pod is running, if applicable | No | | id | string | ID is a unique identifier of a node within the worklow It is implemented as a hash of the node name, which makes the ID deterministic | Yes | @@ -1678,6 +1679,7 @@ WorkflowStatus contains overall status information about a workflow | ---- | ---- | ----------- | -------- | | compressedNodes | string | Compressed and base64 decoded Nodes map | No | | conditions | [ [io.argoproj.workflow.v1alpha1.Condition](#io.argoproj.workflow.v1alpha1.condition) ] | Conditions is a list of conditions the Workflow may have | No | +| estimatedDuration | long | | No | | finishedAt | [io.k8s.apimachinery.pkg.apis.meta.v1.Time](#io.k8s.apimachinery.pkg.apis.meta.v1.time) | Time at which this workflow completed | No | | message | string | A human readable message indicating details about why the workflow is in this condition. | No | | nodes | object | Nodes is a mapping between a node ID and the node's status. | No | diff --git a/manifests/base/crds/full/argoproj.io_workflows.yaml b/manifests/base/crds/full/argoproj.io_workflows.yaml index c4ea18862747..d07e4e07ac69 100644 --- a/manifests/base/crds/full/argoproj.io_workflows.yaml +++ b/manifests/base/crds/full/argoproj.io_workflows.yaml @@ -6992,6 +6992,9 @@ spec: type: string type: object type: array + estimatedDuration: + format: int64 + type: integer finishedAt: format: date-time type: string @@ -7010,6 +7013,9 @@ spec: type: boolean displayName: type: string + estimatedDuration: + format: int64 + type: integer finishedAt: format: date-time type: string diff --git a/pkg/apis/workflow/v1alpha1/generated.pb.go b/pkg/apis/workflow/v1alpha1/generated.pb.go index cd57ff281269..97ca93516fab 100644 --- a/pkg/apis/workflow/v1alpha1/generated.pb.go +++ b/pkg/apis/workflow/v1alpha1/generated.pb.go @@ -20,6 +20,7 @@ import ( math_bits "math/bits" reflect "reflect" strings "strings" + time "time" intstr "k8s.io/apimachinery/pkg/util/intstr" ) @@ -28,6 +29,7 @@ import ( var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf +var _ = time.Kitchen // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. @@ -2400,434 +2402,436 @@ func init() { } var fileDescriptor_c23edafa7e7ea072 = []byte{ - // 6828 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5d, 0x6c, 0x5c, 0xd7, - 0x71, 0xb0, 0x97, 0xe4, 0x92, 0xbb, 0xb3, 0xa4, 0x48, 0x1e, 0xfd, 0xad, 0x69, 0x59, 0xab, 0x5c, - 0xc7, 0x86, 0xfc, 0x25, 0x21, 0x63, 0x29, 0xfe, 0x3e, 0x27, 0x8e, 0x7f, 0xb8, 0xa4, 0x48, 0xc9, - 0xfa, 0x21, 0x3d, 0x4b, 0x49, 0x5f, 0x62, 0xc3, 0xe9, 0xe5, 0xee, 0xd9, 0xdd, 0x2b, 0xee, 0xde, - 0xbb, 0xbe, 0xe7, 0xae, 0x68, 0xc6, 0x29, 0xea, 0x04, 0x0d, 0xd2, 0x24, 0x08, 0xd0, 0x22, 0x40, - 0x90, 0x22, 0x28, 0x90, 0x97, 0xa2, 0x2f, 0x7d, 0x6d, 0x5f, 0x0a, 0xe4, 0xa1, 0x40, 0x8b, 0x34, - 0x2f, 0x4d, 0x9f, 0x9a, 0x87, 0x82, 0x89, 0x59, 0xa0, 0x08, 0x90, 0xb6, 0x79, 0x0a, 0x0a, 0x08, - 0x05, 0x5a, 0x9c, 0xdf, 0xfb, 0xb3, 0x77, 0x25, 0xea, 0x2e, 0xa5, 0x06, 0x4d, 0xde, 0xf6, 0xce, - 0xcc, 0x99, 0x39, 0xbf, 0x73, 0x66, 0xe6, 0xcc, 0x39, 0x0b, 0x2b, 0x2d, 0x27, 0x68, 0xf7, 0xb7, - 0x17, 0xeb, 0x5e, 0x77, 0xc9, 0xf6, 0x5b, 0x5e, 0xcf, 0xf7, 0xee, 0x88, 0x1f, 0x4b, 0xbd, 0x9d, - 0xd6, 0x92, 0xdd, 0x73, 0xd8, 0xd2, 0xae, 0xe7, 0xef, 0x34, 0x3b, 0xde, 0xee, 0xd2, 0xdd, 0x17, - 0xec, 0x4e, 0xaf, 0x6d, 0xbf, 0xb0, 0xd4, 0xa2, 0x2e, 0xf5, 0xed, 0x80, 0x36, 0x16, 0x7b, 0xbe, - 0x17, 0x78, 0xe4, 0x62, 0xc8, 0x64, 0x51, 0x33, 0x11, 0x3f, 0x16, 0x7b, 0x3b, 0xad, 0x45, 0xce, - 0x64, 0x51, 0x33, 0x59, 0xd4, 0x4c, 0x16, 0x3e, 0x11, 0x91, 0xdc, 0xf2, 0xb8, 0x40, 0xce, 0x6b, - 0xbb, 0xdf, 0x14, 0x5f, 0xe2, 0x43, 0xfc, 0x92, 0x32, 0x16, 0xac, 0x9d, 0x97, 0xd8, 0xa2, 0xe3, - 0xf1, 0x2a, 0x2d, 0xd5, 0x3d, 0x9f, 0x2e, 0xdd, 0x1d, 0xa8, 0xc7, 0xc2, 0xf3, 0x11, 0x9a, 0x9e, - 0xd7, 0x71, 0xea, 0x7b, 0x4b, 0x77, 0x5f, 0xd8, 0xa6, 0xc1, 0x60, 0x95, 0x17, 0x3e, 0x15, 0x92, - 0x76, 0xed, 0x7a, 0xdb, 0x71, 0xa9, 0xbf, 0x17, 0x36, 0xb9, 0x4b, 0x03, 0x3b, 0x4d, 0xc0, 0xd2, - 0xb0, 0x52, 0x7e, 0xdf, 0x0d, 0x9c, 0x2e, 0x1d, 0x28, 0xf0, 0x7f, 0x1f, 0x54, 0x80, 0xd5, 0xdb, - 0xb4, 0x6b, 0x0f, 0x94, 0xbb, 0x38, 0xac, 0x5c, 0x3f, 0x70, 0x3a, 0x4b, 0x8e, 0x1b, 0xb0, 0xc0, - 0x4f, 0x16, 0xb2, 0x9e, 0x87, 0xc9, 0xe5, 0xae, 0xd7, 0x77, 0x03, 0x52, 0x81, 0xfc, 0x5d, 0xbb, - 0xd3, 0xa7, 0xe5, 0xdc, 0xb9, 0xdc, 0xf9, 0xe9, 0x6a, 0xf1, 0x60, 0xbf, 0x92, 0xbf, 0xc5, 0x01, - 0x28, 0xe1, 0xd6, 0xdf, 0xe7, 0x60, 0x76, 0xd9, 0xaf, 0xb7, 0x9d, 0xbb, 0xb4, 0x16, 0x70, 0x1e, - 0xad, 0x3d, 0xf2, 0x16, 0x8c, 0x07, 0xb6, 0x2f, 0x8a, 0x94, 0x2e, 0xbc, 0xbe, 0x98, 0x61, 0x4c, - 0x17, 0xb7, 0x6c, 0x5f, 0xb3, 0xab, 0x4e, 0x1d, 0xec, 0x57, 0xc6, 0xb7, 0x6c, 0x1f, 0x39, 0x57, - 0xf2, 0x05, 0x98, 0x70, 0x3d, 0x97, 0x96, 0xc7, 0x04, 0xf7, 0xe5, 0x4c, 0xdc, 0x6f, 0x78, 0xae, - 0xa9, 0x6d, 0xb5, 0x70, 0xb0, 0x5f, 0x99, 0xe0, 0x10, 0x14, 0x8c, 0xad, 0x5f, 0xe6, 0xa0, 0xb8, - 0xec, 0xb7, 0xfa, 0x5d, 0xea, 0x06, 0x8c, 0xf8, 0x00, 0x3d, 0xdb, 0xb7, 0xbb, 0x34, 0xa0, 0x3e, - 0x2b, 0xe7, 0xce, 0x8d, 0x9f, 0x2f, 0x5d, 0x78, 0x35, 0x93, 0xd0, 0x4d, 0xcd, 0xa6, 0x4a, 0x7e, - 0xb8, 0x5f, 0x79, 0xe2, 0x60, 0xbf, 0x02, 0x06, 0xc4, 0x30, 0x22, 0x85, 0xb8, 0x50, 0xb4, 0xfd, - 0xc0, 0x69, 0xda, 0xf5, 0x80, 0x95, 0xc7, 0x84, 0xc8, 0x57, 0x32, 0x89, 0x5c, 0x56, 0x5c, 0xaa, - 0xf3, 0x4a, 0x62, 0x51, 0x43, 0x18, 0x86, 0x22, 0xac, 0x5f, 0x8c, 0x43, 0x41, 0x23, 0xc8, 0x39, - 0x98, 0x70, 0xed, 0xae, 0x1c, 0xf0, 0x62, 0x75, 0x5a, 0x15, 0x9c, 0xb8, 0x61, 0x77, 0x79, 0x07, - 0xd9, 0x5d, 0xca, 0x29, 0x7a, 0x76, 0xd0, 0x16, 0x23, 0x10, 0xa1, 0xd8, 0xb4, 0x83, 0x36, 0x0a, - 0x0c, 0x39, 0x03, 0x13, 0x5d, 0xaf, 0x41, 0xcb, 0xe3, 0xe7, 0x72, 0xe7, 0xf3, 0xb2, 0x83, 0xaf, - 0x7b, 0x0d, 0x8a, 0x02, 0xca, 0xcb, 0x37, 0x7d, 0xaf, 0x5b, 0x9e, 0x88, 0x97, 0x5f, 0xf3, 0xbd, - 0x2e, 0x0a, 0x0c, 0xf9, 0x66, 0x0e, 0xe6, 0x74, 0xf5, 0xae, 0x79, 0x75, 0x3b, 0x70, 0x3c, 0xb7, - 0x9c, 0x17, 0x03, 0x7e, 0x69, 0xa4, 0x8e, 0xd0, 0xcc, 0xaa, 0x65, 0x25, 0x75, 0x2e, 0x89, 0xc1, - 0x01, 0xc1, 0xe4, 0x02, 0x40, 0xab, 0xe3, 0x6d, 0xdb, 0x1d, 0xde, 0x07, 0xe5, 0x49, 0x51, 0x6b, - 0x33, 0x84, 0xeb, 0x06, 0x83, 0x11, 0x2a, 0xb2, 0x03, 0x53, 0xb6, 0x5c, 0x15, 0xe5, 0x29, 0x51, - 0xef, 0xd5, 0x8c, 0xf5, 0x8e, 0xad, 0xac, 0x6a, 0xe9, 0x60, 0xbf, 0x32, 0xa5, 0x80, 0xa8, 0x25, - 0x90, 0x8f, 0x43, 0xc1, 0xeb, 0xf1, 0xaa, 0xda, 0x9d, 0x72, 0xe1, 0x5c, 0xee, 0x7c, 0xa1, 0x3a, - 0xa7, 0xaa, 0x57, 0xd8, 0x50, 0x70, 0x34, 0x14, 0xd6, 0x3f, 0x4c, 0xc2, 0x40, 0xab, 0xc9, 0x0b, - 0x50, 0x52, 0xdc, 0xae, 0x79, 0x2d, 0x26, 0x06, 0xbf, 0x50, 0x9d, 0x3d, 0xd8, 0xaf, 0x94, 0x96, - 0x43, 0x30, 0x46, 0x69, 0xc8, 0x6d, 0x18, 0x63, 0x17, 0xd5, 0x32, 0x7c, 0x2d, 0x53, 0xeb, 0x6a, - 0x17, 0xcd, 0x04, 0x9d, 0x3c, 0xd8, 0xaf, 0x8c, 0xd5, 0x2e, 0xe2, 0x18, 0xbb, 0xc8, 0xd5, 0x47, - 0xcb, 0x09, 0xc4, 0xe4, 0xc9, 0xaa, 0x3e, 0xd6, 0x9d, 0xc0, 0xb0, 0x16, 0xea, 0x63, 0xdd, 0x09, - 0x90, 0x73, 0xe5, 0xea, 0xa3, 0x1d, 0x04, 0x3d, 0x31, 0xf9, 0xb2, 0xaa, 0x8f, 0xcb, 0x5b, 0x5b, - 0x9b, 0x86, 0xbd, 0x98, 0xdd, 0x1c, 0x82, 0x82, 0x31, 0x79, 0x9f, 0xf7, 0xa4, 0xc4, 0x79, 0xfe, - 0x9e, 0x9a, 0xb5, 0x97, 0x47, 0x9a, 0xb5, 0x9e, 0xbf, 0x67, 0xc4, 0xa9, 0x31, 0x31, 0x08, 0x8c, - 0x4a, 0x13, 0xad, 0x6b, 0x34, 0x99, 0x98, 0xa4, 0x99, 0x5b, 0xb7, 0xba, 0x56, 0x4b, 0xb4, 0x6e, - 0x75, 0xad, 0x86, 0x82, 0x31, 0x1f, 0x1b, 0xdf, 0xde, 0x55, 0x73, 0x3a, 0xdb, 0xd8, 0xa0, 0xbd, - 0x1b, 0x1f, 0x1b, 0xb4, 0x77, 0x91, 0x73, 0xe5, 0xcc, 0x3d, 0xc6, 0xc4, 0x14, 0xce, 0xca, 0x7c, - 0xa3, 0x56, 0x8b, 0x33, 0xdf, 0xa8, 0xd5, 0x90, 0x73, 0x15, 0xb3, 0xaa, 0xce, 0xca, 0xc5, 0x51, - 0x66, 0xd5, 0x4a, 0x82, 0xf9, 0xfa, 0x4a, 0x0d, 0x39, 0x57, 0xab, 0x05, 0x27, 0x35, 0x06, 0x69, - 0xcf, 0x63, 0x8e, 0x18, 0x1a, 0xda, 0x24, 0x4b, 0x50, 0xac, 0x7b, 0x6e, 0xd3, 0x69, 0x5d, 0xb7, - 0x7b, 0x4a, 0xa5, 0x1a, 0x5d, 0xbc, 0xa2, 0x11, 0x18, 0xd2, 0x90, 0xa7, 0x61, 0x7c, 0x87, 0xee, - 0x29, 0xdd, 0x5a, 0x52, 0xa4, 0xe3, 0x57, 0xe9, 0x1e, 0x72, 0xb8, 0xf5, 0x83, 0x1c, 0x1c, 0x4f, - 0x99, 0x16, 0xbc, 0x58, 0xdf, 0xef, 0x28, 0x09, 0xa6, 0xd8, 0x4d, 0xbc, 0x86, 0x1c, 0x4e, 0xbe, - 0x96, 0x83, 0xd9, 0xc8, 0x3c, 0x59, 0xee, 0x2b, 0xf5, 0x9d, 0x5d, 0x2f, 0xc5, 0x78, 0x55, 0x4f, - 0x2b, 0x89, 0xb3, 0x09, 0x04, 0x26, 0xa5, 0x5a, 0xff, 0x28, 0xec, 0x85, 0x18, 0x8c, 0xd8, 0x70, - 0xac, 0xcf, 0xa8, 0xcf, 0x37, 0x97, 0x1a, 0xad, 0xfb, 0x34, 0x50, 0xa6, 0xc3, 0xb3, 0x8b, 0xd2, - 0x78, 0xe1, 0xb5, 0x58, 0xe4, 0xa6, 0xda, 0xe2, 0xdd, 0x17, 0x16, 0x25, 0xc5, 0x55, 0xba, 0x57, - 0xa3, 0x1d, 0xca, 0x79, 0x54, 0xc9, 0xc1, 0x7e, 0xe5, 0xd8, 0xcd, 0x18, 0x03, 0x4c, 0x30, 0xe4, - 0x22, 0x7a, 0x36, 0x63, 0xbb, 0x9e, 0xdf, 0x50, 0x22, 0xc6, 0x1e, 0x5a, 0xc4, 0x66, 0x8c, 0x01, - 0x26, 0x18, 0x5a, 0xdf, 0xc9, 0xc1, 0x54, 0xd5, 0xae, 0xef, 0x78, 0xcd, 0x26, 0xd7, 0xc8, 0x8d, - 0xbe, 0x2f, 0xf7, 0x2d, 0x39, 0x26, 0x46, 0x23, 0xaf, 0x2a, 0x38, 0x1a, 0x0a, 0xf2, 0x1c, 0x4c, - 0xca, 0xee, 0x10, 0x95, 0xca, 0x57, 0x8f, 0x29, 0xda, 0xc9, 0x35, 0x01, 0x45, 0x85, 0x25, 0x2f, - 0x42, 0xa9, 0x6b, 0xbf, 0xa7, 0x19, 0x08, 0x05, 0x59, 0xac, 0x1e, 0x57, 0xc4, 0xa5, 0xeb, 0x21, - 0x0a, 0xa3, 0x74, 0xd6, 0x3b, 0x90, 0x5f, 0xb1, 0xeb, 0x6d, 0x4a, 0x6e, 0x26, 0x27, 0x63, 0xe9, - 0xc2, 0xf9, 0xb4, 0xf6, 0x9b, 0x89, 0x19, 0xed, 0x82, 0x99, 0x61, 0x53, 0xd6, 0xfa, 0x79, 0x0e, - 0x4e, 0xaf, 0x74, 0xfa, 0x2c, 0xa0, 0xfe, 0x6d, 0x35, 0x53, 0xb6, 0x68, 0xb7, 0xd7, 0xb1, 0x03, - 0x4a, 0x7e, 0x07, 0x0a, 0xdc, 0x04, 0x6e, 0xd8, 0x81, 0xad, 0x24, 0x7e, 0x32, 0x22, 0xd1, 0x58, - 0xa4, 0xe1, 0x5c, 0xe3, 0xd4, 0xbc, 0x0e, 0x1b, 0xdb, 0x77, 0x68, 0x3d, 0xb8, 0x4e, 0x03, 0x3b, - 0xdc, 0x6b, 0x43, 0x18, 0x1a, 0xae, 0x64, 0x07, 0x26, 0x58, 0x8f, 0xd6, 0xd5, 0x78, 0x5e, 0xc9, - 0x34, 0x9d, 0x93, 0xd5, 0xae, 0xf5, 0x68, 0x3d, 0x34, 0x4c, 0xf8, 0x17, 0x0a, 0x21, 0xd6, 0xbf, - 0xe7, 0xe0, 0xa9, 0x21, 0x4d, 0xbd, 0xe6, 0xb0, 0x80, 0xbc, 0x3d, 0xd0, 0xdc, 0xc5, 0xc3, 0x35, - 0x97, 0x97, 0x16, 0x8d, 0x35, 0xf3, 0x44, 0x43, 0x22, 0x4d, 0x7d, 0x17, 0xf2, 0x4e, 0x40, 0xbb, - 0xda, 0x26, 0xbc, 0x96, 0xa9, 0xad, 0x43, 0xaa, 0x5f, 0x9d, 0x51, 0x82, 0xf3, 0x57, 0xb8, 0x08, - 0x94, 0x92, 0xac, 0xbf, 0xcb, 0x01, 0x1f, 0xf4, 0x86, 0xa3, 0xac, 0x84, 0x89, 0x60, 0xaf, 0xa7, - 0x6d, 0xc3, 0xa7, 0x75, 0x07, 0x6d, 0xed, 0xf5, 0xe8, 0xbd, 0xfd, 0xca, 0x8c, 0x21, 0xe4, 0x00, - 0x14, 0xa4, 0xe4, 0x1d, 0x98, 0x64, 0x81, 0x1d, 0xf4, 0x99, 0x52, 0x69, 0x6b, 0x7a, 0x6e, 0xd7, - 0x04, 0xf4, 0xde, 0x7e, 0xe5, 0x50, 0x0e, 0xd4, 0xa2, 0xe1, 0x2d, 0xcb, 0xa1, 0xe2, 0x4a, 0x9e, - 0x87, 0xa9, 0x2e, 0x65, 0xcc, 0x6e, 0x51, 0xb5, 0x1e, 0x66, 0x95, 0x80, 0xa9, 0xeb, 0x12, 0x8c, - 0x1a, 0x6f, 0x7d, 0x0e, 0x60, 0xc5, 0x73, 0x03, 0xc7, 0xed, 0xd3, 0x0d, 0x97, 0x3c, 0x03, 0x79, - 0xea, 0xfb, 0x9e, 0xaf, 0x6c, 0x1d, 0xd3, 0xfc, 0x4b, 0x1c, 0x88, 0x12, 0x27, 0x57, 0xa6, 0xd3, - 0xa1, 0x0d, 0x51, 0xfb, 0x42, 0x74, 0x65, 0x72, 0x28, 0x2a, 0xac, 0xb5, 0x08, 0x53, 0x2b, 0xdc, - 0x5f, 0xa2, 0x3e, 0xe7, 0x1b, 0x7a, 0x4c, 0xc5, 0x90, 0x6f, 0xcc, 0x6b, 0xfa, 0xd1, 0x18, 0x4c, - 0xaf, 0xf8, 0x9e, 0xab, 0x47, 0xe1, 0x31, 0xac, 0x93, 0x56, 0x6c, 0x9d, 0x64, 0x33, 0xa3, 0xa3, - 0x55, 0x1e, 0xb6, 0x46, 0x88, 0x67, 0x46, 0x5c, 0x5a, 0x70, 0xeb, 0xa3, 0x8b, 0x12, 0xec, 0xc2, - 0xce, 0x8f, 0x4f, 0x01, 0xeb, 0x27, 0x39, 0x98, 0x8b, 0x92, 0x3f, 0x86, 0x95, 0xd8, 0x8c, 0xaf, - 0xc4, 0xe5, 0x91, 0x9b, 0x38, 0x64, 0xf9, 0xfd, 0x67, 0x3e, 0xde, 0x34, 0xde, 0xcd, 0xdc, 0x3b, - 0x9a, 0xde, 0x8d, 0x00, 0x54, 0xfb, 0x96, 0x47, 0x52, 0x7d, 0x62, 0x38, 0x3f, 0xaa, 0x2a, 0x31, - 0x1d, 0x85, 0xde, 0x4b, 0x7c, 0x63, 0x4c, 0x38, 0xdf, 0xea, 0x58, 0xbd, 0x4d, 0x1b, 0xfd, 0x0e, - 0x55, 0x4b, 0xdc, 0x74, 0x5c, 0x4d, 0xc1, 0xd1, 0x50, 0x90, 0xb7, 0x61, 0xbe, 0xee, 0xb9, 0xf5, - 0xbe, 0xef, 0x53, 0xb7, 0xbe, 0xb7, 0x29, 0x42, 0x2b, 0x6a, 0xe1, 0x2e, 0xaa, 0x62, 0xf3, 0x2b, - 0x49, 0x82, 0x7b, 0x69, 0x40, 0x1c, 0x64, 0xc4, 0x95, 0x01, 0xeb, 0xb3, 0x1e, 0x75, 0x1b, 0xc2, - 0xbe, 0x2f, 0x84, 0xca, 0xa0, 0x26, 0xc1, 0xa8, 0xf1, 0xe4, 0x26, 0x9c, 0x66, 0x01, 0x37, 0x4e, - 0xdc, 0xd6, 0x2a, 0xb5, 0x1b, 0x1d, 0xc7, 0xe5, 0xa6, 0x82, 0xe7, 0x36, 0x98, 0x30, 0xd9, 0xc7, - 0xab, 0x4f, 0x1d, 0xec, 0x57, 0x4e, 0xd7, 0xd2, 0x49, 0x70, 0x58, 0x59, 0xf2, 0x0e, 0x2c, 0xb0, - 0x7e, 0xbd, 0x4e, 0x19, 0x6b, 0xf6, 0x3b, 0x6f, 0x78, 0xdb, 0xec, 0xb2, 0xc3, 0xb8, 0x9d, 0x73, - 0xcd, 0xe9, 0x3a, 0x81, 0x30, 0xcb, 0xf3, 0xd5, 0xb3, 0x07, 0xfb, 0x95, 0x85, 0xda, 0x50, 0x2a, - 0xbc, 0x0f, 0x07, 0x82, 0x70, 0x4a, 0xaa, 0x9c, 0x01, 0xde, 0x53, 0x82, 0xf7, 0xc2, 0xc1, 0x7e, - 0xe5, 0xd4, 0x5a, 0x2a, 0x05, 0x0e, 0x29, 0xc9, 0x47, 0x30, 0x70, 0xba, 0xf4, 0x8b, 0x9e, 0x4b, - 0x85, 0xed, 0x1d, 0x19, 0xc1, 0x2d, 0x05, 0x47, 0x43, 0x41, 0xee, 0x84, 0x93, 0x8f, 0x2f, 0x0a, - 0x65, 0x50, 0x3f, 0xbc, 0xb6, 0x3a, 0xc1, 0xbd, 0xef, 0xdb, 0x11, 0x4e, 0x7c, 0x61, 0x61, 0x8c, - 0xb7, 0xf5, 0xb7, 0x63, 0x40, 0x06, 0x15, 0x01, 0xb9, 0x0a, 0x93, 0x76, 0x3d, 0xe0, 0xbe, 0xb5, - 0x8c, 0xc7, 0x3c, 0x93, 0x66, 0xc4, 0x48, 0x51, 0x48, 0x9b, 0x94, 0xcf, 0x10, 0x1a, 0x6a, 0x8f, - 0x65, 0x51, 0x14, 0x15, 0x0b, 0xe2, 0xc1, 0x7c, 0xc7, 0x66, 0x81, 0x9e, 0xab, 0x0d, 0xde, 0x64, - 0xa5, 0x24, 0xff, 0xcf, 0xe1, 0x1a, 0xc5, 0x4b, 0x54, 0x4f, 0xf2, 0x99, 0x7b, 0x2d, 0xc9, 0x08, - 0x07, 0x79, 0x13, 0x1f, 0xa0, 0xae, 0x37, 0x33, 0xae, 0x23, 0xb3, 0x47, 0x94, 0xcc, 0x9e, 0x18, - 0xaa, 0x7e, 0x03, 0x62, 0x18, 0x91, 0x62, 0xfd, 0xdb, 0x24, 0x4c, 0xad, 0x2e, 0xaf, 0x6f, 0xd9, - 0x6c, 0xe7, 0x10, 0x01, 0x1e, 0x3e, 0x21, 0x94, 0x59, 0x90, 0x5c, 0xd2, 0xda, 0x5c, 0x40, 0x43, - 0x41, 0x3c, 0x28, 0xda, 0x3a, 0x5c, 0xa6, 0x54, 0xfe, 0xab, 0x19, 0x9d, 0x0a, 0xc5, 0x25, 0x1a, - 0xae, 0x52, 0x20, 0x0c, 0x65, 0x10, 0x06, 0x25, 0x2d, 0x1c, 0x69, 0x53, 0x79, 0xf2, 0x19, 0xc3, - 0x8c, 0x21, 0x1f, 0xe9, 0x59, 0x47, 0x00, 0x18, 0x95, 0x42, 0x3e, 0x05, 0xd3, 0x0d, 0xca, 0x35, - 0x07, 0x75, 0xeb, 0x0e, 0xe5, 0x4a, 0x62, 0x9c, 0xf7, 0x0b, 0x57, 0x96, 0xab, 0x11, 0x38, 0xc6, - 0xa8, 0xc8, 0x1d, 0x28, 0xee, 0x3a, 0x41, 0x5b, 0xe8, 0xf4, 0xf2, 0xa4, 0x18, 0xea, 0x4f, 0x67, - 0xaa, 0x28, 0xe7, 0x10, 0x76, 0xcb, 0x6d, 0xcd, 0x13, 0x43, 0xf6, 0xdc, 0xd5, 0xe4, 0x1f, 0x22, - 0xa6, 0x28, 0xb4, 0x41, 0x31, 0x5e, 0x40, 0x20, 0x30, 0xa4, 0x21, 0x0c, 0xa6, 0xf9, 0x47, 0x8d, - 0xbe, 0xdb, 0xe7, 0x2b, 0x44, 0xf9, 0xdd, 0xd9, 0x22, 0x8d, 0x9a, 0x89, 0xec, 0x91, 0xdb, 0x11, - 0xb6, 0x18, 0x13, 0xc2, 0x67, 0xdf, 0x6e, 0x9b, 0xba, 0x42, 0x6d, 0x44, 0x66, 0xdf, 0xed, 0x36, - 0x75, 0x51, 0x60, 0x88, 0x27, 0xd6, 0x87, 0x32, 0xd3, 0xca, 0x30, 0x42, 0x7c, 0x29, 0xb4, 0xf6, - 0xaa, 0xc7, 0xd4, 0xe2, 0x50, 0xdf, 0x18, 0x11, 0xc1, 0x8d, 0x3c, 0xcf, 0xbd, 0xf4, 0x9e, 0x13, - 0x94, 0x4b, 0xa2, 0x52, 0x46, 0x53, 0x6c, 0x08, 0x28, 0x2a, 0x2c, 0xdf, 0x5d, 0xe4, 0xe0, 0xb2, - 0xf2, 0x74, 0xdc, 0xd4, 0x94, 0x33, 0x80, 0xa1, 0xc6, 0x5b, 0x7f, 0x9d, 0x83, 0x12, 0x5f, 0x6f, - 0x7a, 0x8d, 0x3c, 0x07, 0x93, 0x81, 0xed, 0xb7, 0x94, 0x67, 0x1b, 0x11, 0xb1, 0x25, 0xa0, 0xa8, - 0xb0, 0xc4, 0x86, 0x7c, 0x60, 0xb3, 0x1d, 0x6d, 0x57, 0x7c, 0x36, 0x53, 0xb3, 0xd5, 0x42, 0x0f, - 0x4d, 0x0a, 0xfe, 0xc5, 0x50, 0x72, 0x26, 0xe7, 0xa1, 0xc0, 0xf7, 0x81, 0x35, 0x9b, 0xc9, 0x10, - 0x5b, 0xa1, 0x3a, 0xcd, 0x17, 0xf6, 0x9a, 0x82, 0xa1, 0xc1, 0x5a, 0x6f, 0xc3, 0xb1, 0x4b, 0xef, - 0xd1, 0x7a, 0x3f, 0xf0, 0x7c, 0xe9, 0xf7, 0x91, 0x37, 0x80, 0x30, 0xea, 0xdf, 0x75, 0xea, 0x74, - 0xb9, 0x5e, 0xe7, 0xf6, 0xee, 0x8d, 0x50, 0x91, 0x2c, 0x28, 0x69, 0xa4, 0x36, 0x40, 0x81, 0x29, - 0xa5, 0xac, 0x3f, 0xc9, 0x41, 0x29, 0x12, 0x50, 0xe1, 0x6a, 0xa4, 0xb5, 0x52, 0xab, 0xf6, 0xeb, - 0x3b, 0xc6, 0xff, 0x7f, 0x35, 0x6b, 0x94, 0x46, 0x72, 0x09, 0xa7, 0xbf, 0x01, 0x61, 0x28, 0xe3, - 0x41, 0x91, 0x96, 0xbf, 0xcc, 0x41, 0x58, 0x8e, 0x0f, 0xe0, 0x76, 0x58, 0xb5, 0xc8, 0x00, 0x2a, - 0xbe, 0x0a, 0x4b, 0x3e, 0xc8, 0xc1, 0xe9, 0x78, 0x63, 0x85, 0x0f, 0xfd, 0xf0, 0x11, 0x87, 0x8a, - 0x12, 0x70, 0xba, 0x96, 0xce, 0x0d, 0x87, 0x89, 0xb1, 0x6e, 0x41, 0x7e, 0xdd, 0xee, 0xb7, 0xe8, - 0xa1, 0x3c, 0x11, 0x3e, 0x1d, 0x7c, 0x6a, 0x77, 0x02, 0xbd, 0xeb, 0xa9, 0xe9, 0x80, 0x0a, 0x86, - 0x06, 0x6b, 0xfd, 0xf9, 0x04, 0x94, 0x22, 0x71, 0x55, 0xbe, 0x92, 0x7d, 0xda, 0xf3, 0x92, 0xfb, - 0x08, 0xd2, 0x9e, 0x87, 0x02, 0xc3, 0xf7, 0x11, 0x9f, 0xde, 0x75, 0x98, 0xe3, 0xb9, 0xc9, 0x7d, - 0x04, 0x15, 0x1c, 0x0d, 0x05, 0xa9, 0x40, 0xbe, 0x41, 0x7b, 0x41, 0x5b, 0xcc, 0xca, 0x09, 0x79, - 0xd4, 0xb4, 0xca, 0x01, 0x28, 0xe1, 0x9c, 0xa0, 0x49, 0x83, 0x7a, 0xbb, 0x3c, 0x21, 0x74, 0xaf, - 0x20, 0x58, 0xe3, 0x00, 0x94, 0xf0, 0x94, 0x38, 0x52, 0xfe, 0xd1, 0xc7, 0x91, 0x26, 0x8f, 0x38, - 0x8e, 0x44, 0x7a, 0x70, 0x9c, 0xb1, 0xf6, 0xa6, 0xef, 0xdc, 0xb5, 0x03, 0x1a, 0xce, 0x9e, 0xa9, - 0x87, 0x91, 0x73, 0xfa, 0x60, 0xbf, 0x72, 0xbc, 0x56, 0xbb, 0x9c, 0xe4, 0x82, 0x69, 0xac, 0x49, - 0x0d, 0x4e, 0x3a, 0x2e, 0xa3, 0xf5, 0xbe, 0x4f, 0xaf, 0xb4, 0x5c, 0xcf, 0xa7, 0x97, 0x3d, 0xc6, - 0xd9, 0xa9, 0xc3, 0x04, 0xed, 0xe7, 0x9f, 0xbc, 0x92, 0x46, 0x84, 0xe9, 0x65, 0xad, 0x1f, 0xe5, - 0x60, 0x3a, 0x1a, 0x4a, 0x26, 0x0c, 0xa0, 0xbd, 0xba, 0x56, 0x93, 0xaa, 0x44, 0xad, 0xf0, 0xd7, - 0x32, 0x47, 0xa8, 0x25, 0x9b, 0xd0, 0xf0, 0x09, 0x61, 0x18, 0x11, 0x73, 0x88, 0xb3, 0xaa, 0x67, - 0x20, 0xdf, 0xf4, 0xfc, 0x3a, 0x55, 0xca, 0xd0, 0xac, 0x92, 0x35, 0x0e, 0x44, 0x89, 0xb3, 0x7e, - 0x9e, 0x83, 0x88, 0x04, 0xf2, 0x7b, 0x30, 0xc3, 0x65, 0x5c, 0xf5, 0xb7, 0x63, 0xad, 0xa9, 0x66, - 0x6e, 0x8d, 0xe1, 0x54, 0x3d, 0xa9, 0xe4, 0xcf, 0xc4, 0xc0, 0x18, 0x97, 0x47, 0x3e, 0x06, 0x45, - 0xbb, 0xd1, 0xf0, 0x29, 0x63, 0x54, 0xee, 0x15, 0x45, 0x19, 0x9f, 0x5b, 0xd6, 0x40, 0x0c, 0xf1, - 0x7c, 0x19, 0xb6, 0x1b, 0x4d, 0xc6, 0x67, 0xb6, 0x72, 0xb5, 0xcc, 0x32, 0xe4, 0x42, 0x38, 0x1c, - 0x0d, 0x85, 0xf5, 0xad, 0x09, 0x88, 0xcb, 0x26, 0x0d, 0x98, 0xdd, 0xf1, 0xb7, 0x57, 0x44, 0x0c, - 0x31, 0x4b, 0x7c, 0xf6, 0xf8, 0xc1, 0x7e, 0x65, 0xf6, 0x6a, 0x9c, 0x03, 0x26, 0x59, 0x2a, 0x29, - 0x57, 0xe9, 0x5e, 0x60, 0x6f, 0x67, 0x51, 0x98, 0x5a, 0x4a, 0x94, 0x03, 0x26, 0x59, 0x92, 0x17, - 0xa1, 0xb4, 0xe3, 0x6f, 0xeb, 0x45, 0x9e, 0x0c, 0xa1, 0x5e, 0x0d, 0x51, 0x18, 0xa5, 0xe3, 0x5d, - 0xb8, 0xe3, 0x6f, 0x73, 0xa5, 0xa8, 0x8f, 0x2d, 0x4d, 0x17, 0x5e, 0x55, 0x70, 0x34, 0x14, 0xa4, - 0x07, 0x64, 0x47, 0xf7, 0x9e, 0x89, 0x98, 0x2a, 0x5d, 0x74, 0xf8, 0x80, 0xeb, 0x29, 0xbe, 0x99, - 0x5e, 0x1d, 0xe0, 0x83, 0x29, 0xbc, 0xc9, 0xe7, 0xe0, 0xf4, 0x8e, 0xbf, 0xad, 0xb6, 0x8a, 0x4d, - 0xdf, 0x71, 0xeb, 0x4e, 0x2f, 0x76, 0x5e, 0x69, 0xb6, 0x93, 0xab, 0xe9, 0x64, 0x38, 0xac, 0xbc, - 0xf5, 0x09, 0x98, 0x8e, 0x9e, 0x77, 0x3d, 0xe0, 0xa4, 0xc1, 0xfa, 0x6e, 0x0e, 0x8a, 0xc2, 0xbb, - 0x6c, 0x71, 0x13, 0xd3, 0x6c, 0x41, 0xe3, 0xf7, 0xd9, 0x82, 0x9a, 0x30, 0x25, 0x77, 0x4f, 0x26, - 0x34, 0x7b, 0xe9, 0xc2, 0xcb, 0xd9, 0xdc, 0x07, 0x91, 0xb1, 0x10, 0x1a, 0x65, 0x72, 0x67, 0x66, - 0xa8, 0x99, 0x5b, 0x1f, 0x83, 0xd2, 0x65, 0xaf, 0xd3, 0xa0, 0x3e, 0x6f, 0x17, 0x23, 0x67, 0x8c, - 0x1f, 0xc4, 0x97, 0x4f, 0x21, 0xee, 0x03, 0x59, 0xff, 0x9a, 0x83, 0xc9, 0x2b, 0x6e, 0xaf, 0xff, - 0x1b, 0x92, 0x02, 0x70, 0x1d, 0x26, 0xb8, 0x17, 0x41, 0x5e, 0x8e, 0xe7, 0x7b, 0x3c, 0x6b, 0x06, - 0xeb, 0xde, 0x7e, 0xa5, 0x4c, 0xdd, 0xba, 0xd7, 0x70, 0xdc, 0xd6, 0xd2, 0x1d, 0xe6, 0xb9, 0x8b, - 0x68, 0xef, 0xea, 0x10, 0xab, 0x2c, 0xf3, 0x99, 0xc2, 0x77, 0xbf, 0x5f, 0x79, 0xe2, 0x83, 0x7f, - 0x3a, 0xf7, 0x84, 0xd5, 0x81, 0x89, 0x6b, 0x8e, 0x7b, 0x18, 0x5f, 0xf3, 0x19, 0xc8, 0xb3, 0xba, - 0xd7, 0xd3, 0x8e, 0xa6, 0x99, 0x21, 0x35, 0x0e, 0x44, 0x89, 0xd3, 0x73, 0x6e, 0x7c, 0xc8, 0x9c, - 0xfb, 0x4a, 0x0e, 0xe6, 0xaf, 0xd3, 0xae, 0xe7, 0x7c, 0xd1, 0x0e, 0x23, 0xc4, 0xbc, 0x50, 0xdb, - 0x09, 0x54, 0x78, 0xd7, 0x14, 0xba, 0xec, 0x04, 0xc8, 0xe1, 0x0f, 0x30, 0xff, 0xc4, 0xc1, 0x1d, - 0xd7, 0x4e, 0x37, 0x42, 0x35, 0x11, 0x1e, 0xdc, 0x69, 0x04, 0x86, 0x34, 0xd6, 0x57, 0x73, 0x30, - 0x25, 0x2b, 0x41, 0x35, 0xef, 0xdc, 0x10, 0xde, 0x6f, 0x41, 0x5e, 0x94, 0x53, 0x0a, 0xee, 0x33, - 0xd9, 0x9c, 0x1b, 0xce, 0x41, 0x1a, 0x41, 0xe2, 0x27, 0x4a, 0x9e, 0xd6, 0x07, 0xe3, 0x50, 0xd0, - 0xe1, 0x14, 0xf2, 0xd5, 0x1c, 0x94, 0x6c, 0xd7, 0xf5, 0x02, 0x5b, 0x46, 0x1b, 0xe4, 0xe4, 0xbd, - 0x91, 0x49, 0xa0, 0x66, 0xba, 0xb8, 0x1c, 0x32, 0xbc, 0xe4, 0x06, 0xfe, 0x5e, 0xa8, 0x3f, 0x23, - 0x18, 0x8c, 0xca, 0x25, 0xef, 0xc2, 0x64, 0xc7, 0xde, 0xa6, 0x1d, 0x3d, 0x97, 0xaf, 0x8c, 0x56, - 0x83, 0x6b, 0x82, 0x97, 0x14, 0x6e, 0x2c, 0x71, 0x09, 0x44, 0x25, 0x68, 0xe1, 0x55, 0x98, 0x4b, - 0x56, 0x94, 0xcc, 0x45, 0xc6, 0x45, 0x0e, 0xc5, 0x09, 0x3d, 0xdf, 0xc5, 0x3c, 0xd0, 0x13, 0x79, - 0xec, 0xa5, 0xdc, 0xc2, 0xa7, 0xa1, 0x14, 0x11, 0xf3, 0x30, 0x45, 0xad, 0x37, 0xa1, 0x74, 0x9d, - 0x06, 0xbe, 0x53, 0x17, 0x0c, 0x1e, 0x34, 0x1b, 0x9e, 0x89, 0xf1, 0x19, 0x72, 0x60, 0xf0, 0x45, - 0x3e, 0xb9, 0x38, 0x4b, 0xc6, 0xfd, 0xe3, 0x9e, 0xef, 0x75, 0x69, 0xd0, 0xa6, 0x7d, 0x3d, 0xa2, - 0xd9, 0xec, 0xa8, 0x4d, 0xc3, 0x46, 0xfa, 0xc7, 0xe1, 0x37, 0x46, 0x44, 0x58, 0xbf, 0x9a, 0x01, - 0xb8, 0xe1, 0x35, 0xa8, 0x5a, 0x57, 0x0b, 0x30, 0xe6, 0x34, 0x54, 0x6b, 0x40, 0x55, 0x76, 0xec, - 0xca, 0x2a, 0x8e, 0x39, 0x0d, 0xb3, 0xde, 0xc7, 0x86, 0xae, 0xf7, 0x17, 0xa1, 0xd4, 0x70, 0x58, - 0xaf, 0x63, 0xef, 0xdd, 0x48, 0xd9, 0x80, 0x57, 0x43, 0x14, 0x46, 0xe9, 0xc8, 0xc7, 0xd5, 0xc9, - 0x93, 0xdc, 0x7c, 0xcb, 0x89, 0x93, 0xa7, 0x02, 0xaf, 0x5e, 0xe4, 0xd0, 0xe9, 0x25, 0x98, 0xd6, - 0xb1, 0x1b, 0x21, 0x25, 0x2f, 0x4a, 0x9d, 0xd0, 0xd1, 0xed, 0xad, 0x08, 0x0e, 0x63, 0x94, 0xc9, - 0xd8, 0xd2, 0xe4, 0x63, 0x89, 0x2d, 0xad, 0xc2, 0x1c, 0x0b, 0x3c, 0x9f, 0x36, 0x34, 0xc5, 0x95, - 0xd5, 0x32, 0x89, 0x35, 0x74, 0xae, 0x96, 0xc0, 0xe3, 0x40, 0x09, 0xb2, 0x09, 0x27, 0x76, 0x13, - 0x87, 0x7a, 0xa2, 0xf1, 0xc7, 0x05, 0xa7, 0x33, 0x8a, 0xd3, 0x89, 0xdb, 0x29, 0x34, 0x98, 0x5a, - 0x92, 0xbc, 0x0c, 0x33, 0xba, 0x9a, 0x42, 0x1d, 0x97, 0x4f, 0x08, 0x56, 0xc6, 0x44, 0xdd, 0x8a, - 0x22, 0x31, 0x4e, 0x4b, 0x3e, 0x09, 0xf9, 0x5e, 0xdb, 0x66, 0x54, 0x85, 0xa2, 0x74, 0x78, 0x20, - 0xbf, 0xc9, 0x81, 0xf7, 0xf6, 0x2b, 0x45, 0x3e, 0x66, 0xe2, 0x03, 0x25, 0x21, 0xb9, 0x00, 0xb0, - 0xed, 0xf5, 0xdd, 0x86, 0xed, 0xef, 0x5d, 0x59, 0x55, 0x91, 0x68, 0xb3, 0x4f, 0x56, 0x0d, 0x06, - 0x23, 0x54, 0xd1, 0xe3, 0xbf, 0xe2, 0xfd, 0x8f, 0xff, 0xc8, 0x5b, 0x50, 0x14, 0x51, 0x7b, 0xda, - 0x58, 0x0e, 0x54, 0x58, 0xe9, 0x61, 0x02, 0xbc, 0x46, 0xfb, 0xd7, 0x34, 0x13, 0x0c, 0xf9, 0x91, - 0x77, 0x00, 0x9a, 0x8e, 0xeb, 0xb0, 0xb6, 0xe0, 0x5e, 0x7a, 0x68, 0xee, 0xa6, 0x9d, 0x6b, 0x86, - 0x0b, 0x46, 0x38, 0x92, 0x5f, 0xe4, 0x60, 0xde, 0xa7, 0xcc, 0xeb, 0xfb, 0x75, 0xca, 0x4c, 0x06, - 0xc0, 0x49, 0xb1, 0xf8, 0x6f, 0x65, 0xcc, 0x81, 0xd4, 0x2b, 0x7a, 0x11, 0x93, 0x8c, 0xa5, 0x66, - 0xa5, 0xfa, 0x40, 0x66, 0x00, 0x7f, 0x2f, 0x0d, 0xf8, 0x95, 0x9f, 0x56, 0x2a, 0x83, 0xa9, 0xb5, - 0x86, 0x39, 0x9f, 0x51, 0xdf, 0xf8, 0x69, 0x65, 0x4e, 0x7f, 0x9b, 0x5c, 0x85, 0xc1, 0x76, 0x71, - 0x95, 0xd8, 0xf3, 0x1a, 0x57, 0x36, 0x55, 0x9c, 0xcd, 0xa8, 0xc4, 0x4d, 0x0e, 0x44, 0x89, 0x23, - 0xe7, 0xa1, 0xd0, 0xb0, 0x69, 0xd7, 0x73, 0x69, 0xa3, 0x3c, 0x13, 0x46, 0x2e, 0x56, 0x15, 0x0c, - 0x0d, 0x96, 0x7c, 0x01, 0x26, 0x1d, 0x61, 0xca, 0x95, 0x8f, 0x89, 0x81, 0xc9, 0x66, 0x5f, 0x4a, - 0x6b, 0xb0, 0x0a, 0x7c, 0xaf, 0x91, 0xbf, 0x51, 0xb1, 0x25, 0x75, 0x98, 0xf2, 0xfa, 0x81, 0x90, - 0x30, 0x2b, 0x24, 0x64, 0x0b, 0xdc, 0x6d, 0x48, 0x1e, 0x32, 0xcb, 0x4f, 0x7d, 0xa0, 0xe6, 0xcc, - 0xdb, 0x5b, 0x6f, 0x3b, 0x9d, 0x86, 0x4f, 0xdd, 0xf2, 0x9c, 0xb0, 0x59, 0x45, 0x7b, 0x57, 0x14, - 0x0c, 0x0d, 0x96, 0xfc, 0x3f, 0x98, 0xf1, 0xfa, 0x81, 0x58, 0x25, 0x7c, 0x94, 0x59, 0x79, 0x5e, - 0x90, 0xcf, 0xf3, 0x35, 0xbb, 0x11, 0x45, 0x60, 0x9c, 0x8e, 0xeb, 0xcd, 0xb6, 0xc7, 0x02, 0xfe, - 0x21, 0x54, 0xc7, 0xa9, 0xb8, 0xde, 0xbc, 0x1c, 0xc1, 0x61, 0x8c, 0x92, 0x7c, 0x33, 0x07, 0xf3, - 0xdd, 0xa4, 0x09, 0x56, 0x3e, 0x2d, 0x3a, 0x63, 0x2d, 0xe3, 0x66, 0x9f, 0xe0, 0x26, 0x8f, 0x58, - 0x06, 0xc0, 0x38, 0x28, 0x77, 0x61, 0x15, 0x4e, 0xa5, 0xcf, 0xe9, 0x07, 0x6d, 0xe3, 0xe3, 0xd1, - 0x6d, 0xfc, 0x18, 0x4c, 0x47, 0x13, 0x85, 0x45, 0xc4, 0x32, 0x92, 0x5f, 0x46, 0x3c, 0x28, 0x7a, - 0xb5, 0xa3, 0x88, 0x58, 0x6e, 0xd4, 0x06, 0x22, 0x96, 0x06, 0x84, 0xa1, 0x8c, 0x07, 0x45, 0x2c, - 0xff, 0x62, 0x0c, 0xc2, 0x72, 0xdc, 0x65, 0xa5, 0x6e, 0xa3, 0xe7, 0x39, 0x6e, 0x90, 0x4c, 0x41, - 0xba, 0xa4, 0xe0, 0x68, 0x28, 0x22, 0xf1, 0xcd, 0xb1, 0xfb, 0xc6, 0x37, 0xdb, 0x30, 0x6b, 0x8b, - 0xc3, 0xc9, 0x30, 0x30, 0x35, 0xfe, 0x50, 0x81, 0x29, 0x93, 0x28, 0x16, 0xe7, 0x82, 0x49, 0xb6, - 0x5c, 0x12, 0x0b, 0x8b, 0x0b, 0x49, 0x13, 0x99, 0x24, 0xd5, 0xe2, 0x5c, 0x30, 0xc9, 0xd6, 0xfa, - 0xab, 0x31, 0xd0, 0xab, 0xed, 0x37, 0xc1, 0xd7, 0x23, 0x16, 0x4c, 0xfa, 0x94, 0xf5, 0x3b, 0x81, - 0xb2, 0xbe, 0x84, 0x46, 0x43, 0x01, 0x41, 0x85, 0xe1, 0xca, 0x86, 0xbe, 0xe7, 0x04, 0x2b, 0x5e, - 0x43, 0xdb, 0x5c, 0x42, 0xd9, 0x5c, 0x52, 0x30, 0x34, 0x58, 0x6b, 0x17, 0x66, 0x78, 0xbb, 0x3a, - 0x1d, 0xda, 0xa9, 0x05, 0xb4, 0xc7, 0x48, 0x13, 0xf2, 0x8c, 0xff, 0x50, 0xbd, 0x37, 0x62, 0x5a, - 0x42, 0x40, 0x7b, 0x11, 0xa7, 0x90, 0xf3, 0x45, 0xc9, 0xde, 0xba, 0x37, 0x06, 0x45, 0xd3, 0xa3, - 0x87, 0xf0, 0x34, 0x6f, 0xc3, 0x54, 0x83, 0x36, 0x6d, 0xde, 0xee, 0xb1, 0x07, 0x9c, 0x59, 0xf7, - 0x03, 0xa7, 0xb3, 0x28, 0xef, 0x46, 0x2c, 0x5e, 0x71, 0x83, 0x0d, 0xbf, 0x16, 0xf8, 0x8e, 0xdb, - 0x92, 0x8a, 0x79, 0x55, 0x32, 0x41, 0xcd, 0x8d, 0xbc, 0x19, 0x0d, 0x72, 0x64, 0x61, 0x3b, 0x70, - 0xab, 0x82, 0xec, 0x40, 0x51, 0xfc, 0x58, 0xd3, 0x79, 0xf2, 0x59, 0x67, 0xe1, 0x2d, 0xcd, 0x45, - 0xc6, 0x07, 0xcd, 0x27, 0x86, 0xfc, 0x13, 0xf9, 0xed, 0xf9, 0xc3, 0xe4, 0xb7, 0x5b, 0x6b, 0xc0, - 0x37, 0xe3, 0xf5, 0x15, 0xf2, 0x0a, 0x14, 0x98, 0x52, 0x90, 0xaa, 0xef, 0x3f, 0x62, 0xd2, 0x3f, - 0x14, 0xfc, 0xde, 0x7e, 0x65, 0x46, 0x10, 0x6b, 0x00, 0x9a, 0x22, 0xd6, 0xd7, 0x26, 0x20, 0xe2, - 0x76, 0x1c, 0x62, 0x14, 0x1b, 0x09, 0x4f, 0xf2, 0xf5, 0xac, 0x9e, 0xa4, 0x76, 0xcf, 0xe4, 0xf4, - 0x8f, 0x3b, 0x8f, 0xbc, 0x1e, 0x6d, 0xda, 0xe9, 0xa9, 0x05, 0x62, 0xea, 0x71, 0x99, 0x76, 0x7a, - 0x28, 0x30, 0xe6, 0x1c, 0x73, 0x62, 0xe8, 0x39, 0xe6, 0x5b, 0x90, 0x6f, 0xd9, 0xfd, 0x16, 0x55, - 0x81, 0xbf, 0x6c, 0x5e, 0xbe, 0x38, 0xc9, 0x91, 0x13, 0x44, 0xfc, 0x44, 0xc9, 0x93, 0x4f, 0x90, - 0xb6, 0x8e, 0xb2, 0x29, 0x2f, 0x25, 0xdb, 0x04, 0x31, 0xb1, 0x3a, 0x39, 0x41, 0xcc, 0x27, 0x86, - 0xfc, 0xb9, 0x79, 0x53, 0x97, 0xd9, 0x6d, 0xea, 0x14, 0xe2, 0xb3, 0x19, 0x8f, 0x63, 0x05, 0x0f, - 0xb9, 0x8a, 0xd4, 0x07, 0x6a, 0xce, 0xd6, 0x12, 0x94, 0x22, 0x99, 0xe1, 0xbc, 0x7f, 0x4d, 0xee, - 0x56, 0xa4, 0x7f, 0x57, 0xed, 0xc0, 0x46, 0x81, 0xb1, 0xbe, 0x37, 0x0e, 0xc6, 0x98, 0x8c, 0x1e, - 0xb4, 0xda, 0xf5, 0x48, 0xda, 0x6d, 0x2c, 0xeb, 0xc3, 0x73, 0x51, 0x61, 0xb9, 0x6b, 0xd3, 0xa5, - 0x7e, 0xcb, 0x6c, 0xee, 0x6a, 0xdb, 0x33, 0xae, 0xcd, 0xf5, 0x28, 0x12, 0xe3, 0xb4, 0x7c, 0x6b, - 0xed, 0xda, 0xae, 0xd3, 0xa4, 0x2c, 0x48, 0x06, 0xd4, 0xaf, 0x2b, 0x38, 0x1a, 0x0a, 0xb2, 0x0e, - 0xf3, 0x8c, 0x06, 0x1b, 0xbb, 0x2e, 0xf5, 0x4d, 0x36, 0x8a, 0x4a, 0x4f, 0x7a, 0x52, 0x5b, 0xd8, - 0xb5, 0x24, 0x01, 0x0e, 0x96, 0x11, 0x6e, 0xa2, 0xcc, 0x0c, 0x32, 0x59, 0x1e, 0x6a, 0xb5, 0x86, - 0x6e, 0x62, 0x02, 0x8f, 0x03, 0x25, 0x38, 0x97, 0xa6, 0xed, 0x74, 0xfa, 0x3e, 0x0d, 0xb9, 0x4c, - 0xc6, 0xb9, 0xac, 0x25, 0xf0, 0x38, 0x50, 0x42, 0x9c, 0xc5, 0x75, 0xec, 0x16, 0x2b, 0x4f, 0x45, - 0xce, 0xe2, 0x38, 0x00, 0x25, 0xdc, 0xfa, 0x97, 0x1c, 0xcc, 0x20, 0x0d, 0xfc, 0x3d, 0xd3, 0x6b, - 0x15, 0xc8, 0x77, 0x44, 0xa6, 0x52, 0x4e, 0x64, 0x2a, 0x89, 0x22, 0x32, 0x31, 0x49, 0xc2, 0xc9, - 0x2a, 0x94, 0x7c, 0x5e, 0x42, 0x65, 0x85, 0xc9, 0x11, 0xb1, 0x74, 0x68, 0x00, 0x43, 0xd4, 0xbd, - 0xf8, 0x27, 0x46, 0x8b, 0x11, 0x17, 0xa6, 0xb6, 0x65, 0x16, 0xb6, 0xd2, 0xc7, 0xd9, 0x26, 0xab, - 0xca, 0xe4, 0x16, 0x51, 0x78, 0x9d, 0xd6, 0x7d, 0x2f, 0xfc, 0x89, 0x5a, 0x88, 0xf5, 0xdd, 0x1c, - 0x40, 0x78, 0x91, 0x85, 0xec, 0x40, 0x81, 0x5d, 0x8c, 0xd9, 0x84, 0x19, 0x13, 0x2a, 0x14, 0x93, - 0x48, 0x36, 0x9d, 0x82, 0xa0, 0x11, 0xf0, 0x20, 0x83, 0xf0, 0xe7, 0xe3, 0x60, 0x4a, 0x3d, 0x22, - 0x7b, 0xf0, 0x39, 0x6e, 0x4b, 0xb4, 0xc2, 0x6c, 0x74, 0x43, 0x87, 0x02, 0x8a, 0x0a, 0xcb, 0xed, - 0x09, 0x7d, 0x4c, 0xa8, 0xe6, 0xbe, 0xb0, 0x27, 0xf4, 0x89, 0x22, 0x1a, 0x6c, 0x9a, 0x85, 0x99, - 0x7f, 0x6c, 0x16, 0xe6, 0xe4, 0x23, 0xb1, 0x30, 0xc9, 0xf3, 0x30, 0xe5, 0x7b, 0x1d, 0xba, 0x8c, - 0x37, 0x54, 0x34, 0xc4, 0x44, 0x29, 0x50, 0x82, 0x51, 0xe3, 0xc9, 0x8b, 0x50, 0xea, 0x33, 0x5a, - 0x5b, 0xbd, 0xba, 0xe2, 0xd3, 0x06, 0x53, 0x27, 0xb0, 0x26, 0x3e, 0x76, 0x33, 0x44, 0x61, 0x94, - 0xce, 0xfa, 0x83, 0x1c, 0x1c, 0xab, 0xd5, 0x7d, 0xa7, 0x17, 0x18, 0x55, 0x78, 0x43, 0x64, 0xfb, - 0x07, 0x36, 0xb7, 0x3f, 0xd4, 0x54, 0x7c, 0x7a, 0xc8, 0xe1, 0x93, 0x24, 0x8a, 0xdd, 0x4c, 0x91, - 0x20, 0x0c, 0x59, 0xf0, 0xa1, 0x96, 0xca, 0x36, 0x39, 0x25, 0x6a, 0x02, 0x8a, 0x0a, 0x6b, 0xdd, - 0x81, 0xb9, 0x1a, 0xed, 0xda, 0xbd, 0xb6, 0x38, 0x0c, 0xee, 0x34, 0x1c, 0xb7, 0x45, 0x96, 0xa0, - 0xc8, 0x34, 0x2c, 0x79, 0x0d, 0xc6, 0x10, 0x63, 0x48, 0x43, 0x9e, 0x85, 0xa9, 0xb6, 0x38, 0xab, - 0xd1, 0xc7, 0x9b, 0x62, 0xd3, 0x90, 0xc7, 0x37, 0x0c, 0x35, 0xce, 0xda, 0x85, 0xe9, 0xb0, 0x38, - 0x6d, 0x92, 0x16, 0xcc, 0xd6, 0x23, 0x67, 0x69, 0x48, 0x9b, 0x0f, 0x7d, 0xcf, 0x41, 0x9c, 0x23, - 0xae, 0xc4, 0x99, 0x60, 0x92, 0xab, 0xf5, 0xab, 0x1c, 0xcc, 0x1a, 0xc9, 0x2a, 0x30, 0xda, 0x93, - 0x75, 0x76, 0xdc, 0x96, 0x32, 0x7d, 0x2f, 0x65, 0x4c, 0xa5, 0x8a, 0x77, 0x5e, 0x38, 0x59, 0x14, - 0x00, 0xb5, 0x18, 0x2e, 0x71, 0xd7, 0x76, 0x02, 0x2e, 0x71, 0xec, 0x91, 0x48, 0xbc, 0x2d, 0xb9, - 0xa3, 0x16, 0x63, 0xfd, 0xe9, 0x18, 0x14, 0x4c, 0x2e, 0xd7, 0x9b, 0x90, 0x17, 0xbb, 0xf7, 0x03, - 0x33, 0xd6, 0xef, 0x6b, 0xf8, 0x0a, 0x4b, 0x00, 0x25, 0x27, 0xce, 0x52, 0x04, 0xd5, 0x32, 0x9b, - 0xe8, 0x45, 0xe9, 0x27, 0xd8, 0x7e, 0x80, 0x92, 0x13, 0xb9, 0x0a, 0xe3, 0xd4, 0x6d, 0x64, 0x36, - 0xce, 0xc5, 0x45, 0xaf, 0x4b, 0x6e, 0x03, 0x39, 0x17, 0x71, 0x21, 0xc0, 0xf3, 0xbb, 0x76, 0xa0, - 0x0c, 0xbf, 0xf0, 0x42, 0x80, 0x80, 0xa2, 0xc2, 0x5a, 0x7f, 0x33, 0x01, 0x50, 0xeb, 0x6f, 0x77, - 0x9d, 0x60, 0xa3, 0x17, 0x1c, 0xc6, 0xae, 0x7d, 0x09, 0xa6, 0xf5, 0x2d, 0xec, 0x1b, 0x61, 0x04, - 0xdd, 0x84, 0x5e, 0xd6, 0x23, 0x38, 0x8c, 0x51, 0x72, 0xf3, 0x9d, 0xba, 0x81, 0xbf, 0x27, 0x55, - 0xfb, 0x44, 0xdc, 0x7c, 0xbf, 0x64, 0x30, 0x18, 0xa1, 0x22, 0x8b, 0x31, 0x37, 0x57, 0xe6, 0x32, - 0x1e, 0xbb, 0x8f, 0x8b, 0xfa, 0x32, 0xcc, 0x98, 0xaf, 0x35, 0xa7, 0xa3, 0x4f, 0x95, 0x8d, 0xb9, - 0xb4, 0x19, 0x45, 0x62, 0x9c, 0x96, 0xbc, 0x0a, 0xc7, 0xe2, 0xb9, 0x4a, 0x4a, 0x09, 0x9e, 0x52, - 0xa5, 0x8f, 0xc5, 0x53, 0x9c, 0x30, 0x41, 0xcd, 0xfb, 0xbc, 0xe1, 0xef, 0x61, 0xdf, 0x55, 0xda, - 0xd0, 0xf4, 0xf9, 0xaa, 0x80, 0xa2, 0xc2, 0xf2, 0x2e, 0xe4, 0x25, 0xa9, 0x2f, 0xe1, 0x22, 0x20, - 0x5c, 0x08, 0xbb, 0xb0, 0x16, 0xc1, 0x61, 0x8c, 0x92, 0x4b, 0x50, 0x4e, 0x05, 0xc4, 0x47, 0x35, - 0xe1, 0x16, 0xf4, 0xe0, 0x98, 0x17, 0xb7, 0xe3, 0x64, 0xa4, 0xf7, 0x53, 0x87, 0xcc, 0x7e, 0x8e, - 0x95, 0x95, 0xc9, 0x40, 0x09, 0xb3, 0x2f, 0xc1, 0xdf, 0x3a, 0x0e, 0xf3, 0xb5, 0x7e, 0xaf, 0xd7, - 0x71, 0x68, 0xc3, 0xf8, 0x6e, 0xd6, 0x6b, 0x30, 0xab, 0xf2, 0xd9, 0x8d, 0xb2, 0x7f, 0xa8, 0x0b, - 0x67, 0xd6, 0x97, 0xb9, 0xf6, 0xda, 0x73, 0xeb, 0x6d, 0xdf, 0x73, 0x55, 0xe4, 0x8c, 0xb8, 0x49, - 0x15, 0x9d, 0xd5, 0x75, 0x8f, 0x2a, 0x64, 0xe9, 0x54, 0xa4, 0x69, 0x78, 0xeb, 0x1b, 0x39, 0x38, - 0x99, 0xa8, 0x83, 0xd2, 0xa3, 0xef, 0x0e, 0xd6, 0x64, 0x75, 0xb4, 0x9a, 0xa8, 0x00, 0xe2, 0xf0, - 0xca, 0xfc, 0x47, 0x0e, 0x4a, 0x5b, 0x5b, 0xd7, 0x8c, 0xad, 0x8a, 0x70, 0x8a, 0xc9, 0x8c, 0xfe, - 0xe5, 0x66, 0x40, 0xfd, 0x15, 0xaf, 0xdb, 0xeb, 0x50, 0xd3, 0xb9, 0x2a, 0xcd, 0xbe, 0x96, 0x4a, - 0x81, 0x43, 0x4a, 0x92, 0x2b, 0x70, 0x3c, 0x8a, 0x51, 0xa6, 0xba, 0xba, 0xf2, 0x27, 0x13, 0xb6, - 0x06, 0xd1, 0x98, 0x56, 0x26, 0xc9, 0x4a, 0xd9, 0xeb, 0xea, 0xba, 0xfd, 0x00, 0x2b, 0x85, 0xc6, - 0xb4, 0x32, 0xd6, 0x06, 0x94, 0x22, 0x6f, 0x2d, 0x90, 0xd7, 0x61, 0xae, 0xee, 0x75, 0x7b, 0x3e, - 0x65, 0xcc, 0xf1, 0xdc, 0x6b, 0xf4, 0x2e, 0xed, 0xa8, 0x26, 0x8b, 0x7c, 0xfd, 0x95, 0x04, 0x0e, - 0x07, 0xa8, 0xad, 0xef, 0x3f, 0x05, 0x26, 0x4b, 0xfc, 0xb7, 0xb9, 0xe6, 0x99, 0xce, 0x03, 0xeb, - 0xe6, 0xbc, 0x22, 0x3f, 0xfa, 0x79, 0x85, 0xd1, 0x65, 0x89, 0x33, 0x8b, 0x56, 0x78, 0x66, 0x31, - 0x79, 0x04, 0x67, 0x16, 0xc6, 0x64, 0x18, 0x38, 0xb7, 0xf8, 0x7a, 0x0e, 0xa6, 0x5d, 0xaf, 0x41, - 0xb5, 0x85, 0x25, 0x5c, 0xc6, 0xd2, 0x85, 0x8d, 0x91, 0x3a, 0x51, 0x1e, 0x5f, 0x29, 0x8e, 0xf2, - 0xb8, 0xca, 0x28, 0xfa, 0x28, 0x0a, 0x63, 0xa2, 0xc9, 0x1a, 0x14, 0xec, 0x66, 0xd3, 0x71, 0x9d, - 0x60, 0x4f, 0xa5, 0xbb, 0x9f, 0x49, 0x33, 0x0c, 0x97, 0x15, 0x8d, 0x74, 0x52, 0xf4, 0x17, 0x9a, - 0xb2, 0xdc, 0xcb, 0x33, 0xb7, 0xcb, 0x8a, 0x23, 0x78, 0x79, 0x3a, 0xa3, 0x21, 0x12, 0x40, 0xd0, - 0x37, 0x61, 0xc2, 0xcb, 0x66, 0x16, 0x4c, 0xca, 0xa3, 0x2c, 0xb1, 0x3b, 0x15, 0x64, 0xc0, 0x4a, - 0x1e, 0x73, 0xa1, 0xc2, 0x90, 0x96, 0x0e, 0xba, 0x96, 0x44, 0xe7, 0x56, 0x33, 0x87, 0xac, 0x4d, - 0x1c, 0x37, 0x3d, 0xea, 0x4a, 0xde, 0x88, 0x7a, 0x15, 0xd3, 0x87, 0xf1, 0x2a, 0x66, 0x86, 0x7a, - 0x14, 0x2d, 0x98, 0x64, 0xc2, 0x67, 0x11, 0xe7, 0x77, 0xa5, 0x0b, 0x2b, 0xd9, 0xb4, 0x7c, 0xcc, - 0xed, 0x91, 0xbd, 0x23, 0x61, 0xa8, 0xd8, 0x13, 0x0f, 0x0a, 0xfa, 0x90, 0x51, 0x1d, 0x01, 0x66, - 0x33, 0x94, 0x93, 0xe1, 0x26, 0x9d, 0x2b, 0x2d, 0xa1, 0x68, 0x84, 0x90, 0xb7, 0x60, 0xbc, 0x61, - 0xb7, 0xd4, 0x61, 0xe0, 0xeb, 0x99, 0xb3, 0xf8, 0xb5, 0x18, 0x61, 0x83, 0xae, 0x2e, 0xaf, 0x23, - 0xe7, 0x4a, 0x76, 0xc2, 0x5b, 0x6e, 0x73, 0xa3, 0xec, 0x8e, 0x71, 0x13, 0x42, 0x7a, 0x58, 0x03, - 0xf7, 0xe4, 0x2e, 0xc1, 0xd4, 0x5d, 0xaf, 0xd3, 0xef, 0xaa, 0x53, 0xc4, 0xd2, 0x85, 0x85, 0xb4, - 0xd1, 0xbe, 0x25, 0x48, 0x42, 0x25, 0x20, 0xbf, 0x19, 0xea, 0xb2, 0xe4, 0x2b, 0x39, 0x38, 0xc6, - 0x97, 0x8e, 0x99, 0x07, 0xac, 0x4c, 0x46, 0x98, 0xa9, 0x37, 0x19, 0xdf, 0x5a, 0xf5, 0x0c, 0x33, - 0x86, 0xe4, 0x95, 0x98, 0x04, 0x4c, 0x48, 0x24, 0x3d, 0x28, 0x30, 0xa7, 0x41, 0xeb, 0xb6, 0xcf, - 0xca, 0xc7, 0x8f, 0x4c, 0x7a, 0x18, 0xa0, 0x51, 0xbc, 0xd1, 0x48, 0x21, 0xbf, 0x2f, 0xde, 0x5d, - 0x50, 0x6f, 0xa6, 0xa8, 0x77, 0x6c, 0x4e, 0x1c, 0xe5, 0x3b, 0x36, 0xc7, 0xe5, 0xa3, 0x0b, 0x31, - 0x09, 0x98, 0x14, 0x49, 0x36, 0xe0, 0xa4, 0xbc, 0xed, 0x96, 0xbc, 0xea, 0x78, 0x52, 0x5c, 0x75, - 0x7c, 0xf2, 0x60, 0xbf, 0x72, 0x72, 0x39, 0x8d, 0x00, 0xd3, 0xcb, 0x91, 0xf7, 0x61, 0xc6, 0x8f, - 0x06, 0xf7, 0xc4, 0x49, 0x71, 0xd6, 0xee, 0x8c, 0x85, 0x09, 0xe5, 0x29, 0x75, 0x0c, 0x84, 0x71, - 0x59, 0xe4, 0x05, 0x28, 0xf5, 0x94, 0xa6, 0x72, 0x58, 0x57, 0x1c, 0x32, 0x8f, 0xcb, 0x1d, 0x75, - 0x33, 0x04, 0x63, 0x94, 0x86, 0xdc, 0x84, 0x52, 0xe0, 0x75, 0xa8, 0xaf, 0xd2, 0xe0, 0xca, 0x62, - 0xf0, 0xcf, 0xa6, 0xcd, 0xe4, 0x2d, 0x43, 0x16, 0x46, 0x5d, 0x42, 0x18, 0xc3, 0x28, 0x1f, 0xee, - 0x16, 0xe9, 0x9b, 0xad, 0x22, 0xa9, 0xb4, 0xfc, 0x64, 0xdc, 0x2d, 0xaa, 0x45, 0x91, 0x18, 0xa7, - 0x25, 0xeb, 0x30, 0xdf, 0xf3, 0x1d, 0xcf, 0x77, 0x82, 0xbd, 0x95, 0x8e, 0xcd, 0x98, 0x60, 0xb0, - 0x20, 0x18, 0x98, 0xb8, 0xf0, 0x66, 0x92, 0x00, 0x07, 0xcb, 0x90, 0xf3, 0x50, 0xd0, 0xc0, 0xf2, - 0x53, 0xc2, 0x56, 0x13, 0x6a, 0x49, 0x97, 0x45, 0x83, 0x1d, 0x72, 0x7f, 0xe7, 0x4c, 0x96, 0xfb, - 0x3b, 0xa4, 0x01, 0x67, 0xec, 0x7e, 0xe0, 0x89, 0xa4, 0xdb, 0x78, 0x91, 0x2d, 0x6f, 0x87, 0xba, - 0xe5, 0x73, 0x62, 0xaf, 0x3a, 0x77, 0xb0, 0x5f, 0x39, 0xb3, 0x7c, 0x1f, 0x3a, 0xbc, 0x2f, 0x17, - 0xd2, 0x85, 0x02, 0x55, 0x77, 0x90, 0xca, 0x1f, 0x19, 0x61, 0x93, 0x88, 0x5f, 0x64, 0xd2, 0x87, - 0x99, 0x12, 0x86, 0x46, 0x04, 0xd9, 0x82, 0x52, 0xdb, 0x63, 0xc1, 0x72, 0xc7, 0xb1, 0x19, 0x65, - 0xe5, 0xa7, 0xc5, 0x3c, 0x49, 0xdd, 0xdf, 0x2e, 0x6b, 0xb2, 0x70, 0x9a, 0x5c, 0x0e, 0x4b, 0x62, - 0x94, 0x0d, 0xa1, 0x22, 0xd0, 0xd8, 0x17, 0xa3, 0xe6, 0xb9, 0x01, 0x7d, 0x2f, 0x28, 0x9f, 0x15, - 0x6d, 0x79, 0x2e, 0x8d, 0xf3, 0xa6, 0xd7, 0xa8, 0xc5, 0xa9, 0xe5, 0x2a, 0x4f, 0x00, 0x31, 0xc9, - 0x93, 0xfb, 0xbf, 0x3d, 0xaf, 0x51, 0xeb, 0xd1, 0xfa, 0xa6, 0x1d, 0xd4, 0xdb, 0xe5, 0x4a, 0x3c, - 0x84, 0xb0, 0x19, 0xc1, 0x61, 0x8c, 0x92, 0xfb, 0x13, 0x3e, 0x65, 0x22, 0x5c, 0xb1, 0x49, 0xdd, - 0x86, 0xe3, 0xb6, 0x36, 0xbd, 0x06, 0x2b, 0x5b, 0x62, 0x08, 0x85, 0x3f, 0x81, 0x83, 0x68, 0x4c, - 0x2b, 0x43, 0xea, 0x30, 0xd5, 0x95, 0x89, 0x8a, 0xe5, 0x67, 0x46, 0x30, 0x2b, 0x55, 0xb2, 0xa3, - 0xdc, 0x94, 0xd4, 0x07, 0x6a, 0xce, 0xe4, 0x3b, 0x39, 0x98, 0x65, 0x71, 0xdf, 0xb1, 0xfc, 0xd1, - 0x51, 0xb6, 0xc2, 0x38, 0xaf, 0xea, 0x73, 0xa2, 0xbf, 0xe3, 0xc0, 0x7b, 0x83, 0x20, 0x4c, 0x56, - 0x42, 0xb6, 0x5e, 0xe4, 0x00, 0x97, 0x9f, 0x1d, 0xa9, 0xf5, 0x82, 0x87, 0x6e, 0xbd, 0xf8, 0x40, - 0xcd, 0x79, 0xe1, 0x35, 0x98, 0x1f, 0xb0, 0x7e, 0x1f, 0x2a, 0x3f, 0xf5, 0x67, 0xdc, 0xdb, 0x8d, - 0xf8, 0x1b, 0x47, 0xed, 0xa5, 0xad, 0xc3, 0xbc, 0x7a, 0x95, 0x90, 0x9b, 0x46, 0x9d, 0xbe, 0x79, - 0xad, 0x26, 0x72, 0xe2, 0x85, 0x49, 0x02, 0x1c, 0x2c, 0xc3, 0x67, 0x74, 0x5d, 0x3e, 0x57, 0x22, - 0xf3, 0x0f, 0x27, 0xe2, 0x11, 0x9d, 0x95, 0x08, 0x0e, 0x63, 0x94, 0xd6, 0x9f, 0xe5, 0x60, 0x26, - 0xb6, 0x4d, 0x1f, 0x79, 0x38, 0x7c, 0x0d, 0x48, 0xd7, 0xf1, 0x7d, 0xcf, 0x97, 0xb6, 0xce, 0x75, - 0xae, 0xb3, 0x98, 0xba, 0x42, 0x27, 0xae, 0x6e, 0x5c, 0x1f, 0xc0, 0x62, 0x4a, 0x09, 0xeb, 0xab, - 0xe3, 0x10, 0x1e, 0xcb, 0x9b, 0xfb, 0x4a, 0xb9, 0xa1, 0xf7, 0x95, 0x3e, 0x0e, 0x85, 0x3b, 0xcc, - 0x73, 0x37, 0xc3, 0x5b, 0x4d, 0x66, 0x28, 0xde, 0xa8, 0x6d, 0xdc, 0x10, 0x94, 0x86, 0x42, 0x50, - 0xbf, 0xbb, 0xe6, 0x74, 0x82, 0xc1, 0xbb, 0x3f, 0x6f, 0xbc, 0x29, 0xe1, 0x68, 0x28, 0xc8, 0x12, - 0x14, 0x4d, 0xe8, 0x4e, 0x45, 0x12, 0x4d, 0x27, 0x98, 0x10, 0x1f, 0x86, 0x34, 0xc2, 0xa2, 0x52, - 0xe1, 0x29, 0xe5, 0x45, 0xae, 0x65, 0xb4, 0x45, 0x13, 0x31, 0x2e, 0xa9, 0xa1, 0x35, 0x18, 0x8d, - 0x94, 0x68, 0x16, 0x47, 0xfe, 0x28, 0xb3, 0x38, 0xf8, 0x38, 0x4c, 0xdd, 0xa2, 0xbe, 0xb8, 0x8a, - 0xf8, 0x3c, 0x4c, 0xdd, 0x95, 0x3f, 0xd5, 0x40, 0x84, 0x86, 0xad, 0x04, 0xa3, 0xc6, 0xf3, 0x2e, - 0xdb, 0xee, 0x3b, 0x9d, 0xc6, 0x6a, 0xb8, 0x34, 0x4c, 0x97, 0x55, 0x35, 0x02, 0x43, 0x1a, 0x5e, - 0xa0, 0xc5, 0xad, 0xd2, 0x6e, 0xd7, 0x09, 0x92, 0x17, 0x0b, 0xd6, 0x35, 0x02, 0x43, 0x1a, 0xf2, - 0x1c, 0x4c, 0xb6, 0x9c, 0x60, 0xcb, 0x6e, 0x25, 0x43, 0xce, 0xeb, 0x02, 0x8a, 0x0a, 0x2b, 0x22, - 0xc8, 0x4e, 0xb0, 0xe5, 0x53, 0x11, 0xee, 0x1a, 0x48, 0x7a, 0x5e, 0x8f, 0xe0, 0x30, 0x46, 0x29, - 0xaa, 0xe4, 0xa9, 0x96, 0xa9, 0xc8, 0x6e, 0x58, 0x25, 0x8d, 0xc0, 0x90, 0x86, 0xcf, 0xaa, 0xba, - 0xd7, 0xed, 0x39, 0x1d, 0x95, 0x11, 0x10, 0x99, 0x55, 0x2b, 0x0a, 0x8e, 0x86, 0x82, 0x53, 0x73, - 0xbd, 0xd0, 0xf4, 0xfc, 0x6e, 0xf2, 0x7d, 0x89, 0x4d, 0x05, 0x47, 0x43, 0x61, 0x7d, 0x09, 0x66, - 0xd4, 0xa9, 0x83, 0x0a, 0x07, 0xee, 0x84, 0x47, 0x41, 0xa3, 0xbc, 0x28, 0x1a, 0xb9, 0xfa, 0x13, - 0x3f, 0x51, 0x89, 0x1d, 0x28, 0xfd, 0x60, 0x0c, 0x0a, 0x8f, 0xf1, 0x51, 0x9e, 0x7a, 0xec, 0x51, - 0x9e, 0x23, 0x78, 0xc1, 0x25, 0xed, 0x41, 0x9e, 0x9d, 0xc4, 0x83, 0x3c, 0x2b, 0x23, 0x66, 0x64, - 0xdd, 0xf7, 0x31, 0x9e, 0x1f, 0xe7, 0x60, 0xfa, 0x31, 0x3e, 0xc4, 0xb3, 0x1d, 0x7f, 0x88, 0xe7, - 0x95, 0x91, 0x9a, 0x36, 0xe4, 0x11, 0x9e, 0xaf, 0x3f, 0x09, 0xb1, 0x07, 0x70, 0x88, 0x0b, 0x45, - 0xbd, 0xd7, 0xe9, 0x2c, 0xb7, 0x57, 0x46, 0x8a, 0x66, 0x85, 0xcb, 0x4d, 0x43, 0x18, 0x86, 0x22, - 0x12, 0x27, 0x3c, 0x63, 0x87, 0x3a, 0xe1, 0x79, 0xec, 0x91, 0xd2, 0x74, 0xdf, 0x62, 0xe2, 0x91, - 0xf8, 0x16, 0x67, 0x8e, 0xdc, 0xb7, 0x78, 0xfa, 0xd1, 0xfb, 0x16, 0x91, 0x48, 0x4a, 0x7e, 0x84, - 0x48, 0xca, 0xfb, 0x70, 0x42, 0xfe, 0x5c, 0xe9, 0xd8, 0x4e, 0xd7, 0xcc, 0x17, 0xf5, 0xba, 0xc8, - 0xf3, 0xa9, 0x1e, 0x05, 0x57, 0xdb, 0x2c, 0xa0, 0x6e, 0x70, 0x2b, 0x2c, 0x19, 0xde, 0x08, 0xb9, - 0x95, 0xc2, 0x0e, 0x53, 0x85, 0x24, 0x5d, 0xef, 0xa9, 0x43, 0xb8, 0xde, 0xdf, 0xcb, 0xc1, 0x49, - 0x3b, 0xed, 0x6d, 0x4c, 0x15, 0x80, 0x7d, 0x63, 0xa4, 0x40, 0x48, 0x8c, 0xa3, 0x0a, 0x64, 0xa4, - 0xa1, 0x30, 0xbd, 0x0e, 0xe4, 0xd9, 0x30, 0x96, 0x26, 0x8f, 0x0b, 0xd3, 0xa3, 0x60, 0xdf, 0x4a, - 0xc6, 0xb0, 0x41, 0xf4, 0x76, 0x6d, 0x64, 0x85, 0x7d, 0x04, 0x71, 0xec, 0xd2, 0x08, 0x71, 0xec, - 0x44, 0x5c, 0x64, 0xfa, 0x88, 0xe2, 0x22, 0x2e, 0xcc, 0x39, 0x5d, 0xbb, 0x45, 0x37, 0xfb, 0x9d, - 0x8e, 0x4c, 0x81, 0x61, 0xe5, 0x19, 0xc1, 0x3b, 0x35, 0x0f, 0xe3, 0x9a, 0x57, 0xb7, 0x3b, 0xc9, - 0xf7, 0x9a, 0x4c, 0x36, 0xda, 0x95, 0x04, 0x27, 0x1c, 0xe0, 0xcd, 0xa7, 0xa5, 0xb8, 0x8d, 0x40, - 0x03, 0xde, 0xdb, 0x22, 0xc4, 0xab, 0x5e, 0x2f, 0xbe, 0x1c, 0x82, 0x31, 0x4a, 0x43, 0xae, 0x42, - 0xb1, 0xe1, 0x32, 0x95, 0x6a, 0x36, 0x2b, 0xb4, 0xd4, 0x27, 0xb8, 0x6e, 0x5b, 0xbd, 0x51, 0x33, - 0x49, 0x66, 0x67, 0x52, 0xae, 0xb3, 0x18, 0x3c, 0x86, 0xe5, 0xc9, 0x75, 0xc1, 0x4c, 0xbd, 0x05, - 0x20, 0x63, 0xb2, 0xe7, 0x86, 0xb8, 0xf6, 0xab, 0x37, 0xf4, 0xd3, 0x05, 0x33, 0x4a, 0x9c, 0xba, - 0xe1, 0x1f, 0x72, 0x88, 0x3c, 0x48, 0x33, 0x7f, 0xdf, 0x07, 0x69, 0x6e, 0xc2, 0xe9, 0x20, 0xe8, - 0xc4, 0x8e, 0xfa, 0xd4, 0x8d, 0x21, 0x71, 0x7d, 0x2c, 0x2f, 0xdf, 0x30, 0xdb, 0xda, 0xba, 0x96, - 0x46, 0x82, 0xc3, 0xca, 0x8a, 0x33, 0xaf, 0xa0, 0x63, 0x42, 0x7b, 0x67, 0x47, 0x39, 0xf3, 0x0a, - 0xcf, 0x54, 0xd5, 0x99, 0x57, 0x08, 0xc0, 0xa8, 0x94, 0xe1, 0x21, 0xca, 0xe3, 0x19, 0x43, 0x94, - 0xd1, 0xa8, 0xd8, 0x89, 0xfb, 0x46, 0xc5, 0x06, 0xa2, 0x78, 0x27, 0x1f, 0x22, 0x8a, 0xf7, 0x96, - 0xb8, 0xaa, 0xb4, 0xbe, 0xa2, 0x22, 0xa0, 0xd9, 0xb2, 0x7c, 0x45, 0x76, 0xb4, 0x4c, 0x5d, 0x11, - 0x3f, 0x51, 0xf2, 0x24, 0x9b, 0x70, 0xa2, 0xe7, 0x35, 0x06, 0x82, 0x80, 0x22, 0xe4, 0x19, 0xb9, - 0xd2, 0xb7, 0x99, 0x42, 0x83, 0xa9, 0x25, 0x85, 0x02, 0x0f, 0xe1, 0xe5, 0xb2, 0xe8, 0x18, 0xa9, - 0xc0, 0x43, 0x30, 0x46, 0x69, 0x92, 0x31, 0xb1, 0x27, 0x1f, 0x59, 0x4c, 0x6c, 0xe1, 0x31, 0xc4, - 0xc4, 0x9e, 0x3a, 0x74, 0x4c, 0xec, 0x77, 0xe1, 0x78, 0xcf, 0x6b, 0xac, 0x3a, 0xcc, 0xef, 0x8b, - 0x97, 0xd3, 0xab, 0xfd, 0x46, 0x8b, 0x06, 0x22, 0xa8, 0x56, 0xba, 0x70, 0x21, 0x5a, 0x49, 0xf9, - 0x07, 0x11, 0x8b, 0xea, 0x0f, 0x22, 0xc4, 0x22, 0x4f, 0x94, 0x12, 0xa6, 0xb9, 0x88, 0xa3, 0xa5, - 0x20, 0x31, 0x4d, 0x4e, 0x34, 0x8e, 0x76, 0xee, 0x91, 0xc5, 0xd1, 0x5e, 0x87, 0x02, 0x6b, 0xf7, - 0x83, 0x86, 0xb7, 0xeb, 0x8a, 0xe8, 0x6a, 0xd1, 0xbc, 0x00, 0x59, 0xa8, 0x29, 0xf8, 0xbd, 0xfd, - 0xca, 0x9c, 0xfe, 0x1d, 0xc9, 0xdf, 0x57, 0x10, 0xf2, 0xed, 0x1c, 0x1c, 0x4f, 0xde, 0x1d, 0xe5, - 0x7b, 0xbb, 0x35, 0xc2, 0xb3, 0xe7, 0xb7, 0x07, 0xf9, 0xc9, 0xce, 0x4b, 0x41, 0x60, 0x9a, 0xf4, - 0xd4, 0xf8, 0xe0, 0x33, 0xbf, 0x06, 0xf1, 0xc1, 0xd1, 0x43, 0x77, 0xdf, 0x9e, 0x85, 0x63, 0x89, - 0xd7, 0x10, 0xcd, 0x45, 0xdb, 0xdc, 0x61, 0x2f, 0xda, 0xc6, 0x6e, 0xc2, 0x8e, 0x3d, 0xd2, 0x9b, - 0xb0, 0xe3, 0x47, 0x7e, 0x13, 0x36, 0x72, 0xe3, 0x77, 0xe2, 0x01, 0x37, 0x7e, 0x97, 0x61, 0x56, - 0xa7, 0xa7, 0x50, 0x75, 0x13, 0x52, 0x06, 0x45, 0x4c, 0xe6, 0xee, 0x4a, 0x1c, 0x8d, 0x49, 0x7a, - 0xf2, 0x25, 0xc8, 0xbb, 0xa2, 0xe0, 0xe4, 0x08, 0x2f, 0x27, 0xc4, 0x07, 0x4c, 0x98, 0x7c, 0xea, - 0xf1, 0x02, 0x7d, 0x72, 0x99, 0x17, 0xb0, 0x7b, 0xfa, 0x07, 0x4a, 0xa1, 0xe4, 0x6d, 0x28, 0x7b, - 0xcd, 0x66, 0xc7, 0xb3, 0x1b, 0xe1, 0x6d, 0x5d, 0x1d, 0xa7, 0x91, 0x99, 0x6a, 0xe7, 0x14, 0x83, - 0xf2, 0xc6, 0x10, 0x3a, 0x1c, 0xca, 0x81, 0x5b, 0xe6, 0xb3, 0xf1, 0x5b, 0xe4, 0xac, 0x5c, 0x14, - 0xcd, 0xfc, 0xff, 0x47, 0xd1, 0xcc, 0xf8, 0x95, 0x75, 0xd5, 0xe0, 0x30, 0x67, 0x3a, 0x8e, 0xc5, - 0x64, 0x4d, 0x88, 0x0f, 0xa7, 0x7a, 0x69, 0x7e, 0x0b, 0x53, 0xf9, 0x23, 0xf7, 0xf3, 0x9e, 0xce, - 0x2a, 0x29, 0xa7, 0x52, 0x3d, 0x1f, 0x86, 0x43, 0x38, 0x47, 0xef, 0xf1, 0x16, 0x1e, 0xd9, 0x3d, - 0xde, 0xf8, 0xfb, 0x9f, 0x33, 0x8f, 0xe3, 0xfd, 0x4f, 0xf2, 0xcb, 0xd4, 0xeb, 0xe3, 0xd2, 0xdc, - 0xff, 0xfc, 0x51, 0x0c, 0xf6, 0xaf, 0xdd, 0x15, 0xf2, 0x3f, 0xce, 0xc1, 0x82, 0x9c, 0x52, 0x69, - 0x8f, 0xbb, 0xab, 0x2c, 0x90, 0x23, 0x08, 0xb8, 0x89, 0x50, 0x7f, 0x2d, 0x26, 0x48, 0x84, 0xde, - 0xee, 0x23, 0x9c, 0x7c, 0x3d, 0x65, 0x7b, 0x9a, 0x1d, 0xc1, 0x19, 0x4e, 0x4d, 0xa3, 0x54, 0x06, - 0xd2, 0x83, 0x76, 0xa4, 0x3d, 0xf9, 0xb6, 0xc7, 0xd0, 0x57, 0x4e, 0x6e, 0x46, 0xb7, 0xa2, 0xac, - 0x0f, 0x8d, 0x84, 0xba, 0x27, 0xfa, 0xc2, 0xca, 0x97, 0x73, 0x70, 0x22, 0x4d, 0x49, 0xa4, 0xd4, - 0xa2, 0x16, 0xaf, 0xc5, 0x68, 0xd1, 0xb6, 0x68, 0x1d, 0x8e, 0xe6, 0xa6, 0xf8, 0x1f, 0x4d, 0x46, - 0x22, 0x84, 0x01, 0xed, 0xfd, 0x36, 0xef, 0x31, 0x53, 0xde, 0x63, 0xec, 0xb5, 0xdc, 0xfc, 0x63, - 0x7c, 0x2d, 0x77, 0x32, 0xc3, 0x6b, 0xb9, 0x53, 0x8f, 0xf3, 0xb5, 0xdc, 0xc2, 0x21, 0x5f, 0xcb, - 0x2d, 0xfe, 0xda, 0xbc, 0x96, 0x6b, 0x7d, 0x98, 0x83, 0xb9, 0xff, 0xed, 0x7f, 0x07, 0xf2, 0xb3, - 0x1c, 0x9c, 0xf8, 0x1f, 0xf8, 0x1f, 0x90, 0x3b, 0xf1, 0x43, 0x8f, 0x4b, 0x47, 0xd2, 0xc8, 0x21, - 0x87, 0x1f, 0xef, 0x42, 0x9a, 0xdb, 0x75, 0xb8, 0x0b, 0x2d, 0xb1, 0xb3, 0xfb, 0xb1, 0x43, 0x9f, - 0xdd, 0xff, 0x57, 0x4a, 0xaf, 0x8a, 0x7d, 0xf3, 0xfd, 0x47, 0xf5, 0xbf, 0x07, 0x27, 0xd2, 0xfe, - 0xf7, 0x20, 0xf1, 0x3f, 0x07, 0xc9, 0x77, 0xef, 0xc7, 0x1e, 0xdd, 0xbb, 0xf7, 0xd5, 0xc5, 0x1f, - 0x7e, 0x78, 0xf6, 0x89, 0x1f, 0x7f, 0x78, 0xf6, 0x89, 0x9f, 0x7c, 0x78, 0xf6, 0x89, 0x0f, 0x0e, - 0xce, 0xe6, 0x7e, 0x78, 0x70, 0x36, 0xf7, 0xe3, 0x83, 0xb3, 0xb9, 0x9f, 0x1c, 0x9c, 0xcd, 0xfd, - 0xec, 0xe0, 0x6c, 0xee, 0x0f, 0xff, 0xf9, 0xec, 0x13, 0x9f, 0x2f, 0xe8, 0xc6, 0xfc, 0x77, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x57, 0x96, 0x3e, 0x8d, 0x7c, 0x73, 0x00, 0x00, + // 6860 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x5b, 0x6c, 0x23, 0xd7, + 0x75, 0xa6, 0x24, 0x4a, 0xe4, 0xa1, 0x9e, 0x77, 0x5f, 0xb4, 0xbc, 0x16, 0x37, 0xe3, 0xd8, 0x58, + 0xe7, 0x21, 0xc5, 0xeb, 0xb8, 0x75, 0xe2, 0xf8, 0x21, 0x4a, 0x2b, 0xad, 0xbc, 0x0f, 0xc9, 0x87, + 0xda, 0xdd, 0x24, 0x36, 0x9c, 0x8e, 0x38, 0x97, 0xe4, 0xac, 0xc8, 0x19, 0x7a, 0x66, 0xb8, 0xb2, + 0xe2, 0x14, 0x75, 0x82, 0x06, 0x69, 0x12, 0x04, 0x68, 0x51, 0x20, 0x48, 0x11, 0x14, 0xc8, 0x4f, + 0xd1, 0x9f, 0xfe, 0xb6, 0x3f, 0x05, 0xf2, 0x51, 0xa0, 0x45, 0x9a, 0x9f, 0xa4, 0x5f, 0xcd, 0x47, + 0xa1, 0xc4, 0x2a, 0x50, 0x04, 0x48, 0xd3, 0x7c, 0x15, 0x05, 0x84, 0x02, 0x2d, 0xee, 0x73, 0x1e, + 0x1c, 0xee, 0x6a, 0x87, 0xda, 0x6d, 0xd0, 0xe4, 0x8f, 0x73, 0xce, 0xb9, 0xe7, 0xdc, 0xe7, 0xb9, + 0xe7, 0x9c, 0x7b, 0xee, 0x25, 0xac, 0x34, 0xed, 0xa0, 0xd5, 0xdb, 0x59, 0xac, 0xbb, 0x9d, 0x25, + 0xd3, 0x6b, 0xba, 0x5d, 0xcf, 0xbd, 0xc3, 0x7f, 0x2c, 0x75, 0x77, 0x9b, 0x4b, 0x66, 0xd7, 0xf6, + 0x97, 0xf6, 0x5c, 0x6f, 0xb7, 0xd1, 0x76, 0xf7, 0x96, 0xee, 0x3e, 0x67, 0xb6, 0xbb, 0x2d, 0xf3, + 0xb9, 0xa5, 0x26, 0x75, 0xa8, 0x67, 0x06, 0xd4, 0x5a, 0xec, 0x7a, 0x6e, 0xe0, 0x92, 0xe7, 0x43, + 0x26, 0x8b, 0x8a, 0x09, 0xff, 0xb1, 0xd8, 0xdd, 0x6d, 0x2e, 0x32, 0x26, 0x8b, 0x8a, 0xc9, 0xa2, + 0x62, 0x32, 0xff, 0xf1, 0x88, 0xe4, 0xa6, 0xcb, 0x04, 0x32, 0x5e, 0x3b, 0xbd, 0x06, 0xff, 0xe2, + 0x1f, 0xfc, 0x97, 0x90, 0x31, 0x6f, 0xec, 0xbe, 0xe8, 0x2f, 0xda, 0x2e, 0xab, 0xd2, 0x52, 0xdd, + 0xf5, 0xe8, 0xd2, 0xdd, 0xbe, 0x7a, 0xcc, 0x3f, 0x1b, 0xa1, 0xe9, 0xba, 0x6d, 0xbb, 0xbe, 0xbf, + 0x74, 0xf7, 0xb9, 0x1d, 0x1a, 0xf4, 0x57, 0x79, 0xfe, 0x93, 0x21, 0x69, 0xc7, 0xac, 0xb7, 0x6c, + 0x87, 0x7a, 0xfb, 0x61, 0x93, 0x3b, 0x34, 0x30, 0xd3, 0x04, 0x2c, 0x0d, 0x2a, 0xe5, 0xf5, 0x9c, + 0xc0, 0xee, 0xd0, 0xbe, 0x02, 0xbf, 0x73, 0xbf, 0x02, 0x7e, 0xbd, 0x45, 0x3b, 0x66, 0x5f, 0xb9, + 0xe7, 0x07, 0x95, 0xeb, 0x05, 0x76, 0x7b, 0xc9, 0x76, 0x02, 0x3f, 0xf0, 0x92, 0x85, 0x8c, 0x67, + 0x61, 0x7c, 0xb9, 0xe3, 0xf6, 0x9c, 0x80, 0x54, 0x20, 0x7f, 0xd7, 0x6c, 0xf7, 0x68, 0x39, 0x77, + 0x21, 0x77, 0x71, 0xb2, 0x5a, 0x3c, 0x3c, 0xa8, 0xe4, 0x6f, 0x31, 0x00, 0x0a, 0xb8, 0xf1, 0xa3, + 0x1c, 0xcc, 0x2c, 0x7b, 0xf5, 0x96, 0x7d, 0x97, 0xd6, 0x02, 0xc6, 0xa3, 0xb9, 0x4f, 0xde, 0x84, + 0xd1, 0xc0, 0xf4, 0x78, 0x91, 0xd2, 0xa5, 0xd7, 0x16, 0x33, 0x8c, 0xe9, 0xe2, 0xb6, 0xe9, 0x29, + 0x76, 0xd5, 0x89, 0xc3, 0x83, 0xca, 0xe8, 0xb6, 0xe9, 0x21, 0xe3, 0x4a, 0xbe, 0x00, 0x63, 0x8e, + 0xeb, 0xd0, 0xf2, 0x08, 0xe7, 0xbe, 0x9c, 0x89, 0xfb, 0x0d, 0xd7, 0xd1, 0xb5, 0xad, 0x16, 0x0e, + 0x0f, 0x2a, 0x63, 0x0c, 0x82, 0x9c, 0xb1, 0xf1, 0xab, 0x1c, 0x14, 0x97, 0xbd, 0x66, 0xaf, 0x43, + 0x9d, 0xc0, 0x27, 0x1e, 0x40, 0xd7, 0xf4, 0xcc, 0x0e, 0x0d, 0xa8, 0xe7, 0x97, 0x73, 0x17, 0x46, + 0x2f, 0x96, 0x2e, 0xbd, 0x92, 0x49, 0xe8, 0x96, 0x62, 0x53, 0x25, 0x3f, 0x38, 0xa8, 0x3c, 0x76, + 0x78, 0x50, 0x01, 0x0d, 0xf2, 0x31, 0x22, 0x85, 0x38, 0x50, 0x34, 0xbd, 0xc0, 0x6e, 0x98, 0xf5, + 0xc0, 0x2f, 0x8f, 0x70, 0x91, 0x2f, 0x67, 0x12, 0xb9, 0x2c, 0xb9, 0x54, 0xe7, 0xa4, 0xc4, 0xa2, + 0x82, 0xf8, 0x18, 0x8a, 0x30, 0x7e, 0x31, 0x0a, 0x05, 0x85, 0x20, 0x17, 0x60, 0xcc, 0x31, 0x3b, + 0x62, 0xc0, 0x8b, 0xd5, 0x49, 0x59, 0x70, 0xec, 0x86, 0xd9, 0x61, 0x1d, 0x64, 0x76, 0x28, 0xa3, + 0xe8, 0x9a, 0x41, 0x8b, 0x8f, 0x40, 0x84, 0x62, 0xcb, 0x0c, 0x5a, 0xc8, 0x31, 0xe4, 0x3c, 0x8c, + 0x75, 0x5c, 0x8b, 0x96, 0x47, 0x2f, 0xe4, 0x2e, 0xe6, 0x45, 0x07, 0x5f, 0x77, 0x2d, 0x8a, 0x1c, + 0xca, 0xca, 0x37, 0x3c, 0xb7, 0x53, 0x1e, 0x8b, 0x97, 0x5f, 0xf3, 0xdc, 0x0e, 0x72, 0x0c, 0xf9, + 0x66, 0x0e, 0x66, 0x55, 0xf5, 0xae, 0xb9, 0x75, 0x33, 0xb0, 0x5d, 0xa7, 0x9c, 0xe7, 0x03, 0x7e, + 0x79, 0xa8, 0x8e, 0x50, 0xcc, 0xaa, 0x65, 0x29, 0x75, 0x36, 0x89, 0xc1, 0x3e, 0xc1, 0xe4, 0x12, + 0x40, 0xb3, 0xed, 0xee, 0x98, 0x6d, 0xd6, 0x07, 0xe5, 0x71, 0x5e, 0x6b, 0x3d, 0x84, 0xeb, 0x1a, + 0x83, 0x11, 0x2a, 0xb2, 0x0b, 0x13, 0xa6, 0x58, 0x15, 0xe5, 0x09, 0x5e, 0xef, 0xd5, 0x8c, 0xf5, + 0x8e, 0xad, 0xac, 0x6a, 0xe9, 0xf0, 0xa0, 0x32, 0x21, 0x81, 0xa8, 0x24, 0x90, 0x8f, 0x41, 0xc1, + 0xed, 0xb2, 0xaa, 0x9a, 0xed, 0x72, 0xe1, 0x42, 0xee, 0x62, 0xa1, 0x3a, 0x2b, 0xab, 0x57, 0xd8, + 0x94, 0x70, 0xd4, 0x14, 0xc6, 0x3f, 0x8d, 0x43, 0x5f, 0xab, 0xc9, 0x73, 0x50, 0x92, 0xdc, 0xae, + 0xb9, 0x4d, 0x9f, 0x0f, 0x7e, 0xa1, 0x3a, 0x73, 0x78, 0x50, 0x29, 0x2d, 0x87, 0x60, 0x8c, 0xd2, + 0x90, 0xdb, 0x30, 0xe2, 0x3f, 0x2f, 0x97, 0xe1, 0xab, 0x99, 0x5a, 0x57, 0x7b, 0x5e, 0x4f, 0xd0, + 0xf1, 0xc3, 0x83, 0xca, 0x48, 0xed, 0x79, 0x1c, 0xf1, 0x9f, 0x67, 0xea, 0xa3, 0x69, 0x07, 0x7c, + 0xf2, 0x64, 0x55, 0x1f, 0xeb, 0x76, 0xa0, 0x59, 0x73, 0xf5, 0xb1, 0x6e, 0x07, 0xc8, 0xb8, 0x32, + 0xf5, 0xd1, 0x0a, 0x82, 0x2e, 0x9f, 0x7c, 0x59, 0xd5, 0xc7, 0x95, 0xed, 0xed, 0x2d, 0xcd, 0x9e, + 0xcf, 0x6e, 0x06, 0x41, 0xce, 0x98, 0xbc, 0xc7, 0x7a, 0x52, 0xe0, 0x5c, 0x6f, 0x5f, 0xce, 0xda, + 0x2b, 0x43, 0xcd, 0x5a, 0xd7, 0xdb, 0xd7, 0xe2, 0xe4, 0x98, 0x68, 0x04, 0x46, 0xa5, 0xf1, 0xd6, + 0x59, 0x0d, 0x9f, 0x4f, 0xd2, 0xcc, 0xad, 0x5b, 0x5d, 0xab, 0x25, 0x5a, 0xb7, 0xba, 0x56, 0x43, + 0xce, 0x98, 0x8d, 0x8d, 0x67, 0xee, 0xc9, 0x39, 0x9d, 0x6d, 0x6c, 0xd0, 0xdc, 0x8b, 0x8f, 0x0d, + 0x9a, 0x7b, 0xc8, 0xb8, 0x32, 0xe6, 0xae, 0xef, 0xf3, 0x29, 0x9c, 0x95, 0xf9, 0x66, 0xad, 0x16, + 0x67, 0xbe, 0x59, 0xab, 0x21, 0xe3, 0xca, 0x67, 0x55, 0xdd, 0x2f, 0x17, 0x87, 0x99, 0x55, 0x2b, + 0x09, 0xe6, 0xeb, 0x2b, 0x35, 0x64, 0x5c, 0x8d, 0x26, 0x9c, 0x51, 0x18, 0xa4, 0x5d, 0xd7, 0xb7, + 0xf9, 0xd0, 0xd0, 0x06, 0x59, 0x82, 0x62, 0xdd, 0x75, 0x1a, 0x76, 0xf3, 0xba, 0xd9, 0x95, 0x2a, + 0x55, 0xeb, 0xe2, 0x15, 0x85, 0xc0, 0x90, 0x86, 0x3c, 0x09, 0xa3, 0xbb, 0x74, 0x5f, 0xea, 0xd6, + 0x92, 0x24, 0x1d, 0xbd, 0x4a, 0xf7, 0x91, 0xc1, 0x8d, 0xef, 0xe7, 0xe0, 0x54, 0xca, 0xb4, 0x60, + 0xc5, 0x7a, 0x5e, 0x5b, 0x4a, 0xd0, 0xc5, 0x6e, 0xe2, 0x35, 0x64, 0x70, 0xf2, 0xb5, 0x1c, 0xcc, + 0x44, 0xe6, 0xc9, 0x72, 0x4f, 0xaa, 0xef, 0xec, 0x7a, 0x29, 0xc6, 0xab, 0x7a, 0x4e, 0x4a, 0x9c, + 0x49, 0x20, 0x30, 0x29, 0xd5, 0xf8, 0x67, 0x6e, 0x2f, 0xc4, 0x60, 0xc4, 0x84, 0xe9, 0x9e, 0x4f, + 0x3d, 0xb6, 0xb9, 0xd4, 0x68, 0xdd, 0xa3, 0x81, 0x34, 0x1d, 0x9e, 0x5e, 0x14, 0xc6, 0x0b, 0xab, + 0xc5, 0x22, 0x33, 0xd5, 0x16, 0xef, 0x3e, 0xb7, 0x28, 0x28, 0xae, 0xd2, 0xfd, 0x1a, 0x6d, 0x53, + 0xc6, 0xa3, 0x4a, 0x0e, 0x0f, 0x2a, 0xd3, 0x37, 0x63, 0x0c, 0x30, 0xc1, 0x90, 0x89, 0xe8, 0x9a, + 0xbe, 0xbf, 0xe7, 0x7a, 0x96, 0x14, 0x31, 0xf2, 0xc0, 0x22, 0xb6, 0x62, 0x0c, 0x30, 0xc1, 0xd0, + 0xf8, 0x76, 0x0e, 0x26, 0xaa, 0x66, 0x7d, 0xd7, 0x6d, 0x34, 0x98, 0x46, 0xb6, 0x7a, 0x9e, 0xd8, + 0xb7, 0xc4, 0x98, 0x68, 0x8d, 0xbc, 0x2a, 0xe1, 0xa8, 0x29, 0xc8, 0x33, 0x30, 0x2e, 0xba, 0x83, + 0x57, 0x2a, 0x5f, 0x9d, 0x96, 0xb4, 0xe3, 0x6b, 0x1c, 0x8a, 0x12, 0x4b, 0x5e, 0x80, 0x52, 0xc7, + 0x7c, 0x57, 0x31, 0xe0, 0x0a, 0xb2, 0x58, 0x3d, 0x25, 0x89, 0x4b, 0xd7, 0x43, 0x14, 0x46, 0xe9, + 0x8c, 0xb7, 0x21, 0xbf, 0x62, 0xd6, 0x5b, 0x94, 0xdc, 0x4c, 0x4e, 0xc6, 0xd2, 0xa5, 0x8b, 0x69, + 0xed, 0xd7, 0x13, 0x33, 0xda, 0x05, 0x53, 0x83, 0xa6, 0xac, 0xf1, 0xf3, 0x1c, 0x9c, 0x5b, 0x69, + 0xf7, 0xfc, 0x80, 0x7a, 0xb7, 0xe5, 0x4c, 0xd9, 0xa6, 0x9d, 0x6e, 0xdb, 0x0c, 0x28, 0xf9, 0x3d, + 0x28, 0x30, 0x13, 0xd8, 0x32, 0x03, 0x53, 0x4a, 0xfc, 0x44, 0x44, 0xa2, 0xb6, 0x48, 0xc3, 0xb9, + 0xc6, 0xa8, 0x59, 0x1d, 0x36, 0x77, 0xee, 0xd0, 0x7a, 0x70, 0x9d, 0x06, 0x66, 0xb8, 0xd7, 0x86, + 0x30, 0xd4, 0x5c, 0xc9, 0x2e, 0x8c, 0xf9, 0x5d, 0x5a, 0x97, 0xe3, 0xb9, 0x91, 0x69, 0x3a, 0x27, + 0xab, 0x5d, 0xeb, 0xd2, 0x7a, 0x68, 0x98, 0xb0, 0x2f, 0xe4, 0x42, 0x8c, 0xff, 0xc8, 0xc1, 0x13, + 0x03, 0x9a, 0x7a, 0xcd, 0xf6, 0x03, 0xf2, 0x56, 0x5f, 0x73, 0x17, 0x8f, 0xd7, 0x5c, 0x56, 0x9a, + 0x37, 0x56, 0xcf, 0x13, 0x05, 0x89, 0x34, 0xf5, 0x1d, 0xc8, 0xdb, 0x01, 0xed, 0x28, 0x9b, 0xf0, + 0x5a, 0xa6, 0xb6, 0x0e, 0xa8, 0x7e, 0x75, 0x4a, 0x0a, 0xce, 0x6f, 0x30, 0x11, 0x28, 0x24, 0x19, + 0xff, 0x98, 0x03, 0x36, 0xe8, 0x96, 0x2d, 0xad, 0x84, 0xb1, 0x60, 0xbf, 0xab, 0x6c, 0xc3, 0x27, + 0x55, 0x07, 0x6d, 0xef, 0x77, 0xe9, 0xd1, 0x41, 0x65, 0x4a, 0x13, 0x32, 0x00, 0x72, 0x52, 0xf2, + 0x36, 0x8c, 0xfb, 0x81, 0x19, 0xf4, 0x7c, 0xa9, 0xd2, 0xd6, 0xd4, 0xdc, 0xae, 0x71, 0xe8, 0xd1, + 0x41, 0xe5, 0x58, 0x0e, 0xd4, 0xa2, 0xe6, 0x2d, 0xca, 0xa1, 0xe4, 0x4a, 0x9e, 0x85, 0x89, 0x0e, + 0xf5, 0x7d, 0xb3, 0x49, 0xe5, 0x7a, 0x98, 0x91, 0x02, 0x26, 0xae, 0x0b, 0x30, 0x2a, 0xbc, 0xf1, + 0x39, 0x80, 0x15, 0xd7, 0x09, 0x6c, 0xa7, 0x47, 0x37, 0x1d, 0xf2, 0x14, 0xe4, 0xa9, 0xe7, 0xb9, + 0x9e, 0xb4, 0x75, 0x74, 0xf3, 0x2f, 0x33, 0x20, 0x0a, 0x9c, 0x58, 0x99, 0x76, 0x9b, 0x5a, 0xbc, + 0xf6, 0x85, 0xe8, 0xca, 0x64, 0x50, 0x94, 0x58, 0x63, 0x11, 0x26, 0x56, 0x98, 0xbf, 0x44, 0x3d, + 0xc6, 0x37, 0xf4, 0x98, 0x8a, 0x21, 0xdf, 0x98, 0xd7, 0xf4, 0xc3, 0x11, 0x98, 0x5c, 0xf1, 0x5c, + 0x47, 0x8d, 0xc2, 0x23, 0x58, 0x27, 0xcd, 0xd8, 0x3a, 0xc9, 0x66, 0x46, 0x47, 0xab, 0x3c, 0x68, + 0x8d, 0x10, 0x57, 0x8f, 0xb8, 0xb0, 0xe0, 0xd6, 0x87, 0x17, 0xc5, 0xd9, 0x85, 0x9d, 0x1f, 0x9f, + 0x02, 0xc6, 0x4f, 0x72, 0x30, 0x1b, 0x25, 0x7f, 0x04, 0x2b, 0xb1, 0x11, 0x5f, 0x89, 0xcb, 0x43, + 0x37, 0x71, 0xc0, 0xf2, 0xfb, 0xef, 0x7c, 0xbc, 0x69, 0xac, 0x9b, 0x99, 0x77, 0x34, 0xb9, 0x17, + 0x01, 0xc8, 0xf6, 0x2d, 0x0f, 0xa5, 0xfa, 0xf8, 0x70, 0x7e, 0x58, 0x56, 0x62, 0x32, 0x0a, 0x3d, + 0x4a, 0x7c, 0x63, 0x4c, 0x38, 0xdb, 0xea, 0xfc, 0x7a, 0x8b, 0x5a, 0xbd, 0x36, 0x95, 0x4b, 0x5c, + 0x77, 0x5c, 0x4d, 0xc2, 0x51, 0x53, 0x90, 0xb7, 0x60, 0xae, 0xee, 0x3a, 0xf5, 0x9e, 0xe7, 0x51, + 0xa7, 0xbe, 0xbf, 0xc5, 0x43, 0x2b, 0x72, 0xe1, 0x2e, 0xca, 0x62, 0x73, 0x2b, 0x49, 0x82, 0xa3, + 0x34, 0x20, 0xf6, 0x33, 0x62, 0xca, 0xc0, 0xef, 0xf9, 0x5d, 0xea, 0x58, 0xdc, 0xbe, 0x2f, 0x84, + 0xca, 0xa0, 0x26, 0xc0, 0xa8, 0xf0, 0xe4, 0x26, 0x9c, 0xf3, 0x03, 0x66, 0x9c, 0x38, 0xcd, 0x55, + 0x6a, 0x5a, 0x6d, 0xdb, 0x61, 0xa6, 0x82, 0xeb, 0x58, 0x3e, 0x37, 0xd9, 0x47, 0xab, 0x4f, 0x1c, + 0x1e, 0x54, 0xce, 0xd5, 0xd2, 0x49, 0x70, 0x50, 0x59, 0xf2, 0x36, 0xcc, 0xfb, 0xbd, 0x7a, 0x9d, + 0xfa, 0x7e, 0xa3, 0xd7, 0x7e, 0xdd, 0xdd, 0xf1, 0xaf, 0xd8, 0x3e, 0xb3, 0x73, 0xae, 0xd9, 0x1d, + 0x3b, 0xe0, 0x66, 0x79, 0xbe, 0xba, 0x70, 0x78, 0x50, 0x99, 0xaf, 0x0d, 0xa4, 0xc2, 0x7b, 0x70, + 0x20, 0x08, 0x67, 0x85, 0xca, 0xe9, 0xe3, 0x3d, 0xc1, 0x79, 0xcf, 0x1f, 0x1e, 0x54, 0xce, 0xae, + 0xa5, 0x52, 0xe0, 0x80, 0x92, 0x6c, 0x04, 0x03, 0xbb, 0x43, 0xbf, 0xe8, 0x3a, 0x94, 0xdb, 0xde, + 0x91, 0x11, 0xdc, 0x96, 0x70, 0xd4, 0x14, 0xe4, 0x4e, 0x38, 0xf9, 0xd8, 0xa2, 0x90, 0x06, 0xf5, + 0x83, 0x6b, 0xab, 0xd3, 0xcc, 0xfb, 0xbe, 0x1d, 0xe1, 0xc4, 0x16, 0x16, 0xc6, 0x78, 0x1b, 0xff, + 0x30, 0x02, 0xa4, 0x5f, 0x11, 0x90, 0xab, 0x30, 0x6e, 0xd6, 0x03, 0xe6, 0x5b, 0x8b, 0x78, 0xcc, + 0x53, 0x69, 0x46, 0x8c, 0x10, 0x85, 0xb4, 0x41, 0xd9, 0x0c, 0xa1, 0xa1, 0xf6, 0x58, 0xe6, 0x45, + 0x51, 0xb2, 0x20, 0x2e, 0xcc, 0xb5, 0x4d, 0x3f, 0x50, 0x73, 0xd5, 0x62, 0x4d, 0x96, 0x4a, 0xf2, + 0x23, 0xc7, 0x6b, 0x14, 0x2b, 0x51, 0x3d, 0xc3, 0x66, 0xee, 0xb5, 0x24, 0x23, 0xec, 0xe7, 0x4d, + 0x3c, 0x80, 0xba, 0xda, 0xcc, 0x98, 0x8e, 0xcc, 0x1e, 0x51, 0xd2, 0x7b, 0x62, 0xa8, 0xfa, 0x35, + 0xc8, 0xc7, 0x88, 0x14, 0xe3, 0x97, 0xe3, 0x30, 0xb1, 0xba, 0xbc, 0xbe, 0x6d, 0xfa, 0xbb, 0xc7, + 0x08, 0xf0, 0xb0, 0x09, 0x21, 0xcd, 0x82, 0xe4, 0x92, 0x56, 0xe6, 0x02, 0x6a, 0x0a, 0xe2, 0x42, + 0xd1, 0x54, 0xe1, 0x32, 0xa9, 0xf2, 0x5f, 0xc9, 0xe8, 0x54, 0x48, 0x2e, 0xd1, 0x70, 0x95, 0x04, + 0x61, 0x28, 0x83, 0xf8, 0x50, 0x52, 0xc2, 0x91, 0x36, 0xa4, 0x27, 0x9f, 0x31, 0xcc, 0x18, 0xf2, + 0x11, 0x9e, 0x75, 0x04, 0x80, 0x51, 0x29, 0xe4, 0x93, 0x30, 0x69, 0x51, 0xa6, 0x39, 0xa8, 0x53, + 0xb7, 0x29, 0x53, 0x12, 0xa3, 0xac, 0x5f, 0x98, 0xb2, 0x5c, 0x8d, 0xc0, 0x31, 0x46, 0x45, 0xee, + 0x40, 0x71, 0xcf, 0x0e, 0x5a, 0x5c, 0xa7, 0x97, 0xc7, 0xf9, 0x50, 0x7f, 0x2a, 0x53, 0x45, 0x19, + 0x87, 0xb0, 0x5b, 0x6e, 0x2b, 0x9e, 0x18, 0xb2, 0x67, 0xae, 0x26, 0xfb, 0xe0, 0x31, 0x45, 0xae, + 0x0d, 0x8a, 0xf1, 0x02, 0x1c, 0x81, 0x21, 0x0d, 0xf1, 0x61, 0x92, 0x7d, 0xd4, 0xe8, 0x3b, 0x3d, + 0xb6, 0x42, 0xa4, 0xdf, 0x9d, 0x2d, 0xd2, 0xa8, 0x98, 0x88, 0x1e, 0xb9, 0x1d, 0x61, 0x8b, 0x31, + 0x21, 0x6c, 0xf6, 0xed, 0xb5, 0xa8, 0xc3, 0xd5, 0x46, 0x64, 0xf6, 0xdd, 0x6e, 0x51, 0x07, 0x39, + 0x86, 0xb8, 0x7c, 0x7d, 0x48, 0x33, 0xad, 0x0c, 0x43, 0xc4, 0x97, 0x42, 0x6b, 0xaf, 0x3a, 0x2d, + 0x17, 0x87, 0xfc, 0xc6, 0x88, 0x08, 0x66, 0xe4, 0xb9, 0xce, 0xe5, 0x77, 0xed, 0xa0, 0x5c, 0xe2, + 0x95, 0xd2, 0x9a, 0x62, 0x93, 0x43, 0x51, 0x62, 0xd9, 0xee, 0x22, 0x06, 0xd7, 0x2f, 0x4f, 0xc6, + 0x4d, 0x4d, 0x31, 0x03, 0x7c, 0x54, 0x78, 0xe3, 0xef, 0x72, 0x50, 0x62, 0xeb, 0x4d, 0xad, 0x91, + 0x67, 0x60, 0x3c, 0x30, 0xbd, 0xa6, 0xf4, 0x6c, 0x23, 0x22, 0xb6, 0x39, 0x14, 0x25, 0x96, 0x98, + 0x90, 0x0f, 0x4c, 0x7f, 0x57, 0xd9, 0x15, 0x9f, 0xc9, 0xd4, 0x6c, 0xb9, 0xd0, 0x43, 0x93, 0x82, + 0x7d, 0xf9, 0x28, 0x38, 0x93, 0x8b, 0x50, 0x60, 0xfb, 0xc0, 0x9a, 0xe9, 0x8b, 0x10, 0x5b, 0xa1, + 0x3a, 0xc9, 0x16, 0xf6, 0x9a, 0x84, 0xa1, 0xc6, 0x1a, 0x6f, 0xc1, 0xf4, 0xe5, 0x77, 0x69, 0xbd, + 0x17, 0xb8, 0x9e, 0xf0, 0xfb, 0xc8, 0xeb, 0x40, 0x7c, 0xea, 0xdd, 0xb5, 0xeb, 0x74, 0xb9, 0x5e, + 0x67, 0xf6, 0xee, 0x8d, 0x50, 0x91, 0xcc, 0x4b, 0x69, 0xa4, 0xd6, 0x47, 0x81, 0x29, 0xa5, 0x8c, + 0x3f, 0xcf, 0x41, 0x29, 0x12, 0x50, 0x61, 0x6a, 0xa4, 0xb9, 0x52, 0xab, 0xf6, 0xea, 0xbb, 0xda, + 0xff, 0x7f, 0x25, 0x6b, 0x94, 0x46, 0x70, 0x09, 0xa7, 0xbf, 0x06, 0x61, 0x28, 0xe3, 0x7e, 0x91, + 0x96, 0xbf, 0xc9, 0x41, 0x58, 0x8e, 0x0d, 0xe0, 0x4e, 0x58, 0xb5, 0xc8, 0x00, 0x4a, 0xbe, 0x12, + 0x4b, 0xde, 0xcf, 0xc1, 0xb9, 0x78, 0x63, 0xb9, 0x0f, 0xfd, 0xe0, 0x11, 0x87, 0x8a, 0x14, 0x70, + 0xae, 0x96, 0xce, 0x0d, 0x07, 0x89, 0x31, 0x6e, 0x41, 0x7e, 0xdd, 0xec, 0x35, 0xe9, 0xb1, 0x3c, + 0x11, 0x36, 0x1d, 0x3c, 0x6a, 0xb6, 0x03, 0xb5, 0xeb, 0xc9, 0xe9, 0x80, 0x12, 0x86, 0x1a, 0x6b, + 0xfc, 0xd5, 0x18, 0x94, 0x22, 0x71, 0x55, 0xb6, 0x92, 0x3d, 0xda, 0x75, 0x93, 0xfb, 0x08, 0xd2, + 0xae, 0x8b, 0x1c, 0xc3, 0xf6, 0x11, 0x8f, 0xde, 0xb5, 0x7d, 0xdb, 0x75, 0x92, 0xfb, 0x08, 0x4a, + 0x38, 0x6a, 0x0a, 0x52, 0x81, 0xbc, 0x45, 0xbb, 0x41, 0x8b, 0xcf, 0xca, 0x31, 0x71, 0xd4, 0xb4, + 0xca, 0x00, 0x28, 0xe0, 0x8c, 0xa0, 0x41, 0x83, 0x7a, 0xab, 0x3c, 0xc6, 0x75, 0x2f, 0x27, 0x58, + 0x63, 0x00, 0x14, 0xf0, 0x94, 0x38, 0x52, 0xfe, 0xe1, 0xc7, 0x91, 0xc6, 0x4f, 0x38, 0x8e, 0x44, + 0xba, 0x70, 0xca, 0xf7, 0x5b, 0x5b, 0x9e, 0x7d, 0xd7, 0x0c, 0x68, 0x38, 0x7b, 0x26, 0x1e, 0x44, + 0xce, 0xb9, 0xc3, 0x83, 0xca, 0xa9, 0x5a, 0xed, 0x4a, 0x92, 0x0b, 0xa6, 0xb1, 0x26, 0x35, 0x38, + 0x63, 0x3b, 0x3e, 0xad, 0xf7, 0x3c, 0xba, 0xd1, 0x74, 0x5c, 0x8f, 0x5e, 0x71, 0x7d, 0xc6, 0x4e, + 0x1e, 0x26, 0x28, 0x3f, 0xff, 0xcc, 0x46, 0x1a, 0x11, 0xa6, 0x97, 0x35, 0x7e, 0x98, 0x83, 0xc9, + 0x68, 0x28, 0x99, 0xf8, 0x00, 0xad, 0xd5, 0xb5, 0x9a, 0x50, 0x25, 0x72, 0x85, 0xbf, 0x9a, 0x39, + 0x42, 0x2d, 0xd8, 0x84, 0x86, 0x4f, 0x08, 0xc3, 0x88, 0x98, 0x63, 0x9c, 0x55, 0x3d, 0x05, 0xf9, + 0x86, 0xeb, 0xd5, 0xa9, 0x54, 0x86, 0x7a, 0x95, 0xac, 0x31, 0x20, 0x0a, 0x9c, 0xf1, 0xf3, 0x1c, + 0x44, 0x24, 0x90, 0x3f, 0x80, 0x29, 0x26, 0xe3, 0xaa, 0xb7, 0x13, 0x6b, 0x4d, 0x35, 0x73, 0x6b, + 0x34, 0xa7, 0xea, 0x19, 0x29, 0x7f, 0x2a, 0x06, 0xc6, 0xb8, 0x3c, 0xf2, 0x51, 0x28, 0x9a, 0x96, + 0xe5, 0x51, 0xdf, 0xa7, 0x62, 0xaf, 0x28, 0x8a, 0xf8, 0xdc, 0xb2, 0x02, 0x62, 0x88, 0x67, 0xcb, + 0xb0, 0x65, 0x35, 0x7c, 0x36, 0xb3, 0xa5, 0xab, 0xa5, 0x97, 0x21, 0x13, 0xc2, 0xe0, 0xa8, 0x29, + 0x8c, 0x6f, 0x8d, 0x41, 0x5c, 0x36, 0xb1, 0x60, 0x66, 0xd7, 0xdb, 0x59, 0xe1, 0x31, 0xc4, 0x2c, + 0xf1, 0xd9, 0x53, 0x87, 0x07, 0x95, 0x99, 0xab, 0x71, 0x0e, 0x98, 0x64, 0x29, 0xa5, 0x5c, 0xa5, + 0xfb, 0x81, 0xb9, 0x93, 0x45, 0x61, 0x2a, 0x29, 0x51, 0x0e, 0x98, 0x64, 0x49, 0x5e, 0x80, 0xd2, + 0xae, 0xb7, 0xa3, 0x16, 0x79, 0x32, 0x84, 0x7a, 0x35, 0x44, 0x61, 0x94, 0x8e, 0x75, 0xe1, 0xae, + 0xb7, 0xc3, 0x94, 0xa2, 0x3a, 0xb6, 0xd4, 0x5d, 0x78, 0x55, 0xc2, 0x51, 0x53, 0x90, 0x2e, 0x90, + 0x5d, 0xd5, 0x7b, 0x3a, 0x62, 0x2a, 0x75, 0xd1, 0xf1, 0x03, 0xae, 0x67, 0xd9, 0x66, 0x7a, 0xb5, + 0x8f, 0x0f, 0xa6, 0xf0, 0x26, 0x9f, 0x83, 0x73, 0xbb, 0xde, 0x8e, 0xdc, 0x2a, 0xb6, 0x3c, 0xdb, + 0xa9, 0xdb, 0xdd, 0xd8, 0x79, 0xa5, 0xde, 0x4e, 0xae, 0xa6, 0x93, 0xe1, 0xa0, 0xf2, 0xc6, 0xc7, + 0x61, 0x32, 0x7a, 0xde, 0x75, 0x9f, 0x93, 0x06, 0xe3, 0x3b, 0x39, 0x28, 0x72, 0xef, 0xb2, 0xc9, + 0x4c, 0x4c, 0xbd, 0x05, 0x8d, 0xde, 0x63, 0x0b, 0x6a, 0xc0, 0x84, 0xd8, 0x3d, 0x7d, 0xae, 0xd9, + 0x4b, 0x97, 0x5e, 0xca, 0xe6, 0x3e, 0xf0, 0x8c, 0x85, 0xd0, 0x28, 0x13, 0x3b, 0xb3, 0x8f, 0x8a, + 0xb9, 0xf1, 0x51, 0x28, 0x5d, 0x71, 0xdb, 0x16, 0xf5, 0x58, 0xbb, 0x7c, 0x72, 0x5e, 0xfb, 0x41, + 0x6c, 0xf9, 0x14, 0xe2, 0x3e, 0x90, 0xf1, 0xef, 0x39, 0x18, 0xdf, 0x70, 0xba, 0xbd, 0xdf, 0x90, + 0x14, 0x80, 0xeb, 0x30, 0xc6, 0xbc, 0x08, 0xf2, 0x52, 0x3c, 0xdf, 0xe3, 0x69, 0x3d, 0x58, 0x47, + 0x07, 0x95, 0x32, 0x75, 0xea, 0xae, 0x65, 0x3b, 0xcd, 0xa5, 0x3b, 0xbe, 0xeb, 0x2c, 0xa2, 0xb9, + 0xa7, 0x42, 0xac, 0xa2, 0xcc, 0xa7, 0x0b, 0xdf, 0xf9, 0x5e, 0xe5, 0xb1, 0xf7, 0xff, 0xe5, 0xc2, + 0x63, 0x46, 0x1b, 0xc6, 0xae, 0xd9, 0xce, 0x71, 0x7c, 0xcd, 0xa7, 0x20, 0xef, 0xd7, 0xdd, 0xae, + 0x72, 0x34, 0xf5, 0x0c, 0xa9, 0x31, 0x20, 0x0a, 0x9c, 0x9a, 0x73, 0xa3, 0x03, 0xe6, 0xdc, 0x57, + 0x72, 0x30, 0x77, 0x9d, 0x76, 0x5c, 0xfb, 0x8b, 0x66, 0x18, 0x21, 0x66, 0x85, 0x5a, 0x76, 0x20, + 0xc3, 0xbb, 0xba, 0xd0, 0x15, 0x3b, 0x40, 0x06, 0xbf, 0x8f, 0xf9, 0xc7, 0x0f, 0xee, 0x98, 0x76, + 0xba, 0x11, 0xaa, 0x89, 0xf0, 0xe0, 0x4e, 0x21, 0x30, 0xa4, 0x31, 0xbe, 0x9a, 0x83, 0x09, 0x51, + 0x09, 0xaa, 0x78, 0xe7, 0x06, 0xf0, 0x7e, 0x13, 0xf2, 0xbc, 0x9c, 0x54, 0x70, 0x9f, 0xce, 0xe6, + 0xdc, 0x30, 0x0e, 0xc2, 0x08, 0xe2, 0x3f, 0x51, 0xf0, 0x34, 0xde, 0x1f, 0x85, 0x82, 0x0a, 0xa7, + 0x90, 0xaf, 0xe6, 0xa0, 0x64, 0x3a, 0x8e, 0x1b, 0x98, 0x22, 0xda, 0x20, 0x26, 0xef, 0x8d, 0x4c, + 0x02, 0x15, 0xd3, 0xc5, 0xe5, 0x90, 0xe1, 0x65, 0x27, 0xf0, 0xf6, 0x43, 0xfd, 0x19, 0xc1, 0x60, + 0x54, 0x2e, 0x79, 0x07, 0xc6, 0xdb, 0xe6, 0x0e, 0x6d, 0xab, 0xb9, 0xbc, 0x31, 0x5c, 0x0d, 0xae, + 0x71, 0x5e, 0x42, 0xb8, 0xb6, 0xc4, 0x05, 0x10, 0xa5, 0xa0, 0xf9, 0x57, 0x60, 0x36, 0x59, 0x51, + 0x32, 0x1b, 0x19, 0x17, 0x31, 0x14, 0xa7, 0xd5, 0x7c, 0xe7, 0xf3, 0x40, 0x4d, 0xe4, 0x91, 0x17, + 0x73, 0xf3, 0x9f, 0x82, 0x52, 0x44, 0xcc, 0x83, 0x14, 0x35, 0xde, 0x80, 0xd2, 0x75, 0x1a, 0x78, + 0x76, 0x9d, 0x33, 0xb8, 0xdf, 0x6c, 0x78, 0x2a, 0xc6, 0x67, 0xc0, 0x81, 0xc1, 0x17, 0xd9, 0xe4, + 0x62, 0x2c, 0x7d, 0xe6, 0x1f, 0x77, 0x3d, 0xb7, 0x43, 0x83, 0x16, 0xed, 0xa9, 0x11, 0xcd, 0x66, + 0x47, 0x6d, 0x69, 0x36, 0xc2, 0x3f, 0x0e, 0xbf, 0x31, 0x22, 0xc2, 0xf8, 0xd1, 0x34, 0xc0, 0x0d, + 0xd7, 0xa2, 0x72, 0x5d, 0xcd, 0xc3, 0x88, 0x6d, 0xc9, 0xd6, 0x80, 0xac, 0xec, 0xc8, 0xc6, 0x2a, + 0x8e, 0xd8, 0x96, 0x5e, 0xef, 0x23, 0x03, 0xd7, 0xfb, 0x0b, 0x50, 0xb2, 0x6c, 0xbf, 0xdb, 0x36, + 0xf7, 0x6f, 0xa4, 0x6c, 0xc0, 0xab, 0x21, 0x0a, 0xa3, 0x74, 0xe4, 0x63, 0xf2, 0xe4, 0x49, 0x6c, + 0xbe, 0xe5, 0xc4, 0xc9, 0x53, 0x81, 0x55, 0x2f, 0x72, 0xe8, 0xf4, 0x22, 0x4c, 0xaa, 0xd8, 0x0d, + 0x97, 0x92, 0xe7, 0xa5, 0x4e, 0xab, 0xe8, 0xf6, 0x76, 0x04, 0x87, 0x31, 0xca, 0x64, 0x6c, 0x69, + 0xfc, 0x91, 0xc4, 0x96, 0x56, 0x61, 0xd6, 0x0f, 0x5c, 0x8f, 0x5a, 0x8a, 0x62, 0x63, 0xb5, 0x4c, + 0x62, 0x0d, 0x9d, 0xad, 0x25, 0xf0, 0xd8, 0x57, 0x82, 0x6c, 0xc1, 0xe9, 0xbd, 0xc4, 0xa1, 0x1e, + 0x6f, 0xfc, 0x29, 0xce, 0xe9, 0xbc, 0xe4, 0x74, 0xfa, 0x76, 0x0a, 0x0d, 0xa6, 0x96, 0x24, 0x2f, + 0xc1, 0x94, 0xaa, 0x26, 0x57, 0xc7, 0xe5, 0xd3, 0x9c, 0x95, 0x36, 0x51, 0xb7, 0xa3, 0x48, 0x8c, + 0xd3, 0x92, 0x4f, 0x40, 0xbe, 0xdb, 0x32, 0x7d, 0x2a, 0x43, 0x51, 0x2a, 0x3c, 0x90, 0xdf, 0x62, + 0xc0, 0xa3, 0x83, 0x4a, 0x91, 0x8d, 0x19, 0xff, 0x40, 0x41, 0x48, 0x2e, 0x01, 0xec, 0xb8, 0x3d, + 0xc7, 0x32, 0xbd, 0xfd, 0x8d, 0x55, 0x19, 0x89, 0xd6, 0xfb, 0x64, 0x55, 0x63, 0x30, 0x42, 0x15, + 0x3d, 0xfe, 0x2b, 0xde, 0xfb, 0xf8, 0x8f, 0xbc, 0x09, 0x45, 0x1e, 0xb5, 0xa7, 0xd6, 0x72, 0x20, + 0xc3, 0x4a, 0x0f, 0x12, 0xe0, 0xd5, 0xda, 0xbf, 0xa6, 0x98, 0x60, 0xc8, 0x8f, 0xbc, 0x0d, 0xd0, + 0xb0, 0x1d, 0xdb, 0x6f, 0x71, 0xee, 0xa5, 0x07, 0xe6, 0xae, 0xdb, 0xb9, 0xa6, 0xb9, 0x60, 0x84, + 0x23, 0xf9, 0x2c, 0xcc, 0x51, 0x3f, 0xb0, 0x3b, 0x66, 0x40, 0x2d, 0x9d, 0x00, 0x50, 0xe6, 0x07, + 0x15, 0x1f, 0x51, 0xe7, 0x26, 0x97, 0x93, 0x04, 0x47, 0x07, 0x95, 0x29, 0xe6, 0xba, 0x2f, 0xea, + 0xbc, 0x80, 0x7e, 0x26, 0xe4, 0x17, 0x39, 0x98, 0xf3, 0xa8, 0xef, 0xf6, 0xbc, 0x3a, 0xf5, 0x35, + 0xeb, 0x33, 0x5c, 0xad, 0xdc, 0xca, 0x98, 0x5d, 0xa9, 0x74, 0xc5, 0x22, 0x26, 0x19, 0x0b, 0x9d, + 0x4d, 0x55, 0x95, 0xfb, 0xf0, 0x47, 0x69, 0xc0, 0xaf, 0xfc, 0xb4, 0x52, 0xe9, 0x4f, 0xda, 0xd5, + 0xcc, 0xd9, 0x5c, 0xfd, 0xc6, 0x4f, 0x2b, 0xb3, 0xea, 0x3b, 0x6c, 0x6d, 0x5f, 0xbb, 0x98, 0xb2, + 0xed, 0xba, 0xd6, 0xc6, 0x96, 0x8c, 0xe0, 0x69, 0x65, 0xbb, 0xc5, 0x80, 0x28, 0x70, 0xe4, 0x22, + 0x14, 0x2c, 0x93, 0x76, 0x5c, 0x87, 0x5a, 0xe5, 0xa9, 0x30, 0x26, 0xb2, 0x2a, 0x61, 0xa8, 0xb1, + 0xe4, 0x0b, 0x30, 0x6e, 0x73, 0x23, 0xb1, 0x3c, 0xcd, 0x87, 0x3c, 0x9b, 0xe5, 0x2a, 0xec, 0xcc, + 0x2a, 0xb0, 0x5d, 0x4c, 0xfc, 0x46, 0xc9, 0x96, 0xd4, 0x61, 0xc2, 0xed, 0x05, 0x5c, 0xc2, 0x0c, + 0x97, 0x90, 0x2d, 0x24, 0xb8, 0x29, 0x78, 0x88, 0xfc, 0x41, 0xf9, 0x81, 0x8a, 0x33, 0x6b, 0x6f, + 0xbd, 0x65, 0xb7, 0x2d, 0x8f, 0x3a, 0xe5, 0x59, 0x6e, 0x0d, 0xf3, 0xf6, 0xae, 0x48, 0x18, 0x6a, + 0x2c, 0xf9, 0x5d, 0x98, 0x72, 0x7b, 0x01, 0x5f, 0x7f, 0x6c, 0x94, 0xfd, 0xf2, 0x1c, 0x27, 0x9f, + 0x63, 0xda, 0x60, 0x33, 0x8a, 0xc0, 0x38, 0x1d, 0xd3, 0xc8, 0x2d, 0xd7, 0x0f, 0xd8, 0x07, 0x57, + 0x4a, 0x67, 0xe3, 0x1a, 0xf9, 0x4a, 0x04, 0x87, 0x31, 0x4a, 0xf2, 0xcd, 0x1c, 0xcc, 0x75, 0x92, + 0xc6, 0x5d, 0xf9, 0x1c, 0xef, 0x8c, 0xb5, 0x8c, 0x66, 0x44, 0x82, 0x9b, 0x38, 0xbc, 0xe9, 0x03, + 0x63, 0xbf, 0xdc, 0xf9, 0x55, 0x38, 0x9b, 0x3e, 0xa7, 0xef, 0x67, 0x20, 0x8c, 0x46, 0x0d, 0x84, + 0x69, 0x98, 0x8c, 0xa6, 0x20, 0xf3, 0x58, 0x68, 0x24, 0x73, 0x8d, 0xb8, 0x50, 0x74, 0x6b, 0x27, + 0x11, 0x0b, 0xdd, 0xac, 0xf5, 0xc5, 0x42, 0x35, 0x08, 0x43, 0x19, 0xf7, 0x8b, 0x85, 0xfe, 0xf5, + 0x08, 0x84, 0xe5, 0x98, 0x33, 0x4c, 0x1d, 0xab, 0xeb, 0xda, 0x4e, 0x90, 0x4c, 0x6e, 0xba, 0x2c, + 0xe1, 0xa8, 0x29, 0x22, 0x91, 0xd3, 0x91, 0x7b, 0x46, 0x4e, 0x5b, 0x30, 0x63, 0xf2, 0x63, 0xcf, + 0x30, 0xe4, 0x35, 0xfa, 0x40, 0x21, 0x2f, 0x9d, 0x82, 0x16, 0xe7, 0x82, 0x49, 0xb6, 0x4c, 0x92, + 0x1f, 0x16, 0xe7, 0x92, 0xc6, 0x32, 0x49, 0xaa, 0xc5, 0xb9, 0x60, 0x92, 0xad, 0xf1, 0xb7, 0x23, + 0xa0, 0x56, 0xdb, 0x6f, 0x82, 0x17, 0x49, 0x0c, 0x18, 0xf7, 0xa8, 0xdf, 0x6b, 0x07, 0xd2, 0xae, + 0xe3, 0x1a, 0x0d, 0x39, 0x04, 0x25, 0x86, 0x29, 0x1b, 0xfa, 0xae, 0x1d, 0xac, 0xb8, 0x96, 0xb2, + 0xe6, 0xb8, 0xb2, 0xb9, 0x2c, 0x61, 0xa8, 0xb1, 0xc6, 0x1e, 0x4c, 0xb1, 0x76, 0xb5, 0xdb, 0xb4, + 0x5d, 0x0b, 0x68, 0xd7, 0x27, 0x0d, 0xc8, 0xfb, 0xec, 0x87, 0xec, 0xbd, 0x21, 0x13, 0x1e, 0x02, + 0xda, 0x8d, 0xb8, 0x9b, 0x8c, 0x2f, 0x0a, 0xf6, 0xc6, 0xd1, 0x08, 0x14, 0x75, 0x8f, 0x1e, 0xc3, + 0x87, 0xbd, 0x0d, 0x13, 0x16, 0x6d, 0x98, 0xac, 0xdd, 0x23, 0xf7, 0x39, 0x0d, 0xef, 0x05, 0x76, + 0x7b, 0x51, 0xdc, 0xba, 0x58, 0xdc, 0x70, 0x82, 0x4d, 0xaf, 0x16, 0x78, 0xb6, 0xd3, 0x14, 0x8a, + 0x79, 0x55, 0x30, 0x41, 0xc5, 0x8d, 0xbc, 0x11, 0x0d, 0x9f, 0x64, 0x61, 0xdb, 0x77, 0x5f, 0x83, + 0xec, 0x42, 0x91, 0xff, 0x58, 0x53, 0x19, 0xf8, 0x59, 0x67, 0xe1, 0x2d, 0xc5, 0x45, 0x44, 0x1e, + 0xf5, 0x27, 0x86, 0xfc, 0x13, 0x99, 0xf3, 0xf9, 0xe3, 0x64, 0xce, 0x1b, 0x6b, 0xc0, 0x36, 0xe3, + 0xf5, 0x15, 0xf2, 0x32, 0x14, 0x7c, 0xa9, 0x20, 0x65, 0xdf, 0x7f, 0x48, 0x27, 0x96, 0x48, 0x38, + 0x33, 0x70, 0x38, 0xb1, 0x02, 0xa0, 0x2e, 0x62, 0x7c, 0x6d, 0x0c, 0x22, 0x0e, 0xcd, 0x31, 0x46, + 0xd1, 0x4a, 0xf8, 0xa8, 0xaf, 0x65, 0xf5, 0x51, 0x95, 0xe3, 0x27, 0xa6, 0x7f, 0xdc, 0x2d, 0x65, + 0xf5, 0x68, 0xd1, 0x76, 0x57, 0x2e, 0x10, 0x5d, 0x8f, 0x2b, 0xb4, 0xdd, 0x45, 0x8e, 0xd1, 0x27, + 0xa4, 0x63, 0x03, 0x4f, 0x48, 0xdf, 0x84, 0x7c, 0xd3, 0xec, 0x35, 0xa9, 0x0c, 0x29, 0x66, 0x8b, + 0x1f, 0xf0, 0x33, 0x22, 0x31, 0x41, 0xf8, 0x4f, 0x14, 0x3c, 0xd9, 0x04, 0x69, 0xa9, 0xf8, 0x9d, + 0xf4, 0x7f, 0xb2, 0x4d, 0x10, 0x1d, 0x05, 0x14, 0x13, 0x44, 0x7f, 0x62, 0xc8, 0x9f, 0x99, 0x37, + 0x75, 0x91, 0x37, 0x27, 0xcf, 0x37, 0x3e, 0x93, 0xf1, 0xa0, 0x97, 0xf3, 0x10, 0xab, 0x48, 0x7e, + 0xa0, 0xe2, 0x6c, 0x2c, 0x41, 0x29, 0x92, 0x73, 0xce, 0xfa, 0x57, 0x67, 0x85, 0x45, 0xfa, 0x77, + 0xd5, 0x0c, 0x4c, 0xe4, 0x18, 0xe3, 0xbb, 0xa3, 0xa0, 0x8d, 0xc9, 0xe8, 0x11, 0xae, 0x59, 0x8f, + 0x24, 0xf4, 0xc6, 0xf2, 0x49, 0x5c, 0x07, 0x25, 0x96, 0x39, 0x4d, 0x1d, 0xea, 0x35, 0xf5, 0xe6, + 0x2e, 0xb7, 0x3d, 0xed, 0x34, 0x5d, 0x8f, 0x22, 0x31, 0x4e, 0xcb, 0xb6, 0xd6, 0x8e, 0xe9, 0xd8, + 0x0d, 0xea, 0x07, 0xc9, 0x50, 0xfd, 0x75, 0x09, 0x47, 0x4d, 0x41, 0xd6, 0x61, 0xce, 0xa7, 0xc1, + 0xe6, 0x9e, 0x43, 0x3d, 0x9d, 0xe7, 0x22, 0x13, 0x9f, 0x1e, 0x57, 0x16, 0x76, 0x2d, 0x49, 0x80, + 0xfd, 0x65, 0xb8, 0x03, 0x2a, 0x72, 0x8e, 0x74, 0xfe, 0x88, 0x5c, 0xad, 0xa1, 0x03, 0x9a, 0xc0, + 0x63, 0x5f, 0x09, 0xc6, 0xa5, 0x61, 0xda, 0xed, 0x9e, 0x47, 0x43, 0x2e, 0xe3, 0x71, 0x2e, 0x6b, + 0x09, 0x3c, 0xf6, 0x95, 0xe0, 0xa7, 0x7c, 0x6d, 0xb3, 0xe9, 0x97, 0x27, 0x22, 0xa7, 0x7c, 0x0c, + 0x80, 0x02, 0x6e, 0xfc, 0x5b, 0x0e, 0xa6, 0x90, 0x06, 0xde, 0xbe, 0xee, 0xb5, 0x0a, 0xe4, 0xdb, + 0x3c, 0x07, 0x2a, 0xc7, 0x73, 0xa0, 0x78, 0x11, 0x91, 0xf2, 0x24, 0xe0, 0x64, 0x15, 0x4a, 0x1e, + 0x2b, 0x21, 0xf3, 0xcd, 0xc4, 0x88, 0x18, 0x2a, 0xe8, 0x80, 0x21, 0xea, 0x28, 0xfe, 0x89, 0xd1, + 0x62, 0xc4, 0x81, 0x89, 0x1d, 0x91, 0xdf, 0x2d, 0xf5, 0x71, 0xb6, 0xc9, 0x2a, 0x73, 0xc4, 0x79, + 0x7c, 0x5f, 0x25, 0x8c, 0x1f, 0x85, 0x3f, 0x51, 0x09, 0x31, 0xbe, 0x93, 0x03, 0x08, 0xaf, 0xc8, + 0x90, 0x5d, 0x28, 0xf8, 0xcf, 0xc7, 0x6c, 0xc2, 0x8c, 0xa9, 0x1a, 0x92, 0x49, 0x24, 0x4f, 0x4f, + 0x42, 0x50, 0x0b, 0xb8, 0x9f, 0x41, 0xf8, 0xf3, 0x51, 0xd0, 0xa5, 0x1e, 0x92, 0x3d, 0xf8, 0x0c, + 0xb3, 0x25, 0x9a, 0x61, 0x9e, 0xbb, 0xa6, 0x43, 0x0e, 0x45, 0x89, 0x65, 0xf6, 0x84, 0x3a, 0x80, + 0x94, 0x73, 0x9f, 0xdb, 0x13, 0xea, 0xac, 0x12, 0x35, 0x36, 0xcd, 0xc2, 0xcc, 0x3f, 0x32, 0x0b, + 0x73, 0xfc, 0xa1, 0x58, 0x98, 0xe4, 0x59, 0x98, 0xf0, 0xdc, 0x36, 0x5d, 0xc6, 0x1b, 0x32, 0xce, + 0xa2, 0xe3, 0x1f, 0x28, 0xc0, 0xa8, 0xf0, 0xe4, 0x05, 0x28, 0xf5, 0x7c, 0x5a, 0x5b, 0xbd, 0xba, + 0xe2, 0x51, 0xcb, 0x97, 0x67, 0xbb, 0x3a, 0xf2, 0x76, 0x33, 0x44, 0x61, 0x94, 0xce, 0xf8, 0xa3, + 0x1c, 0x4c, 0xd7, 0xea, 0x9e, 0xdd, 0x0d, 0xb4, 0x2a, 0xbc, 0xc1, 0xef, 0x11, 0x04, 0x26, 0xb3, + 0x3f, 0xe4, 0x54, 0x7c, 0x72, 0xc0, 0xb1, 0x96, 0x20, 0x8a, 0xdd, 0x79, 0x11, 0x20, 0x0c, 0x59, + 0xb0, 0xa1, 0x16, 0xca, 0x36, 0x39, 0x25, 0x6a, 0x1c, 0x8a, 0x12, 0x6b, 0xdc, 0x81, 0xd9, 0x1a, + 0xed, 0x98, 0xdd, 0x16, 0x3f, 0x66, 0x6e, 0x5b, 0xb6, 0xd3, 0x24, 0x4b, 0x50, 0xf4, 0x15, 0x2c, + 0x79, 0xc1, 0x46, 0x13, 0x63, 0x48, 0x43, 0x9e, 0x86, 0x89, 0x16, 0x3f, 0x05, 0x52, 0x07, 0xa7, + 0x7c, 0xd3, 0x10, 0x07, 0x43, 0x3e, 0x2a, 0x9c, 0xb1, 0x07, 0x93, 0x61, 0x71, 0xda, 0x20, 0x4d, + 0x98, 0xa9, 0x47, 0x4e, 0xe9, 0x90, 0x36, 0x1e, 0xf8, 0x06, 0x05, 0x3f, 0xa1, 0x5c, 0x89, 0x33, + 0xc1, 0x24, 0x57, 0xe3, 0x3f, 0x73, 0x30, 0xa3, 0x25, 0xcb, 0x90, 0x6b, 0x57, 0xd4, 0xd9, 0x76, + 0x9a, 0xd2, 0xf4, 0xbd, 0x9c, 0x31, 0x49, 0x2b, 0xde, 0x79, 0xe1, 0x64, 0x91, 0x00, 0x54, 0x62, + 0x98, 0xc4, 0x3d, 0xd3, 0x0e, 0x98, 0xc4, 0x91, 0x87, 0x22, 0xf1, 0xb6, 0xe0, 0x8e, 0x4a, 0x8c, + 0xf1, 0x17, 0x23, 0x50, 0xd0, 0x59, 0x62, 0x6f, 0x40, 0x9e, 0xef, 0xde, 0xf7, 0xcd, 0x85, 0xbf, + 0xa7, 0xe1, 0xcb, 0x2d, 0x01, 0x14, 0x9c, 0x18, 0x4b, 0x1e, 0xae, 0xcb, 0x6c, 0xa2, 0x17, 0x85, + 0x9f, 0x60, 0x7a, 0x01, 0x0a, 0x4e, 0xe4, 0x2a, 0x8c, 0x52, 0xc7, 0xca, 0x6c, 0x9c, 0xf3, 0x2b, + 0x64, 0x97, 0x1d, 0x0b, 0x19, 0x17, 0x7e, 0xd5, 0xc0, 0xf5, 0x3a, 0x66, 0x20, 0x0d, 0xbf, 0xf0, + 0xaa, 0x01, 0x87, 0xa2, 0xc4, 0x1a, 0x7f, 0x3f, 0x06, 0x50, 0xeb, 0xed, 0x74, 0xec, 0x60, 0xb3, + 0x1b, 0x1c, 0xc7, 0xae, 0x7d, 0x11, 0x26, 0xd5, 0xfd, 0xee, 0x1b, 0x61, 0x6c, 0x5e, 0x87, 0x5e, + 0xd6, 0x23, 0x38, 0x8c, 0x51, 0x32, 0xf3, 0x9d, 0x3a, 0x81, 0xb7, 0x2f, 0x54, 0xfb, 0x58, 0xdc, + 0x7c, 0xbf, 0xac, 0x31, 0x18, 0xa1, 0x22, 0x8b, 0x31, 0x37, 0x57, 0x64, 0x49, 0x4e, 0xdf, 0xc3, + 0x45, 0x7d, 0x09, 0xa6, 0xf4, 0xd7, 0x9a, 0xdd, 0x56, 0xe7, 0xd5, 0xda, 0x5c, 0xda, 0x8a, 0x22, + 0x31, 0x4e, 0x4b, 0x5e, 0x81, 0xe9, 0x78, 0x16, 0x94, 0x54, 0x82, 0x67, 0x65, 0xe9, 0xe9, 0x78, + 0xf2, 0x14, 0x26, 0xa8, 0x59, 0x9f, 0x5b, 0xde, 0x3e, 0xf6, 0x1c, 0xa9, 0x0d, 0x75, 0x9f, 0xaf, + 0x72, 0x28, 0x4a, 0x2c, 0xeb, 0x42, 0x56, 0x92, 0x7a, 0x02, 0xce, 0x43, 0xcd, 0x85, 0xb0, 0x0b, + 0x6b, 0x11, 0x1c, 0xc6, 0x28, 0x99, 0x04, 0xe9, 0x54, 0x40, 0x7c, 0x54, 0x13, 0x6e, 0x41, 0x17, + 0xa6, 0xdd, 0xb8, 0x1d, 0x27, 0x62, 0xc8, 0x9f, 0x3c, 0x66, 0x5e, 0x75, 0xac, 0xac, 0x48, 0x33, + 0x4a, 0x98, 0x7d, 0x09, 0xfe, 0xc6, 0x29, 0x98, 0xab, 0xf5, 0xba, 0xdd, 0xb6, 0x4d, 0x2d, 0xed, + 0xbb, 0x19, 0xaf, 0xc2, 0x8c, 0xcc, 0x94, 0xd7, 0xca, 0xfe, 0x81, 0xae, 0xb2, 0x19, 0x5f, 0x66, + 0xda, 0x6b, 0xdf, 0xa9, 0xb7, 0x3c, 0xd7, 0x91, 0x91, 0x33, 0xe2, 0x24, 0x55, 0x74, 0x56, 0xd7, + 0x3d, 0xaa, 0x90, 0x85, 0x53, 0x91, 0xa6, 0xe1, 0x8d, 0x6f, 0xe4, 0xe0, 0x4c, 0xa2, 0x0e, 0x52, + 0x8f, 0xbe, 0xd3, 0x5f, 0x93, 0xd5, 0xe1, 0x6a, 0x22, 0x03, 0x88, 0x83, 0x2b, 0xf3, 0x5f, 0x39, + 0x28, 0x6d, 0x6f, 0x5f, 0xd3, 0xb6, 0x2a, 0xc2, 0x59, 0x5f, 0xdc, 0x15, 0x58, 0x6e, 0x04, 0xd4, + 0x5b, 0x71, 0x3b, 0xdd, 0x36, 0xd5, 0x9d, 0x2b, 0x13, 0xf8, 0x6b, 0xa9, 0x14, 0x38, 0xa0, 0x24, + 0xd9, 0x80, 0x53, 0x51, 0x8c, 0x34, 0xd5, 0xe5, 0x65, 0x42, 0x91, 0x0a, 0xd6, 0x8f, 0xc6, 0xb4, + 0x32, 0x49, 0x56, 0xd2, 0x5e, 0x97, 0x17, 0xf9, 0xfb, 0x58, 0x49, 0x34, 0xa6, 0x95, 0x31, 0x36, + 0xa1, 0x14, 0x79, 0xc5, 0x81, 0xbc, 0x06, 0xb3, 0x75, 0xb7, 0xd3, 0xf5, 0xa8, 0xef, 0xdb, 0xae, + 0x73, 0x8d, 0xde, 0xa5, 0x6d, 0xd9, 0x64, 0x7e, 0x13, 0x60, 0x25, 0x81, 0xc3, 0x3e, 0x6a, 0xe3, + 0x7b, 0x4f, 0x80, 0xce, 0x3f, 0xff, 0x6d, 0x16, 0x7b, 0xa6, 0x93, 0xc6, 0xba, 0x3e, 0xaf, 0xc8, + 0x0f, 0x7f, 0x5e, 0xa1, 0x75, 0x59, 0xe2, 0xcc, 0xa2, 0x19, 0x9e, 0x59, 0x8c, 0x9f, 0xc0, 0x99, + 0x85, 0x36, 0x19, 0xfa, 0xce, 0x2d, 0xbe, 0x9e, 0x83, 0x49, 0xc7, 0xb5, 0xa8, 0xb2, 0xb0, 0xb8, + 0xcb, 0x58, 0xba, 0xb4, 0x39, 0x54, 0x27, 0x8a, 0xe3, 0x2b, 0xc9, 0x51, 0x1c, 0x57, 0x69, 0x45, + 0x1f, 0x45, 0x61, 0x4c, 0x34, 0x59, 0x83, 0x82, 0xd9, 0x68, 0xd8, 0x8e, 0x1d, 0xec, 0xcb, 0x44, + 0xfa, 0xf3, 0x69, 0x86, 0xe1, 0xb2, 0xa4, 0x11, 0x4e, 0x8a, 0xfa, 0x42, 0x5d, 0x96, 0x79, 0x79, + 0xfa, 0xde, 0x5a, 0x71, 0x08, 0x2f, 0x4f, 0xe5, 0x4a, 0x44, 0x02, 0x08, 0xea, 0x8e, 0x4d, 0x78, + 0x8d, 0xcd, 0x80, 0x71, 0x71, 0x94, 0xc5, 0x77, 0xa7, 0x82, 0x08, 0x58, 0x89, 0x63, 0x2e, 0x94, + 0x18, 0xd2, 0x54, 0x41, 0xd7, 0x12, 0xef, 0xdc, 0x6a, 0xe6, 0x90, 0xb5, 0x8e, 0xe3, 0xa6, 0x47, + 0x5d, 0xc9, 0xeb, 0x51, 0xaf, 0x62, 0xf2, 0x38, 0x5e, 0xc5, 0xd4, 0x40, 0x8f, 0xa2, 0x09, 0xe3, + 0x3e, 0xf7, 0x59, 0xf8, 0xf9, 0x5d, 0xe9, 0xd2, 0x4a, 0x36, 0x2d, 0x1f, 0x73, 0x7b, 0x44, 0xef, + 0x08, 0x18, 0x4a, 0xf6, 0xc4, 0x85, 0x82, 0x3a, 0x64, 0x94, 0x47, 0x80, 0xd9, 0x0c, 0xe5, 0x64, + 0xb8, 0x49, 0x65, 0x61, 0x0b, 0x28, 0x6a, 0x21, 0xe4, 0x4d, 0x18, 0xb5, 0xcc, 0xa6, 0x3c, 0x0c, + 0x7c, 0x2d, 0xf3, 0xfd, 0x00, 0x25, 0x86, 0xdb, 0xa0, 0xab, 0xcb, 0xeb, 0xc8, 0xb8, 0x92, 0xdd, + 0xf0, 0xfe, 0xdc, 0xec, 0x30, 0xbb, 0x63, 0xdc, 0x84, 0x10, 0x1e, 0x56, 0xdf, 0x0d, 0xbc, 0xcb, + 0x30, 0x71, 0xd7, 0x6d, 0xf7, 0x3a, 0xf2, 0x14, 0xb1, 0x74, 0x69, 0x3e, 0x6d, 0xb4, 0x6f, 0x71, + 0x92, 0x50, 0x09, 0x88, 0x6f, 0x1f, 0x55, 0x59, 0xf2, 0x95, 0x1c, 0x4c, 0xb3, 0xa5, 0xa3, 0xe7, + 0x81, 0x5f, 0x26, 0x43, 0xcc, 0xd4, 0x9b, 0x3e, 0xdb, 0x5a, 0xd5, 0x0c, 0xd3, 0x86, 0xe4, 0x46, + 0x4c, 0x02, 0x26, 0x24, 0x92, 0x2e, 0x14, 0x7c, 0xdb, 0xa2, 0x75, 0xd3, 0xf3, 0xcb, 0xa7, 0x4e, + 0x4c, 0x7a, 0x18, 0xa0, 0x91, 0xbc, 0x51, 0x4b, 0x21, 0x7f, 0xc8, 0x5f, 0x74, 0x90, 0xaf, 0xb1, + 0xc8, 0x17, 0x72, 0x4e, 0x9f, 0xe4, 0x0b, 0x39, 0xa7, 0xc4, 0x73, 0x0e, 0x31, 0x09, 0x98, 0x14, + 0x49, 0x36, 0xe1, 0x8c, 0xb8, 0x47, 0x97, 0xbc, 0x44, 0x79, 0x86, 0xe7, 0x26, 0x3c, 0x7e, 0x78, + 0x50, 0x39, 0xb3, 0x9c, 0x46, 0x80, 0xe9, 0xe5, 0xc8, 0x7b, 0x30, 0xe5, 0x45, 0x83, 0x7b, 0xfc, + 0xa4, 0x38, 0x6b, 0x77, 0xc6, 0xc2, 0x84, 0xe2, 0x94, 0x3a, 0x06, 0xc2, 0xb8, 0x2c, 0xf2, 0x1c, + 0x94, 0xba, 0x52, 0x53, 0xd9, 0x7e, 0x87, 0x1f, 0x32, 0x8f, 0x8a, 0x1d, 0x75, 0x2b, 0x04, 0x63, + 0x94, 0x86, 0xdc, 0x84, 0x52, 0xe0, 0xb6, 0xa9, 0x27, 0x13, 0xec, 0xca, 0x7c, 0xf0, 0x17, 0xd2, + 0x66, 0xf2, 0xb6, 0x26, 0x0b, 0xa3, 0x2e, 0x21, 0xcc, 0xc7, 0x28, 0x1f, 0xe6, 0x16, 0xa9, 0x3b, + 0xb3, 0x3c, 0x5d, 0xb5, 0xfc, 0x78, 0xdc, 0x2d, 0xaa, 0x45, 0x91, 0x18, 0xa7, 0x25, 0xeb, 0x30, + 0xd7, 0xf5, 0x6c, 0xd7, 0xb3, 0x83, 0xfd, 0x95, 0xb6, 0xe9, 0xfb, 0x9c, 0xc1, 0x3c, 0x67, 0xa0, + 0xe3, 0xc2, 0x5b, 0x49, 0x02, 0xec, 0x2f, 0x43, 0x2e, 0x42, 0x41, 0x01, 0xcb, 0x4f, 0x70, 0x5b, + 0x8d, 0xab, 0x25, 0x55, 0x16, 0x35, 0x76, 0xc0, 0xcd, 0xa0, 0xf3, 0x59, 0x6e, 0x06, 0x11, 0x0b, + 0xce, 0x9b, 0xbd, 0xc0, 0xe5, 0xe9, 0xbc, 0xf1, 0x22, 0xdb, 0xee, 0x2e, 0x75, 0xca, 0x17, 0xf8, + 0x5e, 0x75, 0xe1, 0xf0, 0xa0, 0x72, 0x7e, 0xf9, 0x1e, 0x74, 0x78, 0x4f, 0x2e, 0xa4, 0x03, 0x05, + 0x2a, 0x6f, 0x37, 0x95, 0x3f, 0x34, 0xc4, 0x26, 0x11, 0xbf, 0x22, 0xa5, 0x0e, 0x33, 0x05, 0x0c, + 0xb5, 0x08, 0xb2, 0x0d, 0xa5, 0x96, 0xeb, 0x07, 0xcb, 0x6d, 0xdb, 0xf4, 0xa9, 0x5f, 0x7e, 0x92, + 0xcf, 0x93, 0xd4, 0xfd, 0xed, 0x8a, 0x22, 0x0b, 0xa7, 0xc9, 0x95, 0xb0, 0x24, 0x46, 0xd9, 0x10, + 0xca, 0x03, 0x8d, 0x3d, 0x3e, 0x6a, 0xae, 0x13, 0xd0, 0x77, 0x83, 0xf2, 0x02, 0x6f, 0xcb, 0x33, + 0x69, 0x9c, 0xb7, 0x5c, 0xab, 0x16, 0xa7, 0x16, 0xab, 0x3c, 0x01, 0xc4, 0x24, 0x4f, 0xe6, 0xff, + 0x76, 0x5d, 0xab, 0xd6, 0xa5, 0xf5, 0x2d, 0x33, 0xa8, 0xb7, 0xca, 0x95, 0x78, 0x08, 0x61, 0x2b, + 0x82, 0xc3, 0x18, 0x25, 0xf3, 0x27, 0x3c, 0xea, 0xf3, 0x70, 0xc5, 0x16, 0x75, 0x2c, 0xdb, 0x69, + 0x6e, 0xb9, 0x96, 0x5f, 0x36, 0xf8, 0x10, 0x72, 0x7f, 0x02, 0xfb, 0xd1, 0x98, 0x56, 0x86, 0xd4, + 0x61, 0xa2, 0x23, 0x52, 0x20, 0xcb, 0x4f, 0x0d, 0x61, 0x56, 0xca, 0x34, 0x4a, 0xb1, 0x29, 0xc9, + 0x0f, 0x54, 0x9c, 0xc9, 0xb7, 0x73, 0x30, 0xe3, 0xc7, 0x7d, 0xc7, 0xf2, 0x87, 0x87, 0xd9, 0x0a, + 0xe3, 0xbc, 0xaa, 0xcf, 0xf0, 0xfe, 0x8e, 0x03, 0x8f, 0xfa, 0x41, 0x98, 0xac, 0x84, 0x68, 0x3d, + 0xcf, 0x2e, 0x2e, 0x3f, 0x3d, 0x54, 0xeb, 0x39, 0x0f, 0xd5, 0x7a, 0xfe, 0x81, 0x8a, 0xf3, 0xfc, + 0xab, 0x30, 0xd7, 0x67, 0xfd, 0x3e, 0x50, 0xe6, 0xeb, 0xcf, 0x98, 0xb7, 0x1b, 0xf1, 0x37, 0x4e, + 0xda, 0x4b, 0x5b, 0x87, 0x39, 0xf9, 0xde, 0x21, 0x33, 0x8d, 0xda, 0x3d, 0xfd, 0x0e, 0x4e, 0xe4, + 0xc4, 0x0b, 0x93, 0x04, 0xd8, 0x5f, 0x86, 0xcd, 0xe8, 0xba, 0x78, 0x08, 0x45, 0x64, 0x36, 0x8e, + 0xc5, 0x23, 0x3a, 0x2b, 0x11, 0x1c, 0xc6, 0x28, 0x8d, 0xbf, 0xcc, 0xc1, 0x54, 0x6c, 0x9b, 0x3e, + 0xf1, 0x70, 0xf8, 0x1a, 0x90, 0x8e, 0xed, 0x79, 0xae, 0x27, 0x6c, 0x9d, 0xeb, 0x4c, 0x67, 0xf9, + 0xf2, 0x72, 0x1e, 0xbf, 0x14, 0x72, 0xbd, 0x0f, 0x8b, 0x29, 0x25, 0x8c, 0xaf, 0x8e, 0x42, 0x78, + 0x2c, 0xaf, 0x6f, 0x42, 0xe5, 0x06, 0xde, 0x84, 0xfa, 0x18, 0x14, 0xee, 0xf8, 0xae, 0xb3, 0x15, + 0xde, 0x97, 0xd2, 0x43, 0xf1, 0x7a, 0x6d, 0xf3, 0x06, 0xa7, 0xd4, 0x14, 0x9c, 0xfa, 0x9d, 0x35, + 0xbb, 0x1d, 0xf4, 0xdf, 0x2a, 0x7a, 0xfd, 0x0d, 0x01, 0x47, 0x4d, 0x41, 0x96, 0xa0, 0xa8, 0x43, + 0x77, 0x32, 0x92, 0xa8, 0x3b, 0x41, 0x87, 0xf8, 0x30, 0xa4, 0xe1, 0x16, 0x95, 0x0c, 0x4f, 0x49, + 0x2f, 0x72, 0x2d, 0xa3, 0x2d, 0x9a, 0x88, 0x71, 0x09, 0x0d, 0xad, 0xc0, 0xa8, 0xa5, 0x44, 0xb3, + 0x38, 0xf2, 0x27, 0x99, 0xc5, 0xc1, 0xc6, 0x61, 0xe2, 0x16, 0xf5, 0xf8, 0x25, 0xc7, 0x67, 0x61, + 0xe2, 0xae, 0xf8, 0x29, 0x07, 0x22, 0x34, 0x6c, 0x05, 0x18, 0x15, 0x9e, 0x75, 0xd9, 0x4e, 0xcf, + 0x6e, 0x5b, 0xab, 0xe1, 0xd2, 0xd0, 0x5d, 0x56, 0x55, 0x08, 0x0c, 0x69, 0x58, 0x81, 0x26, 0xb3, + 0x4a, 0x3b, 0x1d, 0x3b, 0x48, 0x5e, 0x59, 0x58, 0x57, 0x08, 0x0c, 0x69, 0xc8, 0x33, 0x30, 0xde, + 0xb4, 0x83, 0x6d, 0xb3, 0x99, 0x0c, 0x39, 0xaf, 0x73, 0x28, 0x4a, 0x2c, 0x8f, 0x20, 0xdb, 0xc1, + 0xb6, 0x47, 0x79, 0xb8, 0xab, 0x2f, 0x9d, 0x7a, 0x3d, 0x82, 0xc3, 0x18, 0x25, 0xaf, 0x92, 0x2b, + 0x5b, 0x26, 0x23, 0xbb, 0x61, 0x95, 0x14, 0x02, 0x43, 0x1a, 0x36, 0xab, 0xea, 0x6e, 0xa7, 0x6b, + 0xb7, 0x65, 0x46, 0x40, 0x64, 0x56, 0xad, 0x48, 0x38, 0x6a, 0x0a, 0x46, 0xcd, 0xf4, 0x42, 0xc3, + 0xf5, 0x3a, 0xc9, 0x97, 0x2b, 0xb6, 0x24, 0x1c, 0x35, 0x85, 0xf1, 0x25, 0x98, 0x92, 0xa7, 0x0e, + 0x32, 0x1c, 0xb8, 0x1b, 0x1e, 0x05, 0x0d, 0xf3, 0x56, 0x69, 0xe4, 0x52, 0x51, 0xfc, 0x44, 0x25, + 0x76, 0xa0, 0xf4, 0xfd, 0x11, 0x28, 0x3c, 0xc2, 0xe7, 0x7e, 0xea, 0xb1, 0xe7, 0x7e, 0x4e, 0xe0, + 0x6d, 0x98, 0xb4, 0xa7, 0x7e, 0x76, 0x13, 0x4f, 0xfd, 0xac, 0x0c, 0x99, 0x91, 0x75, 0xcf, 0x67, + 0x7e, 0x7e, 0x9c, 0x83, 0xc9, 0x47, 0xf8, 0xc4, 0xcf, 0x4e, 0xfc, 0x89, 0x9f, 0x97, 0x87, 0x6a, + 0xda, 0x80, 0xe7, 0x7d, 0xbe, 0xfe, 0x38, 0xc4, 0x9e, 0xd6, 0x21, 0x0e, 0x14, 0xd5, 0x5e, 0xa7, + 0xb2, 0xdc, 0x5e, 0x1e, 0x2a, 0x9a, 0x15, 0x2e, 0x37, 0x05, 0xf1, 0x31, 0x14, 0x91, 0x38, 0xe1, + 0x19, 0x39, 0xd6, 0x09, 0xcf, 0x23, 0x8f, 0x94, 0xa6, 0xfb, 0x16, 0x63, 0x0f, 0xc5, 0xb7, 0x38, + 0x7f, 0xe2, 0xbe, 0xc5, 0x93, 0x0f, 0xdf, 0xb7, 0x88, 0x44, 0x52, 0xf2, 0x43, 0x44, 0x52, 0xde, + 0x83, 0xd3, 0xe2, 0xe7, 0x4a, 0xdb, 0xb4, 0x3b, 0x7a, 0xbe, 0xc8, 0x77, 0x4b, 0x9e, 0x4d, 0xf5, + 0x28, 0x98, 0xda, 0xf6, 0x03, 0xea, 0x04, 0xb7, 0xc2, 0x92, 0xe1, 0x5d, 0x93, 0x5b, 0x29, 0xec, + 0x30, 0x55, 0x48, 0xd2, 0xf5, 0x9e, 0x38, 0x86, 0xeb, 0xfd, 0xdd, 0x1c, 0x9c, 0x31, 0xd3, 0x5e, + 0xdd, 0x94, 0x01, 0xd8, 0xd7, 0x87, 0x0a, 0x84, 0xc4, 0x38, 0xca, 0x40, 0x46, 0x1a, 0x0a, 0xd3, + 0xeb, 0x40, 0x9e, 0x0e, 0x63, 0x69, 0xe2, 0xb8, 0x30, 0x3d, 0x0a, 0xf6, 0xad, 0x64, 0x0c, 0x1b, + 0x78, 0x6f, 0xd7, 0x86, 0x56, 0xd8, 0x27, 0x10, 0xc7, 0x2e, 0x0d, 0x11, 0xc7, 0x4e, 0xc4, 0x45, + 0x26, 0x4f, 0x28, 0x2e, 0xe2, 0xc0, 0xac, 0xdd, 0x31, 0x9b, 0x74, 0xab, 0xd7, 0x6e, 0x8b, 0x14, + 0x18, 0xbf, 0x3c, 0xc5, 0x79, 0xa7, 0xe6, 0x61, 0x5c, 0x73, 0xeb, 0x66, 0x3b, 0xf9, 0x12, 0x94, + 0xce, 0x46, 0xdb, 0x48, 0x70, 0xc2, 0x3e, 0xde, 0x6c, 0x5a, 0xf2, 0xdb, 0x08, 0x34, 0x60, 0xbd, + 0xcd, 0x43, 0xbc, 0xf2, 0x5d, 0xe4, 0x2b, 0x21, 0x18, 0xa3, 0x34, 0xe4, 0x2a, 0x14, 0x2d, 0xc7, + 0x97, 0xa9, 0x66, 0x33, 0x5c, 0x4b, 0x7d, 0x9c, 0xe9, 0xb6, 0xd5, 0x1b, 0x35, 0x9d, 0x64, 0x76, + 0x3e, 0xe5, 0x3a, 0x8b, 0xc6, 0x63, 0x58, 0x9e, 0x5c, 0xe7, 0xcc, 0xe4, 0x2b, 0x03, 0x22, 0x26, + 0x7b, 0x61, 0x80, 0x6b, 0xbf, 0x7a, 0x43, 0x3d, 0x8a, 0x30, 0x25, 0xc5, 0xc9, 0xb7, 0x03, 0x42, + 0x0e, 0x91, 0xa7, 0x6e, 0xe6, 0xee, 0xf9, 0xd4, 0xcd, 0x4d, 0x38, 0x17, 0x04, 0xed, 0xd8, 0x51, + 0x9f, 0xbc, 0x8b, 0xc4, 0x2f, 0xa6, 0xe5, 0xc5, 0xeb, 0x68, 0xdb, 0xdb, 0xd7, 0xd2, 0x48, 0x70, + 0x50, 0x59, 0x7e, 0xe6, 0x15, 0xb4, 0x75, 0x68, 0x6f, 0x61, 0x98, 0x33, 0xaf, 0xf0, 0x4c, 0x55, + 0x9e, 0x79, 0x85, 0x00, 0x8c, 0x4a, 0x19, 0x1c, 0xa2, 0x3c, 0x95, 0x31, 0x44, 0x19, 0x8d, 0x8a, + 0x9d, 0xbe, 0x67, 0x54, 0xac, 0x2f, 0x8a, 0x77, 0xe6, 0x01, 0xa2, 0x78, 0x6f, 0xf2, 0xab, 0x4a, + 0xeb, 0x2b, 0x32, 0x02, 0x9a, 0x2d, 0xcb, 0x97, 0x67, 0x47, 0x8b, 0xd4, 0x15, 0xfe, 0x13, 0x05, + 0x4f, 0xb2, 0x05, 0xa7, 0xbb, 0xae, 0xd5, 0x17, 0x04, 0xe4, 0x21, 0xcf, 0xc8, 0x65, 0xc1, 0xad, + 0x14, 0x1a, 0x4c, 0x2d, 0xc9, 0x15, 0x78, 0x08, 0xe7, 0x77, 0xd3, 0xf2, 0x52, 0x81, 0x87, 0x60, + 0x8c, 0xd2, 0x24, 0x63, 0x62, 0x8f, 0x3f, 0xb4, 0x98, 0xd8, 0xfc, 0x23, 0x88, 0x89, 0x3d, 0x71, + 0xec, 0x98, 0xd8, 0xef, 0xc3, 0xa9, 0xae, 0x6b, 0xad, 0xda, 0xbe, 0xd7, 0xe3, 0x6f, 0xb2, 0x57, + 0x7b, 0x56, 0x93, 0x06, 0x3c, 0xa8, 0x56, 0xba, 0x74, 0x29, 0x5a, 0x49, 0xf1, 0xd7, 0x13, 0x8b, + 0xf2, 0xaf, 0x27, 0xf8, 0x22, 0x4f, 0x94, 0xe2, 0xa6, 0x39, 0x8f, 0xa3, 0xa5, 0x20, 0x31, 0x4d, + 0x4e, 0x34, 0x8e, 0x76, 0xe1, 0xa1, 0xc5, 0xd1, 0x5e, 0x83, 0x82, 0xdf, 0xea, 0x05, 0x96, 0xbb, + 0xe7, 0xf0, 0xe8, 0x6a, 0x51, 0xbf, 0x2d, 0x59, 0xa8, 0x49, 0xf8, 0xd1, 0x41, 0x65, 0x56, 0xfd, + 0x8e, 0xe4, 0xef, 0x4b, 0x08, 0xf9, 0xd3, 0x1c, 0x9c, 0x4a, 0xde, 0x4a, 0x65, 0x7b, 0xbb, 0x31, + 0xc4, 0x83, 0xea, 0xb7, 0xfb, 0xf9, 0x89, 0xce, 0x4b, 0x41, 0x60, 0x9a, 0xf4, 0xd4, 0xf8, 0xe0, + 0x53, 0xbf, 0x06, 0xf1, 0xc1, 0xe1, 0x43, 0x77, 0xbf, 0x9c, 0x81, 0xe9, 0xc4, 0x3b, 0x8b, 0xfa, + 0x0a, 0x6f, 0xee, 0xb8, 0x57, 0x78, 0x63, 0x77, 0x6c, 0x47, 0x1e, 0xea, 0x1d, 0xdb, 0xd1, 0x47, + 0x73, 0xc7, 0x76, 0xf6, 0x24, 0xee, 0xd8, 0x46, 0x6e, 0x29, 0x8f, 0xdd, 0xe7, 0x96, 0xf2, 0x32, + 0xcc, 0xa8, 0xc4, 0x17, 0x2a, 0xef, 0x58, 0x8a, 0x70, 0x8b, 0xce, 0x09, 0x5e, 0x89, 0xa3, 0x31, + 0x49, 0x4f, 0xbe, 0x04, 0x79, 0x87, 0x17, 0x1c, 0x1f, 0xe2, 0xb5, 0x87, 0xf8, 0x54, 0xe0, 0xc6, + 0xa4, 0x7c, 0x70, 0x41, 0x9d, 0x89, 0xe6, 0x39, 0xec, 0x48, 0xfd, 0x40, 0x21, 0x94, 0xbc, 0x05, + 0x65, 0xb7, 0xd1, 0x68, 0xbb, 0xa6, 0x15, 0xde, 0x03, 0x56, 0x11, 0x20, 0x91, 0x03, 0x77, 0x41, + 0x32, 0x28, 0x6f, 0x0e, 0xa0, 0xc3, 0x81, 0x1c, 0x98, 0xcd, 0x3f, 0x13, 0xbf, 0xf9, 0xee, 0x97, + 0x8b, 0xbc, 0x99, 0x9f, 0x3d, 0x89, 0x66, 0xc6, 0xaf, 0xd9, 0xcb, 0x06, 0x87, 0xd9, 0xd8, 0x71, + 0x2c, 0x26, 0x6b, 0x42, 0x3c, 0x38, 0xdb, 0x4d, 0xf3, 0x88, 0x7c, 0x99, 0x99, 0x72, 0x2f, 0xbf, + 0x6c, 0x41, 0x4a, 0x39, 0x9b, 0xea, 0x53, 0xf9, 0x38, 0x80, 0x73, 0xf4, 0x86, 0x70, 0xe1, 0xa1, + 0xdd, 0x10, 0x8e, 0xbf, 0x59, 0x3a, 0xf5, 0x28, 0xde, 0x2c, 0x25, 0xbf, 0x4a, 0xbd, 0x98, 0x2e, + 0x1c, 0x89, 0xcf, 0x9f, 0xc4, 0x60, 0xff, 0xda, 0x5d, 0x4e, 0xff, 0xb3, 0x1c, 0xcc, 0x8b, 0x29, + 0x95, 0xf6, 0x20, 0xbd, 0xcc, 0x2f, 0x39, 0x81, 0x50, 0x1e, 0x3f, 0x44, 0xa8, 0xc5, 0x04, 0xf1, + 0xa0, 0xde, 0x3d, 0x84, 0x93, 0xaf, 0xa7, 0x6c, 0x7c, 0x33, 0x43, 0xb8, 0xd9, 0xa9, 0x09, 0x9a, + 0xd2, 0xf4, 0xba, 0xdf, 0x5e, 0xb7, 0x2f, 0xde, 0x23, 0x19, 0xf8, 0x32, 0xcb, 0xcd, 0xe8, 0x26, + 0x97, 0xf5, 0x71, 0x94, 0x50, 0xf7, 0x44, 0x5f, 0x85, 0xf9, 0x72, 0x0e, 0x4e, 0xa7, 0x29, 0x89, + 0x94, 0x5a, 0xd4, 0xe2, 0xb5, 0x18, 0x2e, 0x8e, 0x17, 0xad, 0xc3, 0xc9, 0xdc, 0x41, 0xff, 0x93, + 0xf1, 0x48, 0xec, 0x31, 0xa0, 0xdd, 0xdf, 0x66, 0x54, 0x66, 0xca, 0xa8, 0x8c, 0xbd, 0xf0, 0x9b, + 0x7f, 0x84, 0x2f, 0xfc, 0x8e, 0x67, 0x78, 0xe1, 0x77, 0xe2, 0x51, 0xbe, 0xf0, 0x5b, 0x38, 0xe6, + 0x0b, 0xbf, 0xc5, 0x5f, 0x9b, 0x17, 0x7e, 0x8d, 0x0f, 0x72, 0x30, 0xfb, 0xff, 0xfd, 0x2f, 0x4c, + 0x7e, 0x96, 0x83, 0xd3, 0xff, 0x07, 0xff, 0x5d, 0x72, 0x27, 0x7e, 0x9c, 0x72, 0xf9, 0x44, 0x1a, + 0x39, 0xe0, 0x58, 0xe5, 0x1d, 0x48, 0x73, 0xe8, 0x8e, 0x77, 0x55, 0x26, 0x96, 0x15, 0x30, 0x72, + 0xec, 0xac, 0x80, 0xff, 0x49, 0xe9, 0x55, 0xbe, 0x6f, 0xbe, 0xf7, 0xb0, 0xfe, 0xab, 0xe1, 0x74, + 0xda, 0x7f, 0x35, 0x24, 0xfe, 0x9b, 0x21, 0xf9, 0x56, 0xff, 0xc8, 0xc3, 0x7b, 0xab, 0xbf, 0xba, + 0xf8, 0x83, 0x0f, 0x16, 0x1e, 0xfb, 0xf1, 0x07, 0x0b, 0x8f, 0xfd, 0xe4, 0x83, 0x85, 0xc7, 0xde, + 0x3f, 0x5c, 0xc8, 0xfd, 0xe0, 0x70, 0x21, 0xf7, 0xe3, 0xc3, 0x85, 0xdc, 0x4f, 0x0e, 0x17, 0x72, + 0x3f, 0x3b, 0x5c, 0xc8, 0xfd, 0xf1, 0xbf, 0x2e, 0x3c, 0xf6, 0xf9, 0x82, 0x6a, 0xcc, 0xff, 0x06, + 0x00, 0x00, 0xff, 0xff, 0xe0, 0xce, 0x20, 0x19, 0x30, 0x74, 0x00, 0x00, } func (m *Amount) Marshal() (dAtA []byte, err error) { @@ -4832,6 +4836,11 @@ func (m *NodeStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i = encodeVarintGenerated(dAtA, i, uint64(m.EstimatedDuration)) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xc0 if m.MemoizationStatus != nil { { size, err := m.MemoizationStatus.MarshalToSizedBuffer(dAtA[:i]) @@ -7437,6 +7446,11 @@ func (m *WorkflowStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i = encodeVarintGenerated(dAtA, i, uint64(m.EstimatedDuration)) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x80 if m.Synchronization != nil { { size, err := m.Synchronization.MarshalToSizedBuffer(dAtA[:i]) @@ -8723,6 +8737,7 @@ func (m *NodeStatus) Size() (n int) { l = m.MemoizationStatus.Size() n += 2 + l + sovGenerated(uint64(l)) } + n += 2 + sovGenerated(uint64(m.EstimatedDuration)) return n } @@ -9645,6 +9660,7 @@ func (m *WorkflowStatus) Size() (n int) { l = m.Synchronization.Size() n += 1 + l + sovGenerated(uint64(l)) } + n += 2 + sovGenerated(uint64(m.EstimatedDuration)) return n } @@ -10339,6 +10355,7 @@ func (this *NodeStatus) String() string { `ResourcesDuration:` + mapStringForResourcesDuration + `,`, `HostNodeName:` + fmt.Sprintf("%v", this.HostNodeName) + `,`, `MemoizationStatus:` + strings.Replace(this.MemoizationStatus.String(), "MemoizationStatus", "MemoizationStatus", 1) + `,`, + `EstimatedDuration:` + fmt.Sprintf("%v", this.EstimatedDuration) + `,`, `}`, }, "") return s @@ -10994,6 +11011,7 @@ func (this *WorkflowStatus) String() string { `Conditions:` + repeatedStringForConditions + `,`, `StoredWorkflowSpec:` + strings.Replace(this.StoredWorkflowSpec.String(), "WorkflowSpec", "WorkflowSpec", 1) + `,`, `Synchronization:` + strings.Replace(this.Synchronization.String(), "SynchronizationStatus", "SynchronizationStatus", 1) + `,`, + `EstimatedDuration:` + fmt.Sprintf("%v", this.EstimatedDuration) + `,`, `}`, }, "") return s @@ -18071,6 +18089,25 @@ func (m *NodeStatus) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 24: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field EstimatedDuration", wireType) + } + m.EstimatedDuration = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.EstimatedDuration |= time.Duration(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -26236,6 +26273,25 @@ func (m *WorkflowStatus) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 16: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field EstimatedDuration", wireType) + } + m.EstimatedDuration = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.EstimatedDuration |= time.Duration(b&0x7F) << shift + if b < 0x80 { + break + } + } 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 bb751085d0df..8f554bed33bb 100644 --- a/pkg/apis/workflow/v1alpha1/generated.proto +++ b/pkg/apis/workflow/v1alpha1/generated.proto @@ -567,6 +567,8 @@ message NodeStatus { // Time at which this node completed optional k8s.io.apimachinery.pkg.apis.meta.v1.Time finishedAt = 11; + optional int64 estimatedDuration = 24; + // ResourcesDuration is indicative, but not accurate, resource duration. This is populated when the nodes completes. map resourcesDuration = 21; @@ -1319,6 +1321,8 @@ message WorkflowStatus { // Time at which this workflow completed optional k8s.io.apimachinery.pkg.apis.meta.v1.Time finishedAt = 3; + optional int64 estimatedDuration = 16; + // A human readable message indicating details about why the workflow is in this condition. optional string message = 4; diff --git a/pkg/apis/workflow/v1alpha1/openapi_generated.go b/pkg/apis/workflow/v1alpha1/openapi_generated.go index 01e8404cf5ca..f4354f645931 100644 --- a/pkg/apis/workflow/v1alpha1/openapi_generated.go +++ b/pkg/apis/workflow/v1alpha1/openapi_generated.go @@ -1915,6 +1915,12 @@ func schema_pkg_apis_workflow_v1alpha1_NodeStatus(ref common.ReferenceCallback) Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, + "estimatedDuration": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int64", + }, + }, "resourcesDuration": { SchemaProps: spec.SchemaProps{ Description: "ResourcesDuration is indicative, but not accurate, resource duration. This is populated when the nodes completes.", @@ -4392,6 +4398,12 @@ func schema_pkg_apis_workflow_v1alpha1_WorkflowStatus(ref common.ReferenceCallba Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, + "estimatedDuration": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int64", + }, + }, "message": { SchemaProps: spec.SchemaProps{ Description: "A human readable message indicating details about why the workflow is in this condition.", diff --git a/pkg/apis/workflow/v1alpha1/workflow_types.go b/pkg/apis/workflow/v1alpha1/workflow_types.go index 3e7d513d121a..c774608768a2 100644 --- a/pkg/apis/workflow/v1alpha1/workflow_types.go +++ b/pkg/apis/workflow/v1alpha1/workflow_types.go @@ -947,6 +947,8 @@ type WorkflowStatus struct { // Time at which this workflow completed FinishedAt metav1.Time `json:"finishedAt,omitempty" protobuf:"bytes,3,opt,name=finishedAt"` + EstimatedDuration time.Duration `json:"estimatedDuration,omitempty" protobuf:"varint,16,opt,name=estimatedDuration,casttype=time.Duration"` + // A human readable message indicating details about why the workflow is in this condition. Message string `json:"message,omitempty" protobuf:"bytes,4,opt,name=message"` @@ -1235,6 +1237,8 @@ type NodeStatus struct { // Time at which this node completed FinishedAt metav1.Time `json:"finishedAt,omitempty" protobuf:"bytes,11,opt,name=finishedAt"` + EstimatedDuration time.Duration `json:"estimatedDuration,omitempty" protobuf:"varint,24,opt,name=estimatedDuration,casttype=time.Duration"` + // ResourcesDuration is indicative, but not accurate, resource duration. This is populated when the nodes completes. ResourcesDuration ResourcesDuration `json:"resourcesDuration,omitempty" protobuf:"bytes,21,opt,name=resourcesDuration"` @@ -1333,6 +1337,13 @@ func (in *WorkflowStatus) AnyActiveSuspendNode() bool { return in.Nodes.Any(func(node NodeStatus) bool { return node.IsActiveSuspendNode() }) } +func (ws *WorkflowStatus) GetDuration() time.Duration { + if ws.FinishedAt.IsZero() { + return 0 + } + return ws.FinishedAt.Time.Sub(ws.StartedAt.Time) +} + // Pending returns whether or not the node is in pending state func (n NodeStatus) Pending() bool { return n.Phase == NodePending @@ -1401,6 +1412,13 @@ func (n *NodeStatus) IsActiveSuspendNode() bool { return n.Type == NodeTypeSuspend && n.Phase == NodeRunning } +func (n NodeStatus) GetDuration() time.Duration { + if n.FinishedAt.IsZero() { + return 0 + } + return n.FinishedAt.Sub(n.StartedAt.Time) +} + // S3Bucket contains the access information required for interfacing with an S3 bucket type S3Bucket struct { // Endpoint is the hostname of the bucket endpoint diff --git a/ui/src/app/shared/components/duration.tsx b/ui/src/app/shared/components/duration.tsx new file mode 100644 index 000000000000..c8d916f4c9be --- /dev/null +++ b/ui/src/app/shared/components/duration.tsx @@ -0,0 +1,16 @@ +import * as React from 'react'; +import {NodePhase} from '../../../models'; +import {formatDuration} from '../duration'; + +// duration panel in milliseconds +export const DurationPanel = (props: {phase: NodePhase; duration: number; estimatedDuration?: number}) => { + // (props.phase == 'Running' || props.phase == 'Pending') && + if (props.estimatedDuration && props.estimatedDuration > 0) { + return ( + <> + {formatDuration(props.duration / 1000)} ETA {formatDuration(props.estimatedDuration / 1000)} ({((100 * props.duration) / props.estimatedDuration).toFixed()}%) + + ); + } + return <>{formatDuration(props.duration / 1000)}; +}; diff --git a/ui/src/app/shared/components/resource-editor/resource-editor.tsx b/ui/src/app/shared/components/resource-editor/resource-editor.tsx index 5db616a467af..4dcf285bdf61 100644 --- a/ui/src/app/shared/components/resource-editor/resource-editor.tsx +++ b/ui/src/app/shared/components/resource-editor/resource-editor.tsx @@ -29,7 +29,11 @@ const LOCAL_STORAGE_KEY = 'ResourceEditorLang'; export class ResourceEditor extends React.Component, State> { private set lang(lang: string) { - this.setState({lang, value: stringify(parse(this.state.value), lang)}); + try { + this.setState({lang, error: null, value: stringify(parse(this.state.value), lang)}); + } catch (error) { + this.setState({error}); + } } private static saveLang(newLang: string) { diff --git a/ui/src/app/shared/services/workflows-service.ts b/ui/src/app/shared/services/workflows-service.ts index abe4becd7473..2e00be55d49c 100644 --- a/ui/src/app/shared/services/workflows-service.ts +++ b/ui/src/app/shared/services/workflows-service.ts @@ -33,6 +33,7 @@ export class WorkflowsService { 'items.status.phase', 'items.status.finishedAt', 'items.status.startedAt', + 'items.status.estimatedDuration', 'items.spec.suspend' ]; params.push(`fields=${fields.join(',')}`); diff --git a/ui/src/app/workflows/components/workflow-dag/workflow-dag.scss b/ui/src/app/workflows/components/workflow-dag/workflow-dag.scss index 35ba7585ce59..7fe622ff601b 100644 --- a/ui/src/app/workflows/components/workflow-dag/workflow-dag.scss +++ b/ui/src/app/workflows/components/workflow-dag/workflow-dag.scss @@ -26,6 +26,12 @@ stroke: $argo-color-gray-4; } + .progress { + fill: transparent; + stroke-width: 2; + stroke: $argo-color-gray-8; + } + .arrow { fill: $argo-color-gray-4; } diff --git a/ui/src/app/workflows/components/workflow-dag/workflow-dag.tsx b/ui/src/app/workflows/components/workflow-dag/workflow-dag.tsx index 49b66d222cdb..adb295bc5413 100644 --- a/ui/src/app/workflows/components/workflow-dag/workflow-dag.tsx +++ b/ui/src/app/workflows/components/workflow-dag/workflow-dag.tsx @@ -1,3 +1,4 @@ +// @ts-ignore import * as classNames from 'classnames'; import * as React from 'react'; @@ -218,16 +219,29 @@ export class WorkflowDag extends React.Component