diff --git a/assets/swagger.json b/assets/swagger.json index 5dda06c562605..99e4bfe390b01 100644 --- a/assets/swagger.json +++ b/assets/swagger.json @@ -4918,6 +4918,10 @@ "type": "string", "title": "ReleaseName is the Helm release name to use. If omitted it will use the application name" }, + "skipCrds": { + "type": "boolean", + "title": "SkipCrds skips custom resource definition installation step (Helm's --skip-crds)" + }, "valueFiles": { "type": "array", "title": "ValuesFiles is a list of Helm value files to use when generating a template", diff --git a/cmd/util/app.go b/cmd/util/app.go index d5a1ce8729f2b..c4173fe1aad14 100644 --- a/cmd/util/app.go +++ b/cmd/util/app.go @@ -44,6 +44,7 @@ type AppOptions struct { helmSetFiles []string helmVersion string helmPassCredentials bool + helmSkipCrds bool project string syncPolicy string syncOptions []string @@ -95,6 +96,7 @@ func AddAppFlags(command *cobra.Command, opts *AppOptions) { command.Flags().StringArrayVar(&opts.helmSets, "helm-set", []string{}, "Helm set values on the command line (can be repeated to set several values: --helm-set key1=val1 --helm-set key2=val2)") command.Flags().StringArrayVar(&opts.helmSetStrings, "helm-set-string", []string{}, "Helm set STRING values on the command line (can be repeated to set several values: --helm-set-string key1=val1 --helm-set-string key2=val2)") command.Flags().StringArrayVar(&opts.helmSetFiles, "helm-set-file", []string{}, "Helm set values from respective files specified via the command line (can be repeated to set several values: --helm-set-file key1=path1 --helm-set-file key2=path2)") + command.Flags().BoolVar(&opts.helmSkipCrds, "helm-skip-crds", false, "Skip helm crd installation step") command.Flags().StringVar(&opts.project, "project", "", "Application project name") command.Flags().StringVar(&opts.syncPolicy, "sync-policy", "", "Set the sync policy (one of: none, automated (aliases of automated: auto, automatic))") command.Flags().StringArrayVar(&opts.syncOptions, "sync-option", []string{}, "Add or remove a sync option, e.g add `Prune=false`. Remove using `!` prefix, e.g. `!Prune=false`") @@ -175,6 +177,8 @@ func SetAppSpecOptions(flags *pflag.FlagSet, spec *argoappv1.ApplicationSpec, ap setHelmOpt(&spec.Source, helmOpts{helmSetStrings: appOpts.helmSetStrings}) case "helm-set-file": setHelmOpt(&spec.Source, helmOpts{helmSetFiles: appOpts.helmSetFiles}) + case "helm-skip-crds": + setHelmOpt(&spec.Source, helmOpts{skipCrds: appOpts.helmSkipCrds}) case "directory-recurse": if spec.Source.Directory != nil { spec.Source.Directory.Recurse = appOpts.directoryRecurse @@ -394,6 +398,7 @@ type helmOpts struct { helmSetStrings []string helmSetFiles []string passCredentials bool + skipCrds bool } func setHelmOpt(src *argoappv1.ApplicationSource, opts helmOpts) { @@ -418,6 +423,9 @@ func setHelmOpt(src *argoappv1.ApplicationSource, opts helmOpts) { if opts.passCredentials { src.Helm.PassCredentials = opts.passCredentials } + if opts.skipCrds { + src.Helm.SkipCrds = opts.skipCrds + } for _, text := range opts.helmSets { p, err := argoappv1.NewHelmParameter(text, false) if err != nil { diff --git a/cmd/util/app_test.go b/cmd/util/app_test.go index 53071aafb688a..9240e94441922 100644 --- a/cmd/util/app_test.go +++ b/cmd/util/app_test.go @@ -59,6 +59,11 @@ func Test_setHelmOpt(t *testing.T) { setHelmOpt(&src, helmOpts{passCredentials: true}) assert.Equal(t, true, src.Helm.PassCredentials) }) + t.Run("HelmSkipCrds", func(t *testing.T) { + src := v1alpha1.ApplicationSource{} + setHelmOpt(&src, helmOpts{skipCrds: true}) + assert.Equal(t, true, src.Helm.SkipCrds) + }) } func Test_setKustomizeOpt(t *testing.T) { diff --git a/docs/user-guide/commands/argocd_admin_app_generate-spec.md b/docs/user-guide/commands/argocd_admin_app_generate-spec.md index d29cdd57e42be..327edf701b2c0 100644 --- a/docs/user-guide/commands/argocd_admin_app_generate-spec.md +++ b/docs/user-guide/commands/argocd_admin_app_generate-spec.md @@ -50,6 +50,7 @@ argocd admin app generate-spec APPNAME [flags] --helm-set stringArray Helm set values on the command line (can be repeated to set several values: --helm-set key1=val1 --helm-set key2=val2) --helm-set-file stringArray Helm set values from respective files specified via the command line (can be repeated to set several values: --helm-set-file key1=path1 --helm-set-file key2=path2) --helm-set-string stringArray Helm set STRING values on the command line (can be repeated to set several values: --helm-set-string key1=val1 --helm-set-string key2=val2) + --helm-skip-crds Skip helm crd installation step --helm-version string Helm version -h, --help help for generate-spec --ignore-missing-value-files Ignore locally missing valueFiles when setting helm template --values diff --git a/docs/user-guide/commands/argocd_app_create.md b/docs/user-guide/commands/argocd_app_create.md index 7a6d634389d03..8119c1d0ea663 100644 --- a/docs/user-guide/commands/argocd_app_create.md +++ b/docs/user-guide/commands/argocd_app_create.md @@ -50,6 +50,7 @@ argocd app create APPNAME [flags] --helm-set stringArray Helm set values on the command line (can be repeated to set several values: --helm-set key1=val1 --helm-set key2=val2) --helm-set-file stringArray Helm set values from respective files specified via the command line (can be repeated to set several values: --helm-set-file key1=path1 --helm-set-file key2=path2) --helm-set-string stringArray Helm set STRING values on the command line (can be repeated to set several values: --helm-set-string key1=val1 --helm-set-string key2=val2) + --helm-skip-crds Skip helm crd installation step --helm-version string Helm version -h, --help help for create --ignore-missing-value-files Ignore locally missing valueFiles when setting helm template --values diff --git a/docs/user-guide/commands/argocd_app_set.md b/docs/user-guide/commands/argocd_app_set.md index acafc3245616c..6ab5619190b86 100644 --- a/docs/user-guide/commands/argocd_app_set.md +++ b/docs/user-guide/commands/argocd_app_set.md @@ -24,6 +24,7 @@ argocd app set APPNAME [flags] --helm-set stringArray Helm set values on the command line (can be repeated to set several values: --helm-set key1=val1 --helm-set key2=val2) --helm-set-file stringArray Helm set values from respective files specified via the command line (can be repeated to set several values: --helm-set-file key1=path1 --helm-set-file key2=path2) --helm-set-string stringArray Helm set STRING values on the command line (can be repeated to set several values: --helm-set-string key1=val1 --helm-set-string key2=val2) + --helm-skip-crds Skip helm crd installation step --helm-version string Helm version -h, --help help for set --ignore-missing-value-files Ignore locally missing valueFiles when setting helm template --values diff --git a/docs/user-guide/helm.md b/docs/user-guide/helm.md index a4e29f1967649..2feb4db1af0f6 100644 --- a/docs/user-guide/helm.md +++ b/docs/user-guide/helm.md @@ -296,3 +296,23 @@ spec: helm: passCredentials: true ``` + +## Helm `--skip-crds` + +Helm installs custom resource definitions in the `crds` folder by default if they are not existing. +See the [CRD best practices](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/) for details. + +If needed, it is possible to skip the CRD installation step with the `helm-skip-crds` flag on the cli: + +```bash +argocd app set helm-guestbook --helm-skip-crds +``` + +Or using declarative syntax: + +```yaml +spec: + source: + helm: + skipCrds: true +``` diff --git a/manifests/core-install.yaml b/manifests/core-install.yaml index 8320d9b5acb48..519695ae208ce 100644 --- a/manifests/core-install.yaml +++ b/manifests/core-install.yaml @@ -267,6 +267,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -636,6 +640,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition installation + step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1011,6 +1019,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1403,6 +1415,10 @@ spec: to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1771,6 +1787,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -2127,6 +2147,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template diff --git a/manifests/crds/application-crd.yaml b/manifests/crds/application-crd.yaml index 5874b0f239877..e455a6283f293 100644 --- a/manifests/crds/application-crd.yaml +++ b/manifests/crds/application-crd.yaml @@ -266,6 +266,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -635,6 +639,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition installation + step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1010,6 +1018,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1402,6 +1414,10 @@ spec: to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1770,6 +1786,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -2126,6 +2146,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template diff --git a/manifests/ha/install.yaml b/manifests/ha/install.yaml index a71c1f229865e..3408192cf2826 100644 --- a/manifests/ha/install.yaml +++ b/manifests/ha/install.yaml @@ -267,6 +267,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -636,6 +640,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition installation + step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1011,6 +1019,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1403,6 +1415,10 @@ spec: to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1771,6 +1787,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -2127,6 +2147,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template diff --git a/manifests/install.yaml b/manifests/install.yaml index d0f98f0a034eb..3403fe6db5630 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -267,6 +267,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -636,6 +640,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition installation + step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1011,6 +1019,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1403,6 +1415,10 @@ spec: to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -1771,6 +1787,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template @@ -2127,6 +2147,10 @@ spec: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string + skipCrds: + description: SkipCrds skips custom resource definition + installation step (Helm's --skip-crds) + type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template diff --git a/pkg/apis/application/v1alpha1/generated.pb.go b/pkg/apis/application/v1alpha1/generated.pb.go index 80c12a5d3f56c..1404e8667568f 100644 --- a/pkg/apis/application/v1alpha1/generated.pb.go +++ b/pkg/apis/application/v1alpha1/generated.pb.go @@ -2633,434 +2633,436 @@ func init() { } var fileDescriptor_030104ce3b95bcac = []byte{ - // 6827 bytes of a gzipped FileDescriptorProto + // 6849 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x5b, 0x8c, 0x24, 0xc9, - 0x51, 0x57, 0xdd, 0xf3, 0xe8, 0x8e, 0x79, 0xec, 0x4e, 0xee, 0xe3, 0xc6, 0xc3, 0x79, 0x67, 0x55, + 0x51, 0x57, 0xdd, 0xf3, 0xe8, 0x8e, 0x79, 0xec, 0x4e, 0xee, 0xe3, 0xc6, 0xcb, 0x79, 0x67, 0x55, 0x27, 0xdb, 0x07, 0xb6, 0x67, 0xb8, 0xe5, 0x30, 0x87, 0xcf, 0x9c, 0x99, 0x9e, 0xd9, 0xc7, 0xec, - 0xce, 0xeb, 0x62, 0x66, 0x77, 0xf1, 0xd9, 0x98, 0xab, 0xa9, 0xce, 0xee, 0xae, 0x9d, 0xee, 0xaa, - 0xbe, 0xaa, 0xea, 0xd9, 0x69, 0x1b, 0x3f, 0x65, 0xf0, 0x09, 0x3f, 0x65, 0xf3, 0x61, 0x4b, 0x08, - 0xcc, 0x43, 0x48, 0x7c, 0x58, 0x88, 0x2f, 0x40, 0x88, 0x0f, 0xfc, 0x65, 0xc4, 0x07, 0x96, 0x40, - 0xb6, 0xc1, 0x62, 0xb0, 0x17, 0x90, 0x01, 0x09, 0x10, 0xe0, 0x1f, 0x56, 0x7c, 0xa0, 0x7c, 0x54, - 0x66, 0x56, 0x75, 0xf7, 0xce, 0xcc, 0x76, 0xed, 0xda, 0xb2, 0xf8, 0xeb, 0x8a, 0x88, 0x8c, 0x88, - 0x7c, 0x45, 0x46, 0x46, 0x46, 0x66, 0xc3, 0x5a, 0xdd, 0x8b, 0x1b, 0x9d, 0xdd, 0x05, 0x37, 0x68, - 0x2d, 0x3a, 0x61, 0x3d, 0x68, 0x87, 0xc1, 0x1d, 0xfe, 0xe3, 0xad, 0x6e, 0x75, 0x71, 0xff, 0xd2, - 0x62, 0x7b, 0xaf, 0xbe, 0xe8, 0xb4, 0xbd, 0x68, 0xd1, 0x69, 0xb7, 0x9b, 0x9e, 0xeb, 0xc4, 0x5e, - 0xe0, 0x2f, 0xee, 0x3f, 0xeb, 0x34, 0xdb, 0x0d, 0xe7, 0xd9, 0xc5, 0x3a, 0xf5, 0x69, 0xe8, 0xc4, - 0xb4, 0xba, 0xd0, 0x0e, 0x83, 0x38, 0x20, 0xef, 0xd0, 0xdc, 0x16, 0x12, 0x6e, 0xfc, 0xc7, 0x2f, - 0xb8, 0xd5, 0x85, 0xfd, 0x4b, 0x0b, 0xed, 0xbd, 0xfa, 0x02, 0xe3, 0xb6, 0x60, 0x70, 0x5b, 0x48, - 0xb8, 0xcd, 0xbd, 0xd5, 0xd0, 0xa5, 0x1e, 0xd4, 0x83, 0x45, 0xce, 0x74, 0xb7, 0x53, 0xe3, 0x5f, - 0xfc, 0x83, 0xff, 0x12, 0xc2, 0xe6, 0xec, 0xbd, 0xe7, 0xa3, 0x05, 0x2f, 0x60, 0xea, 0x2d, 0xba, - 0x41, 0x48, 0x17, 0xf7, 0x7b, 0x14, 0x9a, 0x7b, 0x4e, 0xd3, 0xb4, 0x1c, 0xb7, 0xe1, 0xf9, 0x34, - 0xec, 0xea, 0x3a, 0xb5, 0x68, 0xec, 0xf4, 0x2b, 0xb5, 0x38, 0xa8, 0x54, 0xd8, 0xf1, 0x63, 0xaf, - 0x45, 0x7b, 0x0a, 0xbc, 0xed, 0xa8, 0x02, 0x91, 0xdb, 0xa0, 0x2d, 0x27, 0x5b, 0xce, 0x7e, 0x15, - 0xa6, 0x96, 0x6e, 0x6f, 0x2f, 0x75, 0xe2, 0xc6, 0x72, 0xe0, 0xd7, 0xbc, 0x3a, 0xf9, 0x49, 0x98, - 0x70, 0x9b, 0x9d, 0x28, 0xa6, 0xe1, 0x86, 0xd3, 0xa2, 0xb3, 0xd6, 0x45, 0xeb, 0x99, 0x72, 0xe5, - 0xcc, 0x57, 0x0f, 0xe7, 0x9f, 0xb8, 0x77, 0x38, 0x3f, 0xb1, 0xac, 0x51, 0x68, 0xd2, 0x91, 0x1f, - 0x85, 0xf1, 0x30, 0x68, 0xd2, 0x25, 0xdc, 0x98, 0x2d, 0xf0, 0x22, 0xa7, 0x64, 0x91, 0x71, 0x14, - 0x60, 0x4c, 0xf0, 0xf6, 0xd7, 0x0b, 0x00, 0x4b, 0xed, 0xf6, 0x56, 0x18, 0xdc, 0xa1, 0x6e, 0x4c, - 0x5e, 0x81, 0x12, 0x6b, 0x85, 0xaa, 0x13, 0x3b, 0x5c, 0xda, 0xc4, 0xa5, 0x1f, 0x5f, 0x10, 0x95, - 0x59, 0x30, 0x2b, 0xa3, 0x7b, 0x8e, 0x51, 0x2f, 0xec, 0x3f, 0xbb, 0xb0, 0xb9, 0xcb, 0xca, 0xaf, - 0xd3, 0xd8, 0xa9, 0x10, 0x29, 0x0c, 0x34, 0x0c, 0x15, 0x57, 0xe2, 0xc3, 0x48, 0xd4, 0xa6, 0x2e, - 0x57, 0x6c, 0xe2, 0xd2, 0xda, 0xc2, 0x30, 0x43, 0x64, 0x41, 0x6b, 0xbe, 0xdd, 0xa6, 0x6e, 0x65, - 0x52, 0x4a, 0x1e, 0x61, 0x5f, 0xc8, 0xe5, 0x90, 0x7d, 0x18, 0x8b, 0x62, 0x27, 0xee, 0x44, 0xb3, - 0x45, 0x2e, 0x71, 0x23, 0x37, 0x89, 0x9c, 0x6b, 0x65, 0x5a, 0xca, 0x1c, 0x13, 0xdf, 0x28, 0xa5, - 0xd9, 0x7f, 0x67, 0xc1, 0xb4, 0x26, 0x5e, 0xf3, 0xa2, 0x98, 0xbc, 0xa7, 0xa7, 0x71, 0x17, 0x8e, - 0xd7, 0xb8, 0xac, 0x34, 0x6f, 0xda, 0xd3, 0x52, 0x58, 0x29, 0x81, 0x18, 0x0d, 0xdb, 0x82, 0x51, - 0x2f, 0xa6, 0xad, 0x68, 0xb6, 0x70, 0xb1, 0xf8, 0xcc, 0xc4, 0xa5, 0x6b, 0x79, 0xd5, 0xb3, 0x32, - 0x25, 0x85, 0x8e, 0xae, 0x32, 0xf6, 0x28, 0xa4, 0xd8, 0xdf, 0x03, 0xb3, 0x7e, 0xac, 0xc1, 0xc9, - 0xb3, 0x30, 0x11, 0x05, 0x9d, 0xd0, 0xa5, 0x48, 0xdb, 0x41, 0x34, 0x6b, 0x5d, 0x2c, 0xb2, 0xa1, - 0xc7, 0x46, 0xea, 0xb6, 0x06, 0xa3, 0x49, 0x43, 0x3e, 0x6d, 0xc1, 0x64, 0x95, 0x46, 0xb1, 0xe7, - 0x73, 0xf9, 0x89, 0xf2, 0x3b, 0x43, 0x2b, 0x9f, 0x00, 0x57, 0x34, 0xf3, 0xca, 0x59, 0x59, 0x91, - 0x49, 0x03, 0x18, 0x61, 0x4a, 0x3e, 0x9b, 0x71, 0x55, 0x1a, 0xb9, 0xa1, 0xd7, 0x66, 0xdf, 0x7c, - 0xcc, 0x18, 0x33, 0x6e, 0x45, 0xa3, 0xd0, 0xa4, 0x23, 0x3e, 0x8c, 0xb2, 0x19, 0x15, 0xcd, 0x8e, - 0x70, 0xfd, 0x57, 0x87, 0xd3, 0x5f, 0x36, 0x2a, 0x9b, 0xac, 0xba, 0xf5, 0xd9, 0x57, 0x84, 0x42, - 0x0c, 0xf9, 0x94, 0x05, 0xb3, 0x72, 0xc6, 0x23, 0x15, 0x0d, 0x7a, 0xbb, 0xe1, 0xc5, 0xb4, 0xe9, - 0x45, 0xf1, 0xec, 0x28, 0xd7, 0x61, 0xf1, 0x78, 0x63, 0xeb, 0x6a, 0x18, 0x74, 0xda, 0x37, 0x3c, - 0xbf, 0x5a, 0xb9, 0x28, 0x25, 0xcd, 0x2e, 0x0f, 0x60, 0x8c, 0x03, 0x45, 0x92, 0xcf, 0x5b, 0x30, - 0xe7, 0x3b, 0x2d, 0x1a, 0xb5, 0x1d, 0xd6, 0xb5, 0x02, 0x5d, 0x69, 0x3a, 0xee, 0x1e, 0xd7, 0x68, - 0xec, 0xe1, 0x34, 0xb2, 0xa5, 0x46, 0x73, 0x1b, 0x03, 0x59, 0xe3, 0x03, 0xc4, 0x92, 0xdf, 0xb6, - 0x60, 0x26, 0x08, 0xdb, 0x0d, 0xc7, 0xa7, 0xd5, 0x04, 0x1b, 0xcd, 0x8e, 0xf3, 0xa9, 0xf7, 0xde, - 0xe1, 0xba, 0x68, 0x33, 0xcb, 0x76, 0x3d, 0xf0, 0xbd, 0x38, 0x08, 0xb7, 0x69, 0x1c, 0x7b, 0x7e, - 0x3d, 0xaa, 0x9c, 0xbb, 0x77, 0x38, 0x3f, 0xd3, 0x43, 0x85, 0xbd, 0xfa, 0x90, 0xf7, 0xc3, 0x44, - 0xd4, 0xf5, 0xdd, 0xdb, 0x9e, 0x5f, 0x0d, 0xee, 0x46, 0xb3, 0xa5, 0x3c, 0xa6, 0xef, 0xb6, 0x62, - 0x28, 0x27, 0xa0, 0x16, 0x80, 0xa6, 0xb4, 0xfe, 0x1d, 0xa7, 0x87, 0x52, 0x39, 0xef, 0x8e, 0xd3, - 0x83, 0xe9, 0x01, 0x62, 0xc9, 0xc7, 0x2d, 0x98, 0x8a, 0xbc, 0xba, 0xef, 0xc4, 0x9d, 0x90, 0xde, - 0xa0, 0xdd, 0x68, 0x16, 0xb8, 0x22, 0xd7, 0x87, 0x6c, 0x15, 0x83, 0x65, 0xe5, 0x9c, 0xd4, 0x71, - 0xca, 0x84, 0x46, 0x98, 0x96, 0xdb, 0x6f, 0xa2, 0xe9, 0x61, 0x3d, 0x91, 0xef, 0x44, 0xd3, 0x83, - 0x7a, 0xa0, 0x48, 0xfb, 0xcf, 0x0b, 0x70, 0x3a, 0xbb, 0x06, 0x91, 0xdf, 0xb5, 0xe0, 0xd4, 0x9d, - 0xbb, 0xf1, 0x4e, 0xb0, 0x47, 0xfd, 0xa8, 0xd2, 0x65, 0x96, 0x82, 0x5b, 0xdf, 0x89, 0x4b, 0x6e, - 0xbe, 0xab, 0xdd, 0xc2, 0xf5, 0xb4, 0x94, 0xcb, 0x7e, 0x1c, 0x76, 0x2b, 0x4f, 0xca, 0xfa, 0x9c, - 0xba, 0x7e, 0x7b, 0xc7, 0xc4, 0x62, 0x56, 0xa9, 0xb9, 0x4f, 0x58, 0x70, 0xb6, 0x1f, 0x0b, 0x72, - 0x1a, 0x8a, 0x7b, 0xb4, 0x2b, 0x1c, 0x1c, 0x64, 0x3f, 0xc9, 0xcf, 0xc3, 0xe8, 0xbe, 0xd3, 0xec, - 0x50, 0xe9, 0x28, 0x5c, 0x1d, 0xae, 0x22, 0x4a, 0x33, 0x14, 0x5c, 0xdf, 0x5e, 0x78, 0xde, 0xb2, - 0xff, 0xb2, 0x08, 0x13, 0xc6, 0x52, 0xf1, 0x18, 0x9c, 0x9f, 0x20, 0xe5, 0xfc, 0xac, 0xe7, 0xb6, - 0xca, 0x0d, 0xf4, 0x7e, 0xee, 0x66, 0xbc, 0x9f, 0xcd, 0xfc, 0x44, 0x3e, 0xd0, 0xfd, 0x21, 0x31, - 0x94, 0x83, 0x36, 0x73, 0x6e, 0xd9, 0x2a, 0x3a, 0x92, 0x47, 0x17, 0x6e, 0x26, 0xec, 0x2a, 0x53, - 0xf7, 0x0e, 0xe7, 0xcb, 0xea, 0x13, 0xb5, 0x20, 0xfb, 0x1b, 0x16, 0x9c, 0x35, 0x74, 0x5c, 0x0e, - 0xfc, 0xaa, 0xc7, 0xbb, 0xf6, 0x22, 0x8c, 0xc4, 0xdd, 0x76, 0xe2, 0x41, 0xab, 0x96, 0xda, 0xe9, - 0xb6, 0x29, 0x72, 0x0c, 0xf3, 0x99, 0x5b, 0x34, 0x8a, 0x9c, 0x3a, 0xcd, 0xfa, 0xcc, 0xeb, 0x02, - 0x8c, 0x09, 0x9e, 0x84, 0x40, 0x9a, 0x4e, 0x14, 0xef, 0x84, 0x8e, 0x1f, 0x71, 0xf6, 0x3b, 0x5e, - 0x8b, 0xca, 0x06, 0xfe, 0xb1, 0xe3, 0x8d, 0x18, 0x56, 0xa2, 0x72, 0xfe, 0xde, 0xe1, 0x3c, 0x59, - 0xeb, 0xe1, 0x84, 0x7d, 0xb8, 0xdb, 0x9f, 0xb7, 0xe0, 0x7c, 0x7f, 0xb7, 0x86, 0xbc, 0x11, 0xc6, - 0x22, 0x1a, 0xee, 0xd3, 0x50, 0xd6, 0x4e, 0x77, 0x09, 0x87, 0xa2, 0xc4, 0x92, 0x45, 0x28, 0x2b, - 0x93, 0x2b, 0xeb, 0x38, 0x23, 0x49, 0xcb, 0xda, 0x4e, 0x6b, 0x1a, 0xd6, 0x68, 0xec, 0x43, 0x3a, - 0x41, 0xaa, 0xd1, 0xf8, 0x7e, 0x83, 0x63, 0xec, 0xbf, 0xb7, 0xe0, 0x94, 0xa1, 0xd5, 0x63, 0xf0, - 0x72, 0xfd, 0xb4, 0x97, 0xbb, 0x9a, 0xdb, 0x78, 0x1e, 0xe0, 0xe6, 0x7e, 0x65, 0x0c, 0x66, 0xcc, - 0x51, 0xcf, 0xcd, 0x31, 0xdf, 0x60, 0xd1, 0x76, 0x70, 0x13, 0xd7, 0x64, 0x9b, 0xeb, 0x0d, 0x96, - 0x00, 0x63, 0x82, 0x67, 0x8d, 0xd8, 0x76, 0xe2, 0x86, 0x6c, 0x70, 0xd5, 0x88, 0x5b, 0x4e, 0xdc, - 0x40, 0x8e, 0x21, 0x2f, 0xc2, 0x74, 0xec, 0x84, 0x75, 0x1a, 0x23, 0xdd, 0xf7, 0xa2, 0x64, 0xbe, - 0x94, 0x2b, 0xe7, 0x25, 0xed, 0xf4, 0x4e, 0x0a, 0x8b, 0x19, 0x6a, 0xf2, 0x2a, 0x8c, 0x34, 0x68, - 0xb3, 0x25, 0xfd, 0x9a, 0xed, 0xfc, 0x66, 0x38, 0xaf, 0xeb, 0x35, 0xda, 0x6c, 0x55, 0x4a, 0x4c, - 0x65, 0xf6, 0x0b, 0xb9, 0x28, 0xf2, 0x4b, 0x16, 0x94, 0xf7, 0x3a, 0x51, 0x1c, 0xb4, 0xbc, 0xf7, - 0xd1, 0xd9, 0x12, 0x17, 0xfc, 0x73, 0x39, 0x0b, 0xbe, 0x91, 0xf0, 0x17, 0xf3, 0x5d, 0x7d, 0xa2, - 0x96, 0x4c, 0x3e, 0x00, 0xe3, 0x7b, 0x51, 0xe0, 0xfb, 0x94, 0x79, 0x2a, 0x4c, 0x89, 0x5b, 0x79, - 0x2b, 0x21, 0xb8, 0x57, 0x26, 0x58, 0xdf, 0xca, 0x0f, 0x4c, 0x64, 0xf2, 0x66, 0xa8, 0x7a, 0x21, - 0x75, 0xe3, 0x20, 0xec, 0xce, 0xc2, 0x23, 0x69, 0x86, 0x95, 0x84, 0xbf, 0x68, 0x06, 0xf5, 0x89, - 0x5a, 0x32, 0xe9, 0xc2, 0x58, 0xbb, 0xd9, 0xa9, 0x7b, 0xfe, 0xec, 0x04, 0xd7, 0xe1, 0x66, 0xce, - 0x3a, 0x6c, 0x71, 0xe6, 0x15, 0x60, 0x46, 0x45, 0xfc, 0x46, 0x29, 0x90, 0x3c, 0x0d, 0xa3, 0x6e, - 0xc3, 0x09, 0xe3, 0xd9, 0x49, 0x3e, 0x66, 0xd5, 0x24, 0x5a, 0x66, 0x40, 0x14, 0x38, 0xfb, 0x37, - 0x0b, 0x30, 0x37, 0xb8, 0x62, 0x62, 0x36, 0xb9, 0x9d, 0x30, 0x12, 0xf6, 0xb9, 0x64, 0xce, 0x26, - 0x0e, 0xc6, 0x04, 0x4f, 0x3e, 0x62, 0xc1, 0xf8, 0x1d, 0xd9, 0xe3, 0x85, 0x47, 0xd2, 0xe3, 0xd7, - 0x65, 0x8f, 0x2b, 0x1d, 0xae, 0x27, 0xbd, 0x2e, 0xe5, 0x32, 0x75, 0xe9, 0x81, 0xdb, 0xec, 0x54, - 0x13, 0xcb, 0xa8, 0x48, 0x2f, 0x0b, 0x30, 0x26, 0x78, 0x46, 0xea, 0xf9, 0x82, 0x74, 0x24, 0x4d, - 0xba, 0xea, 0x4b, 0x52, 0x89, 0xb7, 0x3f, 0x3a, 0x0a, 0xe7, 0xfa, 0x4e, 0x3e, 0xb2, 0x00, 0xc0, - 0x7d, 0x96, 0x2b, 0x1e, 0xdb, 0x60, 0x8a, 0x5d, 0xf5, 0x34, 0x73, 0x31, 0x6e, 0x29, 0x28, 0x1a, - 0x14, 0xe4, 0x43, 0x00, 0x6d, 0x27, 0x74, 0x5a, 0x34, 0xa6, 0x61, 0x62, 0x27, 0x6f, 0x0c, 0xd7, - 0x4a, 0x4c, 0x8f, 0xad, 0x84, 0xa7, 0xf6, 0x71, 0x14, 0x28, 0x42, 0x43, 0x24, 0xdb, 0x43, 0x87, - 0xb4, 0x49, 0x9d, 0x88, 0x6e, 0xe8, 0xe5, 0x43, 0xed, 0xa1, 0x51, 0xa3, 0xd0, 0xa4, 0x63, 0xeb, - 0x18, 0xaf, 0x45, 0x24, 0xdb, 0x4a, 0xad, 0x63, 0xbc, 0x9e, 0x11, 0x4a, 0x2c, 0xf9, 0x8c, 0x05, - 0xd3, 0x35, 0xaf, 0x49, 0xb5, 0x74, 0xb9, 0xe3, 0xdd, 0x1c, 0xbe, 0x92, 0x57, 0x4c, 0xbe, 0xda, - 0x02, 0xa7, 0xc0, 0x11, 0x66, 0xc4, 0xb3, 0x6e, 0xde, 0xa7, 0x21, 0x37, 0xdd, 0x63, 0xe9, 0x6e, - 0xbe, 0x25, 0xc0, 0x98, 0xe0, 0xc9, 0x12, 0x9c, 0x6a, 0x3b, 0x51, 0xb4, 0x1c, 0xd2, 0x2a, 0xf5, - 0x63, 0xcf, 0x69, 0x8a, 0xfd, 0x68, 0x49, 0x3b, 0xd1, 0x5b, 0x69, 0x34, 0x66, 0xe9, 0xc9, 0xbb, - 0xe0, 0x49, 0xaf, 0xee, 0x07, 0x21, 0x5d, 0xf7, 0xa2, 0xc8, 0xf3, 0xeb, 0x7a, 0x18, 0x70, 0x4b, - 0x5c, 0xaa, 0xcc, 0x4b, 0x56, 0x4f, 0xae, 0xf6, 0x27, 0xc3, 0x41, 0xe5, 0xed, 0x2f, 0x16, 0x60, - 0x76, 0xd0, 0x8c, 0x20, 0x11, 0x1b, 0xf7, 0xf1, 0x2d, 0x27, 0x8c, 0xe4, 0xe6, 0x62, 0xc8, 0x3d, - 0xaa, 0xe4, 0x7b, 0xcb, 0x09, 0xcd, 0x19, 0xc4, 0x05, 0x60, 0x22, 0x89, 0xdc, 0x81, 0x91, 0xb8, - 0xe9, 0xe4, 0x14, 0xd4, 0x32, 0x24, 0x6a, 0x17, 0x70, 0x6d, 0x29, 0x42, 0x2e, 0x83, 0x3c, 0x05, - 0x23, 0x4d, 0x6f, 0x97, 0xb9, 0xca, 0x6c, 0x8a, 0xf1, 0x35, 0x6f, 0xcd, 0xdb, 0x8d, 0x90, 0x43, - 0xed, 0xaf, 0x5b, 0x7d, 0xda, 0x46, 0x2e, 0x09, 0x6c, 0xc8, 0x53, 0x7f, 0xdf, 0x0b, 0x03, 0xbf, - 0x45, 0xfd, 0x38, 0x1b, 0xa8, 0xbd, 0xac, 0x51, 0x68, 0xd2, 0x91, 0x8f, 0x5a, 0x7d, 0xe6, 0xea, - 0x90, 0x11, 0x4a, 0xa9, 0xd2, 0xb1, 0xa7, 0xab, 0xfd, 0x1f, 0x63, 0x7d, 0xac, 0xb3, 0x5a, 0x6e, - 0xc9, 0x25, 0x00, 0xe6, 0xeb, 0x6d, 0x85, 0xb4, 0xe6, 0x1d, 0xc8, 0x9a, 0x29, 0x96, 0x1b, 0x0a, - 0x83, 0x06, 0x55, 0x52, 0x66, 0xbb, 0x53, 0x63, 0x65, 0x0a, 0xbd, 0x65, 0x04, 0x06, 0x0d, 0x2a, - 0xf2, 0x1c, 0x8c, 0x79, 0x2d, 0xa7, 0x4e, 0x93, 0xf6, 0x7f, 0x8a, 0x4d, 0xfd, 0x55, 0x0e, 0xb9, - 0x7f, 0x38, 0x3f, 0xad, 0x14, 0xe2, 0x20, 0x94, 0xb4, 0xe4, 0x77, 0x2c, 0x98, 0x74, 0x83, 0x56, - 0x2b, 0xf0, 0xd7, 0x9c, 0x5d, 0xda, 0x4c, 0x02, 0x70, 0x77, 0x1e, 0x95, 0x33, 0xb2, 0xb0, 0x6c, - 0x08, 0x13, 0xdb, 0x5f, 0x15, 0x56, 0x34, 0x51, 0x98, 0xd2, 0xca, 0xb4, 0x10, 0xa3, 0x47, 0x58, - 0x88, 0x3f, 0xb2, 0x60, 0x46, 0x94, 0x5d, 0xf2, 0xfd, 0x20, 0x96, 0x71, 0x51, 0x11, 0x41, 0x0b, - 0x1e, 0x71, 0xb5, 0x0c, 0x89, 0xa2, 0x6e, 0xaf, 0x93, 0x6a, 0xce, 0xf4, 0xe0, 0xb1, 0x57, 0x49, - 0x72, 0x15, 0x66, 0x6a, 0x41, 0xe8, 0x52, 0xb3, 0x21, 0xa4, 0x79, 0x53, 0x8c, 0xae, 0x64, 0x09, - 0xb0, 0xb7, 0x0c, 0xb9, 0x05, 0xe7, 0x0d, 0xa0, 0xd9, 0x0e, 0xc2, 0xc2, 0x5d, 0x90, 0xdc, 0xce, - 0x5f, 0xe9, 0x4b, 0x85, 0x03, 0x4a, 0xcf, 0xbd, 0x13, 0x66, 0x7a, 0xfa, 0xaf, 0x4f, 0xec, 0xe1, - 0xac, 0x19, 0x7b, 0x28, 0x1b, 0x21, 0x83, 0xb9, 0x15, 0x38, 0xdf, 0xbf, 0xa5, 0x4e, 0xc2, 0xc5, - 0xfe, 0x75, 0x0b, 0x9e, 0x1c, 0xe0, 0x64, 0xa9, 0x4d, 0x97, 0x35, 0x68, 0xd3, 0x45, 0x1c, 0x28, - 0x52, 0x7f, 0x5f, 0x1a, 0x8b, 0x2b, 0xc3, 0x8d, 0x88, 0xcb, 0xfe, 0xbe, 0xe8, 0xe8, 0xf1, 0x7b, - 0x87, 0xf3, 0xc5, 0xcb, 0xfe, 0x3e, 0x32, 0xde, 0xf6, 0xaf, 0x8e, 0xa5, 0xf6, 0x75, 0xdb, 0x49, - 0x28, 0x81, 0x2b, 0x2a, 0x77, 0x75, 0x9b, 0x39, 0x8f, 0x45, 0x63, 0xdf, 0x2a, 0x0e, 0x08, 0xa4, - 0x38, 0xf2, 0x09, 0x8b, 0xc7, 0xe4, 0x93, 0xfd, 0xae, 0xf4, 0xfb, 0x1e, 0xcd, 0x11, 0x81, 0x19, - 0xe9, 0x4f, 0x80, 0x68, 0x4a, 0x67, 0x33, 0xb9, 0x2d, 0x42, 0x62, 0x59, 0xef, 0x2f, 0x89, 0xda, - 0x27, 0x78, 0x72, 0x00, 0x10, 0x75, 0x7d, 0x77, 0x2b, 0x68, 0x7a, 0x6e, 0x57, 0x06, 0x41, 0x72, - 0x88, 0xeb, 0x0a, 0x7e, 0xc2, 0x05, 0xd4, 0xdf, 0x68, 0xc8, 0x22, 0x5f, 0xb2, 0x60, 0x46, 0xac, - 0xf1, 0x2b, 0x5e, 0xad, 0x46, 0x43, 0xea, 0xbb, 0x34, 0xf1, 0x92, 0x6e, 0x0f, 0xa7, 0x41, 0x12, - 0x92, 0x5c, 0xcd, 0xb2, 0xd7, 0x53, 0xbc, 0x07, 0x85, 0xbd, 0xca, 0x90, 0x2a, 0x8c, 0x78, 0x7e, - 0x2d, 0x90, 0x86, 0xad, 0x32, 0x9c, 0x52, 0xab, 0x7e, 0x2d, 0xd0, 0x73, 0x85, 0x7d, 0x21, 0xe7, - 0x4e, 0xd6, 0xe0, 0x6c, 0x28, 0xf7, 0xc9, 0xd7, 0xbc, 0x88, 0xed, 0x36, 0xd6, 0xbc, 0x96, 0x17, - 0x73, 0xa3, 0x54, 0xac, 0xcc, 0xde, 0x3b, 0x9c, 0x3f, 0x8b, 0x7d, 0xf0, 0xd8, 0xb7, 0x94, 0xfd, - 0x5a, 0x39, 0x1d, 0x0c, 0x10, 0xa1, 0xae, 0x0f, 0x40, 0x39, 0x54, 0x87, 0x0b, 0xc2, 0x33, 0x5a, - 0xcb, 0xa7, 0x8d, 0x65, 0x8c, 0x4d, 0x45, 0x69, 0xf4, 0x31, 0x82, 0x96, 0xc8, 0x3c, 0x24, 0xd6, - 0xf3, 0x72, 0x5a, 0xe4, 0x30, 0xbe, 0xa4, 0x54, 0x1d, 0x4e, 0xec, 0xfa, 0x2e, 0x72, 0x19, 0x24, - 0x84, 0xb1, 0x06, 0x75, 0x9a, 0x71, 0x43, 0x46, 0xbb, 0xae, 0x0f, 0xeb, 0x71, 0x33, 0x5e, 0xd9, - 0x48, 0xa2, 0x80, 0xa2, 0x94, 0x44, 0x0e, 0x60, 0xbc, 0x21, 0x3a, 0x41, 0xae, 0xed, 0xeb, 0xc3, - 0x36, 0x6e, 0xaa, 0x67, 0xf5, 0xfc, 0x95, 0x00, 0x4c, 0xc4, 0x91, 0x5f, 0xb6, 0x00, 0xdc, 0x24, - 0x84, 0x98, 0x4c, 0x1f, 0xcc, 0xcd, 0xee, 0xa8, 0xe8, 0xa4, 0x76, 0x8d, 0x14, 0x28, 0x42, 0x43, - 0x32, 0x79, 0x05, 0x26, 0x43, 0xea, 0x06, 0xbe, 0xeb, 0x35, 0x69, 0x75, 0x29, 0xe6, 0x9b, 0x8c, - 0x93, 0x85, 0x1a, 0x4f, 0x33, 0xff, 0x04, 0x0d, 0x1e, 0x98, 0xe2, 0x48, 0x5e, 0xb3, 0x60, 0x5a, - 0x85, 0x51, 0x59, 0x87, 0x50, 0x19, 0x4e, 0x5a, 0xcb, 0x29, 0x68, 0xcb, 0x79, 0x56, 0x08, 0xdb, - 0x4c, 0xa5, 0x61, 0x98, 0x91, 0x4b, 0x5e, 0x06, 0x08, 0x76, 0x79, 0xc8, 0x92, 0x55, 0xb5, 0x74, - 0xe2, 0xaa, 0x4e, 0x8b, 0xe8, 0x7b, 0xc2, 0x01, 0x0d, 0x6e, 0xe4, 0x06, 0x80, 0x98, 0x36, 0x3b, - 0xdd, 0x36, 0xe5, 0x21, 0xa3, 0x72, 0xe5, 0xcd, 0x49, 0xe3, 0x6f, 0x2b, 0xcc, 0xfd, 0xc3, 0xf9, - 0xde, 0xbd, 0x38, 0x8f, 0x15, 0x1b, 0xc5, 0xc9, 0xfb, 0x61, 0x3c, 0xea, 0xb4, 0x5a, 0x8e, 0x0a, - 0xfd, 0x6c, 0xe5, 0xb7, 0x22, 0x0a, 0xbe, 0x7a, 0x6c, 0x4a, 0x00, 0x26, 0x12, 0x6d, 0x1f, 0x48, - 0x2f, 0x3d, 0x79, 0x0e, 0x26, 0xe9, 0x41, 0x4c, 0x43, 0xdf, 0x69, 0xde, 0xc4, 0xb5, 0x24, 0x58, - 0xc0, 0x3b, 0xff, 0xb2, 0x01, 0xc7, 0x14, 0x15, 0xb1, 0x95, 0xe7, 0x5d, 0xe0, 0xf4, 0xa0, 0x3d, - 0xef, 0xc4, 0xcf, 0xb6, 0xff, 0xa7, 0x90, 0xf2, 0x08, 0x76, 0x42, 0x4a, 0x49, 0x00, 0xa3, 0x7e, - 0x50, 0x55, 0x46, 0xef, 0x7a, 0x3e, 0x46, 0x6f, 0x23, 0xa8, 0x1a, 0xa7, 0xde, 0xec, 0x2b, 0x42, - 0x21, 0x87, 0x1f, 0x0b, 0x26, 0xe7, 0xa7, 0x1c, 0x21, 0x9d, 0xa0, 0x3c, 0x25, 0xab, 0x63, 0xc1, - 0x4d, 0x53, 0x10, 0xa6, 0xe5, 0x92, 0x3d, 0x18, 0x6d, 0x04, 0x51, 0x2c, 0xf6, 0x2a, 0x43, 0x7b, - 0x61, 0xd7, 0x82, 0x28, 0xe6, 0x4b, 0x98, 0xaa, 0x36, 0x83, 0x44, 0x28, 0x64, 0xd8, 0xdf, 0xb5, - 0x52, 0xa1, 0xa1, 0xdb, 0x4e, 0xec, 0x36, 0x2e, 0xef, 0xb3, 0xfd, 0xe3, 0x8d, 0xd4, 0xb1, 0xc6, - 0x4f, 0x99, 0xc7, 0x1a, 0xf7, 0x0f, 0xe7, 0xdf, 0x34, 0x28, 0x0d, 0xe9, 0x2e, 0xe3, 0xb0, 0xc0, - 0x59, 0x18, 0x27, 0x20, 0x1f, 0xb6, 0x60, 0xc2, 0x50, 0x4f, 0x2e, 0x28, 0x39, 0x46, 0xd8, 0x95, - 0x73, 0x65, 0x00, 0xd1, 0x14, 0x69, 0x7f, 0xce, 0x82, 0xf1, 0x8a, 0xe3, 0xee, 0x05, 0xb5, 0x1a, - 0x79, 0x0b, 0x94, 0xaa, 0x1d, 0x79, 0x80, 0x24, 0xea, 0xa7, 0xce, 0x05, 0x56, 0x24, 0x1c, 0x15, - 0x05, 0x1b, 0xc3, 0x35, 0xc7, 0x8d, 0x83, 0x90, 0xab, 0x5d, 0x14, 0x63, 0xf8, 0x0a, 0x87, 0xa0, - 0xc4, 0xb0, 0x4d, 0x7a, 0xcb, 0x39, 0x48, 0x0a, 0x67, 0xe3, 0x52, 0xeb, 0x1a, 0x85, 0x26, 0x9d, - 0xfd, 0x67, 0x65, 0x18, 0x97, 0x27, 0xb5, 0xc7, 0x3e, 0x6b, 0x49, 0xbc, 0xf8, 0xc2, 0x40, 0x2f, - 0x3e, 0x82, 0x31, 0x97, 0x27, 0x79, 0xc9, 0xa5, 0x74, 0xc8, 0x08, 0x9d, 0x54, 0x50, 0xe4, 0x8d, - 0x69, 0xb5, 0xc4, 0x37, 0x4a, 0x51, 0xe4, 0xb3, 0x16, 0x9c, 0x72, 0x03, 0xdf, 0xa7, 0xae, 0xb6, - 0xf3, 0x23, 0x79, 0x9c, 0x45, 0x2e, 0xa7, 0x99, 0xea, 0x68, 0x56, 0x06, 0x81, 0x59, 0xf1, 0xe4, - 0x05, 0x98, 0x12, 0x6d, 0x76, 0x2b, 0xb5, 0x3f, 0xd6, 0xa7, 0xf3, 0x26, 0x12, 0xd3, 0xb4, 0x64, - 0x41, 0xc4, 0x19, 0xf8, 0x71, 0x95, 0xd8, 0x23, 0xcb, 0xd0, 0xa8, 0x3a, 0xcf, 0x8a, 0xd0, 0xa0, - 0x20, 0x21, 0x90, 0x90, 0xd6, 0x42, 0x1a, 0x35, 0x90, 0xbe, 0xda, 0xa1, 0x51, 0xcc, 0xd7, 0x98, - 0xf1, 0x87, 0x3b, 0xb9, 0xc3, 0x1e, 0x4e, 0xd8, 0x87, 0x3b, 0xd9, 0x93, 0x8e, 0x6e, 0x29, 0x8f, - 0xe9, 0x24, 0xbb, 0x79, 0xa0, 0xbf, 0x3b, 0x0f, 0xa3, 0x51, 0xc3, 0x09, 0xab, 0x7c, 0x6d, 0x2b, - 0x56, 0xca, 0xcc, 0x96, 0x6c, 0x33, 0x00, 0x0a, 0x38, 0x59, 0x81, 0xd3, 0x99, 0xdc, 0x82, 0x88, - 0xaf, 0x5e, 0xa5, 0xca, 0xac, 0x64, 0x77, 0x3a, 0x93, 0x95, 0x10, 0x61, 0x4f, 0x09, 0x73, 0x13, - 0x34, 0x71, 0xc4, 0x26, 0xa8, 0x0b, 0x63, 0x4d, 0x11, 0x08, 0x98, 0xe4, 0xa6, 0xf2, 0xa5, 0x5c, - 0x1a, 0x60, 0xc1, 0x0c, 0xc0, 0xa8, 0xd1, 0x2e, 0x03, 0x0a, 0x52, 0x20, 0xf9, 0x14, 0x33, 0x68, - 0x46, 0xec, 0x60, 0x8a, 0x2b, 0x70, 0x2b, 0x1f, 0x05, 0x7a, 0x42, 0x25, 0xda, 0xba, 0x19, 0x81, - 0x08, 0x53, 0xfe, 0xdc, 0x4f, 0xc3, 0xc4, 0xc3, 0xc6, 0x1d, 0x5e, 0x84, 0xd3, 0x43, 0x45, 0x1c, - 0xbe, 0x67, 0x41, 0xd2, 0xaf, 0xcb, 0x8e, 0xdb, 0xa0, 0x6c, 0xc8, 0x90, 0x17, 0x61, 0x5a, 0x6d, - 0x23, 0x96, 0x83, 0x8e, 0x8c, 0x5b, 0x16, 0x75, 0xd8, 0x1b, 0x53, 0x58, 0xcc, 0x50, 0x93, 0x45, - 0x28, 0xb3, 0x76, 0x12, 0x45, 0x85, 0xd9, 0x55, 0x5b, 0x95, 0xa5, 0xad, 0x55, 0x59, 0x4a, 0xd3, - 0x90, 0x00, 0x66, 0x9a, 0x4e, 0x14, 0x73, 0x0d, 0xd8, 0xae, 0xe2, 0x21, 0xcf, 0xcd, 0x79, 0x6a, - 0xd5, 0x5a, 0x96, 0x11, 0xf6, 0xf2, 0xb6, 0xbf, 0x31, 0x02, 0x53, 0x29, 0xcb, 0xc8, 0x56, 0x95, - 0x4e, 0xc4, 0x5c, 0x1f, 0x15, 0x62, 0x51, 0xab, 0xca, 0x4d, 0x09, 0x47, 0x45, 0xc1, 0xa8, 0xdb, - 0x4e, 0x14, 0xdd, 0x0d, 0xc2, 0xaa, 0x34, 0xe5, 0x8a, 0x7a, 0x4b, 0xc2, 0x51, 0x51, 0xb0, 0xf5, - 0x65, 0x97, 0x3a, 0x21, 0x0d, 0x79, 0xaa, 0x49, 0x76, 0x7d, 0xa9, 0x68, 0x14, 0x9a, 0x74, 0xdc, - 0x28, 0xc7, 0xcd, 0x68, 0xb9, 0xe9, 0x51, 0x3f, 0x16, 0x6a, 0xe6, 0x63, 0x94, 0x77, 0xd6, 0xb6, - 0x4d, 0xa6, 0xda, 0x28, 0x67, 0x10, 0x98, 0x15, 0x4f, 0x3e, 0x66, 0xc1, 0x94, 0x73, 0x37, 0xd2, - 0x99, 0xc8, 0xdc, 0x2a, 0x0f, 0xbd, 0x48, 0xa5, 0x92, 0x9b, 0x2b, 0x33, 0xcc, 0xbc, 0xa7, 0x40, - 0x98, 0x16, 0x4a, 0xbe, 0x60, 0x01, 0xa1, 0x07, 0xd4, 0xdd, 0x0a, 0x83, 0x7d, 0xaf, 0x9a, 0xf4, - 0xa1, 0xdc, 0xfe, 0x0c, 0xe9, 0x6d, 0x5f, 0xee, 0xe1, 0x2b, 0xac, 0x7a, 0x2f, 0x1c, 0xfb, 0xe8, - 0x60, 0xff, 0x6d, 0x11, 0x26, 0x0c, 0x63, 0xdc, 0x77, 0x65, 0xb5, 0x7e, 0xc0, 0x56, 0xd6, 0xc2, - 0x09, 0x56, 0xd6, 0x0f, 0x41, 0xd9, 0x4d, 0x0c, 0x45, 0x3e, 0x99, 0xd3, 0x59, 0xf3, 0xa3, 0x6d, - 0x85, 0x02, 0xa1, 0x96, 0x49, 0xae, 0xc2, 0x8c, 0xc1, 0x46, 0x1a, 0x99, 0x11, 0x6e, 0x64, 0x54, - 0xa0, 0x69, 0x29, 0x4b, 0x80, 0xbd, 0x65, 0xc8, 0xb3, 0xcc, 0xab, 0xf5, 0x64, 0xbd, 0xc4, 0x2e, - 0x5e, 0x66, 0x25, 0x2f, 0x6d, 0xad, 0x26, 0x60, 0x34, 0x69, 0xec, 0x6f, 0x58, 0xaa, 0x73, 0x1f, - 0x43, 0x4a, 0xcb, 0x9d, 0x74, 0x4a, 0xcb, 0xe5, 0x5c, 0x9a, 0x79, 0x40, 0x3a, 0xcb, 0x06, 0x8c, - 0x2f, 0x07, 0xad, 0x96, 0xe3, 0x57, 0xc9, 0x1b, 0x60, 0xdc, 0x15, 0x3f, 0xe5, 0x36, 0x91, 0xe7, - 0x38, 0x48, 0x2c, 0x26, 0x38, 0xf2, 0x14, 0x8c, 0x38, 0x61, 0x3d, 0xd9, 0x1a, 0xf2, 0x43, 0xb1, - 0xa5, 0xb0, 0x1e, 0x21, 0x87, 0xda, 0x9f, 0x2f, 0x00, 0x2c, 0x07, 0xad, 0xb6, 0x13, 0xd2, 0xea, - 0x4e, 0xf0, 0xff, 0x31, 0x62, 0xb1, 0x63, 0xf8, 0xa4, 0x05, 0x84, 0xb5, 0x4a, 0xe0, 0x53, 0x5f, - 0x1f, 0xc4, 0xb1, 0xf5, 0xd2, 0x4d, 0xa0, 0x72, 0xf1, 0xd1, 0x73, 0x20, 0x41, 0xa0, 0xa6, 0x39, - 0xc6, 0x2e, 0xe2, 0xe9, 0x64, 0xc5, 0x2f, 0xa6, 0xd3, 0x2f, 0xf8, 0x99, 0xae, 0x74, 0x00, 0xec, - 0xaf, 0x14, 0xe0, 0xbc, 0x30, 0x5b, 0xeb, 0x8e, 0xef, 0xd4, 0x69, 0x8b, 0x69, 0x75, 0xdc, 0xd3, - 0x06, 0x97, 0xb9, 0xaf, 0x5e, 0x92, 0x6d, 0x31, 0xec, 0xe0, 0x14, 0x83, 0x4a, 0x0c, 0xa3, 0x55, - 0xdf, 0x8b, 0x91, 0x33, 0x27, 0x11, 0x94, 0x92, 0xbb, 0x30, 0xd2, 0xd8, 0xe4, 0x24, 0x48, 0xcd, - 0xbb, 0xab, 0x92, 0x3d, 0x2a, 0x41, 0x6c, 0x71, 0x6f, 0x06, 0xee, 0x1e, 0xd2, 0x76, 0xc0, 0x0d, - 0x4b, 0xc9, 0x98, 0xa5, 0x12, 0x8e, 0x8a, 0xc2, 0xfe, 0x8a, 0x05, 0x59, 0x93, 0xcb, 0x77, 0x83, - 0x22, 0xbb, 0x32, 0xbb, 0x1b, 0x4c, 0x27, 0x43, 0x9e, 0x20, 0xb7, 0xf0, 0x3d, 0x30, 0xe1, 0xc4, - 0x31, 0x6d, 0xb5, 0xc5, 0xd6, 0xa4, 0xf8, 0x70, 0xe1, 0xaf, 0xf5, 0xa0, 0xea, 0xd5, 0x3c, 0xbe, - 0x25, 0x31, 0xd9, 0xd9, 0x2f, 0x41, 0x29, 0x39, 0xf1, 0x39, 0x46, 0xd7, 0x3f, 0x9d, 0x72, 0x27, - 0x07, 0x0c, 0xae, 0xfb, 0x05, 0xe8, 0xb3, 0x66, 0xb2, 0x2a, 0x6b, 0xeb, 0x92, 0xaa, 0xf2, 0xc9, - 0x2c, 0x0c, 0x39, 0x10, 0xa7, 0x5d, 0x22, 0xce, 0xf2, 0xae, 0xbc, 0xd7, 0x7c, 0x7d, 0x00, 0x36, - 0x21, 0xf5, 0x53, 0x87, 0x60, 0xe4, 0x12, 0x80, 0x5e, 0x14, 0x64, 0x4e, 0x8a, 0x8a, 0xd4, 0xea, - 0xb5, 0x03, 0x0d, 0x2a, 0xe6, 0x02, 0x7a, 0x7e, 0x14, 0x3b, 0xcd, 0xe6, 0x35, 0xcf, 0x8f, 0xe5, - 0x5e, 0x56, 0x19, 0x8c, 0x55, 0x8d, 0x42, 0x93, 0x6e, 0xee, 0x6d, 0x46, 0xbf, 0x9c, 0xc4, 0xad, - 0xff, 0x64, 0x01, 0xa6, 0xaf, 0xfa, 0x9d, 0xad, 0xab, 0x5b, 0x9d, 0xdd, 0xa6, 0xe7, 0xde, 0xa0, - 0x5d, 0xd6, 0x69, 0x7b, 0xb4, 0xbb, 0xba, 0x22, 0x9b, 0x5d, 0x75, 0xda, 0x0d, 0x06, 0x44, 0x81, - 0x63, 0x6a, 0xd6, 0x3c, 0xbf, 0x4e, 0xc3, 0x76, 0xe8, 0x49, 0xdf, 0xdd, 0x50, 0xf3, 0x8a, 0x46, - 0xa1, 0x49, 0xc7, 0x78, 0x07, 0x77, 0x7d, 0x1a, 0x66, 0xad, 0xcd, 0x26, 0x03, 0xa2, 0xc0, 0x31, - 0xa2, 0x38, 0xec, 0x44, 0xb1, 0x6c, 0x31, 0x45, 0xb4, 0xc3, 0x80, 0x28, 0x70, 0x6c, 0x78, 0x44, - 0x9d, 0x5d, 0x1e, 0x85, 0xcd, 0x9c, 0x87, 0x6f, 0x0b, 0x30, 0x26, 0x78, 0x46, 0xba, 0x47, 0xbb, - 0x2b, 0x6c, 0xed, 0xcd, 0x24, 0xd7, 0xdc, 0x10, 0x60, 0x4c, 0xf0, 0xf6, 0x3f, 0x59, 0x40, 0xd2, - 0xcd, 0xf1, 0x18, 0x96, 0xef, 0x57, 0xd3, 0xcb, 0xf7, 0x90, 0x01, 0xf3, 0xb4, 0xfa, 0x03, 0x56, - 0xf1, 0xdf, 0xb2, 0x60, 0xd2, 0x3c, 0x3b, 0x21, 0xf5, 0x8c, 0x21, 0xda, 0x4c, 0x1b, 0xa2, 0xfb, - 0x87, 0xf3, 0x3f, 0xd3, 0xef, 0x62, 0x67, 0xdd, 0x8b, 0x83, 0x76, 0xf4, 0x56, 0xea, 0xd7, 0x3d, - 0x9f, 0xf2, 0xc8, 0xa0, 0x38, 0x73, 0x49, 0x1d, 0xcc, 0x2c, 0x07, 0x55, 0xfa, 0x10, 0x96, 0xcc, - 0xbe, 0x0d, 0x33, 0x3d, 0x19, 0x55, 0xc7, 0x30, 0x3a, 0x47, 0xe6, 0xcb, 0xda, 0x9f, 0xb2, 0x60, - 0x2a, 0x95, 0x90, 0x96, 0x93, 0x29, 0xe3, 0xb3, 0x22, 0xe0, 0xc7, 0x6e, 0xa1, 0xe7, 0x8b, 0xb8, - 0x5c, 0xc9, 0x98, 0x15, 0x1a, 0x85, 0x26, 0x9d, 0xfd, 0xb9, 0x02, 0x94, 0x92, 0x08, 0xee, 0x31, - 0x54, 0xf9, 0x84, 0x05, 0x53, 0x6a, 0x23, 0xcd, 0xdd, 0xeb, 0x5c, 0xd2, 0x7e, 0x98, 0x06, 0xea, - 0x6c, 0x96, 0xb9, 0xd7, 0xca, 0xcf, 0x47, 0x53, 0x18, 0xa6, 0x65, 0x93, 0x5b, 0x00, 0x51, 0x37, - 0x8a, 0x69, 0xcb, 0x70, 0xf4, 0x6d, 0x63, 0x76, 0x2c, 0xb8, 0x41, 0x48, 0xd9, 0x5c, 0xd8, 0x08, - 0xaa, 0x74, 0x5b, 0x51, 0x6a, 0x43, 0xa8, 0x61, 0x68, 0x70, 0xb2, 0x7f, 0xbf, 0x00, 0xa7, 0xb3, - 0x2a, 0x91, 0x77, 0xc3, 0x64, 0x22, 0xdd, 0xb8, 0xcf, 0x9a, 0x84, 0xad, 0x27, 0xd1, 0xc0, 0xdd, - 0x3f, 0x9c, 0x9f, 0xef, 0xbd, 0xd0, 0xbb, 0x60, 0x92, 0x60, 0x8a, 0x99, 0x88, 0x66, 0xc8, 0xb0, - 0x5b, 0xa5, 0xbb, 0xd4, 0x6e, 0xcb, 0x90, 0x84, 0x11, 0xcd, 0x30, 0xb1, 0x98, 0xa1, 0x26, 0x5b, - 0x70, 0xd6, 0x80, 0x6c, 0x50, 0xaf, 0xde, 0xd8, 0x0d, 0x42, 0x71, 0x71, 0xa2, 0x58, 0x79, 0x4a, - 0x72, 0x39, 0x8b, 0x7d, 0x68, 0xb0, 0x6f, 0x49, 0xe6, 0x60, 0xb8, 0x4e, 0xdb, 0x71, 0xbd, 0xb8, - 0x2b, 0x77, 0x2e, 0xca, 0x8e, 0x2c, 0x4b, 0x38, 0x2a, 0x0a, 0x7b, 0x1d, 0x46, 0x8e, 0x39, 0x82, - 0x8e, 0xb5, 0x2e, 0xbf, 0x04, 0x25, 0xc6, 0x8e, 0xd9, 0x8d, 0xbc, 0x58, 0x06, 0x50, 0x4a, 0xee, - 0xd1, 0x10, 0x1b, 0x8a, 0x9e, 0x93, 0x04, 0x8c, 0x54, 0xb5, 0x56, 0xa3, 0xa8, 0xc3, 0xbd, 0x0e, - 0x86, 0x24, 0x4f, 0x43, 0x91, 0x1e, 0xb4, 0xb3, 0x91, 0xa1, 0xcb, 0x07, 0x6d, 0x2f, 0xa4, 0x11, - 0x23, 0xa2, 0x07, 0x6d, 0x32, 0x07, 0x05, 0xaf, 0x2a, 0x17, 0x14, 0x90, 0x34, 0x85, 0xd5, 0x15, - 0x2c, 0x78, 0x55, 0xfb, 0x00, 0xca, 0xea, 0xe2, 0x0e, 0xd9, 0x4b, 0xec, 0xac, 0x95, 0xc7, 0x91, - 0x4b, 0xc2, 0x77, 0x80, 0x85, 0xed, 0x00, 0xe8, 0x64, 0xc1, 0xbc, 0xec, 0xcb, 0x45, 0x18, 0x71, - 0x03, 0x99, 0x35, 0x5c, 0xd2, 0x6c, 0xb8, 0x81, 0xe5, 0x18, 0xfb, 0x36, 0x4c, 0xdf, 0xf0, 0x83, - 0xbb, 0x3e, 0x5b, 0xf8, 0xae, 0x78, 0xb4, 0x59, 0x65, 0x8c, 0x6b, 0xec, 0x47, 0x76, 0x39, 0xe7, - 0x58, 0x14, 0x38, 0x75, 0xbb, 0xa5, 0x30, 0xe8, 0x76, 0x8b, 0xfd, 0x2b, 0x16, 0x9c, 0xce, 0x26, - 0x06, 0x7e, 0xdf, 0xf6, 0x23, 0x1f, 0x66, 0xca, 0x24, 0x99, 0x67, 0x9b, 0x6d, 0x71, 0xc6, 0xfd, - 0x3c, 0x4c, 0xee, 0x76, 0xbc, 0x66, 0x55, 0x7e, 0x4b, 0x7d, 0x54, 0x6e, 0x5d, 0xc5, 0xc0, 0x61, - 0x8a, 0x92, 0xf9, 0x69, 0xbb, 0x9e, 0xef, 0x84, 0xdd, 0x2d, 0xbd, 0x6e, 0x28, 0xf3, 0x54, 0x51, - 0x18, 0x34, 0xa8, 0xec, 0xbf, 0x2e, 0x82, 0xbe, 0x41, 0x44, 0x3c, 0x99, 0x42, 0x61, 0xe5, 0x11, - 0xe4, 0xda, 0xee, 0xfa, 0xae, 0xbe, 0xab, 0x54, 0xca, 0x64, 0x50, 0x7c, 0xdc, 0x62, 0x1e, 0xa2, - 0x17, 0x7b, 0x0e, 0x37, 0x16, 0x72, 0x5b, 0xb5, 0x95, 0xd3, 0x29, 0xfb, 0xaa, 0xe0, 0x1c, 0x84, - 0xa6, 0xcf, 0xa9, 0x84, 0xa1, 0x29, 0x99, 0xbc, 0x22, 0xcf, 0x25, 0x8a, 0xb9, 0x25, 0xe0, 0x94, - 0x32, 0x87, 0x11, 0x6d, 0x18, 0x0d, 0x69, 0x1c, 0x26, 0xa9, 0x4f, 0x37, 0x86, 0x3d, 0xa5, 0x8d, - 0xc3, 0xee, 0x76, 0xcc, 0xb6, 0x6e, 0x75, 0xc3, 0x31, 0xe2, 0x60, 0x14, 0x82, 0xec, 0x08, 0x48, - 0x6f, 0x5b, 0x9c, 0x30, 0xe6, 0xbb, 0x08, 0x65, 0xa7, 0x13, 0x07, 0x2d, 0xd6, 0x4c, 0xbc, 0x7b, - 0x4a, 0x46, 0x54, 0x3b, 0x41, 0xa0, 0xa6, 0xb1, 0x3f, 0x33, 0x0a, 0x99, 0x9c, 0x06, 0x72, 0x60, - 0xde, 0x7e, 0xb3, 0xf2, 0xbd, 0xfd, 0xa6, 0x94, 0xe9, 0x77, 0x03, 0x8e, 0xd4, 0x61, 0xb4, 0xdd, - 0x70, 0xa2, 0x64, 0x8e, 0xbe, 0x94, 0x34, 0xd3, 0x16, 0x03, 0xde, 0x3f, 0x9c, 0xff, 0xd9, 0xe3, - 0xf9, 0x81, 0x6c, 0xac, 0x2e, 0x8a, 0x04, 0x4f, 0x2d, 0x9a, 0xf3, 0x40, 0xc1, 0xdf, 0xf4, 0x04, - 0x8b, 0x47, 0xec, 0x69, 0x3f, 0x62, 0x89, 0x44, 0x38, 0xa4, 0x51, 0xa7, 0x19, 0xcb, 0xd1, 0xf0, - 0x52, 0x8e, 0xb3, 0x4c, 0x30, 0xd6, 0x19, 0x71, 0xe2, 0x1b, 0x0d, 0xa1, 0xe4, 0xdd, 0x50, 0x8e, - 0x62, 0x27, 0x8c, 0x1f, 0x32, 0x7f, 0x46, 0x35, 0xfa, 0x76, 0xc2, 0x04, 0x35, 0x3f, 0xf2, 0x32, - 0x40, 0xcd, 0xf3, 0xbd, 0xa8, 0xf1, 0x90, 0xc7, 0x89, 0x5c, 0xf1, 0x2b, 0x8a, 0x03, 0x1a, 0xdc, - 0x98, 0x75, 0xe3, 0x63, 0x5b, 0x04, 0x40, 0x4b, 0x7c, 0x2d, 0x55, 0xd6, 0x0d, 0x15, 0x06, 0x0d, - 0x2a, 0xfb, 0x83, 0x70, 0x26, 0x7b, 0xf3, 0x5c, 0x6e, 0x0d, 0xeb, 0x61, 0xd0, 0x69, 0x67, 0xd7, - 0x12, 0x7e, 0x33, 0x19, 0x05, 0x8e, 0xd9, 0xf8, 0x3d, 0xcf, 0xaf, 0x66, 0x6d, 0xfc, 0x0d, 0xcf, - 0xaf, 0x22, 0xc7, 0x1c, 0xe3, 0x5a, 0xe0, 0x9f, 0x58, 0x70, 0xf1, 0xa8, 0x0b, 0xf2, 0x6c, 0xdb, - 0x7f, 0xd7, 0x09, 0x7d, 0x79, 0xe5, 0x87, 0xdb, 0x8e, 0xdb, 0x4e, 0xe8, 0x23, 0x87, 0x92, 0x2e, - 0x8c, 0x89, 0x9c, 0x41, 0xe9, 0x1d, 0xbf, 0x94, 0xef, 0x75, 0x7d, 0xb6, 0xb7, 0x52, 0xd1, 0x1a, - 0x91, 0xaf, 0x88, 0x52, 0xa0, 0xfd, 0x6d, 0x0b, 0xc8, 0xe6, 0x3e, 0x0d, 0x43, 0xaf, 0x6a, 0x64, - 0x39, 0x92, 0xe7, 0x60, 0xf2, 0xce, 0xf6, 0xe6, 0xc6, 0x56, 0xe0, 0xf9, 0x3c, 0x59, 0xdf, 0xc8, - 0xad, 0xb9, 0x6e, 0xc0, 0x31, 0x45, 0x45, 0x96, 0x61, 0xe6, 0xce, 0xab, 0x6c, 0xc9, 0xb9, 0x7c, - 0xd0, 0x0e, 0x69, 0x14, 0xa9, 0x47, 0x2e, 0xca, 0xe2, 0x18, 0xeb, 0xfa, 0x4b, 0x19, 0x24, 0xf6, - 0xd2, 0x93, 0x4d, 0x38, 0xd7, 0xe2, 0x91, 0xbb, 0x2a, 0x5f, 0xf6, 0x23, 0x11, 0xc6, 0x0b, 0x93, - 0x4c, 0xf9, 0xd7, 0xdd, 0x3b, 0x9c, 0x3f, 0xb7, 0xde, 0x8f, 0x00, 0xfb, 0x97, 0xb3, 0xbf, 0x5c, - 0x80, 0x09, 0xe3, 0x91, 0x89, 0x63, 0x38, 0x38, 0x99, 0x77, 0x31, 0x0a, 0xc7, 0x7c, 0x17, 0xe3, - 0x19, 0x28, 0xb5, 0x83, 0xa6, 0xe7, 0x7a, 0x2a, 0xad, 0x7f, 0x92, 0x1f, 0x9e, 0x49, 0x18, 0x2a, - 0x2c, 0xb9, 0x0b, 0x65, 0x75, 0x5b, 0x5c, 0x26, 0xfa, 0xe5, 0xe5, 0xe2, 0xa9, 0xc9, 0xab, 0x6f, - 0x81, 0x6b, 0x59, 0xc4, 0x86, 0x31, 0x3e, 0xf2, 0x93, 0xa3, 0x01, 0x9e, 0x39, 0xc2, 0xa7, 0x44, - 0x84, 0x12, 0x63, 0xff, 0xeb, 0x28, 0x94, 0x91, 0xb6, 0x83, 0xe5, 0x90, 0x56, 0x23, 0xf2, 0x7a, - 0x28, 0x76, 0xc2, 0xa6, 0x6c, 0x2c, 0x15, 0x37, 0xba, 0x89, 0x6b, 0xc8, 0xe0, 0xa9, 0xe5, 0xa6, - 0x70, 0xa2, 0x23, 0xc6, 0xe2, 0x91, 0x47, 0x8c, 0x2f, 0xc0, 0x54, 0x14, 0x35, 0xb6, 0x42, 0x6f, - 0xdf, 0x89, 0xd9, 0x20, 0x96, 0x41, 0x16, 0x7d, 0xa6, 0xb3, 0x7d, 0x4d, 0x23, 0x31, 0x4d, 0x4b, - 0xae, 0xc2, 0x8c, 0x3e, 0xe8, 0xa3, 0x61, 0xcc, 0x63, 0x2a, 0x22, 0xfc, 0xa2, 0x8e, 0x54, 0xf4, - 0xd1, 0xa0, 0x24, 0xc0, 0xde, 0x32, 0x64, 0x05, 0x4e, 0xa7, 0x80, 0x4c, 0x11, 0x11, 0x9b, 0x51, - 0x49, 0x04, 0x29, 0x3e, 0x4c, 0x97, 0x9e, 0x12, 0x64, 0x1d, 0xce, 0x88, 0xfe, 0xe5, 0xaf, 0x0c, - 0xa8, 0x1a, 0x8d, 0x73, 0x46, 0x3f, 0x22, 0x19, 0x9d, 0xb9, 0xda, 0x4b, 0x82, 0xfd, 0xca, 0xb1, - 0x11, 0xaa, 0xc0, 0xab, 0x2b, 0xd2, 0x52, 0xaa, 0x11, 0xaa, 0xd8, 0xac, 0x56, 0xd1, 0xa4, 0x23, - 0xef, 0x82, 0x27, 0xf5, 0xa7, 0x08, 0xc9, 0x09, 0xf7, 0x61, 0x45, 0xe6, 0x50, 0xa8, 0xdb, 0x54, - 0x57, 0xfb, 0x92, 0x55, 0x71, 0x50, 0x79, 0xb2, 0x0b, 0x73, 0x0a, 0x75, 0x99, 0x99, 0x83, 0x76, - 0xe8, 0x45, 0xb4, 0xe2, 0x44, 0xf4, 0x66, 0xd8, 0xe4, 0x59, 0x17, 0x65, 0xfd, 0x52, 0xc6, 0x55, - 0x2f, 0xbe, 0xd6, 0x8f, 0x12, 0xd7, 0xf0, 0x01, 0x5c, 0x98, 0xb7, 0x42, 0x7d, 0x67, 0xb7, 0x49, - 0x37, 0x97, 0x57, 0x79, 0x2e, 0x86, 0xe1, 0xad, 0x5c, 0x4e, 0x10, 0xa8, 0x69, 0xd4, 0x5e, 0x61, - 0x72, 0xe0, 0x5e, 0xe1, 0x5b, 0x16, 0x4c, 0xa9, 0xc1, 0xfe, 0x18, 0x02, 0x68, 0xcd, 0x74, 0x00, - 0xed, 0xea, 0xb0, 0x6e, 0xa2, 0xd4, 0x7c, 0xc0, 0xce, 0xee, 0xbb, 0x65, 0x00, 0xfe, 0xf6, 0x90, - 0xc7, 0x73, 0x7c, 0x2f, 0xc2, 0x48, 0x48, 0xdb, 0x41, 0xd6, 0xf2, 0xf1, 0xe0, 0x3f, 0xc7, 0xfc, - 0xe0, 0x4e, 0xe7, 0x7e, 0x47, 0xce, 0xa3, 0xdf, 0xdf, 0x23, 0xe7, 0x6d, 0x38, 0xe7, 0xf9, 0x11, - 0x75, 0x3b, 0xa1, 0x5c, 0x39, 0xaf, 0x05, 0x91, 0xb2, 0x0e, 0xa5, 0xca, 0xeb, 0x25, 0xa3, 0x73, - 0xab, 0xfd, 0x88, 0xb0, 0x7f, 0x59, 0xd6, 0xa4, 0x09, 0x42, 0x5e, 0x26, 0xd2, 0xf1, 0x06, 0x09, - 0x47, 0x45, 0xa1, 0x27, 0xc4, 0x5a, 0x2d, 0xb9, 0x2d, 0x94, 0x99, 0x10, 0x6b, 0x57, 0xb6, 0x51, - 0xd3, 0xf4, 0xb7, 0x8a, 0xe5, 0x9c, 0xac, 0x22, 0x9c, 0xd8, 0x2a, 0x26, 0xf3, 0x73, 0x62, 0xe0, - 0x4b, 0x15, 0xc9, 0x62, 0x3d, 0x39, 0x70, 0xb1, 0x7e, 0x11, 0xa6, 0x3d, 0xbf, 0x41, 0x43, 0x2f, - 0xa6, 0x55, 0x3e, 0x17, 0x66, 0xa7, 0x78, 0x43, 0xa8, 0x50, 0xd8, 0x6a, 0x0a, 0x8b, 0x19, 0xea, - 0xb4, 0x51, 0x99, 0x3e, 0x86, 0x51, 0x19, 0x60, 0xca, 0x4f, 0xe5, 0x63, 0xca, 0x4f, 0x0f, 0x6f, - 0xca, 0x67, 0x1e, 0xa9, 0x29, 0x27, 0xb9, 0x98, 0xf2, 0xa7, 0x61, 0xb4, 0x1d, 0x06, 0x07, 0xdd, - 0xd9, 0x33, 0x69, 0xf7, 0x7c, 0x8b, 0x01, 0x51, 0xe0, 0xcc, 0xcc, 0xbb, 0xb3, 0x0f, 0xce, 0xbc, - 0xb3, 0x5f, 0x2b, 0xc0, 0x39, 0x6d, 0xe9, 0xd8, 0xf8, 0xf2, 0x6a, 0x6c, 0xae, 0xf3, 0x2b, 0x9d, - 0x22, 0xdb, 0xc3, 0x88, 0xc2, 0xea, 0x80, 0xae, 0xc2, 0xa0, 0x41, 0xc5, 0x83, 0x99, 0x34, 0xe4, - 0xf9, 0xc2, 0x59, 0x33, 0xb8, 0x2c, 0xe1, 0xa8, 0x28, 0xf8, 0xc3, 0x85, 0x34, 0x8c, 0xe5, 0x61, - 0x4e, 0x36, 0x15, 0x6a, 0x59, 0xa3, 0xd0, 0xa4, 0x63, 0xee, 0xa2, 0x9b, 0x4c, 0x41, 0x66, 0x0a, - 0x27, 0x85, 0xbb, 0xa8, 0x66, 0x9d, 0xc2, 0x26, 0xea, 0xf0, 0xa8, 0xf5, 0x68, 0xaf, 0x3a, 0x3c, - 0x0a, 0xa1, 0x28, 0xec, 0xff, 0xb6, 0xe0, 0x75, 0x7d, 0x9b, 0xe2, 0x31, 0x2c, 0x6f, 0x07, 0xe9, - 0xe5, 0x6d, 0x7b, 0xf8, 0xe5, 0xad, 0xa7, 0x16, 0x03, 0x96, 0xba, 0xbf, 0xb1, 0x60, 0x5a, 0xd3, - 0x3f, 0x86, 0xaa, 0x7a, 0xb9, 0x3e, 0x41, 0xa8, 0x55, 0x17, 0x79, 0xac, 0xa9, 0xba, 0x7d, 0x8b, - 0xd7, 0x4d, 0x6c, 0xe6, 0x96, 0xdc, 0xe4, 0x8d, 0x9f, 0x23, 0x36, 0x31, 0x5d, 0x18, 0xe3, 0xf7, - 0x9e, 0xa3, 0x7c, 0x36, 0x95, 0x69, 0xf9, 0x3c, 0xae, 0xaa, 0x37, 0x95, 0xfc, 0x33, 0x42, 0x29, - 0x90, 0x67, 0xb3, 0x7b, 0x11, 0xb3, 0x97, 0x55, 0x19, 0xff, 0xd5, 0xd9, 0xec, 0x12, 0x8e, 0x8a, - 0xc2, 0x6e, 0xc1, 0x6c, 0x9a, 0xf9, 0x0a, 0xad, 0xf1, 0xd8, 0xdd, 0xb1, 0xaa, 0xb9, 0x08, 0x65, - 0x87, 0x97, 0x5a, 0xeb, 0x38, 0xd9, 0x87, 0x7e, 0x96, 0x12, 0x04, 0x6a, 0x1a, 0xfb, 0xf7, 0x2c, - 0x38, 0xd3, 0xa7, 0x32, 0x39, 0xc6, 0xbd, 0x63, 0x6d, 0x05, 0x06, 0x3c, 0xbe, 0x54, 0xa5, 0x35, - 0x27, 0x89, 0x0e, 0x19, 0x56, 0x6d, 0x45, 0x80, 0x31, 0xc1, 0xdb, 0xff, 0x66, 0xc1, 0xa9, 0xb4, - 0xae, 0x11, 0xb9, 0x0e, 0x44, 0x54, 0x66, 0xc5, 0x8b, 0xdc, 0x60, 0x9f, 0x86, 0x5d, 0x56, 0x73, - 0xa1, 0xf5, 0x9c, 0xe4, 0x44, 0x96, 0x7a, 0x28, 0xb0, 0x4f, 0x29, 0x9e, 0x34, 0x5c, 0x55, 0xad, - 0x9d, 0x8c, 0x94, 0x5b, 0x79, 0x8e, 0x14, 0xdd, 0x99, 0xe6, 0x0e, 0x5a, 0x89, 0x44, 0x53, 0xbe, - 0xfd, 0xed, 0x11, 0x50, 0x07, 0x63, 0x3c, 0x0e, 0x91, 0x53, 0x14, 0x27, 0xf5, 0x1a, 0x54, 0xf1, - 0x04, 0xaf, 0x41, 0x8d, 0x3c, 0x28, 0x46, 0x20, 0x9e, 0x26, 0xd2, 0xbe, 0xa8, 0x61, 0xf4, 0x77, - 0x34, 0x0a, 0x4d, 0x3a, 0xa6, 0x49, 0xd3, 0xdb, 0xa7, 0xa2, 0xd0, 0x58, 0x5a, 0x93, 0xb5, 0x04, - 0x81, 0x9a, 0x86, 0x69, 0x52, 0xf5, 0x6a, 0x35, 0xb9, 0x53, 0x54, 0x9a, 0xb0, 0xd6, 0x41, 0x8e, - 0x61, 0x14, 0x8d, 0x20, 0xd8, 0x93, 0xfe, 0x9f, 0xa2, 0xb8, 0x16, 0x04, 0x7b, 0xc8, 0x31, 0xcc, - 0x63, 0xf1, 0x83, 0xb0, 0xe5, 0x34, 0xbd, 0xf7, 0xd1, 0xaa, 0x92, 0x22, 0xfd, 0x3e, 0xe5, 0xb1, - 0x6c, 0xf4, 0x92, 0x60, 0xbf, 0x72, 0x6c, 0x04, 0xb6, 0x43, 0x5a, 0xf5, 0xdc, 0xd8, 0xe4, 0x06, - 0xe9, 0x11, 0xb8, 0xd5, 0x43, 0x81, 0x7d, 0x4a, 0x91, 0x25, 0x38, 0x95, 0x1c, 0x6c, 0x26, 0xc9, - 0x27, 0xc2, 0x19, 0x54, 0x7e, 0x38, 0xa6, 0xd1, 0x98, 0xa5, 0x67, 0xd6, 0xa6, 0x25, 0x53, 0x80, - 0xb8, 0x9b, 0x68, 0x58, 0x9b, 0x24, 0x35, 0x08, 0x15, 0x85, 0xfd, 0x91, 0x22, 0x5b, 0x1d, 0x07, - 0x5c, 0xeb, 0x7d, 0x6c, 0x51, 0xc3, 0xf4, 0x88, 0x1c, 0x39, 0xc6, 0x88, 0x7c, 0x0e, 0x26, 0xef, - 0x44, 0x81, 0xaf, 0x22, 0x72, 0xa3, 0x03, 0x23, 0x72, 0x06, 0x55, 0xff, 0x88, 0xdc, 0x58, 0x5e, - 0x11, 0xb9, 0xf1, 0x87, 0x8c, 0xc8, 0xfd, 0xc5, 0x28, 0x9c, 0x57, 0x87, 0xdb, 0x34, 0xbe, 0x1b, - 0x84, 0x7b, 0x9e, 0x5f, 0xe7, 0x07, 0xc2, 0x5f, 0xb2, 0x60, 0x52, 0xcc, 0x17, 0xf9, 0xa2, 0x82, - 0x38, 0x00, 0xad, 0xe5, 0x74, 0xe9, 0x2d, 0x25, 0x6c, 0x61, 0xc7, 0x10, 0x94, 0x79, 0xde, 0xc2, - 0x44, 0x61, 0x4a, 0x23, 0xf2, 0x01, 0x80, 0xe4, 0x51, 0xb2, 0x5a, 0x4e, 0x4f, 0xb3, 0x25, 0xfa, - 0x21, 0xad, 0x69, 0xdf, 0x74, 0x47, 0x09, 0x41, 0x43, 0x20, 0x79, 0xcd, 0x52, 0x97, 0x4c, 0xc4, - 0x69, 0xd6, 0x2b, 0x8f, 0xa4, 0x6d, 0x8e, 0x73, 0xe7, 0x04, 0x61, 0xdc, 0xf3, 0xeb, 0x6c, 0x9c, - 0xc8, 0x20, 0xe6, 0x9b, 0xfa, 0x25, 0x53, 0xac, 0x05, 0x4e, 0xb5, 0xe2, 0x34, 0x1d, 0xdf, 0xa5, - 0xe1, 0xaa, 0x20, 0x37, 0x9f, 0x86, 0xe2, 0x00, 0x4c, 0x18, 0xf5, 0xdc, 0xea, 0x1c, 0x3d, 0xce, - 0xad, 0xce, 0xb9, 0x77, 0xc2, 0x4c, 0x4f, 0x67, 0x9e, 0xe8, 0xce, 0xc9, 0xc3, 0x5f, 0x57, 0xb1, - 0xff, 0x74, 0x4c, 0x2f, 0x5a, 0x1b, 0x41, 0x55, 0xdc, 0x2d, 0x0c, 0x75, 0x8f, 0x4a, 0xdf, 0x33, - 0xc7, 0x21, 0x62, 0x3c, 0x2f, 0xa5, 0x80, 0x68, 0x8a, 0x64, 0x63, 0xb4, 0xed, 0x84, 0xd4, 0x7f, - 0xd4, 0x63, 0x74, 0x4b, 0x09, 0x41, 0x43, 0x20, 0x69, 0xa4, 0x8e, 0x5b, 0xaf, 0x0c, 0x7f, 0xdc, - 0xca, 0xdc, 0xe1, 0xbe, 0x77, 0xc0, 0x3e, 0x6b, 0xc1, 0xb4, 0x9f, 0x1a, 0xb9, 0xf2, 0xc8, 0x6d, - 0xe7, 0x51, 0xcc, 0x0a, 0x71, 0xa7, 0x3b, 0x0d, 0xc3, 0x8c, 0xfc, 0x7e, 0x4b, 0xda, 0xe8, 0x09, - 0x97, 0x34, 0x7d, 0x49, 0x79, 0x6c, 0xd0, 0x25, 0x65, 0xe2, 0xab, 0xe7, 0x09, 0xc6, 0x73, 0x7f, - 0x9e, 0x00, 0xfa, 0x3c, 0x4d, 0x70, 0x1b, 0xca, 0x6e, 0x48, 0x9d, 0xf8, 0x21, 0x6f, 0xaa, 0xf3, - 0x07, 0xfd, 0x96, 0x13, 0x06, 0xa8, 0x79, 0xd9, 0x7f, 0x55, 0x84, 0xd3, 0x49, 0x8b, 0x24, 0x47, - 0x51, 0x6c, 0x7d, 0x14, 0x72, 0xb5, 0x73, 0xab, 0xd6, 0xc7, 0x6b, 0x09, 0x02, 0x35, 0x0d, 0xf3, - 0xc7, 0x3a, 0x11, 0xdd, 0x6c, 0x53, 0x7f, 0xcd, 0xdb, 0x8d, 0x78, 0x8b, 0x1b, 0xf9, 0x6c, 0x37, - 0x35, 0x0a, 0x4d, 0x3a, 0xe6, 0x8c, 0x0b, 0xbf, 0x38, 0xca, 0x9e, 0xec, 0x4a, 0x7f, 0x1b, 0x13, - 0x3c, 0xf9, 0x62, 0xdf, 0x77, 0x46, 0xf2, 0xc9, 0x69, 0xe8, 0x39, 0x81, 0x3b, 0xe1, 0x03, 0x23, - 0x9f, 0xb1, 0xe0, 0xd4, 0x5e, 0x2a, 0x99, 0x26, 0x31, 0xc9, 0x43, 0xa6, 0x68, 0xa6, 0x33, 0x74, - 0xf4, 0x10, 0x4e, 0xc3, 0x23, 0xcc, 0x4a, 0xb7, 0xff, 0xd3, 0x02, 0xd3, 0x3c, 0x1d, 0xcf, 0xb3, - 0x32, 0x5e, 0x8e, 0x2a, 0x1c, 0xf1, 0x72, 0x54, 0xe2, 0x84, 0x15, 0x8f, 0xe7, 0xf4, 0x8f, 0x9c, - 0xc0, 0xe9, 0x1f, 0x1d, 0xe8, 0xb5, 0xbd, 0x1e, 0x8a, 0x1d, 0xaf, 0x2a, 0xfd, 0x76, 0x7d, 0x18, - 0xb6, 0xba, 0x82, 0x0c, 0x6e, 0xff, 0xf1, 0xa8, 0xde, 0xa7, 0xcb, 0xa3, 0xf8, 0x1f, 0x8a, 0x6a, - 0xd7, 0x54, 0xc6, 0xad, 0xa8, 0xf9, 0x46, 0x4f, 0xc6, 0xed, 0x3b, 0x4e, 0x9e, 0x69, 0x21, 0x1a, - 0x68, 0x50, 0xc2, 0xed, 0xf8, 0x11, 0x69, 0x16, 0x77, 0xa0, 0xc4, 0xb6, 0x36, 0x3c, 0xe0, 0x56, - 0x4a, 0x29, 0x55, 0xba, 0x26, 0xe1, 0xf7, 0x0f, 0xe7, 0xdf, 0x7e, 0x72, 0xb5, 0x92, 0xd2, 0xa8, - 0xf8, 0x93, 0x08, 0xca, 0xec, 0x37, 0xcf, 0x08, 0x91, 0x9b, 0xa6, 0x9b, 0xca, 0x16, 0x25, 0x88, - 0x5c, 0xd2, 0x4d, 0xb4, 0x1c, 0xe2, 0x43, 0x99, 0xbf, 0x71, 0xc4, 0x85, 0x8a, 0xbd, 0xd5, 0x96, - 0xca, 0xcb, 0x48, 0x10, 0xf7, 0x0f, 0xe7, 0x5f, 0x38, 0xb9, 0x50, 0x55, 0x1c, 0xb5, 0x08, 0xfb, - 0x1f, 0x8b, 0x7a, 0xec, 0xca, 0x44, 0xeb, 0x1f, 0x8a, 0xb1, 0xfb, 0x7c, 0x66, 0xec, 0x5e, 0xec, - 0x19, 0xbb, 0xd3, 0xfa, 0x1d, 0xa0, 0xd4, 0x68, 0x7c, 0xdc, 0x0b, 0xec, 0xd1, 0xfb, 0x78, 0xee, - 0x59, 0xbc, 0xda, 0xf1, 0x42, 0x1a, 0x6d, 0x85, 0x1d, 0xdf, 0xf3, 0xeb, 0x7c, 0x38, 0x96, 0x4c, - 0xcf, 0x22, 0x85, 0xc6, 0x2c, 0xbd, 0xfd, 0x65, 0x7e, 0xde, 0x69, 0x24, 0x97, 0xb1, 0x5e, 0x6e, - 0xf2, 0x67, 0xa2, 0x44, 0x7a, 0xab, 0xea, 0x65, 0xf1, 0x36, 0x94, 0xc0, 0x91, 0xbb, 0x30, 0xbe, - 0x2b, 0x9e, 0xaa, 0xc8, 0xe7, 0x6e, 0x94, 0x7c, 0xf7, 0x82, 0xdf, 0x42, 0x4d, 0x1e, 0xc1, 0xb8, - 0xaf, 0x7f, 0x62, 0x22, 0xcd, 0xfe, 0x8d, 0x22, 0x9c, 0xca, 0x3c, 0x62, 0xc4, 0x36, 0xfc, 0xc9, - 0x8b, 0x55, 0xd9, 0xe8, 0xbc, 0x7a, 0x37, 0x5a, 0x51, 0x90, 0xf7, 0x02, 0x54, 0x69, 0xbb, 0x19, - 0x74, 0xb9, 0xe3, 0x32, 0x72, 0x62, 0xc7, 0x45, 0xf9, 0xba, 0x2b, 0x8a, 0x0b, 0x1a, 0x1c, 0x65, - 0x4e, 0xef, 0xa8, 0x78, 0x88, 0x23, 0x9d, 0xd3, 0x6b, 0x5c, 0x11, 0x1c, 0x7b, 0xbc, 0x57, 0x04, - 0x3d, 0x38, 0x25, 0x54, 0x54, 0x29, 0x5c, 0x0f, 0x91, 0xa9, 0x75, 0x86, 0x8d, 0xa8, 0x95, 0x34, - 0x1b, 0xcc, 0xf2, 0xb5, 0x3f, 0x5d, 0x60, 0xee, 0x9b, 0x68, 0xec, 0xf5, 0x24, 0x38, 0xfe, 0x46, - 0x18, 0x73, 0x3a, 0x71, 0x23, 0xe8, 0x79, 0x3a, 0x64, 0x89, 0x43, 0x51, 0x62, 0xc9, 0x1a, 0x8c, - 0x54, 0x9d, 0x38, 0xf9, 0xdf, 0x83, 0x93, 0x28, 0xa7, 0x23, 0x61, 0x4e, 0x4c, 0x91, 0x73, 0x21, - 0x4f, 0xc1, 0x48, 0xec, 0xd4, 0x53, 0x6f, 0x9a, 0xee, 0x38, 0xf5, 0x08, 0x39, 0xd4, 0x5c, 0x5d, - 0x46, 0x8e, 0x58, 0x5d, 0x5e, 0x30, 0xfe, 0x91, 0xc3, 0x38, 0x75, 0xe9, 0xfd, 0x17, 0x0d, 0x71, - 0xcb, 0x20, 0x45, 0x6b, 0xff, 0x04, 0x4c, 0x9a, 0xff, 0xb2, 0x71, 0xac, 0x4b, 0x4a, 0xf6, 0xbf, - 0x8c, 0xc0, 0x54, 0x2a, 0xcd, 0x2f, 0x35, 0xca, 0xad, 0x23, 0x47, 0x39, 0x3f, 0x4f, 0xeb, 0xf8, - 0x54, 0x26, 0x71, 0x1a, 0xe7, 0x69, 0x1d, 0x9f, 0xa2, 0xc0, 0xb1, 0x5e, 0xa9, 0x86, 0x5d, 0xec, - 0xf8, 0x32, 0x2a, 0xaf, 0x7a, 0x65, 0x85, 0x43, 0x51, 0x62, 0xd9, 0x06, 0x76, 0x32, 0xe2, 0x46, - 0x51, 0xd8, 0x08, 0x39, 0x6b, 0xae, 0xe7, 0xf1, 0xdc, 0x9a, 0x4c, 0x69, 0xe5, 0x1b, 0x7a, 0x13, - 0x82, 0x29, 0x89, 0xe4, 0x63, 0x96, 0xf9, 0xd0, 0xdc, 0x58, 0x1e, 0xa7, 0x49, 0xd9, 0x2c, 0x4a, - 0x31, 0x83, 0x1e, 0xfc, 0xde, 0x5c, 0xa4, 0x26, 0xf0, 0xf8, 0xa3, 0x99, 0xc0, 0xd0, 0x67, 0xf2, - 0xbe, 0x19, 0xca, 0x2d, 0xc7, 0xf7, 0x6a, 0x34, 0x8a, 0xc5, 0x3f, 0xe4, 0x94, 0xc5, 0xee, 0x69, - 0x3d, 0x01, 0xa2, 0xc6, 0xf3, 0xff, 0xa1, 0xe2, 0x15, 0x13, 0x9b, 0x98, 0xb2, 0xf1, 0x3f, 0x54, - 0x1a, 0x8c, 0x26, 0x8d, 0xfd, 0x07, 0x16, 0x9c, 0xeb, 0xdb, 0x18, 0x3f, 0xb8, 0xe1, 0x4f, 0xfb, - 0x0f, 0x0b, 0x70, 0xa6, 0x4f, 0x1a, 0x2c, 0xe9, 0x3e, 0xb2, 0xf7, 0x08, 0x65, 0x9e, 0xed, 0xd4, - 0xc0, 0xb1, 0x71, 0xb2, 0x65, 0x48, 0x2f, 0x05, 0xc5, 0xc7, 0xba, 0x14, 0xd8, 0x5f, 0x2e, 0x80, - 0xf1, 0x72, 0x26, 0xf9, 0xa0, 0x99, 0xf1, 0x6d, 0xe5, 0x95, 0x9d, 0x2c, 0x98, 0xab, 0x8c, 0x71, - 0xd1, 0x6a, 0xfd, 0x12, 0xc8, 0xb3, 0xe3, 0xb5, 0x70, 0xf4, 0x78, 0x25, 0xcd, 0x24, 0xb5, 0xbe, - 0x98, 0x7f, 0x6a, 0x7d, 0xb9, 0x27, 0xad, 0xfe, 0xd7, 0x2c, 0x31, 0xd2, 0x32, 0x55, 0xd2, 0x16, - 0xd6, 0x7a, 0x80, 0x85, 0x7d, 0x0b, 0x94, 0x22, 0xda, 0xac, 0x31, 0xcf, 0x4e, 0x5a, 0x62, 0x35, - 0x26, 0xb6, 0x25, 0x1c, 0x15, 0x05, 0xbf, 0x74, 0xdb, 0x6c, 0x06, 0x77, 0x2f, 0xb7, 0xda, 0x71, - 0x57, 0xda, 0x64, 0x7d, 0xe9, 0x56, 0x61, 0xd0, 0xa0, 0xb2, 0xff, 0xcb, 0x12, 0xdd, 0x29, 0x7d, - 0xf4, 0xe7, 0x33, 0x97, 0x21, 0x8f, 0xef, 0xde, 0xfe, 0x22, 0x80, 0xab, 0x1e, 0x33, 0xc8, 0xe7, - 0x41, 0x4d, 0xfd, 0x38, 0x82, 0xf9, 0xca, 0x63, 0x02, 0x43, 0x43, 0x5e, 0x6a, 0xf2, 0x14, 0x8f, - 0x9a, 0x3c, 0xf6, 0xbf, 0x5b, 0x90, 0x5a, 0x2c, 0x48, 0x1b, 0x46, 0x99, 0x06, 0xdd, 0x7c, 0x9e, - 0x5e, 0x30, 0x59, 0xb3, 0x89, 0x25, 0x87, 0x05, 0xff, 0x89, 0x42, 0x10, 0x69, 0x4a, 0xef, 0xbc, - 0x90, 0xc7, 0xf3, 0x20, 0xa6, 0x40, 0xe6, 0xdf, 0xcb, 0xff, 0x1c, 0x51, 0x9e, 0xbe, 0xfd, 0x3c, - 0xcc, 0xf4, 0x28, 0xc5, 0xaf, 0x47, 0x05, 0xc9, 0x7b, 0x13, 0xc6, 0x08, 0xe4, 0x97, 0x35, 0x51, - 0xe0, 0x98, 0x83, 0x7f, 0x3a, 0xcb, 0x9e, 0x7c, 0xc1, 0x82, 0x99, 0x28, 0xcb, 0xef, 0x51, 0xb5, - 0x9d, 0x8a, 0x5c, 0xf5, 0xa0, 0xb0, 0x57, 0x09, 0xfb, 0x7f, 0xa5, 0x79, 0x12, 0xff, 0xd1, 0xa6, - 0x16, 0x17, 0x6b, 0xe0, 0xe2, 0xc2, 0xa6, 0x98, 0xdb, 0xa0, 0xd5, 0x4e, 0xb3, 0x27, 0x37, 0x67, - 0x5b, 0xc2, 0x51, 0x51, 0xa4, 0x1e, 0xd6, 0x2b, 0x1e, 0xf9, 0xb0, 0xde, 0x73, 0x30, 0x69, 0xbe, - 0xa9, 0xc2, 0x43, 0x68, 0xf2, 0xf0, 0xc1, 0x7c, 0x7e, 0x05, 0x53, 0x54, 0x99, 0x87, 0xd9, 0x46, - 0x8f, 0x7c, 0x98, 0xed, 0x19, 0x28, 0xc9, 0x47, 0xc6, 0x92, 0xf8, 0xae, 0x48, 0xfc, 0x91, 0x30, - 0x54, 0x58, 0x66, 0x20, 0x5a, 0x8e, 0xdf, 0x71, 0x9a, 0xac, 0x85, 0x64, 0x3e, 0xa0, 0x9a, 0x59, - 0xeb, 0x0a, 0x83, 0x06, 0x15, 0xab, 0x71, 0xec, 0xb5, 0xe8, 0xcb, 0x81, 0x9f, 0x44, 0x46, 0x54, - 0x8d, 0x77, 0x24, 0x1c, 0x15, 0x85, 0xfd, 0xcf, 0x16, 0x64, 0x5f, 0x48, 0x4a, 0xe5, 0x20, 0x5a, - 0x47, 0xe6, 0x20, 0xa6, 0xf3, 0xab, 0x0a, 0xc7, 0xca, 0xaf, 0x32, 0x53, 0x9f, 0x8a, 0x0f, 0x4c, - 0x7d, 0x7a, 0x83, 0xbe, 0x10, 0x2f, 0x72, 0xa4, 0x26, 0xfa, 0x5d, 0x86, 0x27, 0x36, 0x8c, 0xb9, - 0x8e, 0x4a, 0xf1, 0x9e, 0x14, 0x6e, 0xd5, 0xf2, 0x12, 0x27, 0x92, 0x98, 0xca, 0xc2, 0x57, 0xbf, - 0x73, 0xe1, 0x89, 0xaf, 0x7d, 0xe7, 0xc2, 0x13, 0xdf, 0xfc, 0xce, 0x85, 0x27, 0x3e, 0x7c, 0xef, - 0x82, 0xf5, 0xd5, 0x7b, 0x17, 0xac, 0xaf, 0xdd, 0xbb, 0x60, 0x7d, 0xf3, 0xde, 0x05, 0xeb, 0xdb, - 0xf7, 0x2e, 0x58, 0x9f, 0xfd, 0x87, 0x0b, 0x4f, 0xbc, 0x5c, 0x4a, 0x46, 0xf6, 0xff, 0x05, 0x00, - 0x00, 0xff, 0xff, 0x67, 0x2c, 0xb8, 0x6b, 0x1f, 0x78, 0x00, 0x00, + 0xce, 0xee, 0xce, 0xc5, 0xcc, 0xee, 0xe2, 0xb3, 0x31, 0x57, 0x53, 0x9d, 0xdd, 0x53, 0x3b, 0xdd, + 0x55, 0x7d, 0x95, 0xd5, 0xb3, 0xd3, 0x36, 0x7e, 0x21, 0x83, 0x4f, 0xf8, 0x29, 0x9b, 0x0f, 0x5b, + 0x42, 0x60, 0x1e, 0x42, 0xe2, 0xc3, 0x02, 0xbe, 0x00, 0x21, 0x3e, 0xf0, 0x97, 0x11, 0x1f, 0x58, + 0x02, 0xd9, 0x06, 0x8b, 0xc1, 0x5e, 0x40, 0x06, 0x24, 0x40, 0x80, 0x7f, 0x58, 0xf1, 0x81, 0xf2, + 0x51, 0x99, 0x59, 0xd5, 0xdd, 0x3b, 0x33, 0x3b, 0xb5, 0x6b, 0xcb, 0xe2, 0xaf, 0x2b, 0x22, 0x32, + 0x22, 0xf2, 0x15, 0x19, 0x19, 0x19, 0x99, 0x0d, 0xab, 0xcd, 0x20, 0xd9, 0xea, 0x6e, 0xce, 0xfb, + 0x51, 0x7b, 0xc1, 0x8b, 0x9b, 0x51, 0x27, 0x8e, 0xee, 0x88, 0x1f, 0x6f, 0xf5, 0xeb, 0x0b, 0x3b, + 0xe7, 0x17, 0x3a, 0xdb, 0xcd, 0x05, 0xaf, 0x13, 0xb0, 0x05, 0xaf, 0xd3, 0x69, 0x05, 0xbe, 0x97, + 0x04, 0x51, 0xb8, 0xb0, 0xf3, 0xac, 0xd7, 0xea, 0x6c, 0x79, 0xcf, 0x2e, 0x34, 0x69, 0x48, 0x63, + 0x2f, 0xa1, 0xf5, 0xf9, 0x4e, 0x1c, 0x25, 0x11, 0x79, 0x87, 0xe1, 0x36, 0x9f, 0x72, 0x13, 0x3f, + 0x7e, 0xce, 0xaf, 0xcf, 0xef, 0x9c, 0x9f, 0xef, 0x6c, 0x37, 0xe7, 0x39, 0xb7, 0x79, 0x8b, 0xdb, + 0x7c, 0xca, 0xed, 0xcc, 0x5b, 0x2d, 0x5d, 0x9a, 0x51, 0x33, 0x5a, 0x10, 0x4c, 0x37, 0xbb, 0x0d, + 0xf1, 0x25, 0x3e, 0xc4, 0x2f, 0x29, 0xec, 0x8c, 0xbb, 0xfd, 0x3c, 0x9b, 0x0f, 0x22, 0xae, 0xde, + 0x82, 0x1f, 0xc5, 0x74, 0x61, 0xa7, 0x4f, 0xa1, 0x33, 0xcf, 0x19, 0x9a, 0xb6, 0xe7, 0x6f, 0x05, + 0x21, 0x8d, 0x7b, 0xa6, 0x4e, 0x6d, 0x9a, 0x78, 0x83, 0x4a, 0x2d, 0x0c, 0x2b, 0x15, 0x77, 0xc3, + 0x24, 0x68, 0xd3, 0xbe, 0x02, 0x6f, 0xdb, 0xaf, 0x00, 0xf3, 0xb7, 0x68, 0xdb, 0xcb, 0x97, 0x73, + 0x5f, 0x85, 0xa9, 0xc5, 0xdb, 0xeb, 0x8b, 0xdd, 0x64, 0x6b, 0x29, 0x0a, 0x1b, 0x41, 0x93, 0xfc, + 0x38, 0x4c, 0xf8, 0xad, 0x2e, 0x4b, 0x68, 0x7c, 0xdd, 0x6b, 0xd3, 0x59, 0xe7, 0x9c, 0xf3, 0x4c, + 0xb5, 0x76, 0xe2, 0x2b, 0x7b, 0x73, 0x4f, 0xdc, 0xdb, 0x9b, 0x9b, 0x58, 0x32, 0x28, 0xb4, 0xe9, + 0xc8, 0x0f, 0xc3, 0x78, 0x1c, 0xb5, 0xe8, 0x22, 0x5e, 0x9f, 0x2d, 0x89, 0x22, 0xc7, 0x54, 0x91, + 0x71, 0x94, 0x60, 0x4c, 0xf1, 0xee, 0xd7, 0x4a, 0x00, 0x8b, 0x9d, 0xce, 0x5a, 0x1c, 0xdd, 0xa1, + 0x7e, 0x42, 0x5e, 0x81, 0x0a, 0x6f, 0x85, 0xba, 0x97, 0x78, 0x42, 0xda, 0xc4, 0xf9, 0x1f, 0x9d, + 0x97, 0x95, 0x99, 0xb7, 0x2b, 0x63, 0x7a, 0x8e, 0x53, 0xcf, 0xef, 0x3c, 0x3b, 0x7f, 0x63, 0x93, + 0x97, 0xbf, 0x46, 0x13, 0xaf, 0x46, 0x94, 0x30, 0x30, 0x30, 0xd4, 0x5c, 0x49, 0x08, 0x23, 0xac, + 0x43, 0x7d, 0xa1, 0xd8, 0xc4, 0xf9, 0xd5, 0xf9, 0xa3, 0x0c, 0x91, 0x79, 0xa3, 0xf9, 0x7a, 0x87, + 0xfa, 0xb5, 0x49, 0x25, 0x79, 0x84, 0x7f, 0xa1, 0x90, 0x43, 0x76, 0x60, 0x8c, 0x25, 0x5e, 0xd2, + 0x65, 0xb3, 0x65, 0x21, 0xf1, 0x7a, 0x61, 0x12, 0x05, 0xd7, 0xda, 0xb4, 0x92, 0x39, 0x26, 0xbf, + 0x51, 0x49, 0x73, 0xff, 0xce, 0x81, 0x69, 0x43, 0xbc, 0x1a, 0xb0, 0x84, 0xbc, 0xa7, 0xaf, 0x71, + 0xe7, 0x0f, 0xd6, 0xb8, 0xbc, 0xb4, 0x68, 0xda, 0xe3, 0x4a, 0x58, 0x25, 0x85, 0x58, 0x0d, 0xdb, + 0x86, 0xd1, 0x20, 0xa1, 0x6d, 0x36, 0x5b, 0x3a, 0x57, 0x7e, 0x66, 0xe2, 0xfc, 0xe5, 0xa2, 0xea, + 0x59, 0x9b, 0x52, 0x42, 0x47, 0x57, 0x38, 0x7b, 0x94, 0x52, 0xdc, 0xef, 0x82, 0x5d, 0x3f, 0xde, + 0xe0, 0xe4, 0x59, 0x98, 0x60, 0x51, 0x37, 0xf6, 0x29, 0xd2, 0x4e, 0xc4, 0x66, 0x9d, 0x73, 0x65, + 0x3e, 0xf4, 0xf8, 0x48, 0x5d, 0x37, 0x60, 0xb4, 0x69, 0xc8, 0xa7, 0x1c, 0x98, 0xac, 0x53, 0x96, + 0x04, 0xa1, 0x90, 0x9f, 0x2a, 0xbf, 0x71, 0x64, 0xe5, 0x53, 0xe0, 0xb2, 0x61, 0x5e, 0x3b, 0xa9, + 0x2a, 0x32, 0x69, 0x01, 0x19, 0x66, 0xe4, 0xf3, 0x19, 0x57, 0xa7, 0xcc, 0x8f, 0x83, 0x0e, 0xff, + 0x16, 0x63, 0xc6, 0x9a, 0x71, 0xcb, 0x06, 0x85, 0x36, 0x1d, 0x09, 0x61, 0x94, 0xcf, 0x28, 0x36, + 0x3b, 0x22, 0xf4, 0x5f, 0x39, 0x9a, 0xfe, 0xaa, 0x51, 0xf9, 0x64, 0x35, 0xad, 0xcf, 0xbf, 0x18, + 0x4a, 0x31, 0xe4, 0x93, 0x0e, 0xcc, 0xaa, 0x19, 0x8f, 0x54, 0x36, 0xe8, 0xed, 0xad, 0x20, 0xa1, + 0xad, 0x80, 0x25, 0xb3, 0xa3, 0x42, 0x87, 0x85, 0x83, 0x8d, 0xad, 0x4b, 0x71, 0xd4, 0xed, 0x5c, + 0x0d, 0xc2, 0x7a, 0xed, 0x9c, 0x92, 0x34, 0xbb, 0x34, 0x84, 0x31, 0x0e, 0x15, 0x49, 0x3e, 0xe7, + 0xc0, 0x99, 0xd0, 0x6b, 0x53, 0xd6, 0xf1, 0x78, 0xd7, 0x4a, 0x74, 0xad, 0xe5, 0xf9, 0xdb, 0x42, + 0xa3, 0xb1, 0x87, 0xd3, 0xc8, 0x55, 0x1a, 0x9d, 0xb9, 0x3e, 0x94, 0x35, 0x3e, 0x40, 0x2c, 0xf9, + 0x2d, 0x07, 0x66, 0xa2, 0xb8, 0xb3, 0xe5, 0x85, 0xb4, 0x9e, 0x62, 0xd9, 0xec, 0xb8, 0x98, 0x7a, + 0xef, 0x3d, 0x5a, 0x17, 0xdd, 0xc8, 0xb3, 0xbd, 0x16, 0x85, 0x41, 0x12, 0xc5, 0xeb, 0x34, 0x49, + 0x82, 0xb0, 0xc9, 0x6a, 0xa7, 0xee, 0xed, 0xcd, 0xcd, 0xf4, 0x51, 0x61, 0xbf, 0x3e, 0xe4, 0xfd, + 0x30, 0xc1, 0x7a, 0xa1, 0x7f, 0x3b, 0x08, 0xeb, 0xd1, 0x5d, 0x36, 0x5b, 0x29, 0x62, 0xfa, 0xae, + 0x6b, 0x86, 0x6a, 0x02, 0x1a, 0x01, 0x68, 0x4b, 0x1b, 0xdc, 0x71, 0x66, 0x28, 0x55, 0x8b, 0xee, + 0x38, 0x33, 0x98, 0x1e, 0x20, 0x96, 0x7c, 0xcc, 0x81, 0x29, 0x16, 0x34, 0x43, 0x2f, 0xe9, 0xc6, + 0xf4, 0x2a, 0xed, 0xb1, 0x59, 0x10, 0x8a, 0x5c, 0x39, 0x62, 0xab, 0x58, 0x2c, 0x6b, 0xa7, 0x94, + 0x8e, 0x53, 0x36, 0x94, 0x61, 0x56, 0xee, 0xa0, 0x89, 0x66, 0x86, 0xf5, 0x44, 0xb1, 0x13, 0xcd, + 0x0c, 0xea, 0xa1, 0x22, 0xdd, 0x3f, 0x2f, 0xc1, 0xf1, 0xfc, 0x1a, 0x44, 0x7e, 0xc7, 0x81, 0x63, + 0x77, 0xee, 0x26, 0x1b, 0xd1, 0x36, 0x0d, 0x59, 0xad, 0xc7, 0x2d, 0x85, 0xb0, 0xbe, 0x13, 0xe7, + 0xfd, 0x62, 0x57, 0xbb, 0xf9, 0x2b, 0x59, 0x29, 0x17, 0xc2, 0x24, 0xee, 0xd5, 0x9e, 0x54, 0xf5, + 0x39, 0x76, 0xe5, 0xf6, 0x86, 0x8d, 0xc5, 0xbc, 0x52, 0x67, 0x3e, 0xee, 0xc0, 0xc9, 0x41, 0x2c, + 0xc8, 0x71, 0x28, 0x6f, 0xd3, 0x9e, 0x74, 0x70, 0x90, 0xff, 0x24, 0x3f, 0x0b, 0xa3, 0x3b, 0x5e, + 0xab, 0x4b, 0x95, 0xa3, 0x70, 0xe9, 0x68, 0x15, 0xd1, 0x9a, 0xa1, 0xe4, 0xfa, 0xf6, 0xd2, 0xf3, + 0x8e, 0xfb, 0x97, 0x65, 0x98, 0xb0, 0x96, 0x8a, 0xc7, 0xe0, 0xfc, 0x44, 0x19, 0xe7, 0xe7, 0x5a, + 0x61, 0xab, 0xdc, 0x50, 0xef, 0xe7, 0x6e, 0xce, 0xfb, 0xb9, 0x51, 0x9c, 0xc8, 0x07, 0xba, 0x3f, + 0x24, 0x81, 0x6a, 0xd4, 0xe1, 0xce, 0x2d, 0x5f, 0x45, 0x47, 0x8a, 0xe8, 0xc2, 0x1b, 0x29, 0xbb, + 0xda, 0xd4, 0xbd, 0xbd, 0xb9, 0xaa, 0xfe, 0x44, 0x23, 0xc8, 0xfd, 0xba, 0x03, 0x27, 0x2d, 0x1d, + 0x97, 0xa2, 0xb0, 0x1e, 0x88, 0xae, 0x3d, 0x07, 0x23, 0x49, 0xaf, 0x93, 0x7a, 0xd0, 0xba, 0xa5, + 0x36, 0x7a, 0x1d, 0x8a, 0x02, 0xc3, 0x7d, 0xe6, 0x36, 0x65, 0xcc, 0x6b, 0xd2, 0xbc, 0xcf, 0x7c, + 0x4d, 0x82, 0x31, 0xc5, 0x93, 0x18, 0x48, 0xcb, 0x63, 0xc9, 0x46, 0xec, 0x85, 0x4c, 0xb0, 0xdf, + 0x08, 0xda, 0x54, 0x35, 0xf0, 0x8f, 0x1c, 0x6c, 0xc4, 0xf0, 0x12, 0xb5, 0xd3, 0xf7, 0xf6, 0xe6, + 0xc8, 0x6a, 0x1f, 0x27, 0x1c, 0xc0, 0xdd, 0xfd, 0x9c, 0x03, 0xa7, 0x07, 0xbb, 0x35, 0xe4, 0x8d, + 0x30, 0xc6, 0x68, 0xbc, 0x43, 0x63, 0x55, 0x3b, 0xd3, 0x25, 0x02, 0x8a, 0x0a, 0x4b, 0x16, 0xa0, + 0xaa, 0x4d, 0xae, 0xaa, 0xe3, 0x8c, 0x22, 0xad, 0x1a, 0x3b, 0x6d, 0x68, 0x78, 0xa3, 0xf1, 0x0f, + 0xe5, 0x04, 0xe9, 0x46, 0x13, 0xfb, 0x0d, 0x81, 0x71, 0xff, 0xde, 0x81, 0x63, 0x96, 0x56, 0x8f, + 0xc1, 0xcb, 0x0d, 0xb3, 0x5e, 0xee, 0x4a, 0x61, 0xe3, 0x79, 0x88, 0x9b, 0xfb, 0xe5, 0x31, 0x98, + 0xb1, 0x47, 0xbd, 0x30, 0xc7, 0x62, 0x83, 0x45, 0x3b, 0xd1, 0x4d, 0x5c, 0x55, 0x6d, 0x6e, 0x36, + 0x58, 0x12, 0x8c, 0x29, 0x9e, 0x37, 0x62, 0xc7, 0x4b, 0xb6, 0x54, 0x83, 0xeb, 0x46, 0x5c, 0xf3, + 0x92, 0x2d, 0x14, 0x18, 0xf2, 0x22, 0x4c, 0x27, 0x5e, 0xdc, 0xa4, 0x09, 0xd2, 0x9d, 0x80, 0xa5, + 0xf3, 0xa5, 0x5a, 0x3b, 0xad, 0x68, 0xa7, 0x37, 0x32, 0x58, 0xcc, 0x51, 0x93, 0x57, 0x61, 0x64, + 0x8b, 0xb6, 0xda, 0xca, 0xaf, 0x59, 0x2f, 0x6e, 0x86, 0x8b, 0xba, 0x5e, 0xa6, 0xad, 0x76, 0xad, + 0xc2, 0x55, 0xe6, 0xbf, 0x50, 0x88, 0x22, 0xbf, 0xe8, 0x40, 0x75, 0xbb, 0xcb, 0x92, 0xa8, 0x1d, + 0xbc, 0x8f, 0xce, 0x56, 0x84, 0xe0, 0x9f, 0x29, 0x58, 0xf0, 0xd5, 0x94, 0xbf, 0x9c, 0xef, 0xfa, + 0x13, 0x8d, 0x64, 0xf2, 0x01, 0x18, 0xdf, 0x66, 0x51, 0x18, 0x52, 0xee, 0xa9, 0x70, 0x25, 0x6e, + 0x15, 0xad, 0x84, 0xe4, 0x5e, 0x9b, 0xe0, 0x7d, 0xab, 0x3e, 0x30, 0x95, 0x29, 0x9a, 0xa1, 0x1e, + 0xc4, 0xd4, 0x4f, 0xa2, 0xb8, 0x37, 0x0b, 0x8f, 0xa4, 0x19, 0x96, 0x53, 0xfe, 0xb2, 0x19, 0xf4, + 0x27, 0x1a, 0xc9, 0xa4, 0x07, 0x63, 0x9d, 0x56, 0xb7, 0x19, 0x84, 0xb3, 0x13, 0x42, 0x87, 0x9b, + 0x05, 0xeb, 0xb0, 0x26, 0x98, 0xd7, 0x80, 0x1b, 0x15, 0xf9, 0x1b, 0x95, 0x40, 0xf2, 0x34, 0x8c, + 0xfa, 0x5b, 0x5e, 0x9c, 0xcc, 0x4e, 0x8a, 0x31, 0xab, 0x27, 0xd1, 0x12, 0x07, 0xa2, 0xc4, 0xb9, + 0xbf, 0x51, 0x82, 0x33, 0xc3, 0x2b, 0x26, 0x67, 0x93, 0xdf, 0x8d, 0x99, 0xb4, 0xcf, 0x15, 0x7b, + 0x36, 0x09, 0x30, 0xa6, 0x78, 0xf2, 0x11, 0x07, 0xc6, 0xef, 0xa8, 0x1e, 0x2f, 0x3d, 0x92, 0x1e, + 0xbf, 0xa2, 0x7a, 0x5c, 0xeb, 0x70, 0x25, 0xed, 0x75, 0x25, 0x97, 0xab, 0x4b, 0x77, 0xfd, 0x56, + 0xb7, 0x9e, 0x5a, 0x46, 0x4d, 0x7a, 0x41, 0x82, 0x31, 0xc5, 0x73, 0xd2, 0x20, 0x94, 0xa4, 0x23, + 0x59, 0xd2, 0x95, 0x50, 0x91, 0x2a, 0xbc, 0xfb, 0xfb, 0xa3, 0x70, 0x6a, 0xe0, 0xe4, 0x23, 0xf3, + 0x00, 0xc2, 0x67, 0xb9, 0x18, 0xf0, 0x0d, 0xa6, 0xdc, 0x55, 0x4f, 0x73, 0x17, 0xe3, 0x96, 0x86, + 0xa2, 0x45, 0x41, 0x3e, 0x04, 0xd0, 0xf1, 0x62, 0xaf, 0x4d, 0x13, 0x1a, 0xa7, 0x76, 0xf2, 0xea, + 0xd1, 0x5a, 0x89, 0xeb, 0xb1, 0x96, 0xf2, 0x34, 0x3e, 0x8e, 0x06, 0x31, 0xb4, 0x44, 0xf2, 0x3d, + 0x74, 0x4c, 0x5b, 0xd4, 0x63, 0xf4, 0xba, 0x59, 0x3e, 0xf4, 0x1e, 0x1a, 0x0d, 0x0a, 0x6d, 0x3a, + 0xbe, 0x8e, 0x89, 0x5a, 0x30, 0xd5, 0x56, 0x7a, 0x1d, 0x13, 0xf5, 0x64, 0xa8, 0xb0, 0xe4, 0xd3, + 0x0e, 0x4c, 0x37, 0x82, 0x16, 0x35, 0xd2, 0xd5, 0x8e, 0xf7, 0xc6, 0xd1, 0x2b, 0x79, 0xd1, 0xe6, + 0x6b, 0x2c, 0x70, 0x06, 0xcc, 0x30, 0x27, 0x9e, 0x77, 0xf3, 0x0e, 0x8d, 0x85, 0xe9, 0x1e, 0xcb, + 0x76, 0xf3, 0x2d, 0x09, 0xc6, 0x14, 0x4f, 0x16, 0xe1, 0x58, 0xc7, 0x63, 0x6c, 0x29, 0xa6, 0x75, + 0x1a, 0x26, 0x81, 0xd7, 0x92, 0xfb, 0xd1, 0x8a, 0x71, 0xa2, 0xd7, 0xb2, 0x68, 0xcc, 0xd3, 0x93, + 0x77, 0xc1, 0x93, 0x41, 0x33, 0x8c, 0x62, 0x7a, 0x2d, 0x60, 0x2c, 0x08, 0x9b, 0x66, 0x18, 0x08, + 0x4b, 0x5c, 0xa9, 0xcd, 0x29, 0x56, 0x4f, 0xae, 0x0c, 0x26, 0xc3, 0x61, 0xe5, 0xc9, 0x5b, 0xa0, + 0xc2, 0xb6, 0x83, 0xce, 0x52, 0x5c, 0x67, 0xc2, 0xa0, 0x56, 0xcc, 0x5a, 0xbc, 0xae, 0xe0, 0xa8, + 0x29, 0xdc, 0x2f, 0x94, 0x60, 0x76, 0xd8, 0xfc, 0x21, 0x8c, 0xcf, 0x92, 0xe4, 0x96, 0x17, 0x33, + 0xb5, 0x15, 0x39, 0xe2, 0x8e, 0x56, 0xf1, 0xbd, 0xe5, 0xc5, 0xf6, 0x7c, 0x13, 0x02, 0x30, 0x95, + 0x44, 0xee, 0xc0, 0x48, 0xd2, 0xf2, 0x0a, 0x0a, 0x81, 0x59, 0x12, 0x8d, 0xc3, 0xb8, 0xba, 0xc8, + 0x50, 0xc8, 0x20, 0x4f, 0xc1, 0x48, 0x2b, 0xd8, 0xe4, 0x8e, 0x35, 0x9f, 0x90, 0x62, 0x85, 0x5c, + 0x0d, 0x36, 0x19, 0x0a, 0xa8, 0xfb, 0x35, 0x67, 0x40, 0xdb, 0xa8, 0x05, 0x84, 0x4f, 0x10, 0x1a, + 0xee, 0x04, 0x71, 0x14, 0xb6, 0x69, 0x98, 0xe4, 0xc3, 0xba, 0x17, 0x0c, 0x0a, 0x6d, 0x3a, 0xf2, + 0x0b, 0xce, 0x80, 0x99, 0x7d, 0xc4, 0x78, 0xa6, 0x52, 0xe9, 0xc0, 0x93, 0xdb, 0xfd, 0x8f, 0xb1, + 0x01, 0xb6, 0x5c, 0x2f, 0xce, 0xe4, 0x3c, 0x00, 0xf7, 0x0c, 0xd7, 0x62, 0xda, 0x08, 0x76, 0x55, + 0xcd, 0x34, 0xcb, 0xeb, 0x1a, 0x83, 0x16, 0x55, 0x5a, 0x66, 0xbd, 0xdb, 0xe0, 0x65, 0x4a, 0xfd, + 0x65, 0x24, 0x06, 0x2d, 0x2a, 0xf2, 0x1c, 0x8c, 0x05, 0x6d, 0xaf, 0x49, 0xd3, 0xf6, 0x7f, 0x8a, + 0x1b, 0x8a, 0x15, 0x01, 0xb9, 0xbf, 0x37, 0x37, 0xad, 0x15, 0x12, 0x20, 0x54, 0xb4, 0xe4, 0xb7, + 0x1d, 0x98, 0xf4, 0xa3, 0x76, 0x3b, 0x0a, 0x57, 0xbd, 0x4d, 0xda, 0x4a, 0xc3, 0x75, 0x77, 0x1e, + 0x95, 0xeb, 0x32, 0xbf, 0x64, 0x09, 0x93, 0x9b, 0x65, 0x1d, 0x84, 0xb4, 0x51, 0x98, 0xd1, 0xca, + 0xb6, 0x27, 0xa3, 0xfb, 0xd8, 0x93, 0x3f, 0x72, 0x60, 0x46, 0x96, 0x5d, 0x0c, 0xc3, 0x28, 0x51, + 0x51, 0x54, 0x19, 0x6f, 0x8b, 0x1e, 0x71, 0xb5, 0x2c, 0x89, 0xb2, 0x6e, 0xaf, 0x53, 0x6a, 0xce, + 0xf4, 0xe1, 0xb1, 0x5f, 0x49, 0x72, 0x09, 0x66, 0x1a, 0x51, 0xec, 0x53, 0xbb, 0x21, 0x94, 0x31, + 0xd4, 0x8c, 0x2e, 0xe6, 0x09, 0xb0, 0xbf, 0x0c, 0xb9, 0x05, 0xa7, 0x2d, 0xa0, 0xdd, 0x0e, 0xd2, + 0x1e, 0x9e, 0x55, 0xdc, 0x4e, 0x5f, 0x1c, 0x48, 0x85, 0x43, 0x4a, 0x9f, 0x79, 0x27, 0xcc, 0xf4, + 0xf5, 0xdf, 0x80, 0x48, 0xc5, 0x49, 0x3b, 0x52, 0x51, 0xb5, 0x02, 0x0c, 0x67, 0x96, 0xe1, 0xf4, + 0xe0, 0x96, 0x3a, 0x0c, 0x17, 0xf7, 0xd7, 0x1c, 0x78, 0x72, 0x88, 0x4b, 0xa6, 0xb7, 0x68, 0xce, + 0xb0, 0x2d, 0x1a, 0xf1, 0xa0, 0x4c, 0xc3, 0x1d, 0x65, 0x2c, 0x2e, 0x1e, 0x6d, 0x44, 0x5c, 0x08, + 0x77, 0x64, 0x47, 0x8f, 0xdf, 0xdb, 0x9b, 0x2b, 0x5f, 0x08, 0x77, 0x90, 0xf3, 0x76, 0x7f, 0x65, + 0x2c, 0xb3, 0x0b, 0x5c, 0x4f, 0x03, 0x0f, 0x42, 0x51, 0xb5, 0x07, 0xbc, 0x51, 0xf0, 0x58, 0xb4, + 0x76, 0xb9, 0xf2, 0x38, 0x41, 0x89, 0x23, 0x1f, 0x77, 0x44, 0x04, 0x3f, 0xdd, 0x1d, 0x2b, 0x2f, + 0xf1, 0xd1, 0x1c, 0x28, 0xd8, 0xe7, 0x02, 0x29, 0x10, 0x6d, 0xe9, 0x7c, 0x26, 0x77, 0x64, 0x00, + 0x2d, 0xef, 0x2b, 0xa6, 0x31, 0xfe, 0x14, 0x4f, 0x76, 0x01, 0x58, 0x2f, 0xf4, 0xd7, 0xa2, 0x56, + 0xe0, 0xf7, 0x54, 0xc8, 0xa4, 0x80, 0x28, 0xb0, 0xe4, 0x27, 0x1d, 0x46, 0xf3, 0x8d, 0x96, 0x2c, + 0xf2, 0x45, 0x07, 0x66, 0xa4, 0x47, 0xb0, 0x1c, 0x34, 0x1a, 0x34, 0xa6, 0xa1, 0x4f, 0x53, 0x9f, + 0xea, 0xf6, 0xd1, 0x34, 0x48, 0x03, 0x98, 0x2b, 0x79, 0xf6, 0x66, 0x8a, 0xf7, 0xa1, 0xb0, 0x5f, + 0x19, 0x52, 0x87, 0x91, 0x20, 0x6c, 0x44, 0xca, 0xb0, 0xd5, 0x8e, 0xa6, 0xd4, 0x4a, 0xd8, 0x88, + 0xcc, 0x5c, 0xe1, 0x5f, 0x28, 0xb8, 0x93, 0x55, 0x38, 0x19, 0xab, 0x5d, 0xf5, 0xe5, 0x80, 0xf1, + 0xbd, 0xc9, 0x6a, 0xd0, 0x0e, 0x12, 0x61, 0x94, 0xca, 0xb5, 0xd9, 0x7b, 0x7b, 0x73, 0x27, 0x71, + 0x00, 0x1e, 0x07, 0x96, 0x72, 0x5f, 0xab, 0x66, 0x43, 0x07, 0x32, 0x30, 0xf6, 0x01, 0xa8, 0xc6, + 0xfa, 0x28, 0x42, 0x7a, 0x46, 0xab, 0xc5, 0xb4, 0xb1, 0x8a, 0xc8, 0xe9, 0x98, 0x8e, 0x39, 0x74, + 0x30, 0x12, 0xb9, 0x87, 0xc4, 0x7b, 0x5e, 0x4d, 0x8b, 0x02, 0xc6, 0x97, 0x92, 0x6a, 0x82, 0x8f, + 0xbd, 0xd0, 0x47, 0x21, 0x83, 0xc4, 0x30, 0xb6, 0x45, 0xbd, 0x56, 0xb2, 0xa5, 0x62, 0x63, 0x57, + 0x8e, 0xea, 0x9f, 0x73, 0x5e, 0xf9, 0xb8, 0xa3, 0x84, 0xa2, 0x92, 0x44, 0x76, 0x61, 0x7c, 0x4b, + 0x76, 0x82, 0x5a, 0xdb, 0xaf, 0x1d, 0xb5, 0x71, 0x33, 0x3d, 0x6b, 0xe6, 0xaf, 0x02, 0x60, 0x2a, + 0x8e, 0xfc, 0x92, 0x03, 0xe0, 0xa7, 0x01, 0xc7, 0x74, 0xfa, 0x60, 0x61, 0x76, 0x47, 0xc7, 0x32, + 0x8d, 0x6b, 0xa4, 0x41, 0x0c, 0x2d, 0xc9, 0xe4, 0x15, 0x98, 0x8c, 0xa9, 0x1f, 0x85, 0x7e, 0xd0, + 0xa2, 0xf5, 0xc5, 0x44, 0x6c, 0x49, 0x0e, 0x17, 0x98, 0x3c, 0xce, 0xfd, 0x13, 0xb4, 0x78, 0x60, + 0x86, 0x23, 0x79, 0xcd, 0x81, 0x69, 0x1d, 0x74, 0xe5, 0x1d, 0x42, 0x55, 0xf0, 0x69, 0xb5, 0xa0, + 0x10, 0xaf, 0xe0, 0x59, 0x23, 0x7c, 0xeb, 0x95, 0x85, 0x61, 0x4e, 0x2e, 0x79, 0x19, 0x20, 0xda, + 0x14, 0x01, 0x4e, 0x5e, 0xd5, 0xca, 0xa1, 0xab, 0x3a, 0x2d, 0x63, 0xf5, 0x29, 0x07, 0xb4, 0xb8, + 0x91, 0xab, 0x00, 0x72, 0xda, 0x6c, 0xf4, 0x3a, 0x54, 0xec, 0x87, 0xaa, 0xb5, 0x37, 0xa7, 0x8d, + 0xbf, 0xae, 0x31, 0xf7, 0xf7, 0xe6, 0xfa, 0x77, 0xee, 0x22, 0xb2, 0x6c, 0x15, 0x27, 0xef, 0x87, + 0x71, 0xd6, 0x6d, 0xb7, 0x3d, 0x1d, 0x28, 0x5a, 0x2b, 0x6e, 0x45, 0x94, 0x7c, 0xcd, 0xd8, 0x54, + 0x00, 0x4c, 0x25, 0xba, 0x21, 0x90, 0x7e, 0x7a, 0xf2, 0x1c, 0x4c, 0xd2, 0xdd, 0x84, 0xc6, 0xa1, + 0xd7, 0xba, 0x89, 0xab, 0x69, 0x68, 0x41, 0x74, 0xfe, 0x05, 0x0b, 0x8e, 0x19, 0x2a, 0xe2, 0x6a, + 0xcf, 0xbb, 0x24, 0xe8, 0xc1, 0x78, 0xde, 0xa9, 0x9f, 0xed, 0xfe, 0x4f, 0x29, 0xe3, 0x11, 0x6c, + 0xc4, 0x94, 0x92, 0x08, 0x46, 0xc3, 0xa8, 0xae, 0x8d, 0xde, 0x95, 0x62, 0x8c, 0xde, 0xf5, 0xa8, + 0x6e, 0x9d, 0x91, 0xf3, 0x2f, 0x86, 0x52, 0x8e, 0x38, 0x44, 0x4c, 0x4f, 0x5b, 0x05, 0x42, 0x39, + 0x41, 0x45, 0x4a, 0xd6, 0x87, 0x88, 0x37, 0x6c, 0x41, 0x98, 0x95, 0x4b, 0xb6, 0x61, 0x74, 0x2b, + 0x62, 0x89, 0xdc, 0xab, 0x1c, 0xd9, 0x0b, 0xbb, 0x1c, 0xb1, 0x44, 0x2c, 0x61, 0xba, 0xda, 0x1c, + 0xc2, 0x50, 0xca, 0x70, 0xbf, 0xe3, 0x64, 0x02, 0x49, 0xb7, 0xbd, 0xc4, 0xdf, 0xba, 0xb0, 0xc3, + 0xf7, 0x8f, 0x57, 0x33, 0x87, 0x20, 0x3f, 0x61, 0x1f, 0x82, 0xdc, 0xdf, 0x9b, 0x7b, 0xd3, 0xb0, + 0xa4, 0xa5, 0xbb, 0x9c, 0xc3, 0xbc, 0x60, 0x61, 0x9d, 0x97, 0x7c, 0xd8, 0x81, 0x09, 0x4b, 0x3d, + 0xb5, 0xa0, 0x14, 0x18, 0x8f, 0xd7, 0xce, 0x95, 0x05, 0x44, 0x5b, 0xa4, 0xfb, 0x59, 0x07, 0xc6, + 0x6b, 0x9e, 0xbf, 0x1d, 0x35, 0x1a, 0xe4, 0x2d, 0x50, 0xa9, 0x77, 0xd5, 0x71, 0x93, 0xac, 0x9f, + 0x8e, 0x5c, 0x2c, 0x2b, 0x38, 0x6a, 0x0a, 0x3e, 0x86, 0x1b, 0x9e, 0x9f, 0x44, 0xb1, 0x50, 0xbb, + 0x2c, 0xc7, 0xf0, 0x45, 0x01, 0x41, 0x85, 0xe1, 0x9b, 0xf4, 0xb6, 0xb7, 0x9b, 0x16, 0xce, 0x47, + 0xb1, 0xae, 0x19, 0x14, 0xda, 0x74, 0xee, 0x9f, 0x55, 0x61, 0x5c, 0x9d, 0xeb, 0x1e, 0xf8, 0x64, + 0x26, 0xf5, 0xe2, 0x4b, 0x43, 0xbd, 0x78, 0x06, 0x63, 0xbe, 0x48, 0x09, 0x53, 0x4b, 0xe9, 0x11, + 0xe3, 0x79, 0x4a, 0x41, 0x99, 0x65, 0x66, 0xd4, 0x92, 0xdf, 0xa8, 0x44, 0x91, 0xcf, 0x38, 0x70, + 0xcc, 0x8f, 0xc2, 0x90, 0xfa, 0xc6, 0xce, 0x8f, 0x14, 0x71, 0x72, 0xb9, 0x94, 0x65, 0x6a, 0x62, + 0x5f, 0x39, 0x04, 0xe6, 0xc5, 0x93, 0x17, 0x60, 0x4a, 0xb6, 0xd9, 0xad, 0xcc, 0xfe, 0xd8, 0x9c, + 0xe5, 0xdb, 0x48, 0xcc, 0xd2, 0x92, 0x79, 0x19, 0x67, 0x10, 0x87, 0x5b, 0x72, 0x8f, 0xac, 0x02, + 0xa9, 0xfa, 0xf4, 0x8b, 0xa1, 0x45, 0x41, 0x62, 0x20, 0x31, 0x6d, 0xc4, 0x94, 0x6d, 0x21, 0x7d, + 0xb5, 0x4b, 0x59, 0x22, 0xd6, 0x98, 0xf1, 0x87, 0x3b, 0xe7, 0xc3, 0x3e, 0x4e, 0x38, 0x80, 0x3b, + 0xd9, 0x56, 0x8e, 0x6e, 0xa5, 0x88, 0xe9, 0xa4, 0xba, 0x79, 0xa8, 0xbf, 0x3b, 0x07, 0xa3, 0x6c, + 0xcb, 0x8b, 0xeb, 0x62, 0x6d, 0x2b, 0xd7, 0xaa, 0xdc, 0x96, 0xac, 0x73, 0x00, 0x4a, 0x38, 0x59, + 0x86, 0xe3, 0xb9, 0x4c, 0x04, 0x26, 0x56, 0xaf, 0x4a, 0x6d, 0x56, 0xb1, 0x3b, 0x9e, 0xcb, 0x61, + 0x60, 0xd8, 0x57, 0xc2, 0xde, 0x04, 0x4d, 0xec, 0xb3, 0x09, 0xea, 0xc1, 0x58, 0x4b, 0x06, 0x02, + 0x26, 0x85, 0xa9, 0x7c, 0xa9, 0x90, 0x06, 0x98, 0xb7, 0x03, 0x30, 0x7a, 0xb4, 0xab, 0x80, 0x82, + 0x12, 0x48, 0x3e, 0xc9, 0x0d, 0x9a, 0x15, 0x3b, 0x98, 0x12, 0x0a, 0xdc, 0x2a, 0x46, 0x81, 0xbe, + 0x50, 0x89, 0xb1, 0x6e, 0x56, 0x20, 0xc2, 0x96, 0x7f, 0xe6, 0x27, 0x61, 0xe2, 0x61, 0xe3, 0x0e, + 0x2f, 0xc2, 0xf1, 0x23, 0x45, 0x1c, 0xbe, 0xeb, 0x40, 0xda, 0xaf, 0x4b, 0x9e, 0xbf, 0x45, 0xf9, + 0x90, 0x21, 0x2f, 0xc2, 0xb4, 0xde, 0x46, 0x2c, 0x45, 0x5d, 0x15, 0xb7, 0x2c, 0x9b, 0x20, 0x39, + 0x66, 0xb0, 0x98, 0xa3, 0x26, 0x0b, 0x50, 0xe5, 0xed, 0x24, 0x8b, 0x4a, 0xb3, 0xab, 0xb7, 0x2a, + 0x8b, 0x6b, 0x2b, 0xaa, 0x94, 0xa1, 0x21, 0x11, 0xcc, 0xb4, 0x3c, 0x96, 0x08, 0x0d, 0xf8, 0xae, + 0xe2, 0x21, 0x4f, 0xd9, 0x45, 0x22, 0xd6, 0x6a, 0x9e, 0x11, 0xf6, 0xf3, 0x76, 0xbf, 0x3e, 0x02, + 0x53, 0x19, 0xcb, 0xc8, 0x57, 0x95, 0x2e, 0xe3, 0xae, 0x8f, 0x0e, 0xb1, 0xe8, 0x55, 0xe5, 0xa6, + 0x82, 0xa3, 0xa6, 0xe0, 0xd4, 0x1d, 0x8f, 0xb1, 0xbb, 0x51, 0x5c, 0x57, 0xa6, 0x5c, 0x53, 0xaf, + 0x29, 0x38, 0x6a, 0x0a, 0xbe, 0xbe, 0x6c, 0x52, 0x2f, 0xa6, 0xb1, 0x48, 0x4c, 0xc9, 0xaf, 0x2f, + 0x35, 0x83, 0x42, 0x9b, 0x4e, 0x18, 0xe5, 0xa4, 0xc5, 0x96, 0x5a, 0x01, 0x0d, 0x13, 0xa9, 0x66, + 0x31, 0x46, 0x79, 0x63, 0x75, 0xdd, 0x66, 0x6a, 0x8c, 0x72, 0x0e, 0x81, 0x79, 0xf1, 0xe4, 0xa3, + 0x0e, 0x4c, 0x79, 0x77, 0x99, 0xc9, 0x5b, 0x16, 0x56, 0xf9, 0xc8, 0x8b, 0x54, 0x26, 0x15, 0xba, + 0x36, 0xc3, 0xcd, 0x7b, 0x06, 0x84, 0x59, 0xa1, 0xe4, 0xf3, 0x0e, 0x10, 0xba, 0x4b, 0xfd, 0xb5, + 0x38, 0xda, 0x09, 0xea, 0x69, 0x1f, 0xaa, 0xed, 0xcf, 0x11, 0xbd, 0xed, 0x0b, 0x7d, 0x7c, 0xa5, + 0x55, 0xef, 0x87, 0xe3, 0x00, 0x1d, 0xdc, 0xbf, 0x2d, 0xc3, 0x84, 0x65, 0x8c, 0x07, 0xae, 0xac, + 0xce, 0xf7, 0xd9, 0xca, 0x5a, 0x3a, 0xc4, 0xca, 0xfa, 0x21, 0xa8, 0xfa, 0xa9, 0xa1, 0x28, 0x26, + 0xcf, 0x3a, 0x6f, 0x7e, 0x8c, 0xad, 0xd0, 0x20, 0x34, 0x32, 0xc9, 0x25, 0x98, 0xb1, 0xd8, 0x28, + 0x23, 0x33, 0x22, 0x8c, 0x8c, 0x0e, 0x34, 0x2d, 0xe6, 0x09, 0xb0, 0xbf, 0x0c, 0x79, 0x96, 0x7b, + 0xb5, 0x81, 0xaa, 0x97, 0xdc, 0xc5, 0xab, 0x1c, 0xe6, 0xc5, 0xb5, 0x95, 0x14, 0x8c, 0x36, 0x8d, + 0xfb, 0x75, 0x47, 0x77, 0xee, 0x63, 0x48, 0x80, 0xb9, 0x93, 0x4d, 0x80, 0xb9, 0x50, 0x48, 0x33, + 0x0f, 0x49, 0x7e, 0xb9, 0x0e, 0xe3, 0x4b, 0x51, 0xbb, 0xed, 0x85, 0x75, 0xf2, 0x06, 0x18, 0xf7, + 0xe5, 0x4f, 0xb5, 0x4d, 0x14, 0x19, 0x11, 0x0a, 0x8b, 0x29, 0x8e, 0x3c, 0x05, 0x23, 0x5e, 0xdc, + 0x4c, 0xb7, 0x86, 0xe2, 0x50, 0x6c, 0x31, 0x6e, 0x32, 0x14, 0x50, 0xf7, 0x73, 0x25, 0x80, 0xa5, + 0xa8, 0xdd, 0xf1, 0x62, 0x5a, 0xdf, 0x88, 0xfe, 0x3f, 0x46, 0x2c, 0x77, 0x0c, 0x9f, 0x70, 0x80, + 0xf0, 0x56, 0x89, 0x42, 0x1a, 0x9a, 0x83, 0x38, 0xbe, 0x5e, 0xfa, 0x29, 0x54, 0x2d, 0x3e, 0x66, + 0x0e, 0xa4, 0x08, 0x34, 0x34, 0x07, 0xd8, 0x45, 0x3c, 0x9d, 0xae, 0xf8, 0xe5, 0x6c, 0xb2, 0x86, + 0x38, 0x01, 0x56, 0x0e, 0x80, 0xfb, 0xe5, 0x12, 0x9c, 0x96, 0x66, 0xeb, 0x9a, 0x17, 0x7a, 0x4d, + 0xda, 0xe6, 0x5a, 0x1d, 0xf4, 0xb4, 0xc1, 0xe7, 0xee, 0x6b, 0x90, 0xe6, 0x66, 0x1c, 0x75, 0x70, + 0xca, 0x41, 0x25, 0x87, 0xd1, 0x4a, 0x18, 0x24, 0x28, 0x98, 0x13, 0x06, 0x95, 0xf4, 0xe6, 0x8c, + 0x32, 0x36, 0x05, 0x09, 0xd2, 0xf3, 0xee, 0x92, 0x62, 0x8f, 0x5a, 0x10, 0x5f, 0xdc, 0x5b, 0x91, + 0xbf, 0x8d, 0xb4, 0x13, 0x09, 0xc3, 0x62, 0x1d, 0x8d, 0xaf, 0x2a, 0x38, 0x6a, 0x0a, 0xf7, 0xcb, + 0x0e, 0xe4, 0x4d, 0xae, 0xd8, 0x0d, 0xca, 0x5c, 0xcc, 0xfc, 0x6e, 0x30, 0x9b, 0x3a, 0x79, 0x88, + 0x4c, 0xc4, 0xf7, 0xc0, 0x84, 0x97, 0x24, 0xb4, 0xdd, 0x91, 0x5b, 0x93, 0xf2, 0xc3, 0x85, 0xbf, + 0xae, 0x45, 0xf5, 0xa0, 0x11, 0x88, 0x2d, 0x89, 0xcd, 0xce, 0x7d, 0x09, 0x2a, 0xe9, 0x89, 0xcf, + 0x01, 0xba, 0xfe, 0xe9, 0x8c, 0x3b, 0x39, 0x64, 0x70, 0xdd, 0x2f, 0xc1, 0x80, 0x35, 0x93, 0x57, + 0xd9, 0x58, 0x97, 0x4c, 0x95, 0x0f, 0x67, 0x61, 0xc8, 0xae, 0x3c, 0xed, 0x92, 0x71, 0x96, 0x77, + 0x15, 0xbd, 0xe6, 0x9b, 0x03, 0xb0, 0x09, 0xa5, 0x9f, 0x3e, 0x04, 0x23, 0xe7, 0x01, 0xcc, 0xa2, + 0xa0, 0x32, 0x58, 0x74, 0xa4, 0xd6, 0xac, 0x1d, 0x68, 0x51, 0x71, 0x17, 0x30, 0x08, 0x59, 0xe2, + 0xb5, 0x5a, 0x97, 0x83, 0x30, 0x51, 0x7b, 0x59, 0x6d, 0x30, 0x56, 0x0c, 0x0a, 0x6d, 0xba, 0x33, + 0x6f, 0xb3, 0xfa, 0xe5, 0x30, 0x6e, 0xfd, 0x27, 0x4a, 0x30, 0x7d, 0x29, 0xec, 0xae, 0x5d, 0x5a, + 0xeb, 0x6e, 0xb6, 0x02, 0xff, 0x2a, 0xed, 0xf1, 0x4e, 0xdb, 0xa6, 0xbd, 0x95, 0x65, 0xd5, 0xec, + 0xba, 0xd3, 0xae, 0x72, 0x20, 0x4a, 0x1c, 0x57, 0xb3, 0x11, 0x84, 0x4d, 0x1a, 0x77, 0xe2, 0x40, + 0xf9, 0xee, 0x96, 0x9a, 0x17, 0x0d, 0x0a, 0x6d, 0x3a, 0xce, 0x3b, 0xba, 0x1b, 0xd2, 0x38, 0x6f, + 0x6d, 0x6e, 0x70, 0x20, 0x4a, 0x1c, 0x27, 0x4a, 0xe2, 0x2e, 0x4b, 0x54, 0x8b, 0x69, 0xa2, 0x0d, + 0x0e, 0x44, 0x89, 0xe3, 0xc3, 0x83, 0x75, 0x37, 0x45, 0x14, 0x36, 0x77, 0x1e, 0xbe, 0x2e, 0xc1, + 0x98, 0xe2, 0x39, 0xe9, 0x36, 0xed, 0x2d, 0xf3, 0xb5, 0x37, 0x97, 0x8a, 0x73, 0x55, 0x82, 0x31, + 0xc5, 0xbb, 0xff, 0xe4, 0x00, 0xc9, 0x36, 0xc7, 0x63, 0x58, 0xbe, 0x5f, 0xcd, 0x2e, 0xdf, 0x47, + 0x0c, 0x98, 0x67, 0xd5, 0x1f, 0xb2, 0x8a, 0xff, 0xa6, 0x03, 0x93, 0xf6, 0xd9, 0x09, 0x69, 0xe6, + 0x0c, 0xd1, 0x8d, 0xac, 0x21, 0xba, 0xbf, 0x37, 0xf7, 0x53, 0x83, 0xae, 0x81, 0x36, 0x83, 0x24, + 0xea, 0xb0, 0xb7, 0xd2, 0xb0, 0x19, 0x84, 0x54, 0x44, 0x06, 0xe5, 0x99, 0x4b, 0xe6, 0x60, 0x66, + 0x29, 0xaa, 0xd3, 0x87, 0xb0, 0x64, 0xee, 0x6d, 0x98, 0xe9, 0xcb, 0xbf, 0x3a, 0x80, 0xd1, 0xd9, + 0x37, 0xbb, 0xd6, 0xfd, 0xa4, 0x03, 0x53, 0x99, 0xf4, 0xb5, 0x82, 0x4c, 0x99, 0x98, 0x15, 0x91, + 0x38, 0x76, 0x8b, 0x83, 0x50, 0xc6, 0xe5, 0x2a, 0xd6, 0xac, 0x30, 0x28, 0xb4, 0xe9, 0xdc, 0xcf, + 0x96, 0xa0, 0x92, 0x46, 0x70, 0x0f, 0xa0, 0xca, 0xc7, 0x1d, 0x98, 0xd2, 0x1b, 0x69, 0xe1, 0x5e, + 0x17, 0x92, 0xf6, 0xc3, 0x35, 0xd0, 0x67, 0xb3, 0xdc, 0xbd, 0xd6, 0x7e, 0x3e, 0xda, 0xc2, 0x30, + 0x2b, 0x9b, 0xdc, 0x02, 0x60, 0x3d, 0x96, 0xd0, 0xb6, 0xe5, 0xe8, 0xbb, 0xd6, 0xec, 0x98, 0xf7, + 0xa3, 0x98, 0xf2, 0xb9, 0x70, 0x3d, 0xaa, 0xd3, 0x75, 0x4d, 0x69, 0x0c, 0xa1, 0x81, 0xa1, 0xc5, + 0xc9, 0xfd, 0xbd, 0x12, 0x1c, 0xcf, 0xab, 0x44, 0xde, 0x0d, 0x93, 0xa9, 0x74, 0xeb, 0xf6, 0x6b, + 0x1a, 0xb6, 0x9e, 0x44, 0x0b, 0x77, 0x7f, 0x6f, 0x6e, 0xae, 0xff, 0xfa, 0xef, 0xbc, 0x4d, 0x82, + 0x19, 0x66, 0x32, 0x9a, 0xa1, 0xc2, 0x6e, 0xb5, 0xde, 0x62, 0xa7, 0xa3, 0x42, 0x12, 0x56, 0x34, + 0xc3, 0xc6, 0x62, 0x8e, 0x9a, 0xac, 0xc1, 0x49, 0x0b, 0x72, 0x9d, 0x06, 0xcd, 0xad, 0xcd, 0x28, + 0x96, 0xd7, 0x2c, 0xca, 0xb5, 0xa7, 0x14, 0x97, 0x93, 0x38, 0x80, 0x06, 0x07, 0x96, 0xe4, 0x0e, + 0x86, 0xef, 0x75, 0x3c, 0x3f, 0x48, 0x7a, 0x6a, 0xe7, 0xa2, 0xed, 0xc8, 0x92, 0x82, 0xa3, 0xa6, + 0x70, 0xaf, 0xc1, 0xc8, 0x01, 0x47, 0xd0, 0x81, 0xd6, 0xe5, 0x97, 0xa0, 0xc2, 0xd9, 0x71, 0xbb, + 0x51, 0x14, 0xcb, 0x08, 0x2a, 0xe9, 0xad, 0x1b, 0xe2, 0x42, 0x39, 0xf0, 0xd2, 0x80, 0x91, 0xae, + 0xd6, 0x0a, 0x63, 0x5d, 0xe1, 0x75, 0x70, 0x24, 0x79, 0x1a, 0xca, 0x74, 0xb7, 0x93, 0x8f, 0x0c, + 0x5d, 0xd8, 0xed, 0x04, 0x31, 0x65, 0x9c, 0x88, 0xee, 0x76, 0xc8, 0x19, 0x28, 0x05, 0x75, 0xb5, + 0xa0, 0x80, 0xa2, 0x29, 0xad, 0x2c, 0x63, 0x29, 0xa8, 0xbb, 0xbb, 0x50, 0xd5, 0xd7, 0x7c, 0xc8, + 0x76, 0x6a, 0x67, 0x9d, 0x22, 0x8e, 0x5c, 0x52, 0xbe, 0x43, 0x2c, 0x6c, 0x17, 0xc0, 0x24, 0x0b, + 0x16, 0x65, 0x5f, 0xce, 0xc1, 0x88, 0x1f, 0xa9, 0x1c, 0xe3, 0x8a, 0x61, 0x23, 0x0c, 0xac, 0xc0, + 0xb8, 0xb7, 0x61, 0xfa, 0x6a, 0x18, 0xdd, 0x0d, 0xf9, 0xc2, 0x77, 0x31, 0xa0, 0xad, 0x3a, 0x67, + 0xdc, 0xe0, 0x3f, 0xf2, 0xcb, 0xb9, 0xc0, 0xa2, 0xc4, 0xe9, 0xbb, 0x30, 0xa5, 0x61, 0x77, 0x61, + 0xdc, 0x5f, 0x76, 0xe0, 0x78, 0x3e, 0x31, 0xf0, 0x7b, 0xb6, 0x1f, 0xf9, 0x30, 0x57, 0x26, 0xcd, + 0x3c, 0xbb, 0xd1, 0x91, 0x67, 0xdc, 0xcf, 0xc3, 0xe4, 0x66, 0x37, 0x68, 0xd5, 0xd5, 0xb7, 0xd2, + 0x47, 0xe7, 0xd6, 0xd5, 0x2c, 0x1c, 0x66, 0x28, 0xb9, 0x9f, 0xb6, 0x19, 0x84, 0x5e, 0xdc, 0x5b, + 0x33, 0xeb, 0x86, 0x36, 0x4f, 0x35, 0x8d, 0x41, 0x8b, 0xca, 0xfd, 0xeb, 0x32, 0x98, 0xfb, 0x46, + 0x24, 0x50, 0x29, 0x14, 0x4e, 0x11, 0x41, 0xae, 0xf5, 0x5e, 0xe8, 0x9b, 0x9b, 0x4d, 0x95, 0x5c, + 0x06, 0xc5, 0xc7, 0x1c, 0xee, 0x21, 0x06, 0x49, 0xe0, 0x09, 0x63, 0xa1, 0xb6, 0x55, 0x6b, 0x05, + 0x9d, 0xb2, 0xaf, 0x48, 0xce, 0x51, 0x6c, 0xfb, 0x9c, 0x5a, 0x18, 0xda, 0x92, 0xc9, 0x2b, 0xea, + 0x5c, 0xa2, 0x5c, 0x58, 0x02, 0x4e, 0x25, 0x77, 0x18, 0xd1, 0x81, 0xd1, 0x98, 0x26, 0x71, 0x9a, + 0xfa, 0x74, 0xf5, 0xa8, 0xa7, 0xb4, 0x49, 0xdc, 0x5b, 0x4f, 0xf8, 0xd6, 0xad, 0x69, 0x39, 0x46, + 0x02, 0x8c, 0x52, 0x90, 0xcb, 0x80, 0xf4, 0xb7, 0xc5, 0x21, 0x63, 0xbe, 0x0b, 0x50, 0xf5, 0xba, + 0x49, 0xd4, 0xe6, 0xcd, 0x24, 0xba, 0xa7, 0x62, 0x45, 0xb5, 0x53, 0x04, 0x1a, 0x1a, 0xf7, 0xd3, + 0xa3, 0x90, 0xcb, 0x69, 0x20, 0xbb, 0xf6, 0x5d, 0x39, 0xa7, 0xd8, 0xbb, 0x72, 0x5a, 0x99, 0x41, + 0xf7, 0xe5, 0x48, 0x13, 0x46, 0x3b, 0x5b, 0x1e, 0x4b, 0xe7, 0xe8, 0x4b, 0x69, 0x33, 0xad, 0x71, + 0xe0, 0xfd, 0xbd, 0xb9, 0x9f, 0x3e, 0x98, 0x1f, 0xc8, 0xc7, 0xea, 0x82, 0x4c, 0xf0, 0x34, 0xa2, + 0x05, 0x0f, 0x94, 0xfc, 0x6d, 0x4f, 0xb0, 0xbc, 0xcf, 0x9e, 0xf6, 0x23, 0x8e, 0x4c, 0x84, 0x43, + 0xca, 0xba, 0xad, 0x44, 0x8d, 0x86, 0x97, 0x0a, 0x9c, 0x65, 0x92, 0xb1, 0xc9, 0x88, 0x93, 0xdf, + 0x68, 0x09, 0x25, 0xef, 0x86, 0x2a, 0x4b, 0xbc, 0x38, 0x79, 0xc8, 0xfc, 0x19, 0xdd, 0xe8, 0xeb, + 0x29, 0x13, 0x34, 0xfc, 0xc8, 0xcb, 0x00, 0x8d, 0x20, 0x0c, 0xd8, 0xd6, 0x43, 0x1e, 0x27, 0x0a, + 0xc5, 0x2f, 0x6a, 0x0e, 0x68, 0x71, 0xe3, 0xd6, 0x4d, 0x8c, 0x6d, 0x19, 0x00, 0xad, 0x88, 0xb5, + 0x54, 0x5b, 0x37, 0xd4, 0x18, 0xb4, 0xa8, 0xdc, 0x0f, 0xc2, 0x89, 0xfc, 0x3d, 0x75, 0xb5, 0x35, + 0x6c, 0xc6, 0x51, 0xb7, 0x93, 0x5f, 0x4b, 0xc4, 0x3d, 0x66, 0x94, 0x38, 0x6e, 0xe3, 0xb7, 0x83, + 0xb0, 0x9e, 0xb7, 0xf1, 0x57, 0x83, 0xb0, 0x8e, 0x02, 0x73, 0x80, 0x4b, 0x84, 0x7f, 0xe2, 0xc0, + 0xb9, 0xfd, 0xae, 0xd3, 0xf3, 0x6d, 0xff, 0x5d, 0x2f, 0x0e, 0xd5, 0x05, 0x21, 0x61, 0x3b, 0x6e, + 0x7b, 0x71, 0x88, 0x02, 0x4a, 0x7a, 0x30, 0x26, 0x73, 0x06, 0x95, 0x77, 0xfc, 0x52, 0xb1, 0x97, + 0xfb, 0xf9, 0xde, 0x4a, 0x47, 0x6b, 0x64, 0xbe, 0x22, 0x2a, 0x81, 0xee, 0xb7, 0x1c, 0x20, 0x37, + 0x76, 0x68, 0x1c, 0x07, 0x75, 0x2b, 0xcb, 0x91, 0x3c, 0x07, 0x93, 0x77, 0xd6, 0x6f, 0x5c, 0x5f, + 0x8b, 0x82, 0x50, 0x24, 0xeb, 0x5b, 0xb9, 0x35, 0x57, 0x2c, 0x38, 0x66, 0xa8, 0xc8, 0x12, 0xcc, + 0xdc, 0x79, 0x95, 0x2f, 0x39, 0x17, 0x76, 0x3b, 0x31, 0x65, 0x4c, 0x3f, 0x89, 0x51, 0x95, 0xc7, + 0x58, 0x57, 0x5e, 0xca, 0x21, 0xb1, 0x9f, 0x9e, 0xdc, 0x80, 0x53, 0x6d, 0x11, 0xb9, 0xab, 0x8b, + 0x65, 0x9f, 0xc9, 0x30, 0x5e, 0x9c, 0x66, 0xca, 0xbf, 0xee, 0xde, 0xde, 0xdc, 0xa9, 0x6b, 0x83, + 0x08, 0x70, 0x70, 0x39, 0xf7, 0x4b, 0x25, 0x98, 0xb0, 0x9e, 0xa4, 0x38, 0x80, 0x83, 0x93, 0x7b, + 0x45, 0xa3, 0x74, 0xc0, 0x57, 0x34, 0x9e, 0x81, 0x4a, 0x27, 0x6a, 0x05, 0x7e, 0xa0, 0xd3, 0xfa, + 0x27, 0xc5, 0xe1, 0x99, 0x82, 0xa1, 0xc6, 0x92, 0xbb, 0x50, 0xd5, 0x77, 0xcb, 0x55, 0xa2, 0x5f, + 0x51, 0x2e, 0x9e, 0x9e, 0xbc, 0xe6, 0xce, 0xb8, 0x91, 0x45, 0x5c, 0x18, 0x13, 0x23, 0x3f, 0x3d, + 0x1a, 0x10, 0x99, 0x23, 0x62, 0x4a, 0x30, 0x54, 0x18, 0xf7, 0x5f, 0x47, 0xa1, 0x8a, 0xb4, 0x13, + 0x2d, 0xc5, 0xb4, 0xce, 0xc8, 0xeb, 0xa1, 0xdc, 0x8d, 0x5b, 0xaa, 0xb1, 0x74, 0xdc, 0xe8, 0x26, + 0xae, 0x22, 0x87, 0x67, 0x96, 0x9b, 0xd2, 0xa1, 0x8e, 0x18, 0xcb, 0xfb, 0x1e, 0x31, 0xbe, 0x00, + 0x53, 0x8c, 0x6d, 0xad, 0xc5, 0xc1, 0x8e, 0x97, 0xf0, 0x41, 0xac, 0x82, 0x2c, 0xe6, 0x4c, 0x67, + 0xfd, 0xb2, 0x41, 0x62, 0x96, 0x96, 0x5c, 0x82, 0x19, 0x73, 0xd0, 0x47, 0xe3, 0x44, 0xc4, 0x54, + 0x64, 0xf8, 0x45, 0x1f, 0xa9, 0x98, 0xa3, 0x41, 0x45, 0x80, 0xfd, 0x65, 0xc8, 0x32, 0x1c, 0xcf, + 0x00, 0xb9, 0x22, 0x32, 0x36, 0xa3, 0x93, 0x08, 0x32, 0x7c, 0xb8, 0x2e, 0x7d, 0x25, 0xc8, 0x35, + 0x38, 0x21, 0xfb, 0x57, 0xbc, 0x49, 0xa0, 0x6b, 0x34, 0x2e, 0x18, 0xfd, 0x90, 0x62, 0x74, 0xe2, + 0x52, 0x3f, 0x09, 0x0e, 0x2a, 0xc7, 0x47, 0xa8, 0x06, 0xaf, 0x2c, 0x2b, 0x4b, 0xa9, 0x47, 0xa8, + 0x66, 0xb3, 0x52, 0x47, 0x9b, 0x8e, 0xbc, 0x0b, 0x9e, 0x34, 0x9f, 0x32, 0x24, 0x27, 0xdd, 0x87, + 0x65, 0x95, 0x43, 0xa1, 0xef, 0x5e, 0x5d, 0x1a, 0x48, 0x56, 0xc7, 0x61, 0xe5, 0xc9, 0x26, 0x9c, + 0xd1, 0xa8, 0x0b, 0xdc, 0x1c, 0x74, 0xe2, 0x80, 0xd1, 0x9a, 0xc7, 0xe8, 0xcd, 0xb8, 0x25, 0xb2, + 0x2e, 0xaa, 0xe6, 0x5d, 0x8d, 0x4b, 0x41, 0x72, 0x79, 0x10, 0x25, 0xae, 0xe2, 0x03, 0xb8, 0x70, + 0x6f, 0x85, 0x86, 0xde, 0x66, 0x8b, 0xde, 0x58, 0x5a, 0x11, 0xb9, 0x18, 0x96, 0xb7, 0x72, 0x21, + 0x45, 0xa0, 0xa1, 0xd1, 0x7b, 0x85, 0xc9, 0xa1, 0x7b, 0x85, 0x6f, 0x3a, 0x30, 0xa5, 0x07, 0xfb, + 0x63, 0x08, 0xa0, 0xb5, 0xb2, 0x01, 0xb4, 0x4b, 0x47, 0x75, 0x13, 0x95, 0xe6, 0x43, 0x76, 0x76, + 0xdf, 0xa9, 0x02, 0x88, 0x97, 0x8a, 0x02, 0x91, 0xe3, 0x7b, 0x0e, 0x46, 0x62, 0xda, 0x89, 0xf2, + 0x96, 0x4f, 0x04, 0xff, 0x05, 0xe6, 0xfb, 0x77, 0x3a, 0x0f, 0x3a, 0x72, 0x1e, 0xfd, 0xde, 0x1e, + 0x39, 0xaf, 0xc3, 0xa9, 0x20, 0x64, 0xd4, 0xef, 0xc6, 0x6a, 0xe5, 0xbc, 0x1c, 0x31, 0x6d, 0x1d, + 0x2a, 0xb5, 0xd7, 0x2b, 0x46, 0xa7, 0x56, 0x06, 0x11, 0xe1, 0xe0, 0xb2, 0xbc, 0x49, 0x53, 0x84, + 0xba, 0x4c, 0x64, 0xe2, 0x0d, 0x0a, 0x8e, 0x9a, 0xc2, 0x4c, 0x88, 0xd5, 0x46, 0x7a, 0x5b, 0x28, + 0x37, 0x21, 0x56, 0x2f, 0xae, 0xa3, 0xa1, 0x19, 0x6c, 0x15, 0xab, 0x05, 0x59, 0x45, 0x38, 0xb4, + 0x55, 0x4c, 0xe7, 0xe7, 0xc4, 0xd0, 0x77, 0x2d, 0xd2, 0xc5, 0x7a, 0x72, 0xe8, 0x62, 0xfd, 0x22, + 0x4c, 0x07, 0xe1, 0x16, 0x8d, 0x83, 0x84, 0xd6, 0xc5, 0x5c, 0x98, 0x9d, 0x12, 0x0d, 0xa1, 0x43, + 0x61, 0x2b, 0x19, 0x2c, 0xe6, 0xa8, 0xb3, 0x46, 0x65, 0xfa, 0x00, 0x46, 0x65, 0x88, 0x29, 0x3f, + 0x56, 0x8c, 0x29, 0x3f, 0x7e, 0x74, 0x53, 0x3e, 0xf3, 0x48, 0x4d, 0x39, 0x29, 0xc4, 0x94, 0x3f, + 0x0d, 0xa3, 0x9d, 0x38, 0xda, 0xed, 0xcd, 0x9e, 0xc8, 0xba, 0xe7, 0x6b, 0x1c, 0x88, 0x12, 0x67, + 0x67, 0xde, 0x9d, 0x7c, 0x70, 0xe6, 0x9d, 0xfb, 0x5a, 0x09, 0x4e, 0x19, 0x4b, 0xc7, 0xc7, 0x57, + 0xd0, 0xe0, 0x73, 0x5d, 0x5c, 0xe9, 0x94, 0xd9, 0x1e, 0x56, 0x14, 0xd6, 0x04, 0x74, 0x35, 0x06, + 0x2d, 0x2a, 0x11, 0xcc, 0xa4, 0xb1, 0xc8, 0x17, 0xce, 0x9b, 0xc1, 0x25, 0x05, 0x47, 0x4d, 0x21, + 0x9e, 0x39, 0xa4, 0x71, 0xa2, 0x0e, 0x73, 0xf2, 0xa9, 0x50, 0x4b, 0x06, 0x85, 0x36, 0x1d, 0x77, + 0x17, 0xfd, 0x74, 0x0a, 0x72, 0x53, 0x38, 0x29, 0xdd, 0x45, 0x3d, 0xeb, 0x34, 0x36, 0x55, 0x47, + 0x44, 0xad, 0x47, 0xfb, 0xd5, 0x11, 0x51, 0x08, 0x4d, 0xe1, 0xfe, 0xb7, 0x03, 0xaf, 0x1b, 0xd8, + 0x14, 0x8f, 0x61, 0x79, 0xdb, 0xcd, 0x2e, 0x6f, 0xeb, 0x47, 0x5f, 0xde, 0xfa, 0x6a, 0x31, 0x64, + 0xa9, 0xfb, 0x1b, 0x07, 0xa6, 0x0d, 0xfd, 0x63, 0xa8, 0x6a, 0x50, 0xe8, 0x83, 0x85, 0x46, 0x75, + 0x99, 0xc7, 0x9a, 0xa9, 0xdb, 0x37, 0x45, 0xdd, 0xe4, 0x66, 0x6e, 0xd1, 0x4f, 0x5f, 0x04, 0xda, + 0x67, 0x13, 0xd3, 0x83, 0x31, 0x71, 0xef, 0x99, 0x15, 0xb3, 0xa9, 0xcc, 0xca, 0x17, 0x71, 0x55, + 0xb3, 0xa9, 0x14, 0x9f, 0x0c, 0x95, 0x40, 0x91, 0xcd, 0x1e, 0x30, 0x6e, 0x2f, 0xeb, 0x2a, 0xfe, + 0x6b, 0xb2, 0xd9, 0x15, 0x1c, 0x35, 0x85, 0xdb, 0x86, 0xd9, 0x2c, 0xf3, 0x65, 0xda, 0x10, 0xb1, + 0xbb, 0x03, 0x55, 0x73, 0x01, 0xaa, 0x9e, 0x28, 0xb5, 0xda, 0xf5, 0xf2, 0xcf, 0x02, 0x2d, 0xa6, + 0x08, 0x34, 0x34, 0xee, 0xef, 0x3a, 0x70, 0x62, 0x40, 0x65, 0x0a, 0x8c, 0x7b, 0x27, 0xc6, 0x0a, + 0x0c, 0x79, 0xaa, 0xa9, 0x4e, 0x1b, 0x5e, 0x1a, 0x1d, 0xb2, 0xac, 0xda, 0xb2, 0x04, 0x63, 0x8a, + 0x77, 0xff, 0xcd, 0x81, 0x63, 0x59, 0x5d, 0x19, 0xb9, 0x02, 0x44, 0x56, 0x66, 0x39, 0x60, 0x7e, + 0xb4, 0x43, 0xe3, 0x1e, 0xaf, 0xb9, 0xd4, 0xfa, 0x8c, 0xe2, 0x44, 0x16, 0xfb, 0x28, 0x70, 0x40, + 0x29, 0x91, 0x34, 0x5c, 0xd7, 0xad, 0x9d, 0x8e, 0x94, 0x5b, 0x45, 0x8e, 0x14, 0xd3, 0x99, 0xf6, + 0x0e, 0x5a, 0x8b, 0x44, 0x5b, 0xbe, 0xfb, 0xad, 0x11, 0xd0, 0x07, 0x63, 0x22, 0x0e, 0x51, 0x50, + 0x14, 0x27, 0xf3, 0x76, 0x54, 0xf9, 0x10, 0x6f, 0x47, 0x8d, 0x3c, 0x28, 0x46, 0x20, 0x1f, 0x32, + 0x32, 0xbe, 0xa8, 0x65, 0xf4, 0x37, 0x0c, 0x0a, 0x6d, 0x3a, 0xae, 0x49, 0x2b, 0xd8, 0xa1, 0xb2, + 0xd0, 0x58, 0x56, 0x93, 0xd5, 0x14, 0x81, 0x86, 0x86, 0x6b, 0x52, 0x0f, 0x1a, 0x0d, 0xb5, 0x53, + 0xd4, 0x9a, 0xf0, 0xd6, 0x41, 0x81, 0xe1, 0x14, 0x5b, 0x51, 0xb4, 0xad, 0xfc, 0x3f, 0x4d, 0x71, + 0x39, 0x8a, 0xb6, 0x51, 0x60, 0xb8, 0xc7, 0x12, 0x46, 0x71, 0xdb, 0x6b, 0x05, 0xef, 0xa3, 0x75, + 0x2d, 0x45, 0xf9, 0x7d, 0xda, 0x63, 0xb9, 0xde, 0x4f, 0x82, 0x83, 0xca, 0xf1, 0x11, 0xd8, 0x89, + 0x69, 0x3d, 0xf0, 0x13, 0x9b, 0x1b, 0x64, 0x47, 0xe0, 0x5a, 0x1f, 0x05, 0x0e, 0x28, 0x45, 0x16, + 0xe1, 0x58, 0x7a, 0xb0, 0x99, 0x26, 0x9f, 0x48, 0x67, 0x50, 0xfb, 0xe1, 0x98, 0x45, 0x63, 0x9e, + 0x9e, 0x5b, 0x9b, 0xb6, 0x4a, 0x01, 0x12, 0x6e, 0xa2, 0x65, 0x6d, 0xd2, 0xd4, 0x20, 0xd4, 0x14, + 0xee, 0x47, 0xca, 0x7c, 0x75, 0x1c, 0x72, 0xad, 0xf7, 0xb1, 0x45, 0x0d, 0xb3, 0x23, 0x72, 0xe4, + 0x00, 0x23, 0xf2, 0x39, 0x98, 0xbc, 0xc3, 0xa2, 0x50, 0x47, 0xe4, 0x46, 0x87, 0x46, 0xe4, 0x2c, + 0xaa, 0xc1, 0x11, 0xb9, 0xb1, 0xa2, 0x22, 0x72, 0xe3, 0x0f, 0x19, 0x91, 0xfb, 0x8b, 0x51, 0x38, + 0xad, 0x0f, 0xb7, 0x69, 0x72, 0x37, 0x8a, 0xb7, 0x83, 0xb0, 0x29, 0x0e, 0x84, 0xbf, 0xe8, 0xc0, + 0xa4, 0x9c, 0x2f, 0xea, 0x45, 0x05, 0x79, 0x00, 0xda, 0x28, 0xe8, 0xd2, 0x5b, 0x46, 0xd8, 0xfc, + 0x86, 0x25, 0x28, 0xf7, 0xbc, 0x85, 0x8d, 0xc2, 0x8c, 0x46, 0xe4, 0x03, 0x00, 0xe9, 0x13, 0x66, + 0x8d, 0x82, 0x1e, 0x72, 0x4b, 0xf5, 0x43, 0xda, 0x30, 0xbe, 0xe9, 0x86, 0x16, 0x82, 0x96, 0x40, + 0xf2, 0x9a, 0xa3, 0x2f, 0x99, 0xc8, 0xd3, 0xac, 0x57, 0x1e, 0x49, 0xdb, 0x1c, 0xe4, 0xce, 0x09, + 0xc2, 0x78, 0x10, 0x36, 0xf9, 0x38, 0x51, 0x41, 0xcc, 0x37, 0x0d, 0x4a, 0xa6, 0x58, 0x8d, 0xbc, + 0x7a, 0xcd, 0x6b, 0x79, 0xa1, 0x4f, 0xe3, 0x15, 0x49, 0x6e, 0x3f, 0x24, 0x25, 0x00, 0x98, 0x32, + 0xea, 0xbb, 0xd5, 0x39, 0x7a, 0x90, 0x5b, 0x9d, 0x67, 0xde, 0x09, 0x33, 0x7d, 0x9d, 0x79, 0xa8, + 0x3b, 0x27, 0x0f, 0x7f, 0x5d, 0xc5, 0xfd, 0xd3, 0x31, 0xb3, 0x68, 0x5d, 0x8f, 0xea, 0xf2, 0x6e, + 0x61, 0x6c, 0x7a, 0x54, 0xf9, 0x9e, 0x05, 0x0e, 0x11, 0xeb, 0x31, 0x2a, 0x0d, 0x44, 0x5b, 0x24, + 0x1f, 0xa3, 0x1d, 0x2f, 0xa6, 0xe1, 0xa3, 0x1e, 0xa3, 0x6b, 0x5a, 0x08, 0x5a, 0x02, 0xc9, 0x56, + 0xe6, 0xb8, 0xf5, 0xe2, 0xd1, 0x8f, 0x5b, 0xb9, 0x3b, 0x3c, 0xf0, 0x0e, 0xd8, 0x67, 0x1c, 0x98, + 0x0e, 0x33, 0x23, 0x57, 0x1d, 0xb9, 0x6d, 0x3c, 0x8a, 0x59, 0x21, 0xef, 0x74, 0x67, 0x61, 0x98, + 0x93, 0x3f, 0x68, 0x49, 0x1b, 0x3d, 0xe4, 0x92, 0x66, 0x2e, 0x29, 0x8f, 0x0d, 0xbb, 0xa4, 0x4c, + 0x42, 0xfd, 0x3c, 0xc1, 0x78, 0xe1, 0xcf, 0x13, 0xc0, 0x80, 0xa7, 0x09, 0x6e, 0x43, 0xd5, 0x8f, + 0xa9, 0x97, 0x3c, 0xe4, 0x4d, 0x75, 0xf1, 0xfc, 0xdf, 0x52, 0xca, 0x00, 0x0d, 0x2f, 0xf7, 0xaf, + 0xca, 0x70, 0x3c, 0x6d, 0x91, 0xf4, 0x28, 0x8a, 0xaf, 0x8f, 0x52, 0xae, 0x71, 0x6e, 0xf5, 0xfa, + 0x78, 0x39, 0x45, 0xa0, 0xa1, 0xe1, 0xfe, 0x58, 0x97, 0xd1, 0x1b, 0x1d, 0x1a, 0xae, 0x06, 0x9b, + 0x4c, 0xb4, 0xb8, 0x95, 0xcf, 0x76, 0xd3, 0xa0, 0xd0, 0xa6, 0xe3, 0xce, 0xb8, 0xf4, 0x8b, 0x59, + 0xfe, 0x64, 0x57, 0xf9, 0xdb, 0x98, 0xe2, 0xc9, 0x17, 0x06, 0xbe, 0x33, 0x52, 0x4c, 0x4e, 0x43, + 0xdf, 0x09, 0xdc, 0x21, 0x1f, 0x18, 0xf9, 0xb4, 0x03, 0xc7, 0xb6, 0x33, 0xc9, 0x34, 0xa9, 0x49, + 0x3e, 0x62, 0x8a, 0x66, 0x36, 0x43, 0xc7, 0x0c, 0xe1, 0x2c, 0x9c, 0x61, 0x5e, 0xba, 0xfb, 0x9f, + 0x0e, 0xd8, 0xe6, 0xe9, 0x60, 0x9e, 0x95, 0xf5, 0x72, 0x54, 0x69, 0x9f, 0x97, 0xa3, 0x52, 0x27, + 0xac, 0x7c, 0x30, 0xa7, 0x7f, 0xe4, 0x10, 0x4e, 0xff, 0xe8, 0x50, 0xaf, 0xed, 0xf5, 0x50, 0xee, + 0x06, 0x75, 0xe5, 0xb7, 0x9b, 0xc3, 0xb0, 0x95, 0x65, 0xe4, 0x70, 0xf7, 0x8f, 0x47, 0xcd, 0x3e, + 0x5d, 0x1d, 0xc5, 0xff, 0x40, 0x54, 0xbb, 0xa1, 0x33, 0x6e, 0x65, 0xcd, 0xaf, 0xf7, 0x65, 0xdc, + 0xbe, 0xe3, 0xf0, 0x99, 0x16, 0xb2, 0x81, 0x86, 0x25, 0xdc, 0x8e, 0xef, 0x93, 0x66, 0x71, 0x07, + 0x2a, 0x7c, 0x6b, 0x23, 0x02, 0x6e, 0x95, 0x8c, 0x52, 0x95, 0xcb, 0x0a, 0x7e, 0x7f, 0x6f, 0xee, + 0xed, 0x87, 0x57, 0x2b, 0x2d, 0x8d, 0x9a, 0x3f, 0x61, 0x50, 0xe5, 0xbf, 0x45, 0x46, 0x88, 0xda, + 0x34, 0xdd, 0xd4, 0xb6, 0x28, 0x45, 0x14, 0x92, 0x6e, 0x62, 0xe4, 0x90, 0x10, 0xaa, 0xe2, 0x8d, + 0x23, 0x21, 0x54, 0xee, 0xad, 0xd6, 0x74, 0x5e, 0x46, 0x8a, 0xb8, 0xbf, 0x37, 0xf7, 0xc2, 0xe1, + 0x85, 0xea, 0xe2, 0x68, 0x44, 0xb8, 0xff, 0x58, 0x36, 0x63, 0x57, 0x25, 0x5a, 0xff, 0x40, 0x8c, + 0xdd, 0xe7, 0x73, 0x63, 0xf7, 0x5c, 0xdf, 0xd8, 0x9d, 0x36, 0xef, 0x00, 0x65, 0x46, 0xe3, 0xe3, + 0x5e, 0x60, 0xf7, 0xdf, 0xc7, 0x0b, 0xcf, 0xe2, 0xd5, 0x6e, 0x10, 0x53, 0xb6, 0x16, 0x77, 0xc3, + 0x20, 0x6c, 0xaa, 0x67, 0x2e, 0x2d, 0xcf, 0x22, 0x83, 0xc6, 0x3c, 0xbd, 0xfb, 0x25, 0x71, 0xde, + 0x69, 0x25, 0x97, 0xf1, 0x5e, 0x6e, 0x89, 0x67, 0xa2, 0x64, 0x7a, 0xab, 0xee, 0x65, 0xf9, 0x36, + 0x94, 0xc4, 0x91, 0xbb, 0x30, 0xbe, 0x29, 0x9f, 0xaa, 0x28, 0xe6, 0x6e, 0x94, 0x7a, 0xf7, 0x42, + 0xdc, 0x42, 0x4d, 0x1f, 0xc1, 0xb8, 0x6f, 0x7e, 0x62, 0x2a, 0xcd, 0xfd, 0xf5, 0x32, 0x1c, 0xcb, + 0x3d, 0x62, 0xc4, 0x37, 0xfc, 0xe9, 0x8b, 0x55, 0xf9, 0xe8, 0xbc, 0x7e, 0x65, 0x5a, 0x53, 0x90, + 0xf7, 0x02, 0xd4, 0x69, 0xa7, 0x15, 0xf5, 0x84, 0xe3, 0x32, 0x72, 0x68, 0xc7, 0x45, 0xfb, 0xba, + 0xcb, 0x9a, 0x0b, 0x5a, 0x1c, 0x55, 0x4e, 0xef, 0xa8, 0x7c, 0x88, 0x23, 0x9b, 0xd3, 0x6b, 0x5d, + 0x11, 0x1c, 0x7b, 0xbc, 0x57, 0x04, 0x03, 0x38, 0x26, 0x55, 0xd4, 0x29, 0x5c, 0x0f, 0x91, 0xa9, + 0x75, 0x82, 0x8f, 0xa8, 0xe5, 0x2c, 0x1b, 0xcc, 0xf3, 0x75, 0x3f, 0x55, 0xe2, 0xee, 0x9b, 0x6c, + 0xec, 0x6b, 0x69, 0x70, 0xfc, 0x8d, 0x30, 0xe6, 0x75, 0x93, 0xad, 0xa8, 0xef, 0xe9, 0x90, 0x45, + 0x01, 0x45, 0x85, 0x25, 0xab, 0x30, 0x52, 0xf7, 0x92, 0xf4, 0x5f, 0x12, 0x0e, 0xa3, 0x9c, 0x89, + 0x84, 0x79, 0x09, 0x45, 0xc1, 0x85, 0x3c, 0x05, 0x23, 0x89, 0xd7, 0xcc, 0xbc, 0x69, 0xba, 0xe1, + 0x35, 0x19, 0x0a, 0xa8, 0xbd, 0xba, 0x8c, 0xec, 0xb3, 0xba, 0xbc, 0x60, 0xfd, 0x7f, 0x87, 0x75, + 0xea, 0xd2, 0xff, 0x9f, 0x1b, 0xf2, 0x96, 0x41, 0x86, 0xd6, 0xfd, 0x31, 0x98, 0xb4, 0xff, 0x93, + 0xe3, 0x40, 0x97, 0x94, 0xdc, 0x7f, 0x19, 0x81, 0xa9, 0x4c, 0x9a, 0x5f, 0x66, 0x94, 0x3b, 0xfb, + 0x8e, 0x72, 0x71, 0x9e, 0xd6, 0x0d, 0xa9, 0x4a, 0xe2, 0xb4, 0xce, 0xd3, 0xba, 0x21, 0x45, 0x89, + 0xe3, 0xbd, 0x52, 0x8f, 0x7b, 0xd8, 0x0d, 0x55, 0x54, 0x5e, 0xf7, 0xca, 0xb2, 0x80, 0xa2, 0xc2, + 0xf2, 0x0d, 0xec, 0x24, 0x13, 0x46, 0x51, 0xda, 0x08, 0x35, 0x6b, 0xae, 0x14, 0xf1, 0xdc, 0x9a, + 0x4a, 0x69, 0x15, 0x1b, 0x7a, 0x1b, 0x82, 0x19, 0x89, 0xe4, 0xa3, 0x8e, 0xfd, 0xd0, 0xdc, 0x58, + 0x11, 0xa7, 0x49, 0xf9, 0x2c, 0x4a, 0x39, 0x83, 0x1e, 0xfc, 0xde, 0x1c, 0xd3, 0x13, 0x78, 0xfc, + 0xd1, 0x4c, 0x60, 0x18, 0x30, 0x79, 0xdf, 0x0c, 0xd5, 0xb6, 0x17, 0x06, 0x0d, 0xca, 0x12, 0xf9, + 0x7f, 0x3a, 0x55, 0xb9, 0x7b, 0xba, 0x96, 0x02, 0xd1, 0xe0, 0xc5, 0xbf, 0x56, 0x89, 0x8a, 0xc9, + 0x4d, 0x4c, 0xd5, 0xfa, 0xd7, 0x2a, 0x03, 0x46, 0x9b, 0xc6, 0xfd, 0x03, 0x07, 0x4e, 0x0d, 0x6c, + 0x8c, 0xef, 0xdf, 0xf0, 0xa7, 0xfb, 0x87, 0x25, 0x38, 0x31, 0x20, 0x0d, 0x96, 0xf4, 0x1e, 0xd9, + 0x7b, 0x84, 0x2a, 0xcf, 0x76, 0x6a, 0xe8, 0xd8, 0x38, 0xdc, 0x32, 0x64, 0x96, 0x82, 0xf2, 0x63, + 0x5d, 0x0a, 0xdc, 0x2f, 0x95, 0xc0, 0x7a, 0x39, 0x93, 0x7c, 0xd0, 0xce, 0xf8, 0x76, 0x8a, 0xca, + 0x4e, 0x96, 0xcc, 0x75, 0xc6, 0xb8, 0x6c, 0xb5, 0x41, 0x09, 0xe4, 0xf9, 0xf1, 0x5a, 0xda, 0x7f, + 0xbc, 0x92, 0x56, 0x9a, 0x5a, 0x5f, 0x2e, 0x3e, 0xb5, 0xbe, 0xda, 0x97, 0x56, 0xff, 0xab, 0x8e, + 0x1c, 0x69, 0xb9, 0x2a, 0x19, 0x0b, 0xeb, 0x3c, 0xc0, 0xc2, 0xbe, 0x05, 0x2a, 0x8c, 0xb6, 0x1a, + 0xdc, 0xb3, 0x53, 0x96, 0xd8, 0xbc, 0x40, 0xae, 0xe0, 0xa8, 0x29, 0xc4, 0xa5, 0xdb, 0x56, 0x2b, + 0xba, 0x7b, 0xa1, 0xdd, 0x49, 0x7a, 0xca, 0x26, 0x9b, 0x4b, 0xb7, 0x1a, 0x83, 0x16, 0x95, 0xfb, + 0x5f, 0x8e, 0xec, 0x4e, 0xe5, 0xa3, 0x3f, 0x9f, 0xbb, 0x0c, 0x79, 0x70, 0xf7, 0xf6, 0xe7, 0x01, + 0x7c, 0xfd, 0x98, 0x41, 0x31, 0x0f, 0x6a, 0x9a, 0xc7, 0x11, 0xec, 0x57, 0x1e, 0x53, 0x18, 0x5a, + 0xf2, 0x32, 0x93, 0xa7, 0xbc, 0xdf, 0xe4, 0x71, 0xff, 0xdd, 0x81, 0xcc, 0x62, 0x41, 0x3a, 0x30, + 0xca, 0x35, 0xe8, 0x15, 0xf3, 0xf4, 0x82, 0xcd, 0x9a, 0x4f, 0x2c, 0x35, 0x2c, 0xc4, 0x4f, 0x94, + 0x82, 0x48, 0x4b, 0x79, 0xe7, 0xa5, 0x22, 0x9e, 0x07, 0xb1, 0x05, 0x72, 0xff, 0x5e, 0xfd, 0x43, + 0x89, 0xf6, 0xf4, 0xdd, 0xe7, 0x61, 0xa6, 0x4f, 0x29, 0x71, 0x3d, 0x2a, 0x4a, 0xdf, 0x9b, 0xb0, + 0x46, 0xa0, 0xb8, 0xac, 0x89, 0x12, 0xc7, 0x1d, 0xfc, 0xe3, 0x79, 0xf6, 0xe4, 0xf3, 0x0e, 0xcc, + 0xb0, 0x3c, 0xbf, 0x47, 0xd5, 0x76, 0x3a, 0x72, 0xd5, 0x87, 0xc2, 0x7e, 0x25, 0xdc, 0xff, 0x55, + 0xe6, 0x49, 0xfe, 0xa3, 0x9b, 0x5e, 0x5c, 0x9c, 0xa1, 0x8b, 0x0b, 0x9f, 0x62, 0xfe, 0x16, 0xad, + 0x77, 0x5b, 0x7d, 0xb9, 0x39, 0xeb, 0x0a, 0x8e, 0x9a, 0x22, 0xf3, 0xb0, 0x5e, 0x79, 0xdf, 0x87, + 0xf5, 0x9e, 0x83, 0x49, 0xfb, 0x4d, 0x15, 0x11, 0x42, 0x53, 0x87, 0x0f, 0xf6, 0xf3, 0x2b, 0x98, + 0xa1, 0xca, 0x3d, 0xcc, 0x36, 0xba, 0xef, 0xc3, 0x6c, 0xcf, 0x40, 0x45, 0x3d, 0x32, 0x96, 0xc6, + 0x77, 0x65, 0xe2, 0x8f, 0x82, 0xa1, 0xc6, 0x72, 0x03, 0xd1, 0xf6, 0xc2, 0xae, 0xd7, 0xe2, 0x2d, + 0xa4, 0xf2, 0x01, 0xf5, 0xcc, 0xba, 0xa6, 0x31, 0x68, 0x51, 0xf1, 0x1a, 0x27, 0x41, 0x9b, 0xbe, + 0x1c, 0x85, 0x69, 0x64, 0x44, 0xd7, 0x78, 0x43, 0xc1, 0x51, 0x53, 0xb8, 0xff, 0xec, 0x40, 0xfe, + 0x85, 0xa4, 0x4c, 0x0e, 0xa2, 0xb3, 0x6f, 0x0e, 0x62, 0x36, 0xbf, 0xaa, 0x74, 0xa0, 0xfc, 0x2a, + 0x3b, 0xf5, 0xa9, 0xfc, 0xc0, 0xd4, 0xa7, 0x37, 0x98, 0x0b, 0xf1, 0x32, 0x47, 0x6a, 0x62, 0xd0, + 0x65, 0x78, 0xe2, 0xc2, 0x98, 0xef, 0xe9, 0x14, 0xef, 0x49, 0xe9, 0x56, 0x2d, 0x2d, 0x0a, 0x22, + 0x85, 0xa9, 0xcd, 0x7f, 0xe5, 0xdb, 0x67, 0x9f, 0xf8, 0xea, 0xb7, 0xcf, 0x3e, 0xf1, 0x8d, 0x6f, + 0x9f, 0x7d, 0xe2, 0xc3, 0xf7, 0xce, 0x3a, 0x5f, 0xb9, 0x77, 0xd6, 0xf9, 0xea, 0xbd, 0xb3, 0xce, + 0x37, 0xee, 0x9d, 0x75, 0xbe, 0x75, 0xef, 0xac, 0xf3, 0x99, 0x7f, 0x38, 0xfb, 0xc4, 0xcb, 0x95, + 0x74, 0x64, 0xff, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5f, 0xef, 0x41, 0x0e, 0x4d, 0x78, 0x00, + 0x00, } func (m *AWSAuthConfig) Marshal() (dAtA []byte, err error) { @@ -3779,6 +3781,14 @@ func (m *ApplicationSourceHelm) MarshalToSizedBuffer(dAtA []byte) (int, error) { var l int _ = l i-- + if m.SkipCrds { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x48 + i-- if m.IgnoreMissingValueFiles { dAtA[i] = 1 } else { @@ -8491,6 +8501,7 @@ func (m *ApplicationSourceHelm) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) n += 2 n += 2 + n += 2 return n } @@ -10365,6 +10376,7 @@ func (this *ApplicationSourceHelm) String() string { `Version:` + fmt.Sprintf("%v", this.Version) + `,`, `PassCredentials:` + fmt.Sprintf("%v", this.PassCredentials) + `,`, `IgnoreMissingValueFiles:` + fmt.Sprintf("%v", this.IgnoreMissingValueFiles) + `,`, + `SkipCrds:` + fmt.Sprintf("%v", this.SkipCrds) + `,`, `}`, }, "") return s @@ -13992,6 +14004,26 @@ func (m *ApplicationSourceHelm) Unmarshal(dAtA []byte) error { } } m.IgnoreMissingValueFiles = bool(v != 0) + case 9: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SkipCrds", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.SkipCrds = bool(v != 0) default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/application/v1alpha1/generated.proto b/pkg/apis/application/v1alpha1/generated.proto index fc784f96c1f50..47ef712255afd 100644 --- a/pkg/apis/application/v1alpha1/generated.proto +++ b/pkg/apis/application/v1alpha1/generated.proto @@ -213,6 +213,9 @@ message ApplicationSourceHelm { // IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values optional bool ignoreMissingValueFiles = 8; + + // SkipCrds skips custom resource definition installation step (Helm's --skip-crds) + optional bool skipCrds = 9; } // ApplicationSourceJsonnet holds options specific to applications of type Jsonnet diff --git a/pkg/apis/application/v1alpha1/openapi_generated.go b/pkg/apis/application/v1alpha1/openapi_generated.go index ca5d116acc9d7..78fb2d604ea0b 100644 --- a/pkg/apis/application/v1alpha1/openapi_generated.go +++ b/pkg/apis/application/v1alpha1/openapi_generated.go @@ -792,6 +792,13 @@ func schema_pkg_apis_application_v1alpha1_ApplicationSourceHelm(ref common.Refer Format: "", }, }, + "skipCrds": { + SchemaProps: spec.SchemaProps{ + Description: "SkipCrds skips custom resource definition installation step (Helm's --skip-crds)", + Type: []string{"boolean"}, + Format: "", + }, + }, }, }, }, diff --git a/pkg/apis/application/v1alpha1/types.go b/pkg/apis/application/v1alpha1/types.go index bcd984542c291..1ee33ae66959b 100644 --- a/pkg/apis/application/v1alpha1/types.go +++ b/pkg/apis/application/v1alpha1/types.go @@ -245,6 +245,8 @@ type ApplicationSourceHelm struct { PassCredentials bool `json:"passCredentials,omitempty" protobuf:"bytes,7,opt,name=passCredentials"` // IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values IgnoreMissingValueFiles bool `json:"ignoreMissingValueFiles,omitempty" protobuf:"bytes,8,opt,name=ignoreMissingValueFiles"` + // SkipCrds skips custom resource definition installation step (Helm's --skip-crds) + SkipCrds bool `json:"skipCrds,omitempty" protobuf:"bytes,9,opt,name=skipCrds"` } // HelmParameter is a parameter that's passed to helm template during manifest generation @@ -326,7 +328,7 @@ func (in *ApplicationSourceHelm) AddFileParameter(p HelmFileParameter) { // IsZero Returns true if the Helm options in an application source are considered zero func (h *ApplicationSourceHelm) IsZero() bool { - return h == nil || (h.Version == "") && (h.ReleaseName == "") && len(h.ValueFiles) == 0 && len(h.Parameters) == 0 && len(h.FileParameters) == 0 && h.Values == "" && !h.PassCredentials && !h.IgnoreMissingValueFiles + return h == nil || (h.Version == "") && (h.ReleaseName == "") && len(h.ValueFiles) == 0 && len(h.Parameters) == 0 && len(h.FileParameters) == 0 && h.Values == "" && !h.PassCredentials && !h.IgnoreMissingValueFiles && !h.SkipCrds } // KustomizeImage represents a Kustomize image definition in the format [old_image_name=]: diff --git a/reposerver/repository/repository.go b/reposerver/repository/repository.go index 2721261e1026e..f0080fcefd41d 100644 --- a/reposerver/repository/repository.go +++ b/reposerver/repository/repository.go @@ -16,6 +16,8 @@ import ( "strings" "time" + "github.com/google/go-jsonnet" + "github.com/argoproj/argo-cd/v2/util/argo" "github.com/Masterminds/semver" @@ -25,7 +27,6 @@ import ( "github.com/argoproj/pkg/sync" jsonpatch "github.com/evanphx/json-patch" "github.com/ghodss/yaml" - "github.com/google/go-jsonnet" log "github.com/sirupsen/logrus" "golang.org/x/sync/semaphore" "google.golang.org/grpc/codes" @@ -644,6 +645,7 @@ func helmTemplate(appPath string, repoRoot string, env *v1alpha1.Env, q *apiclie templateOpts.SetFile[p.Name] = p.Path } passCredentials = appHelm.PassCredentials + templateOpts.SkipCrds = appHelm.SkipCrds } if templateOpts.Name == "" { templateOpts.Name = q.AppName diff --git a/test/e2e/fixture/app/actions.go b/test/e2e/fixture/app/actions.go index 21e89f0e6f204..c85b67fc8a39d 100644 --- a/test/e2e/fixture/app/actions.go +++ b/test/e2e/fixture/app/actions.go @@ -203,6 +203,9 @@ func (a *Actions) prepareCreateArgs(args []string) []string { if a.context.helmPassCredentials { args = append(args, "--helm-pass-credentials") } + if a.context.helmSkipCrds { + args = append(args, "--helm-skip-crds") + } return args } diff --git a/test/e2e/fixture/app/context.go b/test/e2e/fixture/app/context.go index d535dea46154a..60ff205504cf7 100644 --- a/test/e2e/fixture/app/context.go +++ b/test/e2e/fixture/app/context.go @@ -38,6 +38,7 @@ type Context struct { directoryRecurse bool replace bool helmPassCredentials bool + helmSkipCrds bool } func Given(t *testing.T) *Context { @@ -296,3 +297,8 @@ func (c *Context) HelmPassCredentials() *Context { c.helmPassCredentials = true return c } + +func (c *Context) HelmSkipCrds() *Context { + c.helmSkipCrds = true + return c +} diff --git a/util/helm/cmd.go b/util/helm/cmd.go index 2b0f0e2fe02b4..af77d43edf4ed 100644 --- a/util/helm/cmd.go +++ b/util/helm/cmd.go @@ -288,6 +288,7 @@ type TemplateOpts struct { SetString map[string]string SetFile map[string]string Values []string + SkipCrds bool } var ( @@ -330,8 +331,8 @@ func (c *Cmd) template(chartPath string, opts *TemplateOpts) (string, error) { for _, v := range opts.APIVersions { args = append(args, "--api-versions", v) } - if c.HelmVer.additionalTemplateArgs != nil { - args = append(args, c.HelmVer.additionalTemplateArgs...) + if c.HelmVer.includeCrds && !opts.SkipCrds { + args = append(args, "--include-crds") } return c.run(args...) diff --git a/util/helm/helm_test.go b/util/helm/helm_test.go index c2dfc12519707..00a7d6389fff9 100644 --- a/util/helm/helm_test.go +++ b/util/helm/helm_test.go @@ -223,3 +223,25 @@ func TestAPIVersions(t *testing.T) { } assert.Equal(t, objs[0].GetAPIVersion(), "sample/v2") } + +func TestSkipCrds(t *testing.T) { + h, err := NewHelmApp("./testdata/crds", nil, false, "", "", false) + if !assert.NoError(t, err) { + return + } + + objs, err := template(h, &TemplateOpts{SkipCrds: false}) + if !assert.NoError(t, err) || !assert.Len(t, objs, 1) { + return + } + + objs, err = template(h, &TemplateOpts{}) + if !assert.NoError(t, err) || !assert.Len(t, objs, 1) { + return + } + + objs, err = template(h, &TemplateOpts{SkipCrds: true}) + if !assert.NoError(t, err) || !assert.Len(t, objs, 0) { + return + } +} diff --git a/util/helm/helmver.go b/util/helm/helmver.go index 1fcd9abc5d79d..51e8e252548cb 100644 --- a/util/helm/helmver.go +++ b/util/helm/helmver.go @@ -24,7 +24,7 @@ var ( pullCommand: "pull", initSupported: false, getPostTemplateCallback: cleanupChartLockFile, - additionalTemplateArgs: []string{"--include-crds"}, + includeCrds: true, insecureSkipVerifySupported: true, helmPassCredentialsSupported: true, } @@ -59,7 +59,7 @@ type HelmVer struct { pullCommand string kubeVersionSupported bool getPostTemplateCallback func(chartPath string) (func(), error) - additionalTemplateArgs []string + includeCrds bool insecureSkipVerifySupported bool helmPassCredentialsSupported bool } diff --git a/util/helm/testdata/crds/Chart.yaml b/util/helm/testdata/crds/Chart.yaml new file mode 100644 index 0000000000000..7d8b93a3c6b5c --- /dev/null +++ b/util/helm/testdata/crds/Chart.yaml @@ -0,0 +1,3 @@ +apiVersion: v1 +version: 1.0.0 +name: crds diff --git a/util/helm/testdata/crds/crds/crd.yaml b/util/helm/testdata/crds/crds/crd.yaml new file mode 100644 index 0000000000000..f7e8b43ce4dd1 --- /dev/null +++ b/util/helm/testdata/crds/crds/crd.yaml @@ -0,0 +1,40 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + # name must match the spec fields below, and be in the form: . + name: crontabs.stable.example.com +spec: + # group name to use for REST API: /apis// + group: stable.example.com + # list of versions supported by this CustomResourceDefinition + versions: + - name: v1 + # Each version can be enabled/disabled by Served flag. + served: true + # One and only one version must be marked as the storage version. + storage: true + schema: + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + cronSpec: + type: string + image: + type: string + replicas: + type: integer + # either Namespaced or Cluster + scope: Namespaced + names: + # plural name to be used in the URL: /apis/// + plural: crontabs + # singular name to be used as an alias on the CLI and for display + singular: crontab + # kind is normally the CamelCased singular type. Your resource manifests use this. + kind: CronTab + # shortNames allow shorter string to match your resource on the CLI + shortNames: + - ct diff --git a/util/helm/testdata/crds/templates/.gitkeep b/util/helm/testdata/crds/templates/.gitkeep new file mode 100644 index 0000000000000..e69de29bb2d1d