From bc501b032055cebf503a0da2156fd73928879191 Mon Sep 17 00:00:00 2001 From: cef Date: Sun, 20 Oct 2024 18:07:30 -0500 Subject: [PATCH] feat(app): add Name to ApplicationSource Signed-off-by: cef --- assets/swagger.json | 4 + cmd/argocd/commands/app.go | 185 ++- docs/user-guide/commands/argocd_app.md | 2 +- docs/user-guide/commands/argocd_app_diff.md | 1 + docs/user-guide/commands/argocd_app_get.md | 4 + .../commands/argocd_app_manifests.md | 4 + .../commands/argocd_app_remove-source.md | 6 +- docs/user-guide/commands/argocd_app_set.md | 4 + docs/user-guide/commands/argocd_app_sync.md | 4 +- docs/user-guide/commands/argocd_app_unset.md | 4 + manifests/core-install.yaml | 144 +++ manifests/crds/application-crd.yaml | 48 + manifests/crds/applicationset-crd.yaml | 96 ++ manifests/ha/install.yaml | 144 +++ manifests/install.yaml | 144 +++ pkg/apis/application/v1alpha1/generated.pb.go | 1126 +++++++++-------- pkg/apis/application/v1alpha1/generated.proto | 3 + pkg/apis/application/v1alpha1/types.go | 2 + .../application-parameters.tsx | 8 +- ui/src/app/shared/models.ts | 2 + 20 files changed, 1376 insertions(+), 559 deletions(-) diff --git a/assets/swagger.json b/assets/swagger.json index edbc533ab92ed..66d1c05f84129 100644 --- a/assets/swagger.json +++ b/assets/swagger.json @@ -6526,6 +6526,10 @@ "kustomize": { "$ref": "#/definitions/v1alpha1ApplicationSourceKustomize" }, + "name": { + "description": "Name is used to refer to a source and is displayed in the UI.", + "type": "string" + }, "path": { "description": "Path is a directory path within the Git repository, and is only valid for applications sourced from Git.", "type": "string" diff --git a/cmd/argocd/commands/app.go b/cmd/argocd/commands/app.go index 4c262a67fddca..732303c8ce125 100644 --- a/cmd/argocd/commands/app.go +++ b/cmd/argocd/commands/app.go @@ -314,6 +314,17 @@ func printHeader(acdClient argocdclient.Client, app *argoappv1.Application, ctx } } +// getSourceNameToPositionMap returns a map of source name to position +func getSourceNameToPositionMap(app *argoappv1.Application) map[string]int64 { + sourceNameToPosition := make(map[string]int64) + for i, s := range app.Spec.Sources { + if s.Name != "" { + sourceNameToPosition[s.Name] = int64(i + 1) + } + } + return sourceNameToPosition +} + // NewApplicationGetCommand returns a new instance of an `argocd app get` command func NewApplicationGetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Command { var ( @@ -324,6 +335,7 @@ func NewApplicationGetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Com showOperation bool appNamespace string sourcePosition int + sourceName string ) command := &cobra.Command{ Use: "get APPNAME", @@ -347,6 +359,9 @@ func NewApplicationGetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Com # Show application parameters and overrides for a source at position 1 under spec.sources of app my-app argocd app get my-app --show-params --source-position 1 + # Show application parameters and overrides for a source named "test" + argocd app get my-app --show-params --source-name test + # Refresh application data when retrieving argocd app get my-app --refresh @@ -379,6 +394,19 @@ func NewApplicationGetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Com }) errors.CheckError(err) + if sourceName != "" && sourcePosition != -1 { + errors.CheckError(fmt.Errorf("Only one of source-position and source-name can be specified.")) + } + + if sourceName != "" { + sourceNameToPosition := getSourceNameToPositionMap(app) + if pos, ok := sourceNameToPosition[sourceName]; !ok { + log.Fatalf("Unknown source name '%s'", sourceName) + } else { + sourcePosition = int(pos) + } + } + if app.Spec.HasMultipleSources() { if sourcePosition <= 0 { errors.CheckError(fmt.Errorf("Source position should be specified and must be greater than 0 for applications with multiple sources")) @@ -433,6 +461,7 @@ func NewApplicationGetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Com command.Flags().BoolVar(&hardRefresh, "hard-refresh", false, "Refresh application data as well as target manifests cache") command.Flags().StringVarP(&appNamespace, "app-namespace", "N", "", "Only get application from namespace") command.Flags().IntVar(&sourcePosition, "source-position", -1, "Position of the source from the list of sources of the app. Counting starts at 1.") + command.Flags().StringVar(&sourceName, "source-name", "", "Name of the source from the list of sources of the app.") return command } @@ -762,6 +791,7 @@ func NewApplicationSetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Com appOpts cmdutil.AppOptions appNamespace string sourcePosition int + sourceName string ) command := &cobra.Command{ Use: "set APPNAME", @@ -776,6 +806,9 @@ func NewApplicationSetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Com # Set and override application parameters for a source at position 1 under spec.sources of app my-app. source-position starts at 1. argocd app set my-app --source-position 1 --repo https://github.com/argoproj/argocd-example-apps.git + # Set and override application parameters for a source named "test" under spec.sources of app my-app. + argocd app set my-app --source-name test --repo https://github.com/argoproj/argocd-example-apps.git + # Set application parameters and specify the namespace argocd app set my-app --parameter key1=value1 --parameter key2=value2 --namespace my-namespace `), @@ -794,6 +827,19 @@ func NewApplicationSetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Com app, err := appIf.Get(ctx, &application.ApplicationQuery{Name: &appName, AppNamespace: &appNs}) errors.CheckError(err) + if sourceName != "" && sourcePosition != -1 { + errors.CheckError(fmt.Errorf("Only one of source-position and source-name can be specified.")) + } + + if sourceName != "" { + sourceNameToPosition := getSourceNameToPositionMap(app) + if pos, ok := sourceNameToPosition[sourceName]; !ok { + log.Fatalf("Unknown source name '%s'", sourceName) + } else { + sourcePosition = int(pos) + } + } + if app.Spec.HasMultipleSources() { if sourcePosition <= 0 { errors.CheckError(fmt.Errorf("Source position should be specified and must be greater than 0 for applications with multiple sources")) @@ -823,6 +869,7 @@ func NewApplicationSetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Com cmdutil.AddAppFlags(command, &appOpts) command.Flags().StringVarP(&appNamespace, "app-namespace", "N", "", "Set application parameters in namespace") command.Flags().IntVar(&sourcePosition, "source-position", -1, "Position of the source from the list of sources of the app. Counting starts at 1.") + command.Flags().StringVar(&sourceName, "source-name", "", "Name of the source from the list of sources of the app.") return command } @@ -857,6 +904,7 @@ func (o *unsetOpts) KustomizeIsZero() bool { // NewApplicationUnsetCommand returns a new instance of an `argocd app unset` command func NewApplicationUnsetCommand(clientOpts *argocdclient.ClientOptions) *cobra.Command { var sourcePosition int + var sourceName string appOpts := cmdutil.AppOptions{} opts := unsetOpts{} var appNamespace string @@ -872,6 +920,9 @@ func NewApplicationUnsetCommand(clientOpts *argocdclient.ClientOptions) *cobra.C # Unset kustomize override suffix for source at position 1 under spec.sources of app my-app. source-position starts at 1. argocd app unset my-app --source-position 1 --namesuffix + # Unset kustomize override suffix for source named "test" under spec.sources of app my-app. + argocd app unset my-app --source-name test --namesuffix + # Unset parameter override argocd app unset my-app -p COMPONENT=PARAM`, @@ -889,6 +940,19 @@ func NewApplicationUnsetCommand(clientOpts *argocdclient.ClientOptions) *cobra.C app, err := appIf.Get(ctx, &application.ApplicationQuery{Name: &appName, AppNamespace: &appNs}) errors.CheckError(err) + if sourceName != "" && sourcePosition != -1 { + errors.CheckError(fmt.Errorf("Only one of source-position and source-name can be specified.")) + } + + if sourceName != "" { + sourceNameToPosition := getSourceNameToPositionMap(app) + if pos, ok := sourceNameToPosition[sourceName]; !ok { + log.Fatalf("Unknown source name '%s'", sourceName) + } else { + sourcePosition = int(pos) + } + } + if app.Spec.HasMultipleSources() { if sourcePosition <= 0 { errors.CheckError(fmt.Errorf("Source position should be specified and must be greater than 0 for applications with multiple sources")) @@ -934,6 +998,7 @@ func NewApplicationUnsetCommand(clientOpts *argocdclient.ClientOptions) *cobra.C command.Flags().BoolVar(&opts.passCredentials, "pass-credentials", false, "Unset passCredentials") command.Flags().BoolVar(&opts.ref, "ref", false, "Unset ref on the source") command.Flags().IntVar(&sourcePosition, "source-position", -1, "Position of the source from the list of sources of the app. Counting starts at 1.") + command.Flags().StringVar(&sourceName, "source-name", "", "Name of the source from the list of sources of the app.") return command } @@ -1150,6 +1215,7 @@ func NewApplicationDiffCommand(clientOpts *argocdclient.ClientOptions) *cobra.Co appNamespace string revisions []string sourcePositions []int64 + sourceNames []string ignoreNormalizerOpts normalizers.IgnoreNormalizerOpts ) shortDesc := "Perform a diff against the target and live state." @@ -1165,8 +1231,16 @@ func NewApplicationDiffCommand(clientOpts *argocdclient.ClientOptions) *cobra.Co os.Exit(2) } - if len(revisions) != len(sourcePositions) { - errors.CheckError(fmt.Errorf("While using revisions and source-positions, length of values for both flags should be same.")) + if len(sourceNames) > 0 && len(sourcePositions) > 0 { + errors.CheckError(fmt.Errorf("Only one of source-positions and source-names can be specified.")) + } + + if len(sourcePositions) > 0 && len(revisions) != len(sourcePositions) { + errors.CheckError(fmt.Errorf("While using --revisions and --source-positions, length of values for both flags should be same.")) + } + + if len(sourceNames) > 0 && len(revisions) != len(sourceNames) { + errors.CheckError(fmt.Errorf("While using --revisions and --source-names, length of values for both flags should be same.")) } clientset := headless.NewClientOrDie(clientOpts, c) @@ -1180,6 +1254,18 @@ func NewApplicationDiffCommand(clientOpts *argocdclient.ClientOptions) *cobra.Co }) errors.CheckError(err) + if len(sourceNames) > 0 { + sourceNameToPosition := getSourceNameToPositionMap(app) + + for _, name := range sourceNames { + if pos, ok := sourceNameToPosition[name]; !ok { + log.Fatalf("Unknown source name '%s'", name) + } else { + sourcePositions = append(sourcePositions, pos) + } + } + } + resources, err := appIf.ManagedResources(ctx, &application.ResourcesQuery{ApplicationName: &appName, AppNamespace: &appNs}) errors.CheckError(err) conn, settingsIf := clientset.NewSettingsClientOrDie() @@ -1260,6 +1346,7 @@ func NewApplicationDiffCommand(clientOpts *argocdclient.ClientOptions) *cobra.Co command.Flags().StringVarP(&appNamespace, "app-namespace", "N", "", "Only render the difference in namespace") command.Flags().StringArrayVar(&revisions, "revisions", []string{}, "Show manifests at specific revisions for source position in source-positions") command.Flags().Int64SliceVar(&sourcePositions, "source-positions", []int64{}, "List of source positions. Default is empty array. Counting start at 1.") + command.Flags().StringArrayVar(&sourceNames, "source-names", []string{}, "List of source names. Default is an empty array.") command.Flags().DurationVar(&ignoreNormalizerOpts.JQExecutionTimeout, "ignore-normalizer-jq-execution-timeout", normalizers.DefaultJQExecutionTimeout, "Set ignore normalizer JQ execution timeout") return command } @@ -1833,6 +1920,7 @@ func NewApplicationSyncCommand(clientOpts *argocdclient.ClientOptions) *cobra.Co revision string revisions []string sourcePositions []int64 + sourceNames []string resources []string labels []string selector string @@ -1876,7 +1964,8 @@ func NewApplicationSyncCommand(clientOpts *argocdclient.ClientOptions) *cobra.Co argocd app sync -l 'app.kubernetes.io/instance notin (my-app,other-app)' # Sync a multi-source application for specific revision of specific sources - argocd app manifests my-app --revisions 0.0.1 --source-positions 1 --revisions 0.0.2 --source-positions 2 + argocd app sync my-app --revisions 0.0.1 --source-positions 1 --revisions 0.0.2 --source-positions 2 + argocd app sync my-app --revisions 0.0.1 --source-names my-chart --revisions 0.0.2 --source-names my-values # Sync a specific resource # Resource should be formatted as GROUP:KIND:NAME. If no GROUP is specified then :KIND:NAME @@ -1901,10 +1990,22 @@ func NewApplicationSyncCommand(clientOpts *argocdclient.ClientOptions) *cobra.Co log.Fatal("Cannot use --revisions and --source-positions options when 0 or more than 1 application names are passed as argument(s)") } - if len(revisions) != len(sourcePositions) { + if len(args) != 1 && (len(revisions) > 0 || len(sourceNames) > 0) { + log.Fatal("Cannot use --revisions and --source-names options when 0 or more than 1 application names are passed as argument(s)") + } + + if len(sourceNames) > 0 && len(sourcePositions) > 0 { + log.Fatal("Only one of source-positions and source-names can be specified.") + } + + if len(sourcePositions) > 0 && len(revisions) != len(sourcePositions) { log.Fatal("While using --revisions and --source-positions, length of values for both flags should be same.") } + if len(sourceNames) > 0 && len(revisions) != len(sourceNames) { + log.Fatal("While using --revisions and --source-names, length of values for both flags should be same.") + } + for _, pos := range sourcePositions { if pos <= 0 { log.Fatal("source-position cannot be less than or equal to 0, Counting starts at 1") @@ -1918,6 +2019,22 @@ func NewApplicationSyncCommand(clientOpts *argocdclient.ClientOptions) *cobra.Co selectedLabels, err := label.Parse(labels) errors.CheckError(err) + if len(args) == 1 && len(sourceNames) > 0 { + appName, _ := argo.ParseFromQualifiedName(args[0], appNamespace) + app, err := appIf.Get(context.Background(), &application.ApplicationQuery{Name: &appName}) + errors.CheckError(err) + + sourceNameToPosition := getSourceNameToPositionMap(app) + + for _, name := range sourceNames { + if pos, ok := sourceNameToPosition[name]; !ok { + log.Fatalf("Unknown source name '%s'", name) + } else { + sourcePositions = append(sourcePositions, pos) + } + } + } + appNames := args if selector != "" || len(projects) > 0 { list, err := appIf.List(ctx, &application.ApplicationQuery{ @@ -2176,6 +2293,7 @@ func NewApplicationSyncCommand(clientOpts *argocdclient.ClientOptions) *cobra.Co command.Flags().DurationVar(&ignoreNormalizerOpts.JQExecutionTimeout, "ignore-normalizer-jq-execution-timeout", normalizers.DefaultJQExecutionTimeout, "Set ignore normalizer JQ execution timeout") command.Flags().StringArrayVar(&revisions, "revisions", []string{}, "Show manifests at specific revisions for source position in source-positions") command.Flags().Int64SliceVar(&sourcePositions, "source-positions", []int64{}, "List of source positions. Default is empty array. Counting start at 1.") + command.Flags().StringArrayVar(&sourceNames, "source-names", []string{}, "List of source names. Default is an empty array.") return command } @@ -2816,6 +2934,7 @@ func NewApplicationManifestsCommand(clientOpts *argocdclient.ClientOptions) *cob revision string revisions []string sourcePositions []int64 + sourceNames []string local string localRepoRoot string ) @@ -2829,6 +2948,9 @@ func NewApplicationManifestsCommand(clientOpts *argocdclient.ClientOptions) *cob # Get manifests for an application at a specific revision argocd app manifests my-app --revision 0.0.1 + # Get manifests for a multi-source application at specific revisions for specific sources + argocd app manifests my-app --revisions 0.0.1 --source-names src-base --revisions 0.0.2 --source-names src-values + # Get manifests for a multi-source application at specific revisions for specific sources argocd app manifests my-app --revisions 0.0.1 --source-positions 1 --revisions 0.0.2 --source-positions 2 `), @@ -2840,8 +2962,16 @@ func NewApplicationManifestsCommand(clientOpts *argocdclient.ClientOptions) *cob os.Exit(1) } - if len(revisions) != len(sourcePositions) { - errors.CheckError(fmt.Errorf("While using revisions and source-positions, length of values for both flags should be same.")) + if len(sourceNames) > 0 && len(sourcePositions) > 0 { + errors.CheckError(fmt.Errorf("Only one of source-positions and source-names can be specified.")) + } + + if len(sourcePositions) > 0 && len(revisions) != len(sourcePositions) { + errors.CheckError(fmt.Errorf("While using --revisions and --source-positions, length of values for both flags should be same.")) + } + + if len(sourceNames) > 0 && len(revisions) != len(sourceNames) { + errors.CheckError(fmt.Errorf("While using --revisions and --source-names, length of values for both flags should be same.")) } for _, pos := range sourcePositions { @@ -2855,6 +2985,21 @@ func NewApplicationManifestsCommand(clientOpts *argocdclient.ClientOptions) *cob conn, appIf := clientset.NewApplicationClientOrDie() defer argoio.Close(conn) + app, err := appIf.Get(context.Background(), &application.ApplicationQuery{Name: &appName}) + errors.CheckError(err) + + if len(sourceNames) > 0 { + sourceNameToPosition := getSourceNameToPositionMap(app) + + for _, name := range sourceNames { + if pos, ok := sourceNameToPosition[name]; !ok { + log.Fatalf("Unknown source name '%s'", name) + } else { + sourcePositions = append(sourcePositions, pos) + } + } + } + resources, err := appIf.ManagedResources(ctx, &application.ResourcesQuery{ ApplicationName: &appName, AppNamespace: &appNs, @@ -2865,9 +3010,6 @@ func NewApplicationManifestsCommand(clientOpts *argocdclient.ClientOptions) *cob switch source { case "git": if local != "" { - app, err := appIf.Get(context.Background(), &application.ApplicationQuery{Name: &appName}) - errors.CheckError(err) - settingsConn, settingsIf := clientset.NewSettingsClientOrDie() defer argoio.Close(settingsConn) argoSettings, err := settingsIf.Get(context.Background(), &settings.SettingsQuery{}) @@ -2936,6 +3078,7 @@ func NewApplicationManifestsCommand(clientOpts *argocdclient.ClientOptions) *cob command.Flags().StringVar(&revision, "revision", "", "Show manifests at a specific revision") command.Flags().StringArrayVar(&revisions, "revisions", []string{}, "Show manifests at specific revisions for the source at position in source-positions") command.Flags().Int64SliceVar(&sourcePositions, "source-positions", []int64{}, "List of source positions. Default is empty array. Counting start at 1.") + command.Flags().StringArrayVar(&sourceNames, "source-names", []string{}, "List of source names. Default is an empty array.") command.Flags().StringVar(&local, "local", "", "If set, show locally-generated manifests. Value is the absolute path to app manifests within the manifest repo. Example: '/home/username/apps/env/app-1'.") command.Flags().StringVar(&localRepoRoot, "local-repo-root", ".", "Path to the local repository root. Used together with --local allows setting the repository root. Example: '/home/username/apps'.") return command @@ -3142,13 +3285,17 @@ func NewApplicationAddSourceCommand(clientOpts *argocdclient.ClientOptions) *cob func NewApplicationRemoveSourceCommand(clientOpts *argocdclient.ClientOptions) *cobra.Command { var ( sourcePosition int + sourceName string appNamespace string ) command := &cobra.Command{ Use: "remove-source APPNAME", - Short: "Remove a source from multiple sources application. Counting starts with 1. Default value is -1.", + Short: "Remove a source from multiple sources application.", Example: ` # Remove the source at position 1 from application's sources. Counting starts at 1. - argocd app remove-source myapplication --source-position 1`, + argocd app remove-source myapplication --source-position 1 + + # Remove the source named "mysrc" from application's sources. + argocd app remove-source myapplication --source-name mysrc`, Run: func(c *cobra.Command, args []string) { ctx := c.Context() @@ -3157,7 +3304,7 @@ func NewApplicationRemoveSourceCommand(clientOpts *argocdclient.ClientOptions) * os.Exit(1) } - if sourcePosition <= 0 { + if sourceName == "" && sourcePosition <= 0 { errors.CheckError(fmt.Errorf("Value of source-position must be greater than 0")) } @@ -3174,6 +3321,19 @@ func NewApplicationRemoveSourceCommand(clientOpts *argocdclient.ClientOptions) * }) errors.CheckError(err) + if sourceName != "" && sourcePosition != -1 { + errors.CheckError(fmt.Errorf("Only one of source-position and source-name can be specified.")) + } + + if sourceName != "" { + sourceNameToPosition := getSourceNameToPositionMap(app) + if pos, ok := sourceNameToPosition[sourceName]; !ok { + log.Fatalf("Unknown source name '%s'", sourceName) + } else { + sourcePosition = int(pos) + } + } + if !app.Spec.HasMultipleSources() { errors.CheckError(fmt.Errorf("Application does not have multiple sources configured")) } @@ -3200,5 +3360,6 @@ func NewApplicationRemoveSourceCommand(clientOpts *argocdclient.ClientOptions) * } command.Flags().StringVarP(&appNamespace, "app-namespace", "N", "", "Namespace of the target application where the source will be appended") command.Flags().IntVar(&sourcePosition, "source-position", -1, "Position of the source from the list of sources of the app. Counting starts at 1.") + command.Flags().StringVar(&sourceName, "source-name", "", "Name of the source from the list of sources of the app.") return command } diff --git a/docs/user-guide/commands/argocd_app.md b/docs/user-guide/commands/argocd_app.md index ea5bf74d6a56a..3e83bd423e352 100644 --- a/docs/user-guide/commands/argocd_app.md +++ b/docs/user-guide/commands/argocd_app.md @@ -92,7 +92,7 @@ argocd app [flags] * [argocd app manifests](argocd_app_manifests.md) - Print manifests of an application * [argocd app patch](argocd_app_patch.md) - Patch application * [argocd app patch-resource](argocd_app_patch-resource.md) - Patch resource in an application -* [argocd app remove-source](argocd_app_remove-source.md) - Remove a source from multiple sources application. Counting starts with 1. Default value is -1. +* [argocd app remove-source](argocd_app_remove-source.md) - Remove a source from multiple sources application. * [argocd app resources](argocd_app_resources.md) - List resource of application * [argocd app rollback](argocd_app_rollback.md) - Rollback application to a previous deployed version by History ID, omitted will Rollback to the previous version * [argocd app set](argocd_app_set.md) - Set application parameters diff --git a/docs/user-guide/commands/argocd_app_diff.md b/docs/user-guide/commands/argocd_app_diff.md index d4c22d323db6b..999d4265e2d7a 100644 --- a/docs/user-guide/commands/argocd_app_diff.md +++ b/docs/user-guide/commands/argocd_app_diff.md @@ -31,6 +31,7 @@ argocd app diff APPNAME [flags] --revision string Compare live app to a particular revision --revisions stringArray Show manifests at specific revisions for source position in source-positions --server-side-generate Used with --local, this will send your manifests to the server for diffing + --source-names stringArray List of source names. Default is an empty array. --source-positions int64Slice List of source positions. Default is empty array. Counting start at 1. (default []) ``` diff --git a/docs/user-guide/commands/argocd_app_get.md b/docs/user-guide/commands/argocd_app_get.md index 8785e5b52637b..6588bc2080b1c 100644 --- a/docs/user-guide/commands/argocd_app_get.md +++ b/docs/user-guide/commands/argocd_app_get.md @@ -29,6 +29,9 @@ argocd app get APPNAME [flags] # Show application parameters and overrides for a source at position 1 under spec.sources of app my-app argocd app get my-app --show-params --source-position 1 + # Show application parameters and overrides for a source named "test" + argocd app get my-app --show-params --source-name test + # Refresh application data when retrieving argocd app get my-app --refresh @@ -52,6 +55,7 @@ argocd app get APPNAME [flags] --refresh Refresh application data when retrieving --show-operation Show application operation --show-params Show application parameters and overrides + --source-name string Name of the source from the list of sources of the app. --source-position int Position of the source from the list of sources of the app. Counting starts at 1. (default -1) ``` diff --git a/docs/user-guide/commands/argocd_app_manifests.md b/docs/user-guide/commands/argocd_app_manifests.md index 3238a7cfcf2d3..59c631f43c863 100644 --- a/docs/user-guide/commands/argocd_app_manifests.md +++ b/docs/user-guide/commands/argocd_app_manifests.md @@ -17,6 +17,9 @@ argocd app manifests APPNAME [flags] # Get manifests for an application at a specific revision argocd app manifests my-app --revision 0.0.1 + # Get manifests for a multi-source application at specific revisions for specific sources + argocd app manifests my-app --revisions 0.0.1 --source-names src-base --revisions 0.0.2 --source-names src-values + # Get manifests for a multi-source application at specific revisions for specific sources argocd app manifests my-app --revisions 0.0.1 --source-positions 1 --revisions 0.0.2 --source-positions 2 ``` @@ -30,6 +33,7 @@ argocd app manifests APPNAME [flags] --revision string Show manifests at a specific revision --revisions stringArray Show manifests at specific revisions for the source at position in source-positions --source string Source of manifests. One of: live|git (default "git") + --source-names stringArray List of source names. Default is an empty array. --source-positions int64Slice List of source positions. Default is empty array. Counting start at 1. (default []) ``` diff --git a/docs/user-guide/commands/argocd_app_remove-source.md b/docs/user-guide/commands/argocd_app_remove-source.md index d9741e108ce86..303ae82006760 100644 --- a/docs/user-guide/commands/argocd_app_remove-source.md +++ b/docs/user-guide/commands/argocd_app_remove-source.md @@ -2,7 +2,7 @@ ## argocd app remove-source -Remove a source from multiple sources application. Counting starts with 1. Default value is -1. +Remove a source from multiple sources application. ``` argocd app remove-source APPNAME [flags] @@ -13,6 +13,9 @@ argocd app remove-source APPNAME [flags] ``` # Remove the source at position 1 from application's sources. Counting starts at 1. argocd app remove-source myapplication --source-position 1 + + # Remove the source named "test" from application's sources. + argocd app remove-source myapplication --source-name test ``` ### Options @@ -20,6 +23,7 @@ argocd app remove-source APPNAME [flags] ``` -N, --app-namespace string Namespace of the target application where the source will be appended -h, --help help for remove-source + --source-name string Name of the source from the list of sources of the app. --source-position int Position of the source from the list of sources of the app. Counting starts at 1. (default -1) ``` diff --git a/docs/user-guide/commands/argocd_app_set.md b/docs/user-guide/commands/argocd_app_set.md index 4d4269b5bee11..3afaa3331fab6 100644 --- a/docs/user-guide/commands/argocd_app_set.md +++ b/docs/user-guide/commands/argocd_app_set.md @@ -20,6 +20,9 @@ argocd app set APPNAME [flags] # Set and override application parameters for a source at position 1 under spec.sources of app my-app. source-position starts at 1. argocd app set my-app --source-position 1 --repo https://github.com/argoproj/argocd-example-apps.git + # Set and override application parameters for a source named "test" under spec.sources of app my-app. + argocd app set my-app --source-name test --repo https://github.com/argoproj/argocd-example-apps.git + # Set application parameters and specify the namespace argocd app set my-app --parameter key1=value1 --parameter key2=value2 --namespace my-namespace ``` @@ -79,6 +82,7 @@ argocd app set APPNAME [flags] --revision string The tracking source branch, tag, commit or Helm chart version the application will sync to --revision-history-limit int How many items to keep in revision history (default 10) --self-heal Set self healing when sync is automated + --source-name string Name of the source from the list of sources of the app. --source-position int Position of the source from the list of sources of the app. Counting starts at 1. (default -1) --sync-option Prune=false Add or remove a sync option, e.g add Prune=false. Remove using `!` prefix, e.g. `!Prune=false` --sync-policy string Set the sync policy (one of: manual (aliases of manual: none), automated (aliases of automated: auto, automatic)) diff --git a/docs/user-guide/commands/argocd_app_sync.md b/docs/user-guide/commands/argocd_app_sync.md index 00d37d33747ff..8275220139813 100644 --- a/docs/user-guide/commands/argocd_app_sync.md +++ b/docs/user-guide/commands/argocd_app_sync.md @@ -25,7 +25,8 @@ argocd app sync [APPNAME... | -l selector | --project project-name] [flags] argocd app sync -l 'app.kubernetes.io/instance notin (my-app,other-app)' # Sync a multi-source application for specific revision of specific sources - argocd app manifests my-app --revisions 0.0.1 --source-positions 1 --revisions 0.0.2 --source-positions 2 + argocd app sync my-app --revisions 0.0.1 --source-positions 1 --revisions 0.0.2 --source-positions 2 + argocd app sync my-app --revisions 0.0.1 --source-names my-chart --revisions 0.0.2 --source-names my-values # Sync a specific resource # Resource should be formatted as GROUP:KIND:NAME. If no GROUP is specified then :KIND:NAME @@ -67,6 +68,7 @@ argocd app sync [APPNAME... | -l selector | --project project-name] [flags] --revisions stringArray Show manifests at specific revisions for source position in source-positions -l, --selector string Sync apps that match this label. Supports '=', '==', '!=', in, notin, exists & not exists. Matching apps must satisfy all of the specified label constraints. --server-side Use server-side apply while syncing the application + --source-names stringArray List of source names. Default is an empty array. --source-positions int64Slice List of source positions. Default is empty array. Counting start at 1. (default []) --strategy string Sync strategy (one of: apply|hook) --timeout uint Time out after this many seconds diff --git a/docs/user-guide/commands/argocd_app_unset.md b/docs/user-guide/commands/argocd_app_unset.md index 177f1b095dd69..3186fc8b7266f 100644 --- a/docs/user-guide/commands/argocd_app_unset.md +++ b/docs/user-guide/commands/argocd_app_unset.md @@ -20,6 +20,9 @@ argocd app unset APPNAME parameters [flags] # Unset kustomize override suffix for source at position 1 under spec.sources of app my-app. source-position starts at 1. argocd app unset my-app --source-position 1 --namesuffix + # Unset kustomize override suffix for source named "test" under spec.sources of app my-app. + argocd app unset my-app --source-name test --namesuffix + # Unset parameter override argocd app unset my-app -p COMPONENT=PARAM ``` @@ -40,6 +43,7 @@ argocd app unset APPNAME parameters [flags] --pass-credentials Unset passCredentials --plugin-env stringArray Unset plugin env variables (e.g --plugin-env name) --ref Unset ref on the source + --source-name string Name of the source from the list of sources of the app. --source-position int Position of the source from the list of sources of the app. Counting starts at 1. (default -1) --values stringArray Unset one or more Helm values files --values-literal Unset literal Helm values block diff --git a/manifests/core-install.yaml b/manifests/core-install.yaml index ea6566129bae8..ebcf5e128e1bf 100644 --- a/manifests/core-install.yaml +++ b/manifests/core-install.yaml @@ -460,6 +460,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -832,6 +836,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -1314,6 +1322,10 @@ spec: use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -1676,6 +1688,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -2204,6 +2220,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -2579,6 +2599,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -3103,6 +3127,10 @@ spec: Kustomize to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and + is displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced @@ -3497,6 +3525,10 @@ spec: of Kustomize to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and + is displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications @@ -4001,6 +4033,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -4387,6 +4423,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced @@ -4915,6 +4955,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -5301,6 +5345,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced @@ -5737,6 +5785,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -5969,6 +6019,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6365,6 +6417,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6597,6 +6651,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6992,6 +7048,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7224,6 +7282,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7599,6 +7659,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7831,6 +7893,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8231,6 +8295,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8463,6 +8529,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8859,6 +8927,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9091,6 +9161,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9486,6 +9558,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9718,6 +9792,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10093,6 +10169,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10325,6 +10403,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10708,6 +10788,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10940,6 +11022,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -11542,6 +11626,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -11774,6 +11860,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12371,6 +12459,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12603,6 +12693,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12995,6 +13087,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13227,6 +13321,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13629,6 +13725,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13861,6 +13959,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -14257,6 +14357,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -14489,6 +14591,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -14884,6 +14988,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15116,6 +15222,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15491,6 +15599,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15723,6 +15833,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -16106,6 +16218,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -16338,6 +16452,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -16940,6 +17056,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -17172,6 +17290,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -17769,6 +17889,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -18001,6 +18123,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -18397,6 +18521,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -18629,6 +18755,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -19011,6 +19139,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -19243,6 +19373,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -19845,6 +19977,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -20077,6 +20211,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -20674,6 +20810,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -20906,6 +21044,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -21373,6 +21513,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -21605,6 +21747,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: diff --git a/manifests/crds/application-crd.yaml b/manifests/crds/application-crd.yaml index 18d06c49db40b..9367e914a6fc3 100644 --- a/manifests/crds/application-crd.yaml +++ b/manifests/crds/application-crd.yaml @@ -459,6 +459,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -831,6 +835,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -1313,6 +1321,10 @@ spec: use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -1675,6 +1687,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -2203,6 +2219,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -2578,6 +2598,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -3102,6 +3126,10 @@ spec: Kustomize to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and + is displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced @@ -3496,6 +3524,10 @@ spec: of Kustomize to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and + is displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications @@ -4000,6 +4032,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -4386,6 +4422,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced @@ -4914,6 +4954,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -5300,6 +5344,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced diff --git a/manifests/crds/applicationset-crd.yaml b/manifests/crds/applicationset-crd.yaml index 1b6a00b6d23a0..0ebe1bffb7194 100644 --- a/manifests/crds/applicationset-crd.yaml +++ b/manifests/crds/applicationset-crd.yaml @@ -331,6 +331,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -563,6 +565,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -959,6 +963,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -1191,6 +1197,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -1586,6 +1594,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -1818,6 +1828,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -2193,6 +2205,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -2425,6 +2439,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -2825,6 +2841,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -3057,6 +3075,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -3453,6 +3473,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -3685,6 +3707,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -4080,6 +4104,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -4312,6 +4338,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -4687,6 +4715,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -4919,6 +4949,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -5302,6 +5334,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -5534,6 +5568,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6136,6 +6172,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6368,6 +6406,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6965,6 +7005,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7197,6 +7239,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7589,6 +7633,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7821,6 +7867,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8223,6 +8271,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8455,6 +8505,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8851,6 +8903,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9083,6 +9137,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9478,6 +9534,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9710,6 +9768,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10085,6 +10145,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10317,6 +10379,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10700,6 +10764,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10932,6 +10998,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -11534,6 +11602,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -11766,6 +11836,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12363,6 +12435,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12595,6 +12669,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12991,6 +13067,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13223,6 +13301,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13605,6 +13685,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13837,6 +13919,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -14439,6 +14523,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -14671,6 +14757,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15268,6 +15356,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15500,6 +15590,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15967,6 +16059,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -16199,6 +16293,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: diff --git a/manifests/ha/install.yaml b/manifests/ha/install.yaml index 6a33b0d28b65b..fc74a143fbfe1 100644 --- a/manifests/ha/install.yaml +++ b/manifests/ha/install.yaml @@ -460,6 +460,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -832,6 +836,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -1314,6 +1322,10 @@ spec: use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -1676,6 +1688,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -2204,6 +2220,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -2579,6 +2599,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -3103,6 +3127,10 @@ spec: Kustomize to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and + is displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced @@ -3497,6 +3525,10 @@ spec: of Kustomize to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and + is displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications @@ -4001,6 +4033,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -4387,6 +4423,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced @@ -4915,6 +4955,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -5301,6 +5345,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced @@ -5737,6 +5785,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -5969,6 +6019,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6365,6 +6417,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6597,6 +6651,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6992,6 +7048,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7224,6 +7282,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7599,6 +7659,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7831,6 +7893,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8231,6 +8295,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8463,6 +8529,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8859,6 +8927,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9091,6 +9161,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9486,6 +9558,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9718,6 +9792,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10093,6 +10169,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10325,6 +10403,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10708,6 +10788,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10940,6 +11022,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -11542,6 +11626,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -11774,6 +11860,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12371,6 +12459,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12603,6 +12693,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12995,6 +13087,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13227,6 +13321,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13629,6 +13725,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13861,6 +13959,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -14257,6 +14357,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -14489,6 +14591,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -14884,6 +14988,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15116,6 +15222,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15491,6 +15599,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15723,6 +15833,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -16106,6 +16218,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -16338,6 +16452,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -16940,6 +17056,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -17172,6 +17290,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -17769,6 +17889,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -18001,6 +18123,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -18397,6 +18521,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -18629,6 +18755,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -19011,6 +19139,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -19243,6 +19373,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -19845,6 +19977,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -20077,6 +20211,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -20674,6 +20810,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -20906,6 +21044,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -21373,6 +21513,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -21605,6 +21747,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: diff --git a/manifests/install.yaml b/manifests/install.yaml index 312f81fb65258..2b1155bed3163 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -460,6 +460,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -832,6 +836,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -1314,6 +1322,10 @@ spec: use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -1676,6 +1688,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -2204,6 +2220,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is displayed + in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -2579,6 +2599,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -3103,6 +3127,10 @@ spec: Kustomize to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and + is displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced @@ -3497,6 +3525,10 @@ spec: of Kustomize to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and + is displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications @@ -4001,6 +4033,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -4387,6 +4423,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced @@ -4915,6 +4955,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. @@ -5301,6 +5345,10 @@ spec: to use for rendering manifests type: string type: object + name: + description: Name is used to refer to a source and is + displayed in the UI. + type: string path: description: Path is a directory path within the Git repository, and is only valid for applications sourced @@ -5737,6 +5785,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -5969,6 +6019,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6365,6 +6417,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6597,6 +6651,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -6992,6 +7048,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7224,6 +7282,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7599,6 +7659,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -7831,6 +7893,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8231,6 +8295,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8463,6 +8529,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -8859,6 +8927,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9091,6 +9161,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9486,6 +9558,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -9718,6 +9792,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10093,6 +10169,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10325,6 +10403,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10708,6 +10788,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -10940,6 +11022,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -11542,6 +11626,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -11774,6 +11860,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12371,6 +12459,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12603,6 +12693,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -12995,6 +13087,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13227,6 +13321,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13629,6 +13725,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -13861,6 +13959,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -14257,6 +14357,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -14489,6 +14591,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -14884,6 +14988,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15116,6 +15222,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15491,6 +15599,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -15723,6 +15833,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -16106,6 +16218,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -16338,6 +16452,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -16940,6 +17056,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -17172,6 +17290,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -17769,6 +17889,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -18001,6 +18123,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -18397,6 +18521,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -18629,6 +18755,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -19011,6 +19139,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -19243,6 +19373,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -19845,6 +19977,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -20077,6 +20211,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -20674,6 +20810,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -20906,6 +21044,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -21373,6 +21513,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: @@ -21605,6 +21747,8 @@ spec: version: type: string type: object + name: + type: string path: type: string plugin: diff --git a/pkg/apis/application/v1alpha1/generated.pb.go b/pkg/apis/application/v1alpha1/generated.pb.go index 0fdea6fad5adc..9a942ea70dc7f 100644 --- a/pkg/apis/application/v1alpha1/generated.pb.go +++ b/pkg/apis/application/v1alpha1/generated.pb.go @@ -4593,7 +4593,7 @@ func init() { } var fileDescriptor_030104ce3b95bcac = []byte{ - // 11458 bytes of a gzipped FileDescriptorProto + // 11464 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x1c, 0xc9, 0x75, 0x98, 0x66, 0x17, 0x0b, 0xec, 0x3e, 0x7c, 0x11, 0x4d, 0xf2, 0x0e, 0xa4, 0xee, 0x0e, 0xf4, 0x9c, 0x7d, 0x3a, 0x47, 0x77, 0x80, 0x8f, 0xba, 0x93, 0x2f, 0x3a, 0x4b, 0x32, 0x3e, 0x48, 0x10, @@ -4769,548 +4769,548 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x44, 0x4d, 0xda, 0xb5, 0x37, 0x0d, 0x5b, 0x6f, 0x1a, 0xb6, 0xde, 0x34, 0x6c, 0x99, 0x77, 0x13, 0xc2, 0x68, 0x33, 0x70, 0x8f, 0x8c, 0x36, 0x29, 0x33, 0x54, 0xb5, 0x70, 0x33, 0x94, 0xfd, 0xa9, 0x0e, 0xcb, 0xfd, 0x5a, 0x44, 0x08, 0x0a, 0xa1, 0x12, 0x84, 0x75, 0x22, 0x75, 0xdc, 0xcb, 0xc5, - 0x28, 0x6c, 0x57, 0xc3, 0xba, 0xe1, 0x2e, 0x4e, 0xff, 0xc5, 0x98, 0xd3, 0xb1, 0x6f, 0x57, 0x20, - 0xa5, 0x4e, 0xf2, 0x79, 0xff, 0x71, 0x18, 0x88, 0x48, 0x2b, 0xbc, 0x86, 0x17, 0x85, 0x2c, 0xd3, - 0x11, 0x25, 0xbc, 0x18, 0x4b, 0x38, 0x95, 0x79, 0x2d, 0x27, 0xd9, 0x14, 0xc2, 0x4c, 0xc9, 0xbc, - 0x15, 0x27, 0xd9, 0xc4, 0x0c, 0x82, 0xde, 0x03, 0x23, 0x49, 0xea, 0x2a, 0x5c, 0x5c, 0xf9, 0x3e, - 0x24, 0x70, 0x47, 0xd2, 0x17, 0xe5, 0x38, 0x83, 0x8d, 0x5e, 0x85, 0xbe, 0x4d, 0xe2, 0x37, 0xc5, - 0xd4, 0xaf, 0x16, 0x27, 0x6b, 0xd8, 0xb7, 0x5e, 0x22, 0x7e, 0x93, 0x73, 0x42, 0xfa, 0x0b, 0x33, - 0x52, 0x74, 0xdd, 0xd7, 0xb6, 0xda, 0x71, 0x12, 0x36, 0xbd, 0xd7, 0xa4, 0xa5, 0xf3, 0x7d, 0x05, - 0x13, 0xbe, 0x22, 0xdb, 0xe7, 0x26, 0x25, 0xf5, 0x17, 0x6b, 0xca, 0xac, 0x1f, 0x75, 0x2f, 0x62, - 0x4b, 0x66, 0x57, 0x18, 0x2c, 0x8b, 0xee, 0xc7, 0x9c, 0x6c, 0x9f, 0xf7, 0x43, 0xfd, 0xc5, 0x9a, - 0x32, 0xda, 0x55, 0xfb, 0x6f, 0x90, 0xf5, 0xe1, 0x5a, 0xc1, 0x7d, 0xe0, 0x7b, 0x2f, 0x77, 0x1f, - 0x3e, 0x0e, 0x15, 0x77, 0xd3, 0x89, 0x92, 0xf1, 0x21, 0xb6, 0x68, 0xd4, 0x2a, 0x9e, 0xa5, 0x85, - 0x98, 0xc3, 0xd0, 0xa3, 0x50, 0x8e, 0xc8, 0x06, 0xf3, 0x4e, 0x36, 0xfc, 0xa2, 0x30, 0xd9, 0xc0, - 0xb4, 0xdc, 0xfe, 0xd5, 0x52, 0x5a, 0x6d, 0x4b, 0x7f, 0x37, 0x5f, 0xed, 0x6e, 0x3b, 0x8a, 0xa5, - 0xf9, 0xcb, 0x58, 0xed, 0xac, 0x18, 0x4b, 0x38, 0xfa, 0xb8, 0x05, 0x03, 0x37, 0xe3, 0x30, 0x08, - 0x48, 0x22, 0x44, 0xe4, 0xf5, 0x82, 0x87, 0xe2, 0x32, 0x6f, 0x5d, 0xf7, 0x41, 0x14, 0x60, 0x49, - 0x97, 0x76, 0x97, 0xec, 0xb8, 0x7e, 0xbb, 0xde, 0xe1, 0xea, 0x72, 0x81, 0x17, 0x63, 0x09, 0xa7, - 0xa8, 0x5e, 0xc0, 0x51, 0xfb, 0xd2, 0xa8, 0x0b, 0x81, 0x40, 0x15, 0x70, 0xfb, 0xfb, 0x03, 0x70, - 0x3a, 0x77, 0x73, 0x50, 0x85, 0x8a, 0xa9, 0x2c, 0x17, 0x3d, 0x9f, 0x48, 0x27, 0x2f, 0xa6, 0x50, - 0x5d, 0x57, 0xa5, 0xd8, 0xc0, 0x40, 0x3f, 0x07, 0xd0, 0x72, 0x22, 0xa7, 0x49, 0x94, 0x79, 0xfa, - 0xc8, 0x7a, 0x0b, 0xed, 0xc7, 0x8a, 0x6c, 0x53, 0x1f, 0xd1, 0x55, 0x51, 0x8c, 0x0d, 0x92, 0xe8, - 0x39, 0x18, 0x8c, 0x88, 0x4f, 0x9c, 0x98, 0x39, 0xb7, 0x67, 0x23, 0x75, 0xb0, 0x06, 0x61, 0x13, - 0x0f, 0x3d, 0xa1, 0xfc, 0xe1, 0x32, 0x7e, 0x41, 0x69, 0x9f, 0x38, 0xf4, 0xba, 0x05, 0x23, 0x1b, - 0x9e, 0x4f, 0x34, 0x75, 0x11, 0x57, 0xb3, 0x7c, 0xf4, 0x8f, 0xbc, 0x68, 0xb6, 0xab, 0x39, 0x64, - 0xaa, 0x38, 0xc6, 0x19, 0xf2, 0x74, 0x9a, 0xb7, 0x49, 0xc4, 0x58, 0x6b, 0x7f, 0x7a, 0x9a, 0xaf, - 0xf3, 0x62, 0x2c, 0xe1, 0x68, 0x1a, 0x46, 0x5b, 0x4e, 0x1c, 0xcf, 0x46, 0xa4, 0x4e, 0x82, 0xc4, - 0x73, 0x7c, 0x1e, 0xf5, 0x52, 0xd5, 0xce, 0xe2, 0x2b, 0x69, 0x30, 0xce, 0xe2, 0xa3, 0xf7, 0xc3, - 0xc3, 0xdc, 0xfe, 0xb3, 0xe4, 0xc5, 0xb1, 0x17, 0x34, 0xf4, 0x32, 0x10, 0x66, 0xb0, 0x09, 0xd1, - 0xd4, 0xc3, 0x0b, 0xf9, 0x68, 0xb8, 0x5b, 0x7d, 0xf4, 0x14, 0x54, 0xe3, 0x2d, 0xaf, 0x35, 0x1b, - 0xd5, 0x63, 0x76, 0xf7, 0x53, 0xd5, 0x46, 0xd7, 0x55, 0x51, 0x8e, 0x15, 0x06, 0x72, 0x61, 0x88, - 0x4f, 0x09, 0x77, 0xe8, 0x13, 0xfc, 0xf1, 0xe9, 0xae, 0x62, 0x5a, 0x04, 0x71, 0x4e, 0x62, 0xe7, - 0xd6, 0x05, 0x79, 0x13, 0xc5, 0x2f, 0x4e, 0xae, 0x1b, 0xcd, 0xe0, 0x54, 0xa3, 0xe9, 0x13, 0xdb, - 0x60, 0x0f, 0x27, 0xb6, 0xe7, 0x60, 0x70, 0xab, 0xbd, 0x4e, 0xc4, 0xc8, 0x0b, 0xb6, 0xa5, 0x56, - 0xdf, 0x15, 0x0d, 0xc2, 0x26, 0x1e, 0xf3, 0xa5, 0x6c, 0x79, 0xe2, 0x5f, 0x3c, 0x3e, 0x6c, 0xf8, - 0x52, 0xae, 0x2c, 0xc8, 0x62, 0x6c, 0xe2, 0xd0, 0xae, 0xd1, 0xb1, 0x58, 0x23, 0x31, 0x0b, 0x95, - 0xa0, 0xc3, 0xa5, 0xba, 0xb6, 0x2a, 0x01, 0x58, 0xe3, 0xd8, 0xbf, 0x5c, 0x4a, 0x5b, 0x31, 0x4c, - 0x86, 0x83, 0x62, 0xca, 0x56, 0x92, 0xeb, 0x4e, 0x24, 0x95, 0x8f, 0x23, 0x06, 0x1a, 0x89, 0x76, - 0xaf, 0x3b, 0x91, 0xc9, 0xa0, 0x18, 0x01, 0x2c, 0x29, 0xa1, 0x9b, 0xd0, 0x97, 0xf8, 0x4e, 0x41, - 0x91, 0x89, 0x06, 0x45, 0x6d, 0x54, 0x5a, 0x9c, 0x8e, 0x31, 0xa3, 0x81, 0x1e, 0xa1, 0x27, 0xa9, - 0x75, 0x79, 0xeb, 0x25, 0x0e, 0x3f, 0xeb, 0x31, 0x66, 0xa5, 0xf6, 0x9f, 0x0d, 0xe6, 0xc8, 0x08, - 0x25, 0x94, 0xd1, 0x79, 0x00, 0x3a, 0xc5, 0x2b, 0x11, 0xd9, 0xf0, 0x76, 0x84, 0x52, 0xa4, 0xf8, - 0xd0, 0x55, 0x05, 0xc1, 0x06, 0x96, 0xac, 0xb3, 0xda, 0xde, 0xa0, 0x75, 0x4a, 0x9d, 0x75, 0x38, - 0x04, 0x1b, 0x58, 0xe8, 0x59, 0xe8, 0xf7, 0x9a, 0x4e, 0x43, 0x39, 0xe5, 0x3e, 0x42, 0x19, 0xd0, - 0x02, 0x2b, 0xb9, 0xb3, 0x37, 0x31, 0xa2, 0x3a, 0xc4, 0x8a, 0xb0, 0xc0, 0x45, 0xbf, 0x6e, 0xc1, - 0x90, 0x1b, 0x36, 0x9b, 0x61, 0xc0, 0x8f, 0xb2, 0xe2, 0x5c, 0x7e, 0xf3, 0xb8, 0x54, 0x96, 0xc9, - 0x59, 0x83, 0x18, 0x3f, 0x98, 0xab, 0x10, 0x4a, 0x13, 0x84, 0x53, 0xbd, 0x32, 0xf9, 0x54, 0xe5, - 0x00, 0x3e, 0xf5, 0x1b, 0x16, 0x8c, 0xf1, 0xba, 0xc6, 0x09, 0x5b, 0x44, 0x0b, 0x86, 0xc7, 0xfc, - 0x59, 0x1d, 0x46, 0x07, 0x65, 0x78, 0xed, 0x80, 0xe3, 0xce, 0x4e, 0xa2, 0x79, 0x18, 0xdb, 0x08, - 0x23, 0x97, 0x98, 0x03, 0x21, 0x98, 0xac, 0x6a, 0xe8, 0x62, 0x16, 0x01, 0x77, 0xd6, 0x41, 0xd7, - 0xe1, 0x21, 0xa3, 0xd0, 0x1c, 0x07, 0xce, 0x67, 0x1f, 0x13, 0xad, 0x3d, 0x74, 0x31, 0x17, 0x0b, - 0x77, 0xa9, 0x9d, 0x66, 0x69, 0xb5, 0x1e, 0x58, 0xda, 0x2b, 0x70, 0xc6, 0xed, 0x1c, 0x99, 0xed, - 0xb8, 0xbd, 0x1e, 0x73, 0xae, 0x5b, 0x9d, 0xf9, 0x11, 0xd1, 0xc0, 0x99, 0xd9, 0x6e, 0x88, 0xb8, - 0x7b, 0x1b, 0xe8, 0xc3, 0x50, 0x8d, 0x08, 0x9b, 0x95, 0x58, 0x84, 0xce, 0x1d, 0xd1, 0xf2, 0xa0, - 0xb5, 0x69, 0xde, 0xac, 0x96, 0x23, 0xa2, 0x20, 0xc6, 0x8a, 0x22, 0xba, 0x05, 0x03, 0x2d, 0x27, - 0x71, 0x37, 0x45, 0xc0, 0xdc, 0x91, 0xed, 0xe4, 0x8a, 0x38, 0xbb, 0xd6, 0x30, 0x42, 0xec, 0x39, - 0x11, 0x2c, 0xa9, 0x51, 0xcd, 0xca, 0x0d, 0x9b, 0xad, 0x30, 0x20, 0x41, 0x22, 0x59, 0xfe, 0x08, - 0xbf, 0x7b, 0x90, 0xa5, 0xd8, 0xc0, 0x40, 0x2b, 0x70, 0x8a, 0xd9, 0xe1, 0x6e, 0x78, 0xc9, 0x66, - 0xd8, 0x4e, 0xe4, 0xb1, 0x52, 0xf0, 0x7e, 0x75, 0xfb, 0xb4, 0x98, 0x83, 0x83, 0x73, 0x6b, 0x66, - 0x85, 0xd5, 0xe8, 0xdd, 0x09, 0xab, 0x13, 0x07, 0x0b, 0xab, 0xb3, 0xef, 0x85, 0xb1, 0x0e, 0xa6, - 0x71, 0x28, 0x63, 0xdb, 0x1c, 0x3c, 0x94, 0xbf, 0x3d, 0x0f, 0x65, 0x72, 0xfb, 0xe7, 0x19, 0x9f, - 0x6b, 0xe3, 0xf8, 0xd1, 0x83, 0xf9, 0xd6, 0x81, 0x32, 0x09, 0xb6, 0x85, 0xb4, 0xba, 0x78, 0xb4, - 0x55, 0x72, 0x21, 0xd8, 0xe6, 0xdc, 0x85, 0xd9, 0xa8, 0x2e, 0x04, 0xdb, 0x98, 0xb6, 0x8d, 0xbe, - 0x68, 0xa5, 0xd4, 0x67, 0x6e, 0xf4, 0xfd, 0xe0, 0xb1, 0x9c, 0xb7, 0x7a, 0xd6, 0xa8, 0xed, 0x7f, - 0x5f, 0x82, 0x73, 0x07, 0x35, 0xd2, 0xc3, 0xf0, 0x3d, 0x0e, 0xfd, 0x31, 0xf3, 0xa2, 0x10, 0xec, - 0x7f, 0x90, 0xee, 0x0a, 0xee, 0x57, 0xf1, 0x0a, 0x16, 0x20, 0xe4, 0x43, 0xb9, 0xe9, 0xb4, 0x84, - 0x2d, 0x70, 0xe1, 0xa8, 0xb1, 0x69, 0xf4, 0xbf, 0xe3, 0x2f, 0x39, 0x2d, 0xbe, 0x3c, 0x8d, 0x02, - 0x4c, 0xc9, 0xa0, 0x04, 0x2a, 0x4e, 0x14, 0x39, 0xf2, 0xca, 0xfe, 0x4a, 0x31, 0xf4, 0xa6, 0x69, - 0x93, 0xfc, 0xc6, 0x33, 0x55, 0x84, 0x39, 0x31, 0xfb, 0xb3, 0x03, 0xa9, 0x40, 0x26, 0xe6, 0x87, - 0x11, 0x43, 0xbf, 0x30, 0x01, 0x5a, 0x45, 0x87, 0x04, 0xf2, 0x48, 0x61, 0x76, 0xba, 0x16, 0xf9, - 0x16, 0x04, 0x29, 0xf4, 0x19, 0x8b, 0x65, 0x35, 0x90, 0xd1, 0x61, 0xe2, 0x4c, 0x7b, 0x3c, 0x49, - 0x16, 0xcc, 0x5c, 0x09, 0xb2, 0x10, 0x9b, 0xd4, 0x45, 0x76, 0x12, 0xa6, 0xcb, 0x77, 0x66, 0x27, - 0x61, 0xba, 0xb9, 0x84, 0xa3, 0x9d, 0x1c, 0x7f, 0x8b, 0x02, 0x22, 0xe3, 0x7b, 0xf0, 0xb0, 0xf8, - 0xaa, 0x05, 0x63, 0x5e, 0xf6, 0xe2, 0x5c, 0x9c, 0x00, 0x6f, 0x14, 0x63, 0xaf, 0xeb, 0xbc, 0x97, - 0x57, 0x8a, 0x43, 0x07, 0x08, 0x77, 0x76, 0x06, 0xd5, 0xa1, 0xcf, 0x0b, 0x36, 0x42, 0xa1, 0x2e, - 0xcd, 0x1c, 0xad, 0x53, 0x0b, 0xc1, 0x46, 0xa8, 0x77, 0x33, 0xfd, 0x87, 0x59, 0xeb, 0x68, 0x11, - 0x4e, 0xc9, 0x58, 0x96, 0x4b, 0x5e, 0x9c, 0x84, 0xd1, 0xee, 0xa2, 0xd7, 0xf4, 0x12, 0xa6, 0xea, - 0x94, 0x67, 0xc6, 0xa9, 0x24, 0xc2, 0x39, 0x70, 0x9c, 0x5b, 0x0b, 0xbd, 0x06, 0x03, 0xf2, 0xb2, - 0xba, 0x5a, 0xc4, 0x69, 0xba, 0x73, 0xfd, 0xab, 0xc5, 0xb4, 0x2a, 0x6e, 0xab, 0x25, 0x41, 0xfb, - 0xf5, 0x41, 0xe8, 0xbc, 0x53, 0x4f, 0x5f, 0xa0, 0x5b, 0xf7, 0xfa, 0x02, 0x9d, 0x1e, 0x8d, 0x62, - 0x7d, 0xf7, 0x5d, 0xc0, 0xda, 0x16, 0x54, 0xf5, 0xbd, 0xe6, 0x6e, 0xe0, 0x62, 0x46, 0x03, 0x45, - 0xd0, 0xbf, 0x49, 0x1c, 0x3f, 0xd9, 0x2c, 0xe6, 0x0a, 0xe6, 0x12, 0x6b, 0x2b, 0x1b, 0x80, 0xc6, - 0x4b, 0xb1, 0xa0, 0x84, 0x76, 0x60, 0x60, 0x93, 0x2f, 0x00, 0x71, 0x5a, 0x59, 0x3a, 0xea, 0xe0, - 0xa6, 0x56, 0x95, 0x9e, 0x6e, 0x51, 0x80, 0x25, 0x39, 0xe6, 0xac, 0x65, 0xb8, 0x93, 0xf0, 0xad, - 0x5b, 0x5c, 0xec, 0x5d, 0xef, 0xbe, 0x24, 0x1f, 0x82, 0xa1, 0x88, 0xb8, 0x61, 0xe0, 0x7a, 0x3e, - 0xa9, 0x4f, 0xcb, 0xeb, 0x95, 0xc3, 0x84, 0x5c, 0x31, 0xeb, 0x05, 0x36, 0xda, 0xc0, 0xa9, 0x16, - 0xd1, 0xa7, 0x2d, 0x18, 0x51, 0x61, 0xd8, 0x74, 0x42, 0x88, 0x30, 0xa3, 0x2f, 0x16, 0x14, 0xf4, - 0xcd, 0xda, 0x9c, 0x41, 0xb7, 0xf7, 0x26, 0x46, 0xd2, 0x65, 0x38, 0x43, 0x17, 0xbd, 0x04, 0x10, - 0xae, 0x73, 0x8f, 0xac, 0xe9, 0x44, 0xd8, 0xd4, 0x0f, 0xf3, 0xa9, 0x23, 0x3c, 0x74, 0x53, 0xb6, - 0x80, 0x8d, 0xd6, 0xd0, 0x15, 0x00, 0xbe, 0x6d, 0xd6, 0x76, 0x5b, 0xf2, 0x48, 0x23, 0x63, 0xe6, - 0x60, 0x55, 0x41, 0xee, 0xec, 0x4d, 0x74, 0xda, 0x38, 0x99, 0xdb, 0x89, 0x51, 0x1d, 0xfd, 0x2c, - 0x0c, 0xc4, 0xed, 0x66, 0xd3, 0x51, 0x16, 0xf7, 0x02, 0x83, 0x41, 0x79, 0xbb, 0x06, 0x2b, 0xe2, - 0x05, 0x58, 0x52, 0x44, 0x37, 0x29, 0x53, 0x8d, 0x85, 0xf1, 0x95, 0xed, 0x22, 0xae, 0x13, 0x70, - 0xcb, 0xd3, 0x3b, 0xa5, 0x8a, 0x8f, 0x73, 0x70, 0xee, 0xec, 0x4d, 0x3c, 0x94, 0x2e, 0x5f, 0x0c, - 0x45, 0x78, 0x66, 0x6e, 0x9b, 0xe8, 0xb2, 0xcc, 0xca, 0x44, 0x3f, 0x5b, 0x26, 0x0b, 0x79, 0x52, - 0x67, 0x65, 0x62, 0xc5, 0xdd, 0xc7, 0xcc, 0xac, 0x8c, 0x96, 0xe0, 0xa4, 0x1b, 0x06, 0x49, 0x14, - 0xfa, 0x3e, 0xcf, 0x4a, 0xc6, 0x4f, 0x97, 0xdc, 0x22, 0xff, 0x56, 0xd1, 0xed, 0x93, 0xb3, 0x9d, - 0x28, 0x38, 0xaf, 0x9e, 0x1d, 0xa4, 0x6f, 0xc7, 0xc4, 0xe0, 0x3c, 0x0b, 0x43, 0x64, 0x27, 0x21, - 0x51, 0xe0, 0xf8, 0xd7, 0xf0, 0xa2, 0xb4, 0x45, 0xb3, 0x3d, 0x70, 0xc1, 0x28, 0xc7, 0x29, 0x2c, - 0x64, 0x2b, 0x93, 0x8a, 0x11, 0x72, 0xcc, 0x4d, 0x2a, 0xd2, 0x80, 0x62, 0x7f, 0xa3, 0x9c, 0x52, - 0xc8, 0xee, 0xcb, 0x5d, 0x1c, 0xcb, 0x6d, 0x23, 0x93, 0x00, 0x31, 0x80, 0x38, 0x68, 0x14, 0x49, - 0x59, 0xe5, 0xb6, 0x59, 0x36, 0x09, 0xe1, 0x34, 0x5d, 0xb4, 0x05, 0x95, 0xcd, 0x30, 0x4e, 0xe4, - 0xf1, 0xe3, 0x88, 0x27, 0x9d, 0x4b, 0x61, 0x9c, 0x30, 0x2d, 0x42, 0x7d, 0x36, 0x2d, 0x89, 0x31, - 0xa7, 0x41, 0xcf, 0xa0, 0xf1, 0xa6, 0x13, 0xd5, 0xe3, 0x59, 0x96, 0x20, 0xa0, 0x8f, 0xa9, 0x0f, - 0x4a, 0x59, 0x5c, 0xd5, 0x20, 0x6c, 0xe2, 0xd9, 0x7f, 0x6e, 0xa5, 0x2e, 0x2c, 0x6e, 0x30, 0x6f, - 0xef, 0x6d, 0x12, 0x50, 0x6e, 0x60, 0xfa, 0x97, 0xfd, 0x64, 0x26, 0x76, 0xf6, 0x6d, 0xdd, 0x72, - 0xf5, 0xdd, 0xa2, 0x2d, 0x4c, 0xb2, 0x26, 0x0c, 0x57, 0xb4, 0x8f, 0x59, 0xe9, 0x20, 0xe8, 0x52, - 0x11, 0xe7, 0x12, 0x33, 0x11, 0xc0, 0x81, 0xf1, 0xd4, 0xf6, 0x17, 0x2d, 0x18, 0x98, 0x71, 0xdc, - 0xad, 0x70, 0x63, 0x03, 0x3d, 0x05, 0xd5, 0x7a, 0x3b, 0x32, 0xe3, 0xb1, 0x95, 0x65, 0x63, 0x4e, - 0x94, 0x63, 0x85, 0x41, 0x97, 0xfe, 0x86, 0xe3, 0xca, 0x74, 0x00, 0x65, 0xbe, 0xf4, 0x2f, 0xb2, - 0x12, 0x2c, 0x20, 0x74, 0xf8, 0x9b, 0xce, 0x8e, 0xac, 0x9c, 0xbd, 0x2d, 0x59, 0xd2, 0x20, 0x6c, - 0xe2, 0xd9, 0xff, 0xda, 0x82, 0xf1, 0x19, 0x27, 0xf6, 0xdc, 0xe9, 0x76, 0xb2, 0x39, 0xe3, 0x25, - 0xeb, 0x6d, 0x77, 0x8b, 0x24, 0x3c, 0x6d, 0x04, 0xed, 0x65, 0x3b, 0xa6, 0x3b, 0x50, 0x1d, 0x07, - 0x55, 0x2f, 0xaf, 0x89, 0x72, 0xac, 0x30, 0xd0, 0x6b, 0x30, 0xd8, 0x72, 0xe2, 0xf8, 0x56, 0x18, - 0xd5, 0x31, 0xd9, 0x28, 0x26, 0xb1, 0xcc, 0x2a, 0x71, 0x23, 0x92, 0x60, 0xb2, 0x21, 0x3c, 0x0b, - 0x74, 0xfb, 0xd8, 0x24, 0x66, 0xff, 0x92, 0x05, 0xa7, 0x66, 0x88, 0x13, 0x91, 0x88, 0xe5, 0xa1, - 0x51, 0x1f, 0x82, 0x5e, 0x85, 0x6a, 0x42, 0x4b, 0x68, 0x8f, 0xac, 0x62, 0x7b, 0xc4, 0x7c, 0x02, - 0xd6, 0x44, 0xe3, 0x58, 0x91, 0xb1, 0x3f, 0x6f, 0xc1, 0x99, 0xbc, 0xbe, 0xcc, 0xfa, 0x61, 0xbb, - 0x7e, 0x3f, 0x3a, 0xf4, 0x77, 0x2c, 0x18, 0x62, 0xf7, 0xac, 0x73, 0x24, 0x71, 0x3c, 0xbf, 0x23, - 0x07, 0x9e, 0xd5, 0x63, 0x0e, 0xbc, 0x73, 0xd0, 0xb7, 0x19, 0x36, 0x49, 0xd6, 0x47, 0xe0, 0x52, - 0xd8, 0x24, 0x98, 0x41, 0xd0, 0x33, 0x74, 0x11, 0x7a, 0x41, 0xe2, 0xd0, 0xed, 0x28, 0x6d, 0xdf, - 0xa3, 0x7c, 0x01, 0xaa, 0x62, 0x6c, 0xe2, 0xd8, 0xff, 0xaa, 0x06, 0x03, 0xc2, 0xa1, 0xa5, 0xe7, - 0x34, 0x26, 0xd2, 0x44, 0x51, 0xea, 0x6a, 0xa2, 0x88, 0xa1, 0xdf, 0x65, 0xc9, 0x38, 0x85, 0x26, - 0x7c, 0xa5, 0x10, 0x0f, 0x28, 0x9e, 0xdf, 0x53, 0x77, 0x8b, 0xff, 0xc7, 0x82, 0x14, 0xfa, 0x82, - 0x05, 0xa3, 0x6e, 0x18, 0x04, 0xc4, 0xd5, 0x6a, 0x5a, 0x5f, 0x11, 0x8e, 0x2e, 0xb3, 0xe9, 0x46, - 0xf5, 0x25, 0x5f, 0x06, 0x80, 0xb3, 0xe4, 0xd1, 0x0b, 0x30, 0xcc, 0xc7, 0xec, 0x7a, 0xca, 0x60, - 0xaf, 0x53, 0xa3, 0x99, 0x40, 0x9c, 0xc6, 0x45, 0x93, 0xfc, 0xe2, 0x43, 0x24, 0x21, 0xeb, 0xd7, - 0x76, 0x4d, 0x23, 0xfd, 0x98, 0x81, 0x81, 0x22, 0x40, 0x11, 0xd9, 0x88, 0x48, 0xbc, 0x29, 0x1c, - 0x7e, 0x98, 0x8a, 0x38, 0x70, 0x77, 0x09, 0x08, 0x70, 0x47, 0x4b, 0x38, 0xa7, 0x75, 0xb4, 0x25, - 0xce, 0xc8, 0xd5, 0x22, 0xf8, 0xb9, 0x98, 0xe6, 0xae, 0x47, 0xe5, 0x09, 0xa8, 0x30, 0xd1, 0xc5, - 0x54, 0xd3, 0x32, 0x0f, 0x7a, 0x63, 0x82, 0x0d, 0xf3, 0x72, 0x34, 0x07, 0x27, 0x32, 0x89, 0xdd, - 0x62, 0x61, 0x58, 0x57, 0x01, 0x4e, 0x99, 0x94, 0x70, 0x31, 0xee, 0xa8, 0x61, 0xda, 0x4f, 0x06, - 0x0f, 0xb0, 0x9f, 0xec, 0x2a, 0xb7, 0x52, 0x6e, 0xf2, 0x7e, 0xb1, 0x90, 0x01, 0xe8, 0xc9, 0x87, - 0xf4, 0x73, 0x19, 0x1f, 0xd2, 0x61, 0xd6, 0x81, 0xeb, 0xc5, 0x74, 0xe0, 0xf0, 0x0e, 0xa3, 0xf7, - 0xd3, 0x01, 0xf4, 0x7f, 0x59, 0x20, 0xe7, 0x75, 0xd6, 0x71, 0x37, 0x09, 0x5d, 0x32, 0xe8, 0x3d, - 0x30, 0xa2, 0xac, 0x00, 0x5c, 0x25, 0xb2, 0xd8, 0xaa, 0x51, 0xde, 0x00, 0x38, 0x05, 0xc5, 0x19, - 0x6c, 0x34, 0x05, 0x35, 0x3a, 0x4e, 0xbc, 0x2a, 0x97, 0xfb, 0xca, 0xd2, 0x30, 0xbd, 0xb2, 0x20, - 0x6a, 0x69, 0x1c, 0x14, 0xc2, 0x98, 0xef, 0xc4, 0x09, 0xeb, 0xc1, 0xea, 0x6e, 0xe0, 0xde, 0x65, - 0xfa, 0x0f, 0x16, 0x45, 0xb3, 0x98, 0x6d, 0x08, 0x77, 0xb6, 0x6d, 0xff, 0x87, 0x0a, 0x0c, 0xa7, - 0x38, 0xe3, 0x21, 0x15, 0x86, 0xa7, 0xa0, 0x2a, 0x65, 0x78, 0x36, 0xcf, 0x91, 0x12, 0xf4, 0x0a, - 0x83, 0x0a, 0xad, 0x75, 0x2d, 0x55, 0xb3, 0x0a, 0x8e, 0x21, 0x70, 0xb1, 0x89, 0xc7, 0x98, 0x72, - 0xe2, 0xc7, 0xb3, 0xbe, 0x47, 0x82, 0x84, 0x77, 0xb3, 0x18, 0xa6, 0xbc, 0xb6, 0xb8, 0x6a, 0x36, - 0xaa, 0x99, 0x72, 0x06, 0x80, 0xb3, 0xe4, 0xd1, 0x27, 0x2d, 0x18, 0x76, 0x6e, 0xc5, 0x3a, 0x63, - 0xb4, 0xf0, 0x16, 0x3d, 0xa2, 0x90, 0x4a, 0x25, 0xa1, 0xe6, 0x56, 0xeb, 0x54, 0x11, 0x4e, 0x13, - 0x45, 0x6f, 0x58, 0x80, 0xc8, 0x0e, 0x71, 0xa5, 0x3f, 0xab, 0xe8, 0x4b, 0x7f, 0x11, 0x87, 0xe5, - 0x0b, 0x1d, 0xed, 0x72, 0xae, 0xde, 0x59, 0x8e, 0x73, 0xfa, 0x80, 0x2e, 0x03, 0xaa, 0x7b, 0xb1, - 0xb3, 0xee, 0x93, 0xd9, 0xb0, 0x29, 0x23, 0x3f, 0xc5, 0xe5, 0xeb, 0x59, 0x31, 0xce, 0x68, 0xae, - 0x03, 0x03, 0xe7, 0xd4, 0x62, 0xab, 0x2c, 0x0a, 0x77, 0x76, 0xaf, 0x45, 0x3e, 0x93, 0x12, 0xe6, - 0x2a, 0x13, 0xe5, 0x58, 0x61, 0xd8, 0x7f, 0x51, 0x56, 0x5b, 0x59, 0x3b, 0x6f, 0x3b, 0x86, 0x13, - 0xa9, 0x75, 0xf7, 0x4e, 0xa4, 0xda, 0x09, 0xa6, 0x33, 0x9e, 0x39, 0x15, 0xfe, 0x58, 0xba, 0x4f, - 0xe1, 0x8f, 0x3f, 0x6f, 0xa5, 0x72, 0x89, 0x0d, 0x9e, 0x7f, 0xa9, 0x58, 0xc7, 0xf1, 0x49, 0xee, - 0xa0, 0x93, 0x91, 0x2b, 0x19, 0xbf, 0xac, 0xa7, 0xa0, 0xba, 0xe1, 0x3b, 0x2c, 0x03, 0x06, 0xdb, - 0xa8, 0x86, 0xf3, 0xd0, 0x45, 0x51, 0x8e, 0x15, 0x06, 0xe5, 0xfa, 0x46, 0xa3, 0x87, 0xe2, 0xda, - 0xff, 0xa9, 0x0c, 0x83, 0x86, 0xc4, 0xcf, 0x55, 0xdf, 0xac, 0x07, 0x4c, 0x7d, 0x2b, 0x1d, 0x42, - 0x7d, 0xfb, 0x39, 0xa8, 0xb9, 0x52, 0x1a, 0x15, 0x93, 0x1b, 0x3d, 0x2b, 0xe3, 0xb4, 0x40, 0x52, - 0x45, 0x58, 0xd3, 0x44, 0xf3, 0xa9, 0x10, 0xbb, 0x94, 0x5d, 0x20, 0x2f, 0x06, 0x4e, 0x48, 0xb4, - 0xce, 0x3a, 0xd9, 0x7b, 0xea, 0xca, 0xc1, 0xf7, 0xd4, 0xf6, 0x77, 0x2c, 0x35, 0xb9, 0xf7, 0x20, - 0x97, 0xca, 0xcd, 0x74, 0x2e, 0x95, 0x0b, 0x85, 0x0c, 0x73, 0x97, 0x24, 0x2a, 0x57, 0x61, 0x60, - 0x36, 0x6c, 0x36, 0x9d, 0xa0, 0x8e, 0x7e, 0x0c, 0x06, 0x5c, 0xfe, 0x53, 0xd8, 0xd0, 0xd8, 0x4d, - 0xac, 0x80, 0x62, 0x09, 0x43, 0x8f, 0x40, 0x9f, 0x13, 0x35, 0xa4, 0xdd, 0x8c, 0x79, 0x4c, 0x4d, - 0x47, 0x8d, 0x18, 0xb3, 0x52, 0xfb, 0x9f, 0xf5, 0x01, 0x73, 0x54, 0x70, 0x22, 0x52, 0x5f, 0x0b, - 0x59, 0x4a, 0xd3, 0x63, 0xbd, 0xbf, 0xd4, 0x87, 0xba, 0x07, 0xf9, 0x0e, 0xd3, 0xb8, 0xc7, 0x2a, - 0xdf, 0xe3, 0x7b, 0xac, 0x2e, 0x57, 0x93, 0x7d, 0x0f, 0xd0, 0xd5, 0xa4, 0xfd, 0x59, 0x0b, 0x90, - 0xf2, 0x6e, 0xd1, 0xbe, 0x03, 0x53, 0x50, 0x53, 0x7e, 0x2e, 0x42, 0x01, 0xd4, 0x2c, 0x42, 0x02, - 0xb0, 0xc6, 0xe9, 0xe1, 0x24, 0xff, 0xb8, 0xe4, 0xdf, 0xe5, 0xb4, 0xe3, 0x38, 0xe3, 0xfa, 0x82, - 0x9d, 0xdb, 0xbf, 0x5b, 0x82, 0x87, 0xb8, 0xea, 0xb0, 0xe4, 0x04, 0x4e, 0x83, 0x34, 0x69, 0xaf, - 0x7a, 0xf5, 0x06, 0x71, 0xe9, 0x11, 0xd2, 0x93, 0x8e, 0xe0, 0x47, 0xdd, 0xbb, 0x7c, 0xcf, 0xf1, - 0x5d, 0xb6, 0x10, 0x78, 0x09, 0x66, 0x8d, 0xa3, 0x18, 0xaa, 0xf2, 0xe1, 0x10, 0xc1, 0x8b, 0x0b, - 0x22, 0xa4, 0xd8, 0x92, 0x90, 0xb2, 0x04, 0x2b, 0x42, 0x54, 0x94, 0xfa, 0xa1, 0xbb, 0x85, 0x49, - 0x2b, 0xcc, 0x8a, 0xd2, 0x45, 0x51, 0x8e, 0x15, 0x86, 0xdd, 0x84, 0x51, 0x39, 0x86, 0xad, 0x2b, - 0x64, 0x17, 0x93, 0x0d, 0x2a, 0x7f, 0x5c, 0x59, 0x64, 0xbc, 0x65, 0xa2, 0xe4, 0xcf, 0xac, 0x09, - 0xc4, 0x69, 0x5c, 0x99, 0xe5, 0xb4, 0x94, 0x9f, 0xe5, 0xd4, 0xfe, 0x5d, 0x0b, 0xb2, 0x02, 0xd0, - 0xc8, 0xe9, 0x68, 0xed, 0x9b, 0xd3, 0xf1, 0x10, 0x59, 0x11, 0x7f, 0x06, 0x06, 0x9d, 0x84, 0x6a, - 0x38, 0xdc, 0x1a, 0x51, 0xbe, 0xbb, 0x0b, 0xab, 0xa5, 0xb0, 0xee, 0x6d, 0x78, 0xcc, 0x0a, 0x61, - 0x36, 0x67, 0xff, 0x55, 0x1f, 0x8c, 0x75, 0x44, 0x69, 0xa1, 0xe7, 0x61, 0x48, 0x0d, 0x85, 0xb4, - 0xf3, 0xd5, 0x4c, 0xd7, 0x4a, 0x0d, 0xc3, 0x29, 0xcc, 0x1e, 0xf6, 0xc3, 0x02, 0x9c, 0x8c, 0xc8, - 0xab, 0x6d, 0xd2, 0x26, 0xd3, 0x1b, 0x09, 0x89, 0x56, 0x89, 0x1b, 0x06, 0x75, 0x9e, 0x79, 0xb4, - 0x3c, 0xf3, 0xf0, 0xed, 0xbd, 0x89, 0x93, 0xb8, 0x13, 0x8c, 0xf3, 0xea, 0xa0, 0x16, 0x0c, 0xfb, - 0xa6, 0x82, 0x2a, 0xce, 0x45, 0x77, 0xa5, 0xdb, 0xaa, 0x25, 0x91, 0x2a, 0xc6, 0x69, 0x02, 0x69, - 0x2d, 0xb7, 0x72, 0x9f, 0xb4, 0xdc, 0x4f, 0x68, 0x2d, 0x97, 0x7b, 0x56, 0x7c, 0xa0, 0xe0, 0x28, - 0xbd, 0x5e, 0xd4, 0xdc, 0xa3, 0x28, 0xae, 0x2f, 0x42, 0x55, 0x7a, 0x9d, 0xf5, 0xe4, 0xad, 0x65, - 0xb6, 0xd3, 0x85, 0x81, 0x3e, 0x01, 0x3f, 0x7a, 0x21, 0x8a, 0x8c, 0xc1, 0xbc, 0x1a, 0x26, 0xd3, - 0xbe, 0x1f, 0xde, 0xa2, 0x3a, 0xc1, 0xb5, 0x98, 0x08, 0xc3, 0x93, 0x7d, 0xa7, 0x04, 0x39, 0x67, - 0x38, 0xba, 0x1f, 0xb5, 0x22, 0x92, 0xda, 0x8f, 0x87, 0x53, 0x46, 0xd0, 0x0e, 0xf7, 0xcc, 0xe3, - 0x22, 0xf7, 0xfd, 0x45, 0x9f, 0x41, 0xb5, 0xb3, 0x9e, 0x62, 0x47, 0xca, 0x61, 0xef, 0x3c, 0x80, - 0xd6, 0x1f, 0x45, 0xe8, 0x88, 0xba, 0xf8, 0xd7, 0x6a, 0x26, 0x36, 0xb0, 0xd0, 0x73, 0x30, 0xe8, - 0x05, 0x71, 0xe2, 0xf8, 0xfe, 0x25, 0x2f, 0x48, 0x84, 0x6d, 0x55, 0xe9, 0x16, 0x0b, 0x1a, 0x84, - 0x4d, 0xbc, 0xb3, 0xef, 0x34, 0xe6, 0xef, 0x30, 0xf3, 0xbe, 0x09, 0x67, 0xe6, 0xbd, 0x44, 0x05, - 0x3c, 0xa9, 0xf5, 0x46, 0xd5, 0x43, 0x15, 0xc0, 0x67, 0x75, 0x0d, 0xe0, 0x33, 0x02, 0x8e, 0x4a, - 0xe9, 0xf8, 0xa8, 0x6c, 0xc0, 0x91, 0xfd, 0x3c, 0x9c, 0x9a, 0xf7, 0x92, 0x8b, 0x9e, 0x4f, 0x0e, - 0x49, 0xc4, 0xfe, 0x9d, 0x7e, 0x18, 0x32, 0x43, 0x77, 0x0f, 0x13, 0x83, 0xf8, 0x79, 0xaa, 0x01, - 0x8a, 0xaf, 0xf3, 0xd4, 0xb5, 0xe9, 0x8d, 0x23, 0xc7, 0x11, 0xe7, 0x8f, 0x98, 0xa1, 0x04, 0x6a, - 0x9a, 0xd8, 0xec, 0x00, 0xba, 0x05, 0x95, 0x0d, 0x16, 0x10, 0x53, 0x2e, 0xc2, 0xb7, 0x24, 0x6f, - 0x44, 0xf5, 0x76, 0xe4, 0x21, 0x35, 0x9c, 0x1e, 0x15, 0xdc, 0x51, 0x3a, 0xca, 0xd2, 0x70, 0x7c, - 0x16, 0xf1, 0x95, 0x0a, 0xa3, 0x9b, 0x48, 0xa8, 0xdc, 0x85, 0x48, 0x48, 0x31, 0xe8, 0xfe, 0xfb, - 0xc4, 0xa0, 0x59, 0x70, 0x53, 0xb2, 0xc9, 0xd4, 0x4a, 0x11, 0xa9, 0x31, 0xc0, 0x06, 0xc1, 0x08, - 0x6e, 0x4a, 0x81, 0x71, 0x16, 0x1f, 0x7d, 0x54, 0xb1, 0xf8, 0x6a, 0x11, 0x66, 0x69, 0x73, 0x45, - 0x1f, 0x37, 0x77, 0xff, 0x6c, 0x09, 0x46, 0xe6, 0x83, 0xf6, 0xca, 0xfc, 0x4a, 0x7b, 0xdd, 0xf7, - 0xdc, 0x2b, 0x64, 0x97, 0xb2, 0xf0, 0x2d, 0xb2, 0xbb, 0x30, 0x27, 0x76, 0x90, 0x5a, 0x33, 0x57, - 0x68, 0x21, 0xe6, 0x30, 0xca, 0x8c, 0x36, 0xbc, 0xa0, 0x41, 0xa2, 0x56, 0xe4, 0x09, 0x8b, 0xb1, - 0xc1, 0x8c, 0x2e, 0x6a, 0x10, 0x36, 0xf1, 0x68, 0xdb, 0xe1, 0xad, 0x80, 0x44, 0x59, 0xfd, 0x7a, - 0x99, 0x16, 0x62, 0x0e, 0xa3, 0x48, 0x49, 0xd4, 0x16, 0x06, 0x19, 0x03, 0x69, 0x8d, 0x16, 0x62, - 0x0e, 0xa3, 0x3b, 0x3d, 0x6e, 0xaf, 0x33, 0xd7, 0x9d, 0x4c, 0x58, 0xc8, 0x2a, 0x2f, 0xc6, 0x12, - 0x4e, 0x51, 0xb7, 0xc8, 0xee, 0x1c, 0x3d, 0x8c, 0x67, 0x22, 0xdd, 0xae, 0xf0, 0x62, 0x2c, 0xe1, - 0x2c, 0x37, 0x6a, 0x7a, 0x38, 0x7e, 0xe0, 0x72, 0xa3, 0xa6, 0xbb, 0xdf, 0xe5, 0x58, 0xff, 0x6b, - 0x16, 0x0c, 0x99, 0x0e, 0x77, 0xa8, 0x91, 0xd1, 0x85, 0x97, 0x3b, 0x52, 0x6b, 0xbf, 0x3b, 0xef, - 0xd9, 0xc9, 0x86, 0x97, 0x84, 0xad, 0xf8, 0x69, 0x12, 0x34, 0xbc, 0x80, 0x30, 0x87, 0x08, 0xee, - 0xa8, 0x97, 0xf2, 0xe6, 0x9b, 0x0d, 0xeb, 0xe4, 0x2e, 0x94, 0x69, 0xfb, 0x06, 0x8c, 0x75, 0x84, - 0x37, 0xf6, 0xa0, 0x82, 0x1c, 0x18, 0x5c, 0x6e, 0x63, 0x18, 0xa4, 0x0d, 0xcb, 0xfc, 0x5c, 0xb3, - 0x30, 0xc6, 0x37, 0x12, 0xa5, 0xb4, 0xea, 0x6e, 0x92, 0xa6, 0x0a, 0x59, 0x65, 0xd7, 0x13, 0xd7, - 0xb3, 0x40, 0xdc, 0x89, 0x6f, 0x7f, 0xce, 0x82, 0xe1, 0x54, 0xc4, 0x69, 0x41, 0xca, 0x12, 0xdb, - 0x69, 0x21, 0xf3, 0xff, 0x64, 0x4e, 0xf0, 0x65, 0x26, 0x4c, 0xf5, 0x4e, 0xd3, 0x20, 0x6c, 0xe2, - 0xd9, 0x5f, 0x2c, 0x41, 0x55, 0xfa, 0xd0, 0xf4, 0xd0, 0x95, 0xcf, 0x58, 0x30, 0xac, 0xae, 0x84, - 0x98, 0x0d, 0xaf, 0x54, 0x44, 0x48, 0x0d, 0xed, 0x81, 0xb2, 0x02, 0x04, 0x1b, 0xa1, 0xd6, 0xdc, - 0xb1, 0x49, 0x0c, 0xa7, 0x69, 0xa3, 0xeb, 0x00, 0xf1, 0x6e, 0x9c, 0x90, 0xa6, 0x61, 0x4d, 0xb4, - 0x8d, 0x1d, 0x37, 0xe9, 0x86, 0x11, 0xa1, 0xfb, 0xeb, 0x6a, 0x58, 0x27, 0xab, 0x0a, 0x53, 0xab, - 0x50, 0xba, 0x0c, 0x1b, 0x2d, 0xd9, 0xff, 0xa4, 0x04, 0x27, 0xb2, 0x5d, 0x42, 0x1f, 0x80, 0x21, - 0x49, 0xdd, 0x38, 0x75, 0x4a, 0x0f, 0xa0, 0x21, 0x6c, 0xc0, 0xee, 0xec, 0x4d, 0x4c, 0x74, 0x3e, - 0x61, 0x3a, 0x69, 0xa2, 0xe0, 0x54, 0x63, 0xfc, 0x5e, 0x4e, 0x5c, 0x20, 0xcf, 0xec, 0x4e, 0xb7, - 0x5a, 0xe2, 0x72, 0xcd, 0xb8, 0x97, 0x33, 0xa1, 0x38, 0x83, 0x8d, 0x56, 0xe0, 0x94, 0x51, 0x72, - 0x95, 0x78, 0x8d, 0xcd, 0xf5, 0x30, 0x92, 0x27, 0xb0, 0x47, 0xb4, 0x6b, 0x5f, 0x27, 0x0e, 0xce, - 0xad, 0x49, 0xa5, 0xbd, 0xeb, 0xb4, 0x1c, 0xd7, 0x4b, 0x76, 0x85, 0x79, 0x54, 0xf1, 0xa6, 0x59, - 0x51, 0x8e, 0x15, 0x86, 0xbd, 0x04, 0x7d, 0x3d, 0xae, 0xa0, 0x9e, 0x34, 0xff, 0x17, 0xa1, 0x4a, - 0x9b, 0x93, 0xea, 0x5d, 0x11, 0x4d, 0x86, 0x50, 0x95, 0x0f, 0x42, 0x21, 0x1b, 0xca, 0x9e, 0x23, - 0xaf, 0x3e, 0xd5, 0x67, 0x2d, 0xc4, 0x71, 0x9b, 0x1d, 0xa6, 0x29, 0x10, 0x3d, 0x0e, 0x65, 0xb2, - 0xd3, 0xca, 0xde, 0x71, 0x5e, 0xd8, 0x69, 0x79, 0x11, 0x89, 0x29, 0x12, 0xd9, 0x69, 0xa1, 0xb3, - 0x50, 0xf2, 0xea, 0x42, 0x48, 0x81, 0xc0, 0x29, 0x2d, 0xcc, 0xe1, 0x92, 0x57, 0xb7, 0x77, 0xa0, - 0xa6, 0x5e, 0xa0, 0x42, 0x5b, 0x92, 0x77, 0x5b, 0x45, 0x38, 0xbd, 0xc9, 0x76, 0xbb, 0x70, 0xed, - 0x36, 0x80, 0x0e, 0x57, 0x2d, 0x8a, 0xbf, 0x9c, 0x83, 0x3e, 0x37, 0x14, 0x69, 0x01, 0xaa, 0xba, - 0x19, 0xc6, 0xb4, 0x19, 0xc4, 0xbe, 0x01, 0x23, 0x57, 0x82, 0xf0, 0x16, 0x7b, 0x28, 0x82, 0xe5, - 0x45, 0xa4, 0x0d, 0x6f, 0xd0, 0x1f, 0x59, 0x15, 0x81, 0x41, 0x31, 0x87, 0xa9, 0x8c, 0x6d, 0xa5, - 0x6e, 0x19, 0xdb, 0xec, 0x8f, 0x59, 0x30, 0xa4, 0xe2, 0xde, 0xe6, 0xb7, 0xb7, 0x68, 0xbb, 0x8d, - 0x28, 0x6c, 0xb7, 0xb2, 0xed, 0xb2, 0xc7, 0xee, 0x30, 0x87, 0x99, 0x01, 0xa1, 0xa5, 0x03, 0x02, - 0x42, 0xcf, 0x41, 0xdf, 0x96, 0x17, 0xd4, 0xb3, 0x8f, 0x1e, 0x5d, 0xf1, 0x82, 0x3a, 0x66, 0x10, - 0xda, 0x85, 0x13, 0xaa, 0x0b, 0x52, 0x20, 0x3c, 0x0f, 0x43, 0xeb, 0x6d, 0xcf, 0xaf, 0xcb, 0x84, - 0x8f, 0x19, 0x8b, 0xca, 0x8c, 0x01, 0xc3, 0x29, 0x4c, 0x7a, 0xae, 0x5b, 0xf7, 0x02, 0x27, 0xda, - 0x5d, 0xd1, 0x12, 0x48, 0x31, 0xa5, 0x19, 0x05, 0xc1, 0x06, 0x96, 0xfd, 0x7a, 0x19, 0x46, 0xd2, - 0xd1, 0x7f, 0x3d, 0x1c, 0xaf, 0x1e, 0x87, 0x0a, 0x0b, 0x08, 0xcc, 0x4e, 0x2d, 0xcf, 0x91, 0xc8, - 0x61, 0x28, 0x86, 0x7e, 0x9e, 0x16, 0xa5, 0x98, 0x07, 0xc3, 0x54, 0x27, 0x95, 0x1d, 0x86, 0xb9, - 0x06, 0x8a, 0x4c, 0x2c, 0x82, 0x14, 0xfa, 0xa4, 0x05, 0x03, 0x61, 0xcb, 0xcc, 0xf4, 0xf5, 0xfe, - 0x22, 0x23, 0x23, 0x45, 0xb8, 0x94, 0xd0, 0x88, 0xd5, 0xd4, 0xcb, 0xe9, 0x90, 0xa4, 0xcf, 0xbe, - 0x0b, 0x86, 0x4c, 0xcc, 0x83, 0x94, 0xe2, 0xaa, 0xa9, 0x14, 0x7f, 0xc6, 0x5c, 0x14, 0x22, 0xf6, - 0xb3, 0x87, 0xed, 0x76, 0x0d, 0x2a, 0xae, 0xf2, 0x9f, 0xb8, 0xab, 0x34, 0xc1, 0x2a, 0x4f, 0x09, - 0xbb, 0x9b, 0xe2, 0xad, 0xd9, 0xdf, 0xb1, 0x8c, 0xf5, 0x81, 0x49, 0xbc, 0x50, 0x47, 0x11, 0x94, - 0x1b, 0xdb, 0x5b, 0x42, 0x15, 0xbd, 0x5c, 0xd0, 0xf0, 0xce, 0x6f, 0x6f, 0xe9, 0x35, 0x6e, 0x96, - 0x62, 0x4a, 0xac, 0x07, 0x63, 0x61, 0x2a, 0x44, 0xb8, 0x7c, 0x70, 0x88, 0xb0, 0xfd, 0x46, 0x09, - 0xc6, 0x3a, 0x16, 0x15, 0x7a, 0x0d, 0x2a, 0x11, 0xfd, 0x4a, 0xf1, 0x79, 0x8b, 0x85, 0x05, 0xf5, - 0xc6, 0x0b, 0x75, 0x2d, 0x77, 0xd3, 0xe5, 0x98, 0x93, 0x44, 0x97, 0x01, 0x69, 0x2f, 0x1f, 0x65, - 0xa9, 0xe4, 0x9f, 0xac, 0x5c, 0x01, 0xa6, 0x3b, 0x30, 0x70, 0x4e, 0x2d, 0xf4, 0x42, 0xd6, 0xe0, - 0x59, 0x4e, 0x9b, 0xb3, 0xf7, 0xb3, 0x5d, 0xda, 0xbf, 0x55, 0x82, 0xe1, 0x54, 0xe2, 0x35, 0xe4, - 0x43, 0x95, 0xf8, 0xec, 0xae, 0x41, 0x0a, 0x9b, 0xa3, 0xa6, 0x51, 0x57, 0x02, 0xf2, 0x82, 0x68, - 0x17, 0x2b, 0x0a, 0x0f, 0x86, 0x87, 0xc0, 0xf3, 0x30, 0x24, 0x3b, 0xf4, 0x7e, 0xa7, 0xe9, 0x8b, - 0x01, 0x54, 0x6b, 0xf4, 0x82, 0x01, 0xc3, 0x29, 0x4c, 0xfb, 0xf7, 0xca, 0x30, 0xce, 0x2f, 0x67, - 0xea, 0x6a, 0xe5, 0x2d, 0xc9, 0xf3, 0xd6, 0xdf, 0xd0, 0xe9, 0x11, 0xad, 0x22, 0xde, 0x0a, 0xed, - 0x46, 0xa8, 0x27, 0xc7, 0xb6, 0xaf, 0x64, 0x1c, 0xdb, 0xb8, 0xda, 0xdd, 0x38, 0xa6, 0x1e, 0xfd, - 0x60, 0x79, 0xba, 0xfd, 0xc3, 0x12, 0x8c, 0x66, 0x9e, 0x84, 0x41, 0xaf, 0xa7, 0xb3, 0x88, 0x5b, - 0x45, 0xd8, 0xd4, 0xf7, 0x7d, 0x25, 0xe4, 0x70, 0xb9, 0xc4, 0xef, 0xd3, 0x56, 0xb1, 0xbf, 0x5d, - 0x82, 0x91, 0xf4, 0x5b, 0x36, 0x0f, 0xe0, 0x48, 0xbd, 0x1d, 0x6a, 0xec, 0xb9, 0x06, 0xf6, 0x04, - 0x33, 0x37, 0xc9, 0xf3, 0xcc, 0xf8, 0xb2, 0x10, 0x6b, 0xf8, 0x03, 0x91, 0xa2, 0xdd, 0xfe, 0xc7, - 0x16, 0x9c, 0xe6, 0x5f, 0x99, 0x5d, 0x87, 0x7f, 0x33, 0x6f, 0x74, 0x5f, 0x2e, 0xb6, 0x83, 0x99, - 0xb4, 0x9e, 0x07, 0x8d, 0x2f, 0x7b, 0x31, 0x55, 0xf4, 0x36, 0xbd, 0x14, 0x1e, 0xc0, 0xce, 0x1e, - 0x6a, 0x31, 0xd8, 0xdf, 0x2e, 0x83, 0x7e, 0x24, 0x16, 0x79, 0x22, 0xca, 0xb5, 0x90, 0xf4, 0xa6, - 0xab, 0xbb, 0x81, 0xab, 0x9f, 0xa3, 0xad, 0x66, 0x82, 0x5c, 0x7f, 0xd1, 0x82, 0x41, 0x2f, 0xf0, - 0x12, 0xcf, 0x61, 0xc7, 0xe8, 0x62, 0x5e, 0x7a, 0x54, 0xe4, 0x16, 0x78, 0xcb, 0x61, 0x64, 0xde, - 0xe3, 0x28, 0x62, 0xd8, 0xa4, 0x8c, 0x3e, 0x24, 0x7c, 0xcf, 0xcb, 0x85, 0xc5, 0x67, 0x57, 0x33, - 0x0e, 0xe7, 0x2d, 0xaa, 0x78, 0x25, 0x51, 0x41, 0x69, 0x0d, 0x30, 0x6d, 0x4a, 0x65, 0xca, 0x56, - 0xaa, 0x2d, 0x2b, 0xc6, 0x9c, 0x90, 0x1d, 0x03, 0xea, 0x1c, 0x8b, 0x43, 0xfa, 0xf5, 0x4e, 0x41, - 0xcd, 0x69, 0x27, 0x61, 0x93, 0x0e, 0x93, 0xb8, 0x6a, 0xd2, 0x9e, 0xcb, 0x12, 0x80, 0x35, 0x8e, - 0xfd, 0x7a, 0x05, 0x32, 0x61, 0xa7, 0x68, 0xc7, 0x7c, 0xe0, 0xd8, 0x2a, 0xf6, 0x81, 0x63, 0xd5, - 0x99, 0xbc, 0x47, 0x8e, 0x51, 0x03, 0x2a, 0xad, 0x4d, 0x27, 0x96, 0x6a, 0xf5, 0x8b, 0xea, 0x1c, - 0x47, 0x0b, 0xef, 0xec, 0x4d, 0xfc, 0x74, 0x6f, 0x56, 0x57, 0xba, 0x56, 0xa7, 0x78, 0xaa, 0x1c, - 0x4d, 0x9a, 0xb5, 0x81, 0x79, 0xfb, 0x87, 0x79, 0xeb, 0xf2, 0xe3, 0xe2, 0x5d, 0x0a, 0x4c, 0xe2, - 0xb6, 0x9f, 0x88, 0xd5, 0xf0, 0x62, 0x81, 0xbb, 0x8c, 0x37, 0xac, 0x13, 0x26, 0xf0, 0xff, 0xd8, - 0x20, 0x8a, 0x3e, 0x00, 0xb5, 0x38, 0x71, 0xa2, 0xe4, 0x2e, 0x43, 0x9c, 0x75, 0x4a, 0x33, 0xd9, - 0x08, 0xd6, 0xed, 0xa1, 0x97, 0x58, 0xb6, 0x67, 0x2f, 0xde, 0xbc, 0xcb, 0x90, 0x11, 0x99, 0x19, - 0x5a, 0xb4, 0x80, 0x8d, 0xd6, 0xd0, 0x79, 0x00, 0xb6, 0xb6, 0xb9, 0xff, 0x61, 0x95, 0x59, 0x99, - 0x14, 0x2b, 0xc4, 0x0a, 0x82, 0x0d, 0x2c, 0xfb, 0x27, 0x20, 0x9d, 0xf1, 0x03, 0x4d, 0xc8, 0x04, - 0x23, 0xdc, 0x0a, 0xcd, 0x42, 0x3f, 0x52, 0xb9, 0x40, 0x7e, 0xc3, 0x02, 0x33, 0x2d, 0x09, 0x7a, - 0x95, 0xe7, 0x3f, 0xb1, 0x8a, 0xb8, 0x39, 0x34, 0xda, 0x9d, 0x5c, 0x72, 0x5a, 0x99, 0x2b, 0x6c, - 0x99, 0x04, 0xe5, 0xec, 0x3b, 0xa1, 0x2a, 0xa1, 0x87, 0x52, 0xea, 0x3e, 0x0a, 0x27, 0x65, 0x18, - 0xa9, 0xb4, 0x9b, 0x8a, 0x5b, 0xa7, 0x83, 0x4d, 0x3f, 0xd2, 0x9e, 0x53, 0xea, 0x66, 0xcf, 0xe9, - 0xe1, 0x99, 0xeb, 0xdf, 0xb4, 0xe0, 0x5c, 0xb6, 0x03, 0xf1, 0x52, 0x18, 0x78, 0x49, 0x18, 0xad, - 0x92, 0x24, 0xf1, 0x82, 0x06, 0x4b, 0xfb, 0x76, 0xcb, 0x89, 0x64, 0x1a, 0x7e, 0xc6, 0x28, 0x6f, - 0x38, 0x51, 0x80, 0x59, 0x29, 0xda, 0x85, 0x7e, 0xee, 0xa4, 0x26, 0xb4, 0xf5, 0x23, 0xee, 0x8d, - 0x9c, 0xe1, 0xd0, 0xc7, 0x05, 0xee, 0x20, 0x87, 0x05, 0x41, 0xfb, 0x7b, 0x16, 0xa0, 0xe5, 0x6d, - 0x12, 0x45, 0x5e, 0xdd, 0x70, 0xab, 0x63, 0xef, 0x3b, 0x19, 0xef, 0x38, 0x99, 0x41, 0xce, 0x99, - 0xf7, 0x9d, 0x8c, 0x7f, 0xf9, 0xef, 0x3b, 0x95, 0x0e, 0xf7, 0xbe, 0x13, 0x5a, 0x86, 0xd3, 0x4d, - 0x7e, 0xdc, 0xe0, 0x6f, 0xa6, 0xf0, 0xb3, 0x87, 0x8a, 0xc7, 0x3b, 0x73, 0x7b, 0x6f, 0xe2, 0xf4, - 0x52, 0x1e, 0x02, 0xce, 0xaf, 0x67, 0xbf, 0x13, 0x10, 0xf7, 0xa6, 0x9b, 0xcd, 0xf3, 0x55, 0xea, - 0x6a, 0x7e, 0xb1, 0xbf, 0x5c, 0x81, 0xd1, 0x4c, 0x92, 0x66, 0x7a, 0xd4, 0xeb, 0x74, 0x8e, 0x3a, - 0xb2, 0xfc, 0xee, 0xec, 0x5e, 0x4f, 0xee, 0x56, 0x01, 0x54, 0xbc, 0xa0, 0xd5, 0x4e, 0x8a, 0x09, - 0x07, 0xe6, 0x9d, 0x58, 0xa0, 0x0d, 0x1a, 0xe6, 0x62, 0xfa, 0x17, 0x73, 0x32, 0x45, 0x3a, 0x6f, - 0xa5, 0x94, 0xf1, 0xbe, 0xfb, 0x64, 0x0e, 0xf8, 0xb8, 0x76, 0xa5, 0xaa, 0x14, 0x61, 0x58, 0xcc, - 0x2c, 0x96, 0xe3, 0xbe, 0x6a, 0xff, 0x46, 0x09, 0x06, 0x8d, 0x49, 0x43, 0xbf, 0x9a, 0x4e, 0xda, - 0x65, 0x15, 0xf7, 0x49, 0xac, 0xfd, 0x49, 0x9d, 0x96, 0x8b, 0x7f, 0xd2, 0x13, 0x9d, 0xf9, 0xba, - 0xee, 0xec, 0x4d, 0x9c, 0xc8, 0x64, 0xe4, 0x4a, 0xe5, 0xf0, 0x3a, 0xfb, 0x11, 0x18, 0xcd, 0x34, - 0x93, 0xf3, 0xc9, 0x6b, 0xe6, 0x27, 0x1f, 0xd9, 0x2c, 0x65, 0x0e, 0xd9, 0xd7, 0xe9, 0x90, 0x89, - 0x28, 0xc4, 0xd0, 0x27, 0x3d, 0xd8, 0x60, 0x33, 0xc1, 0xc6, 0xa5, 0x1e, 0x83, 0x8d, 0x9f, 0x84, - 0x6a, 0x2b, 0xf4, 0x3d, 0xd7, 0x53, 0x39, 0x34, 0x59, 0x78, 0xf3, 0x8a, 0x28, 0xc3, 0x0a, 0x8a, - 0x6e, 0x41, 0xed, 0xe6, 0xad, 0x84, 0xdf, 0xfe, 0x08, 0xfb, 0x76, 0x51, 0x97, 0x3e, 0x4a, 0x69, - 0x51, 0xd7, 0x4b, 0x58, 0xd3, 0x42, 0x36, 0xf4, 0x33, 0x21, 0x28, 0x23, 0x12, 0x98, 0xed, 0x9d, - 0x49, 0xc7, 0x18, 0x0b, 0x88, 0xfd, 0xb5, 0x1a, 0x9c, 0xca, 0xcb, 0x94, 0x8f, 0x3e, 0x0c, 0xfd, - 0xbc, 0x8f, 0xc5, 0x3c, 0xc6, 0x92, 0x47, 0x63, 0x9e, 0x35, 0x28, 0xba, 0xc5, 0x7e, 0x63, 0x41, - 0x53, 0x50, 0xf7, 0x9d, 0x75, 0xb1, 0x42, 0x8e, 0x87, 0xfa, 0xa2, 0xa3, 0xa9, 0x2f, 0x3a, 0x9c, - 0xba, 0xef, 0xac, 0xa3, 0x1d, 0xa8, 0x34, 0xbc, 0x84, 0x38, 0xc2, 0x88, 0x70, 0xe3, 0x58, 0x88, - 0x13, 0x87, 0x6b, 0x69, 0xec, 0x27, 0xe6, 0x04, 0xd1, 0x57, 0x2d, 0x18, 0x5d, 0x4f, 0x67, 0x39, - 0x10, 0xcc, 0xd3, 0x39, 0x86, 0xd7, 0x10, 0xd2, 0x84, 0xf8, 0x03, 0x67, 0x99, 0x42, 0x9c, 0xed, - 0x0e, 0xfa, 0x84, 0x05, 0x03, 0x1b, 0x9e, 0x6f, 0x24, 0xa4, 0x3e, 0x86, 0xc9, 0xb9, 0xc8, 0x08, - 0xe8, 0x13, 0x07, 0xff, 0x1f, 0x63, 0x49, 0xb9, 0x9b, 0xa4, 0xea, 0x3f, 0xaa, 0xa4, 0x1a, 0xb8, - 0x4f, 0x92, 0xea, 0xd3, 0x16, 0xd4, 0xd4, 0x48, 0x8b, 0x68, 0xf1, 0x0f, 0x1c, 0xe3, 0x94, 0x73, - 0xcb, 0x89, 0xfa, 0x8b, 0x35, 0x71, 0xf4, 0x05, 0x0b, 0x06, 0x9d, 0xd7, 0xda, 0x11, 0xa9, 0x93, - 0xed, 0xb0, 0x15, 0x8b, 0xd7, 0x51, 0x5f, 0x2e, 0xbe, 0x33, 0xd3, 0x94, 0xc8, 0x1c, 0xd9, 0x5e, - 0x6e, 0xc5, 0x22, 0x5a, 0x4a, 0x17, 0x60, 0xb3, 0x0b, 0xf6, 0x5e, 0x09, 0x26, 0x0e, 0x68, 0x01, - 0x3d, 0x0f, 0x43, 0x61, 0xd4, 0x70, 0x02, 0xef, 0x35, 0x33, 0x6d, 0x89, 0xd2, 0xb2, 0x96, 0x0d, - 0x18, 0x4e, 0x61, 0x9a, 0xf1, 0xec, 0xa5, 0x03, 0xe2, 0xd9, 0xcf, 0x41, 0x5f, 0x44, 0x5a, 0x61, - 0xf6, 0xb0, 0xc0, 0x22, 0x15, 0x18, 0x04, 0x3d, 0x0a, 0x65, 0xa7, 0xe5, 0x09, 0x47, 0x34, 0x75, - 0x06, 0x9a, 0x5e, 0x59, 0xc0, 0xb4, 0x3c, 0x95, 0x5e, 0xa3, 0x72, 0x4f, 0xd2, 0x6b, 0x50, 0x31, - 0x20, 0xee, 0x2e, 0xfa, 0xb5, 0x18, 0x48, 0xdf, 0x29, 0xd8, 0x6f, 0x94, 0xe1, 0xd1, 0x7d, 0xd7, - 0x8b, 0xf6, 0xc3, 0xb3, 0xf6, 0xf1, 0xc3, 0x93, 0xc3, 0x53, 0x3a, 0x68, 0x78, 0xca, 0x5d, 0x86, - 0xe7, 0x13, 0x74, 0x1b, 0xc8, 0x74, 0x2f, 0xc5, 0xbc, 0x6f, 0xd9, 0x2d, 0x7b, 0x8c, 0xd8, 0x01, - 0x12, 0x8a, 0x35, 0x5d, 0x7a, 0x06, 0x48, 0xc5, 0x72, 0x57, 0x8a, 0x10, 0x03, 0x5d, 0x53, 0xae, - 0xf0, 0xb5, 0xdf, 0x2d, 0x40, 0xdc, 0xfe, 0xed, 0x3e, 0x78, 0xbc, 0x07, 0xee, 0x6d, 0xae, 0x62, - 0xab, 0xc7, 0x55, 0xfc, 0x03, 0x3e, 0x4d, 0x9f, 0xca, 0x9d, 0x26, 0x5c, 0xfc, 0x34, 0xed, 0x3f, - 0x43, 0xe8, 0x29, 0xa8, 0x7a, 0x41, 0x4c, 0xdc, 0x76, 0xc4, 0x7d, 0x92, 0x8d, 0x30, 0xa6, 0x05, - 0x51, 0x8e, 0x15, 0x06, 0x3d, 0xd3, 0xb9, 0x0e, 0xdd, 0xfe, 0x03, 0x05, 0xc5, 0xee, 0x9a, 0x11, - 0x51, 0x5c, 0xa5, 0x98, 0x9d, 0xa6, 0x1c, 0x80, 0x93, 0xb1, 0xff, 0x96, 0x05, 0x67, 0xbb, 0x8b, - 0x58, 0xf4, 0x0c, 0x0c, 0xae, 0x47, 0x4e, 0xe0, 0x6e, 0xb2, 0x97, 0x8d, 0xe5, 0xd2, 0x61, 0xdf, - 0xab, 0x8b, 0xb1, 0x89, 0x83, 0x66, 0x61, 0x8c, 0x7b, 0x6e, 0x18, 0x18, 0x32, 0xf2, 0xf7, 0xf6, - 0xde, 0xc4, 0xd8, 0x5a, 0x16, 0x88, 0x3b, 0xf1, 0xed, 0xef, 0x97, 0xf3, 0xbb, 0xc5, 0x55, 0xb1, - 0xc3, 0xac, 0x66, 0xb1, 0x56, 0x4b, 0x3d, 0x70, 0xdc, 0xf2, 0xbd, 0xe6, 0xb8, 0x7d, 0xdd, 0x38, - 0x2e, 0x9a, 0x83, 0x13, 0xc6, 0xd3, 0x53, 0x3c, 0x9a, 0x9b, 0xbb, 0x25, 0xab, 0x54, 0x2c, 0x2b, - 0x19, 0x38, 0xee, 0xa8, 0xf1, 0x80, 0x2f, 0xbd, 0x5f, 0x2b, 0xc1, 0x99, 0xae, 0xda, 0xef, 0x3d, - 0x92, 0x28, 0xe6, 0xf4, 0xf7, 0xdd, 0x9b, 0xe9, 0x37, 0x27, 0xa5, 0x72, 0xd0, 0xa4, 0xd8, 0x7f, - 0x5c, 0xea, 0xba, 0x11, 0xe8, 0x49, 0xe8, 0x87, 0x76, 0x94, 0x5e, 0x80, 0x61, 0xa7, 0xd5, 0xe2, - 0x78, 0xcc, 0x8b, 0x36, 0x93, 0xfa, 0x69, 0xda, 0x04, 0xe2, 0x34, 0x6e, 0x4f, 0x3a, 0xcd, 0x9f, - 0x58, 0x50, 0xc3, 0x64, 0x83, 0x73, 0x23, 0x74, 0x53, 0x0c, 0x91, 0x55, 0x44, 0x9e, 0x5b, 0x3a, - 0xb0, 0xb1, 0xc7, 0xf2, 0xbf, 0xe6, 0x0d, 0x76, 0xe7, 0x53, 0x64, 0xa5, 0x43, 0x3d, 0x45, 0xa6, - 0x1e, 0xa3, 0x2a, 0x77, 0x7f, 0x8c, 0xca, 0xfe, 0xee, 0x00, 0xfd, 0xbc, 0x56, 0x38, 0x1b, 0x91, - 0x7a, 0x4c, 0xe7, 0xb7, 0x1d, 0xf9, 0x62, 0x91, 0xa8, 0xf9, 0xbd, 0x86, 0x17, 0x31, 0x2d, 0x4f, - 0x5d, 0x90, 0x95, 0x0e, 0x95, 0xf8, 0xa6, 0x7c, 0x60, 0xe2, 0x9b, 0x17, 0x60, 0x38, 0x8e, 0x37, - 0x57, 0x22, 0x6f, 0xdb, 0x49, 0xc8, 0x15, 0xb2, 0x2b, 0x74, 0x5f, 0x9d, 0x04, 0x62, 0xf5, 0x92, - 0x06, 0xe2, 0x34, 0x2e, 0x9a, 0x87, 0x31, 0x9d, 0x7e, 0x86, 0x44, 0x09, 0x8b, 0xb9, 0xe0, 0x2b, - 0x41, 0x45, 0x7c, 0xeb, 0x84, 0x35, 0x02, 0x01, 0x77, 0xd6, 0xa1, 0xfc, 0x34, 0x55, 0x48, 0x3b, - 0xd2, 0x9f, 0xe6, 0xa7, 0xa9, 0x76, 0x68, 0x5f, 0x3a, 0x6a, 0xa0, 0x25, 0x38, 0xc9, 0x17, 0xc6, - 0x74, 0xab, 0x65, 0x7c, 0xd1, 0x40, 0x3a, 0xbf, 0xe8, 0x7c, 0x27, 0x0a, 0xce, 0xab, 0x87, 0x9e, - 0x83, 0x41, 0x55, 0xbc, 0x30, 0x27, 0xee, 0x76, 0x94, 0x6d, 0x49, 0x35, 0xb3, 0x50, 0xc7, 0x26, - 0x1e, 0x7a, 0x3f, 0x3c, 0xac, 0xff, 0xf2, 0xc0, 0x3c, 0x7e, 0xe1, 0x39, 0x27, 0x32, 0x7b, 0xa9, - 0xa7, 0x8f, 0xe6, 0x73, 0xd1, 0xea, 0xb8, 0x5b, 0x7d, 0xb4, 0x0e, 0x67, 0x15, 0xe8, 0x42, 0x90, - 0xb0, 0x28, 0x9b, 0x98, 0xcc, 0x38, 0x31, 0xb9, 0x16, 0xf9, 0xe2, 0x09, 0x6d, 0xf5, 0x3a, 0xee, - 0xbc, 0x97, 0x5c, 0xca, 0xc3, 0xc4, 0x8b, 0x78, 0x9f, 0x56, 0xd0, 0x14, 0xd4, 0x48, 0xe0, 0xac, - 0xfb, 0x64, 0x79, 0x76, 0x81, 0x65, 0x08, 0x33, 0xee, 0x57, 0x2f, 0x48, 0x00, 0xd6, 0x38, 0xca, - 0xef, 0x77, 0xa8, 0xeb, 0x4b, 0xcd, 0x2b, 0x70, 0xaa, 0xe1, 0xb6, 0xa8, 0x46, 0xe8, 0xb9, 0x64, - 0xda, 0x65, 0x6e, 0x8e, 0x74, 0x62, 0x78, 0xe2, 0x57, 0xe5, 0xd4, 0x3e, 0x3f, 0xbb, 0xd2, 0x81, - 0x83, 0x73, 0x6b, 0x32, 0x77, 0xd8, 0x28, 0xdc, 0xd9, 0x1d, 0x3f, 0x99, 0x71, 0x87, 0xa5, 0x85, - 0x98, 0xc3, 0xd0, 0x65, 0x40, 0x2c, 0x42, 0xe2, 0x52, 0x92, 0xb4, 0x94, 0x0a, 0x3a, 0x7e, 0x2a, - 0x9d, 0xe7, 0xe7, 0x62, 0x07, 0x06, 0xce, 0xa9, 0x45, 0x35, 0x9a, 0x20, 0x64, 0xad, 0x8f, 0x3f, - 0x9c, 0xd6, 0x68, 0xae, 0xf2, 0x62, 0x2c, 0xe1, 0xf6, 0x7f, 0xb6, 0x60, 0x58, 0x6d, 0xed, 0x7b, - 0x10, 0x4e, 0xe4, 0xa7, 0xc3, 0x89, 0xe6, 0x8f, 0xce, 0x1c, 0x59, 0xcf, 0xbb, 0xf8, 0xa4, 0x7f, - 0x63, 0x10, 0x40, 0x33, 0x50, 0x25, 0xbb, 0xac, 0xae, 0xb2, 0xeb, 0x81, 0x65, 0x5e, 0x79, 0x19, - 0x79, 0x2a, 0xf7, 0x37, 0x23, 0xcf, 0x2a, 0x9c, 0x96, 0x9a, 0x05, 0xbf, 0xec, 0xbb, 0x14, 0xc6, - 0x8a, 0x17, 0x56, 0x67, 0x1e, 0x15, 0x0d, 0x9d, 0x5e, 0xc8, 0x43, 0xc2, 0xf9, 0x75, 0x53, 0x0a, - 0xcd, 0xc0, 0x81, 0x5a, 0xa6, 0xda, 0xfe, 0x8b, 0x1b, 0xf2, 0x09, 0xa1, 0xcc, 0xf6, 0x5f, 0xbc, - 0xb8, 0x8a, 0x35, 0x4e, 0xbe, 0x0c, 0xa8, 0x15, 0x24, 0x03, 0xe0, 0xd0, 0x32, 0x40, 0x72, 0xa3, - 0xc1, 0xae, 0xdc, 0x48, 0x5e, 0x2a, 0x0c, 0x75, 0xbd, 0x54, 0x78, 0x0f, 0x8c, 0x78, 0xc1, 0x26, - 0x89, 0xbc, 0x84, 0xd4, 0xd9, 0x5e, 0x60, 0x9c, 0xaa, 0xaa, 0x35, 0x80, 0x85, 0x14, 0x14, 0x67, - 0xb0, 0xd3, 0x2c, 0x74, 0xa4, 0x07, 0x16, 0xda, 0x45, 0x70, 0x8d, 0x16, 0x23, 0xb8, 0x4e, 0x1c, - 0x5d, 0x70, 0x8d, 0x1d, 0xab, 0xe0, 0x42, 0x85, 0x08, 0xae, 0x9e, 0x64, 0x82, 0x71, 0x32, 0x3d, - 0x75, 0xc0, 0xc9, 0xb4, 0x9b, 0xd4, 0x3a, 0x7d, 0xd7, 0x52, 0x2b, 0x5f, 0x20, 0x3d, 0x74, 0xdc, - 0x02, 0xe9, 0xd3, 0x25, 0x38, 0xad, 0x59, 0x36, 0xdd, 0x28, 0xde, 0x06, 0x65, 0x5a, 0xec, 0xc1, - 0x3a, 0x7e, 0x47, 0x67, 0x04, 0xc2, 0xe9, 0x98, 0x3a, 0x05, 0xc1, 0x06, 0x16, 0x8b, 0x27, 0x23, - 0x11, 0xcb, 0x7e, 0x9d, 0xe5, 0xe7, 0xb3, 0xa2, 0x1c, 0x2b, 0x0c, 0xba, 0x14, 0xe9, 0x6f, 0x11, - 0xa3, 0x9b, 0xcd, 0xab, 0x38, 0xab, 0x41, 0xd8, 0xc4, 0x43, 0x4f, 0x72, 0x22, 0x8c, 0x97, 0x50, - 0x9e, 0x3e, 0x24, 0x5e, 0x05, 0x97, 0xec, 0x43, 0x41, 0x65, 0x77, 0x58, 0xe0, 0x60, 0xa5, 0xb3, - 0x3b, 0xcc, 0xdd, 0x4d, 0x61, 0xd8, 0xff, 0xd3, 0x82, 0x33, 0xb9, 0x43, 0x71, 0x0f, 0xe4, 0xf4, - 0x4e, 0x5a, 0x4e, 0xaf, 0x16, 0x75, 0x88, 0x31, 0xbe, 0xa2, 0x8b, 0xcc, 0xfe, 0x8f, 0x16, 0x8c, - 0x68, 0xfc, 0x7b, 0xf0, 0xa9, 0x5e, 0xfa, 0x53, 0x8b, 0x3b, 0xaf, 0xd5, 0x3a, 0xbe, 0xed, 0xf7, - 0x4a, 0xa0, 0x72, 0x9d, 0x4e, 0xbb, 0x32, 0x93, 0xf4, 0x01, 0xb7, 0xc6, 0xbb, 0xd0, 0xcf, 0x2e, - 0xbd, 0xe3, 0x62, 0x1c, 0x7a, 0xd2, 0xf4, 0xd9, 0x05, 0xba, 0x76, 0x28, 0x60, 0x7f, 0x63, 0x2c, - 0x08, 0xb2, 0xdc, 0xec, 0x3c, 0x8d, 0x64, 0x5d, 0x84, 0xe0, 0xe9, 0xdc, 0xec, 0xa2, 0x1c, 0x2b, - 0x0c, 0x2a, 0x49, 0x3c, 0x37, 0x0c, 0x66, 0x7d, 0x27, 0x96, 0x2f, 0xce, 0x2a, 0x49, 0xb2, 0x20, - 0x01, 0x58, 0xe3, 0xb0, 0xfb, 0x70, 0x2f, 0x6e, 0xf9, 0xce, 0xae, 0x71, 0x2a, 0x37, 0x72, 0x51, - 0x28, 0x10, 0x36, 0xf1, 0xec, 0x26, 0x8c, 0xa7, 0x3f, 0x62, 0x8e, 0x6c, 0x30, 0x67, 0xd4, 0x9e, - 0x86, 0x73, 0x0a, 0x6a, 0x0e, 0xab, 0xb5, 0xd8, 0x76, 0x04, 0x4f, 0xd0, 0x2e, 0x99, 0x12, 0x80, - 0x35, 0x8e, 0xfd, 0x8f, 0x2c, 0x38, 0x99, 0x33, 0x68, 0x05, 0x86, 0x38, 0x26, 0x9a, 0xdb, 0xe4, - 0xe9, 0x00, 0x3f, 0x0e, 0x03, 0x75, 0xb2, 0xe1, 0x48, 0x77, 0x47, 0x83, 0x7b, 0xce, 0xf1, 0x62, - 0x2c, 0xe1, 0xf6, 0x6f, 0x95, 0x60, 0x34, 0xdd, 0xd7, 0x98, 0x85, 0x0d, 0xf1, 0x61, 0xf2, 0x62, - 0x37, 0xdc, 0x26, 0xd1, 0x2e, 0xfd, 0x72, 0x2b, 0x13, 0x36, 0xd4, 0x81, 0x81, 0x73, 0x6a, 0xb1, - 0x4c, 0xc7, 0x75, 0x35, 0xda, 0x72, 0x45, 0x5e, 0x2f, 0x72, 0x45, 0xea, 0xc9, 0x34, 0x5d, 0x23, - 0x14, 0x49, 0x6c, 0xd2, 0xa7, 0xba, 0x08, 0xf3, 0xc3, 0x9e, 0x69, 0x7b, 0x7e, 0xe2, 0x05, 0xe2, - 0x93, 0xc5, 0x5a, 0x55, 0xba, 0xc8, 0x52, 0x27, 0x0a, 0xce, 0xab, 0x67, 0x7f, 0xaf, 0x0f, 0x54, - 0x48, 0x35, 0x73, 0x5d, 0x2b, 0xc8, 0xf1, 0xef, 0xb0, 0xc1, 0x67, 0x6a, 0x6d, 0xf5, 0xed, 0xe7, - 0x4b, 0xc2, 0x4d, 0x39, 0xa6, 0x3d, 0x57, 0x0d, 0xd8, 0x9a, 0x06, 0x61, 0x13, 0x8f, 0xf6, 0xc4, - 0xf7, 0xb6, 0x09, 0xaf, 0xd4, 0x9f, 0xee, 0xc9, 0xa2, 0x04, 0x60, 0x8d, 0x43, 0x7b, 0x52, 0xf7, - 0x36, 0x36, 0x84, 0x5d, 0x42, 0xf5, 0x84, 0x8e, 0x0e, 0x66, 0x10, 0x9e, 0x0b, 0x3f, 0xdc, 0x12, - 0xfa, 0xb7, 0x91, 0x0b, 0x3f, 0xdc, 0xc2, 0x0c, 0x42, 0x67, 0x29, 0x08, 0xa3, 0xa6, 0xe3, 0x7b, - 0xaf, 0x91, 0xba, 0xa2, 0x22, 0xf4, 0x6e, 0x35, 0x4b, 0x57, 0x3b, 0x51, 0x70, 0x5e, 0x3d, 0xba, - 0xa0, 0x5b, 0x11, 0xa9, 0x7b, 0x6e, 0x62, 0xb6, 0x06, 0xe9, 0x05, 0xbd, 0xd2, 0x81, 0x81, 0x73, - 0x6a, 0xa1, 0x69, 0x18, 0x95, 0x21, 0xf1, 0x32, 0xe1, 0xd1, 0x60, 0x3a, 0xc1, 0x0a, 0x4e, 0x83, - 0x71, 0x16, 0x9f, 0x32, 0xc9, 0xa6, 0xc8, 0x89, 0xc6, 0xd4, 0x74, 0x83, 0x49, 0xca, 0x5c, 0x69, - 0x58, 0x61, 0xd8, 0x1f, 0x2f, 0x53, 0xa1, 0xde, 0x25, 0xf5, 0xe0, 0x3d, 0x73, 0x34, 0x4d, 0xaf, - 0xc8, 0xbe, 0x1e, 0x56, 0xe4, 0xb3, 0x30, 0x74, 0x33, 0x0e, 0x03, 0xe5, 0xc4, 0x59, 0xe9, 0xea, - 0xc4, 0x69, 0x60, 0xe5, 0x3b, 0x71, 0xf6, 0x17, 0xe5, 0xc4, 0x39, 0x70, 0x97, 0x4e, 0x9c, 0x7f, - 0x50, 0x01, 0xf5, 0xae, 0xd0, 0x55, 0x92, 0xdc, 0x0a, 0xa3, 0x2d, 0x2f, 0x68, 0xb0, 0x54, 0x02, - 0x5f, 0xb5, 0x60, 0x88, 0xef, 0x97, 0x45, 0x33, 0x08, 0x6f, 0xa3, 0xa0, 0x07, 0x6b, 0x52, 0xc4, - 0x26, 0xd7, 0x0c, 0x42, 0x99, 0x37, 0x87, 0x4d, 0x10, 0x4e, 0xf5, 0x08, 0x7d, 0x04, 0x40, 0x1a, - 0x71, 0x37, 0x24, 0x07, 0x5e, 0x28, 0xa6, 0x7f, 0x98, 0x6c, 0x68, 0x95, 0x7a, 0x4d, 0x11, 0xc1, - 0x06, 0x41, 0xf4, 0x69, 0x1d, 0xa0, 0xc8, 0xa3, 0x3d, 0x3e, 0x74, 0x2c, 0x63, 0xd3, 0x4b, 0x78, - 0x22, 0x86, 0x01, 0x2f, 0x68, 0xd0, 0x75, 0x22, 0x9c, 0xdd, 0xde, 0x96, 0x97, 0x86, 0x63, 0x31, - 0x74, 0xea, 0x33, 0x8e, 0xef, 0x04, 0x2e, 0x89, 0x16, 0x38, 0xba, 0x96, 0xa0, 0xa2, 0x00, 0xcb, - 0x86, 0x3a, 0x5e, 0x64, 0xaa, 0xf4, 0xf2, 0x22, 0xd3, 0xd9, 0xf7, 0xc2, 0x58, 0xc7, 0x64, 0x1e, - 0x2a, 0x1a, 0xf1, 0xee, 0x03, 0x19, 0xed, 0xdf, 0xee, 0xd7, 0x42, 0xeb, 0x6a, 0x58, 0xe7, 0x0f, - 0xfc, 0x44, 0x7a, 0x46, 0x85, 0xca, 0x5c, 0xe0, 0x12, 0x51, 0x62, 0xc6, 0x28, 0xc4, 0x26, 0x49, - 0xba, 0x46, 0x5b, 0x4e, 0x44, 0x82, 0xe3, 0x5e, 0xa3, 0x2b, 0x8a, 0x08, 0x36, 0x08, 0xa2, 0xcd, - 0x54, 0x38, 0xd2, 0xc5, 0xa3, 0x87, 0x23, 0xb1, 0x04, 0x65, 0x79, 0xef, 0x60, 0x7c, 0xc1, 0x82, - 0x91, 0x20, 0xb5, 0x72, 0x8b, 0xf1, 0x40, 0xce, 0xdf, 0x15, 0xfc, 0x59, 0xba, 0x74, 0x19, 0xce, - 0xd0, 0xcf, 0x13, 0x69, 0x95, 0x43, 0x8a, 0x34, 0xfd, 0xc0, 0x58, 0x7f, 0xb7, 0x07, 0xc6, 0x50, - 0xa0, 0x5e, 0x58, 0x1c, 0x28, 0xfc, 0x85, 0x45, 0xc8, 0x79, 0x5d, 0xf1, 0x06, 0xd4, 0xdc, 0x88, - 0x38, 0xc9, 0x5d, 0x3e, 0xb6, 0xc7, 0x7c, 0x3b, 0x66, 0x65, 0x03, 0x58, 0xb7, 0x65, 0xff, 0x9f, - 0x3e, 0x38, 0x21, 0x47, 0x44, 0x46, 0x2f, 0x50, 0xf9, 0xc8, 0xe9, 0x6a, 0x5d, 0x59, 0xc9, 0xc7, - 0x4b, 0x12, 0x80, 0x35, 0x0e, 0xd5, 0xc7, 0xda, 0x31, 0x59, 0x6e, 0x91, 0x60, 0xd1, 0x5b, 0x8f, - 0xc5, 0x65, 0xac, 0xda, 0x28, 0xd7, 0x34, 0x08, 0x9b, 0x78, 0x54, 0xb7, 0x77, 0x0c, 0xa5, 0xd5, - 0xd0, 0xed, 0xa5, 0xa2, 0x2a, 0xe1, 0xe8, 0x97, 0x73, 0x73, 0x21, 0x17, 0x13, 0xf3, 0xd7, 0x11, - 0xb4, 0x71, 0xc8, 0xf7, 0x59, 0xff, 0xbe, 0x05, 0xa7, 0x79, 0xa9, 0x1c, 0xc9, 0x6b, 0xad, 0xba, - 0x93, 0x90, 0xb8, 0x98, 0x37, 0x14, 0x72, 0xfa, 0xa7, 0xcd, 0xcb, 0x79, 0x64, 0x71, 0x7e, 0x6f, - 0xd0, 0xeb, 0x16, 0x8c, 0x6e, 0xa5, 0xd2, 0xc5, 0x48, 0xd1, 0x71, 0xd4, 0x4c, 0x0e, 0xa9, 0x46, - 0xf5, 0x56, 0x4b, 0x97, 0xc7, 0x38, 0x4b, 0xdd, 0xfe, 0x1f, 0x16, 0x98, 0x6c, 0xf4, 0xde, 0x67, - 0x99, 0x39, 0xbc, 0x2a, 0x28, 0xb5, 0xcb, 0x4a, 0x57, 0xed, 0xf2, 0x51, 0x28, 0xb7, 0xbd, 0xba, - 0x38, 0x5f, 0xe8, 0x2b, 0xe2, 0x85, 0x39, 0x4c, 0xcb, 0xed, 0x7f, 0x59, 0xd1, 0x66, 0x10, 0x11, - 0x52, 0xf7, 0x43, 0xf1, 0xd9, 0x1b, 0x2a, 0x4f, 0x1d, 0xff, 0xf2, 0xab, 0x1d, 0x79, 0xea, 0x7e, - 0xea, 0xf0, 0x11, 0x93, 0x7c, 0x80, 0xba, 0xa5, 0xa9, 0x1b, 0x38, 0x20, 0x5c, 0xf2, 0x26, 0x54, - 0xe9, 0x11, 0x8c, 0xd9, 0x33, 0xab, 0xa9, 0x4e, 0x55, 0x2f, 0x89, 0xf2, 0x3b, 0x7b, 0x13, 0xef, - 0x3a, 0x7c, 0xb7, 0x64, 0x6d, 0xac, 0xda, 0x47, 0x31, 0xd4, 0xe8, 0x6f, 0x16, 0xd9, 0x29, 0x0e, - 0x77, 0xd7, 0x14, 0xcf, 0x94, 0x80, 0x42, 0xc2, 0x46, 0x35, 0x1d, 0x14, 0x40, 0x8d, 0x3d, 0x65, - 0xcd, 0x88, 0xf2, 0x33, 0xe0, 0x8a, 0x8a, 0xaf, 0x94, 0x80, 0x3b, 0x7b, 0x13, 0x2f, 0x1c, 0x9e, - 0xa8, 0xaa, 0x8e, 0x35, 0x09, 0xfb, 0x8b, 0x7d, 0x7a, 0xed, 0x8a, 0xf4, 0x84, 0x3f, 0x14, 0x6b, - 0xf7, 0xf9, 0xcc, 0xda, 0x3d, 0xd7, 0xb1, 0x76, 0x47, 0xf4, 0x93, 0xcb, 0xa9, 0xd5, 0x78, 0xaf, - 0x15, 0x81, 0x83, 0xed, 0x0d, 0x4c, 0x03, 0x7a, 0xb5, 0xed, 0x45, 0x24, 0x5e, 0x89, 0xda, 0x81, - 0x17, 0x34, 0xd8, 0x72, 0xac, 0x9a, 0x1a, 0x50, 0x0a, 0x8c, 0xb3, 0xf8, 0xf4, 0x50, 0x4f, 0xe7, - 0xfc, 0x86, 0xb3, 0xcd, 0x57, 0x95, 0x91, 0xb1, 0x6d, 0x55, 0x94, 0x63, 0x85, 0x61, 0x7f, 0x9d, - 0xdd, 0xa2, 0x1b, 0x21, 0xe5, 0x74, 0x4d, 0xf8, 0xec, 0xed, 0x70, 0x9e, 0xee, 0x4d, 0xad, 0x09, - 0xfe, 0x60, 0x38, 0x87, 0xa1, 0x5b, 0x30, 0xb0, 0xce, 0x5f, 0xc1, 0x2c, 0x26, 0xe3, 0xbe, 0x78, - 0x52, 0x93, 0xbd, 0x2f, 0x24, 0xdf, 0xd7, 0xbc, 0xa3, 0x7f, 0x62, 0x49, 0xcd, 0xfe, 0x56, 0x05, - 0x46, 0x33, 0xaf, 0x4b, 0xa7, 0x12, 0xed, 0x96, 0x0e, 0x4c, 0xb4, 0xfb, 0x41, 0x80, 0x3a, 0x69, - 0xf9, 0xe1, 0x2e, 0x53, 0xc7, 0xfa, 0x0e, 0xad, 0x8e, 0x29, 0x0d, 0x7e, 0x4e, 0xb5, 0x82, 0x8d, - 0x16, 0x45, 0x8e, 0x3b, 0x9e, 0xb7, 0x37, 0x93, 0xe3, 0xce, 0x78, 0x97, 0xa3, 0xff, 0xde, 0xbe, - 0xcb, 0xe1, 0xc1, 0x28, 0xef, 0xa2, 0x0a, 0xdc, 0xbe, 0x8b, 0xf8, 0x6c, 0x16, 0xfa, 0x32, 0x97, - 0x6e, 0x06, 0x67, 0xdb, 0xbd, 0x9f, 0x8f, 0xc7, 0xa3, 0xb7, 0x43, 0x4d, 0xce, 0x73, 0x3c, 0x5e, - 0xd3, 0xc9, 0x2f, 0xe4, 0x32, 0x60, 0x8f, 0xba, 0x8b, 0x9f, 0x1d, 0x39, 0x28, 0xe0, 0x7e, 0xe5, - 0xa0, 0xb0, 0x3f, 0x5f, 0xa2, 0x7a, 0x3c, 0xef, 0x97, 0x4a, 0xa7, 0xf4, 0x04, 0xf4, 0x3b, 0xed, - 0x64, 0x33, 0xec, 0x78, 0x47, 0x73, 0x9a, 0x95, 0x62, 0x01, 0x45, 0x8b, 0xd0, 0x57, 0xd7, 0x29, - 0x72, 0x0e, 0x33, 0x9f, 0xda, 0x24, 0xea, 0x24, 0x04, 0xb3, 0x56, 0xd0, 0x23, 0xd0, 0x97, 0x38, - 0x0d, 0x19, 0xad, 0xc7, 0x22, 0xb4, 0xd7, 0x9c, 0x46, 0x8c, 0x59, 0xa9, 0x29, 0xbe, 0xfb, 0x0e, - 0x10, 0xdf, 0x2f, 0xc0, 0x70, 0xec, 0x35, 0x02, 0x27, 0x69, 0x47, 0xc4, 0xb8, 0x35, 0xd4, 0x3e, - 0x23, 0x26, 0x10, 0xa7, 0x71, 0xed, 0xdf, 0x19, 0x82, 0x53, 0xab, 0xb3, 0x4b, 0x32, 0xf1, 0xfb, - 0xb1, 0x05, 0xdc, 0xe5, 0xd1, 0xb8, 0x77, 0x01, 0x77, 0x5d, 0xa8, 0xfb, 0x46, 0xc0, 0x9d, 0x6f, - 0x04, 0xdc, 0xa5, 0xa3, 0x9f, 0xca, 0x45, 0x44, 0x3f, 0xe5, 0xf5, 0xa0, 0x97, 0xe8, 0xa7, 0x63, - 0x8b, 0xc0, 0xdb, 0xb7, 0x43, 0x87, 0x8a, 0xc0, 0x53, 0xe1, 0x89, 0x85, 0xc4, 0xa5, 0x74, 0x99, - 0xaa, 0xdc, 0xf0, 0x44, 0x15, 0x1a, 0xc6, 0x63, 0xae, 0x04, 0xab, 0x7f, 0xb9, 0xf8, 0x0e, 0xf4, - 0x10, 0x1a, 0x26, 0xc2, 0xbe, 0xcc, 0x70, 0xc4, 0x81, 0x22, 0xc2, 0x11, 0xf3, 0xba, 0x73, 0x60, - 0x38, 0xe2, 0x0b, 0x30, 0xec, 0xfa, 0x61, 0x40, 0x56, 0xa2, 0x30, 0x09, 0xdd, 0x50, 0xbe, 0xe4, - 0xa7, 0x1f, 0xa2, 0x31, 0x81, 0x38, 0x8d, 0xdb, 0x2d, 0x96, 0xb1, 0x76, 0xd4, 0x58, 0x46, 0xb8, - 0x4f, 0xb1, 0x8c, 0xbf, 0xa0, 0xa3, 0xee, 0x07, 0xd9, 0x8c, 0x7c, 0xb0, 0xf8, 0x19, 0xe9, 0xe9, - 0xa9, 0xbe, 0x37, 0xf8, 0x43, 0x96, 0x54, 0x31, 0x9e, 0x0d, 0x9b, 0x54, 0xf1, 0x1b, 0x62, 0x43, - 0xf2, 0xca, 0x31, 0x2c, 0xd8, 0x1b, 0xab, 0x9a, 0x8c, 0x7a, 0xdc, 0x52, 0x17, 0xe1, 0x74, 0x47, - 0x8e, 0x92, 0x15, 0xe0, 0xcb, 0x25, 0xf8, 0x91, 0x03, 0xbb, 0x80, 0x6e, 0x01, 0x24, 0x4e, 0x43, - 0x2c, 0x54, 0x71, 0x61, 0x72, 0x44, 0xc7, 0xce, 0x35, 0xd9, 0x1e, 0x4f, 0x67, 0xa3, 0xfe, 0xb2, - 0xab, 0x08, 0xf9, 0x9b, 0xf9, 0x73, 0x86, 0x7e, 0x47, 0xd6, 0x4f, 0x1c, 0xfa, 0x04, 0x33, 0x08, - 0x15, 0xff, 0x11, 0x69, 0xe8, 0x57, 0xe0, 0xd5, 0xf4, 0x61, 0x56, 0x8a, 0x05, 0x14, 0x3d, 0x07, - 0x83, 0x8e, 0xef, 0xf3, 0xa0, 0x21, 0x12, 0x8b, 0x17, 0xa2, 0x74, 0xfa, 0x41, 0x0d, 0xc2, 0x26, - 0x9e, 0xfd, 0x97, 0x25, 0x98, 0x38, 0x80, 0xa7, 0x74, 0x04, 0x8b, 0x56, 0x7a, 0x0e, 0x16, 0x15, - 0x81, 0x14, 0xfd, 0x5d, 0x02, 0x29, 0x9e, 0x83, 0xc1, 0x84, 0x38, 0x4d, 0xe1, 0x0a, 0x26, 0x2c, - 0x01, 0xfa, 0x06, 0x58, 0x83, 0xb0, 0x89, 0x47, 0xb9, 0xd8, 0x88, 0xe3, 0xba, 0x24, 0x8e, 0x65, - 0xa4, 0x84, 0xb0, 0xa6, 0x16, 0x16, 0x86, 0xc1, 0x8c, 0xd4, 0xd3, 0x29, 0x12, 0x38, 0x43, 0x32, - 0x3b, 0xe0, 0xb5, 0x1e, 0x07, 0xfc, 0x6b, 0x25, 0x78, 0x74, 0x5f, 0xe9, 0xd6, 0x73, 0x10, 0x4b, - 0x3b, 0x26, 0x51, 0x76, 0xe1, 0x5c, 0x8b, 0x49, 0x84, 0x19, 0x84, 0x8f, 0x52, 0xab, 0x65, 0xbc, - 0xb2, 0x5f, 0x74, 0x44, 0x17, 0x1f, 0xa5, 0x14, 0x09, 0x9c, 0x21, 0x79, 0xb7, 0xcb, 0xf2, 0x5b, - 0x7d, 0xf0, 0x78, 0x0f, 0x3a, 0x40, 0x81, 0x91, 0x6f, 0xe9, 0x28, 0xcd, 0xf2, 0x7d, 0x8a, 0xd2, - 0xbc, 0xbb, 0xe1, 0x7a, 0x33, 0xb8, 0xb3, 0xa7, 0x08, 0xbb, 0xaf, 0x97, 0xe0, 0x6c, 0x77, 0x85, - 0x05, 0xbd, 0x1b, 0x46, 0x23, 0xe5, 0xfa, 0x66, 0x06, 0x78, 0x9e, 0xe4, 0xf6, 0x96, 0x14, 0x08, - 0x67, 0x71, 0xd1, 0x24, 0x40, 0xcb, 0x49, 0x36, 0xe3, 0x0b, 0x3b, 0x5e, 0x9c, 0x88, 0x34, 0x4f, - 0x23, 0xfc, 0x86, 0x4f, 0x96, 0x62, 0x03, 0x83, 0x92, 0x63, 0xff, 0xe6, 0xc2, 0xab, 0x61, 0xc2, - 0x2b, 0xf1, 0xc3, 0xd6, 0x49, 0xf9, 0x28, 0x8e, 0x01, 0xc2, 0x59, 0x5c, 0x4a, 0x8e, 0xdd, 0x21, - 0xf3, 0x8e, 0xf2, 0x53, 0x18, 0x23, 0xb7, 0xa8, 0x4a, 0xb1, 0x81, 0x91, 0x0d, 0x5d, 0xad, 0x1c, - 0x1c, 0xba, 0x6a, 0xff, 0x8b, 0x12, 0x9c, 0xe9, 0xaa, 0xf0, 0xf6, 0xc6, 0xa6, 0x1e, 0xbc, 0x70, - 0xd3, 0xbb, 0xdc, 0x61, 0x87, 0x0b, 0x53, 0xfc, 0x93, 0x2e, 0x2b, 0x4d, 0x84, 0x29, 0xde, 0x7d, - 0xf6, 0x85, 0x07, 0x6f, 0x3c, 0x3b, 0x22, 0x13, 0xfb, 0x0e, 0x11, 0x99, 0x98, 0x99, 0x8c, 0x4a, - 0x8f, 0xd2, 0xe1, 0xcf, 0xfa, 0xba, 0x0e, 0x2f, 0x3d, 0x20, 0xf7, 0x64, 0xcd, 0x9e, 0x83, 0x13, - 0x5e, 0xc0, 0x1e, 0x48, 0x5b, 0x6d, 0xaf, 0x8b, 0xcc, 0x3f, 0x3c, 0xbd, 0xa5, 0x0a, 0x7f, 0x58, - 0xc8, 0xc0, 0x71, 0x47, 0x8d, 0x07, 0x30, 0x52, 0xf4, 0xee, 0x86, 0xf4, 0x90, 0x9c, 0x7b, 0x19, - 0x4e, 0xcb, 0xa1, 0xd8, 0x74, 0x22, 0x52, 0x17, 0xc2, 0x36, 0x16, 0x01, 0x2f, 0x67, 0x78, 0xd0, - 0x4c, 0x0e, 0x02, 0xce, 0xaf, 0xc7, 0xde, 0xa4, 0x0a, 0x5b, 0x9e, 0x2b, 0x8e, 0x82, 0xfa, 0x4d, - 0x2a, 0x5a, 0x88, 0x39, 0x4c, 0xcb, 0x8b, 0xda, 0xbd, 0x91, 0x17, 0x1f, 0x84, 0x9a, 0x1a, 0x6f, - 0xee, 0xbb, 0xaf, 0x16, 0x79, 0x87, 0xef, 0xbe, 0x5a, 0xe1, 0x06, 0xd6, 0x41, 0x8f, 0xa6, 0xbe, - 0x03, 0x86, 0x94, 0xf5, 0xab, 0xd7, 0x97, 0xc1, 0xec, 0x3f, 0xef, 0x87, 0xe1, 0x54, 0xb6, 0xcf, - 0x94, 0xd9, 0xdb, 0x3a, 0xd0, 0xec, 0xcd, 0xc2, 0x36, 0xda, 0x81, 0x7c, 0x36, 0xd0, 0x08, 0xdb, - 0x68, 0x07, 0x04, 0x73, 0x18, 0x3d, 0x74, 0xd4, 0xa3, 0x5d, 0xdc, 0x0e, 0x84, 0x1f, 0xaa, 0x3a, - 0x74, 0xcc, 0xb1, 0x52, 0x2c, 0xa0, 0xe8, 0x63, 0x16, 0x0c, 0xc5, 0xec, 0x4e, 0x85, 0x5f, 0x1a, - 0x88, 0x45, 0x7e, 0xf9, 0xe8, 0xc9, 0x4c, 0x55, 0x66, 0x5b, 0xe6, 0xb7, 0x64, 0x96, 0xe0, 0x14, - 0x45, 0xf4, 0x49, 0x0b, 0x6a, 0xea, 0x75, 0x23, 0xf1, 0x06, 0xe8, 0x6a, 0xb1, 0xc9, 0x54, 0xb9, - 0xb5, 0x59, 0x5d, 0x4f, 0xa9, 0xac, 0x96, 0x58, 0x13, 0x46, 0xb1, 0xb2, 0xe8, 0x0f, 0x1c, 0x8f, - 0x45, 0x1f, 0x72, 0xac, 0xf9, 0x6f, 0x87, 0x5a, 0xd3, 0x09, 0xbc, 0x0d, 0x12, 0x27, 0xdc, 0xc8, - 0x2e, 0x73, 0x3c, 0xcb, 0x42, 0xac, 0xe1, 0x54, 0x01, 0x88, 0xd9, 0x87, 0x25, 0x86, 0x55, 0x9c, - 0x29, 0x00, 0xab, 0xba, 0x18, 0x9b, 0x38, 0xa6, 0x09, 0x1f, 0xee, 0xab, 0x09, 0x7f, 0xf0, 0x00, - 0x13, 0xfe, 0x2a, 0x9c, 0x76, 0xda, 0x49, 0x78, 0x89, 0x38, 0xfe, 0x34, 0x7f, 0xd0, 0x57, 0x3c, - 0x50, 0x3f, 0xc4, 0xcc, 0x42, 0xca, 0xd3, 0x62, 0x95, 0xf8, 0x1b, 0x1d, 0x48, 0x38, 0xbf, 0xae, - 0xfd, 0x4f, 0x2d, 0x38, 0x9d, 0xbb, 0x14, 0x1e, 0x5c, 0x1f, 0x57, 0xfb, 0x4b, 0x15, 0x38, 0x99, - 0x93, 0x0b, 0x18, 0xed, 0x9a, 0x9b, 0xc4, 0x2a, 0xc2, 0x5d, 0x24, 0xed, 0xfd, 0x20, 0xe7, 0x26, - 0x67, 0x67, 0x1c, 0xee, 0x56, 0x4e, 0xdf, 0x8c, 0x95, 0xef, 0xed, 0xcd, 0x98, 0xb1, 0xd6, 0xfb, - 0xee, 0xeb, 0x5a, 0xaf, 0x1c, 0xb0, 0xd6, 0xbf, 0x61, 0xc1, 0x78, 0xb3, 0xcb, 0x03, 0x14, 0xc2, - 0xc6, 0x7c, 0xfd, 0x78, 0x9e, 0xb7, 0x98, 0x79, 0xe4, 0xf6, 0xde, 0x44, 0xd7, 0x77, 0x3f, 0x70, - 0xd7, 0x5e, 0xd9, 0xdf, 0x2b, 0x03, 0x4b, 0x44, 0xcd, 0xf2, 0x3d, 0xee, 0xa2, 0x8f, 0x9a, 0x29, - 0xc5, 0xad, 0xa2, 0xd2, 0x5f, 0xf3, 0xc6, 0x55, 0x4a, 0x72, 0x3e, 0x82, 0x79, 0x19, 0xca, 0xb3, - 0x9c, 0xb0, 0xd4, 0x03, 0x27, 0xf4, 0x65, 0xee, 0xf6, 0x72, 0xf1, 0xb9, 0xdb, 0x6b, 0xd9, 0xbc, - 0xed, 0xfb, 0x4f, 0x71, 0xdf, 0x03, 0x39, 0xc5, 0xbf, 0x62, 0x71, 0xc6, 0x93, 0x99, 0x05, 0xad, - 0x6e, 0x58, 0xfb, 0xa8, 0x1b, 0x4f, 0x41, 0x35, 0x16, 0x9c, 0x59, 0xa8, 0x25, 0xda, 0x55, 0x41, - 0x94, 0x63, 0x85, 0xc1, 0x1e, 0x77, 0xf6, 0xfd, 0xf0, 0xd6, 0x85, 0x66, 0x2b, 0xd9, 0x15, 0x0a, - 0x8a, 0x7e, 0xdc, 0x59, 0x41, 0xb0, 0x81, 0x65, 0xff, 0xbd, 0x12, 0x5f, 0x81, 0xc2, 0xdf, 0xe5, - 0xf9, 0xcc, 0x73, 0x9c, 0xbd, 0xbb, 0x8a, 0x7c, 0x18, 0xc0, 0x0d, 0x9b, 0x2d, 0xaa, 0xbc, 0xae, - 0x85, 0xe2, 0xfa, 0xef, 0xd2, 0x91, 0x1f, 0xff, 0x17, 0xed, 0xe9, 0xcf, 0xd0, 0x65, 0xd8, 0xa0, - 0x97, 0xe2, 0xa5, 0xe5, 0x03, 0x79, 0x69, 0x8a, 0xad, 0xf4, 0xed, 0xcf, 0x56, 0xec, 0xbf, 0xb4, - 0x20, 0xa5, 0x66, 0xa1, 0x16, 0x54, 0x68, 0x77, 0x77, 0xc5, 0x0e, 0x5d, 0x2e, 0x4e, 0xa7, 0xa3, - 0xac, 0x51, 0x2c, 0x7b, 0xf6, 0x13, 0x73, 0x42, 0xc8, 0x17, 0x6e, 0x31, 0x7c, 0x54, 0xaf, 0x16, - 0x47, 0xf0, 0x52, 0x18, 0x6e, 0xf1, 0x3b, 0x6c, 0xed, 0x62, 0x63, 0x3f, 0x0f, 0x63, 0x1d, 0x9d, - 0x62, 0x2f, 0xef, 0x85, 0x54, 0xfa, 0x64, 0x96, 0x2b, 0x8b, 0x12, 0xc6, 0x1c, 0x66, 0x7f, 0xdd, - 0x82, 0x13, 0xd9, 0xe6, 0xd1, 0x1b, 0x16, 0x8c, 0xc5, 0xd9, 0xf6, 0x8e, 0x6b, 0xec, 0x94, 0x6b, - 0x6b, 0x07, 0x08, 0x77, 0x76, 0xc2, 0xfe, 0xbf, 0x62, 0xf1, 0xdf, 0xf0, 0x82, 0x7a, 0x78, 0x4b, - 0x29, 0x26, 0x56, 0x57, 0xc5, 0x84, 0xee, 0x47, 0x77, 0x93, 0xd4, 0xdb, 0x7e, 0x47, 0xcc, 0xf1, - 0xaa, 0x28, 0xc7, 0x0a, 0x83, 0x85, 0x58, 0xb6, 0xc5, 0xe3, 0x0e, 0x99, 0x45, 0x39, 0x27, 0xca, - 0xb1, 0xc2, 0x40, 0xcf, 0xc2, 0x90, 0xf1, 0x91, 0x72, 0x5d, 0x32, 0x2d, 0xdf, 0x10, 0x99, 0x31, - 0x4e, 0x61, 0xa1, 0x49, 0x00, 0xa5, 0xe4, 0x48, 0x11, 0xc9, 0xac, 0x5d, 0x8a, 0x13, 0xc5, 0xd8, - 0xc0, 0x60, 0x01, 0xcd, 0x7e, 0x3b, 0x66, 0xd7, 0x39, 0xfd, 0x3a, 0xe1, 0xf0, 0xac, 0x28, 0xc3, - 0x0a, 0x4a, 0xb9, 0x49, 0xd3, 0x09, 0xda, 0x8e, 0x4f, 0x47, 0x48, 0x9c, 0x5f, 0xd5, 0x36, 0x5c, - 0x52, 0x10, 0x6c, 0x60, 0xd1, 0x2f, 0x4e, 0xbc, 0x26, 0x79, 0x29, 0x0c, 0xa4, 0x4b, 0xa2, 0xbe, - 0xe1, 0x13, 0xe5, 0x58, 0x61, 0xd8, 0x7f, 0x61, 0xc1, 0xa8, 0xce, 0xa4, 0xc0, 0xdf, 0xd8, 0x37, - 0x8f, 0xdb, 0xd6, 0x81, 0xc7, 0xed, 0x74, 0xdc, 0x78, 0xa9, 0xa7, 0xb8, 0x71, 0x33, 0xa4, 0xbb, - 0xbc, 0x6f, 0x48, 0xf7, 0x8f, 0xe9, 0xf7, 0x9b, 0x79, 0xec, 0xf7, 0x60, 0xde, 0xdb, 0xcd, 0xc8, - 0x86, 0x7e, 0xd7, 0x51, 0x19, 0x87, 0x86, 0xf8, 0x81, 0x64, 0x76, 0x9a, 0x21, 0x09, 0x88, 0xbd, - 0x0c, 0x35, 0x75, 0xd1, 0x25, 0x4f, 0xbf, 0x56, 0xfe, 0xe9, 0xb7, 0xa7, 0xd0, 0xd2, 0x99, 0xf5, - 0x6f, 0x7e, 0xff, 0xb1, 0xb7, 0xfc, 0xd1, 0xf7, 0x1f, 0x7b, 0xcb, 0x77, 0xbf, 0xff, 0xd8, 0x5b, - 0x3e, 0x76, 0xfb, 0x31, 0xeb, 0x9b, 0xb7, 0x1f, 0xb3, 0xfe, 0xe8, 0xf6, 0x63, 0xd6, 0x77, 0x6f, - 0x3f, 0x66, 0x7d, 0xef, 0xf6, 0x63, 0xd6, 0x17, 0xfe, 0xeb, 0x63, 0x6f, 0x79, 0x29, 0xd7, 0x27, - 0x95, 0xfe, 0x78, 0xda, 0xad, 0x4f, 0x6d, 0x9f, 0x67, 0x6e, 0x91, 0x74, 0x7b, 0x4d, 0x19, 0x6b, - 0x6a, 0x4a, 0x6e, 0xaf, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0x45, 0x1c, 0x89, 0x97, 0xf1, 0xeb, - 0x00, 0x00, + 0x28, 0x6c, 0x57, 0xc3, 0xba, 0xe1, 0x2e, 0x4e, 0xff, 0xc5, 0x98, 0xd3, 0xb1, 0x3f, 0xd9, 0x0f, + 0x29, 0x75, 0x92, 0xcf, 0xfb, 0x8f, 0xc3, 0x40, 0x44, 0x5a, 0xe1, 0x35, 0xbc, 0x28, 0x64, 0x99, + 0x8e, 0x28, 0xe1, 0xc5, 0x58, 0xc2, 0xa9, 0xcc, 0x6b, 0x39, 0xc9, 0xa6, 0x10, 0x66, 0x4a, 0xe6, + 0xad, 0x38, 0xc9, 0x26, 0x66, 0x10, 0xf4, 0x1e, 0x18, 0x49, 0x52, 0x57, 0xe1, 0xe2, 0xca, 0xf7, + 0x21, 0x81, 0x3b, 0x92, 0xbe, 0x28, 0xc7, 0x19, 0x6c, 0xf4, 0x2a, 0xf4, 0x6d, 0x12, 0xbf, 0x29, + 0xa6, 0x7e, 0xb5, 0x38, 0x59, 0xc3, 0xbe, 0xf5, 0x12, 0xf1, 0x9b, 0x9c, 0x13, 0xd2, 0x5f, 0x98, + 0x91, 0xa2, 0xeb, 0xbe, 0xb6, 0xd5, 0x8e, 0x93, 0xb0, 0xe9, 0xbd, 0x26, 0x2d, 0x9d, 0xef, 0x2b, + 0x98, 0xf0, 0x15, 0xd9, 0x3e, 0x37, 0x29, 0xa9, 0xbf, 0x58, 0x53, 0x66, 0xfd, 0xa8, 0x7b, 0x11, + 0x5b, 0x32, 0xbb, 0xc2, 0x60, 0x59, 0x74, 0x3f, 0xe6, 0x64, 0xfb, 0xbc, 0x1f, 0xea, 0x2f, 0xd6, + 0x94, 0xd1, 0xae, 0xda, 0x7f, 0x83, 0xac, 0x0f, 0xd7, 0x0a, 0xee, 0x03, 0xdf, 0x7b, 0xb9, 0xfb, + 0xf0, 0x71, 0xa8, 0xb8, 0x9b, 0x4e, 0x94, 0x8c, 0x0f, 0xb1, 0x45, 0xa3, 0x56, 0xf1, 0x2c, 0x2d, + 0xc4, 0x1c, 0x86, 0x1e, 0x85, 0x72, 0x44, 0x36, 0x98, 0x77, 0xb2, 0xe1, 0x17, 0x85, 0xc9, 0x06, + 0xa6, 0xe5, 0x4a, 0x2f, 0x1b, 0xe9, 0xea, 0x30, 0xf7, 0xab, 0xa5, 0xb4, 0x62, 0x97, 0x1e, 0x19, + 0xbe, 0x1f, 0xdc, 0x76, 0x14, 0x4b, 0x03, 0x99, 0xb1, 0x1f, 0x58, 0x31, 0x96, 0x70, 0xf4, 0x71, + 0x0b, 0x06, 0x6e, 0xc6, 0x61, 0x10, 0x90, 0x44, 0x08, 0xd1, 0xeb, 0x05, 0x0f, 0xd6, 0x65, 0xde, + 0xba, 0xee, 0x83, 0x28, 0xc0, 0x92, 0x2e, 0xed, 0x2e, 0xd9, 0x71, 0xfd, 0x76, 0xbd, 0xc3, 0x19, + 0xe6, 0x02, 0x2f, 0xc6, 0x12, 0x4e, 0x51, 0xbd, 0x80, 0xa3, 0xf6, 0xa5, 0x51, 0x17, 0x02, 0x81, + 0x2a, 0xe0, 0xf6, 0xf7, 0x07, 0xe0, 0x74, 0xee, 0xf6, 0xa1, 0x2a, 0x17, 0x53, 0x6a, 0x2e, 0x7a, + 0x3e, 0x91, 0x6e, 0x60, 0x4c, 0xe5, 0xba, 0xae, 0x4a, 0xb1, 0x81, 0x81, 0x7e, 0x0e, 0xa0, 0xe5, + 0x44, 0x4e, 0x93, 0x28, 0x03, 0xf6, 0x91, 0x35, 0x1b, 0xda, 0x8f, 0x15, 0xd9, 0xa6, 0x3e, 0xc4, + 0xab, 0xa2, 0x18, 0x1b, 0x24, 0xd1, 0x73, 0x30, 0x18, 0x11, 0x9f, 0x38, 0x31, 0x73, 0x7f, 0xcf, + 0xc6, 0xf2, 0x60, 0x0d, 0xc2, 0x26, 0x1e, 0x7a, 0x42, 0x79, 0xcc, 0x65, 0x3c, 0x87, 0xd2, 0x5e, + 0x73, 0xe8, 0x75, 0x0b, 0x46, 0x36, 0x3c, 0x9f, 0x68, 0xea, 0x22, 0xf2, 0x66, 0xf9, 0xe8, 0x1f, + 0x79, 0xd1, 0x6c, 0x57, 0xf3, 0xd0, 0x54, 0x71, 0x8c, 0x33, 0xe4, 0xe9, 0x34, 0x6f, 0x93, 0x88, + 0x31, 0xdf, 0xfe, 0xf4, 0x34, 0x5f, 0xe7, 0xc5, 0x58, 0xc2, 0xd1, 0x34, 0x8c, 0xb6, 0x9c, 0x38, + 0x9e, 0x8d, 0x48, 0x9d, 0x04, 0x89, 0xe7, 0xf8, 0x3c, 0x2e, 0xa6, 0xaa, 0xdd, 0xc9, 0x57, 0xd2, + 0x60, 0x9c, 0xc5, 0x47, 0xef, 0x87, 0x87, 0xb9, 0x85, 0x68, 0xc9, 0x8b, 0x63, 0x2f, 0x68, 0xe8, + 0x65, 0x20, 0x0c, 0x65, 0x13, 0xa2, 0xa9, 0x87, 0x17, 0xf2, 0xd1, 0x70, 0xb7, 0xfa, 0xe8, 0x29, + 0xa8, 0xc6, 0x5b, 0x5e, 0x6b, 0x36, 0xaa, 0xc7, 0xec, 0x76, 0xa8, 0xaa, 0xcd, 0xb2, 0xab, 0xa2, + 0x1c, 0x2b, 0x0c, 0xe4, 0xc2, 0x10, 0x9f, 0x12, 0xee, 0xf2, 0x27, 0x38, 0xe8, 0xd3, 0x5d, 0x05, + 0xb9, 0x08, 0xf3, 0x9c, 0xc4, 0xce, 0xad, 0x0b, 0xf2, 0xae, 0x8a, 0x5f, 0xad, 0x5c, 0x37, 0x9a, + 0xc1, 0xa9, 0x46, 0xd3, 0x67, 0xba, 0xc1, 0x1e, 0xce, 0x74, 0xcf, 0xc1, 0xe0, 0x56, 0x7b, 0x9d, + 0x88, 0x91, 0x17, 0x8c, 0x4d, 0xad, 0xbe, 0x2b, 0x1a, 0x84, 0x4d, 0x3c, 0xe6, 0x6d, 0xd9, 0xf2, + 0xc4, 0xbf, 0x78, 0x7c, 0xd8, 0xf0, 0xb6, 0x5c, 0x59, 0x90, 0xc5, 0xd8, 0xc4, 0xa1, 0x5d, 0xa3, + 0x63, 0xb1, 0x46, 0x62, 0x16, 0x4c, 0x41, 0x87, 0x4b, 0x75, 0x6d, 0x55, 0x02, 0xb0, 0xc6, 0xb1, + 0x7f, 0xb9, 0x94, 0xb6, 0x73, 0x98, 0x0c, 0x07, 0xc5, 0x94, 0xad, 0x24, 0xd7, 0x9d, 0x48, 0xaa, + 0x27, 0x47, 0x0c, 0x45, 0x12, 0xed, 0x5e, 0x77, 0x22, 0x93, 0x41, 0x31, 0x02, 0x58, 0x52, 0x42, + 0x37, 0xa1, 0x2f, 0xf1, 0x9d, 0x82, 0x62, 0x17, 0x0d, 0x8a, 0xda, 0xec, 0xb4, 0x38, 0x1d, 0x63, + 0x46, 0x03, 0x3d, 0x42, 0xcf, 0x5a, 0xeb, 0xf2, 0x5e, 0x4c, 0x1c, 0x8f, 0xd6, 0x63, 0xcc, 0x4a, + 0xed, 0x3f, 0x1b, 0xcc, 0x91, 0x11, 0x4a, 0x6c, 0xa3, 0xf3, 0x00, 0x74, 0x8a, 0x57, 0x22, 0xb2, + 0xe1, 0xed, 0x08, 0xb5, 0x49, 0xf1, 0xa1, 0xab, 0x0a, 0x82, 0x0d, 0x2c, 0x59, 0x67, 0xb5, 0xbd, + 0x41, 0xeb, 0x94, 0x3a, 0xeb, 0x70, 0x08, 0x36, 0xb0, 0xd0, 0xb3, 0xd0, 0xef, 0x35, 0x9d, 0x86, + 0x72, 0xdb, 0x7d, 0x84, 0x32, 0xa0, 0x05, 0x56, 0x72, 0x67, 0x6f, 0x62, 0x44, 0x75, 0x88, 0x15, + 0x61, 0x81, 0x8b, 0x7e, 0xdd, 0x82, 0x21, 0x37, 0x6c, 0x36, 0xc3, 0x80, 0x1f, 0x76, 0xc5, 0xc9, + 0xfd, 0xe6, 0x71, 0x29, 0x35, 0x93, 0xb3, 0x06, 0x31, 0x7e, 0x74, 0x57, 0x41, 0x96, 0x26, 0x08, + 0xa7, 0x7a, 0x65, 0xf2, 0xa9, 0xca, 0x01, 0x7c, 0xea, 0x37, 0x2c, 0x18, 0xe3, 0x75, 0x8d, 0x33, + 0xb8, 0x88, 0x27, 0x0c, 0x8f, 0xf9, 0xb3, 0x3a, 0xcc, 0x12, 0xca, 0x34, 0xdb, 0x01, 0xc7, 0x9d, + 0x9d, 0x44, 0xf3, 0x30, 0xb6, 0x11, 0x46, 0x2e, 0x31, 0x07, 0x42, 0x30, 0x59, 0xd5, 0xd0, 0xc5, + 0x2c, 0x02, 0xee, 0xac, 0x83, 0xae, 0xc3, 0x43, 0x46, 0xa1, 0x39, 0x0e, 0x9c, 0xcf, 0x3e, 0x26, + 0x5a, 0x7b, 0xe8, 0x62, 0x2e, 0x16, 0xee, 0x52, 0x3b, 0xcd, 0xd2, 0x6a, 0x3d, 0xb0, 0xb4, 0x57, + 0xe0, 0x8c, 0xdb, 0x39, 0x32, 0xdb, 0x71, 0x7b, 0x3d, 0xe6, 0x5c, 0xb7, 0x3a, 0xf3, 0x23, 0xa2, + 0x81, 0x33, 0xb3, 0xdd, 0x10, 0x71, 0xf7, 0x36, 0xd0, 0x87, 0xa1, 0x1a, 0x11, 0x36, 0x2b, 0xb1, + 0x08, 0xae, 0x3b, 0xa2, 0x6d, 0x42, 0xeb, 0xdb, 0xbc, 0x59, 0x2d, 0x47, 0x44, 0x41, 0x8c, 0x15, + 0x45, 0x74, 0x0b, 0x06, 0x5a, 0x4e, 0xe2, 0x6e, 0x8a, 0x90, 0xba, 0x23, 0x5b, 0xd2, 0x15, 0x71, + 0x76, 0xf1, 0x61, 0x04, 0xe1, 0x73, 0x22, 0x58, 0x52, 0xa3, 0x9a, 0x95, 0x1b, 0x36, 0x5b, 0x61, + 0x40, 0x82, 0x44, 0xb2, 0xfc, 0x11, 0x7e, 0x3b, 0x21, 0x4b, 0xb1, 0x81, 0x81, 0x56, 0xe0, 0x14, + 0xb3, 0xd4, 0xdd, 0xf0, 0x92, 0xcd, 0xb0, 0x9d, 0xc8, 0x83, 0xa7, 0xe0, 0xfd, 0xea, 0x7e, 0x6a, + 0x31, 0x07, 0x07, 0xe7, 0xd6, 0xcc, 0x0a, 0xab, 0xd1, 0xbb, 0x13, 0x56, 0x27, 0x0e, 0x16, 0x56, + 0x67, 0xdf, 0x0b, 0x63, 0x1d, 0x4c, 0xe3, 0x50, 0xe6, 0xb8, 0x39, 0x78, 0x28, 0x7f, 0x7b, 0x1e, + 0xca, 0x28, 0xf7, 0xcf, 0x33, 0x5e, 0xd9, 0xc6, 0x01, 0xa5, 0x07, 0x03, 0xaf, 0x03, 0x65, 0x12, + 0x6c, 0x0b, 0x69, 0x75, 0xf1, 0x68, 0xab, 0xe4, 0x42, 0xb0, 0xcd, 0xb9, 0x0b, 0xb3, 0x62, 0x5d, + 0x08, 0xb6, 0x31, 0x6d, 0x1b, 0x7d, 0xd1, 0x4a, 0xa9, 0xcf, 0xdc, 0x2c, 0xfc, 0xc1, 0x63, 0x39, + 0x91, 0xf5, 0xac, 0x51, 0xdb, 0xff, 0xbe, 0x04, 0xe7, 0x0e, 0x6a, 0xa4, 0x87, 0xe1, 0x7b, 0x1c, + 0xfa, 0x63, 0xe6, 0x67, 0x21, 0xd8, 0xff, 0x20, 0xdd, 0x15, 0xdc, 0xf3, 0xe2, 0x15, 0x2c, 0x40, + 0xc8, 0x87, 0x72, 0xd3, 0x69, 0x09, 0x6b, 0xe1, 0xc2, 0x51, 0xa3, 0xd7, 0xe8, 0x7f, 0xc7, 0x5f, + 0x72, 0x5a, 0x7c, 0x79, 0x1a, 0x05, 0x98, 0x92, 0x41, 0x09, 0x54, 0x9c, 0x28, 0x72, 0xe4, 0xa5, + 0xfe, 0x95, 0x62, 0xe8, 0x4d, 0xd3, 0x26, 0xf9, 0x9d, 0x68, 0xaa, 0x08, 0x73, 0x62, 0xf6, 0x67, + 0x07, 0x52, 0xa1, 0x4e, 0xcc, 0x53, 0x23, 0x86, 0x7e, 0x61, 0x24, 0xb4, 0x8a, 0x0e, 0x1a, 0xe4, + 0xb1, 0xc4, 0xec, 0xfc, 0x2d, 0x32, 0x32, 0x08, 0x52, 0xe8, 0x33, 0x16, 0xcb, 0x7b, 0x20, 0xe3, + 0xc7, 0xc4, 0x99, 0xf6, 0x78, 0xd2, 0x30, 0x98, 0xd9, 0x14, 0x64, 0x21, 0x36, 0xa9, 0x8b, 0xfc, + 0x25, 0x4c, 0x97, 0xef, 0xcc, 0x5f, 0xc2, 0x74, 0x73, 0x09, 0x47, 0x3b, 0x39, 0x1e, 0x19, 0x05, + 0xc4, 0xce, 0xf7, 0xe0, 0x83, 0xf1, 0x55, 0x0b, 0xc6, 0xbc, 0xec, 0xd5, 0xba, 0x38, 0x01, 0xde, + 0x28, 0xc6, 0xa2, 0xd7, 0x79, 0x73, 0xaf, 0x14, 0x87, 0x0e, 0x10, 0xee, 0xec, 0x0c, 0xaa, 0x43, + 0x9f, 0x17, 0x6c, 0x84, 0x42, 0x5d, 0x9a, 0x39, 0x5a, 0xa7, 0x16, 0x82, 0x8d, 0x50, 0xef, 0x66, + 0xfa, 0x0f, 0xb3, 0xd6, 0xd1, 0x22, 0x9c, 0x92, 0xd1, 0x2e, 0x97, 0xbc, 0x38, 0x09, 0xa3, 0xdd, + 0x45, 0xaf, 0xe9, 0x25, 0x4c, 0xd5, 0x29, 0xcf, 0x8c, 0x53, 0x49, 0x84, 0x73, 0xe0, 0x38, 0xb7, + 0x16, 0x7a, 0x0d, 0x06, 0xe4, 0x75, 0x76, 0xb5, 0x88, 0xd3, 0x74, 0xe7, 0xfa, 0x57, 0x8b, 0x69, + 0x55, 0xdc, 0x67, 0x4b, 0x82, 0xf6, 0xeb, 0x83, 0xd0, 0x79, 0xeb, 0x9e, 0xbe, 0x62, 0xb7, 0xee, + 0xf5, 0x15, 0x3b, 0x3d, 0x1a, 0xc5, 0xfa, 0x76, 0xbc, 0x80, 0xb5, 0x2d, 0xa8, 0xea, 0x9b, 0xcf, + 0xdd, 0xc0, 0xc5, 0x8c, 0x06, 0x8a, 0xa0, 0x7f, 0x93, 0x38, 0x7e, 0xb2, 0x59, 0xcc, 0x25, 0xcd, + 0x25, 0xd6, 0x56, 0x36, 0x44, 0x8d, 0x97, 0x62, 0x41, 0x09, 0xed, 0xc0, 0xc0, 0x26, 0x5f, 0x00, + 0xe2, 0xb4, 0xb2, 0x74, 0xd4, 0xc1, 0x4d, 0xad, 0x2a, 0x3d, 0xdd, 0xa2, 0x00, 0x4b, 0x72, 0xcc, + 0x9d, 0xcb, 0x70, 0x38, 0xe1, 0x5b, 0xb7, 0xb8, 0xe8, 0xbc, 0xde, 0xbd, 0x4d, 0x3e, 0x04, 0x43, + 0x11, 0x71, 0xc3, 0xc0, 0xf5, 0x7c, 0x52, 0x9f, 0x96, 0x17, 0x30, 0x87, 0x09, 0xca, 0x62, 0xd6, + 0x0b, 0x6c, 0xb4, 0x81, 0x53, 0x2d, 0xa2, 0x4f, 0x5b, 0x30, 0xa2, 0x02, 0xb5, 0xe9, 0x84, 0x10, + 0x61, 0x68, 0x5f, 0x2c, 0x28, 0x2c, 0x9c, 0xb5, 0x39, 0x83, 0x6e, 0xef, 0x4d, 0x8c, 0xa4, 0xcb, + 0x70, 0x86, 0x2e, 0x7a, 0x09, 0x20, 0x5c, 0xe7, 0x3e, 0x5b, 0xd3, 0x89, 0xb0, 0xba, 0x1f, 0xe6, + 0x53, 0x47, 0x78, 0x70, 0xa7, 0x6c, 0x01, 0x1b, 0xad, 0xa1, 0x2b, 0x00, 0x7c, 0xdb, 0xac, 0xed, + 0xb6, 0xe4, 0x91, 0x46, 0x46, 0xd5, 0xc1, 0xaa, 0x82, 0xdc, 0xd9, 0x9b, 0xe8, 0xb4, 0x71, 0x32, + 0xc7, 0x14, 0xa3, 0x3a, 0xfa, 0x59, 0x18, 0x88, 0xdb, 0xcd, 0xa6, 0xa3, 0x6c, 0xf2, 0x05, 0x86, + 0x8b, 0xf2, 0x76, 0x0d, 0x56, 0xc4, 0x0b, 0xb0, 0xa4, 0x88, 0x6e, 0x52, 0xa6, 0x1a, 0x0b, 0xe3, + 0x2b, 0xdb, 0x45, 0x5c, 0x27, 0xe0, 0x96, 0xa7, 0x77, 0x4a, 0x15, 0x1f, 0xe7, 0xe0, 0xdc, 0xd9, + 0x9b, 0x78, 0x28, 0x5d, 0xbe, 0x18, 0x8a, 0x00, 0xce, 0xdc, 0x36, 0xd1, 0x65, 0x99, 0xb7, 0x89, + 0x7e, 0xb6, 0x4c, 0x27, 0xf2, 0xa4, 0xce, 0xdb, 0xc4, 0x8a, 0xbb, 0x8f, 0x99, 0x59, 0x19, 0x2d, + 0xc1, 0x49, 0x37, 0x0c, 0x92, 0x28, 0xf4, 0x7d, 0x9e, 0xb7, 0x8c, 0x9f, 0x2e, 0xb9, 0xcd, 0xfe, + 0xad, 0xa2, 0xdb, 0x27, 0x67, 0x3b, 0x51, 0x70, 0x5e, 0x3d, 0x3b, 0x48, 0xdf, 0x9f, 0x89, 0xc1, + 0x79, 0x16, 0x86, 0xc8, 0x4e, 0x42, 0xa2, 0xc0, 0xf1, 0xaf, 0xe1, 0x45, 0x69, 0x8b, 0x66, 0x7b, + 0xe0, 0x82, 0x51, 0x8e, 0x53, 0x58, 0xc8, 0x56, 0x26, 0x15, 0x23, 0x28, 0x99, 0x9b, 0x54, 0xa4, + 0x01, 0xc5, 0xfe, 0x46, 0x39, 0xa5, 0x90, 0xdd, 0x97, 0xdb, 0x3a, 0x96, 0xfd, 0x46, 0xa6, 0x09, + 0x62, 0x00, 0x71, 0xd0, 0x28, 0x92, 0xb2, 0xca, 0x7e, 0xb3, 0x6c, 0x12, 0xc2, 0x69, 0xba, 0x68, + 0x0b, 0x2a, 0x9b, 0x61, 0x9c, 0xc8, 0xe3, 0xc7, 0x11, 0x4f, 0x3a, 0x97, 0xc2, 0x38, 0x61, 0x5a, + 0x84, 0xfa, 0x6c, 0x5a, 0x12, 0x63, 0x4e, 0x83, 0x9e, 0x41, 0xe3, 0x4d, 0x27, 0xaa, 0xc7, 0xb3, + 0x2c, 0x85, 0x40, 0x1f, 0x53, 0x1f, 0x94, 0xb2, 0xb8, 0xaa, 0x41, 0xd8, 0xc4, 0xb3, 0xff, 0xdc, + 0x4a, 0x5d, 0x58, 0xdc, 0x60, 0xfe, 0xe0, 0xdb, 0x24, 0xa0, 0xdc, 0xc0, 0xf4, 0x40, 0xfb, 0xc9, + 0x4c, 0x74, 0xed, 0xdb, 0xba, 0x65, 0xf3, 0xbb, 0x45, 0x5b, 0x98, 0x64, 0x4d, 0x18, 0xce, 0x6a, + 0x1f, 0xb3, 0xd2, 0x61, 0xd2, 0xa5, 0x22, 0xce, 0x25, 0x66, 0xaa, 0x80, 0x03, 0x23, 0xae, 0xed, + 0x2f, 0x5a, 0x30, 0x30, 0xe3, 0xb8, 0x5b, 0xe1, 0xc6, 0x06, 0x7a, 0x0a, 0xaa, 0xf5, 0x76, 0x64, + 0x46, 0x6c, 0x2b, 0xcb, 0xc6, 0x9c, 0x28, 0xc7, 0x0a, 0x83, 0x2e, 0xfd, 0x0d, 0xc7, 0x95, 0x09, + 0x03, 0xca, 0x7c, 0xe9, 0x5f, 0x64, 0x25, 0x58, 0x40, 0xe8, 0xf0, 0x37, 0x9d, 0x1d, 0x59, 0x39, + 0x7b, 0x5b, 0xb2, 0xa4, 0x41, 0xd8, 0xc4, 0xb3, 0xff, 0xb5, 0x05, 0xe3, 0x33, 0x4e, 0xec, 0xb9, + 0xd3, 0xed, 0x64, 0x73, 0xc6, 0x4b, 0xd6, 0xdb, 0xee, 0x16, 0x49, 0x78, 0x62, 0x09, 0xda, 0xcb, + 0x76, 0x4c, 0x77, 0xa0, 0x3a, 0x0e, 0xaa, 0x5e, 0x5e, 0x13, 0xe5, 0x58, 0x61, 0xa0, 0xd7, 0x60, + 0xb0, 0xe5, 0xc4, 0xf1, 0xad, 0x30, 0xaa, 0x63, 0xb2, 0x51, 0x4c, 0xea, 0x99, 0x55, 0xe2, 0x46, + 0x24, 0xc1, 0x64, 0x43, 0xf8, 0x1e, 0xe8, 0xf6, 0xb1, 0x49, 0xcc, 0xfe, 0x25, 0x0b, 0x4e, 0xcd, + 0x10, 0x27, 0x22, 0x11, 0xcb, 0x54, 0xa3, 0x3e, 0x04, 0xbd, 0x0a, 0xd5, 0x84, 0x96, 0xd0, 0x1e, + 0x59, 0xc5, 0xf6, 0x88, 0x79, 0x0d, 0xac, 0x89, 0xc6, 0xb1, 0x22, 0x63, 0x7f, 0xde, 0x82, 0x33, + 0x79, 0x7d, 0x99, 0xf5, 0xc3, 0x76, 0xfd, 0x7e, 0x74, 0xe8, 0xef, 0x58, 0x30, 0xc4, 0x6e, 0x62, + 0xe7, 0x48, 0xe2, 0x78, 0x7e, 0x47, 0x96, 0x3c, 0xab, 0xc7, 0x2c, 0x79, 0xe7, 0xa0, 0x6f, 0x33, + 0x6c, 0x92, 0xac, 0x17, 0xc1, 0xa5, 0xb0, 0x49, 0x30, 0x83, 0xa0, 0x67, 0xe8, 0x22, 0xf4, 0x82, + 0xc4, 0xa1, 0xdb, 0x51, 0xda, 0xbe, 0x47, 0xf9, 0x02, 0x54, 0xc5, 0xd8, 0xc4, 0xb1, 0xff, 0x55, + 0x0d, 0x06, 0x84, 0xcb, 0x4b, 0xcf, 0x89, 0x4e, 0xa4, 0x89, 0xa2, 0xd4, 0xd5, 0x44, 0x11, 0x43, + 0xbf, 0xcb, 0xd2, 0x75, 0x0a, 0x4d, 0xf8, 0x4a, 0x21, 0x3e, 0x52, 0x3c, 0x03, 0xa8, 0xee, 0x16, + 0xff, 0x8f, 0x05, 0x29, 0xf4, 0x05, 0x0b, 0x46, 0xdd, 0x30, 0x08, 0x88, 0xab, 0xd5, 0xb4, 0xbe, + 0x22, 0x5c, 0x61, 0x66, 0xd3, 0x8d, 0xea, 0x4b, 0xbe, 0x0c, 0x00, 0x67, 0xc9, 0xa3, 0x17, 0x60, + 0x98, 0x8f, 0xd9, 0xf5, 0x94, 0xc1, 0x5e, 0x27, 0x4f, 0x33, 0x81, 0x38, 0x8d, 0x8b, 0x26, 0xf9, + 0xc5, 0x87, 0x48, 0x53, 0xd6, 0xaf, 0xed, 0x9a, 0x46, 0x82, 0x32, 0x03, 0x03, 0x45, 0x80, 0x22, + 0xb2, 0x11, 0x91, 0x78, 0x53, 0xb8, 0x04, 0x31, 0x15, 0x71, 0xe0, 0xee, 0x52, 0x14, 0xe0, 0x8e, + 0x96, 0x70, 0x4e, 0xeb, 0x68, 0x4b, 0x9c, 0x91, 0xab, 0x45, 0xf0, 0x73, 0x31, 0xcd, 0x5d, 0x8f, + 0xca, 0x13, 0x50, 0x61, 0xa2, 0x8b, 0xa9, 0xa6, 0x65, 0x1e, 0x16, 0xc7, 0x04, 0x1b, 0xe6, 0xe5, + 0x68, 0x0e, 0x4e, 0x64, 0x52, 0xbf, 0xc5, 0xc2, 0xb0, 0xae, 0x42, 0xa0, 0x32, 0x49, 0xe3, 0x62, + 0xdc, 0x51, 0xc3, 0xb4, 0x9f, 0x0c, 0x1e, 0x60, 0x3f, 0xd9, 0x55, 0x8e, 0xa7, 0xdc, 0xe4, 0xfd, + 0x62, 0x21, 0x03, 0xd0, 0x93, 0x97, 0xe9, 0xe7, 0x32, 0x5e, 0xa6, 0xc3, 0xac, 0x03, 0xd7, 0x8b, + 0xe9, 0xc0, 0xe1, 0x5d, 0x4a, 0xef, 0xa7, 0x8b, 0xe8, 0xff, 0xb2, 0x40, 0xce, 0xeb, 0xac, 0xe3, + 0x6e, 0x12, 0xba, 0x64, 0xd0, 0x7b, 0x60, 0x44, 0x59, 0x01, 0xb8, 0x4a, 0x64, 0xb1, 0x55, 0xa3, + 0xbc, 0x01, 0x70, 0x0a, 0x8a, 0x33, 0xd8, 0x68, 0x0a, 0x6a, 0x74, 0x9c, 0x78, 0x55, 0x2e, 0xf7, + 0x95, 0xa5, 0x61, 0x7a, 0x65, 0x41, 0xd4, 0xd2, 0x38, 0x28, 0x84, 0x31, 0xdf, 0x89, 0x13, 0xd6, + 0x83, 0xd5, 0xdd, 0xc0, 0xbd, 0xcb, 0x04, 0x21, 0x2c, 0xce, 0x66, 0x31, 0xdb, 0x10, 0xee, 0x6c, + 0xdb, 0xfe, 0x0f, 0x15, 0x18, 0x4e, 0x71, 0xc6, 0x43, 0x2a, 0x0c, 0x4f, 0x41, 0x55, 0xca, 0xf0, + 0x6c, 0x26, 0x24, 0x25, 0xe8, 0x15, 0x06, 0x15, 0x5a, 0xeb, 0x5a, 0xaa, 0x66, 0x15, 0x1c, 0x43, + 0xe0, 0x62, 0x13, 0x8f, 0x31, 0xe5, 0xc4, 0x8f, 0x67, 0x7d, 0x8f, 0x04, 0x09, 0xef, 0x66, 0x31, + 0x4c, 0x79, 0x6d, 0x71, 0xd5, 0x6c, 0x54, 0x33, 0xe5, 0x0c, 0x00, 0x67, 0xc9, 0xa3, 0x4f, 0x5a, + 0x30, 0xec, 0xdc, 0x8a, 0x75, 0x4e, 0x69, 0xe1, 0x4f, 0x7a, 0x44, 0x21, 0x95, 0x4a, 0x53, 0xcd, + 0xad, 0xd6, 0xa9, 0x22, 0x9c, 0x26, 0x8a, 0xde, 0xb0, 0x00, 0x91, 0x1d, 0xe2, 0x4a, 0x8f, 0x57, + 0xd1, 0x97, 0xfe, 0x22, 0x0e, 0xcb, 0x17, 0x3a, 0xda, 0xe5, 0x5c, 0xbd, 0xb3, 0x1c, 0xe7, 0xf4, + 0x01, 0x5d, 0x06, 0x54, 0xf7, 0x62, 0x67, 0xdd, 0x27, 0xb3, 0x61, 0x53, 0xc6, 0x86, 0x8a, 0xcb, + 0xd7, 0xb3, 0x62, 0x9c, 0xd1, 0x5c, 0x07, 0x06, 0xce, 0xa9, 0xc5, 0x56, 0x59, 0x14, 0xee, 0xec, + 0x5e, 0x8b, 0x7c, 0x26, 0x25, 0xcc, 0x55, 0x26, 0xca, 0xb1, 0xc2, 0xb0, 0xff, 0xa2, 0xac, 0xb6, + 0xb2, 0x76, 0xef, 0x76, 0x0c, 0x37, 0x53, 0xeb, 0xee, 0xdd, 0x4c, 0xb5, 0x13, 0x4c, 0x67, 0xc4, + 0x73, 0x2a, 0x40, 0xb2, 0x74, 0x9f, 0x02, 0x24, 0x7f, 0xde, 0x4a, 0x65, 0x1b, 0x1b, 0x3c, 0xff, + 0x52, 0xb1, 0xae, 0xe5, 0x93, 0xdc, 0x41, 0x27, 0x23, 0x57, 0x32, 0x7e, 0x59, 0x4f, 0x41, 0x75, + 0xc3, 0x77, 0x58, 0x8e, 0x0c, 0xb6, 0x51, 0x0d, 0xe7, 0xa1, 0x8b, 0xa2, 0x1c, 0x2b, 0x0c, 0xca, + 0xf5, 0x8d, 0x46, 0x0f, 0xc5, 0xb5, 0xff, 0x53, 0x19, 0x06, 0x0d, 0x89, 0x9f, 0xab, 0xbe, 0x59, + 0x0f, 0x98, 0xfa, 0x56, 0x3a, 0x84, 0xfa, 0xf6, 0x73, 0x50, 0x73, 0xa5, 0x34, 0x2a, 0x26, 0x7b, + 0x7a, 0x56, 0xc6, 0x69, 0x81, 0xa4, 0x8a, 0xb0, 0xa6, 0x89, 0xe6, 0x53, 0x41, 0x78, 0x29, 0xbb, + 0x40, 0x5e, 0x94, 0x9c, 0x90, 0x68, 0x9d, 0x75, 0xb2, 0xf7, 0xd4, 0x95, 0x83, 0xef, 0xa9, 0xed, + 0xef, 0x58, 0x6a, 0x72, 0xef, 0x41, 0xb6, 0x95, 0x9b, 0xe9, 0x6c, 0x2b, 0x17, 0x0a, 0x19, 0xe6, + 0x2e, 0x69, 0x56, 0xae, 0xc2, 0xc0, 0x6c, 0xd8, 0x6c, 0x3a, 0x41, 0x1d, 0xfd, 0x18, 0x0c, 0xb8, + 0xfc, 0xa7, 0xb0, 0xa1, 0xb1, 0x9b, 0x58, 0x01, 0xc5, 0x12, 0x86, 0x1e, 0x81, 0x3e, 0x27, 0x6a, + 0x48, 0xbb, 0x19, 0xf3, 0x98, 0x9a, 0x8e, 0x1a, 0x31, 0x66, 0xa5, 0xf6, 0x3f, 0xeb, 0x03, 0xe6, + 0xa8, 0xe0, 0x44, 0xa4, 0xbe, 0x16, 0xb2, 0xa4, 0xa7, 0xc7, 0x7a, 0x7f, 0xa9, 0x0f, 0x75, 0x0f, + 0xf2, 0x1d, 0xa6, 0x71, 0x8f, 0x55, 0xbe, 0xc7, 0xf7, 0x58, 0x5d, 0xae, 0x26, 0xfb, 0x1e, 0xa0, + 0xab, 0x49, 0xfb, 0xb3, 0x16, 0x20, 0xe5, 0xdd, 0xa2, 0x7d, 0x07, 0xa6, 0xa0, 0xa6, 0xfc, 0x5c, + 0x84, 0x02, 0xa8, 0x59, 0x84, 0x04, 0x60, 0x8d, 0xd3, 0xc3, 0x49, 0xfe, 0x71, 0xc9, 0xbf, 0xcb, + 0x69, 0xd7, 0x72, 0xc6, 0xf5, 0x05, 0x3b, 0xb7, 0x7f, 0xb7, 0x04, 0x0f, 0x71, 0xd5, 0x61, 0xc9, + 0x09, 0x9c, 0x06, 0x69, 0xd2, 0x5e, 0xf5, 0xea, 0x0d, 0xe2, 0xd2, 0x23, 0xa4, 0x27, 0x1d, 0xc1, + 0x8f, 0xba, 0x77, 0xf9, 0x9e, 0xe3, 0xbb, 0x6c, 0x21, 0xf0, 0x12, 0xcc, 0x1a, 0x47, 0x31, 0x54, + 0xe5, 0xd3, 0x22, 0x82, 0x17, 0x17, 0x44, 0x48, 0xb1, 0x25, 0x21, 0x65, 0x09, 0x56, 0x84, 0xa8, + 0x28, 0xf5, 0x43, 0x77, 0x0b, 0x93, 0x56, 0x98, 0x15, 0xa5, 0x8b, 0xa2, 0x1c, 0x2b, 0x0c, 0xbb, + 0x09, 0xa3, 0x72, 0x0c, 0x5b, 0x57, 0xc8, 0x2e, 0x26, 0x1b, 0x54, 0xfe, 0xb8, 0xb2, 0xc8, 0x78, + 0xed, 0x44, 0xc9, 0x9f, 0x59, 0x13, 0x88, 0xd3, 0xb8, 0x32, 0x0f, 0x6a, 0x29, 0x3f, 0x0f, 0xaa, + 0xfd, 0xbb, 0x16, 0x64, 0x05, 0xa0, 0x91, 0xf5, 0xd1, 0xda, 0x37, 0xeb, 0xe3, 0x21, 0xf2, 0x26, + 0xfe, 0x0c, 0x0c, 0x3a, 0x09, 0xd5, 0x70, 0xb8, 0x35, 0xa2, 0x7c, 0x77, 0x17, 0x56, 0x4b, 0x61, + 0xdd, 0xdb, 0xf0, 0x98, 0x15, 0xc2, 0x6c, 0xce, 0xfe, 0xab, 0x3e, 0x18, 0xeb, 0x88, 0xe3, 0x42, + 0xcf, 0xc3, 0x90, 0x1a, 0x0a, 0x69, 0xe7, 0xab, 0x99, 0xae, 0x95, 0x1a, 0x86, 0x53, 0x98, 0x3d, + 0xec, 0x87, 0x05, 0x38, 0x19, 0x91, 0x57, 0xdb, 0xa4, 0x4d, 0xa6, 0x37, 0x12, 0x12, 0xad, 0x12, + 0x37, 0x0c, 0xea, 0x3c, 0x37, 0x69, 0x79, 0xe6, 0xe1, 0xdb, 0x7b, 0x13, 0x27, 0x71, 0x27, 0x18, + 0xe7, 0xd5, 0x41, 0x2d, 0x18, 0xf6, 0x4d, 0x05, 0x55, 0x9c, 0x8b, 0xee, 0x4a, 0xb7, 0x55, 0x4b, + 0x22, 0x55, 0x8c, 0xd3, 0x04, 0xd2, 0x5a, 0x6e, 0xe5, 0x3e, 0x69, 0xb9, 0x9f, 0xd0, 0x5a, 0x2e, + 0xf7, 0xac, 0xf8, 0x40, 0xc1, 0x71, 0x7c, 0xbd, 0xa8, 0xb9, 0x47, 0x51, 0x5c, 0x5f, 0x84, 0xaa, + 0xf4, 0x3a, 0xeb, 0xc9, 0x5b, 0xcb, 0x6c, 0xa7, 0x0b, 0x03, 0x7d, 0x02, 0x7e, 0xf4, 0x42, 0x14, + 0x19, 0x83, 0x79, 0x35, 0x4c, 0xa6, 0x7d, 0x3f, 0xbc, 0x45, 0x75, 0x82, 0x6b, 0x31, 0x11, 0x86, + 0x27, 0xfb, 0x4e, 0x09, 0x72, 0xce, 0x70, 0x74, 0x3f, 0x6a, 0x45, 0x24, 0xb5, 0x1f, 0x0f, 0xa7, + 0x8c, 0xa0, 0x1d, 0xee, 0x99, 0xc7, 0x45, 0xee, 0xfb, 0x8b, 0x3e, 0x83, 0x6a, 0x67, 0x3d, 0xc5, + 0x8e, 0x94, 0xc3, 0xde, 0x79, 0x00, 0xad, 0x3f, 0x8a, 0xd0, 0x11, 0x75, 0xf1, 0xaf, 0xd5, 0x4c, + 0x6c, 0x60, 0xa1, 0xe7, 0x60, 0xd0, 0x0b, 0xe2, 0xc4, 0xf1, 0xfd, 0x4b, 0x5e, 0x90, 0x08, 0xdb, + 0xaa, 0xd2, 0x2d, 0x16, 0x34, 0x08, 0x9b, 0x78, 0x67, 0xdf, 0x69, 0xcc, 0xdf, 0x61, 0xe6, 0x7d, + 0x13, 0xce, 0xcc, 0x7b, 0x89, 0x0a, 0x78, 0x52, 0xeb, 0x8d, 0xaa, 0x87, 0x2a, 0xc4, 0xcf, 0xea, + 0x1a, 0xe2, 0x67, 0x04, 0x1c, 0x95, 0xd2, 0xf1, 0x51, 0xd9, 0x80, 0x23, 0xfb, 0x79, 0x38, 0x35, + 0xef, 0x25, 0x17, 0x3d, 0x9f, 0x1c, 0x92, 0x88, 0xfd, 0x3b, 0xfd, 0x30, 0x64, 0x06, 0xf7, 0x1e, + 0x26, 0x4a, 0xf1, 0xf3, 0x54, 0x03, 0x14, 0x5f, 0xe7, 0xa9, 0x6b, 0xd3, 0x1b, 0x47, 0x8e, 0x34, + 0xce, 0x1f, 0x31, 0x43, 0x09, 0xd4, 0x34, 0xb1, 0xd9, 0x01, 0x74, 0x0b, 0x2a, 0x1b, 0x2c, 0x20, + 0xa6, 0x5c, 0x84, 0x6f, 0x49, 0xde, 0x88, 0xea, 0xed, 0xc8, 0x43, 0x6a, 0x38, 0x3d, 0x2a, 0xb8, + 0xa3, 0x74, 0x1c, 0xa6, 0xe1, 0xf8, 0x2c, 0x22, 0x30, 0x15, 0x46, 0x37, 0x91, 0x50, 0xb9, 0x0b, + 0x91, 0x90, 0x62, 0xd0, 0xfd, 0xf7, 0x89, 0x41, 0xb3, 0xe0, 0xa6, 0x64, 0x93, 0xa9, 0x95, 0x22, + 0x52, 0x63, 0x80, 0x0d, 0x82, 0x11, 0xdc, 0x94, 0x02, 0xe3, 0x2c, 0x3e, 0xfa, 0xa8, 0x62, 0xf1, + 0xd5, 0x22, 0xcc, 0xd2, 0xe6, 0x8a, 0x3e, 0x6e, 0xee, 0xfe, 0xd9, 0x12, 0x8c, 0xcc, 0x07, 0xed, + 0x95, 0xf9, 0x95, 0xf6, 0xba, 0xef, 0xb9, 0x57, 0xc8, 0x2e, 0x65, 0xe1, 0x5b, 0x64, 0x77, 0x61, + 0x4e, 0xec, 0x20, 0xb5, 0x66, 0xae, 0xd0, 0x42, 0xcc, 0x61, 0x94, 0x19, 0x6d, 0x78, 0x41, 0x83, + 0x44, 0xad, 0xc8, 0x13, 0x16, 0x63, 0x83, 0x19, 0x5d, 0xd4, 0x20, 0x6c, 0xe2, 0xd1, 0xb6, 0xc3, + 0x5b, 0x01, 0x89, 0xb2, 0xfa, 0xf5, 0x32, 0x2d, 0xc4, 0x1c, 0x46, 0x91, 0x92, 0xa8, 0x2d, 0x0c, + 0x32, 0x06, 0xd2, 0x1a, 0x2d, 0xc4, 0x1c, 0x46, 0x77, 0x7a, 0xdc, 0x5e, 0x67, 0xae, 0x3b, 0x99, + 0xb0, 0x90, 0x55, 0x5e, 0x8c, 0x25, 0x9c, 0xa2, 0x6e, 0x91, 0xdd, 0x39, 0x7a, 0x18, 0xcf, 0x44, + 0xba, 0x5d, 0xe1, 0xc5, 0x58, 0xc2, 0x59, 0xf6, 0xd4, 0xf4, 0x70, 0xfc, 0xc0, 0x65, 0x4f, 0x4d, + 0x77, 0xbf, 0xcb, 0xb1, 0xfe, 0xd7, 0x2c, 0x18, 0x32, 0x1d, 0xee, 0x50, 0x23, 0xa3, 0x0b, 0x2f, + 0x77, 0x24, 0xdf, 0x7e, 0x77, 0xde, 0xc3, 0x94, 0x0d, 0x2f, 0x09, 0x5b, 0xf1, 0xd3, 0x24, 0x68, + 0x78, 0x01, 0x61, 0x0e, 0x11, 0xdc, 0x51, 0x2f, 0xe5, 0xcd, 0x37, 0x1b, 0xd6, 0xc9, 0x5d, 0x28, + 0xd3, 0xf6, 0x0d, 0x18, 0xeb, 0x08, 0x6f, 0xec, 0x41, 0x05, 0x39, 0x30, 0xfc, 0xdc, 0xc6, 0x30, + 0x48, 0x1b, 0x96, 0x19, 0xbc, 0x66, 0x61, 0x8c, 0x6f, 0x24, 0x4a, 0x69, 0xd5, 0xdd, 0x24, 0x4d, + 0x15, 0xb2, 0xca, 0xae, 0x27, 0xae, 0x67, 0x81, 0xb8, 0x13, 0xdf, 0xfe, 0x9c, 0x05, 0xc3, 0xa9, + 0x88, 0xd3, 0x82, 0x94, 0x25, 0xb6, 0xd3, 0x42, 0xe6, 0xff, 0xc9, 0x9c, 0xe0, 0xcb, 0x4c, 0x98, + 0xea, 0x9d, 0xa6, 0x41, 0xd8, 0xc4, 0xb3, 0xbf, 0x58, 0x82, 0xaa, 0xf4, 0xa1, 0xe9, 0xa1, 0x2b, + 0x9f, 0xb1, 0x60, 0x58, 0x5d, 0x09, 0x31, 0x1b, 0x5e, 0xa9, 0x88, 0x90, 0x1a, 0xda, 0x03, 0x65, + 0x05, 0x08, 0x36, 0x42, 0xad, 0xb9, 0x63, 0x93, 0x18, 0x4e, 0xd3, 0x46, 0xd7, 0x01, 0xe2, 0xdd, + 0x38, 0x21, 0x4d, 0xc3, 0x9a, 0x68, 0x1b, 0x3b, 0x6e, 0xd2, 0x0d, 0x23, 0x42, 0xf7, 0xd7, 0xd5, + 0xb0, 0x4e, 0x56, 0x15, 0xa6, 0x56, 0xa1, 0x74, 0x19, 0x36, 0x5a, 0xb2, 0xff, 0x49, 0x09, 0x4e, + 0x64, 0xbb, 0x84, 0x3e, 0x00, 0x43, 0x92, 0xba, 0x71, 0xea, 0x94, 0x1e, 0x40, 0x43, 0xd8, 0x80, + 0xdd, 0xd9, 0x9b, 0x98, 0xe8, 0x7c, 0xe4, 0x74, 0xd2, 0x44, 0xc1, 0xa9, 0xc6, 0xf8, 0xbd, 0x9c, + 0xb8, 0x40, 0x9e, 0xd9, 0x9d, 0x6e, 0xb5, 0xc4, 0xe5, 0x9a, 0x71, 0x2f, 0x67, 0x42, 0x71, 0x06, + 0x1b, 0xad, 0xc0, 0x29, 0xa3, 0xe4, 0x2a, 0xf1, 0x1a, 0x9b, 0xeb, 0x61, 0x24, 0x4f, 0x60, 0x8f, + 0x68, 0xd7, 0xbe, 0x4e, 0x1c, 0x9c, 0x5b, 0x93, 0x4a, 0x7b, 0xd7, 0x69, 0x39, 0xae, 0x97, 0xec, + 0x0a, 0xf3, 0xa8, 0xe2, 0x4d, 0xb3, 0xa2, 0x1c, 0x2b, 0x0c, 0x7b, 0x09, 0xfa, 0x7a, 0x5c, 0x41, + 0x3d, 0x69, 0xfe, 0x2f, 0x42, 0x95, 0x36, 0x27, 0xd5, 0xbb, 0x22, 0x9a, 0x0c, 0xa1, 0x2a, 0x9f, + 0x8c, 0x42, 0x36, 0x94, 0x3d, 0x47, 0x5e, 0x7d, 0xaa, 0xcf, 0x5a, 0x88, 0xe3, 0x36, 0x3b, 0x4c, + 0x53, 0x20, 0x7a, 0x1c, 0xca, 0x64, 0xa7, 0x95, 0xbd, 0xe3, 0xbc, 0xb0, 0xd3, 0xf2, 0x22, 0x12, + 0x53, 0x24, 0xb2, 0xd3, 0x42, 0x67, 0xa1, 0xe4, 0xd5, 0x85, 0x90, 0x02, 0x81, 0x53, 0x5a, 0x98, + 0xc3, 0x25, 0xaf, 0x6e, 0xef, 0x40, 0x4d, 0xbd, 0x51, 0x85, 0xb6, 0x24, 0xef, 0xb6, 0x8a, 0x70, + 0x7a, 0x93, 0xed, 0x76, 0xe1, 0xda, 0x6d, 0x00, 0x1d, 0xae, 0x5a, 0x14, 0x7f, 0x39, 0x07, 0x7d, + 0x6e, 0x28, 0xd2, 0x02, 0x54, 0x75, 0x33, 0x8c, 0x69, 0x33, 0x88, 0x7d, 0x03, 0x46, 0xae, 0x04, + 0xe1, 0x2d, 0xf6, 0x94, 0x04, 0xcb, 0x9c, 0x48, 0x1b, 0xde, 0xa0, 0x3f, 0xb2, 0x2a, 0x02, 0x83, + 0x62, 0x0e, 0x53, 0x39, 0xdd, 0x4a, 0xdd, 0x72, 0xba, 0xd9, 0x1f, 0xb3, 0x60, 0x48, 0xc5, 0xbd, + 0xcd, 0x6f, 0x6f, 0xd1, 0x76, 0x1b, 0x51, 0xd8, 0x6e, 0x65, 0xdb, 0x65, 0xcf, 0xe1, 0x61, 0x0e, + 0x33, 0x03, 0x42, 0x4b, 0x07, 0x04, 0x84, 0x9e, 0x83, 0xbe, 0x2d, 0x2f, 0xa8, 0x67, 0x9f, 0x45, + 0xba, 0xe2, 0x05, 0x75, 0xcc, 0x20, 0xb4, 0x0b, 0x27, 0x54, 0x17, 0xa4, 0x40, 0x78, 0x1e, 0x86, + 0xd6, 0xdb, 0x9e, 0x5f, 0x97, 0x29, 0x21, 0x33, 0x16, 0x95, 0x19, 0x03, 0x86, 0x53, 0x98, 0xf4, + 0x5c, 0xb7, 0xee, 0x05, 0x4e, 0xb4, 0xbb, 0xa2, 0x25, 0x90, 0x62, 0x4a, 0x33, 0x0a, 0x82, 0x0d, + 0x2c, 0xfb, 0xf5, 0x32, 0x8c, 0xa4, 0xa3, 0xff, 0x7a, 0x38, 0x5e, 0x3d, 0x0e, 0x15, 0x16, 0x10, + 0x98, 0x9d, 0x5a, 0x9e, 0x45, 0x91, 0xc3, 0x50, 0x0c, 0xfd, 0x3c, 0x71, 0x4a, 0x31, 0x4f, 0x8a, + 0xa9, 0x4e, 0x2a, 0x3b, 0x0c, 0x73, 0x0d, 0x14, 0xb9, 0x5a, 0x04, 0x29, 0xf4, 0x49, 0x0b, 0x06, + 0xc2, 0x96, 0x99, 0x0b, 0xec, 0xfd, 0x45, 0x46, 0x46, 0x8a, 0x70, 0x29, 0xa1, 0x11, 0xab, 0xa9, + 0x97, 0xd3, 0x21, 0x49, 0x9f, 0x7d, 0x17, 0x0c, 0x99, 0x98, 0x07, 0x29, 0xc5, 0x55, 0x53, 0x29, + 0xfe, 0x8c, 0xb9, 0x28, 0x44, 0xec, 0x67, 0x0f, 0xdb, 0xed, 0x1a, 0x54, 0x5c, 0xe5, 0x3f, 0x71, + 0x57, 0x89, 0x84, 0x55, 0x26, 0x13, 0x76, 0x37, 0xc5, 0x5b, 0xb3, 0xbf, 0x63, 0x19, 0xeb, 0x03, + 0x93, 0x78, 0xa1, 0x8e, 0x22, 0x28, 0x37, 0xb6, 0xb7, 0x84, 0x2a, 0x7a, 0xb9, 0xa0, 0xe1, 0x9d, + 0xdf, 0xde, 0xd2, 0x6b, 0xdc, 0x2c, 0xc5, 0x94, 0x58, 0x0f, 0xc6, 0xc2, 0x54, 0x88, 0x70, 0xf9, + 0xe0, 0x10, 0x61, 0xfb, 0x8d, 0x12, 0x8c, 0x75, 0x2c, 0x2a, 0xf4, 0x1a, 0x54, 0x22, 0xfa, 0x95, + 0xe2, 0xf3, 0x16, 0x0b, 0x0b, 0xea, 0x8d, 0x17, 0xea, 0x5a, 0xee, 0xa6, 0xcb, 0x31, 0x27, 0x89, + 0x2e, 0x03, 0xd2, 0x5e, 0x3e, 0xca, 0x52, 0xc9, 0x3f, 0x59, 0xb9, 0x02, 0x4c, 0x77, 0x60, 0xe0, + 0x9c, 0x5a, 0xe8, 0x85, 0xac, 0xc1, 0xb3, 0x9c, 0x36, 0x67, 0xef, 0x67, 0xbb, 0xb4, 0x7f, 0xab, + 0x04, 0xc3, 0xa9, 0xd4, 0x6c, 0xc8, 0x87, 0x2a, 0xf1, 0xd9, 0x5d, 0x83, 0x14, 0x36, 0x47, 0x4d, + 0xb4, 0xae, 0x04, 0xe4, 0x05, 0xd1, 0x2e, 0x56, 0x14, 0x1e, 0x0c, 0x0f, 0x81, 0xe7, 0x61, 0x48, + 0x76, 0xe8, 0xfd, 0x4e, 0xd3, 0x17, 0x03, 0xa8, 0xd6, 0xe8, 0x05, 0x03, 0x86, 0x53, 0x98, 0xf6, + 0xef, 0x95, 0x61, 0x9c, 0x5f, 0xce, 0xd4, 0xd5, 0xca, 0x5b, 0x92, 0xe7, 0xad, 0xbf, 0xa1, 0x13, + 0x28, 0x5a, 0x45, 0xbc, 0x26, 0xda, 0x8d, 0x50, 0x4f, 0x8e, 0x6d, 0x5f, 0xc9, 0x38, 0xb6, 0x71, + 0xb5, 0xbb, 0x71, 0x4c, 0x3d, 0xfa, 0xc1, 0xf2, 0x74, 0xfb, 0x87, 0x25, 0x18, 0xcd, 0x3c, 0x1a, + 0x83, 0x5e, 0x4f, 0xe7, 0x19, 0xb7, 0x8a, 0xb0, 0xa9, 0xef, 0xfb, 0x8e, 0xc8, 0xe1, 0xb2, 0x8d, + 0xdf, 0xa7, 0xad, 0x62, 0x7f, 0xbb, 0x04, 0x23, 0xe9, 0xd7, 0x6e, 0x1e, 0xc0, 0x91, 0x7a, 0x3b, + 0xd4, 0xd8, 0x83, 0x0e, 0xec, 0x91, 0x66, 0x6e, 0x92, 0xe7, 0xb9, 0xf3, 0x65, 0x21, 0xd6, 0xf0, + 0x07, 0x22, 0x89, 0xbb, 0xfd, 0x8f, 0x2d, 0x38, 0xcd, 0xbf, 0x32, 0xbb, 0x0e, 0xff, 0x66, 0xde, + 0xe8, 0xbe, 0x5c, 0x6c, 0x07, 0x33, 0x89, 0x3f, 0x0f, 0x1a, 0x5f, 0xf6, 0xa6, 0xaa, 0xe8, 0x6d, + 0x7a, 0x29, 0x3c, 0x80, 0x9d, 0x3d, 0xd4, 0x62, 0xb0, 0xbf, 0x5d, 0x06, 0xfd, 0x8c, 0x2c, 0xf2, + 0x44, 0x94, 0x6b, 0x21, 0x09, 0x50, 0x57, 0x77, 0x03, 0x57, 0x3f, 0x58, 0x5b, 0xcd, 0x04, 0xb9, + 0xfe, 0xa2, 0x05, 0x83, 0x5e, 0xe0, 0x25, 0x9e, 0xc3, 0x8e, 0xd1, 0xc5, 0xbc, 0x05, 0xa9, 0xc8, + 0x2d, 0xf0, 0x96, 0xc3, 0xc8, 0xbc, 0xc7, 0x51, 0xc4, 0xb0, 0x49, 0x19, 0x7d, 0x48, 0xf8, 0x9e, + 0x97, 0x0b, 0x8b, 0xcf, 0xae, 0x66, 0x1c, 0xce, 0x5b, 0x54, 0xf1, 0x4a, 0xa2, 0x82, 0xd2, 0x1a, + 0x60, 0xda, 0x94, 0xca, 0xa5, 0xad, 0x54, 0x5b, 0x56, 0x8c, 0x39, 0x21, 0x3b, 0x06, 0xd4, 0x39, + 0x16, 0x87, 0xf4, 0xeb, 0x9d, 0x82, 0x9a, 0xd3, 0x4e, 0xc2, 0x26, 0x1d, 0x26, 0x71, 0xd5, 0xa4, + 0x3d, 0x97, 0x25, 0x00, 0x6b, 0x1c, 0xfb, 0xf5, 0x0a, 0x64, 0xc2, 0x4e, 0xd1, 0x8e, 0xf9, 0x04, + 0xb2, 0x55, 0xec, 0x13, 0xc8, 0xaa, 0x33, 0x79, 0xcf, 0x20, 0xa3, 0x06, 0x54, 0x5a, 0x9b, 0x4e, + 0x2c, 0xd5, 0xea, 0x17, 0xd5, 0x39, 0x8e, 0x16, 0xde, 0xd9, 0x9b, 0xf8, 0xe9, 0xde, 0xac, 0xae, + 0x74, 0xad, 0x4e, 0xf1, 0x54, 0x39, 0x9a, 0x34, 0x6b, 0x03, 0xf3, 0xf6, 0x0f, 0xf3, 0x1a, 0xe6, + 0xc7, 0xc5, 0xcb, 0x15, 0x98, 0xc4, 0x6d, 0x3f, 0x11, 0xab, 0xe1, 0xc5, 0x02, 0x77, 0x19, 0x6f, + 0x58, 0x27, 0x4c, 0xe0, 0xff, 0xb1, 0x41, 0x14, 0x7d, 0x00, 0x6a, 0x71, 0xe2, 0x44, 0xc9, 0x5d, + 0x86, 0x38, 0xeb, 0x94, 0x66, 0xb2, 0x11, 0xac, 0xdb, 0x43, 0x2f, 0xb1, 0x7c, 0xd0, 0x5e, 0xbc, + 0x79, 0x97, 0x21, 0x23, 0x32, 0x77, 0xb4, 0x68, 0x01, 0x1b, 0xad, 0xa1, 0xf3, 0x00, 0x6c, 0x6d, + 0x73, 0xff, 0xc3, 0x2a, 0xb3, 0x32, 0x29, 0x56, 0x88, 0x15, 0x04, 0x1b, 0x58, 0xf6, 0x4f, 0x40, + 0x3a, 0xe3, 0x07, 0x9a, 0x90, 0x09, 0x46, 0xb8, 0x15, 0x9a, 0x85, 0x7e, 0xa4, 0x72, 0x81, 0xfc, + 0x86, 0x05, 0x66, 0x5a, 0x12, 0xf4, 0x2a, 0xcf, 0x7f, 0x62, 0x15, 0x71, 0x73, 0x68, 0xb4, 0x3b, + 0xb9, 0xe4, 0xb4, 0x32, 0x57, 0xd8, 0x32, 0x09, 0xca, 0xd9, 0x77, 0x42, 0x55, 0x42, 0x0f, 0xa5, + 0xd4, 0x7d, 0x14, 0x4e, 0xca, 0x30, 0x52, 0x69, 0x37, 0x15, 0xb7, 0x4e, 0x07, 0x9b, 0x7e, 0xa4, + 0x3d, 0xa7, 0xd4, 0xcd, 0x9e, 0xd3, 0xc3, 0x43, 0xd8, 0xbf, 0x69, 0xc1, 0xb9, 0x6c, 0x07, 0xe2, + 0xa5, 0x30, 0xf0, 0x92, 0x30, 0x5a, 0x25, 0x49, 0xe2, 0x05, 0x0d, 0x96, 0xf6, 0xed, 0x96, 0x13, + 0xc9, 0x44, 0xfd, 0x8c, 0x51, 0xde, 0x70, 0xa2, 0x00, 0xb3, 0x52, 0xb4, 0x0b, 0xfd, 0xdc, 0x49, + 0x4d, 0x68, 0xeb, 0x47, 0xdc, 0x1b, 0x39, 0xc3, 0xa1, 0x8f, 0x0b, 0xdc, 0x41, 0x0e, 0x0b, 0x82, + 0xf6, 0xf7, 0x2c, 0x40, 0xcb, 0xdb, 0x24, 0x8a, 0xbc, 0xba, 0xe1, 0x56, 0xc7, 0x5e, 0x80, 0x32, + 0x5e, 0x7a, 0x32, 0x83, 0x9c, 0x33, 0x2f, 0x40, 0x19, 0xff, 0xf2, 0x5f, 0x80, 0x2a, 0x1d, 0xee, + 0x05, 0x28, 0xb4, 0x0c, 0xa7, 0x9b, 0xfc, 0xb8, 0xc1, 0x5f, 0x55, 0xe1, 0x67, 0x0f, 0x15, 0x8f, + 0x77, 0xe6, 0xf6, 0xde, 0xc4, 0xe9, 0xa5, 0x3c, 0x04, 0x9c, 0x5f, 0xcf, 0x7e, 0x27, 0x20, 0xee, + 0x4d, 0x37, 0x9b, 0xe7, 0xab, 0xd4, 0xd5, 0xfc, 0x62, 0x7f, 0xb9, 0x02, 0xa3, 0x99, 0x34, 0xce, + 0xf4, 0xa8, 0xd7, 0xe9, 0x1c, 0x75, 0x64, 0xf9, 0xdd, 0xd9, 0xbd, 0x9e, 0xdc, 0xad, 0x02, 0xa8, + 0x78, 0x41, 0xab, 0x9d, 0x14, 0x13, 0x0e, 0xcc, 0x3b, 0xb1, 0x40, 0x1b, 0x34, 0xcc, 0xc5, 0xf4, + 0x2f, 0xe6, 0x64, 0x8a, 0x74, 0xde, 0x4a, 0x29, 0xe3, 0x7d, 0xf7, 0xc9, 0x1c, 0xf0, 0x71, 0xed, + 0x4a, 0x55, 0x29, 0xc2, 0xb0, 0x98, 0x59, 0x2c, 0xc7, 0x7d, 0xd5, 0xfe, 0x8d, 0x12, 0x0c, 0x1a, + 0x93, 0x86, 0x7e, 0x35, 0x9d, 0xb4, 0xcb, 0x2a, 0xee, 0x93, 0x58, 0xfb, 0x93, 0x3a, 0x2d, 0x17, + 0xff, 0xa4, 0x27, 0x3a, 0xf3, 0x75, 0xdd, 0xd9, 0x9b, 0x38, 0x91, 0xc9, 0xc8, 0x95, 0xca, 0xe1, + 0x75, 0xf6, 0x23, 0x30, 0x9a, 0x69, 0x26, 0xe7, 0x93, 0xd7, 0xcc, 0x4f, 0x3e, 0xb2, 0x59, 0xca, + 0x1c, 0xb2, 0xaf, 0xd3, 0x21, 0x13, 0x51, 0x88, 0xa1, 0x4f, 0x7a, 0xb0, 0xc1, 0x66, 0x82, 0x8d, + 0x4b, 0x3d, 0x06, 0x1b, 0x3f, 0x09, 0xd5, 0x56, 0xe8, 0x7b, 0xae, 0xa7, 0x72, 0x68, 0xb2, 0xf0, + 0xe6, 0x15, 0x51, 0x86, 0x15, 0x14, 0xdd, 0x82, 0xda, 0xcd, 0x5b, 0x09, 0xbf, 0xfd, 0x11, 0xf6, + 0xed, 0xa2, 0x2e, 0x7d, 0x94, 0xd2, 0xa2, 0xae, 0x97, 0xb0, 0xa6, 0x85, 0x6c, 0xe8, 0x67, 0x42, + 0x50, 0x46, 0x24, 0x30, 0xdb, 0x3b, 0x93, 0x8e, 0x31, 0x16, 0x10, 0xfb, 0x6b, 0x35, 0x38, 0x95, + 0x97, 0x4b, 0x1f, 0x7d, 0x18, 0xfa, 0x79, 0x1f, 0x8b, 0x79, 0xae, 0x25, 0x8f, 0xc6, 0x3c, 0x6b, + 0x50, 0x74, 0x8b, 0xfd, 0xc6, 0x82, 0xa6, 0xa0, 0xee, 0x3b, 0xeb, 0x62, 0x85, 0x1c, 0x0f, 0xf5, + 0x45, 0x47, 0x53, 0x5f, 0x74, 0x38, 0x75, 0xdf, 0x59, 0x47, 0x3b, 0x50, 0x69, 0x78, 0x09, 0x71, + 0x84, 0x11, 0xe1, 0xc6, 0xb1, 0x10, 0x27, 0x0e, 0xd7, 0xd2, 0xd8, 0x4f, 0xcc, 0x09, 0xa2, 0xaf, + 0x5a, 0x30, 0xba, 0x9e, 0xce, 0x72, 0x20, 0x98, 0xa7, 0x73, 0x0c, 0xef, 0x25, 0xa4, 0x09, 0xf1, + 0x27, 0xd0, 0x32, 0x85, 0x38, 0xdb, 0x1d, 0xf4, 0x09, 0x0b, 0x06, 0x36, 0x3c, 0xdf, 0x48, 0x48, + 0x7d, 0x0c, 0x93, 0x73, 0x91, 0x11, 0xd0, 0x27, 0x0e, 0xfe, 0x3f, 0xc6, 0x92, 0x72, 0x37, 0x49, + 0xd5, 0x7f, 0x54, 0x49, 0x35, 0x70, 0x9f, 0x24, 0xd5, 0xa7, 0x2d, 0xa8, 0xa9, 0x91, 0x16, 0xd1, + 0xe2, 0x1f, 0x38, 0xc6, 0x29, 0xe7, 0x96, 0x13, 0xf5, 0x17, 0x6b, 0xe2, 0xe8, 0x0b, 0x16, 0x0c, + 0x3a, 0xaf, 0xb5, 0x23, 0x52, 0x27, 0xdb, 0x61, 0x2b, 0x16, 0xef, 0xa7, 0xbe, 0x5c, 0x7c, 0x67, + 0xa6, 0x29, 0x91, 0x39, 0xb2, 0xbd, 0xdc, 0x8a, 0x45, 0xb4, 0x94, 0x2e, 0xc0, 0x66, 0x17, 0xec, + 0xbd, 0x12, 0x4c, 0x1c, 0xd0, 0x02, 0x7a, 0x1e, 0x86, 0xc2, 0xa8, 0xe1, 0x04, 0xde, 0x6b, 0x66, + 0xda, 0x12, 0xa5, 0x65, 0x2d, 0x1b, 0x30, 0x9c, 0xc2, 0x34, 0xe3, 0xd9, 0x4b, 0x07, 0xc4, 0xb3, + 0x9f, 0x83, 0xbe, 0x88, 0xb4, 0xc2, 0xec, 0x61, 0x81, 0x45, 0x2a, 0x30, 0x08, 0x7a, 0x14, 0xca, + 0x4e, 0xcb, 0x13, 0x8e, 0x68, 0xea, 0x0c, 0x34, 0xbd, 0xb2, 0x80, 0x69, 0x79, 0x2a, 0xbd, 0x46, + 0xe5, 0x9e, 0xa4, 0xd7, 0xa0, 0x62, 0x40, 0xdc, 0x5d, 0xf4, 0x6b, 0x31, 0x90, 0xbe, 0x53, 0xb0, + 0xdf, 0x28, 0xc3, 0xa3, 0xfb, 0xae, 0x17, 0xed, 0x87, 0x67, 0xed, 0xe3, 0x87, 0x27, 0x87, 0xa7, + 0x74, 0xd0, 0xf0, 0x94, 0xbb, 0x0c, 0xcf, 0x27, 0xe8, 0x36, 0x90, 0xe9, 0x5e, 0x8a, 0x79, 0x01, + 0xb3, 0x5b, 0xf6, 0x18, 0xb1, 0x03, 0x24, 0x14, 0x6b, 0xba, 0xf4, 0x0c, 0x90, 0x8a, 0xe5, 0xae, + 0x14, 0x21, 0x06, 0xba, 0xa6, 0x5c, 0xe1, 0x6b, 0xbf, 0x5b, 0x80, 0xb8, 0xfd, 0xdb, 0x7d, 0xf0, + 0x78, 0x0f, 0xdc, 0xdb, 0x5c, 0xc5, 0x56, 0x8f, 0xab, 0xf8, 0x07, 0x7c, 0x9a, 0x3e, 0x95, 0x3b, + 0x4d, 0xb8, 0xf8, 0x69, 0xda, 0x7f, 0x86, 0xd0, 0x53, 0x50, 0xf5, 0x82, 0x98, 0xb8, 0xed, 0x88, + 0xfb, 0x24, 0x1b, 0x61, 0x4c, 0x0b, 0xa2, 0x1c, 0x2b, 0x0c, 0x7a, 0xa6, 0x73, 0x1d, 0xba, 0xfd, + 0x07, 0x0a, 0x8a, 0xdd, 0x35, 0x23, 0xa2, 0xb8, 0x4a, 0x31, 0x3b, 0x4d, 0x39, 0x00, 0x27, 0x63, + 0xff, 0x2d, 0x0b, 0xce, 0x76, 0x17, 0xb1, 0xe8, 0x19, 0x18, 0x5c, 0x8f, 0x9c, 0xc0, 0xdd, 0x64, + 0x6f, 0x1f, 0xcb, 0xa5, 0xc3, 0xbe, 0x57, 0x17, 0x63, 0x13, 0x07, 0xcd, 0xc2, 0x18, 0xf7, 0xdc, + 0x30, 0x30, 0x64, 0xe4, 0xef, 0xed, 0xbd, 0x89, 0xb1, 0xb5, 0x2c, 0x10, 0x77, 0xe2, 0xdb, 0xdf, + 0x2f, 0xe7, 0x77, 0x8b, 0xab, 0x62, 0x87, 0x59, 0xcd, 0x62, 0xad, 0x96, 0x7a, 0xe0, 0xb8, 0xe5, + 0x7b, 0xcd, 0x71, 0xfb, 0xba, 0x71, 0x5c, 0x34, 0x07, 0x27, 0x8c, 0xc7, 0xa9, 0x78, 0x34, 0x37, + 0x77, 0x4b, 0x56, 0xa9, 0x58, 0x56, 0x32, 0x70, 0xdc, 0x51, 0xe3, 0x01, 0x5f, 0x7a, 0xbf, 0x56, + 0x82, 0x33, 0x5d, 0xb5, 0xdf, 0x7b, 0x24, 0x51, 0xcc, 0xe9, 0xef, 0xbb, 0x37, 0xd3, 0x6f, 0x4e, + 0x4a, 0xe5, 0xa0, 0x49, 0xb1, 0xff, 0xb8, 0xd4, 0x75, 0x23, 0xd0, 0x93, 0xd0, 0x0f, 0xed, 0x28, + 0xbd, 0x00, 0xc3, 0x4e, 0xab, 0xc5, 0xf1, 0x98, 0x17, 0x6d, 0x26, 0xf5, 0xd3, 0xb4, 0x09, 0xc4, + 0x69, 0xdc, 0x9e, 0x74, 0x9a, 0x3f, 0xb1, 0xa0, 0x86, 0xc9, 0x06, 0xe7, 0x46, 0xe8, 0xa6, 0x18, + 0x22, 0xab, 0x88, 0x3c, 0xb7, 0x74, 0x60, 0x63, 0x8f, 0xe5, 0x7f, 0xcd, 0x1b, 0xec, 0xce, 0xc7, + 0xca, 0x4a, 0x87, 0x7a, 0xac, 0x4c, 0x3d, 0x57, 0x55, 0xee, 0xfe, 0x5c, 0x95, 0xfd, 0xdd, 0x01, + 0xfa, 0x79, 0xad, 0x70, 0x36, 0x22, 0xf5, 0x98, 0xce, 0x6f, 0x3b, 0xf2, 0xc5, 0x22, 0x51, 0xf3, + 0x7b, 0x0d, 0x2f, 0x62, 0x5a, 0x9e, 0xba, 0x20, 0x2b, 0x1d, 0x2a, 0xf1, 0x4d, 0xf9, 0xc0, 0xc4, + 0x37, 0x2f, 0xc0, 0x70, 0x1c, 0x6f, 0xae, 0x44, 0xde, 0xb6, 0x93, 0x90, 0x2b, 0x64, 0x57, 0xe8, + 0xbe, 0x3a, 0x09, 0xc4, 0xea, 0x25, 0x0d, 0xc4, 0x69, 0x5c, 0x34, 0x0f, 0x63, 0x3a, 0xfd, 0x0c, + 0x89, 0x12, 0x16, 0x73, 0xc1, 0x57, 0x82, 0x8a, 0xf8, 0xd6, 0x09, 0x6b, 0x04, 0x02, 0xee, 0xac, + 0x43, 0xf9, 0x69, 0xaa, 0x90, 0x76, 0xa4, 0x3f, 0xcd, 0x4f, 0x53, 0xed, 0xd0, 0xbe, 0x74, 0xd4, + 0x40, 0x4b, 0x70, 0x92, 0x2f, 0x8c, 0xe9, 0x56, 0xcb, 0xf8, 0xa2, 0x81, 0x74, 0x7e, 0xd1, 0xf9, + 0x4e, 0x14, 0x9c, 0x57, 0x0f, 0x3d, 0x07, 0x83, 0xaa, 0x78, 0x61, 0x4e, 0xdc, 0xed, 0x28, 0xdb, + 0x92, 0x6a, 0x66, 0xa1, 0x8e, 0x4d, 0x3c, 0xf4, 0x7e, 0x78, 0x58, 0xff, 0xe5, 0x81, 0x79, 0xfc, + 0xc2, 0x73, 0x4e, 0x64, 0xf6, 0x52, 0x4f, 0x1f, 0xcd, 0xe7, 0xa2, 0xd5, 0x71, 0xb7, 0xfa, 0x68, + 0x1d, 0xce, 0x2a, 0xd0, 0x85, 0x20, 0x61, 0x51, 0x36, 0x31, 0x99, 0x71, 0x62, 0x72, 0x2d, 0xf2, + 0xc5, 0x23, 0xdb, 0xea, 0xfd, 0xdc, 0x79, 0x2f, 0xb9, 0x94, 0x87, 0x89, 0x17, 0xf1, 0x3e, 0xad, + 0xa0, 0x29, 0xa8, 0x91, 0xc0, 0x59, 0xf7, 0xc9, 0xf2, 0xec, 0x02, 0xcb, 0x10, 0x66, 0xdc, 0xaf, + 0x5e, 0x90, 0x00, 0xac, 0x71, 0x94, 0xdf, 0xef, 0x50, 0xd7, 0xb7, 0x9c, 0x57, 0xe0, 0x54, 0xc3, + 0x6d, 0x51, 0x8d, 0xd0, 0x73, 0xc9, 0xb4, 0xcb, 0xdc, 0x1c, 0xe9, 0xc4, 0xf0, 0xc4, 0xaf, 0xca, + 0xa9, 0x7d, 0x7e, 0x76, 0xa5, 0x03, 0x07, 0xe7, 0xd6, 0x64, 0xee, 0xb0, 0x51, 0xb8, 0xb3, 0x3b, + 0x7e, 0x32, 0xe3, 0x0e, 0x4b, 0x0b, 0x31, 0x87, 0xa1, 0xcb, 0x80, 0x58, 0x84, 0xc4, 0xa5, 0x24, + 0x69, 0x29, 0x15, 0x74, 0xfc, 0x54, 0x3a, 0xcf, 0xcf, 0xc5, 0x0e, 0x0c, 0x9c, 0x53, 0x8b, 0x6a, + 0x34, 0x41, 0xc8, 0x5a, 0x1f, 0x7f, 0x38, 0xad, 0xd1, 0x5c, 0xe5, 0xc5, 0x58, 0xc2, 0xed, 0xff, + 0x6c, 0xc1, 0xb0, 0xda, 0xda, 0xf7, 0x20, 0x9c, 0xc8, 0x4f, 0x87, 0x13, 0xcd, 0x1f, 0x9d, 0x39, + 0xb2, 0x9e, 0x77, 0xf1, 0x49, 0xff, 0xc6, 0x20, 0x80, 0x66, 0xa0, 0x4a, 0x76, 0x59, 0x5d, 0x65, + 0xd7, 0x03, 0xcb, 0xbc, 0xf2, 0x32, 0xf2, 0x54, 0xee, 0x6f, 0x46, 0x9e, 0x55, 0x38, 0x2d, 0x35, + 0x0b, 0x7e, 0xd9, 0x77, 0x29, 0x8c, 0x15, 0x2f, 0xac, 0xce, 0x3c, 0x2a, 0x1a, 0x3a, 0xbd, 0x90, + 0x87, 0x84, 0xf3, 0xeb, 0xa6, 0x14, 0x9a, 0x81, 0x03, 0xb5, 0x4c, 0xb5, 0xfd, 0x17, 0x37, 0xe4, + 0x13, 0x42, 0x99, 0xed, 0xbf, 0x78, 0x71, 0x15, 0x6b, 0x9c, 0x7c, 0x19, 0x50, 0x2b, 0x48, 0x06, + 0xc0, 0xa1, 0x65, 0x80, 0xe4, 0x46, 0x83, 0x5d, 0xb9, 0x91, 0xbc, 0x54, 0x18, 0xea, 0x7a, 0xa9, + 0xf0, 0x1e, 0x18, 0xf1, 0x82, 0x4d, 0x12, 0x79, 0x09, 0xa9, 0xb3, 0xbd, 0xc0, 0x38, 0x55, 0x55, + 0x6b, 0x00, 0x0b, 0x29, 0x28, 0xce, 0x60, 0xa7, 0x59, 0xe8, 0x48, 0x0f, 0x2c, 0xb4, 0x8b, 0xe0, + 0x1a, 0x2d, 0x46, 0x70, 0x9d, 0x38, 0xba, 0xe0, 0x1a, 0x3b, 0x56, 0xc1, 0x85, 0x0a, 0x11, 0x5c, + 0x3d, 0xc9, 0x04, 0xe3, 0x64, 0x7a, 0xea, 0x80, 0x93, 0x69, 0x37, 0xa9, 0x75, 0xfa, 0xae, 0xa5, + 0x56, 0xbe, 0x40, 0x7a, 0xe8, 0xb8, 0x05, 0xd2, 0xa7, 0x4b, 0x70, 0x5a, 0xb3, 0x6c, 0xba, 0x51, + 0xbc, 0x0d, 0xca, 0xb4, 0xd8, 0x83, 0x75, 0xfc, 0x8e, 0xce, 0x08, 0x84, 0xd3, 0x31, 0x75, 0x0a, + 0x82, 0x0d, 0x2c, 0x16, 0x4f, 0x46, 0x22, 0x96, 0xfd, 0x3a, 0xcb, 0xcf, 0x67, 0x45, 0x39, 0x56, + 0x18, 0x74, 0x29, 0xd2, 0xdf, 0x22, 0x46, 0x37, 0x9b, 0x57, 0x71, 0x56, 0x83, 0xb0, 0x89, 0x87, + 0x9e, 0xe4, 0x44, 0x18, 0x2f, 0xa1, 0x3c, 0x7d, 0x48, 0xbc, 0x1b, 0x2e, 0xd9, 0x87, 0x82, 0xca, + 0xee, 0xb0, 0xc0, 0xc1, 0x4a, 0x67, 0x77, 0x98, 0xbb, 0x9b, 0xc2, 0xb0, 0xff, 0xa7, 0x05, 0x67, + 0x72, 0x87, 0xe2, 0x1e, 0xc8, 0xe9, 0x9d, 0xb4, 0x9c, 0x5e, 0x2d, 0xea, 0x10, 0x63, 0x7c, 0x45, + 0x17, 0x99, 0xfd, 0x1f, 0x2d, 0x18, 0xd1, 0xf8, 0xf7, 0xe0, 0x53, 0xbd, 0xf4, 0xa7, 0x16, 0x77, + 0x5e, 0xab, 0x75, 0x7c, 0xdb, 0xef, 0x95, 0x40, 0xe5, 0x3a, 0x9d, 0x76, 0x65, 0x26, 0xe9, 0x03, + 0x6e, 0x8d, 0x77, 0xa1, 0x9f, 0x5d, 0x7a, 0xc7, 0xc5, 0x38, 0xf4, 0xa4, 0xe9, 0xb3, 0x0b, 0x74, + 0xed, 0x50, 0xc0, 0xfe, 0xc6, 0x58, 0x10, 0x64, 0xb9, 0xd9, 0x79, 0x1a, 0xc9, 0xba, 0x08, 0xc1, + 0xd3, 0xb9, 0xd9, 0x45, 0x39, 0x56, 0x18, 0x54, 0x92, 0x78, 0x6e, 0x18, 0xcc, 0xfa, 0x4e, 0x2c, + 0x5f, 0x9c, 0x55, 0x92, 0x64, 0x41, 0x02, 0xb0, 0xc6, 0x61, 0xf7, 0xe1, 0x5e, 0xdc, 0xf2, 0x9d, + 0x5d, 0xe3, 0x54, 0x6e, 0xe4, 0xa2, 0x50, 0x20, 0x6c, 0xe2, 0xd9, 0x4d, 0x18, 0x4f, 0x7f, 0xc4, + 0x1c, 0xd9, 0x60, 0xce, 0xa8, 0x3d, 0x0d, 0xe7, 0x14, 0xd4, 0x1c, 0x56, 0x6b, 0xb1, 0xed, 0x08, + 0x9e, 0xa0, 0x5d, 0x32, 0x25, 0x00, 0x6b, 0x1c, 0xfb, 0x1f, 0x59, 0x70, 0x32, 0x67, 0xd0, 0x0a, + 0x0c, 0x71, 0x4c, 0x34, 0xb7, 0xc9, 0xd3, 0x01, 0x7e, 0x1c, 0x06, 0xea, 0x64, 0xc3, 0x91, 0xee, + 0x8e, 0x06, 0xf7, 0x9c, 0xe3, 0xc5, 0x58, 0xc2, 0xed, 0xdf, 0x2a, 0xc1, 0x68, 0xba, 0xaf, 0x31, + 0x0b, 0x1b, 0xe2, 0xc3, 0xe4, 0xc5, 0x6e, 0xb8, 0x4d, 0xa2, 0x5d, 0xfa, 0xe5, 0x56, 0x26, 0x6c, + 0xa8, 0x03, 0x03, 0xe7, 0xd4, 0x62, 0x99, 0x8e, 0xeb, 0x6a, 0xb4, 0xe5, 0x8a, 0xbc, 0x5e, 0xe4, + 0x8a, 0xd4, 0x93, 0x69, 0xba, 0x46, 0x28, 0x92, 0xd8, 0xa4, 0x4f, 0x75, 0x11, 0xe6, 0x87, 0x3d, + 0xd3, 0xf6, 0xfc, 0xc4, 0x0b, 0xc4, 0x27, 0x8b, 0xb5, 0xaa, 0x74, 0x91, 0xa5, 0x4e, 0x14, 0x9c, + 0x57, 0xcf, 0xfe, 0x5e, 0x1f, 0xa8, 0x90, 0x6a, 0xe6, 0xba, 0x56, 0x90, 0xe3, 0xdf, 0x61, 0x83, + 0xcf, 0xd4, 0xda, 0xea, 0xdb, 0xcf, 0x97, 0x84, 0x9b, 0x72, 0x4c, 0x7b, 0xae, 0x1a, 0xb0, 0x35, + 0x0d, 0xc2, 0x26, 0x1e, 0xed, 0x89, 0xef, 0x6d, 0x13, 0x5e, 0xa9, 0x3f, 0xdd, 0x93, 0x45, 0x09, + 0xc0, 0x1a, 0x87, 0xf6, 0xa4, 0xee, 0x6d, 0x6c, 0x08, 0xbb, 0x84, 0xea, 0x09, 0x1d, 0x1d, 0xcc, + 0x20, 0x3c, 0x17, 0x7e, 0xb8, 0x25, 0xf4, 0x6f, 0x23, 0x17, 0x7e, 0xb8, 0x85, 0x19, 0x84, 0xce, + 0x52, 0x10, 0x46, 0x4d, 0xc7, 0xf7, 0x5e, 0x23, 0x75, 0x45, 0x45, 0xe8, 0xdd, 0x6a, 0x96, 0xae, + 0x76, 0xa2, 0xe0, 0xbc, 0x7a, 0x74, 0x41, 0xb7, 0x22, 0x52, 0xf7, 0xdc, 0xc4, 0x6c, 0x0d, 0xd2, + 0x0b, 0x7a, 0xa5, 0x03, 0x03, 0xe7, 0xd4, 0x42, 0xd3, 0x30, 0x2a, 0x43, 0xe2, 0x65, 0xc2, 0xa3, + 0xc1, 0x74, 0x82, 0x15, 0x9c, 0x06, 0xe3, 0x2c, 0x3e, 0x65, 0x92, 0x4d, 0x91, 0x13, 0x8d, 0xa9, + 0xe9, 0x06, 0x93, 0x94, 0xb9, 0xd2, 0xb0, 0xc2, 0xb0, 0x3f, 0x5e, 0xa6, 0x42, 0xbd, 0x4b, 0xea, + 0xc1, 0x7b, 0xe6, 0x68, 0x9a, 0x5e, 0x91, 0x7d, 0x3d, 0xac, 0xc8, 0x67, 0x61, 0xe8, 0x66, 0x1c, + 0x06, 0xca, 0x89, 0xb3, 0xd2, 0xd5, 0x89, 0xd3, 0xc0, 0xca, 0x77, 0xe2, 0xec, 0x2f, 0xca, 0x89, + 0x73, 0xe0, 0x2e, 0x9d, 0x38, 0xff, 0xa0, 0x02, 0xea, 0x5d, 0xa1, 0xab, 0x24, 0xb9, 0x15, 0x46, + 0x5b, 0x5e, 0xd0, 0x60, 0xa9, 0x04, 0xbe, 0x6a, 0xc1, 0x10, 0xdf, 0x2f, 0x8b, 0x66, 0x10, 0xde, + 0x46, 0x41, 0x0f, 0xd6, 0xa4, 0x88, 0x4d, 0xae, 0x19, 0x84, 0x32, 0x6f, 0x0e, 0x9b, 0x20, 0x9c, + 0xea, 0x11, 0xfa, 0x08, 0x80, 0x34, 0xe2, 0x6e, 0x48, 0x0e, 0xbc, 0x50, 0x4c, 0xff, 0x30, 0xd9, + 0xd0, 0x2a, 0xf5, 0x9a, 0x22, 0x82, 0x0d, 0x82, 0xe8, 0xd3, 0x3a, 0x40, 0x91, 0x47, 0x7b, 0x7c, + 0xe8, 0x58, 0xc6, 0xa6, 0x97, 0xf0, 0x44, 0x0c, 0x03, 0x5e, 0xd0, 0xa0, 0xeb, 0x44, 0x38, 0xbb, + 0xbd, 0x2d, 0x2f, 0x0d, 0xc7, 0x62, 0xe8, 0xd4, 0x67, 0x1c, 0xdf, 0x09, 0x5c, 0x12, 0x2d, 0x70, + 0x74, 0x2d, 0x41, 0x45, 0x01, 0x96, 0x0d, 0x75, 0xbc, 0xc8, 0x54, 0xe9, 0xe5, 0x45, 0xa6, 0xb3, + 0xef, 0x85, 0xb1, 0x8e, 0xc9, 0x3c, 0x54, 0x34, 0xe2, 0xdd, 0x07, 0x32, 0xda, 0xbf, 0xdd, 0xaf, + 0x85, 0xd6, 0xd5, 0xb0, 0xce, 0x1f, 0xf8, 0x89, 0xf4, 0x8c, 0x0a, 0x95, 0xb9, 0xc0, 0x25, 0xa2, + 0xc4, 0x8c, 0x51, 0x88, 0x4d, 0x92, 0x74, 0x8d, 0xb6, 0x9c, 0x88, 0x04, 0xc7, 0xbd, 0x46, 0x57, + 0x14, 0x11, 0x6c, 0x10, 0x44, 0x9b, 0xa9, 0x70, 0xa4, 0x8b, 0x47, 0x0f, 0x47, 0x62, 0x09, 0xca, + 0xf2, 0xde, 0xc1, 0xf8, 0x82, 0x05, 0x23, 0x41, 0x6a, 0xe5, 0x16, 0xe3, 0x81, 0x9c, 0xbf, 0x2b, + 0xf8, 0xb3, 0x74, 0xe9, 0x32, 0x9c, 0xa1, 0x9f, 0x27, 0xd2, 0x2a, 0x87, 0x14, 0x69, 0xfa, 0x81, + 0xb1, 0xfe, 0x6e, 0x0f, 0x8c, 0xa1, 0x40, 0xbd, 0xb0, 0x38, 0x50, 0xf8, 0x0b, 0x8b, 0x90, 0xf3, + 0xba, 0xe2, 0x0d, 0xa8, 0xb9, 0x11, 0x71, 0x92, 0xbb, 0x7c, 0x6c, 0x8f, 0xf9, 0x76, 0xcc, 0xca, + 0x06, 0xb0, 0x6e, 0xcb, 0xfe, 0x3f, 0x7d, 0x70, 0x42, 0x8e, 0x88, 0x8c, 0x5e, 0xa0, 0xf2, 0x91, + 0xd3, 0xd5, 0xba, 0xb2, 0x92, 0x8f, 0x97, 0x24, 0x00, 0x6b, 0x1c, 0xaa, 0x8f, 0xb5, 0x63, 0xb2, + 0xdc, 0x22, 0xc1, 0xa2, 0xb7, 0x1e, 0x8b, 0xcb, 0x58, 0xb5, 0x51, 0xae, 0x69, 0x10, 0x36, 0xf1, + 0xa8, 0x6e, 0xef, 0x18, 0x4a, 0xab, 0xa1, 0xdb, 0x4b, 0x45, 0x55, 0xc2, 0xd1, 0x2f, 0xe7, 0xe6, + 0x42, 0x2e, 0x26, 0xe6, 0xaf, 0x23, 0x68, 0xe3, 0x90, 0xef, 0xb3, 0xfe, 0x7d, 0x0b, 0x4e, 0xf3, + 0x52, 0x39, 0x92, 0xd7, 0x5a, 0x75, 0x27, 0x21, 0x71, 0x31, 0x6f, 0x28, 0xe4, 0xf4, 0x4f, 0x9b, + 0x97, 0xf3, 0xc8, 0xe2, 0xfc, 0xde, 0xa0, 0xd7, 0x2d, 0x18, 0xdd, 0x4a, 0xa5, 0x8b, 0x91, 0xa2, + 0xe3, 0xa8, 0x99, 0x1c, 0x52, 0x8d, 0xea, 0xad, 0x96, 0x2e, 0x8f, 0x71, 0x96, 0xba, 0xfd, 0x3f, + 0x2c, 0x30, 0xd9, 0xe8, 0xbd, 0xcf, 0x32, 0x73, 0x78, 0x55, 0x50, 0x6a, 0x97, 0x95, 0xae, 0xda, + 0xe5, 0xa3, 0x50, 0x6e, 0x7b, 0x75, 0x71, 0xbe, 0xd0, 0x57, 0xc4, 0x0b, 0x73, 0x98, 0x96, 0xdb, + 0xff, 0xb2, 0xa2, 0xcd, 0x20, 0x22, 0xa4, 0xee, 0x87, 0xe2, 0xb3, 0x37, 0x54, 0x9e, 0x3a, 0xfe, + 0xe5, 0x57, 0x3b, 0xf2, 0xd4, 0xfd, 0xd4, 0xe1, 0x23, 0x26, 0xf9, 0x00, 0x75, 0x4b, 0x53, 0x37, + 0x70, 0x40, 0xb8, 0xe4, 0x4d, 0xa8, 0xd2, 0x23, 0x18, 0xb3, 0x67, 0x56, 0x53, 0x9d, 0xaa, 0x5e, + 0x12, 0xe5, 0x77, 0xf6, 0x26, 0xde, 0x75, 0xf8, 0x6e, 0xc9, 0xda, 0x58, 0xb5, 0x8f, 0x62, 0xa8, + 0xd1, 0xdf, 0x2c, 0xb2, 0x53, 0x1c, 0xee, 0xae, 0x29, 0x9e, 0x29, 0x01, 0x85, 0x84, 0x8d, 0x6a, + 0x3a, 0x28, 0x80, 0x1a, 0x7b, 0xca, 0x9a, 0x11, 0xe5, 0x67, 0xc0, 0x15, 0x15, 0x5f, 0x29, 0x01, + 0x77, 0xf6, 0x26, 0x5e, 0x38, 0x3c, 0x51, 0x55, 0x1d, 0x6b, 0x12, 0xf6, 0x17, 0xfb, 0xf4, 0xda, + 0x15, 0xe9, 0x09, 0x7f, 0x28, 0xd6, 0xee, 0xf3, 0x99, 0xb5, 0x7b, 0xae, 0x63, 0xed, 0x8e, 0xe8, + 0x27, 0x97, 0x53, 0xab, 0xf1, 0x5e, 0x2b, 0x02, 0x07, 0xdb, 0x1b, 0x98, 0x06, 0xf4, 0x6a, 0xdb, + 0x8b, 0x48, 0xbc, 0x12, 0xb5, 0x03, 0x2f, 0x68, 0xb0, 0xe5, 0x58, 0x35, 0x35, 0xa0, 0x14, 0x18, + 0x67, 0xf1, 0xe9, 0xa1, 0x9e, 0xce, 0xf9, 0x0d, 0x67, 0x9b, 0xaf, 0x2a, 0x23, 0x63, 0xdb, 0xaa, + 0x28, 0xc7, 0x0a, 0xc3, 0xfe, 0x3a, 0xbb, 0x45, 0x37, 0x42, 0xca, 0xe9, 0x9a, 0xf0, 0xd9, 0xdb, + 0xe1, 0x3c, 0xdd, 0x9b, 0x5a, 0x13, 0xfc, 0xc1, 0x70, 0x0e, 0x43, 0xb7, 0x60, 0x60, 0x9d, 0xbf, + 0x82, 0x59, 0x4c, 0xc6, 0x7d, 0xf1, 0xa4, 0x26, 0x7b, 0x5f, 0x48, 0xbe, 0xaf, 0x79, 0x47, 0xff, + 0xc4, 0x92, 0x9a, 0xfd, 0xad, 0x0a, 0x8c, 0x66, 0x5e, 0x97, 0x4e, 0x25, 0xda, 0x2d, 0x1d, 0x98, + 0x68, 0xf7, 0x83, 0x00, 0x75, 0xd2, 0xf2, 0xc3, 0x5d, 0xa6, 0x8e, 0xf5, 0x1d, 0x5a, 0x1d, 0x53, + 0x1a, 0xfc, 0x9c, 0x6a, 0x05, 0x1b, 0x2d, 0x8a, 0x1c, 0x77, 0x3c, 0x6f, 0x6f, 0x26, 0xc7, 0x9d, + 0xf1, 0x2e, 0x47, 0xff, 0xbd, 0x7d, 0x97, 0xc3, 0x83, 0x51, 0xde, 0x45, 0x15, 0xb8, 0x7d, 0x17, + 0xf1, 0xd9, 0x2c, 0xf4, 0x65, 0x2e, 0xdd, 0x0c, 0xce, 0xb6, 0x7b, 0x3f, 0x1f, 0x8f, 0x47, 0x6f, + 0x87, 0x9a, 0x9c, 0xe7, 0x78, 0xbc, 0xa6, 0x93, 0x5f, 0xc8, 0x65, 0xc0, 0x1e, 0x75, 0x17, 0x3f, + 0x3b, 0x72, 0x50, 0xc0, 0xfd, 0xca, 0x41, 0x61, 0x7f, 0xbe, 0x44, 0xf5, 0x78, 0xde, 0x2f, 0x95, + 0x4e, 0xe9, 0x09, 0xe8, 0x77, 0xda, 0xc9, 0x66, 0xd8, 0xf1, 0x8e, 0xe6, 0x34, 0x2b, 0xc5, 0x02, + 0x8a, 0x16, 0xa1, 0xaf, 0xae, 0x53, 0xe4, 0x1c, 0x66, 0x3e, 0xb5, 0x49, 0xd4, 0x49, 0x08, 0x66, + 0xad, 0xa0, 0x47, 0xa0, 0x2f, 0x71, 0x1a, 0x32, 0x5a, 0x8f, 0x45, 0x68, 0xaf, 0x39, 0x8d, 0x18, + 0xb3, 0x52, 0x53, 0x7c, 0xf7, 0x1d, 0x20, 0xbe, 0x5f, 0x80, 0xe1, 0xd8, 0x6b, 0x04, 0x4e, 0xd2, + 0x8e, 0x88, 0x71, 0x6b, 0xa8, 0x7d, 0x46, 0x4c, 0x20, 0x4e, 0xe3, 0xda, 0xbf, 0x33, 0x04, 0xa7, + 0x56, 0x67, 0x97, 0x64, 0xe2, 0xf7, 0x63, 0x0b, 0xb8, 0xcb, 0xa3, 0x71, 0xef, 0x02, 0xee, 0xba, + 0x50, 0xf7, 0x8d, 0x80, 0x3b, 0xdf, 0x08, 0xb8, 0x4b, 0x47, 0x3f, 0x95, 0x8b, 0x88, 0x7e, 0xca, + 0xeb, 0x41, 0x2f, 0xd1, 0x4f, 0xc7, 0x16, 0x81, 0xb7, 0x6f, 0x87, 0x0e, 0x15, 0x81, 0xa7, 0xc2, + 0x13, 0x0b, 0x89, 0x4b, 0xe9, 0x32, 0x55, 0xb9, 0xe1, 0x89, 0x2a, 0x34, 0x8c, 0xc7, 0x5c, 0x09, + 0x56, 0xff, 0x72, 0xf1, 0x1d, 0xe8, 0x21, 0x34, 0x4c, 0x84, 0x7d, 0x99, 0xe1, 0x88, 0x03, 0x45, + 0x84, 0x23, 0xe6, 0x75, 0xe7, 0xc0, 0x70, 0xc4, 0x17, 0x60, 0xd8, 0xf5, 0xc3, 0x80, 0xac, 0x44, + 0x61, 0x12, 0xba, 0xa1, 0x7c, 0xc9, 0x4f, 0x3f, 0x44, 0x63, 0x02, 0x71, 0x1a, 0xb7, 0x5b, 0x2c, + 0x63, 0xed, 0xa8, 0xb1, 0x8c, 0x70, 0x9f, 0x62, 0x19, 0x7f, 0x41, 0x47, 0xdd, 0x0f, 0xb2, 0x19, + 0xf9, 0x60, 0xf1, 0x33, 0xd2, 0xd3, 0x53, 0x7d, 0x6f, 0xf0, 0x87, 0x2c, 0xa9, 0x62, 0x3c, 0x1b, + 0x36, 0xa9, 0xe2, 0x37, 0xc4, 0x86, 0xe4, 0x95, 0x63, 0x58, 0xb0, 0x37, 0x56, 0x35, 0x19, 0xf5, + 0xb8, 0xa5, 0x2e, 0xc2, 0xe9, 0x8e, 0x1c, 0x25, 0x2b, 0xc0, 0x97, 0x4b, 0xf0, 0x23, 0x07, 0x76, + 0x01, 0xdd, 0x02, 0x48, 0x9c, 0x86, 0x58, 0xa8, 0xe2, 0xc2, 0xe4, 0x88, 0x8e, 0x9d, 0x6b, 0xb2, + 0x3d, 0x9e, 0xce, 0x46, 0xfd, 0x65, 0x57, 0x11, 0xf2, 0x37, 0xf3, 0xe7, 0x0c, 0xfd, 0x8e, 0xac, + 0x9f, 0x38, 0xf4, 0x09, 0x66, 0x10, 0x2a, 0xfe, 0x23, 0xd2, 0xd0, 0xaf, 0xc0, 0xab, 0xe9, 0xc3, + 0xac, 0x14, 0x0b, 0x28, 0x7a, 0x0e, 0x06, 0x1d, 0xdf, 0xe7, 0x41, 0x43, 0x24, 0x16, 0x2f, 0x44, + 0xe9, 0xf4, 0x83, 0x1a, 0x84, 0x4d, 0x3c, 0xfb, 0x2f, 0x4b, 0x30, 0x71, 0x00, 0x4f, 0xe9, 0x08, + 0x16, 0xad, 0xf4, 0x1c, 0x2c, 0x2a, 0x02, 0x29, 0xfa, 0xbb, 0x04, 0x52, 0x3c, 0x07, 0x83, 0x09, + 0x71, 0x9a, 0xc2, 0x15, 0x4c, 0x58, 0x02, 0xf4, 0x0d, 0xb0, 0x06, 0x61, 0x13, 0x8f, 0x72, 0xb1, + 0x11, 0xc7, 0x75, 0x49, 0x1c, 0xcb, 0x48, 0x09, 0x61, 0x4d, 0x2d, 0x2c, 0x0c, 0x83, 0x19, 0xa9, + 0xa7, 0x53, 0x24, 0x70, 0x86, 0x64, 0x76, 0xc0, 0x6b, 0x3d, 0x0e, 0xf8, 0xd7, 0x4a, 0xf0, 0xe8, + 0xbe, 0xd2, 0xad, 0xe7, 0x20, 0x96, 0x76, 0x4c, 0xa2, 0xec, 0xc2, 0xb9, 0x16, 0x93, 0x08, 0x33, + 0x08, 0x1f, 0xa5, 0x56, 0xcb, 0x78, 0x65, 0xbf, 0xe8, 0x88, 0x2e, 0x3e, 0x4a, 0x29, 0x12, 0x38, + 0x43, 0xf2, 0x6e, 0x97, 0xe5, 0xb7, 0xfa, 0xe0, 0xf1, 0x1e, 0x74, 0x80, 0x02, 0x23, 0xdf, 0xd2, + 0x51, 0x9a, 0xe5, 0xfb, 0x14, 0xa5, 0x79, 0x77, 0xc3, 0xf5, 0x66, 0x70, 0x67, 0x4f, 0x11, 0x76, + 0x5f, 0x2f, 0xc1, 0xd9, 0xee, 0x0a, 0x0b, 0x7a, 0x37, 0x8c, 0x46, 0xca, 0xf5, 0xcd, 0x0c, 0xf0, + 0x3c, 0xc9, 0xed, 0x2d, 0x29, 0x10, 0xce, 0xe2, 0xa2, 0x49, 0x80, 0x96, 0x93, 0x6c, 0xc6, 0x17, + 0x76, 0xbc, 0x38, 0x11, 0x69, 0x9e, 0x46, 0xf8, 0x0d, 0x9f, 0x2c, 0xc5, 0x06, 0x06, 0x25, 0xc7, + 0xfe, 0xcd, 0x85, 0x57, 0xc3, 0x84, 0x57, 0xe2, 0x87, 0xad, 0x93, 0xf2, 0x51, 0x1c, 0x03, 0x84, + 0xb3, 0xb8, 0x94, 0x1c, 0xbb, 0x43, 0xe6, 0x1d, 0xe5, 0xa7, 0x30, 0x46, 0x6e, 0x51, 0x95, 0x62, + 0x03, 0x23, 0x1b, 0xba, 0x5a, 0x39, 0x38, 0x74, 0xd5, 0xfe, 0x17, 0x25, 0x38, 0xd3, 0x55, 0xe1, + 0xed, 0x8d, 0x4d, 0x3d, 0x78, 0xe1, 0xa6, 0x77, 0xb9, 0xc3, 0x0e, 0x17, 0xa6, 0xf8, 0x27, 0x5d, + 0x56, 0x9a, 0x08, 0x53, 0xbc, 0xfb, 0xec, 0x0b, 0x0f, 0xde, 0x78, 0x76, 0x44, 0x26, 0xf6, 0x1d, + 0x22, 0x32, 0x31, 0x33, 0x19, 0x95, 0x1e, 0xa5, 0xc3, 0x9f, 0xf5, 0x75, 0x1d, 0x5e, 0x7a, 0x40, + 0xee, 0xc9, 0x9a, 0x3d, 0x07, 0x27, 0xbc, 0x80, 0x3d, 0x90, 0xb6, 0xda, 0x5e, 0x17, 0x99, 0x7f, + 0x78, 0x7a, 0x4b, 0x15, 0xfe, 0xb0, 0x90, 0x81, 0xe3, 0x8e, 0x1a, 0x0f, 0x60, 0xa4, 0xe8, 0xdd, + 0x0d, 0xe9, 0x21, 0x39, 0xf7, 0x32, 0x9c, 0x96, 0x43, 0xb1, 0xe9, 0x44, 0xa4, 0x2e, 0x84, 0x6d, + 0x2c, 0x02, 0x5e, 0xce, 0xf0, 0xa0, 0x99, 0x1c, 0x04, 0x9c, 0x5f, 0x8f, 0xbd, 0x49, 0x15, 0xb6, + 0x3c, 0x57, 0x1c, 0x05, 0xf5, 0x9b, 0x54, 0xb4, 0x10, 0x73, 0x98, 0x96, 0x17, 0xb5, 0x7b, 0x23, + 0x2f, 0x3e, 0x08, 0x35, 0x35, 0xde, 0xdc, 0x77, 0x5f, 0x2d, 0xf2, 0x0e, 0xdf, 0x7d, 0xb5, 0xc2, + 0x0d, 0xac, 0x83, 0x1e, 0x4d, 0x7d, 0x07, 0x0c, 0x29, 0xeb, 0x57, 0xaf, 0x2f, 0x83, 0xd9, 0x7f, + 0xde, 0x0f, 0xc3, 0xa9, 0x6c, 0x9f, 0x29, 0xb3, 0xb7, 0x75, 0xa0, 0xd9, 0x9b, 0x85, 0x6d, 0xb4, + 0x03, 0xf9, 0x6c, 0xa0, 0x11, 0xb6, 0xd1, 0x0e, 0x08, 0xe6, 0x30, 0x7a, 0xe8, 0xa8, 0x47, 0xbb, + 0xb8, 0x1d, 0x08, 0x3f, 0x54, 0x75, 0xe8, 0x98, 0x63, 0xa5, 0x58, 0x40, 0xd1, 0xc7, 0x2c, 0x18, + 0x8a, 0xd9, 0x9d, 0x0a, 0xbf, 0x34, 0x10, 0x8b, 0xfc, 0xf2, 0xd1, 0x93, 0x99, 0xaa, 0xcc, 0xb6, + 0xcc, 0x6f, 0xc9, 0x2c, 0xc1, 0x29, 0x8a, 0xe8, 0x93, 0x16, 0xd4, 0xd4, 0xeb, 0x46, 0xe2, 0x0d, + 0xd0, 0xd5, 0x62, 0x93, 0xa9, 0x72, 0x6b, 0xb3, 0xba, 0x9e, 0x52, 0x59, 0x2d, 0xb1, 0x26, 0x8c, + 0x62, 0x65, 0xd1, 0x1f, 0x38, 0x1e, 0x8b, 0x3e, 0xe4, 0x58, 0xf3, 0xdf, 0x0e, 0xb5, 0xa6, 0x13, + 0x78, 0x1b, 0x24, 0x4e, 0xb8, 0x91, 0x5d, 0xe6, 0x78, 0x96, 0x85, 0x58, 0xc3, 0xa9, 0x02, 0x10, + 0xb3, 0x0f, 0x4b, 0x0c, 0xab, 0x38, 0x53, 0x00, 0x56, 0x75, 0x31, 0x36, 0x71, 0x4c, 0x13, 0x3e, + 0xdc, 0x57, 0x13, 0xfe, 0xe0, 0x01, 0x26, 0xfc, 0x55, 0x38, 0xed, 0xb4, 0x93, 0xf0, 0x12, 0x71, + 0xfc, 0x69, 0xfe, 0xa0, 0xaf, 0x78, 0xa0, 0x7e, 0x88, 0x99, 0x85, 0x94, 0xa7, 0xc5, 0x2a, 0xf1, + 0x37, 0x3a, 0x90, 0x70, 0x7e, 0x5d, 0xfb, 0x9f, 0x5a, 0x70, 0x3a, 0x77, 0x29, 0x3c, 0xb8, 0x3e, + 0xae, 0xf6, 0x97, 0x2a, 0x70, 0x32, 0x27, 0x17, 0x30, 0xda, 0x35, 0x37, 0x89, 0x55, 0x84, 0xbb, + 0x48, 0xda, 0xfb, 0x41, 0xce, 0x4d, 0xce, 0xce, 0x38, 0xdc, 0xad, 0x9c, 0xbe, 0x19, 0x2b, 0xdf, + 0xdb, 0x9b, 0x31, 0x63, 0xad, 0xf7, 0xdd, 0xd7, 0xb5, 0x5e, 0x39, 0x60, 0xad, 0x7f, 0xc3, 0x82, + 0xf1, 0x66, 0x97, 0x07, 0x28, 0x84, 0x8d, 0xf9, 0xfa, 0xf1, 0x3c, 0x6f, 0x31, 0xf3, 0xc8, 0xed, + 0xbd, 0x89, 0xae, 0xef, 0x7e, 0xe0, 0xae, 0xbd, 0xb2, 0xbf, 0x57, 0x06, 0x96, 0x88, 0x9a, 0xe5, + 0x7b, 0xdc, 0x45, 0x1f, 0x35, 0x53, 0x8a, 0x5b, 0x45, 0xa5, 0xbf, 0xe6, 0x8d, 0xab, 0x94, 0xe4, + 0x7c, 0x04, 0xf3, 0x32, 0x94, 0x67, 0x39, 0x61, 0xa9, 0x07, 0x4e, 0xe8, 0xcb, 0xdc, 0xed, 0xe5, + 0xe2, 0x73, 0xb7, 0xd7, 0xb2, 0x79, 0xdb, 0xf7, 0x9f, 0xe2, 0xbe, 0x07, 0x72, 0x8a, 0x7f, 0xc5, + 0xe2, 0x8c, 0x27, 0x33, 0x0b, 0x5a, 0xdd, 0xb0, 0xf6, 0x51, 0x37, 0x9e, 0x82, 0x6a, 0x2c, 0x38, + 0xb3, 0x50, 0x4b, 0xb4, 0xab, 0x82, 0x28, 0xc7, 0x0a, 0x83, 0x3d, 0xee, 0xec, 0xfb, 0xe1, 0xad, + 0x0b, 0xcd, 0x56, 0xb2, 0x2b, 0x14, 0x14, 0xfd, 0xb8, 0xb3, 0x82, 0x60, 0x03, 0xcb, 0xfe, 0x7b, + 0x25, 0xbe, 0x02, 0x85, 0xbf, 0xcb, 0xf3, 0x99, 0xe7, 0x38, 0x7b, 0x77, 0x15, 0xf9, 0x30, 0x80, + 0x1b, 0x36, 0x5b, 0x54, 0x79, 0x5d, 0x0b, 0xc5, 0xf5, 0xdf, 0xa5, 0x23, 0x3f, 0xfe, 0x2f, 0xda, + 0xd3, 0x9f, 0xa1, 0xcb, 0xb0, 0x41, 0x2f, 0xc5, 0x4b, 0xcb, 0x07, 0xf2, 0xd2, 0x14, 0x5b, 0xe9, + 0xdb, 0x9f, 0xad, 0xd8, 0x7f, 0x69, 0x41, 0x4a, 0xcd, 0x42, 0x2d, 0xa8, 0xd0, 0xee, 0xee, 0x8a, + 0x1d, 0xba, 0x5c, 0x9c, 0x4e, 0x47, 0x59, 0xa3, 0x58, 0xf6, 0xec, 0x27, 0xe6, 0x84, 0x90, 0x2f, + 0xdc, 0x62, 0xf8, 0xa8, 0x5e, 0x2d, 0x8e, 0xe0, 0xa5, 0x30, 0xdc, 0xe2, 0x77, 0xd8, 0xda, 0xc5, + 0xc6, 0x7e, 0x1e, 0xc6, 0x3a, 0x3a, 0xc5, 0x5e, 0xde, 0x0b, 0xa9, 0xf4, 0xc9, 0x2c, 0x57, 0x16, + 0x25, 0x8c, 0x39, 0xcc, 0xfe, 0xba, 0x05, 0x27, 0xb2, 0xcd, 0xa3, 0x37, 0x2c, 0x18, 0x8b, 0xb3, + 0xed, 0x1d, 0xd7, 0xd8, 0x29, 0xd7, 0xd6, 0x0e, 0x10, 0xee, 0xec, 0x84, 0xfd, 0x7f, 0xc5, 0xe2, + 0xbf, 0xe1, 0x05, 0xf5, 0xf0, 0x96, 0x52, 0x4c, 0xac, 0xae, 0x8a, 0x09, 0xdd, 0x8f, 0xee, 0x26, + 0xa9, 0xb7, 0xfd, 0x8e, 0x98, 0xe3, 0x55, 0x51, 0x8e, 0x15, 0x06, 0x0b, 0xb1, 0x6c, 0x8b, 0xc7, + 0x1d, 0x32, 0x8b, 0x72, 0x4e, 0x94, 0x63, 0x85, 0x81, 0x9e, 0x85, 0x21, 0xe3, 0x23, 0xe5, 0xba, + 0x64, 0x5a, 0xbe, 0x21, 0x32, 0x63, 0x9c, 0xc2, 0x42, 0x93, 0x00, 0x4a, 0xc9, 0x91, 0x22, 0x92, + 0x59, 0xbb, 0x14, 0x27, 0x8a, 0xb1, 0x81, 0xc1, 0x02, 0x9a, 0xfd, 0x76, 0xcc, 0xae, 0x73, 0xfa, + 0x75, 0xc2, 0xe1, 0x59, 0x51, 0x86, 0x15, 0x94, 0x72, 0x93, 0xa6, 0x13, 0xb4, 0x1d, 0x9f, 0x8e, + 0x90, 0x38, 0xbf, 0xaa, 0x6d, 0xb8, 0xa4, 0x20, 0xd8, 0xc0, 0xa2, 0x5f, 0x9c, 0x78, 0x4d, 0xf2, + 0x52, 0x18, 0x48, 0x97, 0x44, 0x7d, 0xc3, 0x27, 0xca, 0xb1, 0xc2, 0xb0, 0xff, 0xc2, 0x82, 0x51, + 0x9d, 0x49, 0x81, 0xbf, 0xb1, 0x6f, 0x1e, 0xb7, 0xad, 0x03, 0x8f, 0xdb, 0xe9, 0xb8, 0xf1, 0x52, + 0x4f, 0x71, 0xe3, 0x66, 0x48, 0x77, 0x79, 0xdf, 0x90, 0xee, 0x1f, 0xd3, 0xef, 0x37, 0xf3, 0xd8, + 0xef, 0xc1, 0xbc, 0xb7, 0x9b, 0x91, 0x0d, 0xfd, 0xae, 0xa3, 0x32, 0x0e, 0x0d, 0xf1, 0x03, 0xc9, + 0xec, 0x34, 0x43, 0x12, 0x10, 0x7b, 0x19, 0x6a, 0xea, 0xa2, 0x4b, 0x9e, 0x7e, 0xad, 0xfc, 0xd3, + 0x6f, 0x4f, 0xa1, 0xa5, 0x33, 0xeb, 0xdf, 0xfc, 0xfe, 0x63, 0x6f, 0xf9, 0xa3, 0xef, 0x3f, 0xf6, + 0x96, 0xef, 0x7e, 0xff, 0xb1, 0xb7, 0x7c, 0xec, 0xf6, 0x63, 0xd6, 0x37, 0x6f, 0x3f, 0x66, 0xfd, + 0xd1, 0xed, 0xc7, 0xac, 0xef, 0xde, 0x7e, 0xcc, 0xfa, 0xde, 0xed, 0xc7, 0xac, 0x2f, 0xfc, 0xd7, + 0xc7, 0xde, 0xf2, 0x52, 0xae, 0x4f, 0x2a, 0xfd, 0xf1, 0xb4, 0x5b, 0x9f, 0xda, 0x3e, 0xcf, 0xdc, + 0x22, 0xe9, 0xf6, 0x9a, 0x32, 0xd6, 0xd4, 0x94, 0xdc, 0x5e, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, + 0x86, 0x2a, 0x22, 0x1e, 0x13, 0xec, 0x00, 0x00, } func (m *AWSAuthConfig) Marshal() (dAtA []byte, err error) { @@ -7229,6 +7229,11 @@ func (m *ApplicationSource) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0x72 i -= len(m.Ref) copy(dAtA[i:], m.Ref) i = encodeVarintGenerated(dAtA, i, uint64(len(m.Ref))) @@ -15662,6 +15667,8 @@ func (m *ApplicationSource) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = len(m.Ref) n += 1 + l + sovGenerated(uint64(l)) + l = len(m.Name) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -19035,6 +19042,7 @@ func (this *ApplicationSource) String() string { `Plugin:` + strings.Replace(this.Plugin.String(), "ApplicationSourcePlugin", "ApplicationSourcePlugin", 1) + `,`, `Chart:` + fmt.Sprintf("%v", this.Chart) + `,`, `Ref:` + fmt.Sprintf("%v", this.Ref) + `,`, + `Name:` + fmt.Sprintf("%v", this.Name) + `,`, `}`, }, "") return s @@ -27177,6 +27185,38 @@ func (m *ApplicationSource) Unmarshal(dAtA []byte) error { } m.Ref = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 14: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex 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 c0cdb149ba537..94682df4f4545 100644 --- a/pkg/apis/application/v1alpha1/generated.proto +++ b/pkg/apis/application/v1alpha1/generated.proto @@ -454,6 +454,9 @@ message ApplicationSource { // Ref is reference to another source within sources field. This field will not be used if used with a `source` tag. optional string ref = 13; + + // Name is used to refer to a source and is displayed in the UI. + optional string name = 14; } // ApplicationSourceDirectory holds options for applications of type plain YAML or Jsonnet diff --git a/pkg/apis/application/v1alpha1/types.go b/pkg/apis/application/v1alpha1/types.go index 62b45a27b314a..e9e8dcc7799de 100644 --- a/pkg/apis/application/v1alpha1/types.go +++ b/pkg/apis/application/v1alpha1/types.go @@ -190,6 +190,8 @@ type ApplicationSource struct { Chart string `json:"chart,omitempty" protobuf:"bytes,12,opt,name=chart"` // Ref is reference to another source within sources field. This field will not be used if used with a `source` tag. Ref string `json:"ref,omitempty" protobuf:"bytes,13,opt,name=ref"` + // Name is used to refer to a source and is displayed in the UI. + Name string `json:"name,omitempty" protobuf:"bytes,14,opt,name=name"` } // ApplicationSources contains list of required information about the sources of an application diff --git a/ui/src/app/applications/components/application-parameters/application-parameters.tsx b/ui/src/app/applications/components/application-parameters/application-parameters.tsx index 041880f007928..1292164e6d776 100644 --- a/ui/src/app/applications/components/application-parameters/application-parameters.tsx +++ b/ui/src/app/applications/components/application-parameters/application-parameters.tsx @@ -307,7 +307,7 @@ export const ApplicationParameters = (props: {
-
Source {index + 1 + ': ' + appSource.repoURL}
+
Source {index + 1 + (appSource.name ? ' - ' + appSource.name : '') + ': ' + appSource.repoURL}
{(appSource.path ? 'PATH=' + appSource.path : '') + (appSource.targetRevision ? (appSource.path ? ', ' : '') + 'REVISION=' + appSource.targetRevision : '')}
@@ -586,6 +586,7 @@ function gatherCoreSourceDetails(i: number, attributes: EditablePanelItem[], sou const repoUrlField = 'spec.sources[' + i + '].repoURL'; const sourcesPathField = 'spec.sources[' + i + '].path'; const refField = 'spec.sources[' + i + '].ref'; + const nameField = 'spec.sources[' + i + '].name'; const chartField = 'spec.sources[' + i + '].chart'; const revisionField = 'spec.sources[' + i + '].targetRevision'; // For single source apps using the source field, these fields are shown in the Summary tab. @@ -595,6 +596,11 @@ function gatherCoreSourceDetails(i: number, attributes: EditablePanelItem[], sou view: , edit: (formApi: FormApi) => }); + attributes.push({ + title: 'NAME', + view: {source?.name}, + edit: (formApi: FormApi) => + }); if (isHelm) { attributes.push({ title: 'CHART', diff --git a/ui/src/app/shared/models.ts b/ui/src/app/shared/models.ts index 9ee1df40452e4..6d953236d12cf 100644 --- a/ui/src/app/shared/models.ts +++ b/ui/src/app/shared/models.ts @@ -210,6 +210,8 @@ export interface ApplicationSource { directory?: ApplicationSourceDirectory; ref?: string; + + name?: string; } export interface ApplicationSourceHelm {