diff --git a/applicationset/generators/git.go b/applicationset/generators/git.go index d119824f40174..bfbac51fc1b97 100644 --- a/applicationset/generators/git.go +++ b/applicationset/generators/git.go @@ -114,7 +114,7 @@ func (g *GitGenerator) generateParamsForGitDirectories(appSetGenerator *argoproj requestedApps := g.filterApps(appSetGenerator.Git.Directories, allPaths) - res, err := g.generateParamsFromApps(requestedApps, appSetGenerator, useGoTemplate, goTemplateOptions) + res, err := g.generateParamsFromApps(requestedApps, appSetGenerator, useGoTemplate, noRevisionCache, verifyCommit, goTemplateOptions) if err != nil { return nil, fmt.Errorf("error generating params from apps: %w", err) } @@ -147,7 +147,7 @@ func (g *GitGenerator) generateParamsForGitFiles(appSetGenerator *argoprojiov1al res := []map[string]interface{}{} for _, path := range allPaths { // A JSON / YAML file path can contain multiple sets of parameters (ie it is an array) - paramsArray, err := g.generateParamsFromGitFile(path, allFiles[path], appSetGenerator.Git.Values, useGoTemplate, goTemplateOptions, appSetGenerator.Git.PathParamPrefix) + paramsArray, err := g.generateParamsFromGitFile(path, allFiles[path], appSetGenerator.Git, goTemplateOptions, useGoTemplate, noRevisionCache, verifyCommit) if err != nil { return nil, fmt.Errorf("unable to process file '%s': %w", path, err) } @@ -157,22 +157,12 @@ func (g *GitGenerator) generateParamsForGitFiles(appSetGenerator *argoprojiov1al return res, nil } -func (g *GitGenerator) generateParamsFromGitFile(filePath string, fileContent []byte, values map[string]string, useGoTemplate bool, goTemplateOptions []string, pathParamPrefix string) ([]map[string]interface{}, error) { - objectsFound := []map[string]interface{}{} - - // First, we attempt to parse as an array - err := yaml.Unmarshal(fileContent, &objectsFound) +func (g *GitGenerator) generateParamsFromGitFile(filePath string, fileContent []byte, git *argoprojiov1alpha1.GitGenerator, goTemplateOptions []string, + useGoTemplate, noRevisionCache, verifyCommit bool, +) ([]map[string]interface{}, error) { + objectsFound, err := unMarshalYamlFile(fileContent) if err != nil { - // If unable to parse as an array, attempt to parse as a single object - singleObj := make(map[string]interface{}) - err = yaml.Unmarshal(fileContent, &singleObj) - if err != nil { - return nil, fmt.Errorf("unable to parse file: %w", err) - } - objectsFound = append(objectsFound, singleObj) - } else if len(objectsFound) == 0 { - // If file is valid but empty, add a default empty item - objectsFound = append(objectsFound, map[string]interface{}{}) + return nil, err } res := []map[string]interface{}{} @@ -193,8 +183,8 @@ func (g *GitGenerator) generateParamsFromGitFile(filePath string, fileContent [] paramPath["basenameNormalized"] = utils.SanitizeName(path.Base(paramPath["path"].(string))) paramPath["filenameNormalized"] = utils.SanitizeName(path.Base(paramPath["filename"].(string))) paramPath["segments"] = strings.Split(paramPath["path"].(string), "/") - if pathParamPrefix != "" { - params[pathParamPrefix] = map[string]interface{}{"path": paramPath} + if git.PathParamPrefix != "" { + params[git.PathParamPrefix] = map[string]interface{}{"path": paramPath} } else { params["path"] = paramPath } @@ -207,8 +197,8 @@ func (g *GitGenerator) generateParamsFromGitFile(filePath string, fileContent [] params[k] = fmt.Sprintf("%v", v) } pathParamName := "path" - if pathParamPrefix != "" { - pathParamName = pathParamPrefix + "." + pathParamName + if git.PathParamPrefix != "" { + pathParamName = git.PathParamPrefix + "." + pathParamName } params[pathParamName] = path.Dir(filePath) params[pathParamName+".basename"] = path.Base(params[pathParamName].(string)) @@ -222,17 +212,108 @@ func (g *GitGenerator) generateParamsFromGitFile(filePath string, fileContent [] } } - err := appendTemplatedValues(values, params, useGoTemplate, goTemplateOptions) + err := appendTemplatedValues(git.Values, params, useGoTemplate, goTemplateOptions) if err != nil { return nil, fmt.Errorf("failed to append templated values: %w", err) } + // Get the common parameters from files, removing duplicates + // We need to resolve them for each git file, as they could depend on parameters inside + err = g.appendExtraParams(git, goTemplateOptions, useGoTemplate, noRevisionCache, verifyCommit, params) + if err != nil { + return nil, err + } + res = append(res, params) } return res, nil } +func (g *GitGenerator) appendExtraParams(git *argoprojiov1alpha1.GitGenerator, goTemplateOptions []string, useGoTemplate bool, noRevisionCache bool, verifyCommit bool, params map[string]interface{}) error { + extraParams, err := g.getExtraParams(git, goTemplateOptions, useGoTemplate, noRevisionCache, verifyCommit, params) + if err != nil { + return fmt.Errorf("failed to append extra parameters from files: %w", err) + } + if len(extraParams) == 0 { + return nil + } + if useGoTemplate { + params["extraParams"] = extraParams + } else { + flat, err := flatten.Flatten(extraParams, "", flatten.DotStyle) + if err != nil { + return fmt.Errorf("error flattening extra params: %w", err) + } + for k, v := range flat { + params["extraParams."+fmt.Sprintf("%v", k)] = fmt.Sprintf("%v", v) + } + } + return nil +} + +func unMarshalYamlFile(fileContent []byte) ([]map[string]interface{}, error) { + objectsFound := []map[string]interface{}{} + + // First, we attempt to parse as an array + err := yaml.Unmarshal(fileContent, &objectsFound) + if err != nil { + // If unable to parse as an array, attempt to parse as a single object + singleObj := make(map[string]interface{}) + err = yaml.Unmarshal(fileContent, &singleObj) + if err != nil { + return nil, fmt.Errorf("unable to parse file: %w", err) + } + objectsFound = append(objectsFound, singleObj) + } else if len(objectsFound) == 0 { + // If file is valid but empty, add a default empty item + objectsFound = append(objectsFound, map[string]interface{}{}) + } + return objectsFound, nil +} + +func (g *GitGenerator) getExtraParams(git *argoprojiov1alpha1.GitGenerator, goTemplateOptions []string, + useGoTemplate, noRevisionCache, verifyCommit bool, params map[string]interface{}, +) (map[string]interface{}, error) { + extraParams := map[string]interface{}{} + extraParamFilesContent := map[string][]byte{} + + // Keep the order to apply the params in the list of the files provided + for _, requestedExtraFilePath := range git.ExtraParameterFiles { + templatedPath, err := replaceTemplatedString(requestedExtraFilePath, params, useGoTemplate, goTemplateOptions) + if err != nil { + return nil, err + } + + files, err := g.repos.GetFiles(context.TODO(), git.RepoURL, git.Revision, templatedPath, noRevisionCache, verifyCommit) + if err != nil { + return nil, err + } + for extraFilePath, content := range files { + extraParamFilesContent[extraFilePath] = content + } + // Extract the unduplicated map into a list, and sort by path to ensure a deterministic + // processing order in the subsequent step + allPaths := []string{} + for path := range files { + allPaths = append(allPaths, path) + } + sort.Strings(allPaths) + + // Merge yaml based on the order in the list: the further in the list overrides the ones before + for _, path := range allPaths { + fileObjects, err := unMarshalYamlFile(extraParamFilesContent[path]) + if err != nil { + return nil, err + } + for _, object := range fileObjects { + extraParams = utils.CombineMaps(extraParams, object) + } + } + } + return extraParams, nil +} + func (g *GitGenerator) filterApps(directories []argoprojiov1alpha1.GitDirectoryGeneratorItem, allPaths []string) []string { res := []string{} for _, appPath := range allPaths { @@ -261,7 +342,7 @@ func (g *GitGenerator) filterApps(directories []argoprojiov1alpha1.GitDirectoryG return res } -func (g *GitGenerator) generateParamsFromApps(requestedApps []string, appSetGenerator *argoprojiov1alpha1.ApplicationSetGenerator, useGoTemplate bool, goTemplateOptions []string) ([]map[string]interface{}, error) { +func (g *GitGenerator) generateParamsFromApps(requestedApps []string, appSetGenerator *argoprojiov1alpha1.ApplicationSetGenerator, useGoTemplate, noRevisionCache, verifyCommit bool, goTemplateOptions []string) ([]map[string]interface{}, error) { res := make([]map[string]interface{}, len(requestedApps)) for i, a := range requestedApps { params := make(map[string]interface{}, 5) @@ -297,6 +378,13 @@ func (g *GitGenerator) generateParamsFromApps(requestedApps []string, appSetGene return nil, fmt.Errorf("failed to append templated values: %w", err) } + // Get the common parameters from files, removing duplicates + // We need to resolve them for each git file, as they could depend on parameters inside + err = g.appendExtraParams(appSetGenerator.Git, goTemplateOptions, useGoTemplate, noRevisionCache, verifyCommit, params) + if err != nil { + return nil, err + } + res[i] = params } diff --git a/applicationset/generators/git_test.go b/applicationset/generators/git_test.go index cd0c14d8443f0..9108a8a493939 100644 --- a/applicationset/generators/git_test.go +++ b/applicationset/generators/git_test.go @@ -2,6 +2,7 @@ package generators import ( "fmt" + "sort" "testing" "github.com/stretchr/testify/assert" @@ -28,6 +29,9 @@ foo: useGoTemplate bool goTemplateOptions []string pathParamPrefix string + noRevisionCache bool + verifyCommit bool + extraParamFiles map[string]interface{} } tests := []struct { name string @@ -165,10 +169,114 @@ foo: }, }, }, + { + // Extra param files should be merged in the order : firstConfig.json, secondConfig.json (alphabetical sorted in the same glob), override.yaml + name: "extra params with go template", + args: args{ + filePath: "path/dir/file_name.yaml", + fileContent: defaultContent, + values: map[string]string{}, + useGoTemplate: true, + pathParamPrefix: "myRepo", + extraParamFiles: map[string]interface{}{ + "path/dir/**/*.json": map[string][]byte{ + "path/dir/mypath/other/firstConfig.json": []byte(`{ + "firstKey": { + "foo": "bar", + "foo2": "bar2", + "foo3": true, + "foo4": { + "foo4foo": "barbar1", + "foo4foo2": "barbar2", + }, + }, + "secondKey": false, + "thirdKey": "thirdValue", +}`), + "path/dir/mypath/other/secondConfig.json": []byte(`{ + "firstKey": { + "foo": "barbarbar", + }, + "thirdKey": "thirdValueOverriden", +}`), + }, + "path/otherdir/override.yaml": map[string][]byte{ + "path/otherdir/override.yaml": []byte(` +firstKey: + foo2: bar2Override + foo4: + foo4foo2: barbar2Override + foo5foo3: barbar3Override +secondKey: true +otherKey: otherValue +`), + }, + }, + }, + want: []map[string]interface{}{ + { + "foo": map[string]interface{}{ + "bar": "baz", + }, + "myRepo": map[string]interface{}{ + "path": map[string]interface{}{ + "path": "path/dir", + "basename": "dir", + "filename": "file_name.yaml", + "basenameNormalized": "dir", + "filenameNormalized": "file-name.yaml", + "segments": []string{ + "path", + "dir", + }, + }, + }, + "extraParams": map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo": "barbarbar", + "foo2": "bar2Override", + "foo3": true, + "foo4": map[string]interface{}{ + "foo4foo": "barbar1", + "foo4foo2": "barbar2Override", + "foo5foo3": "barbar3Override", + }, + }, + "secondKey": true, + "thirdKey": "thirdValueOverriden", + "otherKey": "otherValue", + }, + }, + }, + }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { - params, err := (*GitGenerator)(nil).generateParamsFromGitFile(tt.args.filePath, tt.args.fileContent, tt.args.values, tt.args.useGoTemplate, tt.args.goTemplateOptions, tt.args.pathParamPrefix) + argoCDServiceMock := mocks.Repos{} + + var extraParamFiles []string + if len(tt.args.extraParamFiles) != 0 { + keys := make([]string, 0, len(tt.args.extraParamFiles)) + for k := range tt.args.extraParamFiles { + keys = append(keys, k) + } + sort.Strings(keys) + extraParamFiles = make([]string, 0) + for _, key := range keys { + argoCDServiceMock.On("GetFiles", mock.Anything, mock.Anything, mock.Anything, key, mock.Anything, mock.Anything). + Return(tt.args.extraParamFiles[key], nil) + extraParamFiles = append(extraParamFiles, key) + } + } + + git := argoprojiov1alpha1.GitGenerator{ + Values: tt.args.values, + PathParamPrefix: tt.args.pathParamPrefix, + ExtraParameterFiles: extraParamFiles, + } + + gitGenerator := NewGitGenerator(&argoCDServiceMock, "").(*GitGenerator) + params, err := gitGenerator.generateParamsFromGitFile(tt.args.filePath, tt.args.fileContent, &git, tt.args.goTemplateOptions, tt.args.useGoTemplate, tt.args.noRevisionCache, tt.args.verifyCommit) if (err != nil) != tt.wantErr { t.Errorf("GitGenerator.generateParamsFromGitFile() error = %v, wantErr %v", err, tt.wantErr) return @@ -178,6 +286,139 @@ foo: } } +func TestGenerateParamsFromGitFileWithExtraParamsAndTemplatizedPath(t *testing.T) { + defaultContent := []byte(` +foo: + bar: baz +`) + type args struct { + filePath string + fileContent []byte + values map[string]string + useGoTemplate bool + goTemplateOptions []string + pathParamPrefix string + noRevisionCache bool + verifyCommit bool + templatizedPath string + extraParamFiles map[string]interface{} + } + tests := []struct { + name string + args args + want []map[string]interface{} + wantErr string + }{ + { + name: "extra params with templatized path", + args: args{ + filePath: "path/dir/file_name.yaml", + fileContent: defaultContent, + values: map[string]string{}, + useGoTemplate: true, + goTemplateOptions: []string{"missingkey=error"}, + pathParamPrefix: "myRepo", + templatizedPath: "path/dir/{{.foo.bar}}.json", + extraParamFiles: map[string]interface{}{ + "path/dir/baz.json": map[string][]byte{ + "path/dir/baz.json": []byte(`{ + "firstKey": { + "foo": "bar", + "foo2": "bar2", + "foo3": true, + "foo4": { + "foo4foo": "barbar1", + "foo4foo2": "barbar2", + }, + }, + "secondKey": false, + "thirdKey": "thirdValue", +}`), + }, + }, + }, + want: []map[string]interface{}{ + { + "foo": map[string]interface{}{ + "bar": "baz", + }, + "myRepo": map[string]interface{}{ + "path": map[string]interface{}{ + "path": "path/dir", + "basename": "dir", + "filename": "file_name.yaml", + "basenameNormalized": "dir", + "filenameNormalized": "file-name.yaml", + "segments": []string{ + "path", + "dir", + }, + }, + }, + "extraParams": map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo": "bar", + "foo2": "bar2", + "foo3": true, + "foo4": map[string]interface{}{ + "foo4foo": "barbar1", + "foo4foo2": "barbar2", + }, + }, + "secondKey": false, + "thirdKey": "thirdValue", + }, + }, + }, + }, + { + name: "extra params with templatized path, value not found", + args: args{ + filePath: "path/dir/file_name.yaml", + fileContent: defaultContent, + values: map[string]string{}, + useGoTemplate: true, + goTemplateOptions: []string{"missingkey=error"}, + pathParamPrefix: "myRepo", + templatizedPath: "path/dir/{{.foo.barNotFound}}.json", + extraParamFiles: map[string]interface{}{}, + }, + wantErr: "failed to append extra parameters from files: failed to replace templated string with rendered values: failed to execute go template path/dir/{{.foo.barNotFound}}.json: template: :1:15: executing \"\" at <.foo.barNotFound>: map has no entry for key \"barNotFound\"", + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + argoCDServiceMock := mocks.Repos{} + + if len(tt.args.extraParamFiles) != 0 { + for fileName, extraParamFileContent := range tt.args.extraParamFiles { + argoCDServiceMock.On("GetFiles", mock.Anything, mock.Anything, mock.Anything, fileName, mock.Anything, mock.Anything). + Return(extraParamFileContent, nil) + } + } + + git := argoprojiov1alpha1.GitGenerator{ + Values: tt.args.values, + PathParamPrefix: tt.args.pathParamPrefix, + } + if tt.args.templatizedPath != "" { + git.ExtraParameterFiles = []string{tt.args.templatizedPath} + } + + gitGenerator := NewGitGenerator(&argoCDServiceMock, "").(*GitGenerator) + params, err := gitGenerator.generateParamsFromGitFile(tt.args.filePath, tt.args.fileContent, &git, tt.args.goTemplateOptions, tt.args.useGoTemplate, tt.args.noRevisionCache, tt.args.verifyCommit) + if err != nil { + if tt.wantErr == "" { + t.Errorf("GitGenerator.generateParamsFromGitFile() error = %v, wantErr %v", err, tt.wantErr) + return + } + require.EqualError(t, err, tt.wantErr) + } + assert.Equal(t, tt.want, params) + }) + } +} + func TestGitGenerateParamsFromDirectories(t *testing.T) { cases := []struct { name string @@ -186,6 +427,7 @@ func TestGitGenerateParamsFromDirectories(t *testing.T) { repoApps []string repoError error values map[string]string + extraParamFiles map[string][]byte expected []map[string]interface{} expectedError error }{ @@ -311,6 +553,88 @@ func TestGitGenerateParamsFromDirectories(t *testing.T) { expected: []map[string]interface{}{}, expectedError: fmt.Errorf("error generating params from git: error getting directories from repo: error"), }, + { + name: "With extra params", + directories: []argoprojiov1alpha1.GitDirectoryGeneratorItem{{Path: "*"}}, + repoApps: []string{ + "app1", + "app2", + "app_3", + "p1/app4", + }, + repoError: nil, + extraParamFiles: map[string][]byte{ + "path/dir/**/*/json": []byte(`{ +"firstKey": { + "foo": "bar", + "foo2": "bar2", + "foo3": true, + "foo4": { + "foo4foo": "barbar1", + "foo4foo2": "barbar2", + }, +}, +"secondKey": false, +"thirdKey": "thirdValue", +}`), + "path/otherdir/override.yaml": []byte(` +firstKey: + foo2: bar2Override + foo4: + foo4foo2: barbar2Override + foo5foo3: barbar3Override +secondKey: true +otherKey: otherValue +`), + }, + expected: []map[string]interface{}{ + { + "path": "app1", + "path.basename": "app1", + "path.basenameNormalized": "app1", + "path[0]": "app1", + "extraParams.firstKey.foo": "bar", + "extraParams.firstKey.foo2": "bar2Override", + "extraParams.firstKey.foo3": "true", + "extraParams.firstKey.foo4.foo4foo": "barbar1", + "extraParams.firstKey.foo4.foo4foo2": "barbar2Override", + "extraParams.firstKey.foo4.foo5foo3": "barbar3Override", + "extraParams.secondKey": "true", + "extraParams.thirdKey": "thirdValue", + "extraParams.otherKey": "otherValue", + }, + { + "path": "app2", + "path.basename": "app2", + "path.basenameNormalized": "app2", + "path[0]": "app2", + "extraParams.firstKey.foo": "bar", + "extraParams.firstKey.foo2": "bar2Override", + "extraParams.firstKey.foo3": "true", + "extraParams.firstKey.foo4.foo4foo": "barbar1", + "extraParams.firstKey.foo4.foo4foo2": "barbar2Override", + "extraParams.firstKey.foo4.foo5foo3": "barbar3Override", + "extraParams.secondKey": "true", + "extraParams.thirdKey": "thirdValue", + "extraParams.otherKey": "otherValue", + }, + { + "path": "app_3", + "path.basename": "app_3", + "path.basenameNormalized": "app-3", + "path[0]": "app_3", + "extraParams.firstKey.foo": "bar", + "extraParams.firstKey.foo2": "bar2Override", + "extraParams.firstKey.foo3": "true", + "extraParams.firstKey.foo4.foo4foo": "barbar1", + "extraParams.firstKey.foo4.foo4foo2": "barbar2Override", + "extraParams.firstKey.foo4.foo5foo3": "barbar3Override", + "extraParams.secondKey": "true", + "extraParams.thirdKey": "thirdValue", + "extraParams.otherKey": "otherValue", + }, + }, + }, } for _, testCase := range cases { @@ -323,6 +647,24 @@ func TestGitGenerateParamsFromDirectories(t *testing.T) { argoCDServiceMock.On("GetDirectories", mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return(testCaseCopy.repoApps, testCaseCopy.repoError) + var extraParamFiles []string + if len(testCaseCopy.extraParamFiles) != 0 { + keys := make([]string, 0, len(testCaseCopy.extraParamFiles)) + for k := range testCaseCopy.extraParamFiles { + keys = append(keys, k) + } + sort.Strings(keys) + extraParamFiles = make([]string, 0) + for _, key := range keys { + extraParamFiles = append(extraParamFiles, key) + + argoCDServiceMock.On("GetFiles", mock.Anything, mock.Anything, mock.Anything, key, mock.Anything, mock.Anything). + Return(map[string][]byte{ + key: testCaseCopy.extraParamFiles[key], + }, nil) + } + } + gitGenerator := NewGitGenerator(&argoCDServiceMock, "") applicationSetInfo := argoprojiov1alpha1.ApplicationSet{ ObjectMeta: metav1.ObjectMeta{ @@ -331,11 +673,12 @@ func TestGitGenerateParamsFromDirectories(t *testing.T) { Spec: argoprojiov1alpha1.ApplicationSetSpec{ Generators: []argoprojiov1alpha1.ApplicationSetGenerator{{ Git: &argoprojiov1alpha1.GitGenerator{ - RepoURL: "RepoURL", - Revision: "Revision", - Directories: testCaseCopy.directories, - PathParamPrefix: testCaseCopy.pathParamPrefix, - Values: testCaseCopy.values, + RepoURL: "RepoURL", + Revision: "Revision", + Directories: testCaseCopy.directories, + PathParamPrefix: testCaseCopy.pathParamPrefix, + Values: testCaseCopy.values, + ExtraParameterFiles: extraParamFiles, }, }}, }, @@ -369,6 +712,7 @@ func TestGitGenerateParamsFromDirectoriesGoTemplate(t *testing.T) { pathParamPrefix string repoApps []string repoError error + extraParamFiles map[string][]byte expected []map[string]interface{} expectedError error }{ @@ -612,6 +956,119 @@ func TestGitGenerateParamsFromDirectoriesGoTemplate(t *testing.T) { expected: []map[string]interface{}{}, expectedError: fmt.Errorf("error generating params from git: error getting directories from repo: error"), }, + { + name: "With extra params", + directories: []argoprojiov1alpha1.GitDirectoryGeneratorItem{{Path: "*"}}, + repoApps: []string{ + "app1", + "app2", + "app_3", + "p1/app4", + }, + extraParamFiles: map[string][]byte{ + "path/dir/**/*/json": []byte(`{ +"firstKey": { + "foo": "bar", + "foo2": "bar2", + "foo3": true, + "foo4": { + "foo4foo": "barbar1", + "foo4foo2": "barbar2", + }, +}, +"secondKey": false, +"thirdKey": "thirdValue", +}`), + "path/otherdir/override.yaml": []byte(` +firstKey: + foo2: bar2Override + foo4: + foo4foo2: barbar2Override + foo5foo3: barbar3Override +secondKey: true +otherKey: otherValue +`), + }, + repoError: nil, + expected: []map[string]interface{}{ + { + "path": map[string]interface{}{ + "path": "app1", + "basename": "app1", + "basenameNormalized": "app1", + "segments": []string{ + "app1", + }, + }, + "extraParams": map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo": "bar", + "foo2": "bar2Override", + "foo3": true, + "foo4": map[string]interface{}{ + "foo4foo": "barbar1", + "foo4foo2": "barbar2Override", + "foo5foo3": "barbar3Override", + }, + }, + "secondKey": true, + "thirdKey": "thirdValue", + "otherKey": "otherValue", + }, + }, + { + "path": map[string]interface{}{ + "path": "app2", + "basename": "app2", + "basenameNormalized": "app2", + "segments": []string{ + "app2", + }, + }, + "extraParams": map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo": "bar", + "foo2": "bar2Override", + "foo3": true, + "foo4": map[string]interface{}{ + "foo4foo": "barbar1", + "foo4foo2": "barbar2Override", + "foo5foo3": "barbar3Override", + }, + }, + "secondKey": true, + "thirdKey": "thirdValue", + "otherKey": "otherValue", + }, + }, + { + "path": map[string]interface{}{ + "path": "app_3", + "basename": "app_3", + "basenameNormalized": "app-3", + "segments": []string{ + "app_3", + }, + }, + "extraParams": map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo": "bar", + "foo2": "bar2Override", + "foo3": true, + "foo4": map[string]interface{}{ + "foo4foo": "barbar1", + "foo4foo2": "barbar2Override", + "foo5foo3": "barbar3Override", + }, + }, + "secondKey": true, + "thirdKey": "thirdValue", + "otherKey": "otherValue", + }, + }, + }, + expectedError: nil, + }, } for _, testCase := range cases { @@ -623,6 +1080,25 @@ func TestGitGenerateParamsFromDirectoriesGoTemplate(t *testing.T) { argoCDServiceMock := mocks.Repos{} argoCDServiceMock.On("GetDirectories", mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return(testCaseCopy.repoApps, testCaseCopy.repoError) + var extraParamFiles []string + + if len(testCaseCopy.extraParamFiles) != 0 { + // Make sure we process the extra files in the same order + keys := make([]string, 0, len(testCaseCopy.extraParamFiles)) + for k := range testCaseCopy.extraParamFiles { + keys = append(keys, k) + } + sort.Strings(keys) + extraParamFiles = make([]string, 0) + for _, key := range keys { + extraParamFiles = append(extraParamFiles, key) + + argoCDServiceMock.On("GetFiles", mock.Anything, mock.Anything, mock.Anything, key, mock.Anything, mock.Anything). + Return(map[string][]byte{ + key: testCaseCopy.extraParamFiles[key], + }, nil) + } + } gitGenerator := NewGitGenerator(&argoCDServiceMock, "") applicationSetInfo := argoprojiov1alpha1.ApplicationSet{ @@ -633,10 +1109,11 @@ func TestGitGenerateParamsFromDirectoriesGoTemplate(t *testing.T) { GoTemplate: true, Generators: []argoprojiov1alpha1.ApplicationSetGenerator{{ Git: &argoprojiov1alpha1.GitGenerator{ - RepoURL: "RepoURL", - Revision: "Revision", - Directories: testCaseCopy.directories, - PathParamPrefix: testCaseCopy.pathParamPrefix, + RepoURL: "RepoURL", + Revision: "Revision", + Directories: testCaseCopy.directories, + PathParamPrefix: testCaseCopy.pathParamPrefix, + ExtraParameterFiles: extraParamFiles, }, }}, }, @@ -671,10 +1148,11 @@ func TestGitGenerateParamsFromFiles(t *testing.T) { // repoFileContents maps repo path to the literal contents of that path repoFileContents map[string][]byte // if repoPathsError is non-nil, the call to GetPaths(...) will return this error value - repoPathsError error - values map[string]string - expected []map[string]interface{} - expectedError error + repoPathsError error + values map[string]string + extraParamFiles map[string][]byte + expected []map[string]interface{} + expectedError error }{ { name: "happy flow: create params from git files", @@ -977,6 +1455,108 @@ cluster: }, expectedError: nil, }, + { + name: "with extra params", + files: []argoprojiov1alpha1.GitFileGeneratorItem{{Path: "**/config.json"}}, + repoFileContents: map[string][]byte{ + "cluster-config/production/config.json": []byte(`{ + "cluster": { + "owner": "john.doe@example.com", + "name": "production", + "address": "https://kubernetes.default.svc" + }, + "key1": "val1", + "key2": { + "key2_1": "val2_1", + "key2_2": { + "key2_2_1": "val2_2_1" + } + }, + "key3": 123 +}`), + "cluster-config/staging/config.json": []byte(`{ + "cluster": { + "owner": "foo.bar@example.com", + "name": "staging", + "address": "https://kubernetes.default.svc" + } +}`), + }, + extraParamFiles: map[string][]byte{ + "path/dir/**/*/json": []byte(`{ +"firstKey": { + "foo": "bar", + "foo2": "bar2", + "foo3": true, + "foo4": { + "foo4foo": "barbar1", + "foo4foo2": "barbar2", + }, +}, +"secondKey": false, +"thirdKey": "thirdValue", +}`), + "path/otherdir/override.yaml": []byte(` +firstKey: + foo2: bar2Override + foo4: + foo4foo2: barbar2Override + foo5foo3: barbar3Override +secondKey: true +otherKey: otherValue +`), + }, + repoPathsError: nil, + expected: []map[string]interface{}{ + { + "cluster.owner": "john.doe@example.com", + "cluster.name": "production", + "cluster.address": "https://kubernetes.default.svc", + "key1": "val1", + "key2.key2_1": "val2_1", + "key2.key2_2.key2_2_1": "val2_2_1", + "key3": "123", + "path": "cluster-config/production", + "path.basename": "production", + "path[0]": "cluster-config", + "path[1]": "production", + "path.basenameNormalized": "production", + "path.filename": "config.json", + "path.filenameNormalized": "config.json", + "extraParams.firstKey.foo": "bar", + "extraParams.firstKey.foo2": "bar2Override", + "extraParams.firstKey.foo3": "true", + "extraParams.firstKey.foo4.foo4foo": "barbar1", + "extraParams.firstKey.foo4.foo4foo2": "barbar2Override", + "extraParams.firstKey.foo4.foo5foo3": "barbar3Override", + "extraParams.secondKey": "true", + "extraParams.thirdKey": "thirdValue", + "extraParams.otherKey": "otherValue", + }, + { + "cluster.owner": "foo.bar@example.com", + "cluster.name": "staging", + "cluster.address": "https://kubernetes.default.svc", + "path": "cluster-config/staging", + "path.basename": "staging", + "path[0]": "cluster-config", + "path[1]": "staging", + "path.basenameNormalized": "staging", + "path.filename": "config.json", + "path.filenameNormalized": "config.json", + "extraParams.firstKey.foo": "bar", + "extraParams.firstKey.foo2": "bar2Override", + "extraParams.firstKey.foo3": "true", + "extraParams.firstKey.foo4.foo4foo": "barbar1", + "extraParams.firstKey.foo4.foo4foo2": "barbar2Override", + "extraParams.firstKey.foo4.foo5foo3": "barbar3Override", + "extraParams.secondKey": "true", + "extraParams.thirdKey": "thirdValue", + "extraParams.otherKey": "otherValue", + }, + }, + expectedError: nil, + }, } for _, testCase := range cases { @@ -986,8 +1566,25 @@ cluster: t.Parallel() argoCDServiceMock := mocks.Repos{} - argoCDServiceMock.On("GetFiles", mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything). + argoCDServiceMock.On("GetFiles", mock.Anything, mock.Anything, mock.Anything, testCaseCopy.files[0].Path, mock.Anything, mock.Anything). Return(testCaseCopy.repoFileContents, testCaseCopy.repoPathsError) + var extraParamFiles []string + if len(testCaseCopy.extraParamFiles) != 0 { + keys := make([]string, 0, len(testCaseCopy.extraParamFiles)) + for k := range testCaseCopy.extraParamFiles { + keys = append(keys, k) + } + sort.Strings(keys) + extraParamFiles = make([]string, 0) + for _, key := range keys { + extraParamFiles = append(extraParamFiles, key) + + argoCDServiceMock.On("GetFiles", mock.Anything, mock.Anything, mock.Anything, key, mock.Anything, mock.Anything). + Return(map[string][]byte{ + key: testCaseCopy.extraParamFiles[key], + }, nil) + } + } gitGenerator := NewGitGenerator(&argoCDServiceMock, "") applicationSetInfo := argoprojiov1alpha1.ApplicationSet{ @@ -997,10 +1594,11 @@ cluster: Spec: argoprojiov1alpha1.ApplicationSetSpec{ Generators: []argoprojiov1alpha1.ApplicationSetGenerator{{ Git: &argoprojiov1alpha1.GitGenerator{ - RepoURL: "RepoURL", - Revision: "Revision", - Files: testCaseCopy.files, - Values: testCaseCopy.values, + RepoURL: "RepoURL", + Revision: "Revision", + Files: testCaseCopy.files, + Values: testCaseCopy.values, + ExtraParameterFiles: extraParamFiles, }, }}, }, @@ -1036,9 +1634,10 @@ func TestGitGenerateParamsFromFilesGoTemplate(t *testing.T) { // repoFileContents maps repo path to the literal contents of that path repoFileContents map[string][]byte // if repoPathsError is non-nil, the call to GetPaths(...) will return this error value - repoPathsError error - expected []map[string]interface{} - expectedError error + repoPathsError error + extraParamFiles map[string][]byte + expected []map[string]interface{} + expectedError error }{ { name: "happy flow: create params from git files", @@ -1333,6 +1932,136 @@ cluster: }, expectedError: nil, }, + { + name: "with extra params", + files: []argoprojiov1alpha1.GitFileGeneratorItem{{Path: "**/config.json"}}, + repoFileContents: map[string][]byte{ + "cluster-config/production/config.json": []byte(`{ + "cluster": { + "owner": "john.doe@example.com", + "name": "production", + "address": "https://kubernetes.default.svc" + }, + "key1": "val1", + "key2": { + "key2_1": "val2_1", + "key2_2": { + "key2_2_1": "val2_2_1" + } + }, + "key3": 123 +}`), + "cluster-config/staging/config.json": []byte(`{ + "cluster": { + "owner": "foo.bar@example.com", + "name": "staging", + "address": "https://kubernetes.default.svc" + } +}`), + }, + extraParamFiles: map[string][]byte{ + "path/dir/**/*/json": []byte(`{ +"firstKey": { + "foo": "bar", + "foo2": "bar2", + "foo3": true, + "foo4": { + "foo4foo": "barbar1", + "foo4foo2": "barbar2", + }, +}, +"secondKey": false, +"thirdKey": "thirdValue", +}`), + "path/otherdir/override.yaml": []byte(` +firstKey: + foo2: bar2Override + foo4: + foo4foo2: barbar2Override + foo5foo3: barbar3Override +secondKey: true +otherKey: otherValue +`), + }, + repoPathsError: nil, + expected: []map[string]interface{}{ + { + "cluster": map[string]interface{}{ + "owner": "john.doe@example.com", + "name": "production", + "address": "https://kubernetes.default.svc", + }, + "key1": "val1", + "key2": map[string]interface{}{ + "key2_1": "val2_1", + "key2_2": map[string]interface{}{ + "key2_2_1": "val2_2_1", + }, + }, + "key3": float64(123), + "path": map[string]interface{}{ + "path": "cluster-config/production", + "basename": "production", + "filename": "config.json", + "basenameNormalized": "production", + "filenameNormalized": "config.json", + "segments": []string{ + "cluster-config", + "production", + }, + }, + "extraParams": map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo": "bar", + "foo2": "bar2Override", + "foo3": true, + "foo4": map[string]interface{}{ + "foo4foo": "barbar1", + "foo4foo2": "barbar2Override", + "foo5foo3": "barbar3Override", + }, + }, + "secondKey": true, + "thirdKey": "thirdValue", + "otherKey": "otherValue", + }, + }, + { + "cluster": map[string]interface{}{ + "owner": "foo.bar@example.com", + "name": "staging", + "address": "https://kubernetes.default.svc", + }, + "path": map[string]interface{}{ + "path": "cluster-config/staging", + "basename": "staging", + "filename": "config.json", + "basenameNormalized": "staging", + "filenameNormalized": "config.json", + "segments": []string{ + "cluster-config", + "staging", + }, + }, + "extraParams": map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo": "bar", + "foo2": "bar2Override", + "foo3": true, + "foo4": map[string]interface{}{ + "foo4foo": "barbar1", + "foo4foo2": "barbar2Override", + "foo5foo3": "barbar3Override", + }, + }, + "secondKey": true, + "thirdKey": "thirdValue", + "otherKey": "otherValue", + }, + }, + }, + expectedError: nil, + }, } for _, testCase := range cases { @@ -1342,9 +2071,27 @@ cluster: t.Parallel() argoCDServiceMock := mocks.Repos{} - argoCDServiceMock.On("GetFiles", mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything). + argoCDServiceMock.On("GetFiles", mock.Anything, mock.Anything, mock.Anything, testCaseCopy.files[0].Path, mock.Anything, mock.Anything). Return(testCaseCopy.repoFileContents, testCaseCopy.repoPathsError) + var extraParamFiles []string + if len(testCaseCopy.extraParamFiles) != 0 { + keys := make([]string, 0, len(testCaseCopy.extraParamFiles)) + for k := range testCaseCopy.extraParamFiles { + keys = append(keys, k) + } + sort.Strings(keys) + extraParamFiles = make([]string, 0) + for _, key := range keys { + extraParamFiles = append(extraParamFiles, key) + + argoCDServiceMock.On("GetFiles", mock.Anything, mock.Anything, mock.Anything, key, mock.Anything, mock.Anything). + Return(map[string][]byte{ + key: testCaseCopy.extraParamFiles[key], + }, nil) + } + } + gitGenerator := NewGitGenerator(&argoCDServiceMock, "") applicationSetInfo := argoprojiov1alpha1.ApplicationSet{ ObjectMeta: metav1.ObjectMeta{ @@ -1354,9 +2101,10 @@ cluster: GoTemplate: true, Generators: []argoprojiov1alpha1.ApplicationSetGenerator{{ Git: &argoprojiov1alpha1.GitGenerator{ - RepoURL: "RepoURL", - Revision: "Revision", - Files: testCaseCopy.files, + RepoURL: "RepoURL", + Revision: "Revision", + Files: testCaseCopy.files, + ExtraParameterFiles: extraParamFiles, }, }}, }, diff --git a/applicationset/utils/map.go b/applicationset/utils/map.go index e15baec29bd9c..791bb7897fc64 100644 --- a/applicationset/utils/map.go +++ b/applicationset/utils/map.go @@ -63,3 +63,23 @@ func CombineStringMapsAllowDuplicates(aSI map[string]interface{}, bSI map[string return res, nil } + +func CombineMaps(firstMap map[string]interface{}, secondMap map[string]interface{}) map[string]interface{} { + out := make(map[string]interface{}, len(firstMap)) + for k, v := range firstMap { + out[k] = v + } + for k, v := range secondMap { + if v, ok := v.(map[string]interface{}); ok { + if bv, ok := out[k]; ok { + if bv, ok := bv.(map[string]interface{}); ok { + out[k] = CombineMaps(bv, v) + + continue + } + } + } + out[k] = v + } + return out +} diff --git a/applicationset/utils/map_test.go b/applicationset/utils/map_test.go index c12216e0e1ac6..1a979b93645b2 100644 --- a/applicationset/utils/map_test.go +++ b/applicationset/utils/map_test.go @@ -56,3 +56,129 @@ func TestCombineStringMaps(t *testing.T) { }) } } + +func TestCombineMaps(t *testing.T) { + testCases := []struct { + name string + left map[string]interface{} + right map[string]interface{} + expected map[string]interface{} + }{ + { + name: "combines the maps without overlap", + left: map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo": "bar", + "foo2": true, + "foo4": map[string]interface{}{ + "foo4foo": "barbar1", + "foo4foo2": "barbar2", + "foo5foo3": "barbar3", + }, + }, + "secondKey": true, + "thirdKey": []string{ + "firstIdx", + "secondIdx", + "thirdIdx", + }, + }, + right: map[string]interface{}{ + "otherKey": "otherValue", + }, + expected: map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo": "bar", + "foo2": true, + "foo4": map[string]interface{}{ + "foo4foo": "barbar1", + "foo4foo2": "barbar2", + "foo5foo3": "barbar3", + }, + }, + "secondKey": true, + "thirdKey": []string{ + "firstIdx", + "secondIdx", + "thirdIdx", + }, + "otherKey": "otherValue", + }, + }, + { + name: "combines map with overlaps", + left: map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo": "bar", + "foo2": "bar2", + "foo3": true, + "foo4": map[string]interface{}{ + "foo4foo": "barbar1", + "foo4foo2": "barbar2", + "foo5foo3": "barbar3", + }, + }, + "secondKey": true, + "thirdKey": []string{ + "firstIdx", + "secondIdx", + "thirdIdx", + }, + "myKey": "myValue", + "myOtherKey": "myOtherValue", + }, + right: map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo2": "bar2Override", + "foo3": false, + "foo4": map[string]interface{}{ + "foo4foo2": "barbar2Override", + "foo4foo4": "barbar4", + }, + }, + "secondKey": false, + "thirdKey": []string{ + "secondIdx", + "thirdIdx", + "fourthIdx", + }, + "myKey": "otherValue", + "otherKey": "anotherValue", + }, + expected: map[string]interface{}{ + "firstKey": map[string]interface{}{ + "foo": "bar", + "foo2": "bar2Override", + "foo3": false, + "foo4": map[string]interface{}{ + "foo4foo": "barbar1", + "foo4foo2": "barbar2Override", + "foo5foo3": "barbar3", + "foo4foo4": "barbar4", + }, + }, + "secondKey": false, + "thirdKey": []string{ + "secondIdx", + "thirdIdx", + "fourthIdx", + }, + "myKey": "otherValue", + "myOtherKey": "myOtherValue", + "otherKey": "anotherValue", + }, + }, + } + + for _, testCase := range testCases { + testCaseCopy := testCase + + t.Run(testCaseCopy.name, func(t *testing.T) { + t.Parallel() + + got := CombineMaps(testCaseCopy.left, testCaseCopy.right) + + assert.Equal(t, testCaseCopy.expected, got) + }) + } +} diff --git a/assets/swagger.json b/assets/swagger.json index fb78f9420dc12..378cfc5fd64e6 100644 --- a/assets/swagger.json +++ b/assets/swagger.json @@ -7417,6 +7417,13 @@ "$ref": "#/definitions/v1alpha1GitDirectoryGeneratorItem" } }, + "extraParameterFiles": { + "type": "array", + "title": "List of files containing parameters to add on top to the template", + "items": { + "type": "string" + } + }, "files": { "type": "array", "items": { diff --git a/docs/operator-manual/applicationset/Generators-Git.md b/docs/operator-manual/applicationset/Generators-Git.md index 569eb60034389..155db0883b90a 100644 --- a/docs/operator-manual/applicationset/Generators-Git.md +++ b/docs/operator-manual/applicationset/Generators-Git.md @@ -241,6 +241,9 @@ spec: In `values` we can also interpolate all fields set by the git directory generator as mentioned above. +### Provide additional parameter files via `extraParameterFiles` field +See [Pass additional parameter files via `extraParameterFiles` field](#pass-additional-parameter-files-via-extraparameterfiles-field) + ## Git Generator: Files The Git file generator is the second subtype of the Git generator. The Git file generator generates parameters using the contents of JSON/YAML files found within a specified repository. @@ -382,6 +385,61 @@ spec: In `values` we can also interpolate all fields set by the git files generator as mentioned above. +### Pass additional parameter files via `extraParameterFiles` field + +You may provide an additional list of files containing parameters (yaml or json format) with the `extraParameterFiles` of the git generator. +Extra parameters added via the `extraParameterFiles` field are added as `extraParams.(field)`. + +These files are expected to be resolved in the same git repository as the rest of the generator. + +The files provided supports glob format, and you can use any parameter resolved from the files or directories fields to templatize the file path. +An extra parameter file not found will not trigger an error, and will just be ignored. + +A hierarchy occurs in case of collision betweens the parameters, as follows: + +* Parameters are merged and overriden file by file, from top to bottom of the list provided +* When a file provided is a glob pattern, files are sorted by path and overrides occur in the sorted order. + +This is designed to be used like the helm values provided inside an Application's helm source, but allowing to templatize the whole Application. + +In this example, we gather two different files: + +* A set of common parameters for all the file generators +* A specific parameter set for the cluster name found inside each generator file +```yaml +apiVersion: argoproj.io/v1alpha1 +kind: ApplicationSet +metadata: + name: guestbook + namespace: argocd +spec: + goTemplate: true + goTemplateOptions: ["missingkey=error"] + generators: + - git: + repoURL: https://github.com/argoproj/argo-cd.git + revision: HEAD + files: + - path: "applicationset/examples/git-generator-files-discovery/cluster-config/**/config.json" + extraParameterFiles: + - "mypath/common-parameters/**/*.json + - "myotherpath/specific-params/params-{{.cluster.name}}.yaml" + template: + metadata: + labels: + myCustomLabel: {{.extraParams.customLabel}} + name: '{{.cluster.name}}-guestbook-{{.extraParams.environment}}' + spec: + project: default + source: + repoURL: https://github.com/argoproj/argo-cd.git + targetRevision: HEAD + path: "{{.values.base_dir}}/apps/guestbook" + destination: + server: '{{.cluster.address}}' + namespace: guestbook +``` + ## Webhook Configuration When using a Git generator, ApplicationSet polls Git repositories every three minutes to detect changes. To eliminate diff --git a/manifests/core-install.yaml b/manifests/core-install.yaml index 2c54ad05ea977..69fc970cac549 100644 --- a/manifests/core-install.yaml +++ b/manifests/core-install.yaml @@ -6714,6 +6714,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: @@ -9208,6 +9212,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: @@ -14606,6 +14614,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: diff --git a/manifests/crds/applicationset-crd.yaml b/manifests/crds/applicationset-crd.yaml index b9a8c84e0620d..684b49ac74621 100644 --- a/manifests/crds/applicationset-crd.yaml +++ b/manifests/crds/applicationset-crd.yaml @@ -1306,6 +1306,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: @@ -3800,6 +3804,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: @@ -9198,6 +9206,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: diff --git a/manifests/ha/install.yaml b/manifests/ha/install.yaml index bf33fb855ce92..09ebb50f45bb6 100644 --- a/manifests/ha/install.yaml +++ b/manifests/ha/install.yaml @@ -6714,6 +6714,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: @@ -9208,6 +9212,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: @@ -14606,6 +14614,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: diff --git a/manifests/install.yaml b/manifests/install.yaml index f64634743cac3..896777cc3d0b7 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -6714,6 +6714,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: @@ -9208,6 +9212,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: @@ -14606,6 +14614,10 @@ spec: - path type: object type: array + extraParameterFiles: + items: + type: string + type: array files: items: properties: diff --git a/pkg/apis/application/v1alpha1/applicationset_types.go b/pkg/apis/application/v1alpha1/applicationset_types.go index 16f9eeecd5d85..a0afedef9a9ba 100644 --- a/pkg/apis/application/v1alpha1/applicationset_types.go +++ b/pkg/apis/application/v1alpha1/applicationset_types.go @@ -411,6 +411,9 @@ type GitGenerator struct { // Values contains key/value pairs which are passed directly as parameters to the template Values map[string]string `json:"values,omitempty" protobuf:"bytes,8,name=values"` + + // List of files containing parameters to add on top to the template + ExtraParameterFiles []string `json:"extraParameterFiles,omitempty" protobuf:"bytes,9,name=extraParameterFiles"` } type GitDirectoryGeneratorItem struct { diff --git a/pkg/apis/application/v1alpha1/generated.pb.go b/pkg/apis/application/v1alpha1/generated.pb.go index 3f31bf6dacd21..3997b6ee3066d 100644 --- a/pkg/apis/application/v1alpha1/generated.pb.go +++ b/pkg/apis/application/v1alpha1/generated.pb.go @@ -4593,14 +4593,14 @@ func init() { } var fileDescriptor_030104ce3b95bcac = []byte{ - // 11491 bytes of a gzipped FileDescriptorProto + // 11515 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x6f, 0x70, 0x1c, 0xc9, 0x75, 0x18, 0xae, 0xd9, 0xc5, 0x02, 0xbb, 0x0f, 0xff, 0x88, 0x26, 0x79, 0x87, 0xa3, 0x78, 0x07, 0x7a, 0x4e, 0x3e, 0x9d, 0x7f, 0xba, 0x03, 0x7c, 0xf4, 0x9d, 0x7c, 0x3f, 0x9d, 0x25, 0x19, 0x7f, 0x48, 0x10, 0x24, 0x40, 0xe0, 0x1a, 0x20, 0x29, 0x9d, 0x7c, 0x3a, 0x0d, 0x66, 0x1b, 0x8b, 0x21, - 0x66, 0x67, 0xf6, 0x66, 0x66, 0x41, 0xe0, 0x2c, 0xc9, 0x92, 0x25, 0xd9, 0x72, 0xf4, 0xe7, 0x14, + 0x66, 0x67, 0xf6, 0x66, 0x66, 0x41, 0xe0, 0x2c, 0xc9, 0x92, 0x25, 0xd9, 0xb2, 0xf5, 0xe7, 0x14, 0x29, 0x55, 0x39, 0x27, 0x96, 0x22, 0x5b, 0x4e, 0x2a, 0xa9, 0x94, 0x2a, 0x4a, 0xf2, 0x21, 0x4e, - 0xd9, 0x2e, 0x57, 0xec, 0x94, 0x4b, 0x89, 0x93, 0xb2, 0xa3, 0x52, 0x59, 0x4a, 0x62, 0x23, 0x12, + 0xd9, 0xae, 0x54, 0xec, 0x94, 0x4b, 0x89, 0x93, 0xb2, 0xa3, 0x52, 0x59, 0x4a, 0x62, 0x23, 0x12, 0xe3, 0x94, 0x5d, 0xf9, 0xe0, 0xaa, 0x38, 0xf9, 0x90, 0x62, 0xfc, 0x21, 0xd5, 0xff, 0x7b, 0x66, 0x67, 0x81, 0x05, 0x31, 0x20, 0x29, 0xe5, 0xbe, 0xed, 0xf6, 0x7b, 0xf3, 0x5e, 0x4f, 0x4f, 0xf7, 0x7b, 0xaf, 0x5f, 0xbf, 0xf7, 0x1a, 0x16, 0x1b, 0x5e, 0xb2, 0xd9, 0x5e, 0x9f, 0x74, 0xc3, 0xe6, @@ -4616,7 +4616,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x4d, 0xa9, 0xe9, 0xb8, 0x9b, 0x5e, 0x40, 0xa2, 0x5d, 0xfd, 0x78, 0x93, 0x24, 0x4e, 0xde, 0x53, 0x53, 0xdd, 0x9e, 0x8a, 0xda, 0x41, 0xe2, 0x35, 0x49, 0xc7, 0x03, 0xef, 0x3c, 0xe8, 0x81, 0xd8, 0xdd, 0x24, 0x4d, 0xa7, 0xe3, 0xb9, 0x9f, 0xe8, 0xf6, 0x5c, 0x3b, 0xf1, 0xfc, 0x29, 0x2f, 0x48, - 0xe2, 0x24, 0xca, 0x3e, 0x64, 0xff, 0x8a, 0x05, 0xc3, 0xd3, 0x37, 0x56, 0xa7, 0xdb, 0xc9, 0xe6, + 0xe2, 0x24, 0xca, 0x3e, 0x64, 0xff, 0xaa, 0x05, 0xc3, 0xd3, 0x37, 0x56, 0xa7, 0xdb, 0xc9, 0xe6, 0x6c, 0x18, 0x6c, 0x78, 0x0d, 0xf4, 0x1c, 0x0c, 0xba, 0x7e, 0x3b, 0x4e, 0x48, 0x74, 0xd5, 0x69, 0x92, 0x71, 0xeb, 0x9c, 0xf5, 0x64, 0x6d, 0xe6, 0xe4, 0x37, 0xf7, 0x26, 0xde, 0x72, 0x7b, 0x6f, 0x62, 0x70, 0x56, 0x83, 0xb0, 0x89, 0x87, 0x7e, 0x0c, 0x06, 0xa2, 0xd0, 0x27, 0xd3, 0xf8, 0xea, @@ -4658,8 +4658,8 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0xf8, 0xf0, 0x39, 0xeb, 0xc9, 0xea, 0xcc, 0xdb, 0x45, 0x37, 0x27, 0x56, 0xf6, 0x47, 0xc7, 0x07, 0xd1, 0x43, 0xbf, 0x6f, 0xc1, 0x19, 0x43, 0xca, 0xae, 0x92, 0x68, 0xdb, 0x73, 0xc9, 0xb4, 0xeb, 0x86, 0xed, 0x20, 0x89, 0xc7, 0x47, 0xd8, 0x30, 0xae, 0x1f, 0x87, 0xcc, 0x4f, 0xb3, 0xd2, 0xf3, - 0xb2, 0x2b, 0x4a, 0x8c, 0xf7, 0xe9, 0xa9, 0xfd, 0x6f, 0x4a, 0x70, 0x22, 0x6b, 0x01, 0xa0, 0x7f, - 0x60, 0xc1, 0xe8, 0xcd, 0x5b, 0xc9, 0x5a, 0xb8, 0x45, 0x82, 0x78, 0x66, 0x97, 0xca, 0x69, 0xa6, + 0xb2, 0x2b, 0x4a, 0x8c, 0xf7, 0xe9, 0xa9, 0xfd, 0x6f, 0x4a, 0x70, 0x22, 0x6b, 0x01, 0xa0, 0xbf, + 0x6f, 0xc1, 0xe8, 0xcd, 0x5b, 0xc9, 0x5a, 0xb8, 0x45, 0x82, 0x78, 0x66, 0x97, 0xca, 0x69, 0xa6, 0xfb, 0x06, 0xcf, 0xbb, 0xc5, 0xda, 0x1a, 0x93, 0x97, 0xd3, 0x5c, 0x2e, 0x04, 0x49, 0xb4, 0x3b, 0xf3, 0xb0, 0x78, 0xa7, 0xd1, 0xcb, 0x37, 0xd6, 0x4c, 0x28, 0xce, 0x76, 0xea, 0xcc, 0x67, 0x2c, 0x38, 0x95, 0x47, 0x02, 0x9d, 0x80, 0xf2, 0x16, 0xd9, 0xe5, 0x96, 0x28, 0xa6, 0x3f, 0xd1, 0xcb, @@ -4715,7 +4715,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x25, 0xab, 0xe2, 0x51, 0xbe, 0xc0, 0xe4, 0x3f, 0xac, 0x48, 0xd2, 0x01, 0x6c, 0xf9, 0xed, 0x86, 0x17, 0x8c, 0x43, 0x11, 0x03, 0xb8, 0xc2, 0x68, 0x65, 0x06, 0x90, 0x37, 0x62, 0xc1, 0xc8, 0xfe, 0x6f, 0x16, 0xa0, 0xb4, 0x50, 0xbb, 0x07, 0x36, 0xf1, 0xab, 0x69, 0x9b, 0x78, 0xb1, 0x48, 0xa3, - 0xa5, 0x8b, 0x59, 0xfc, 0x9b, 0x35, 0xc8, 0xa8, 0x83, 0xab, 0x24, 0x4e, 0x48, 0xfd, 0x4d, 0x11, + 0xa5, 0x8b, 0x59, 0xfc, 0x5b, 0x35, 0xc8, 0xa8, 0x83, 0xab, 0x24, 0x4e, 0x48, 0xfd, 0x4d, 0x11, 0xfe, 0xa6, 0x08, 0x7f, 0x53, 0x84, 0x2b, 0x11, 0xbe, 0x9e, 0x11, 0xe1, 0xef, 0x31, 0x56, 0xbd, 0x3e, 0x5f, 0x7f, 0x45, 0x1d, 0xc0, 0x9b, 0x3d, 0x30, 0x10, 0xa8, 0x24, 0xb8, 0xbc, 0xba, 0x7c, 0x35, 0x57, 0x66, 0xbf, 0x92, 0x96, 0xd9, 0x47, 0x65, 0xf1, 0xff, 0x82, 0x94, 0xfe, 0x7d, 0x0b, @@ -4723,7 +4723,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x48, 0xe0, 0x92, 0x58, 0xf9, 0x76, 0xac, 0x6e, 0xbe, 0x1d, 0xf4, 0x2c, 0x0c, 0xdd, 0x8c, 0xc3, 0x60, 0x25, 0xf4, 0x02, 0x21, 0x82, 0xe8, 0x8e, 0xe3, 0xc4, 0xed, 0xbd, 0x89, 0x21, 0x3a, 0xa2, 0xb2, 0x1d, 0xa7, 0xb0, 0xd0, 0x2c, 0x8c, 0xdd, 0x7c, 0x75, 0xc5, 0x49, 0x0c, 0x6f, 0x82, 0xdc, - 0xf7, 0xb3, 0xf3, 0xa8, 0xcb, 0x2f, 0x66, 0x80, 0xb8, 0x13, 0xdf, 0xfe, 0xbb, 0x25, 0x78, 0x24, + 0xf7, 0xb3, 0xf3, 0xa8, 0xcb, 0x2f, 0x66, 0x80, 0xb8, 0x13, 0xdf, 0xfe, 0x3b, 0x25, 0x78, 0x24, 0xf3, 0x22, 0xa1, 0xef, 0x87, 0xed, 0x84, 0xee, 0x89, 0xd0, 0x57, 0x2c, 0x38, 0xd1, 0x4c, 0x3b, 0x2c, 0x62, 0xe1, 0xee, 0x7e, 0x5f, 0x61, 0x3a, 0x22, 0xe3, 0x11, 0x99, 0x19, 0x17, 0x23, 0x74, 0x22, 0x03, 0x88, 0x71, 0x47, 0x5f, 0xd0, 0xcb, 0x50, 0x6b, 0x3a, 0x3b, 0xd7, 0x5a, 0x75, 0x27, @@ -4738,7 +4738,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x7c, 0x69, 0x6d, 0x13, 0xa9, 0x21, 0x51, 0x7c, 0xd1, 0x2f, 0x58, 0x00, 0xf1, 0x6e, 0xe0, 0xae, 0x84, 0xbe, 0xe7, 0xee, 0x0a, 0x8d, 0x79, 0xbd, 0x50, 0x77, 0x8e, 0xa2, 0x3e, 0x33, 0x42, 0x47, 0x43, 0xff, 0xc7, 0x06, 0x67, 0xf4, 0x51, 0xa8, 0xc6, 0x62, 0xba, 0x09, 0x1d, 0xb9, 0x56, 0xac, - 0x53, 0x89, 0xd3, 0x16, 0xe2, 0x55, 0xfc, 0xc3, 0x8a, 0x27, 0xfa, 0xdb, 0x16, 0x8c, 0xb6, 0xd2, + 0x53, 0x89, 0xd3, 0x16, 0xe2, 0x55, 0xfc, 0xc3, 0x8a, 0x27, 0xfa, 0x5b, 0x16, 0x8c, 0xb6, 0xd2, 0x6e, 0x42, 0xa1, 0x0e, 0x8b, 0x93, 0x01, 0x19, 0x37, 0x24, 0xf7, 0xb6, 0x64, 0x1a, 0x71, 0xb6, 0x17, 0x54, 0x02, 0xea, 0x19, 0xbc, 0xdc, 0xe2, 0x2e, 0xcb, 0x01, 0x2d, 0x01, 0xe7, 0xb3, 0x40, 0xdc, 0x89, 0x8f, 0x56, 0xe0, 0x14, 0xed, 0xdd, 0x2e, 0x37, 0x3f, 0xa5, 0x7a, 0x89, 0x99, 0x32, @@ -4757,7 +4757,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x88, 0xc0, 0x5b, 0xa5, 0xb0, 0x51, 0x43, 0xb1, 0x1c, 0xcc, 0x11, 0x9f, 0x28, 0xb7, 0x79, 0x75, 0xe6, 0x71, 0xf1, 0x9a, 0x6f, 0x5d, 0xe9, 0x8e, 0x8a, 0xf7, 0xa3, 0x83, 0x5e, 0x82, 0x13, 0xc6, 0x7b, 0xc5, 0x6a, 0x60, 0x6a, 0x33, 0x93, 0xd4, 0x00, 0x9a, 0xce, 0xc0, 0xee, 0xec, 0x4d, 0x3c, - 0x94, 0x6d, 0x13, 0x0a, 0xa3, 0x83, 0x8e, 0xfd, 0xeb, 0xa5, 0xec, 0xd7, 0x52, 0xba, 0xfe, 0x0d, + 0x94, 0x6d, 0x13, 0x0a, 0xa3, 0x83, 0x8e, 0xfd, 0x1b, 0xa5, 0xec, 0xd7, 0x52, 0xba, 0xfe, 0x0d, 0xab, 0xc3, 0x9b, 0xf0, 0xbe, 0xe3, 0xd0, 0xaf, 0xcc, 0xef, 0xa0, 0xc2, 0x30, 0xba, 0xe3, 0xdc, 0xc7, 0x63, 0x7b, 0xfb, 0xdf, 0xf5, 0xc1, 0x3e, 0x3d, 0xeb, 0xc1, 0x78, 0x3f, 0xf4, 0x39, 0xea, 0x67, 0x2d, 0x75, 0x60, 0xc6, 0xd7, 0x70, 0xfd, 0xb8, 0xc6, 0x9e, 0xef, 0x9f, 0x62, 0x1e, 0x3a, @@ -4781,7 +4781,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0xfa, 0x8b, 0x35, 0x67, 0xb4, 0xab, 0xd6, 0xdf, 0x20, 0xeb, 0xc3, 0xb5, 0x82, 0xfb, 0xc0, 0xd7, 0x5e, 0xee, 0x3a, 0x7c, 0x1c, 0x2a, 0xee, 0xa6, 0x13, 0x25, 0xe3, 0x43, 0x6c, 0xd2, 0xa8, 0x59, 0x3c, 0x4b, 0x1b, 0x31, 0x87, 0xa1, 0x47, 0xa1, 0x1c, 0x91, 0x0d, 0x16, 0x9d, 0x6c, 0xc4, 0x45, - 0x61, 0xb2, 0x81, 0x69, 0xbb, 0xfd, 0xab, 0xa5, 0xb4, 0xd9, 0x96, 0x7e, 0x6f, 0x3e, 0xdb, 0xdd, + 0x61, 0xb2, 0x81, 0x69, 0xbb, 0xfd, 0x6b, 0xa5, 0xb4, 0xd9, 0x96, 0x7e, 0x6f, 0x3e, 0xdb, 0xdd, 0x76, 0x14, 0x4b, 0xf7, 0x97, 0x31, 0xdb, 0x59, 0x33, 0x96, 0x70, 0xf4, 0x71, 0x0b, 0x06, 0x6e, 0xc6, 0x61, 0x10, 0x90, 0x44, 0xa8, 0xc8, 0xeb, 0x05, 0x0f, 0xc5, 0x65, 0x4e, 0x5d, 0xf7, 0x41, 0x34, 0x60, 0xc9, 0x97, 0x76, 0x97, 0xec, 0xb8, 0x7e, 0xbb, 0xde, 0x11, 0xea, 0x72, 0x81, 0x37, @@ -4803,7 +4803,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0xf4, 0x8e, 0x6d, 0xb0, 0x87, 0x1d, 0xdb, 0x73, 0x30, 0xb8, 0xd5, 0x5e, 0x27, 0x62, 0xe4, 0x85, 0xd8, 0x52, 0xb3, 0xef, 0x8a, 0x06, 0x61, 0x13, 0x8f, 0xc5, 0x52, 0xb6, 0x3c, 0xf1, 0x2f, 0x1e, 0x1f, 0x36, 0x62, 0x29, 0x57, 0x16, 0x64, 0x33, 0x36, 0x71, 0x68, 0xd7, 0xe8, 0x58, 0xac, 0x91, - 0x98, 0xa5, 0x4a, 0xd0, 0xe1, 0x52, 0x5d, 0x5b, 0x95, 0x00, 0xac, 0x71, 0xec, 0x5f, 0x2e, 0xa5, + 0x98, 0xa5, 0x4a, 0xd0, 0xe1, 0x52, 0x5d, 0x5b, 0x95, 0x00, 0xac, 0x71, 0xec, 0x5f, 0x29, 0xa5, 0xbd, 0x18, 0xa6, 0xc0, 0x41, 0x31, 0x15, 0x2b, 0xc9, 0x75, 0x27, 0x92, 0xc6, 0xc7, 0x11, 0x13, 0x8d, 0x04, 0xdd, 0xeb, 0x4e, 0x64, 0x0a, 0x28, 0xc6, 0x00, 0x4b, 0x4e, 0xe8, 0x26, 0xf4, 0x25, 0xbe, 0x53, 0x50, 0x66, 0xa2, 0xc1, 0x51, 0x3b, 0x95, 0x16, 0xa7, 0x63, 0xcc, 0x78, 0xa0, 0xb3, @@ -4812,9 +4812,9 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x14, 0x29, 0x39, 0x74, 0x55, 0x41, 0xb0, 0x81, 0x25, 0x9f, 0x59, 0x6d, 0x6f, 0xd0, 0x67, 0x4a, 0x9d, 0xcf, 0x70, 0x08, 0x36, 0xb0, 0xd0, 0xb3, 0xd0, 0xef, 0x35, 0x9d, 0x86, 0x0a, 0xca, 0x3d, 0x4b, 0x05, 0xd0, 0x02, 0x6b, 0xb9, 0xb3, 0x37, 0x31, 0xa2, 0x3a, 0xc4, 0x9a, 0xb0, 0xc0, 0x45, - 0xbf, 0x6e, 0xc1, 0x90, 0x1b, 0x36, 0x9b, 0x61, 0xc0, 0xb7, 0xb2, 0x62, 0x5f, 0x7e, 0xf3, 0xb8, + 0xbf, 0x61, 0xc1, 0x90, 0x1b, 0x36, 0x9b, 0x61, 0xc0, 0xb7, 0xb2, 0x62, 0x5f, 0x7e, 0xf3, 0xb8, 0x4c, 0x96, 0xc9, 0x59, 0x83, 0x19, 0xdf, 0x98, 0xab, 0x14, 0x4a, 0x13, 0x84, 0x53, 0xbd, 0x32, - 0xe5, 0x54, 0xe5, 0x00, 0x39, 0xf5, 0x1b, 0x16, 0x8c, 0xf1, 0x67, 0x8d, 0x1d, 0xb6, 0xc8, 0x16, + 0xe5, 0x54, 0xe5, 0x00, 0x39, 0xf5, 0x9b, 0x16, 0x8c, 0xf1, 0x67, 0x8d, 0x1d, 0xb6, 0xc8, 0x16, 0x0c, 0x8f, 0xf9, 0xb5, 0x3a, 0x9c, 0x0e, 0xca, 0xf1, 0xda, 0x01, 0xc7, 0x9d, 0x9d, 0x44, 0xf3, 0x30, 0xb6, 0x11, 0x46, 0x2e, 0x31, 0x07, 0x42, 0x08, 0x59, 0x45, 0xe8, 0x62, 0x16, 0x01, 0x77, 0x3e, 0x83, 0xae, 0xc3, 0x43, 0x46, 0xa3, 0x39, 0x0e, 0x5c, 0xce, 0x3e, 0x26, 0xa8, 0x3d, 0x74, @@ -4828,7 +4828,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0xf0, 0x92, 0xcd, 0xb0, 0x9d, 0xc8, 0x6d, 0xa5, 0x90, 0xfd, 0xea, 0xf4, 0x69, 0x31, 0x07, 0x07, 0xe7, 0x3e, 0x99, 0x55, 0x56, 0xa3, 0x77, 0xa7, 0xac, 0x4e, 0x1c, 0xac, 0xac, 0xce, 0xbc, 0x17, 0xc6, 0x3a, 0x84, 0xc6, 0xa1, 0x9c, 0x6d, 0x73, 0xf0, 0x50, 0xfe, 0xf2, 0x3c, 0x94, 0xcb, 0xed, - 0x9f, 0x67, 0x62, 0xae, 0x8d, 0xed, 0x47, 0x0f, 0xee, 0x5b, 0x07, 0xca, 0x24, 0xd8, 0x16, 0xda, + 0x9f, 0x65, 0x62, 0xae, 0x8d, 0xed, 0x47, 0x0f, 0xee, 0x5b, 0x07, 0xca, 0x24, 0xd8, 0x16, 0xda, 0xea, 0xe2, 0xd1, 0x66, 0xc9, 0x85, 0x60, 0x9b, 0x4b, 0x17, 0xe6, 0xa3, 0xba, 0x10, 0x6c, 0x63, 0x4a, 0x1b, 0x7d, 0xd1, 0x4a, 0x99, 0xcf, 0xdc, 0xe9, 0xfb, 0xc1, 0x63, 0xd9, 0x6f, 0xf5, 0x6c, 0x51, 0xdb, 0xff, 0xbe, 0x04, 0xe7, 0x0e, 0x22, 0xd2, 0xc3, 0xf0, 0x3d, 0x0e, 0xfd, 0x31, 0x8b, @@ -4885,7 +4885,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x11, 0x59, 0xa0, 0xe9, 0x63, 0x93, 0x99, 0xfd, 0x4b, 0x16, 0x9c, 0x9a, 0x21, 0x4e, 0x44, 0x22, 0x56, 0x87, 0x46, 0xbd, 0x08, 0x7a, 0x15, 0xaa, 0x09, 0x6d, 0xa1, 0x3d, 0xb2, 0x8a, 0xed, 0x11, 0x8b, 0x09, 0x58, 0x13, 0xc4, 0xb1, 0x62, 0x63, 0x7f, 0xde, 0x82, 0x47, 0xf2, 0xfa, 0x32, 0xeb, - 0x87, 0xed, 0xfa, 0xfd, 0xe8, 0xd0, 0xdf, 0xb1, 0x60, 0x88, 0x9d, 0xb3, 0xce, 0x91, 0xc4, 0xf1, + 0x87, 0xed, 0xfa, 0xfd, 0xe8, 0xd0, 0xdf, 0xb6, 0x60, 0x88, 0x9d, 0xb3, 0xce, 0x91, 0xc4, 0xf1, 0xfc, 0x8e, 0x1a, 0x78, 0x56, 0x8f, 0x35, 0xf0, 0xce, 0x41, 0xdf, 0x66, 0xd8, 0x24, 0xd9, 0x18, 0x81, 0x4b, 0x61, 0x93, 0x60, 0x06, 0x41, 0xcf, 0xd0, 0x49, 0xe8, 0x05, 0x89, 0x43, 0x97, 0xa3, 0xf4, 0x7d, 0x8f, 0xf2, 0x09, 0xa8, 0x9a, 0xb1, 0x89, 0x63, 0xff, 0xab, 0x1a, 0x0c, 0x88, 0x80, @@ -4927,7 +4927,7 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0xde, 0x83, 0x5a, 0x2a, 0x37, 0xd3, 0xb5, 0x54, 0x2e, 0x14, 0x32, 0xcc, 0x5d, 0x8a, 0xa8, 0x5c, 0x85, 0x81, 0xd9, 0xb0, 0xd9, 0x74, 0x82, 0x3a, 0xfa, 0x51, 0x18, 0x70, 0xf9, 0x4f, 0xe1, 0x43, 0x63, 0x27, 0xb1, 0x02, 0x8a, 0x25, 0x0c, 0x9d, 0x85, 0x3e, 0x27, 0x6a, 0x48, 0xbf, 0x19, 0x8b, - 0x98, 0x9a, 0x8e, 0x1a, 0x31, 0x66, 0xad, 0xf6, 0x3f, 0xeb, 0x03, 0x16, 0xa8, 0xe0, 0x44, 0xa4, + 0x98, 0x9a, 0x8e, 0x1a, 0x31, 0x66, 0xad, 0xf6, 0x3f, 0xed, 0x03, 0x16, 0xa8, 0xe0, 0x44, 0xa4, 0xbe, 0x16, 0xb2, 0x92, 0xa6, 0xc7, 0x7a, 0x7e, 0xa9, 0x37, 0x75, 0x0f, 0xf2, 0x19, 0xa6, 0x71, 0x8e, 0x55, 0xbe, 0xc7, 0xe7, 0x58, 0x5d, 0x8e, 0x26, 0xfb, 0x1e, 0xa0, 0xa3, 0x49, 0xfb, 0xb3, 0x16, 0x20, 0x15, 0xdd, 0xa2, 0x63, 0x07, 0xa6, 0xa0, 0xa6, 0xe2, 0x5c, 0x84, 0x01, 0xa8, 0x45, @@ -4957,362 +4957,363 @@ var fileDescriptor_030104ce3b95bcac = []byte{ 0x06, 0x61, 0x13, 0xef, 0xcc, 0x3b, 0x8d, 0xef, 0x77, 0x98, 0xef, 0xbe, 0x09, 0x8f, 0xcc, 0x7b, 0x89, 0x4a, 0x78, 0x52, 0xf3, 0x8d, 0x9a, 0x87, 0x2a, 0x81, 0xcf, 0xea, 0x9a, 0xc0, 0x67, 0x24, 0x1c, 0x95, 0xd2, 0xf9, 0x51, 0xd9, 0x84, 0x23, 0xfb, 0x79, 0x38, 0x35, 0xef, 0x25, 0x17, 0x3d, - 0x9f, 0x1c, 0x92, 0x89, 0xfd, 0x3b, 0xfd, 0x30, 0x64, 0xa6, 0xee, 0x1e, 0x26, 0x07, 0xf1, 0xf3, + 0x9f, 0x1c, 0x92, 0x89, 0xfd, 0xcb, 0x03, 0x30, 0x64, 0xa6, 0xee, 0x1e, 0x26, 0x07, 0xf1, 0xf3, 0xd4, 0x02, 0x14, 0x6f, 0xe7, 0xa9, 0x63, 0xd3, 0x1b, 0x47, 0xce, 0x23, 0xce, 0x1f, 0x31, 0xc3, 0x08, 0xd4, 0x3c, 0xb1, 0xd9, 0x01, 0x74, 0x0b, 0x2a, 0x1b, 0x2c, 0x21, 0xa6, 0x5c, 0x44, 0x6c, 0x49, 0xde, 0x88, 0xea, 0xe5, 0xc8, 0x53, 0x6a, 0x38, 0x3f, 0xaa, 0xb8, 0xa3, 0x74, 0x96, 0xa5, 0x11, 0xf8, 0x2c, 0xf2, 0x2b, 0x15, 0x46, 0x37, 0x95, 0x50, 0xb9, 0x0b, 0x95, 0x90, 0x12, 0xd0, 0xfd, 0xf7, 0x49, 0x40, 0xb3, 0xe4, 0xa6, 0x64, 0x93, 0x99, 0x95, 0x22, 0x53, 0x63, 0x80, 0x0d, 0x82, 0x91, 0xdc, 0x94, 0x02, 0xe3, 0x2c, 0x3e, 0xfa, 0xa8, 0x12, 0xf1, 0xd5, 0x22, 0xdc, 0xd2, - 0xe6, 0x8c, 0x3e, 0x6e, 0xe9, 0xfe, 0xd9, 0x12, 0x8c, 0xcc, 0x07, 0xed, 0x95, 0xf9, 0x95, 0xf6, - 0xba, 0xef, 0xb9, 0x57, 0xc8, 0x2e, 0x15, 0xe1, 0x5b, 0x64, 0x77, 0x61, 0x4e, 0xac, 0x20, 0x35, - 0x67, 0xae, 0xd0, 0x46, 0xcc, 0x61, 0x54, 0x18, 0x6d, 0x78, 0x41, 0x83, 0x44, 0xad, 0xc8, 0x13, - 0x1e, 0x63, 0x43, 0x18, 0x5d, 0xd4, 0x20, 0x6c, 0xe2, 0x51, 0xda, 0xe1, 0xad, 0x80, 0x44, 0x59, - 0xfb, 0x7a, 0x99, 0x36, 0x62, 0x0e, 0xa3, 0x48, 0x49, 0xd4, 0x16, 0x0e, 0x19, 0x03, 0x69, 0x8d, - 0x36, 0x62, 0x0e, 0xa3, 0x2b, 0x3d, 0x6e, 0xaf, 0xb3, 0xd0, 0x9d, 0x4c, 0x5a, 0xc8, 0x2a, 0x6f, - 0xc6, 0x12, 0x4e, 0x51, 0xb7, 0xc8, 0xee, 0x1c, 0xdd, 0x8c, 0x67, 0x32, 0xdd, 0xae, 0xf0, 0x66, - 0x2c, 0xe1, 0xac, 0x36, 0x6a, 0x7a, 0x38, 0x7e, 0xe0, 0x6a, 0xa3, 0xa6, 0xbb, 0xdf, 0x65, 0x5b, - 0xff, 0x6b, 0x16, 0x0c, 0x99, 0x01, 0x77, 0xa8, 0x91, 0xb1, 0x85, 0x97, 0x3b, 0x4a, 0x6b, 0xbf, - 0x3b, 0xef, 0xda, 0xc9, 0x86, 0x97, 0x84, 0xad, 0xf8, 0x69, 0x12, 0x34, 0xbc, 0x80, 0xb0, 0x80, - 0x08, 0x1e, 0xa8, 0x97, 0x8a, 0xe6, 0x9b, 0x0d, 0xeb, 0xe4, 0x2e, 0x8c, 0x69, 0xfb, 0x06, 0x8c, - 0x75, 0xa4, 0x37, 0xf6, 0x60, 0x82, 0x1c, 0x98, 0x5c, 0x6e, 0x63, 0x18, 0xa4, 0x84, 0x65, 0x7d, - 0xae, 0x59, 0x18, 0xe3, 0x0b, 0x89, 0x72, 0x5a, 0x75, 0x37, 0x49, 0x53, 0xa5, 0xac, 0xb2, 0xe3, - 0x89, 0xeb, 0x59, 0x20, 0xee, 0xc4, 0xb7, 0x3f, 0x67, 0xc1, 0x70, 0x2a, 0xe3, 0xb4, 0x20, 0x63, - 0x89, 0xad, 0xb4, 0x90, 0xc5, 0x7f, 0xb2, 0x20, 0xf8, 0x32, 0x53, 0xa6, 0x7a, 0xa5, 0x69, 0x10, - 0x36, 0xf1, 0xec, 0x2f, 0x96, 0xa0, 0x2a, 0x63, 0x68, 0x7a, 0xe8, 0xca, 0x67, 0x2c, 0x18, 0x56, - 0x47, 0x42, 0xcc, 0x87, 0x57, 0x2a, 0x22, 0xa5, 0x86, 0xf6, 0x40, 0x79, 0x01, 0x82, 0x8d, 0x50, - 0x5b, 0xee, 0xd8, 0x64, 0x86, 0xd3, 0xbc, 0xd1, 0x75, 0x80, 0x78, 0x37, 0x4e, 0x48, 0xd3, 0xf0, - 0x26, 0xda, 0xc6, 0x8a, 0x9b, 0x74, 0xc3, 0x88, 0xd0, 0xf5, 0x75, 0x35, 0xac, 0x93, 0x55, 0x85, - 0xa9, 0x4d, 0x28, 0xdd, 0x86, 0x0d, 0x4a, 0xf6, 0x3f, 0x29, 0xc1, 0x89, 0x6c, 0x97, 0xd0, 0x07, - 0x60, 0x48, 0x72, 0x37, 0x76, 0x9d, 0x32, 0x02, 0x68, 0x08, 0x1b, 0xb0, 0x3b, 0x7b, 0x13, 0x13, - 0x9d, 0x57, 0x98, 0x4e, 0x9a, 0x28, 0x38, 0x45, 0x8c, 0x9f, 0xcb, 0x89, 0x03, 0xe4, 0x99, 0xdd, - 0xe9, 0x56, 0x4b, 0x1c, 0xae, 0x19, 0xe7, 0x72, 0x26, 0x14, 0x67, 0xb0, 0xd1, 0x0a, 0x9c, 0x32, - 0x5a, 0xae, 0x12, 0xaf, 0xb1, 0xb9, 0x1e, 0x46, 0x72, 0x07, 0x76, 0x56, 0x87, 0xf6, 0x75, 0xe2, - 0xe0, 0xdc, 0x27, 0xa9, 0xb6, 0x77, 0x9d, 0x96, 0xe3, 0x7a, 0xc9, 0xae, 0x70, 0x8f, 0x2a, 0xd9, - 0x34, 0x2b, 0xda, 0xb1, 0xc2, 0xb0, 0x97, 0xa0, 0xaf, 0xc7, 0x19, 0xd4, 0x93, 0xe5, 0xff, 0x22, - 0x54, 0x29, 0x39, 0x69, 0xde, 0x15, 0x41, 0x32, 0x84, 0xaa, 0xbc, 0x10, 0x0a, 0xd9, 0x50, 0xf6, - 0x1c, 0x79, 0xf4, 0xa9, 0x5e, 0x6b, 0x21, 0x8e, 0xdb, 0x6c, 0x33, 0x4d, 0x81, 0xe8, 0x71, 0x28, - 0x93, 0x9d, 0x56, 0xf6, 0x8c, 0xf3, 0xc2, 0x4e, 0xcb, 0x8b, 0x48, 0x4c, 0x91, 0xc8, 0x4e, 0x0b, - 0x9d, 0x81, 0x92, 0x57, 0x17, 0x4a, 0x0a, 0x04, 0x4e, 0x69, 0x61, 0x0e, 0x97, 0xbc, 0xba, 0xbd, - 0x03, 0x35, 0x75, 0x03, 0x15, 0xda, 0x92, 0xb2, 0xdb, 0x2a, 0x22, 0xe8, 0x4d, 0xd2, 0xed, 0x22, - 0xb5, 0xdb, 0x00, 0x3a, 0x5d, 0xb5, 0x28, 0xf9, 0x72, 0x0e, 0xfa, 0xdc, 0x50, 0x94, 0x05, 0xa8, - 0x6a, 0x32, 0x4c, 0x68, 0x33, 0x88, 0x7d, 0x03, 0x46, 0xae, 0x04, 0xe1, 0x2d, 0x76, 0x51, 0x04, - 0xab, 0x8b, 0x48, 0x09, 0x6f, 0xd0, 0x1f, 0x59, 0x13, 0x81, 0x41, 0x31, 0x87, 0xa9, 0x8a, 0x6d, - 0xa5, 0x6e, 0x15, 0xdb, 0xec, 0x8f, 0x59, 0x30, 0xa4, 0xf2, 0xde, 0xe6, 0xb7, 0xb7, 0x28, 0xdd, - 0x46, 0x14, 0xb6, 0x5b, 0x59, 0xba, 0xec, 0xb2, 0x3b, 0xcc, 0x61, 0x66, 0x42, 0x68, 0xe9, 0x80, - 0x84, 0xd0, 0x73, 0xd0, 0xb7, 0xe5, 0x05, 0xf5, 0xec, 0xa5, 0x47, 0x57, 0xbc, 0xa0, 0x8e, 0x19, - 0x84, 0x76, 0xe1, 0x84, 0xea, 0x82, 0x54, 0x08, 0xcf, 0xc3, 0xd0, 0x7a, 0xdb, 0xf3, 0xeb, 0xb2, - 0xe0, 0x63, 0xc6, 0xa3, 0x32, 0x63, 0xc0, 0x70, 0x0a, 0x93, 0xee, 0xeb, 0xd6, 0xbd, 0xc0, 0x89, - 0x76, 0x57, 0xb4, 0x06, 0x52, 0x42, 0x69, 0x46, 0x41, 0xb0, 0x81, 0x65, 0xbf, 0x5e, 0x86, 0x91, - 0x74, 0xf6, 0x5f, 0x0f, 0xdb, 0xab, 0xc7, 0xa1, 0xc2, 0x12, 0x02, 0xb3, 0x9f, 0x96, 0xd7, 0x48, - 0xe4, 0x30, 0x14, 0x43, 0x3f, 0x2f, 0x8b, 0x52, 0xcc, 0x85, 0x61, 0xaa, 0x93, 0xca, 0x0f, 0xc3, - 0x42, 0x03, 0x45, 0x25, 0x16, 0xc1, 0x0a, 0x7d, 0xd2, 0x82, 0x81, 0xb0, 0x65, 0x56, 0xfa, 0x7a, - 0x7f, 0x91, 0x99, 0x91, 0x22, 0x5d, 0x4a, 0x58, 0xc4, 0xea, 0xd3, 0xcb, 0xcf, 0x21, 0x59, 0x9f, - 0x79, 0x17, 0x0c, 0x99, 0x98, 0x07, 0x19, 0xc5, 0x55, 0xd3, 0x28, 0xfe, 0x8c, 0x39, 0x29, 0x44, - 0xee, 0x67, 0x0f, 0xcb, 0xed, 0x1a, 0x54, 0x5c, 0x15, 0x3f, 0x71, 0x57, 0x65, 0x82, 0x55, 0x9d, - 0x12, 0x76, 0x36, 0xc5, 0xa9, 0xd9, 0xdf, 0xb1, 0x8c, 0xf9, 0x81, 0x49, 0xbc, 0x50, 0x47, 0x11, - 0x94, 0x1b, 0xdb, 0x5b, 0xc2, 0x14, 0xbd, 0x5c, 0xd0, 0xf0, 0xce, 0x6f, 0x6f, 0xe9, 0x39, 0x6e, - 0xb6, 0x62, 0xca, 0xac, 0x07, 0x67, 0x61, 0x2a, 0x45, 0xb8, 0x7c, 0x70, 0x8a, 0xb0, 0xfd, 0x46, - 0x09, 0xc6, 0x3a, 0x26, 0x15, 0x7a, 0x0d, 0x2a, 0x11, 0x7d, 0x4b, 0xf1, 0x7a, 0x8b, 0x85, 0x25, - 0xf5, 0xc6, 0x0b, 0x75, 0xad, 0x77, 0xd3, 0xed, 0x98, 0xb3, 0x44, 0x97, 0x01, 0xe9, 0x28, 0x1f, - 0xe5, 0xa9, 0xe4, 0xaf, 0xac, 0x42, 0x01, 0xa6, 0x3b, 0x30, 0x70, 0xce, 0x53, 0xe8, 0x85, 0xac, - 0xc3, 0xb3, 0x9c, 0x76, 0x67, 0xef, 0xe7, 0xbb, 0xb4, 0x7f, 0xab, 0x04, 0xc3, 0xa9, 0xc2, 0x6b, - 0xc8, 0x87, 0x2a, 0xf1, 0xd9, 0x59, 0x83, 0x54, 0x36, 0x47, 0x2d, 0xa3, 0xae, 0x14, 0xe4, 0x05, - 0x41, 0x17, 0x2b, 0x0e, 0x0f, 0x46, 0x84, 0xc0, 0xf3, 0x30, 0x24, 0x3b, 0xf4, 0x7e, 0xa7, 0xe9, - 0x8b, 0x01, 0x54, 0x73, 0xf4, 0x82, 0x01, 0xc3, 0x29, 0x4c, 0xfb, 0xf7, 0xca, 0x30, 0xce, 0x0f, - 0x67, 0xea, 0x6a, 0xe6, 0x2d, 0xc9, 0xfd, 0xd6, 0xdf, 0xd0, 0xe5, 0x11, 0xad, 0x22, 0xee, 0x0a, - 0xed, 0xc6, 0xa8, 0xa7, 0xc0, 0xb6, 0xaf, 0x64, 0x02, 0xdb, 0xb8, 0xd9, 0xdd, 0x38, 0xa6, 0x1e, - 0xfd, 0x60, 0x45, 0xba, 0xfd, 0xc3, 0x12, 0x8c, 0x66, 0xae, 0x84, 0x41, 0xaf, 0xa7, 0xab, 0x88, - 0x5b, 0x45, 0xf8, 0xd4, 0xf7, 0xbd, 0x25, 0xe4, 0x70, 0xb5, 0xc4, 0xef, 0xd3, 0x52, 0xb1, 0xbf, - 0x5d, 0x82, 0x91, 0xf4, 0x5d, 0x36, 0x0f, 0xe0, 0x48, 0xbd, 0x03, 0x6a, 0xec, 0xba, 0x06, 0x76, - 0x05, 0x33, 0x77, 0xc9, 0xf3, 0xca, 0xf8, 0xb2, 0x11, 0x6b, 0xf8, 0x03, 0x51, 0xa2, 0xdd, 0xfe, - 0xc7, 0x16, 0x9c, 0xe6, 0x6f, 0x99, 0x9d, 0x87, 0x7f, 0x33, 0x6f, 0x74, 0x5f, 0x2e, 0xb6, 0x83, - 0x99, 0xb2, 0x9e, 0x07, 0x8d, 0x2f, 0xbb, 0x31, 0x55, 0xf4, 0x36, 0x3d, 0x15, 0x1e, 0xc0, 0xce, - 0x1e, 0x6a, 0x32, 0xd8, 0xdf, 0x2e, 0x83, 0xbe, 0x24, 0x16, 0x79, 0x22, 0xcb, 0xb5, 0x90, 0xf2, - 0xa6, 0xab, 0xbb, 0x81, 0xab, 0xaf, 0xa3, 0xad, 0x66, 0x92, 0x5c, 0x7f, 0xd1, 0x82, 0x41, 0x2f, - 0xf0, 0x12, 0xcf, 0x61, 0xdb, 0xe8, 0x62, 0x6e, 0x7a, 0x54, 0xec, 0x16, 0x38, 0xe5, 0x30, 0x32, - 0xcf, 0x71, 0x14, 0x33, 0x6c, 0x72, 0x46, 0x1f, 0x12, 0xb1, 0xe7, 0xe5, 0xc2, 0xf2, 0xb3, 0xab, - 0x99, 0x80, 0xf3, 0x16, 0x35, 0xbc, 0x92, 0xa8, 0xa0, 0xb2, 0x06, 0x98, 0x92, 0x52, 0x95, 0xb2, - 0x95, 0x69, 0xcb, 0x9a, 0x31, 0x67, 0x64, 0xc7, 0x80, 0x3a, 0xc7, 0xe2, 0x90, 0x71, 0xbd, 0x53, - 0x50, 0x73, 0xda, 0x49, 0xd8, 0xa4, 0xc3, 0x24, 0x8e, 0x9a, 0x74, 0xe4, 0xb2, 0x04, 0x60, 0x8d, - 0x63, 0xbf, 0x5e, 0x81, 0x4c, 0xda, 0x29, 0xda, 0x31, 0x2f, 0x38, 0xb6, 0x8a, 0xbd, 0xe0, 0x58, - 0x75, 0x26, 0xef, 0x92, 0x63, 0xd4, 0x80, 0x4a, 0x6b, 0xd3, 0x89, 0xa5, 0x59, 0xfd, 0xa2, 0xda, - 0xc7, 0xd1, 0xc6, 0x3b, 0x7b, 0x13, 0x3f, 0xdd, 0x9b, 0xd7, 0x95, 0xce, 0xd5, 0x29, 0x5e, 0x2a, - 0x47, 0xb3, 0x66, 0x34, 0x30, 0xa7, 0x7f, 0x98, 0xbb, 0x2e, 0x3f, 0x2e, 0xee, 0xa5, 0xc0, 0x24, - 0x6e, 0xfb, 0x89, 0x98, 0x0d, 0x2f, 0x16, 0xb8, 0xca, 0x38, 0x61, 0x5d, 0x30, 0x81, 0xff, 0xc7, - 0x06, 0x53, 0xf4, 0x01, 0xa8, 0xc5, 0x89, 0x13, 0x25, 0x77, 0x99, 0xe2, 0xac, 0x4b, 0x9a, 0x49, - 0x22, 0x58, 0xd3, 0x43, 0x2f, 0xb1, 0x6a, 0xcf, 0x5e, 0xbc, 0x79, 0x97, 0x29, 0x23, 0xb2, 0x32, - 0xb4, 0xa0, 0x80, 0x0d, 0x6a, 0xe8, 0x3c, 0x00, 0x9b, 0xdb, 0x3c, 0xfe, 0xb0, 0xca, 0xbc, 0x4c, - 0x4a, 0x14, 0x62, 0x05, 0xc1, 0x06, 0x96, 0xfd, 0xe3, 0x90, 0xae, 0xf8, 0x81, 0x26, 0x64, 0x81, - 0x11, 0xee, 0x85, 0x66, 0xa9, 0x1f, 0xa9, 0x5a, 0x20, 0xbf, 0x61, 0x81, 0x59, 0x96, 0x04, 0xbd, - 0xca, 0xeb, 0x9f, 0x58, 0x45, 0x9c, 0x1c, 0x1a, 0x74, 0x27, 0x97, 0x9c, 0x56, 0xe6, 0x08, 0x5b, - 0x16, 0x41, 0x39, 0xf3, 0x4e, 0xa8, 0x4a, 0xe8, 0xa1, 0x8c, 0xba, 0x8f, 0xc2, 0x49, 0x99, 0x46, - 0x2a, 0xfd, 0xa6, 0xe2, 0xd4, 0xe9, 0x60, 0xd7, 0x8f, 0xf4, 0xe7, 0x94, 0xba, 0xf9, 0x73, 0x7a, - 0xb8, 0xe6, 0xfa, 0x37, 0x2d, 0x38, 0x97, 0xed, 0x40, 0xbc, 0x14, 0x06, 0x5e, 0x12, 0x46, 0xab, - 0x24, 0x49, 0xbc, 0xa0, 0xc1, 0xca, 0xbe, 0xdd, 0x72, 0x22, 0x59, 0x86, 0x9f, 0x09, 0xca, 0x1b, - 0x4e, 0x14, 0x60, 0xd6, 0x8a, 0x76, 0xa1, 0x9f, 0x07, 0xa9, 0x09, 0x6b, 0xfd, 0x88, 0x6b, 0x23, - 0x67, 0x38, 0xf4, 0x76, 0x81, 0x07, 0xc8, 0x61, 0xc1, 0xd0, 0xfe, 0x9e, 0x05, 0x68, 0x79, 0x9b, - 0x44, 0x91, 0x57, 0x37, 0xc2, 0xea, 0xd8, 0xfd, 0x4e, 0xc6, 0x3d, 0x4e, 0x66, 0x92, 0x73, 0xe6, - 0x7e, 0x27, 0xe3, 0x5f, 0xfe, 0xfd, 0x4e, 0xa5, 0xc3, 0xdd, 0xef, 0x84, 0x96, 0xe1, 0x74, 0x93, - 0x6f, 0x37, 0xf8, 0x9d, 0x29, 0x7c, 0xef, 0xa1, 0xf2, 0xf1, 0x1e, 0xb9, 0xbd, 0x37, 0x71, 0x7a, - 0x29, 0x0f, 0x01, 0xe7, 0x3f, 0x67, 0xbf, 0x13, 0x10, 0x8f, 0xa6, 0x9b, 0xcd, 0x8b, 0x55, 0xea, - 0xea, 0x7e, 0xb1, 0xbf, 0x5c, 0x81, 0xd1, 0x4c, 0x91, 0x66, 0xba, 0xd5, 0xeb, 0x0c, 0x8e, 0x3a, - 0xb2, 0xfe, 0xee, 0xec, 0x5e, 0x4f, 0xe1, 0x56, 0x01, 0x54, 0xbc, 0xa0, 0xd5, 0x4e, 0x8a, 0x49, - 0x07, 0xe6, 0x9d, 0x58, 0xa0, 0x04, 0x0d, 0x77, 0x31, 0xfd, 0x8b, 0x39, 0x9b, 0x22, 0x83, 0xb7, - 0x52, 0xc6, 0x78, 0xdf, 0x7d, 0x72, 0x07, 0x7c, 0x5c, 0x87, 0x52, 0x55, 0x8a, 0x70, 0x2c, 0x66, - 0x26, 0xcb, 0x71, 0x1f, 0xb5, 0x7f, 0xa3, 0x04, 0x83, 0xc6, 0x47, 0x43, 0xbf, 0x9a, 0x2e, 0xda, - 0x65, 0x15, 0xf7, 0x4a, 0x8c, 0xfe, 0xa4, 0x2e, 0xcb, 0xc5, 0x5f, 0xe9, 0x89, 0xce, 0x7a, 0x5d, - 0x77, 0xf6, 0x26, 0x4e, 0x64, 0x2a, 0x72, 0xa5, 0x6a, 0x78, 0x9d, 0xf9, 0x08, 0x8c, 0x66, 0xc8, - 0xe4, 0xbc, 0xf2, 0x9a, 0xf9, 0xca, 0x47, 0x76, 0x4b, 0x99, 0x43, 0xf6, 0x75, 0x3a, 0x64, 0x22, - 0x0b, 0x31, 0xf4, 0x49, 0x0f, 0x3e, 0xd8, 0x4c, 0xb2, 0x71, 0xa9, 0xc7, 0x64, 0xe3, 0x27, 0xa1, - 0xda, 0x0a, 0x7d, 0xcf, 0xf5, 0x54, 0x0d, 0x4d, 0x96, 0xde, 0xbc, 0x22, 0xda, 0xb0, 0x82, 0xa2, - 0x5b, 0x50, 0xbb, 0x79, 0x2b, 0xe1, 0xa7, 0x3f, 0xc2, 0xbf, 0x5d, 0xd4, 0xa1, 0x8f, 0x32, 0x5a, - 0xd4, 0xf1, 0x12, 0xd6, 0xbc, 0x90, 0x0d, 0xfd, 0x4c, 0x09, 0xca, 0x8c, 0x04, 0xe6, 0x7b, 0x67, - 0xda, 0x31, 0xc6, 0x02, 0x62, 0x7f, 0xad, 0x06, 0xa7, 0xf2, 0x2a, 0xe5, 0xa3, 0x0f, 0x43, 0x3f, - 0xef, 0x63, 0x31, 0x97, 0xb1, 0xe4, 0xf1, 0x98, 0x67, 0x04, 0x45, 0xb7, 0xd8, 0x6f, 0x2c, 0x78, - 0x0a, 0xee, 0xbe, 0xb3, 0x2e, 0x66, 0xc8, 0xf1, 0x70, 0x5f, 0x74, 0x34, 0xf7, 0x45, 0x87, 0x73, - 0xf7, 0x9d, 0x75, 0xb4, 0x03, 0x95, 0x86, 0x97, 0x10, 0x47, 0x38, 0x11, 0x6e, 0x1c, 0x0b, 0x73, - 0xe2, 0x70, 0x2b, 0x8d, 0xfd, 0xc4, 0x9c, 0x21, 0xfa, 0xaa, 0x05, 0xa3, 0xeb, 0xe9, 0x2a, 0x07, - 0x42, 0x78, 0x3a, 0xc7, 0x70, 0x1b, 0x42, 0x9a, 0x11, 0xbf, 0xe0, 0x2c, 0xd3, 0x88, 0xb3, 0xdd, - 0x41, 0x9f, 0xb0, 0x60, 0x60, 0xc3, 0xf3, 0x8d, 0x82, 0xd4, 0xc7, 0xf0, 0x71, 0x2e, 0x32, 0x06, - 0x7a, 0xc7, 0xc1, 0xff, 0xc7, 0x58, 0x72, 0xee, 0xa6, 0xa9, 0xfa, 0x8f, 0xaa, 0xa9, 0x06, 0xee, - 0x93, 0xa6, 0xfa, 0xb4, 0x05, 0x35, 0x35, 0xd2, 0x22, 0x5b, 0xfc, 0x03, 0xc7, 0xf8, 0xc9, 0xb9, - 0xe7, 0x44, 0xfd, 0xc5, 0x9a, 0x39, 0xfa, 0x82, 0x05, 0x83, 0xce, 0x6b, 0xed, 0x88, 0xd4, 0xc9, - 0x76, 0xd8, 0x8a, 0xc5, 0xed, 0xa8, 0x2f, 0x17, 0xdf, 0x99, 0x69, 0xca, 0x64, 0x8e, 0x6c, 0x2f, - 0xb7, 0x62, 0x91, 0x2d, 0xa5, 0x1b, 0xb0, 0xd9, 0x05, 0x7b, 0xaf, 0x04, 0x13, 0x07, 0x50, 0x40, - 0xcf, 0xc3, 0x50, 0x18, 0x35, 0x9c, 0xc0, 0x7b, 0xcd, 0x2c, 0x5b, 0xa2, 0xac, 0xac, 0x65, 0x03, - 0x86, 0x53, 0x98, 0x66, 0x3e, 0x7b, 0xe9, 0x80, 0x7c, 0xf6, 0x73, 0xd0, 0x17, 0x91, 0x56, 0x98, - 0xdd, 0x2c, 0xb0, 0x4c, 0x05, 0x06, 0x41, 0x8f, 0x42, 0xd9, 0x69, 0x79, 0x22, 0x10, 0x4d, 0xed, - 0x81, 0xa6, 0x57, 0x16, 0x30, 0x6d, 0x4f, 0x95, 0xd7, 0xa8, 0xdc, 0x93, 0xf2, 0x1a, 0x54, 0x0d, - 0x88, 0xb3, 0x8b, 0x7e, 0xad, 0x06, 0xd2, 0x67, 0x0a, 0xf6, 0x1b, 0x65, 0x78, 0x74, 0xdf, 0xf9, - 0xa2, 0xe3, 0xf0, 0xac, 0x7d, 0xe2, 0xf0, 0xe4, 0xf0, 0x94, 0x0e, 0x1a, 0x9e, 0x72, 0x97, 0xe1, - 0xf9, 0x04, 0x5d, 0x06, 0xb2, 0xdc, 0x4b, 0x31, 0xf7, 0x5b, 0x76, 0xab, 0x1e, 0x23, 0x56, 0x80, - 0x84, 0x62, 0xcd, 0x97, 0xee, 0x01, 0x52, 0xb9, 0xdc, 0x95, 0x22, 0xd4, 0x40, 0xd7, 0x92, 0x2b, - 0x7c, 0xee, 0x77, 0x4b, 0x10, 0xb7, 0x7f, 0xbb, 0x0f, 0x1e, 0xef, 0x41, 0x7a, 0x9b, 0xb3, 0xd8, - 0xea, 0x71, 0x16, 0xff, 0x80, 0x7f, 0xa6, 0x4f, 0xe5, 0x7e, 0x26, 0x5c, 0xfc, 0x67, 0xda, 0xff, - 0x0b, 0xa1, 0xa7, 0xa0, 0xea, 0x05, 0x31, 0x71, 0xdb, 0x11, 0x8f, 0x49, 0x36, 0xd2, 0x98, 0x16, - 0x44, 0x3b, 0x56, 0x18, 0x74, 0x4f, 0xe7, 0x3a, 0x74, 0xf9, 0x0f, 0x14, 0x94, 0xbb, 0x6b, 0x66, - 0x44, 0x71, 0x93, 0x62, 0x76, 0x9a, 0x4a, 0x00, 0xce, 0xc6, 0xfe, 0x5b, 0x16, 0x9c, 0xe9, 0xae, - 0x62, 0xd1, 0x33, 0x30, 0xb8, 0x1e, 0x39, 0x81, 0xbb, 0xc9, 0x6e, 0x36, 0x96, 0x53, 0x87, 0xbd, - 0xaf, 0x6e, 0xc6, 0x26, 0x0e, 0x9a, 0x85, 0x31, 0x1e, 0xb9, 0x61, 0x60, 0xc8, 0xcc, 0xdf, 0xdb, - 0x7b, 0x13, 0x63, 0x6b, 0x59, 0x20, 0xee, 0xc4, 0xb7, 0xbf, 0x5f, 0xce, 0xef, 0x16, 0x37, 0xc5, - 0x0e, 0x33, 0x9b, 0xc5, 0x5c, 0x2d, 0xf5, 0x20, 0x71, 0xcb, 0xf7, 0x5a, 0xe2, 0xf6, 0x75, 0x93, - 0xb8, 0x68, 0x0e, 0x4e, 0x18, 0x57, 0x4f, 0xf1, 0x6c, 0x6e, 0x1e, 0x96, 0xac, 0x4a, 0xb1, 0xac, - 0x64, 0xe0, 0xb8, 0xe3, 0x89, 0x07, 0x7c, 0xea, 0xfd, 0x5a, 0x09, 0x1e, 0xe9, 0x6a, 0xfd, 0xde, - 0x23, 0x8d, 0x62, 0x7e, 0xfe, 0xbe, 0x7b, 0xf3, 0xf9, 0xcd, 0x8f, 0x52, 0x39, 0xe8, 0xa3, 0xd8, - 0x7f, 0x5c, 0xea, 0xba, 0x10, 0xe8, 0x4e, 0xe8, 0x87, 0x76, 0x94, 0x5e, 0x80, 0x61, 0xa7, 0xd5, - 0xe2, 0x78, 0x2c, 0x8a, 0x36, 0x53, 0xfa, 0x69, 0xda, 0x04, 0xe2, 0x34, 0x6e, 0x4f, 0x36, 0xcd, - 0x9f, 0x58, 0x50, 0xc3, 0x64, 0x83, 0x4b, 0x23, 0x74, 0x53, 0x0c, 0x91, 0x55, 0x44, 0x9d, 0x5b, - 0x3a, 0xb0, 0xb1, 0xc7, 0xea, 0xbf, 0xe6, 0x0d, 0x76, 0xe7, 0x55, 0x64, 0xa5, 0x43, 0x5d, 0x45, - 0xa6, 0x2e, 0xa3, 0x2a, 0x77, 0xbf, 0x8c, 0xca, 0xfe, 0xee, 0x00, 0x7d, 0xbd, 0x56, 0x38, 0x1b, - 0x91, 0x7a, 0x4c, 0xbf, 0x6f, 0x3b, 0xf2, 0xc5, 0x24, 0x51, 0xdf, 0xf7, 0x1a, 0x5e, 0xc4, 0xb4, - 0x3d, 0x75, 0x40, 0x56, 0x3a, 0x54, 0xe1, 0x9b, 0xf2, 0x81, 0x85, 0x6f, 0x5e, 0x80, 0xe1, 0x38, - 0xde, 0x5c, 0x89, 0xbc, 0x6d, 0x27, 0x21, 0x57, 0xc8, 0xae, 0xb0, 0x7d, 0x75, 0x11, 0x88, 0xd5, - 0x4b, 0x1a, 0x88, 0xd3, 0xb8, 0x68, 0x1e, 0xc6, 0x74, 0xf9, 0x19, 0x12, 0x25, 0x2c, 0xe7, 0x82, - 0xcf, 0x04, 0x95, 0xf1, 0xad, 0x0b, 0xd6, 0x08, 0x04, 0xdc, 0xf9, 0x0c, 0x95, 0xa7, 0xa9, 0x46, - 0xda, 0x91, 0xfe, 0xb4, 0x3c, 0x4d, 0xd1, 0xa1, 0x7d, 0xe9, 0x78, 0x02, 0x2d, 0xc1, 0x49, 0x3e, - 0x31, 0xa6, 0x5b, 0x2d, 0xe3, 0x8d, 0x06, 0xd2, 0xf5, 0x45, 0xe7, 0x3b, 0x51, 0x70, 0xde, 0x73, - 0xe8, 0x39, 0x18, 0x54, 0xcd, 0x0b, 0x73, 0xe2, 0x6c, 0x47, 0xf9, 0x96, 0x14, 0x99, 0x85, 0x3a, - 0x36, 0xf1, 0xd0, 0xfb, 0xe1, 0x61, 0xfd, 0x97, 0x27, 0xe6, 0xf1, 0x03, 0xcf, 0x39, 0x51, 0xd9, - 0x4b, 0x5d, 0x7d, 0x34, 0x9f, 0x8b, 0x56, 0xc7, 0xdd, 0x9e, 0x47, 0xeb, 0x70, 0x46, 0x81, 0x2e, - 0x04, 0x09, 0xcb, 0xb2, 0x89, 0xc9, 0x8c, 0x13, 0x93, 0x6b, 0x91, 0x2f, 0xae, 0xd0, 0x56, 0xb7, - 0xe3, 0xce, 0x7b, 0xc9, 0xa5, 0x3c, 0x4c, 0xbc, 0x88, 0xf7, 0xa1, 0x82, 0xa6, 0xa0, 0x46, 0x02, - 0x67, 0xdd, 0x27, 0xcb, 0xb3, 0x0b, 0xac, 0x42, 0x98, 0x71, 0xbe, 0x7a, 0x41, 0x02, 0xb0, 0xc6, - 0x51, 0x71, 0xbf, 0x43, 0x5d, 0x6f, 0x6a, 0x5e, 0x81, 0x53, 0x0d, 0xb7, 0x45, 0x2d, 0x42, 0xcf, - 0x25, 0xd3, 0x2e, 0x0b, 0x73, 0xa4, 0x1f, 0x86, 0x17, 0x7e, 0x55, 0x41, 0xed, 0xf3, 0xb3, 0x2b, - 0x1d, 0x38, 0x38, 0xf7, 0x49, 0x16, 0x0e, 0x1b, 0x85, 0x3b, 0xbb, 0xe3, 0x27, 0x33, 0xe1, 0xb0, - 0xb4, 0x11, 0x73, 0x18, 0xba, 0x0c, 0x88, 0x65, 0x48, 0x5c, 0x4a, 0x92, 0x96, 0x32, 0x41, 0xc7, - 0x4f, 0xa5, 0xeb, 0xfc, 0x5c, 0xec, 0xc0, 0xc0, 0x39, 0x4f, 0x51, 0x8b, 0x26, 0x08, 0x19, 0xf5, - 0xf1, 0x87, 0xd3, 0x16, 0xcd, 0x55, 0xde, 0x8c, 0x25, 0xdc, 0xfe, 0xcf, 0x16, 0x0c, 0xab, 0xa5, - 0x7d, 0x0f, 0xd2, 0x89, 0xfc, 0x74, 0x3a, 0xd1, 0xfc, 0xd1, 0x85, 0x23, 0xeb, 0x79, 0x97, 0x98, - 0xf4, 0x6f, 0x0c, 0x02, 0x68, 0x01, 0xaa, 0x74, 0x97, 0xd5, 0x55, 0x77, 0x3d, 0xb0, 0xc2, 0x2b, - 0xaf, 0x22, 0x4f, 0xe5, 0xfe, 0x56, 0xe4, 0x59, 0x85, 0xd3, 0xd2, 0xb2, 0xe0, 0x87, 0x7d, 0x97, - 0xc2, 0x58, 0xc9, 0xc2, 0xea, 0xcc, 0xa3, 0x82, 0xd0, 0xe9, 0x85, 0x3c, 0x24, 0x9c, 0xff, 0x6c, - 0xca, 0xa0, 0x19, 0x38, 0xd0, 0xca, 0x54, 0xcb, 0x7f, 0x71, 0x43, 0x5e, 0x21, 0x94, 0x59, 0xfe, - 0x8b, 0x17, 0x57, 0xb1, 0xc6, 0xc9, 0xd7, 0x01, 0xb5, 0x82, 0x74, 0x00, 0x1c, 0x5a, 0x07, 0x48, - 0x69, 0x34, 0xd8, 0x55, 0x1a, 0xc9, 0x43, 0x85, 0xa1, 0xae, 0x87, 0x0a, 0xef, 0x81, 0x11, 0x2f, - 0xd8, 0x24, 0x91, 0x97, 0x90, 0x3a, 0x5b, 0x0b, 0x4c, 0x52, 0x55, 0xb5, 0x05, 0xb0, 0x90, 0x82, - 0xe2, 0x0c, 0x76, 0x5a, 0x84, 0x8e, 0xf4, 0x20, 0x42, 0xbb, 0x28, 0xae, 0xd1, 0x62, 0x14, 0xd7, - 0x89, 0xa3, 0x2b, 0xae, 0xb1, 0x63, 0x55, 0x5c, 0xa8, 0x10, 0xc5, 0xd5, 0x93, 0x4e, 0x30, 0x76, - 0xa6, 0xa7, 0x0e, 0xd8, 0x99, 0x76, 0xd3, 0x5a, 0xa7, 0xef, 0x5a, 0x6b, 0xe5, 0x2b, 0xa4, 0x87, - 0x8e, 0x5b, 0x21, 0x7d, 0xba, 0x04, 0xa7, 0xb5, 0xc8, 0xa6, 0x0b, 0xc5, 0xdb, 0xa0, 0x42, 0x8b, - 0x5d, 0x58, 0xc7, 0xcf, 0xe8, 0x8c, 0x44, 0x38, 0x9d, 0x53, 0xa7, 0x20, 0xd8, 0xc0, 0x62, 0xf9, - 0x64, 0x24, 0x62, 0xd5, 0xaf, 0xb3, 0xf2, 0x7c, 0x56, 0xb4, 0x63, 0x85, 0x41, 0xa7, 0x22, 0xfd, - 0x2d, 0x72, 0x74, 0xb3, 0x75, 0x15, 0x67, 0x35, 0x08, 0x9b, 0x78, 0xe8, 0x49, 0xce, 0x84, 0xc9, - 0x12, 0x2a, 0xd3, 0x87, 0xc4, 0xad, 0xe0, 0x52, 0x7c, 0x28, 0xa8, 0xec, 0x0e, 0x4b, 0x1c, 0xac, - 0x74, 0x76, 0x87, 0x85, 0xbb, 0x29, 0x0c, 0xfb, 0x7f, 0x5a, 0xf0, 0x48, 0xee, 0x50, 0xdc, 0x03, - 0x3d, 0xbd, 0x93, 0xd6, 0xd3, 0xab, 0x45, 0x6d, 0x62, 0x8c, 0xb7, 0xe8, 0xa2, 0xb3, 0xff, 0xa3, - 0x05, 0x23, 0x1a, 0xff, 0x1e, 0xbc, 0xaa, 0x97, 0x7e, 0xd5, 0xe2, 0xf6, 0x6b, 0xb5, 0x8e, 0x77, - 0xfb, 0xbd, 0x12, 0xa8, 0x5a, 0xa7, 0xd3, 0xae, 0xac, 0x24, 0x7d, 0xc0, 0xa9, 0xf1, 0x2e, 0xf4, - 0xb3, 0x43, 0xef, 0xb8, 0x98, 0x80, 0x9e, 0x34, 0x7f, 0x76, 0x80, 0xae, 0x03, 0x0a, 0xd8, 0xdf, - 0x18, 0x0b, 0x86, 0xac, 0x36, 0x3b, 0x2f, 0x23, 0x59, 0x17, 0x29, 0x78, 0xba, 0x36, 0xbb, 0x68, - 0xc7, 0x0a, 0x83, 0x6a, 0x12, 0xcf, 0x0d, 0x83, 0x59, 0xdf, 0x89, 0xe5, 0x8d, 0xb3, 0x4a, 0x93, - 0x2c, 0x48, 0x00, 0xd6, 0x38, 0xec, 0x3c, 0xdc, 0x8b, 0x5b, 0xbe, 0xb3, 0x6b, 0xec, 0xca, 0x8d, - 0x5a, 0x14, 0x0a, 0x84, 0x4d, 0x3c, 0xbb, 0x09, 0xe3, 0xe9, 0x97, 0x98, 0x23, 0x1b, 0x2c, 0x18, - 0xb5, 0xa7, 0xe1, 0x9c, 0x82, 0x9a, 0xc3, 0x9e, 0x5a, 0x6c, 0x3b, 0x42, 0x26, 0xe8, 0x90, 0x4c, - 0x09, 0xc0, 0x1a, 0xc7, 0xfe, 0x47, 0x16, 0x9c, 0xcc, 0x19, 0xb4, 0x02, 0x53, 0x1c, 0x13, 0x2d, - 0x6d, 0xf2, 0x6c, 0x80, 0x1f, 0x83, 0x81, 0x3a, 0xd9, 0x70, 0x64, 0xb8, 0xa3, 0x21, 0x3d, 0xe7, - 0x78, 0x33, 0x96, 0x70, 0xfb, 0xb7, 0x4a, 0x30, 0x9a, 0xee, 0x6b, 0xcc, 0xd2, 0x86, 0xf8, 0x30, - 0x79, 0xb1, 0x1b, 0x6e, 0x93, 0x68, 0x97, 0xbe, 0xb9, 0x95, 0x49, 0x1b, 0xea, 0xc0, 0xc0, 0x39, - 0x4f, 0xb1, 0x4a, 0xc7, 0x75, 0x35, 0xda, 0x72, 0x46, 0x5e, 0x2f, 0x72, 0x46, 0xea, 0x8f, 0x69, - 0x86, 0x46, 0x28, 0x96, 0xd8, 0xe4, 0x4f, 0x6d, 0x11, 0x16, 0x87, 0x3d, 0xd3, 0xf6, 0xfc, 0xc4, - 0x0b, 0xc4, 0x2b, 0x8b, 0xb9, 0xaa, 0x6c, 0x91, 0xa5, 0x4e, 0x14, 0x9c, 0xf7, 0x9c, 0xfd, 0xbd, - 0x3e, 0x50, 0x29, 0xd5, 0x2c, 0x74, 0xad, 0xa0, 0xc0, 0xbf, 0xc3, 0x26, 0x9f, 0xa9, 0xb9, 0xd5, - 0xb7, 0x5f, 0x2c, 0x09, 0x77, 0xe5, 0x98, 0xfe, 0x5c, 0x35, 0x60, 0x6b, 0x1a, 0x84, 0x4d, 0x3c, - 0xda, 0x13, 0xdf, 0xdb, 0x26, 0xfc, 0xa1, 0xfe, 0x74, 0x4f, 0x16, 0x25, 0x00, 0x6b, 0x1c, 0xda, - 0x93, 0xba, 0xb7, 0xb1, 0x21, 0xfc, 0x12, 0xaa, 0x27, 0x74, 0x74, 0x30, 0x83, 0xf0, 0x5a, 0xf8, - 0xe1, 0x96, 0xb0, 0xbf, 0x8d, 0x5a, 0xf8, 0xe1, 0x16, 0x66, 0x10, 0xfa, 0x95, 0x82, 0x30, 0x6a, - 0x3a, 0xbe, 0xf7, 0x1a, 0xa9, 0x2b, 0x2e, 0xc2, 0xee, 0x56, 0x5f, 0xe9, 0x6a, 0x27, 0x0a, 0xce, - 0x7b, 0x8e, 0x4e, 0xe8, 0x56, 0x44, 0xea, 0x9e, 0x9b, 0x98, 0xd4, 0x20, 0x3d, 0xa1, 0x57, 0x3a, - 0x30, 0x70, 0xce, 0x53, 0x68, 0x1a, 0x46, 0x65, 0x4a, 0xbc, 0x2c, 0x78, 0x34, 0x98, 0x2e, 0xb0, - 0x82, 0xd3, 0x60, 0x9c, 0xc5, 0xa7, 0x42, 0xb2, 0x29, 0x6a, 0xa2, 0x31, 0x33, 0xdd, 0x10, 0x92, - 0xb2, 0x56, 0x1a, 0x56, 0x18, 0xf6, 0xc7, 0xcb, 0x54, 0xa9, 0x77, 0x29, 0x3d, 0x78, 0xcf, 0x02, - 0x4d, 0xd3, 0x33, 0xb2, 0xaf, 0x87, 0x19, 0xf9, 0x2c, 0x0c, 0xdd, 0x8c, 0xc3, 0x40, 0x05, 0x71, - 0x56, 0xba, 0x06, 0x71, 0x1a, 0x58, 0xf9, 0x41, 0x9c, 0xfd, 0x45, 0x05, 0x71, 0x0e, 0xdc, 0x65, - 0x10, 0xe7, 0x1f, 0x54, 0x40, 0xdd, 0x2b, 0x74, 0x95, 0x24, 0xb7, 0xc2, 0x68, 0xcb, 0x0b, 0x1a, - 0xac, 0x94, 0xc0, 0x57, 0x2d, 0x18, 0xe2, 0xeb, 0x65, 0xd1, 0x4c, 0xc2, 0xdb, 0x28, 0xe8, 0xc2, - 0x9a, 0x14, 0xb3, 0xc9, 0x35, 0x83, 0x51, 0xe6, 0xce, 0x61, 0x13, 0x84, 0x53, 0x3d, 0x42, 0x1f, - 0x01, 0x90, 0x4e, 0xdc, 0x0d, 0x29, 0x81, 0x17, 0x8a, 0xe9, 0x1f, 0x26, 0x1b, 0xda, 0xa4, 0x5e, - 0x53, 0x4c, 0xb0, 0xc1, 0x10, 0x7d, 0x5a, 0x27, 0x28, 0xf2, 0x6c, 0x8f, 0x0f, 0x1d, 0xcb, 0xd8, - 0xf4, 0x92, 0x9e, 0x88, 0x61, 0xc0, 0x0b, 0x1a, 0x74, 0x9e, 0x88, 0x60, 0xb7, 0xb7, 0xe7, 0x95, - 0xe1, 0x58, 0x0c, 0x9d, 0xfa, 0x8c, 0xe3, 0x3b, 0x81, 0x4b, 0xa2, 0x05, 0x8e, 0xae, 0x35, 0xa8, - 0x68, 0xc0, 0x92, 0x50, 0xc7, 0x8d, 0x4c, 0x95, 0x5e, 0x6e, 0x64, 0x3a, 0xf3, 0x5e, 0x18, 0xeb, - 0xf8, 0x98, 0x87, 0xca, 0x46, 0xbc, 0xfb, 0x44, 0x46, 0xfb, 0xb7, 0xfb, 0xb5, 0xd2, 0xba, 0x1a, - 0xd6, 0xf9, 0x05, 0x3f, 0x91, 0xfe, 0xa2, 0xc2, 0x64, 0x2e, 0x70, 0x8a, 0x28, 0x35, 0x63, 0x34, - 0x62, 0x93, 0x25, 0x9d, 0xa3, 0x2d, 0x27, 0x22, 0xc1, 0x71, 0xcf, 0xd1, 0x15, 0xc5, 0x04, 0x1b, - 0x0c, 0xd1, 0x66, 0x2a, 0x1d, 0xe9, 0xe2, 0xd1, 0xd3, 0x91, 0x58, 0x81, 0xb2, 0xbc, 0x7b, 0x30, - 0xbe, 0x60, 0xc1, 0x48, 0x90, 0x9a, 0xb9, 0xc5, 0x44, 0x20, 0xe7, 0xaf, 0x0a, 0x7e, 0x2d, 0x5d, - 0xba, 0x0d, 0x67, 0xf8, 0xe7, 0xa9, 0xb4, 0xca, 0x21, 0x55, 0x9a, 0xbe, 0x60, 0xac, 0xbf, 0xdb, - 0x05, 0x63, 0x28, 0x50, 0x37, 0x2c, 0x0e, 0x14, 0x7e, 0xc3, 0x22, 0xe4, 0xdc, 0xae, 0x78, 0x03, - 0x6a, 0x6e, 0x44, 0x9c, 0xe4, 0x2e, 0x2f, 0xdb, 0x63, 0xb1, 0x1d, 0xb3, 0x92, 0x00, 0xd6, 0xb4, - 0xec, 0xff, 0xd3, 0x07, 0x27, 0xe4, 0x88, 0xc8, 0xec, 0x05, 0xaa, 0x1f, 0x39, 0x5f, 0x6d, 0x2b, - 0x2b, 0xfd, 0x78, 0x49, 0x02, 0xb0, 0xc6, 0xa1, 0xf6, 0x58, 0x3b, 0x26, 0xcb, 0x2d, 0x12, 0x2c, - 0x7a, 0xeb, 0xb1, 0x38, 0x8c, 0x55, 0x0b, 0xe5, 0x9a, 0x06, 0x61, 0x13, 0x8f, 0xda, 0xf6, 0x8e, - 0x61, 0xb4, 0x1a, 0xb6, 0xbd, 0x34, 0x54, 0x25, 0x1c, 0xfd, 0x72, 0x6e, 0x2d, 0xe4, 0x62, 0x72, - 0xfe, 0x3a, 0x92, 0x36, 0x0e, 0x79, 0x3f, 0xeb, 0xdf, 0xb7, 0xe0, 0x34, 0x6f, 0x95, 0x23, 0x79, - 0xad, 0x55, 0x77, 0x12, 0x12, 0x17, 0x73, 0x87, 0x42, 0x4e, 0xff, 0xb4, 0x7b, 0x39, 0x8f, 0x2d, - 0xce, 0xef, 0x0d, 0x7a, 0xdd, 0x82, 0xd1, 0xad, 0x54, 0xb9, 0x18, 0xa9, 0x3a, 0x8e, 0x5a, 0xc9, - 0x21, 0x45, 0x54, 0x2f, 0xb5, 0x74, 0x7b, 0x8c, 0xb3, 0xdc, 0xed, 0xff, 0x61, 0x81, 0x29, 0x46, - 0xef, 0x7d, 0x95, 0x99, 0xc3, 0x9b, 0x82, 0xd2, 0xba, 0xac, 0x74, 0xb5, 0x2e, 0x1f, 0x85, 0x72, - 0xdb, 0xab, 0x8b, 0xfd, 0x85, 0x3e, 0x22, 0x5e, 0x98, 0xc3, 0xb4, 0xdd, 0xfe, 0x97, 0x15, 0xed, - 0x06, 0x11, 0x29, 0x75, 0x3f, 0x14, 0xaf, 0xbd, 0xa1, 0xea, 0xd4, 0xf1, 0x37, 0xbf, 0xda, 0x51, - 0xa7, 0xee, 0xa7, 0x0e, 0x9f, 0x31, 0xc9, 0x07, 0xa8, 0x5b, 0x99, 0xba, 0x81, 0x03, 0xd2, 0x25, - 0x6f, 0x42, 0x95, 0x6e, 0xc1, 0x98, 0x3f, 0xb3, 0x9a, 0xea, 0x54, 0xf5, 0x92, 0x68, 0xbf, 0xb3, - 0x37, 0xf1, 0xae, 0xc3, 0x77, 0x4b, 0x3e, 0x8d, 0x15, 0x7d, 0x14, 0x43, 0x8d, 0xfe, 0x66, 0x99, - 0x9d, 0x62, 0x73, 0x77, 0x4d, 0xc9, 0x4c, 0x09, 0x28, 0x24, 0x6d, 0x54, 0xf3, 0x41, 0x01, 0xd4, - 0xd8, 0x55, 0xd6, 0x8c, 0x29, 0xdf, 0x03, 0xae, 0xa8, 0xfc, 0x4a, 0x09, 0xb8, 0xb3, 0x37, 0xf1, - 0xc2, 0xe1, 0x99, 0xaa, 0xc7, 0xb1, 0x66, 0x61, 0xff, 0x75, 0x9f, 0x9e, 0xbb, 0xa2, 0x3c, 0xe1, - 0x0f, 0xc5, 0xdc, 0x7d, 0x3e, 0x33, 0x77, 0xcf, 0x75, 0xcc, 0xdd, 0x11, 0x7d, 0xe5, 0x72, 0x6a, - 0x36, 0xde, 0x6b, 0x43, 0xe0, 0x60, 0x7f, 0x03, 0xb3, 0x80, 0x5e, 0x6d, 0x7b, 0x11, 0x89, 0x57, - 0xa2, 0x76, 0xe0, 0x05, 0x0d, 0x36, 0x1d, 0xab, 0xa6, 0x05, 0x94, 0x02, 0xe3, 0x2c, 0x3e, 0xdd, - 0xd4, 0xd3, 0x6f, 0x7e, 0xc3, 0xd9, 0xe6, 0xb3, 0xca, 0xa8, 0xd8, 0xb6, 0x2a, 0xda, 0xb1, 0xc2, - 0x40, 0x9b, 0x70, 0x56, 0x12, 0x98, 0x23, 0x3e, 0x11, 0x77, 0x26, 0x6f, 0x78, 0x51, 0x93, 0x07, - 0x88, 0xf3, 0xc8, 0x84, 0xb7, 0x09, 0x0a, 0x67, 0xf1, 0x3e, 0xb8, 0x78, 0x5f, 0x4a, 0xf6, 0xd7, - 0xd9, 0x79, 0xbd, 0x91, 0xbc, 0x4e, 0x67, 0x9f, 0xcf, 0x6e, 0x29, 0xe7, 0x85, 0xe5, 0xd4, 0xec, - 0xe3, 0x57, 0x93, 0x73, 0x18, 0xba, 0x05, 0x03, 0xeb, 0xfc, 0xbe, 0xcd, 0x62, 0x6a, 0xfb, 0x8b, - 0xcb, 0x3b, 0xd9, 0x4d, 0x46, 0xf2, 0x26, 0xcf, 0x3b, 0xfa, 0x27, 0x96, 0xdc, 0xec, 0x6f, 0x55, - 0x60, 0x34, 0x73, 0x8f, 0x75, 0xaa, 0xa4, 0x6f, 0xe9, 0xc0, 0x92, 0xbe, 0x1f, 0x04, 0xa8, 0x93, - 0x96, 0x1f, 0xee, 0x32, 0xc3, 0xaf, 0xef, 0xd0, 0x86, 0x9f, 0xda, 0x2b, 0xcc, 0x29, 0x2a, 0xd8, - 0xa0, 0x28, 0xaa, 0xe9, 0xf1, 0x0a, 0xc1, 0x99, 0x6a, 0x7a, 0xc6, 0x0d, 0x20, 0xfd, 0xf7, 0xf6, - 0x06, 0x10, 0x0f, 0x46, 0x79, 0x17, 0x55, 0x8a, 0xf8, 0x5d, 0x64, 0x82, 0xb3, 0x24, 0x9b, 0xb9, - 0x34, 0x19, 0x9c, 0xa5, 0x7b, 0x3f, 0xaf, 0xa9, 0x47, 0xef, 0x80, 0x9a, 0xfc, 0xce, 0xf1, 0x78, - 0x4d, 0x97, 0xd9, 0x90, 0xd3, 0x80, 0x5d, 0x1f, 0x2f, 0x7e, 0x76, 0x54, 0xbb, 0x80, 0xfb, 0x55, - 0xed, 0xc2, 0xfe, 0x7c, 0x89, 0xee, 0x18, 0x78, 0xbf, 0x54, 0xe1, 0xa6, 0x27, 0xa0, 0xdf, 0x69, - 0x27, 0x9b, 0x61, 0xc7, 0x8d, 0x9d, 0xd3, 0xac, 0x15, 0x0b, 0x28, 0x5a, 0x84, 0xbe, 0xba, 0x2e, - 0xc6, 0x73, 0x98, 0xef, 0xa9, 0x9d, 0xaf, 0x4e, 0x42, 0x30, 0xa3, 0x82, 0xce, 0x42, 0x5f, 0xe2, - 0x34, 0x64, 0x5e, 0x20, 0xcb, 0x05, 0x5f, 0x73, 0x1a, 0x31, 0x66, 0xad, 0xa6, 0xa1, 0xd0, 0x77, - 0x80, 0xa1, 0xf0, 0x02, 0x0c, 0xc7, 0x5e, 0x23, 0x70, 0x92, 0x76, 0x44, 0x8c, 0xf3, 0x49, 0x1d, - 0x9d, 0x62, 0x02, 0x71, 0x1a, 0xd7, 0xfe, 0x9d, 0x21, 0x38, 0xb5, 0x3a, 0xbb, 0x24, 0x4b, 0xcc, - 0x1f, 0x5b, 0x6a, 0x5f, 0x1e, 0x8f, 0x7b, 0x97, 0xda, 0xd7, 0x85, 0xbb, 0x6f, 0xa4, 0xf6, 0xf9, - 0x46, 0x6a, 0x5f, 0x3a, 0xcf, 0xaa, 0x5c, 0x44, 0x9e, 0x55, 0x5e, 0x0f, 0x7a, 0xc9, 0xb3, 0x3a, - 0xb6, 0x5c, 0xbf, 0x7d, 0x3b, 0x74, 0xa8, 0x5c, 0x3f, 0x95, 0x08, 0x59, 0x48, 0x06, 0x4c, 0x97, - 0x4f, 0x95, 0x9b, 0x08, 0xa9, 0x92, 0xd0, 0x78, 0x76, 0x97, 0x10, 0xf5, 0x2f, 0x17, 0xdf, 0x81, - 0x1e, 0x92, 0xd0, 0x44, 0x82, 0x99, 0x99, 0xf8, 0x38, 0x50, 0x44, 0xe2, 0x63, 0x5e, 0x77, 0x0e, - 0x4c, 0x7c, 0x7c, 0x01, 0x86, 0x5d, 0x3f, 0x0c, 0xc8, 0x4a, 0x14, 0x26, 0xa1, 0x1b, 0xca, 0x3b, - 0x03, 0xf5, 0x95, 0x37, 0x26, 0x10, 0xa7, 0x71, 0xbb, 0x65, 0x4d, 0xd6, 0x8e, 0x9a, 0x35, 0x09, - 0xf7, 0x29, 0x6b, 0xf2, 0x17, 0x74, 0x7e, 0xff, 0x20, 0xfb, 0x22, 0x1f, 0x2c, 0xfe, 0x8b, 0xf4, - 0x74, 0x29, 0xe0, 0x1b, 0xfc, 0xca, 0x4c, 0x6a, 0x82, 0xcf, 0x86, 0x4d, 0x6a, 0xf8, 0x0d, 0xb1, - 0x21, 0x79, 0xe5, 0x18, 0x26, 0xec, 0x8d, 0x55, 0xcd, 0x46, 0x5d, 0xa3, 0xa9, 0x9b, 0x70, 0xba, - 0x23, 0x47, 0xa9, 0x3f, 0xf0, 0xe5, 0x12, 0xfc, 0xc8, 0x81, 0x5d, 0x40, 0xb7, 0x00, 0x12, 0xa7, - 0x21, 0x26, 0xaa, 0x38, 0x9a, 0x39, 0x62, 0x08, 0xe9, 0x9a, 0xa4, 0xc7, 0x0b, 0xe7, 0xa8, 0xbf, - 0xec, 0xd0, 0x43, 0xfe, 0x66, 0x91, 0xa3, 0xa1, 0xdf, 0x51, 0x5f, 0x14, 0x87, 0x3e, 0xc1, 0x0c, - 0x42, 0xd5, 0x7f, 0x44, 0x1a, 0xfa, 0xbe, 0x79, 0xf5, 0xf9, 0x30, 0x6b, 0xc5, 0x02, 0x8a, 0x9e, - 0x83, 0x41, 0xc7, 0xf7, 0x79, 0x7a, 0x12, 0x89, 0xc5, 0x5d, 0x54, 0xba, 0xd0, 0xa1, 0x06, 0x61, - 0x13, 0xcf, 0xfe, 0xcb, 0x12, 0x4c, 0x1c, 0x20, 0x53, 0x3a, 0xd2, 0x52, 0x2b, 0x3d, 0xa7, 0xa5, - 0x8a, 0x94, 0x8d, 0xfe, 0x2e, 0x29, 0x1b, 0xcf, 0xc1, 0x60, 0x42, 0x9c, 0xa6, 0x08, 0x3a, 0x13, - 0x3e, 0x07, 0x7d, 0xd6, 0xac, 0x41, 0xd8, 0xc4, 0xa3, 0x52, 0x6c, 0xc4, 0x71, 0x5d, 0x12, 0xc7, - 0x32, 0x27, 0x43, 0xf8, 0x6d, 0x0b, 0x4b, 0xf8, 0x60, 0xee, 0xf0, 0xe9, 0x14, 0x0b, 0x9c, 0x61, - 0x99, 0x1d, 0xf0, 0x5a, 0x8f, 0x03, 0xfe, 0xb5, 0x12, 0x3c, 0xba, 0xaf, 0x76, 0xeb, 0x39, 0x5d, - 0xa6, 0x1d, 0x93, 0x28, 0x3b, 0x71, 0xae, 0xc5, 0x24, 0xc2, 0x0c, 0xc2, 0x47, 0xa9, 0xd5, 0x32, - 0xee, 0xf3, 0x2f, 0x3a, 0x77, 0x8c, 0x8f, 0x52, 0x8a, 0x05, 0xce, 0xb0, 0xbc, 0xdb, 0x69, 0xf9, - 0xad, 0x3e, 0x78, 0xbc, 0x07, 0x1b, 0xa0, 0xc0, 0x1c, 0xbb, 0x74, 0x3e, 0x68, 0xf9, 0x3e, 0xe5, - 0x83, 0xde, 0xdd, 0x70, 0xbd, 0x99, 0x46, 0xda, 0x53, 0x2e, 0xdf, 0xd7, 0x4b, 0x70, 0xa6, 0xbb, - 0xc1, 0x82, 0xde, 0x0d, 0xa3, 0x91, 0x0a, 0xb2, 0x33, 0x53, 0x49, 0x4f, 0x72, 0xcf, 0x4e, 0x0a, - 0x84, 0xb3, 0xb8, 0x68, 0x12, 0xa0, 0xe5, 0x24, 0x9b, 0xf1, 0x85, 0x1d, 0x2f, 0x4e, 0x44, 0x41, - 0xa9, 0x11, 0x7e, 0x96, 0x28, 0x5b, 0xb1, 0x81, 0x41, 0xd9, 0xb1, 0x7f, 0x73, 0xe1, 0xd5, 0x30, - 0xe1, 0x0f, 0xf1, 0xcd, 0xd6, 0x49, 0x79, 0xfd, 0x8e, 0x01, 0xc2, 0x59, 0x5c, 0xca, 0x8e, 0x9d, - 0x56, 0xf3, 0x8e, 0xf2, 0x5d, 0x18, 0x63, 0xb7, 0xa8, 0x5a, 0xb1, 0x81, 0x91, 0x4d, 0x92, 0xad, - 0x1c, 0x9c, 0x24, 0x6b, 0xff, 0x8b, 0x12, 0x3c, 0xd2, 0xd5, 0xe0, 0xed, 0x4d, 0x4c, 0x3d, 0x78, - 0x89, 0xad, 0x77, 0xb9, 0xc2, 0x0e, 0x97, 0x10, 0xf9, 0x27, 0x5d, 0x66, 0x9a, 0x48, 0x88, 0xbc, - 0xfb, 0x3a, 0x0f, 0x0f, 0xde, 0x78, 0x76, 0xe4, 0x40, 0xf6, 0x1d, 0x22, 0x07, 0x32, 0xf3, 0x31, - 0x2a, 0x3d, 0x6a, 0x87, 0x3f, 0xeb, 0xeb, 0x3a, 0xbc, 0x74, 0x83, 0xdc, 0x93, 0xdf, 0x7c, 0x0e, - 0x4e, 0x78, 0x01, 0xbb, 0x8a, 0x6d, 0xb5, 0xbd, 0x2e, 0x6a, 0x0c, 0xf1, 0x42, 0x9a, 0x2a, 0xd1, - 0x62, 0x21, 0x03, 0xc7, 0x1d, 0x4f, 0x3c, 0x80, 0x39, 0xa9, 0x77, 0x37, 0xa4, 0x87, 0x94, 0xdc, - 0xcb, 0x70, 0x5a, 0x0e, 0xc5, 0xa6, 0x13, 0x91, 0xba, 0x50, 0xb6, 0xb1, 0x48, 0xad, 0x79, 0x84, - 0xa7, 0xe7, 0xe4, 0x20, 0xe0, 0xfc, 0xe7, 0xd8, 0xed, 0x57, 0x61, 0xcb, 0x73, 0xc5, 0x56, 0x50, - 0xdf, 0x7e, 0x45, 0x1b, 0x31, 0x87, 0x69, 0x7d, 0x51, 0xbb, 0x37, 0xfa, 0xe2, 0x83, 0x50, 0x53, - 0xe3, 0xcd, 0xb3, 0x04, 0xd4, 0x24, 0xef, 0xc8, 0x12, 0x50, 0x33, 0xdc, 0xc0, 0x3a, 0xe8, 0x7a, - 0xd6, 0x9f, 0x80, 0x21, 0xe5, 0xfd, 0xea, 0xf5, 0x0e, 0x32, 0xfb, 0xcf, 0xfb, 0x61, 0x38, 0x55, - 0x57, 0x34, 0xe5, 0xf6, 0xb6, 0x0e, 0x74, 0x7b, 0xb3, 0x04, 0x91, 0x76, 0x20, 0x2f, 0x28, 0x34, - 0x12, 0x44, 0xda, 0x01, 0xc1, 0x1c, 0x46, 0x37, 0x1d, 0xf5, 0x68, 0x17, 0xb7, 0x03, 0x11, 0xf1, - 0xaa, 0x36, 0x1d, 0x73, 0xac, 0x15, 0x0b, 0x28, 0xfa, 0x98, 0x05, 0x43, 0x31, 0x3b, 0xbd, 0xe1, - 0x87, 0x06, 0x62, 0x92, 0x5f, 0x3e, 0x7a, 0xd9, 0x54, 0x55, 0x43, 0x97, 0x45, 0x48, 0x99, 0x2d, - 0x38, 0xc5, 0x11, 0x7d, 0xd2, 0x82, 0x9a, 0xba, 0x47, 0x49, 0xdc, 0x36, 0xba, 0x5a, 0x6c, 0xd9, - 0x56, 0xee, 0x6d, 0x56, 0x07, 0x61, 0xaa, 0x7e, 0x26, 0xd6, 0x8c, 0x51, 0xac, 0x3c, 0xfa, 0x03, - 0xc7, 0xe3, 0xd1, 0x87, 0x1c, 0x6f, 0xfe, 0x3b, 0xa0, 0xd6, 0x74, 0x02, 0x6f, 0x83, 0xc4, 0x09, - 0x77, 0xb2, 0xcb, 0x6a, 0xd2, 0xb2, 0x11, 0x6b, 0x38, 0x35, 0x00, 0x62, 0xf6, 0x62, 0x89, 0xe1, - 0x15, 0x67, 0x06, 0xc0, 0xaa, 0x6e, 0xc6, 0x26, 0x8e, 0xe9, 0xc2, 0x87, 0xfb, 0xea, 0xc2, 0x1f, - 0x3c, 0xc0, 0x85, 0xbf, 0x0a, 0xa7, 0x9d, 0x76, 0x12, 0x5e, 0x22, 0x8e, 0x3f, 0xcd, 0xaf, 0x0e, - 0x16, 0x57, 0xe1, 0x0f, 0x31, 0xb7, 0x90, 0x8a, 0xe9, 0x58, 0x25, 0xfe, 0x46, 0x07, 0x12, 0xce, - 0x7f, 0xd6, 0xfe, 0xa7, 0x16, 0x9c, 0xce, 0x9d, 0x0a, 0x0f, 0x6e, 0x34, 0xad, 0xfd, 0xa5, 0x0a, - 0x9c, 0xcc, 0xa9, 0x3a, 0x8c, 0x76, 0xcd, 0x45, 0x62, 0x15, 0x11, 0x98, 0x92, 0x8e, 0xb3, 0x90, - 0xdf, 0x26, 0x67, 0x65, 0x1c, 0xee, 0x54, 0x4e, 0x9f, 0x8c, 0x95, 0xef, 0xed, 0xc9, 0x98, 0x31, - 0xd7, 0xfb, 0xee, 0xeb, 0x5c, 0xaf, 0x1c, 0x30, 0xd7, 0xbf, 0x61, 0xc1, 0x78, 0xb3, 0xcb, 0x55, - 0x17, 0xc2, 0xc7, 0x7c, 0xfd, 0x78, 0x2e, 0xd2, 0x98, 0x39, 0x7b, 0x7b, 0x6f, 0xa2, 0xeb, 0x0d, - 0x23, 0xb8, 0x6b, 0xaf, 0xec, 0xef, 0x95, 0x81, 0x95, 0xbc, 0x66, 0x95, 0x25, 0x77, 0xd1, 0x47, - 0xcd, 0xe2, 0xe5, 0x56, 0x51, 0x85, 0xb6, 0x39, 0x71, 0x55, 0xfc, 0x9c, 0x8f, 0x60, 0x5e, 0x2d, - 0xf4, 0xac, 0x24, 0x2c, 0xf5, 0x20, 0x09, 0x7d, 0x59, 0x25, 0xbe, 0x5c, 0x7c, 0x95, 0xf8, 0x5a, - 0xb6, 0x42, 0xfc, 0xfe, 0x9f, 0xb8, 0xef, 0x81, 0xfc, 0xc4, 0xbf, 0x62, 0x71, 0xc1, 0x93, 0xf9, - 0x0a, 0xda, 0xdc, 0xb0, 0xf6, 0x31, 0x37, 0x9e, 0x82, 0x6a, 0x2c, 0x24, 0xb3, 0x30, 0x4b, 0x74, - 0x50, 0x84, 0x68, 0xc7, 0x0a, 0x83, 0x5d, 0x23, 0xed, 0xfb, 0xe1, 0xad, 0x0b, 0xcd, 0x56, 0xb2, - 0x2b, 0x0c, 0x14, 0x7d, 0x8d, 0xb4, 0x82, 0x60, 0x03, 0xcb, 0xfe, 0x7b, 0x25, 0x3e, 0x03, 0x45, - 0x64, 0xcd, 0xf3, 0x99, 0x8b, 0x3f, 0x7b, 0x0f, 0x4a, 0xf9, 0x30, 0x80, 0x1b, 0x36, 0x5b, 0xd4, - 0x78, 0x5d, 0x0b, 0xc5, 0xf1, 0xdf, 0xa5, 0xa3, 0x1a, 0xa2, 0x92, 0x9e, 0x7e, 0x0d, 0xdd, 0x86, - 0x0d, 0x7e, 0x29, 0x59, 0x5a, 0x3e, 0x50, 0x96, 0xa6, 0xc4, 0x4a, 0xdf, 0xfe, 0x62, 0xc5, 0xfe, - 0x4b, 0x0b, 0x52, 0x66, 0x16, 0x6a, 0x41, 0x85, 0x76, 0x77, 0x57, 0xac, 0xd0, 0xe5, 0xe2, 0x6c, - 0x3a, 0x2a, 0x1a, 0xc5, 0xb4, 0x67, 0x3f, 0x31, 0x67, 0x84, 0x7c, 0x11, 0x80, 0xc3, 0x47, 0xf5, - 0x6a, 0x71, 0x0c, 0x2f, 0x85, 0xe1, 0x16, 0x3f, 0xc3, 0xd6, 0xc1, 0x3c, 0xf6, 0xf3, 0x30, 0xd6, - 0xd1, 0x29, 0x76, 0xc7, 0x5f, 0x48, 0xb5, 0x4f, 0x66, 0xba, 0xb2, 0x7c, 0x64, 0xcc, 0x61, 0xf6, - 0xd7, 0x2d, 0x38, 0x91, 0x25, 0x8f, 0xde, 0xb0, 0x60, 0x2c, 0xce, 0xd2, 0x3b, 0xae, 0xb1, 0x53, - 0x41, 0xb4, 0x1d, 0x20, 0xdc, 0xd9, 0x09, 0xfb, 0xaf, 0xc5, 0xe4, 0xbf, 0xe1, 0x05, 0xf5, 0xf0, - 0x96, 0x32, 0x4c, 0xac, 0xae, 0x86, 0x09, 0x5d, 0x8f, 0xee, 0x26, 0xa9, 0xb7, 0xfd, 0x8e, 0xec, - 0xe6, 0x55, 0xd1, 0x8e, 0x15, 0x06, 0x4b, 0xe6, 0x6c, 0x8b, 0x6b, 0x24, 0x32, 0x93, 0x72, 0x4e, - 0xb4, 0x63, 0x85, 0x81, 0x9e, 0x85, 0x21, 0xe3, 0x25, 0xe5, 0xbc, 0x64, 0x56, 0xbe, 0xa1, 0x32, - 0x63, 0x9c, 0xc2, 0x42, 0x93, 0x00, 0xca, 0xc8, 0x91, 0x2a, 0x92, 0x79, 0xbb, 0x94, 0x24, 0x8a, - 0xb1, 0x81, 0xc1, 0x52, 0xa7, 0xfd, 0x76, 0xcc, 0x8e, 0x73, 0xfa, 0x75, 0x69, 0xe3, 0x59, 0xd1, - 0x86, 0x15, 0x94, 0x4a, 0x93, 0xa6, 0x13, 0xb4, 0x1d, 0x9f, 0x8e, 0x90, 0xd8, 0xbf, 0xaa, 0x65, - 0xb8, 0xa4, 0x20, 0xd8, 0xc0, 0xa2, 0x6f, 0x9c, 0x78, 0x4d, 0xf2, 0x52, 0x18, 0xc8, 0xe0, 0x47, - 0x7d, 0xc2, 0x27, 0xda, 0xb1, 0xc2, 0xb0, 0xff, 0xc2, 0x82, 0x51, 0x5d, 0xb3, 0x81, 0xdf, 0xe6, - 0x6f, 0x6e, 0xb7, 0xad, 0x03, 0xb7, 0xdb, 0xe9, 0x0c, 0xf5, 0x52, 0x4f, 0x19, 0xea, 0x66, 0xf2, - 0x78, 0x79, 0xdf, 0xe4, 0xf1, 0x1f, 0xd5, 0x37, 0x45, 0xf3, 0x2c, 0xf3, 0xc1, 0xbc, 0x5b, 0xa2, - 0x91, 0x0d, 0xfd, 0xae, 0xa3, 0x6a, 0x1b, 0x0d, 0xf1, 0x0d, 0xc9, 0xec, 0x34, 0x43, 0x12, 0x10, - 0x7b, 0x19, 0x6a, 0xea, 0xa0, 0x4b, 0xee, 0x7e, 0xad, 0xfc, 0xdd, 0x6f, 0x4f, 0x49, 0xac, 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, 0x6e, - 0xf4, 0x2b, 0xfd, 0xf1, 0xb4, 0x5b, 0x9f, 0xda, 0x3e, 0xcf, 0x02, 0x30, 0xe9, 0xf2, 0x9a, 0x32, - 0xe6, 0xd4, 0x94, 0x5c, 0x5e, 0xff, 0x37, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x57, 0x97, 0x8d, 0x5b, - 0xec, 0x00, 0x00, + 0xe6, 0x8c, 0xee, 0xc9, 0x89, 0xb1, 0x00, 0x27, 0xc9, 0x4e, 0x12, 0x39, 0xca, 0x34, 0xe6, 0x89, + 0x55, 0x35, 0x26, 0xf4, 0xd8, 0x27, 0xb9, 0xd0, 0x09, 0xc6, 0x79, 0xcf, 0x1c, 0x45, 0x51, 0x7c, + 0xb6, 0x04, 0x23, 0xf3, 0x41, 0x7b, 0x65, 0x7e, 0xa5, 0xbd, 0xee, 0x7b, 0xee, 0x15, 0xb2, 0x4b, + 0xb5, 0xc1, 0x16, 0xd9, 0x5d, 0x98, 0x13, 0x8b, 0x51, 0x4d, 0xbf, 0x2b, 0xb4, 0x11, 0x73, 0x18, + 0x95, 0x6b, 0x1b, 0x5e, 0xd0, 0x20, 0x51, 0x2b, 0xf2, 0x84, 0xf3, 0xd9, 0x90, 0x6b, 0x17, 0x35, + 0x08, 0x9b, 0x78, 0x94, 0x76, 0x78, 0x2b, 0x20, 0x51, 0xd6, 0x54, 0x5f, 0xa6, 0x8d, 0x98, 0xc3, + 0x28, 0x52, 0x12, 0xb5, 0x85, 0x6f, 0xc7, 0x40, 0x5a, 0xa3, 0x8d, 0x98, 0xc3, 0xa8, 0xd0, 0x88, + 0xdb, 0xeb, 0x2c, 0x0a, 0x28, 0x93, 0x61, 0xb2, 0xca, 0x9b, 0xb1, 0x84, 0x53, 0xd4, 0x2d, 0xb2, + 0x3b, 0x47, 0xf7, 0xf5, 0x99, 0xa4, 0xb9, 0x2b, 0xbc, 0x19, 0x4b, 0x38, 0x2b, 0xb3, 0x9a, 0x1e, + 0x8e, 0x1f, 0xb8, 0x32, 0xab, 0xe9, 0xee, 0x77, 0xf1, 0x10, 0xfc, 0xba, 0x05, 0x43, 0x66, 0xec, + 0x1e, 0x6a, 0x64, 0xcc, 0xea, 0xe5, 0x8e, 0x2a, 0xdd, 0xef, 0xce, 0xbb, 0xc1, 0xb2, 0xe1, 0x25, + 0x61, 0x2b, 0x7e, 0x9a, 0x04, 0x0d, 0x2f, 0x20, 0x2c, 0xb6, 0x82, 0xc7, 0xfc, 0xa5, 0x02, 0x03, + 0x67, 0xc3, 0x3a, 0xb9, 0x0b, 0xbb, 0xdc, 0xbe, 0x01, 0x63, 0x1d, 0x99, 0x92, 0x3d, 0x58, 0x33, + 0x07, 0xe6, 0xa9, 0xdb, 0x18, 0x06, 0x29, 0x61, 0x59, 0xea, 0x6b, 0x16, 0xc6, 0xf8, 0x9a, 0xa4, + 0x9c, 0x56, 0xdd, 0x4d, 0xd2, 0x54, 0xd9, 0xaf, 0xec, 0xa4, 0xe3, 0x7a, 0x16, 0x88, 0x3b, 0xf1, + 0xed, 0xcf, 0x59, 0x30, 0x9c, 0x4a, 0x5e, 0x2d, 0xc8, 0xee, 0x62, 0x2b, 0x2d, 0x64, 0xa1, 0xa4, + 0x2c, 0x9e, 0xbe, 0xcc, 0xf4, 0xb2, 0x5e, 0x69, 0x1a, 0x84, 0x4d, 0x3c, 0xfb, 0x8b, 0x25, 0xa8, + 0xca, 0x70, 0x9c, 0x1e, 0xba, 0xf2, 0x19, 0x0b, 0x86, 0xd5, 0xe9, 0x12, 0x73, 0x07, 0x96, 0x8a, + 0xc8, 0xce, 0xa1, 0x3d, 0x50, 0x0e, 0x85, 0x60, 0x23, 0xd4, 0x9b, 0x00, 0x6c, 0x32, 0xc3, 0x69, + 0xde, 0xe8, 0x3a, 0x40, 0xbc, 0x1b, 0x27, 0xa4, 0x69, 0x38, 0x26, 0x6d, 0x63, 0xc5, 0x4d, 0xba, + 0x61, 0x44, 0xe8, 0xfa, 0xba, 0x1a, 0xd6, 0xc9, 0xaa, 0xc2, 0xd4, 0xd6, 0x98, 0x6e, 0xc3, 0x06, + 0x25, 0xfb, 0x1f, 0x97, 0xe0, 0x44, 0xb6, 0x4b, 0xe8, 0x03, 0x30, 0x24, 0xb9, 0x1b, 0x1b, 0x58, + 0x19, 0x4c, 0x34, 0x84, 0x0d, 0xd8, 0x9d, 0xbd, 0x89, 0x89, 0xce, 0xdb, 0x50, 0x27, 0x4d, 0x14, + 0x9c, 0x22, 0xc6, 0x8f, 0xf8, 0xc4, 0x59, 0xf4, 0xcc, 0xee, 0x74, 0xab, 0x25, 0xce, 0xe9, 0x8c, + 0x23, 0x3e, 0x13, 0x8a, 0x33, 0xd8, 0x68, 0x05, 0x4e, 0x19, 0x2d, 0x57, 0x89, 0xd7, 0xd8, 0x5c, + 0x0f, 0x23, 0xb9, 0x99, 0x3b, 0xab, 0xa3, 0x04, 0x3b, 0x71, 0x70, 0xee, 0x93, 0xd4, 0x70, 0x70, + 0x9d, 0x96, 0xe3, 0x7a, 0xc9, 0xae, 0xf0, 0xb4, 0x2a, 0xd9, 0x34, 0x2b, 0xda, 0xb1, 0xc2, 0xb0, + 0x97, 0xa0, 0xaf, 0xc7, 0x19, 0xd4, 0xd3, 0x26, 0xe2, 0x45, 0xa8, 0x52, 0x72, 0xd2, 0x52, 0x2c, + 0x82, 0x64, 0x08, 0x55, 0x79, 0xb7, 0x14, 0xb2, 0xa1, 0xec, 0x39, 0xf2, 0x14, 0x55, 0xbd, 0xd6, + 0x42, 0x1c, 0xb7, 0xd9, 0xbe, 0x9c, 0x02, 0xd1, 0xe3, 0x50, 0x26, 0x3b, 0xad, 0xec, 0x71, 0xe9, + 0x85, 0x9d, 0x96, 0x17, 0x91, 0x98, 0x22, 0x91, 0x9d, 0x16, 0x3a, 0x03, 0x25, 0xaf, 0x2e, 0x94, + 0x14, 0x08, 0x9c, 0xd2, 0xc2, 0x1c, 0x2e, 0x79, 0x75, 0x7b, 0x07, 0x6a, 0xea, 0x32, 0x2b, 0xb4, + 0x25, 0x65, 0xb7, 0x55, 0x44, 0xfc, 0x9c, 0xa4, 0xdb, 0x45, 0x6a, 0xb7, 0x01, 0x74, 0xe6, 0x6b, + 0x51, 0xf2, 0xe5, 0x1c, 0xf4, 0xb9, 0xa1, 0xa8, 0x30, 0x50, 0xd5, 0x64, 0x98, 0xd0, 0x66, 0x10, + 0xfb, 0x06, 0x8c, 0x5c, 0x09, 0xc2, 0x5b, 0xec, 0xce, 0x09, 0x56, 0x62, 0x91, 0x12, 0xde, 0xa0, + 0x3f, 0xb2, 0x26, 0x02, 0x83, 0x62, 0x0e, 0x53, 0xc5, 0xdf, 0x4a, 0xdd, 0x8a, 0xbf, 0xd9, 0x1f, + 0xb3, 0x60, 0x48, 0xa5, 0xd0, 0xcd, 0x6f, 0x6f, 0x51, 0xba, 0x8d, 0x28, 0x6c, 0xb7, 0xb2, 0x74, + 0xd9, 0xbd, 0x79, 0x98, 0xc3, 0xcc, 0xdc, 0xd2, 0xd2, 0x01, 0xb9, 0xa5, 0xe7, 0xa0, 0x6f, 0xcb, + 0x0b, 0xea, 0xd9, 0xfb, 0x93, 0xae, 0x78, 0x41, 0x1d, 0x33, 0x08, 0xed, 0xc2, 0x09, 0xd5, 0x05, + 0xa9, 0x10, 0x9e, 0x87, 0xa1, 0xf5, 0xb6, 0xe7, 0xd7, 0x65, 0xed, 0xc8, 0x8c, 0x73, 0x66, 0xc6, + 0x80, 0xe1, 0x14, 0x26, 0xdd, 0x22, 0xae, 0x7b, 0x81, 0x13, 0xed, 0xae, 0x68, 0x0d, 0xa4, 0x84, + 0xd2, 0x8c, 0x82, 0x60, 0x03, 0xcb, 0x7e, 0xbd, 0x0c, 0x23, 0xe9, 0x44, 0xc2, 0x1e, 0x76, 0x6a, + 0x8f, 0x43, 0x85, 0xe5, 0x16, 0x66, 0x3f, 0x2d, 0x2f, 0xb7, 0xc8, 0x61, 0x28, 0x86, 0x7e, 0x5e, + 0x61, 0xa5, 0x98, 0xbb, 0xc7, 0x54, 0x27, 0x95, 0x4b, 0x87, 0x45, 0x19, 0x8a, 0xa2, 0x2e, 0x82, + 0x15, 0xfa, 0xa4, 0x05, 0x03, 0x61, 0xcb, 0x2c, 0x1a, 0xf6, 0xfe, 0x22, 0x93, 0x2c, 0x45, 0xe6, + 0x95, 0x30, 0xae, 0xd5, 0xa7, 0x97, 0x9f, 0x43, 0xb2, 0x3e, 0xf3, 0x2e, 0x18, 0x32, 0x31, 0x0f, + 0x32, 0x8a, 0xab, 0xa6, 0x51, 0xfc, 0x19, 0x73, 0x52, 0x88, 0x34, 0xd2, 0x1e, 0x96, 0xdb, 0x35, + 0xa8, 0xb8, 0x2a, 0x14, 0xe3, 0xae, 0x2a, 0x0e, 0xab, 0x92, 0x27, 0xec, 0x98, 0x8b, 0x53, 0xb3, + 0xbf, 0x63, 0x19, 0xf3, 0x03, 0x93, 0x78, 0xa1, 0x8e, 0x22, 0x28, 0x37, 0xb6, 0xb7, 0x84, 0x29, + 0x7a, 0xb9, 0xa0, 0xe1, 0x9d, 0xdf, 0xde, 0xd2, 0x73, 0xdc, 0x6c, 0xc5, 0x94, 0x59, 0x0f, 0x7e, + 0xc7, 0x54, 0xb6, 0x71, 0xf9, 0xe0, 0x6c, 0x63, 0xfb, 0x8d, 0x12, 0x8c, 0x75, 0x4c, 0x2a, 0xf4, + 0x1a, 0x54, 0x22, 0xfa, 0x96, 0xe2, 0xf5, 0x16, 0x0b, 0xcb, 0x0f, 0x8e, 0x17, 0xea, 0x5a, 0xef, + 0xa6, 0xdb, 0x31, 0x67, 0x89, 0x2e, 0x03, 0xd2, 0x01, 0x43, 0xca, 0xe9, 0xc9, 0x5f, 0x59, 0x45, + 0x15, 0x4c, 0x77, 0x60, 0xe0, 0x9c, 0xa7, 0xd0, 0x0b, 0x59, 0xdf, 0x69, 0x39, 0xed, 0x19, 0xdf, + 0xcf, 0x0d, 0x6a, 0xff, 0x76, 0x09, 0x86, 0x53, 0x35, 0xdc, 0x90, 0x0f, 0x55, 0xe2, 0xb3, 0x63, + 0x0b, 0xa9, 0x6c, 0x8e, 0x5a, 0x91, 0x5d, 0x29, 0xc8, 0x0b, 0x82, 0x2e, 0x56, 0x1c, 0x1e, 0x8c, + 0x60, 0x83, 0xe7, 0x61, 0x48, 0x76, 0xe8, 0xfd, 0x4e, 0xd3, 0x17, 0x03, 0xa8, 0xe6, 0xe8, 0x05, + 0x03, 0x86, 0x53, 0x98, 0xf6, 0xef, 0x95, 0x61, 0x9c, 0x9f, 0xf3, 0xd4, 0xd5, 0xcc, 0x5b, 0x92, + 0xfb, 0xad, 0x5f, 0xd6, 0x95, 0x16, 0xad, 0x22, 0xae, 0x1d, 0xed, 0xc6, 0xa8, 0xa7, 0x18, 0xb9, + 0xaf, 0x64, 0x62, 0xe4, 0xb8, 0xd9, 0xdd, 0x38, 0xa6, 0x1e, 0xfd, 0x60, 0x05, 0xcd, 0xfd, 0x83, + 0x12, 0x8c, 0x66, 0x6e, 0x97, 0x41, 0xaf, 0xa7, 0x0b, 0x92, 0x5b, 0x45, 0xb8, 0xe7, 0xf7, 0xbd, + 0x70, 0xe4, 0x70, 0x65, 0xc9, 0xef, 0xd3, 0x52, 0xb1, 0xbf, 0x5d, 0x82, 0x91, 0xf4, 0xb5, 0x38, + 0x0f, 0xe0, 0x48, 0xbd, 0x03, 0x6a, 0xec, 0xe6, 0x07, 0x76, 0x9b, 0x33, 0xf7, 0xee, 0xf3, 0x22, + 0xfb, 0xb2, 0x11, 0x6b, 0xf8, 0x03, 0x51, 0xed, 0xdd, 0xfe, 0x47, 0x16, 0x9c, 0xe6, 0x6f, 0x99, + 0x9d, 0x87, 0x7f, 0x23, 0x6f, 0x74, 0x5f, 0x2e, 0xb6, 0x83, 0x99, 0x0a, 0xa1, 0x07, 0x8d, 0x2f, + 0xbb, 0x7c, 0x55, 0xf4, 0x36, 0x3d, 0x15, 0x1e, 0xc0, 0xce, 0x1e, 0x6a, 0x32, 0xd8, 0xdf, 0x2e, + 0x83, 0xbe, 0x6f, 0x16, 0x79, 0x22, 0x61, 0xb6, 0x90, 0x4a, 0xa9, 0xab, 0xbb, 0x81, 0xab, 0x6f, + 0xb6, 0xad, 0x66, 0xf2, 0x65, 0x7f, 0xd1, 0x82, 0x41, 0x2f, 0xf0, 0x12, 0xcf, 0x61, 0xdb, 0xe8, + 0x62, 0x2e, 0x8d, 0x54, 0xec, 0x16, 0x38, 0xe5, 0x30, 0x32, 0x8f, 0x84, 0x14, 0x33, 0x6c, 0x72, + 0x46, 0x1f, 0x12, 0x61, 0xec, 0xe5, 0xc2, 0x52, 0xbd, 0xab, 0x99, 0xd8, 0xf5, 0x16, 0x35, 0xbc, + 0x92, 0xa8, 0xa0, 0x0a, 0x09, 0x98, 0x92, 0x52, 0x45, 0xb7, 0x95, 0x69, 0xcb, 0x9a, 0x31, 0x67, + 0x64, 0xc7, 0x80, 0x3a, 0xc7, 0xe2, 0x90, 0x21, 0xc2, 0x53, 0x50, 0x73, 0xda, 0x49, 0xd8, 0xa4, + 0xc3, 0x24, 0x4e, 0xad, 0x74, 0x10, 0xb4, 0x04, 0x60, 0x8d, 0x63, 0xbf, 0x5e, 0x81, 0x4c, 0x06, + 0x2b, 0xda, 0x31, 0xef, 0x4a, 0xb6, 0x8a, 0xbd, 0x2b, 0x59, 0x75, 0x26, 0xef, 0xbe, 0x64, 0xd4, + 0x80, 0x4a, 0x6b, 0xd3, 0x89, 0xa5, 0x59, 0xfd, 0xa2, 0xda, 0xc7, 0xd1, 0xc6, 0x3b, 0x7b, 0x13, + 0x3f, 0xdd, 0x9b, 0xd7, 0x95, 0xce, 0xd5, 0x29, 0x5e, 0x75, 0x47, 0xb3, 0x66, 0x34, 0x30, 0xa7, + 0x7f, 0x98, 0x6b, 0x33, 0x3f, 0x2e, 0xae, 0xb8, 0xc0, 0x24, 0x6e, 0xfb, 0x89, 0x98, 0x0d, 0x2f, + 0x16, 0xb8, 0xca, 0x38, 0x61, 0x5d, 0x7b, 0x81, 0xff, 0xc7, 0x06, 0x53, 0xf4, 0x01, 0xa8, 0xc5, + 0x89, 0x13, 0x25, 0x77, 0x99, 0x2d, 0xad, 0xab, 0xa3, 0x49, 0x22, 0x58, 0xd3, 0x43, 0x2f, 0xb1, + 0xc2, 0xd1, 0x5e, 0xbc, 0x79, 0x97, 0xd9, 0x27, 0xb2, 0xc8, 0xb4, 0xa0, 0x80, 0x0d, 0x6a, 0xe8, + 0x3c, 0x00, 0x9b, 0xdb, 0x3c, 0x94, 0xb1, 0xca, 0xbc, 0x4c, 0x4a, 0x14, 0x62, 0x05, 0xc1, 0x06, + 0x96, 0xfd, 0xe3, 0x90, 0x2e, 0x1e, 0x82, 0x26, 0x64, 0xad, 0x12, 0xee, 0x85, 0x66, 0x59, 0x24, + 0xa9, 0xb2, 0x22, 0xbf, 0x69, 0x81, 0x59, 0xe1, 0x04, 0xbd, 0xca, 0x4b, 0xa9, 0x58, 0x45, 0x1c, + 0x42, 0x1a, 0x74, 0x27, 0x97, 0x9c, 0x56, 0xe6, 0x34, 0x5c, 0xd6, 0x53, 0x39, 0xf3, 0x4e, 0xa8, + 0x4a, 0xe8, 0xa1, 0x8c, 0xba, 0x8f, 0xc2, 0x49, 0x99, 0x91, 0x2a, 0xfd, 0xa6, 0xe2, 0xd4, 0xe9, + 0x60, 0xd7, 0x8f, 0xf4, 0xe7, 0x94, 0xba, 0xf9, 0x73, 0x7a, 0xb8, 0x31, 0xfb, 0xb7, 0x2c, 0x38, + 0x97, 0xed, 0x40, 0xbc, 0x14, 0x06, 0x5e, 0x12, 0x46, 0xab, 0x24, 0x49, 0xbc, 0xa0, 0xc1, 0x2a, + 0xc8, 0xdd, 0x72, 0x22, 0x59, 0xd1, 0x9f, 0x09, 0xca, 0x1b, 0x4e, 0x14, 0x60, 0xd6, 0x8a, 0x76, + 0xa1, 0x9f, 0xc7, 0xbb, 0x09, 0x6b, 0xfd, 0x88, 0x6b, 0x23, 0x67, 0x38, 0xf4, 0x76, 0x81, 0xc7, + 0xda, 0x61, 0xc1, 0xd0, 0xfe, 0x9e, 0x05, 0x68, 0x79, 0x9b, 0x44, 0x91, 0x57, 0x37, 0x22, 0xf4, + 0xd8, 0x55, 0x51, 0xc6, 0x95, 0x50, 0x66, 0xbe, 0x74, 0xe6, 0xaa, 0x28, 0xe3, 0x5f, 0xfe, 0x55, + 0x51, 0xa5, 0xc3, 0x5d, 0x15, 0x85, 0x96, 0xe1, 0x74, 0x93, 0x6f, 0x37, 0xf8, 0xf5, 0x2b, 0x7c, + 0xef, 0xa1, 0x52, 0xfb, 0x1e, 0xb9, 0xbd, 0x37, 0x71, 0x7a, 0x29, 0x0f, 0x01, 0xe7, 0x3f, 0x67, + 0xbf, 0x13, 0x10, 0x0f, 0xcc, 0x9b, 0xcd, 0x0b, 0x7b, 0xea, 0xea, 0x7e, 0xb1, 0xbf, 0x5c, 0x81, + 0xd1, 0x4c, 0xbd, 0x67, 0xba, 0xd5, 0xeb, 0x8c, 0xb3, 0x3a, 0xb2, 0xfe, 0xee, 0xec, 0x5e, 0x4f, + 0x91, 0x5b, 0x01, 0x54, 0xbc, 0xa0, 0xd5, 0x4e, 0x8a, 0xc9, 0x2c, 0xe6, 0x9d, 0x58, 0xa0, 0x04, + 0x0d, 0x77, 0x31, 0xfd, 0x8b, 0x39, 0x9b, 0x22, 0xe3, 0xc0, 0x52, 0xc6, 0x78, 0xdf, 0x7d, 0x72, + 0x07, 0x7c, 0x5c, 0x47, 0x65, 0x55, 0x8a, 0x70, 0x2c, 0x66, 0x26, 0xcb, 0x71, 0xc7, 0x64, 0x7d, + 0xa3, 0x04, 0x83, 0xc6, 0x47, 0x43, 0xbf, 0x96, 0xae, 0xff, 0x65, 0x15, 0xf7, 0x4a, 0x8c, 0xfe, + 0xa4, 0xae, 0xf0, 0xc5, 0x5f, 0xe9, 0x89, 0xce, 0xd2, 0x5f, 0x77, 0xf6, 0x26, 0x4e, 0x64, 0x8a, + 0x7b, 0xa5, 0xca, 0x81, 0x9d, 0xf9, 0x08, 0x8c, 0x66, 0xc8, 0xe4, 0xbc, 0xf2, 0x9a, 0xf9, 0xca, + 0x47, 0x76, 0x4b, 0x99, 0x43, 0xf6, 0x75, 0x3a, 0x64, 0x22, 0xa1, 0x31, 0xf4, 0x49, 0x0f, 0x3e, + 0xd8, 0x4c, 0xde, 0x72, 0xa9, 0xc7, 0xbc, 0xe5, 0x27, 0xa1, 0xda, 0x0a, 0x7d, 0xcf, 0xf5, 0x54, + 0x39, 0x4e, 0x96, 0x29, 0xbd, 0x22, 0xda, 0xb0, 0x82, 0xa2, 0x5b, 0x50, 0xbb, 0x79, 0x2b, 0xe1, + 0xa7, 0x3f, 0xc2, 0xbf, 0x5d, 0xd4, 0xa1, 0x8f, 0x32, 0x5a, 0xd4, 0xf1, 0x12, 0xd6, 0xbc, 0x90, + 0x0d, 0xfd, 0x4c, 0x09, 0xca, 0xe4, 0x06, 0xe6, 0x7b, 0x67, 0xda, 0x31, 0xc6, 0x02, 0x62, 0x7f, + 0xad, 0x06, 0xa7, 0xf2, 0x8a, 0xee, 0xa3, 0x0f, 0x43, 0x3f, 0xef, 0x63, 0x31, 0xf7, 0xba, 0xe4, + 0xf1, 0x98, 0x67, 0x04, 0x45, 0xb7, 0xd8, 0x6f, 0x2c, 0x78, 0x0a, 0xee, 0xbe, 0xb3, 0x2e, 0x66, + 0xc8, 0xf1, 0x70, 0x5f, 0x74, 0x34, 0xf7, 0x45, 0x87, 0x73, 0xf7, 0x9d, 0x75, 0xb4, 0x03, 0x95, + 0x86, 0x97, 0x10, 0x47, 0x38, 0x11, 0x6e, 0x1c, 0x0b, 0x73, 0xe2, 0x70, 0x2b, 0x8d, 0xfd, 0xc4, + 0x9c, 0x21, 0xfa, 0xaa, 0x05, 0xa3, 0xeb, 0xe9, 0x82, 0x09, 0x42, 0x78, 0x3a, 0xc7, 0x70, 0xb1, + 0x42, 0x9a, 0x11, 0xbf, 0x2b, 0x2d, 0xd3, 0x88, 0xb3, 0xdd, 0x41, 0x9f, 0xb0, 0x60, 0x60, 0xc3, + 0xf3, 0x8d, 0xda, 0xd6, 0xc7, 0xf0, 0x71, 0x2e, 0x32, 0x06, 0x7a, 0xc7, 0xc1, 0xff, 0xc7, 0x58, + 0x72, 0xee, 0xa6, 0xa9, 0xfa, 0x8f, 0xaa, 0xa9, 0x06, 0xee, 0x93, 0xa6, 0xfa, 0xb4, 0x05, 0x35, + 0x35, 0xd2, 0x22, 0xf1, 0xfc, 0x03, 0xc7, 0xf8, 0xc9, 0xb9, 0xe7, 0x44, 0xfd, 0xc5, 0x9a, 0x39, + 0xfa, 0x82, 0x05, 0x83, 0xce, 0x6b, 0xed, 0x88, 0xd4, 0xc9, 0x76, 0xd8, 0x8a, 0xc5, 0x45, 0xab, + 0x2f, 0x17, 0xdf, 0x99, 0x69, 0xca, 0x64, 0x8e, 0x6c, 0x2f, 0xb7, 0x62, 0x91, 0x78, 0xa5, 0x1b, + 0xb0, 0xd9, 0x05, 0x7b, 0xaf, 0x04, 0x13, 0x07, 0x50, 0x40, 0xcf, 0xc3, 0x50, 0x18, 0x35, 0x9c, + 0xc0, 0x7b, 0xcd, 0xac, 0x80, 0xa2, 0xac, 0xac, 0x65, 0x03, 0x86, 0x53, 0x98, 0x66, 0x6a, 0x7c, + 0xe9, 0x80, 0xd4, 0xf8, 0x73, 0xd0, 0x17, 0x91, 0x56, 0x98, 0xdd, 0x2c, 0xb0, 0xa4, 0x07, 0x06, + 0x41, 0x8f, 0x42, 0xd9, 0x69, 0x79, 0x22, 0x10, 0x4d, 0xed, 0x81, 0xa6, 0x57, 0x16, 0x30, 0x6d, + 0x4f, 0x55, 0xea, 0xa8, 0xdc, 0x93, 0x4a, 0x1d, 0x54, 0x0d, 0x88, 0xb3, 0x8b, 0x7e, 0xad, 0x06, + 0xd2, 0x67, 0x0a, 0xf6, 0x1b, 0x65, 0x78, 0x74, 0xdf, 0xf9, 0xa2, 0xe3, 0xf0, 0xac, 0x7d, 0xe2, + 0xf0, 0xe4, 0xf0, 0x94, 0x0e, 0x1a, 0x9e, 0x72, 0x97, 0xe1, 0xf9, 0x04, 0x5d, 0x06, 0xb2, 0x72, + 0x4c, 0x31, 0x57, 0x65, 0x76, 0x2b, 0x44, 0x23, 0x56, 0x80, 0x84, 0x62, 0xcd, 0x97, 0xee, 0x01, + 0x52, 0x69, 0xe1, 0x95, 0x22, 0xd4, 0x40, 0xd7, 0xea, 0x2d, 0x7c, 0xee, 0x77, 0xcb, 0x35, 0xb7, + 0x7f, 0xa7, 0x0f, 0x1e, 0xef, 0x41, 0x7a, 0x9b, 0xb3, 0xd8, 0xea, 0x71, 0x16, 0xff, 0x80, 0x7f, + 0xa6, 0x4f, 0xe5, 0x7e, 0x26, 0x5c, 0xfc, 0x67, 0xda, 0xff, 0x0b, 0xa1, 0xa7, 0xa0, 0xea, 0x05, + 0x31, 0x71, 0xdb, 0x11, 0x0f, 0x6f, 0x36, 0x32, 0xa2, 0x16, 0x44, 0x3b, 0x56, 0x18, 0x74, 0x4f, + 0xe7, 0x3a, 0x74, 0xf9, 0x0f, 0x14, 0x94, 0x06, 0x6c, 0x26, 0x57, 0x71, 0x93, 0x62, 0x76, 0x9a, + 0x4a, 0x00, 0xce, 0xc6, 0xfe, 0x9b, 0x16, 0x9c, 0xe9, 0xae, 0x62, 0xd1, 0x33, 0x30, 0xb8, 0x1e, + 0x39, 0x81, 0xbb, 0xc9, 0x2e, 0x49, 0x96, 0x53, 0x87, 0xbd, 0xaf, 0x6e, 0xc6, 0x26, 0x0e, 0x9a, + 0x85, 0x31, 0x1e, 0xb9, 0x61, 0x60, 0xc8, 0x24, 0xe2, 0xdb, 0x7b, 0x13, 0x63, 0x6b, 0x59, 0x20, + 0xee, 0xc4, 0xb7, 0xbf, 0x5f, 0xce, 0xef, 0x16, 0x37, 0xc5, 0x0e, 0x33, 0x9b, 0xc5, 0x5c, 0x2d, + 0xf5, 0x20, 0x71, 0xcb, 0xf7, 0x5a, 0xe2, 0xf6, 0x75, 0x93, 0xb8, 0x68, 0x0e, 0x4e, 0x18, 0xb7, + 0x58, 0xf1, 0xc4, 0x70, 0x1e, 0x96, 0xac, 0xaa, 0xba, 0xac, 0x64, 0xe0, 0xb8, 0xe3, 0x89, 0x07, + 0x7c, 0xea, 0xfd, 0x7a, 0x09, 0x1e, 0xe9, 0x6a, 0xfd, 0xde, 0x23, 0x8d, 0x62, 0x7e, 0xfe, 0xbe, + 0x7b, 0xf3, 0xf9, 0xcd, 0x8f, 0x52, 0x39, 0xe8, 0xa3, 0xd8, 0x7f, 0x5c, 0xea, 0xba, 0x10, 0xe8, + 0x4e, 0xe8, 0x87, 0x76, 0x94, 0x5e, 0x80, 0x61, 0xa7, 0xd5, 0xe2, 0x78, 0x2c, 0x8a, 0x36, 0x53, + 0x45, 0x6a, 0xda, 0x04, 0xe2, 0x34, 0x6e, 0x4f, 0x36, 0xcd, 0x9f, 0x58, 0x50, 0xc3, 0x64, 0x83, + 0x4b, 0x23, 0x74, 0x53, 0x0c, 0x91, 0x55, 0x44, 0xc9, 0x5c, 0x3a, 0xb0, 0xb1, 0xc7, 0x4a, 0xc9, + 0xe6, 0x0d, 0x76, 0xe7, 0xad, 0x66, 0xa5, 0x43, 0xdd, 0x6a, 0xa6, 0xee, 0xb5, 0x2a, 0x77, 0xbf, + 0xd7, 0xca, 0xfe, 0xee, 0x00, 0x7d, 0xbd, 0x56, 0x38, 0x1b, 0x91, 0x7a, 0x4c, 0xbf, 0x6f, 0x3b, + 0xf2, 0xc5, 0x24, 0x51, 0xdf, 0xf7, 0x1a, 0x5e, 0xc4, 0xb4, 0x3d, 0x75, 0x40, 0x56, 0x3a, 0x54, + 0x0d, 0x9d, 0xf2, 0x81, 0x35, 0x74, 0x5e, 0x80, 0xe1, 0x38, 0xde, 0x5c, 0x89, 0xbc, 0x6d, 0x27, + 0x21, 0x57, 0xc8, 0xae, 0xb0, 0x7d, 0x75, 0x3d, 0x89, 0xd5, 0x4b, 0x1a, 0x88, 0xd3, 0xb8, 0x68, + 0x1e, 0xc6, 0x74, 0x25, 0x1b, 0x12, 0x25, 0x2c, 0xe7, 0x82, 0xcf, 0x04, 0x95, 0x3c, 0xae, 0x6b, + 0xdf, 0x08, 0x04, 0xdc, 0xf9, 0x0c, 0x95, 0xa7, 0xa9, 0x46, 0xda, 0x91, 0xfe, 0xb4, 0x3c, 0x4d, + 0xd1, 0xa1, 0x7d, 0xe9, 0x78, 0x02, 0x2d, 0xc1, 0x49, 0x3e, 0x31, 0xa6, 0x5b, 0x2d, 0xe3, 0x8d, + 0x06, 0xd2, 0xa5, 0x4a, 0xe7, 0x3b, 0x51, 0x70, 0xde, 0x73, 0xe8, 0x39, 0x18, 0x54, 0xcd, 0x0b, + 0x73, 0xe2, 0x6c, 0x47, 0xf9, 0x96, 0x14, 0x99, 0x85, 0x3a, 0x36, 0xf1, 0xd0, 0xfb, 0xe1, 0x61, + 0xfd, 0x97, 0xe7, 0xf8, 0xf1, 0x03, 0xcf, 0x39, 0x51, 0x24, 0x4c, 0xdd, 0xa2, 0x34, 0x9f, 0x8b, + 0x56, 0xc7, 0xdd, 0x9e, 0x47, 0xeb, 0x70, 0x46, 0x81, 0x2e, 0x04, 0x09, 0xcb, 0xb2, 0x89, 0xc9, + 0x8c, 0x13, 0x93, 0x6b, 0x91, 0x2f, 0x6e, 0xe3, 0x56, 0x17, 0xed, 0xce, 0x7b, 0xc9, 0xa5, 0x3c, + 0x4c, 0xbc, 0x88, 0xf7, 0xa1, 0x82, 0xa6, 0xa0, 0x46, 0x02, 0x67, 0xdd, 0x27, 0xcb, 0xb3, 0x0b, + 0xac, 0xd8, 0x98, 0x71, 0xbe, 0x7a, 0x41, 0x02, 0xb0, 0xc6, 0x51, 0x71, 0xbf, 0x43, 0x5d, 0x2f, + 0x7d, 0x5e, 0x81, 0x53, 0x0d, 0xb7, 0x45, 0x2d, 0x42, 0xcf, 0x25, 0xd3, 0x2e, 0x0b, 0x73, 0xa4, + 0x1f, 0x86, 0xd7, 0x90, 0x55, 0x41, 0xed, 0xf3, 0xb3, 0x2b, 0x1d, 0x38, 0x38, 0xf7, 0x49, 0x16, + 0x0e, 0x1b, 0x85, 0x3b, 0xbb, 0xe3, 0x27, 0x33, 0xe1, 0xb0, 0xb4, 0x11, 0x73, 0x18, 0xba, 0x0c, + 0x88, 0x65, 0x48, 0x5c, 0x4a, 0x92, 0x96, 0x32, 0x41, 0xc7, 0x4f, 0xa5, 0x4b, 0x06, 0x5d, 0xec, + 0xc0, 0xc0, 0x39, 0x4f, 0x51, 0x8b, 0x26, 0x08, 0x19, 0xf5, 0xf1, 0x87, 0xd3, 0x16, 0xcd, 0x55, + 0xde, 0x8c, 0x25, 0xdc, 0xfe, 0xcf, 0x16, 0x0c, 0xab, 0xa5, 0x7d, 0x0f, 0xd2, 0x89, 0xfc, 0x74, + 0x3a, 0xd1, 0xfc, 0xd1, 0x85, 0x23, 0xeb, 0x79, 0x97, 0x98, 0xf4, 0x6f, 0x0c, 0x02, 0x68, 0x01, + 0xaa, 0x74, 0x97, 0xd5, 0x55, 0x77, 0x3d, 0xb0, 0xc2, 0x2b, 0xaf, 0xb8, 0x4f, 0xe5, 0xfe, 0x16, + 0xf7, 0x59, 0x85, 0xd3, 0xd2, 0xb2, 0xe0, 0x87, 0x7d, 0x97, 0xc2, 0x58, 0xc9, 0xc2, 0xea, 0xcc, + 0xa3, 0x82, 0xd0, 0xe9, 0x85, 0x3c, 0x24, 0x9c, 0xff, 0x6c, 0xca, 0xa0, 0x19, 0x38, 0xd0, 0xca, + 0x54, 0xcb, 0x7f, 0x71, 0x43, 0xde, 0x46, 0x94, 0x59, 0xfe, 0x8b, 0x17, 0x57, 0xb1, 0xc6, 0xc9, + 0xd7, 0x01, 0xb5, 0x82, 0x74, 0x00, 0x1c, 0x5a, 0x07, 0x48, 0x69, 0x34, 0xd8, 0x55, 0x1a, 0xc9, + 0x43, 0x85, 0xa1, 0xae, 0x87, 0x0a, 0xef, 0x81, 0x11, 0x2f, 0xd8, 0x24, 0x91, 0x97, 0x90, 0x3a, + 0x5b, 0x0b, 0x4c, 0x52, 0x55, 0xb5, 0x05, 0xb0, 0x90, 0x82, 0xe2, 0x0c, 0x76, 0x5a, 0x84, 0x8e, + 0xf4, 0x20, 0x42, 0xbb, 0x28, 0xae, 0xd1, 0x62, 0x14, 0xd7, 0x89, 0xa3, 0x2b, 0xae, 0xb1, 0x63, + 0x55, 0x5c, 0xa8, 0x10, 0xc5, 0xd5, 0x93, 0x4e, 0x30, 0x76, 0xa6, 0xa7, 0x0e, 0xd8, 0x99, 0x76, + 0xd3, 0x5a, 0xa7, 0xef, 0x5a, 0x6b, 0xe5, 0x2b, 0xa4, 0x87, 0x8e, 0x5b, 0x21, 0x7d, 0xba, 0x04, + 0xa7, 0xb5, 0xc8, 0xa6, 0x0b, 0xc5, 0xdb, 0xa0, 0x42, 0x8b, 0xdd, 0x7d, 0xc7, 0xcf, 0xe8, 0x8c, + 0x44, 0x38, 0x9d, 0x53, 0xa7, 0x20, 0xd8, 0xc0, 0x62, 0xf9, 0x64, 0x24, 0x62, 0x85, 0xb4, 0xb3, + 0xf2, 0x7c, 0x56, 0xb4, 0x63, 0x85, 0x41, 0xa7, 0x22, 0xfd, 0x2d, 0x72, 0x74, 0xb3, 0x25, 0x1a, + 0x67, 0x35, 0x08, 0x9b, 0x78, 0xe8, 0x49, 0xce, 0x84, 0xc9, 0x12, 0x2a, 0xd3, 0x87, 0xc4, 0x05, + 0xe3, 0x52, 0x7c, 0x28, 0xa8, 0xec, 0x0e, 0x4b, 0x1c, 0xac, 0x74, 0x76, 0x87, 0x85, 0xbb, 0x29, + 0x0c, 0xfb, 0x7f, 0x5a, 0xf0, 0x48, 0xee, 0x50, 0xdc, 0x03, 0x3d, 0xbd, 0x93, 0xd6, 0xd3, 0xab, + 0x45, 0x6d, 0x62, 0x8c, 0xb7, 0xe8, 0xa2, 0xb3, 0xff, 0xa3, 0x05, 0x23, 0x1a, 0xff, 0x1e, 0xbc, + 0xaa, 0x97, 0x7e, 0xd5, 0xe2, 0xf6, 0x6b, 0xb5, 0x8e, 0x77, 0xfb, 0xbd, 0x12, 0xa8, 0xb2, 0xa9, + 0xd3, 0xae, 0x2c, 0x4a, 0x7d, 0xc0, 0xa9, 0xf1, 0x2e, 0xf4, 0xb3, 0x43, 0xef, 0xb8, 0x98, 0x80, + 0x9e, 0x34, 0x7f, 0x76, 0x80, 0xae, 0x03, 0x0a, 0xd8, 0xdf, 0x18, 0x0b, 0x86, 0xac, 0xcc, 0x3b, + 0xaf, 0x48, 0x59, 0x17, 0x29, 0x78, 0xba, 0xcc, 0xbb, 0x68, 0xc7, 0x0a, 0x83, 0x6a, 0x12, 0xcf, + 0x0d, 0x83, 0x59, 0xdf, 0x89, 0xe5, 0xe5, 0xb5, 0x4a, 0x93, 0x2c, 0x48, 0x00, 0xd6, 0x38, 0xec, + 0x3c, 0xdc, 0x8b, 0x5b, 0xbe, 0xb3, 0x6b, 0xec, 0xca, 0x8d, 0xb2, 0x16, 0x0a, 0x84, 0x4d, 0x3c, + 0xbb, 0x09, 0xe3, 0xe9, 0x97, 0x98, 0x23, 0x1b, 0x2c, 0x18, 0xb5, 0xa7, 0xe1, 0x9c, 0x82, 0x9a, + 0xc3, 0x9e, 0x5a, 0x6c, 0x3b, 0x42, 0x26, 0xe8, 0x90, 0x4c, 0x09, 0xc0, 0x1a, 0xc7, 0xfe, 0x87, + 0x16, 0x9c, 0xcc, 0x19, 0xb4, 0x02, 0x53, 0x1c, 0x13, 0x2d, 0x6d, 0xf2, 0x6c, 0x80, 0x1f, 0x83, + 0x81, 0x3a, 0xd9, 0x70, 0x64, 0xb8, 0xa3, 0x21, 0x3d, 0xe7, 0x78, 0x33, 0x96, 0x70, 0xfb, 0xb7, + 0x4b, 0x30, 0x9a, 0xee, 0x6b, 0xcc, 0xd2, 0x86, 0xf8, 0x30, 0x79, 0xb1, 0x1b, 0x6e, 0x93, 0x68, + 0x97, 0xbe, 0xb9, 0x95, 0x49, 0x1b, 0xea, 0xc0, 0xc0, 0x39, 0x4f, 0xb1, 0xa2, 0xc9, 0x75, 0x35, + 0xda, 0x72, 0x46, 0x5e, 0x2f, 0x72, 0x46, 0xea, 0x8f, 0x69, 0x86, 0x46, 0x28, 0x96, 0xd8, 0xe4, + 0x4f, 0x6d, 0x11, 0x16, 0x87, 0x3d, 0xd3, 0xf6, 0xfc, 0xc4, 0x0b, 0xc4, 0x2b, 0x8b, 0xb9, 0xaa, + 0x6c, 0x91, 0xa5, 0x4e, 0x14, 0x9c, 0xf7, 0x9c, 0xfd, 0xbd, 0x3e, 0x50, 0x29, 0xd5, 0x2c, 0x74, + 0xad, 0xa0, 0xc0, 0xbf, 0xc3, 0x26, 0x9f, 0xa9, 0xb9, 0xd5, 0xb7, 0x5f, 0x2c, 0x09, 0x77, 0xe5, + 0x98, 0xfe, 0x5c, 0x35, 0x60, 0x6b, 0x1a, 0x84, 0x4d, 0x3c, 0xda, 0x13, 0xdf, 0xdb, 0x26, 0xfc, + 0xa1, 0xfe, 0x74, 0x4f, 0x16, 0x25, 0x00, 0x6b, 0x1c, 0xda, 0x93, 0xba, 0xb7, 0xb1, 0x21, 0xfc, + 0x12, 0xaa, 0x27, 0x74, 0x74, 0x30, 0x83, 0xf0, 0xb2, 0xfa, 0xe1, 0x96, 0xb0, 0xbf, 0x8d, 0xb2, + 0xfa, 0xe1, 0x16, 0x66, 0x10, 0xfa, 0x95, 0x82, 0x30, 0x6a, 0x3a, 0xbe, 0xf7, 0x1a, 0xa9, 0x2b, + 0x2e, 0xc2, 0xee, 0x56, 0x5f, 0xe9, 0x6a, 0x27, 0x0a, 0xce, 0x7b, 0x8e, 0x4e, 0xe8, 0x56, 0x44, + 0xea, 0x9e, 0x9b, 0x98, 0xd4, 0x20, 0x3d, 0xa1, 0x57, 0x3a, 0x30, 0x70, 0xce, 0x53, 0x68, 0x1a, + 0x46, 0x65, 0x4a, 0xbc, 0xac, 0x9d, 0x34, 0x98, 0xae, 0xd5, 0x82, 0xd3, 0x60, 0x9c, 0xc5, 0xa7, + 0x42, 0xb2, 0x29, 0xca, 0xab, 0x31, 0x33, 0xdd, 0x10, 0x92, 0xb2, 0xec, 0x1a, 0x56, 0x18, 0xf6, + 0xc7, 0xcb, 0x54, 0xa9, 0x77, 0xa9, 0x62, 0x78, 0xcf, 0x02, 0x4d, 0xd3, 0x33, 0xb2, 0xaf, 0x87, + 0x19, 0xf9, 0x2c, 0x0c, 0xdd, 0x8c, 0xc3, 0x40, 0x05, 0x71, 0x56, 0xba, 0x06, 0x71, 0x1a, 0x58, + 0xf9, 0x41, 0x9c, 0xfd, 0x45, 0x05, 0x71, 0x0e, 0xdc, 0x65, 0x10, 0xe7, 0x1f, 0x54, 0x40, 0x5d, + 0x51, 0x74, 0x95, 0x24, 0xb7, 0xc2, 0x68, 0xcb, 0x0b, 0x1a, 0xac, 0x94, 0xc0, 0x57, 0x2d, 0x18, + 0xe2, 0xeb, 0x65, 0xd1, 0x4c, 0xc2, 0xdb, 0x28, 0xe8, 0xee, 0x9b, 0x14, 0xb3, 0xc9, 0x35, 0x83, + 0x51, 0xe6, 0xfa, 0x62, 0x13, 0x84, 0x53, 0x3d, 0x42, 0x1f, 0x01, 0x90, 0x4e, 0xdc, 0x0d, 0x29, + 0x81, 0x17, 0x8a, 0xe9, 0x1f, 0x26, 0x1b, 0xda, 0xa4, 0x5e, 0x53, 0x4c, 0xb0, 0xc1, 0x10, 0x7d, + 0x5a, 0x27, 0x28, 0xf2, 0x6c, 0x8f, 0x0f, 0x1d, 0xcb, 0xd8, 0xf4, 0x92, 0x9e, 0x88, 0x61, 0xc0, + 0x0b, 0x1a, 0x74, 0x9e, 0x88, 0x60, 0xb7, 0xb7, 0xe7, 0x95, 0xe1, 0x58, 0x0c, 0x9d, 0xfa, 0x8c, + 0xe3, 0x3b, 0x81, 0x4b, 0xa2, 0x05, 0x8e, 0xae, 0x35, 0xa8, 0x68, 0xc0, 0x92, 0x50, 0xc7, 0xe5, + 0x4e, 0x95, 0x5e, 0x2e, 0x77, 0x3a, 0xf3, 0x5e, 0x18, 0xeb, 0xf8, 0x98, 0x87, 0xca, 0x46, 0xbc, + 0xfb, 0x44, 0x46, 0xfb, 0x77, 0xfa, 0xb5, 0xd2, 0xba, 0x1a, 0xd6, 0xf9, 0x5d, 0x41, 0x91, 0xfe, + 0xa2, 0xc2, 0x64, 0x2e, 0x70, 0x8a, 0x28, 0x35, 0x63, 0x34, 0x62, 0x93, 0x25, 0x9d, 0xa3, 0x2d, + 0x27, 0x22, 0xc1, 0x71, 0xcf, 0xd1, 0x15, 0xc5, 0x04, 0x1b, 0x0c, 0xd1, 0x66, 0x2a, 0x1d, 0xe9, + 0xe2, 0xd1, 0xd3, 0x91, 0x58, 0xad, 0xb3, 0xbc, 0x2b, 0x35, 0xbe, 0x60, 0xc1, 0x48, 0x90, 0x9a, + 0xb9, 0xc5, 0x44, 0x20, 0xe7, 0xaf, 0x0a, 0x7e, 0xc3, 0x5d, 0xba, 0x0d, 0x67, 0xf8, 0xe7, 0xa9, + 0xb4, 0xca, 0x21, 0x55, 0x9a, 0xbe, 0xab, 0xac, 0xbf, 0xdb, 0x5d, 0x65, 0x28, 0x50, 0x97, 0x35, + 0x0e, 0x14, 0x7e, 0x59, 0x23, 0xe4, 0x5c, 0xd4, 0x78, 0x03, 0x6a, 0x6e, 0x44, 0x9c, 0xe4, 0x2e, + 0xef, 0xed, 0x63, 0xb1, 0x1d, 0xb3, 0x92, 0x00, 0xd6, 0xb4, 0xec, 0xff, 0xd3, 0x07, 0x27, 0xe4, + 0x88, 0xc8, 0xec, 0x05, 0xaa, 0x1f, 0x39, 0x5f, 0x6d, 0x2b, 0x2b, 0xfd, 0x78, 0x49, 0x02, 0xb0, + 0xc6, 0xa1, 0xf6, 0x58, 0x3b, 0x26, 0xcb, 0x2d, 0x12, 0x2c, 0x7a, 0xeb, 0xb1, 0x38, 0x8c, 0x55, + 0x0b, 0xe5, 0x9a, 0x06, 0x61, 0x13, 0x8f, 0xda, 0xf6, 0x8e, 0x61, 0xb4, 0x1a, 0xb6, 0xbd, 0x34, + 0x54, 0x25, 0x1c, 0xfd, 0x4a, 0x6e, 0x59, 0xe5, 0x62, 0x72, 0xfe, 0x3a, 0x92, 0x36, 0x0e, 0x79, + 0xd5, 0xeb, 0xdf, 0xb3, 0xe0, 0x34, 0x6f, 0x95, 0x23, 0x79, 0xad, 0x55, 0x77, 0x12, 0x12, 0x17, + 0x73, 0x1d, 0x43, 0x4e, 0xff, 0xb4, 0x7b, 0x39, 0x8f, 0x2d, 0xce, 0xef, 0x0d, 0x7a, 0xdd, 0x82, + 0xd1, 0xad, 0x54, 0xb9, 0x18, 0xa9, 0x3a, 0x8e, 0x5a, 0xc9, 0x21, 0x45, 0x54, 0x2f, 0xb5, 0x74, + 0x7b, 0x8c, 0xb3, 0xdc, 0xed, 0xff, 0x61, 0x81, 0x29, 0x46, 0xef, 0x7d, 0x95, 0x99, 0xc3, 0x9b, + 0x82, 0xd2, 0xba, 0xac, 0x74, 0xb5, 0x2e, 0x1f, 0x85, 0x72, 0xdb, 0xab, 0x8b, 0xfd, 0x85, 0x3e, + 0x22, 0x5e, 0x98, 0xc3, 0xb4, 0xdd, 0xfe, 0x17, 0x15, 0xed, 0x06, 0x11, 0x29, 0x75, 0x3f, 0x14, + 0xaf, 0xbd, 0xa1, 0xea, 0xd4, 0xf1, 0x37, 0xbf, 0xda, 0x51, 0xa7, 0xee, 0xa7, 0x0e, 0x9f, 0x31, + 0xc9, 0x07, 0xa8, 0x5b, 0x99, 0xba, 0x81, 0x03, 0xd2, 0x25, 0x6f, 0x42, 0x95, 0x6e, 0xc1, 0x98, + 0x3f, 0xb3, 0x9a, 0xea, 0x54, 0xf5, 0x92, 0x68, 0xbf, 0xb3, 0x37, 0xf1, 0xae, 0xc3, 0x77, 0x4b, + 0x3e, 0x8d, 0x15, 0x7d, 0x14, 0x43, 0x8d, 0xfe, 0x66, 0x99, 0x9d, 0x62, 0x73, 0x77, 0x4d, 0xc9, + 0x4c, 0x09, 0x28, 0x24, 0x6d, 0x54, 0xf3, 0x41, 0x01, 0xd4, 0xd8, 0xad, 0xd8, 0x8c, 0x29, 0xdf, + 0x03, 0xae, 0xa8, 0xfc, 0x4a, 0x09, 0xb8, 0xb3, 0x37, 0xf1, 0xc2, 0xe1, 0x99, 0xaa, 0xc7, 0xb1, + 0x66, 0x61, 0xff, 0x75, 0x9f, 0x9e, 0xbb, 0xa2, 0x3c, 0xe1, 0x0f, 0xc5, 0xdc, 0x7d, 0x3e, 0x33, + 0x77, 0xcf, 0x75, 0xcc, 0xdd, 0x11, 0x7d, 0x7b, 0x73, 0x6a, 0x36, 0xde, 0x6b, 0x43, 0xe0, 0x60, + 0x7f, 0x03, 0xb3, 0x80, 0x5e, 0x6d, 0x7b, 0x11, 0x89, 0x57, 0xa2, 0x76, 0xe0, 0x05, 0x0d, 0x36, + 0x1d, 0xab, 0xa6, 0x05, 0x94, 0x02, 0xe3, 0x2c, 0x3e, 0xdd, 0xd4, 0xd3, 0x6f, 0x7e, 0xc3, 0xd9, + 0xe6, 0xb3, 0xca, 0xa8, 0xd8, 0xb6, 0x2a, 0xda, 0xb1, 0xc2, 0x40, 0x9b, 0x70, 0x56, 0x12, 0x98, + 0x23, 0x3e, 0x11, 0xd7, 0x2f, 0x6f, 0x78, 0x51, 0x93, 0x07, 0x88, 0xf3, 0xc8, 0x84, 0xb7, 0x09, + 0x0a, 0x67, 0xf1, 0x3e, 0xb8, 0x78, 0x5f, 0x4a, 0xf6, 0xd7, 0xd9, 0x79, 0xbd, 0x91, 0xbc, 0x4e, + 0x67, 0x9f, 0xcf, 0x2e, 0x3c, 0xe7, 0x85, 0xe5, 0xd4, 0xec, 0xe3, 0xb7, 0x9c, 0x73, 0x18, 0xba, + 0x05, 0x03, 0xeb, 0xfc, 0xea, 0xce, 0x62, 0xae, 0x09, 0x10, 0xf7, 0x80, 0xb2, 0x4b, 0x91, 0xe4, + 0xa5, 0xa0, 0x77, 0xf4, 0x4f, 0x2c, 0xb9, 0xd9, 0xdf, 0xaa, 0xc0, 0x68, 0xe6, 0x4a, 0xec, 0x54, + 0x75, 0xe0, 0xd2, 0x81, 0xd5, 0x81, 0x3f, 0x08, 0x50, 0x27, 0x2d, 0x3f, 0xdc, 0x65, 0x86, 0x5f, + 0xdf, 0xa1, 0x0d, 0x3f, 0xb5, 0x57, 0x98, 0x53, 0x54, 0xb0, 0x41, 0x51, 0x54, 0xd3, 0xe3, 0xc5, + 0x86, 0x33, 0xd5, 0xf4, 0x8c, 0xcb, 0x44, 0xfa, 0xef, 0xed, 0x65, 0x22, 0x1e, 0x8c, 0xf2, 0x2e, + 0xaa, 0x14, 0xf1, 0xbb, 0xc8, 0x04, 0x67, 0x49, 0x36, 0x73, 0x69, 0x32, 0x38, 0x4b, 0xf7, 0x7e, + 0xde, 0x78, 0x8f, 0xde, 0x01, 0x35, 0xf9, 0x9d, 0x65, 0x71, 0xe1, 0x61, 0x7e, 0x13, 0xbd, 0x68, + 0xc4, 0x1a, 0xde, 0x51, 0xed, 0x02, 0xee, 0x57, 0xb5, 0x0b, 0xfb, 0xf3, 0x25, 0xba, 0x63, 0xe0, + 0xfd, 0x52, 0x85, 0x9b, 0x9e, 0x80, 0x7e, 0xa7, 0x9d, 0x6c, 0x86, 0x1d, 0x97, 0x7f, 0x4e, 0xb3, + 0x56, 0x2c, 0xa0, 0x68, 0x11, 0xfa, 0xea, 0xba, 0x18, 0xcf, 0x61, 0xbe, 0xa7, 0x76, 0xbe, 0x3a, + 0x09, 0xc1, 0x8c, 0x0a, 0x3a, 0x0b, 0x7d, 0x89, 0xd3, 0x90, 0x79, 0x81, 0x2c, 0x17, 0x7c, 0xcd, + 0x69, 0xc4, 0x98, 0xb5, 0x9a, 0x86, 0x42, 0xdf, 0x01, 0x86, 0xc2, 0x0b, 0x30, 0x1c, 0x7b, 0x8d, + 0xc0, 0x49, 0xda, 0x11, 0x31, 0xce, 0x27, 0x75, 0x74, 0x8a, 0x09, 0xc4, 0x69, 0x5c, 0xfb, 0x5f, + 0x0e, 0xc1, 0xa9, 0xd5, 0xd9, 0x25, 0x59, 0xad, 0xfe, 0xd8, 0x52, 0xfb, 0xf2, 0x78, 0xdc, 0xbb, + 0xd4, 0xbe, 0x2e, 0xdc, 0x7d, 0x23, 0xb5, 0xcf, 0x37, 0x52, 0xfb, 0xd2, 0x79, 0x56, 0xe5, 0x22, + 0xf2, 0xac, 0xf2, 0x7a, 0xd0, 0x4b, 0x9e, 0xd5, 0xb1, 0xe5, 0xfa, 0xed, 0xdb, 0xa1, 0x43, 0xe5, + 0xfa, 0xa9, 0x44, 0xc8, 0x42, 0x32, 0x60, 0xba, 0x7c, 0xaa, 0xdc, 0x44, 0x48, 0x95, 0x84, 0xc6, + 0xb3, 0xbb, 0x84, 0xa8, 0x7f, 0xb9, 0xf8, 0x0e, 0xf4, 0x90, 0x84, 0x26, 0x12, 0xcc, 0xcc, 0xc4, + 0xc7, 0x81, 0x22, 0x12, 0x1f, 0xf3, 0xba, 0x73, 0x60, 0xe2, 0xe3, 0x0b, 0x30, 0xec, 0xfa, 0x61, + 0x40, 0x56, 0xa2, 0x30, 0x09, 0xdd, 0x50, 0x5e, 0x3f, 0xa8, 0x6f, 0xcf, 0x31, 0x81, 0x38, 0x8d, + 0xdb, 0x2d, 0x6b, 0xb2, 0x76, 0xd4, 0xac, 0x49, 0xb8, 0x4f, 0x59, 0x93, 0xbf, 0xa0, 0xf3, 0xfb, + 0x07, 0xd9, 0x17, 0xf9, 0x60, 0xf1, 0x5f, 0xa4, 0xa7, 0xd2, 0xfc, 0x6f, 0xf0, 0xdb, 0x37, 0xa9, + 0x09, 0x3e, 0x1b, 0x36, 0xa9, 0xe1, 0x37, 0xc4, 0x86, 0xe4, 0x95, 0x63, 0x98, 0xb0, 0x37, 0x56, + 0x35, 0x1b, 0x75, 0x23, 0xa7, 0x6e, 0xc2, 0xe9, 0x8e, 0x1c, 0xa5, 0xfe, 0xc0, 0x97, 0x4b, 0xf0, + 0x23, 0x07, 0x76, 0x01, 0xdd, 0x02, 0x48, 0x9c, 0x86, 0x98, 0xa8, 0xe2, 0x68, 0xe6, 0x88, 0x21, + 0xa4, 0x6b, 0x92, 0x1e, 0x2f, 0x9c, 0xa3, 0xfe, 0xb2, 0x43, 0x0f, 0xf9, 0x9b, 0x45, 0x8e, 0x86, + 0x7e, 0x47, 0x7d, 0x51, 0x1c, 0xfa, 0x04, 0x33, 0x08, 0x55, 0xff, 0x11, 0x69, 0xe8, 0xab, 0xeb, + 0xd5, 0xe7, 0xc3, 0xac, 0x15, 0x0b, 0x28, 0x7a, 0x0e, 0x06, 0x1d, 0xdf, 0xe7, 0xe9, 0x49, 0x24, + 0x16, 0xd7, 0x5a, 0xe9, 0x42, 0x87, 0x1a, 0x84, 0x4d, 0x3c, 0xfb, 0x2f, 0x4b, 0x30, 0x71, 0x80, + 0x4c, 0xe9, 0x48, 0x4b, 0xad, 0xf4, 0x9c, 0x96, 0x2a, 0x52, 0x36, 0xfa, 0xbb, 0xa4, 0x6c, 0x3c, + 0x07, 0x83, 0x09, 0x71, 0x9a, 0x22, 0xe8, 0x4c, 0xf8, 0x1c, 0xf4, 0x59, 0xb3, 0x06, 0x61, 0x13, + 0x8f, 0x4a, 0xb1, 0x11, 0xc7, 0x75, 0x49, 0x1c, 0xcb, 0x9c, 0x0c, 0xe1, 0xb7, 0x2d, 0x2c, 0xe1, + 0x83, 0xb9, 0xc3, 0xa7, 0x53, 0x2c, 0x70, 0x86, 0x65, 0x76, 0xc0, 0x6b, 0x3d, 0x0e, 0xf8, 0xd7, + 0x4a, 0xf0, 0xe8, 0xbe, 0xda, 0xad, 0xe7, 0x74, 0x99, 0x76, 0x4c, 0xa2, 0xec, 0xc4, 0xb9, 0x16, + 0x93, 0x08, 0x33, 0x08, 0x1f, 0xa5, 0x56, 0x4b, 0x05, 0x0c, 0x17, 0x9f, 0x3b, 0xc6, 0x47, 0x29, + 0xc5, 0x02, 0x67, 0x58, 0xde, 0xed, 0xb4, 0xfc, 0x56, 0x1f, 0x3c, 0xde, 0x83, 0x0d, 0x50, 0x60, + 0x8e, 0x5d, 0x3a, 0x1f, 0xb4, 0x7c, 0x9f, 0xf2, 0x41, 0xef, 0x6e, 0xb8, 0xde, 0x4c, 0x23, 0xed, + 0x29, 0x97, 0xef, 0xeb, 0x25, 0x38, 0xd3, 0xdd, 0x60, 0x41, 0xef, 0x86, 0xd1, 0x48, 0x05, 0xd9, + 0x99, 0xa9, 0xa4, 0x27, 0xb9, 0x67, 0x27, 0x05, 0xc2, 0x59, 0x5c, 0x34, 0x09, 0xd0, 0x72, 0x92, + 0xcd, 0xf8, 0xc2, 0x8e, 0x17, 0x27, 0xa2, 0xa0, 0xd4, 0x08, 0x3f, 0x4b, 0x94, 0xad, 0xd8, 0xc0, + 0xa0, 0xec, 0xd8, 0xbf, 0xb9, 0xf0, 0x6a, 0x98, 0xf0, 0x87, 0xf8, 0x66, 0xeb, 0xa4, 0xbc, 0xc9, + 0xc7, 0x00, 0xe1, 0x2c, 0x2e, 0x65, 0xc7, 0x4e, 0xab, 0x79, 0x47, 0xf9, 0x2e, 0x8c, 0xb1, 0x5b, + 0x54, 0xad, 0xd8, 0xc0, 0xc8, 0x26, 0xc9, 0x56, 0x0e, 0x4e, 0x92, 0xb5, 0xff, 0x79, 0x09, 0x1e, + 0xe9, 0x6a, 0xf0, 0xf6, 0x26, 0xa6, 0x1e, 0xbc, 0xc4, 0xd6, 0xbb, 0x5c, 0x61, 0x87, 0x4b, 0x88, + 0xfc, 0x93, 0x2e, 0x33, 0x4d, 0x24, 0x44, 0xde, 0x7d, 0x9d, 0x87, 0x07, 0x6f, 0x3c, 0x3b, 0x72, + 0x20, 0xfb, 0x0e, 0x91, 0x03, 0x99, 0xf9, 0x18, 0x95, 0x1e, 0xb5, 0xc3, 0x9f, 0xf5, 0x75, 0x1d, + 0x5e, 0xba, 0x41, 0xee, 0xc9, 0x6f, 0x3e, 0x07, 0x27, 0xbc, 0x80, 0xdd, 0xea, 0xb6, 0xda, 0x5e, + 0x17, 0x35, 0x86, 0x78, 0x21, 0x4d, 0x95, 0x68, 0xb1, 0x90, 0x81, 0xe3, 0x8e, 0x27, 0x1e, 0xc0, + 0x9c, 0xd4, 0xbb, 0x1b, 0xd2, 0x43, 0x4a, 0xee, 0x65, 0x38, 0x2d, 0x87, 0x62, 0xd3, 0x89, 0x48, + 0x5d, 0x28, 0xdb, 0x58, 0xa4, 0xd6, 0x3c, 0xc2, 0xd3, 0x73, 0x72, 0x10, 0x70, 0xfe, 0x73, 0xec, + 0xf6, 0xab, 0xb0, 0xe5, 0xb9, 0x62, 0x2b, 0xa8, 0x6f, 0xbf, 0xa2, 0x8d, 0x98, 0xc3, 0xb4, 0xbe, + 0xa8, 0xdd, 0x1b, 0x7d, 0xf1, 0x41, 0xa8, 0xa9, 0xf1, 0xe6, 0x59, 0x02, 0x6a, 0x92, 0x77, 0x64, + 0x09, 0xa8, 0x19, 0x6e, 0x60, 0x1d, 0x74, 0xd3, 0xeb, 0x4f, 0xc0, 0x90, 0xf2, 0x7e, 0xf5, 0x7a, + 0x07, 0x99, 0xfd, 0xe7, 0xfd, 0x30, 0x9c, 0xaa, 0x2b, 0x9a, 0x72, 0x7b, 0x5b, 0x07, 0xba, 0xbd, + 0x59, 0x82, 0x48, 0x3b, 0x90, 0x77, 0x1d, 0x1a, 0x09, 0x22, 0xed, 0x80, 0x60, 0x0e, 0xa3, 0x9b, + 0x8e, 0x7a, 0xb4, 0x8b, 0xdb, 0x81, 0x88, 0x78, 0x55, 0x9b, 0x8e, 0x39, 0xd6, 0x8a, 0x05, 0x14, + 0x7d, 0xcc, 0x82, 0xa1, 0x98, 0x9d, 0xde, 0xf0, 0x43, 0x03, 0x31, 0xc9, 0x2f, 0x1f, 0xbd, 0x6c, + 0xaa, 0xaa, 0xa1, 0xcb, 0x22, 0xa4, 0xcc, 0x16, 0x9c, 0xe2, 0x88, 0x3e, 0x69, 0x41, 0x4d, 0xdd, + 0xa3, 0x24, 0x2e, 0x2e, 0x5d, 0x2d, 0xb6, 0x6c, 0x2b, 0xf7, 0x36, 0xab, 0x83, 0x30, 0x55, 0x3f, + 0x13, 0x6b, 0xc6, 0x28, 0x56, 0x1e, 0xfd, 0x81, 0xe3, 0xf1, 0xe8, 0x43, 0x8e, 0x37, 0xff, 0x1d, + 0x50, 0x6b, 0x3a, 0x81, 0xb7, 0x41, 0xe2, 0x84, 0x3b, 0xd9, 0x65, 0x35, 0x69, 0xd9, 0x88, 0x35, + 0x9c, 0x1a, 0x00, 0x31, 0x7b, 0xb1, 0xc4, 0xf0, 0x8a, 0x33, 0x03, 0x60, 0x55, 0x37, 0x63, 0x13, + 0xc7, 0x74, 0xe1, 0xc3, 0x7d, 0x75, 0xe1, 0x0f, 0x1e, 0xe0, 0xc2, 0x5f, 0x85, 0xd3, 0x4e, 0x3b, + 0x09, 0x2f, 0x11, 0xc7, 0x9f, 0xe6, 0xb7, 0x10, 0x8b, 0x5b, 0xf5, 0x87, 0x98, 0x5b, 0x48, 0xc5, + 0x74, 0xac, 0x12, 0x7f, 0xa3, 0x03, 0x09, 0xe7, 0x3f, 0x6b, 0xff, 0x13, 0x0b, 0x4e, 0xe7, 0x4e, + 0x85, 0x07, 0x37, 0x9a, 0xd6, 0xfe, 0x52, 0x05, 0x4e, 0xe6, 0x54, 0x1d, 0x46, 0xbb, 0xe6, 0x22, + 0xb1, 0x8a, 0x08, 0x4c, 0x49, 0xc7, 0x59, 0xc8, 0x6f, 0x93, 0xb3, 0x32, 0x0e, 0x77, 0x2a, 0xa7, + 0x4f, 0xc6, 0xca, 0xf7, 0xf6, 0x64, 0xcc, 0x98, 0xeb, 0x7d, 0xf7, 0x75, 0xae, 0x57, 0x0e, 0x98, + 0xeb, 0xdf, 0xb0, 0x60, 0xbc, 0xd9, 0xe5, 0xaa, 0x0b, 0xe1, 0x63, 0xbe, 0x7e, 0x3c, 0x17, 0x69, + 0xcc, 0x9c, 0xbd, 0xbd, 0x37, 0xd1, 0xf5, 0x86, 0x11, 0xdc, 0xb5, 0x57, 0xf6, 0xf7, 0xca, 0xc0, + 0x4a, 0x5e, 0xb3, 0xca, 0x92, 0xbb, 0xe8, 0xa3, 0x66, 0xf1, 0x72, 0xab, 0xa8, 0x42, 0xdb, 0x9c, + 0xb8, 0x2a, 0x7e, 0xce, 0x47, 0x30, 0xaf, 0x16, 0x7a, 0x56, 0x12, 0x96, 0x7a, 0x90, 0x84, 0xbe, + 0xac, 0x12, 0x5f, 0x2e, 0xbe, 0x4a, 0x7c, 0x2d, 0x5b, 0x21, 0x7e, 0xff, 0x4f, 0xdc, 0xf7, 0x40, + 0x7e, 0xe2, 0x5f, 0xb5, 0xb8, 0xe0, 0xc9, 0x7c, 0x05, 0x6d, 0x6e, 0x58, 0xfb, 0x98, 0x1b, 0x4f, + 0x41, 0x35, 0x16, 0x92, 0x59, 0x98, 0x25, 0x3a, 0x28, 0x42, 0xb4, 0x63, 0x85, 0xc1, 0x6e, 0xa4, + 0xf6, 0xfd, 0xf0, 0xd6, 0x85, 0x66, 0x2b, 0xd9, 0x15, 0x06, 0x8a, 0xbe, 0x91, 0x5a, 0x41, 0xb0, + 0x81, 0x65, 0xff, 0xdd, 0x12, 0x9f, 0x81, 0x22, 0xb2, 0xe6, 0xf9, 0xcc, 0xc5, 0x9f, 0xbd, 0x07, + 0xa5, 0x7c, 0x18, 0xc0, 0x0d, 0x9b, 0x2d, 0x6a, 0xbc, 0xae, 0x85, 0xe2, 0xf8, 0xef, 0xd2, 0x51, + 0x0d, 0x51, 0x49, 0x4f, 0xbf, 0x86, 0x6e, 0xc3, 0x06, 0xbf, 0x94, 0x2c, 0x2d, 0x1f, 0x28, 0x4b, + 0x53, 0x62, 0xa5, 0x6f, 0x7f, 0xb1, 0x62, 0xff, 0xa5, 0x05, 0x29, 0x33, 0x0b, 0xb5, 0xa0, 0x42, + 0xbb, 0xbb, 0x2b, 0x56, 0xe8, 0x72, 0x71, 0x36, 0x1d, 0x15, 0x8d, 0x62, 0xda, 0xb3, 0x9f, 0x98, + 0x33, 0x42, 0xbe, 0x08, 0xc0, 0xe1, 0xa3, 0x7a, 0xb5, 0x38, 0x86, 0x97, 0xc2, 0x70, 0x8b, 0x9f, + 0x61, 0xeb, 0x60, 0x1e, 0xfb, 0x79, 0x18, 0xeb, 0xe8, 0x14, 0xbb, 0xe3, 0x2f, 0xa4, 0xda, 0x27, + 0x33, 0x5d, 0x59, 0x3e, 0x32, 0xe6, 0x30, 0xfb, 0xeb, 0x16, 0x9c, 0xc8, 0x92, 0x47, 0x6f, 0x58, + 0x30, 0x16, 0x67, 0xe9, 0x1d, 0xd7, 0xd8, 0xa9, 0x20, 0xda, 0x0e, 0x10, 0xee, 0xec, 0x84, 0xfd, + 0xd7, 0x62, 0xf2, 0xdf, 0xf0, 0x82, 0x7a, 0x78, 0x4b, 0x19, 0x26, 0x56, 0x57, 0xc3, 0x84, 0xae, + 0x47, 0x77, 0x93, 0xd4, 0xdb, 0x7e, 0x47, 0x76, 0xf3, 0xaa, 0x68, 0xc7, 0x0a, 0x83, 0x25, 0x73, + 0xb6, 0xc5, 0x35, 0x12, 0x99, 0x49, 0x39, 0x27, 0xda, 0xb1, 0xc2, 0x40, 0xcf, 0xc2, 0x90, 0xf1, + 0x92, 0x72, 0x5e, 0x32, 0x2b, 0xdf, 0x50, 0x99, 0x31, 0x4e, 0x61, 0xa1, 0x49, 0x00, 0x65, 0xe4, + 0x48, 0x15, 0xc9, 0xbc, 0x5d, 0x4a, 0x12, 0xc5, 0xd8, 0xc0, 0x60, 0xa9, 0xd3, 0x7e, 0x3b, 0x66, + 0xc7, 0x39, 0xfd, 0xba, 0xb4, 0xf1, 0xac, 0x68, 0xc3, 0x0a, 0x4a, 0xa5, 0x49, 0xd3, 0x09, 0xda, + 0x8e, 0x4f, 0x47, 0x48, 0xec, 0x5f, 0xd5, 0x32, 0x5c, 0x52, 0x10, 0x6c, 0x60, 0xd1, 0x37, 0x4e, + 0xbc, 0x26, 0x79, 0x29, 0x0c, 0x64, 0xf0, 0xa3, 0x3e, 0xe1, 0x13, 0xed, 0x58, 0x61, 0xd8, 0x7f, + 0x61, 0xc1, 0xa8, 0xae, 0xd9, 0xc0, 0x76, 0x9d, 0xa9, 0xed, 0xb6, 0x75, 0xe0, 0x76, 0x3b, 0x9d, + 0xa1, 0x5e, 0xea, 0x29, 0x43, 0xdd, 0x4c, 0x1e, 0x2f, 0xef, 0x9b, 0x3c, 0xfe, 0xa3, 0xfa, 0xa6, + 0x68, 0x9e, 0x65, 0x3e, 0x98, 0x77, 0x4b, 0x34, 0xb2, 0xa1, 0xdf, 0x75, 0x54, 0x6d, 0xa3, 0x21, + 0xbe, 0x21, 0x99, 0x9d, 0x66, 0x48, 0x02, 0x62, 0x2f, 0x43, 0x4d, 0x1d, 0x74, 0xc9, 0xdd, 0xaf, + 0x95, 0xbf, 0xfb, 0xed, 0x29, 0x89, 0x75, 0x66, 0xfd, 0x9b, 0xdf, 0x7f, 0xec, 0x2d, 0x7f, 0xf4, + 0xfd, 0xc7, 0xde, 0xf2, 0xdd, 0xef, 0x3f, 0xf6, 0x96, 0x8f, 0xdd, 0x7e, 0xcc, 0xfa, 0xe6, 0xed, + 0xc7, 0xac, 0x3f, 0xba, 0xfd, 0x98, 0xf5, 0xdd, 0xdb, 0x8f, 0x59, 0xdf, 0xbb, 0xfd, 0x98, 0xf5, + 0x85, 0xff, 0xfa, 0xd8, 0x5b, 0x5e, 0xca, 0x8d, 0x7e, 0xa5, 0x3f, 0x9e, 0x76, 0xeb, 0x53, 0xdb, + 0xe7, 0x59, 0x00, 0x26, 0x5d, 0x5e, 0x53, 0xc6, 0x9c, 0x9a, 0x92, 0xcb, 0xeb, 0xff, 0x06, 0x00, + 0x00, 0xff, 0xff, 0xbe, 0x6b, 0x46, 0x15, 0xa6, 0xec, 0x00, 0x00, } func (m *AWSAuthConfig) Marshal() (dAtA []byte, err error) { @@ -9499,6 +9500,15 @@ func (m *GitGenerator) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.ExtraParameterFiles) > 0 { + for iNdEx := len(m.ExtraParameterFiles) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.ExtraParameterFiles[iNdEx]) + copy(dAtA[i:], m.ExtraParameterFiles[iNdEx]) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.ExtraParameterFiles[iNdEx]))) + i-- + dAtA[i] = 0x4a + } + } if len(m.Values) > 0 { keysForValues := make([]string, 0, len(m.Values)) for k := range m.Values { @@ -16526,6 +16536,12 @@ func (m *GitGenerator) Size() (n int) { n += mapEntrySize + 1 + sovGenerated(uint64(mapEntrySize)) } } + if len(m.ExtraParameterFiles) > 0 { + for _, s := range m.ExtraParameterFiles { + l = len(s) + n += 1 + l + sovGenerated(uint64(l)) + } + } return n } @@ -19711,6 +19727,7 @@ func (this *GitGenerator) String() string { `Template:` + strings.Replace(strings.Replace(this.Template.String(), "ApplicationSetTemplate", "ApplicationSetTemplate", 1), `&`, ``, 1) + `,`, `PathParamPrefix:` + fmt.Sprintf("%v", this.PathParamPrefix) + `,`, `Values:` + mapStringForValues + `,`, + `ExtraParameterFiles:` + fmt.Sprintf("%v", this.ExtraParameterFiles) + `,`, `}`, }, "") return s @@ -34673,6 +34690,38 @@ func (m *GitGenerator) Unmarshal(dAtA []byte) error { } m.Values[mapkey] = mapvalue iNdEx = postIndex + case 9: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ExtraParameterFiles", 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.ExtraParameterFiles = append(m.ExtraParameterFiles, 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 5911cfd171e3d..1064220020283 100644 --- a/pkg/apis/application/v1alpha1/generated.proto +++ b/pkg/apis/application/v1alpha1/generated.proto @@ -1029,6 +1029,9 @@ message GitGenerator { // Values contains key/value pairs which are passed directly as parameters to the template map values = 8; + + // List of files containing parameters to add on top to the template + repeated string extraParameterFiles = 9; } // GnuPGPublicKey is a representation of a GnuPG public key diff --git a/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go index dc80bffd77243..b874f77e85e02 100644 --- a/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/application/v1alpha1/zz_generated.deepcopy.go @@ -2080,6 +2080,11 @@ func (in *GitGenerator) DeepCopyInto(out *GitGenerator) { (*out)[key] = val } } + if in.ExtraParameterFiles != nil { + in, out := &in.ExtraParameterFiles, &out.ExtraParameterFiles + *out = make([]string, len(*in)) + copy(*out, *in) + } return } diff --git a/test/e2e/applicationset_test.go b/test/e2e/applicationset_test.go index 1e1447ddbcb4d..8275f6140f999 100644 --- a/test/e2e/applicationset_test.go +++ b/test/e2e/applicationset_test.go @@ -1985,6 +1985,96 @@ func TestSimpleGitFilesGeneratorGoTemplate(t *testing.T) { Delete().Then().Expect(ApplicationsDoNotExist(expectedAppsNewNamespace)) } +func TestSimpleGitFilesGeneratorGoTemplateAndExtraParams(t *testing.T) { + expectedApps := []argov1alpha1.Application{ + { + TypeMeta: metav1.TypeMeta{ + Kind: application.ApplicationKind, + APIVersion: "argoproj.io/v1alpha1", + }, + ObjectMeta: metav1.ObjectMeta{ + Name: "engineering-dev-guestbook-11223344", + Namespace: fixture.TestNamespace(), + Finalizers: []string{"resources-finalizer.argocd.argoproj.io"}, + Labels: map[string]string{ + "myCustomLabel": "engineering-prod", + }, + }, + Spec: argov1alpha1.ApplicationSpec{ + Project: "default", + Source: &argov1alpha1.ApplicationSource{ + RepoURL: "https://github.com/argoproj/argocd-example-apps.git", + TargetRevision: "HEAD", + Path: "guestbook", + }, + Destination: argov1alpha1.ApplicationDestination{ + Server: "https://kubernetes.default.svc", + Namespace: "guestbook", + }, + }, + }, + } + + var expectedAppsNewNamespace []argov1alpha1.Application + + Given(t). + When(). + // Create a GitGenerator-based ApplicationSet + Create(v1alpha1.ApplicationSet{ + ObjectMeta: metav1.ObjectMeta{ + Name: "simple-git-generator-with-extra-params", + }, + Spec: v1alpha1.ApplicationSetSpec{ + GoTemplate: true, + Template: v1alpha1.ApplicationSetTemplate{ + ApplicationSetTemplateMeta: v1alpha1.ApplicationSetTemplateMeta{ + Name: "{{.cluster.name}}-guestbook-{{.extraParams.asset_id}}", + Labels: map[string]string{ + "myCustomLabel": "{{.extraParams.cluster.name}}", + }, + }, + Spec: argov1alpha1.ApplicationSpec{ + Project: "default", + Source: &argov1alpha1.ApplicationSource{ + RepoURL: "https://github.com/argoproj/argocd-example-apps.git", + TargetRevision: "HEAD", + Path: "guestbook", + }, + Destination: argov1alpha1.ApplicationDestination{ + Server: "https://kubernetes.default.svc", + Namespace: "guestbook", + }, + }, + }, + Generators: []v1alpha1.ApplicationSetGenerator{ + { + Git: &v1alpha1.GitGenerator{ + RepoURL: "https://github.com/argoproj/applicationset.git", + Files: []v1alpha1.GitFileGeneratorItem{ + { + Path: "examples/git-generator-files-discovery/cluster-config/**/dev/config.json", + }, + }, + ExtraParameterFiles: []string{ + // Dummy extra params, just reusing the file generators + "examples/git-generator-files-discovery/cluster-config/**/dev/config.json", + // Prod should override dev + "examples/git-generator-files-discovery/cluster-config/**/prod/config.json", + }, + }, + }, + }, + }, + }).Then().Expect(ApplicationsExist(expectedApps)). + + // verify the ApplicationSet status conditions were set correctly + Expect(ApplicationSetHasConditions("simple-git-generator-with-extra-params", ExpectedConditions)). + + // Delete the ApplicationSet, and verify it deletes the Applications + When(). + Delete().Then().Expect(ApplicationsDoNotExist(expectedAppsNewNamespace)) +} + func TestSimpleGitFilesPreserveResourcesOnDeletion(t *testing.T) { Given(t). When().