{"version":3,"file":"index.cjs","sources":["../../../../packages/playground/blueprints/src/lib/reflection.ts","../../../../packages/playground/blueprints/src/lib/utils/zip-name-to-human-name.ts","../../../../packages/playground/blueprints/src/lib/v1/resources.ts","../../../../packages/playground/blueprints/src/lib/steps/activate-plugin.ts","../../../../packages/playground/blueprints/src/lib/steps/activate-theme.ts","../../../../packages/playground/blueprints/src/lib/steps/run-php.ts","../../../../packages/playground/blueprints/src/lib/steps/run-php-with-options.ts","../../../../packages/playground/blueprints/src/lib/steps/rm.ts","../../../../packages/playground/blueprints/src/lib/steps/WP_MySQL_Naive_Query_Stream.php?raw","../../../../packages/playground/blueprints/src/lib/steps/run-sql.ts","../../../../packages/playground/blueprints/src/lib/steps/request.ts","../../../../packages/playground/blueprints/src/lib/steps/define-wp-config-consts.ts","../../../../packages/playground/blueprints/src/lib/steps/site-data.ts","../../../../packages/playground/blueprints/src/lib/steps/wp-cli.ts","../../../../packages/playground/blueprints/src/lib/steps/enable-multisite.ts","../../../../packages/playground/blueprints/src/lib/steps/cp.ts","../../../../packages/playground/blueprints/src/lib/steps/mv.ts","../../../../packages/playground/blueprints/src/lib/steps/mkdir.ts","../../../../packages/playground/blueprints/src/lib/steps/rmdir.ts","../../../../packages/playground/blueprints/src/lib/steps/write-file.ts","../../../../packages/playground/blueprints/src/lib/steps/write-files.ts","../../../../packages/playground/blueprints/src/lib/steps/define-site-url.ts","../../../../packages/playground/blueprints/src/lib/steps/import-wxr.ts","../../../../packages/playground/blueprints/src/lib/steps/import-theme-starter-content.ts","../../../../packages/playground/blueprints/src/lib/steps/unzip.ts","../../../../packages/playground/blueprints/src/lib/utils/wp-content-files-excluded-from-exports.ts","../../../../packages/playground/blueprints/src/lib/steps/import-wordpress-files.ts","../../../../packages/playground/blueprints/src/lib/steps/export-wxr.ts","../../../../packages/playground/blueprints/src/lib/steps/install-asset.ts","../../../../packages/playground/blueprints/src/lib/steps/install-plugin.ts","../../../../packages/playground/blueprints/src/lib/steps/install-theme.ts","../../../../packages/playground/blueprints/src/lib/steps/login.ts","../../../../packages/playground/blueprints/src/lib/steps/reset-data.ts","../../../../packages/playground/blueprints/src/lib/steps/run-wp-installation-wizard.ts","../../../../packages/playground/blueprints/src/lib/steps/zip-wp-content.ts","../../../../packages/playground/blueprints/src/lib/steps/set-site-language.ts","../../../../packages/playground/blueprints/public/blueprint-schema-validator.js","../../../../packages/playground/blueprints/src/lib/is-git-repo-url.ts","../../../../packages/playground/blueprints/src/lib/invalid-blueprint-error.ts","../../../../packages/playground/blueprints/src/lib/v1/compile.ts","../../../../packages/playground/blueprints/src/lib/validate-blueprint-declaration.ts","../../../../packages/playground/blueprints/src/lib/v2/resolve-runtime-configuration.ts","../../../../packages/playground/blueprints/src/lib/v2/compile.ts","../../../../packages/playground/blueprints/src/lib/resolve-remote-blueprint.ts","../../../../packages/playground/blueprints/src/lib/resolve-runtime-configuration.ts","../../../../packages/playground/blueprints/src/lib/compile.ts","../../../../packages/playground/blueprints/src/index.ts"],"sourcesContent":["import type { Blueprint, BlueprintBundle, BlueprintDeclaration } from './types';\nimport type { BlueprintV1Declaration } from './v1/types';\nimport type { BlueprintV2Declaration } from './v2/blueprint-v2-declaration';\n\nexport function isBlueprintBundle(input: any): input is BlueprintBundle {\n\treturn input && 'read' in input && typeof input.read === 'function';\n}\n\nexport async function getBlueprintDeclaration(\n\tblueprint: Blueprint | string\n): Promise<BlueprintV1Declaration | BlueprintV2Declaration> {\n\tif (typeof blueprint === 'string') {\n\t\tlet declaration: unknown;\n\t\ttry {\n\t\t\tdeclaration = JSON.parse(blueprint);\n\t\t} catch {\n\t\t\tthrow new Error('Raw JSON input must be valid JSON.');\n\t\t}\n\t\tif (\n\t\t\t!declaration ||\n\t\t\ttypeof declaration !== 'object' ||\n\t\t\tArray.isArray(declaration)\n\t\t) {\n\t\t\tthrow new Error(\n\t\t\t\t'Raw JSON input must contain a Blueprint declaration object.'\n\t\t\t);\n\t\t}\n\t\treturn declaration as BlueprintDeclaration;\n\t}\n\tif (!isBlueprintBundle(blueprint)) {\n\t\treturn blueprint;\n\t}\n\tconst blueprintFile = await blueprint.read('blueprint.json');\n\tconst blueprintText = await blueprintFile.text();\n\treturn JSON.parse(blueprintText);\n}\n\nexport type BlueprintType = 'bundle' | 'declaration';\n\nexport class BlueprintReflection {\n\tprivate readonly declaration:\n\t\t| BlueprintV1Declaration\n\t\t| BlueprintV2Declaration;\n\tprivate readonly bundle: BlueprintBundle | undefined;\n\tprivate readonly version: number;\n\n\tstatic async create(blueprint: Blueprint) {\n\t\tconst declaration = await getBlueprintDeclaration(blueprint);\n\t\tconst bundle = isBlueprintBundle(blueprint) ? blueprint : undefined;\n\t\treturn BlueprintReflection.createFromDeclaration(declaration, bundle);\n\t}\n\n\tstatic createFromDeclaration(\n\t\tdeclaration: BlueprintV1Declaration | BlueprintV2Declaration,\n\t\tbundle: BlueprintBundle | undefined = undefined\n\t) {\n\t\treturn new BlueprintReflection(\n\t\t\tdeclaration,\n\t\t\tbundle,\n\t\t\t(declaration as any).version || 1\n\t\t);\n\t}\n\n\tprotected constructor(\n\t\tdeclaration: BlueprintV1Declaration | BlueprintV2Declaration,\n\t\tbundle: BlueprintBundle | undefined,\n\t\tversion: number\n\t) {\n\t\tthis.declaration = declaration;\n\t\tthis.bundle = bundle;\n\t\tthis.version = version;\n\t}\n\n\tgetVersion() {\n\t\treturn this.version;\n\t}\n\n\tgetDeclaration() {\n\t\treturn this.declaration;\n\t}\n\n\tisBundle() {\n\t\treturn this.bundle !== undefined;\n\t}\n\n\tgetBundle() {\n\t\treturn this.bundle;\n\t}\n\n\tgetBlueprint(): Blueprint {\n\t\treturn this.getBundle() || this.getDeclaration();\n\t}\n}\n","/**\n * Converts a zip file name to a nice, human-readable name.\n *\n * @example\t`hello-dolly.zip` -> `Hello dolly`\n *\n * @param zipName A zip filename.\n * @returns A nice, human-readable name.\n */\nexport function zipNameToHumanName(zipName: string) {\n\tconst mixedCaseName = zipName.split('.').shift()!.replace(/-/g, ' ');\n\treturn (\n\t\tmixedCaseName.charAt(0).toUpperCase() +\n\t\tmixedCaseName.slice(1).toLowerCase()\n\t);\n}\n","import type { ProgressTracker } from '@php-wasm/progress';\nimport {\n\tcloneResponseMonitorProgress,\n\tcloneStreamMonitorProgress,\n} from '@php-wasm/progress';\nimport type { FileTree, UniversalPHP } from '@php-wasm/universal';\nimport type { Semaphore } from '@php-wasm/util';\nimport { randomFilename } from '@php-wasm/util';\nimport {\n\tGitAuthenticationError,\n\tlistDescendantFiles,\n\tlistGitFiles,\n\tresolveCommitHash,\n\tsparseCheckout,\n} from '@wp-playground/storage';\nimport { zipNameToHumanName } from '../utils/zip-name-to-human-name';\nimport { fetchWithCorsProxy } from '@php-wasm/web-service-worker';\nimport {\n\tStreamedFile,\n\tencodeZip,\n\tcollectFile,\n} from '@php-wasm/stream-compression';\nimport type { StreamBundledFile } from './types';\nimport { createDotGitDirectory } from '@wp-playground/storage';\n\nconst BUNDLED_RESOURCE_ERROR_MESSAGE =\n\t'Blueprint resource of type \"bundled\" requires a filesystem.\\n\\n' +\n\t'This Blueprint refers to files that should be bundled with it (like images, plugins, or themes), ' +\n\t'but the filesystem needed to access these files is not available. This usually happens when:\\n\\n' +\n\t\"1. You're trying to load a Blueprint as a standalone JSON file that was meant to be part of a bundle\\n\" +\n\t'2. The Blueprint was not packaged correctly as a blueprint.zip file\\n\\n' +\n\t'To fix this:\\n' +\n\t\"• If you're loading from a URL, make sure all referenced files are accessible relative to the Blueprint file\\n\" +\n\t\"• If you're using a blueprint.zip file, ensure it contains all the files referenced in the Blueprint\\n\" +\n\t'• Check that the \"resource\": \"bundled\" references in your Blueprint match actual files in your bundle\\n\\n' +\n\t'Learn more about Blueprint resources: https://wordpress.github.io/wordpress-playground/blueprints/data-format#resources';\n\nexport class BlueprintFilesystemRequiredError extends Error {\n\tconstructor(message = BUNDLED_RESOURCE_ERROR_MESSAGE) {\n\t\tsuper(message);\n\t\tthis.name = 'BlueprintFilesystemRequiredError';\n\t}\n}\n\n/**\n * Error thrown when a resource could not be downloaded from a URL.\n */\nexport class ResourceDownloadError extends Error {\n\tpublic readonly url: string;\n\n\tconstructor(message: string, url: string, options?: ErrorOptions) {\n\t\tsuper(message, options);\n\t\tthis.name = 'ResourceDownloadError';\n\t\tthis.url = url;\n\t}\n}\n\nexport type { FileTree };\nexport const ResourceTypes = [\n\t'vfs',\n\t'literal',\n\t'wordpress.org/themes',\n\t'wordpress.org/plugins',\n\t'url',\n\t'git:directory',\n\t'bundled',\n\t'zip',\n] as const;\n\nexport type VFSReference = {\n\t/** Identifies the file resource as Virtual File System (VFS) */\n\tresource: 'vfs';\n\t/** The path to the file in the VFS */\n\tpath: string;\n};\nexport type LiteralReference = {\n\t/** Identifies the file resource as a literal file */\n\tresource: 'literal';\n\t/** The name of the file */\n\tname: string;\n\t/** The contents of the file */\n\tcontents: string | Uint8Array;\n};\nexport type CoreThemeReference = {\n\t/** Identifies the file resource as a WordPress Core theme */\n\tresource: 'wordpress.org/themes';\n\t/** The slug of the WordPress Core theme */\n\tslug: string;\n};\nexport type CorePluginReference = {\n\t/** Identifies the file resource as a WordPress Core plugin */\n\tresource: 'wordpress.org/plugins';\n\t/** The slug of the WordPress Core plugin */\n\tslug: string;\n};\nexport type UrlReference = {\n\t/** Identifies the file resource as a URL */\n\tresource: 'url';\n\t/** The URL of the file */\n\turl: string;\n\t/** Optional caption for displaying a progress message */\n\tcaption?: string;\n};\ntype GitDirectoryRefType = 'branch' | 'tag' | 'commit' | 'refname';\nexport type GitDirectoryReference = {\n\t/** Identifies the file resource as a git directory */\n\tresource: 'git:directory';\n\t/** The URL of the git repository */\n\turl: string;\n\t/** The ref (branch, tag, or commit) of the git repository */\n\tref: string;\n\t/** Explicit hint about the ref type (branch, tag, commit, refname) */\n\trefType?: GitDirectoryRefType;\n\t/** The path to the directory in the git repository. Defaults to the repo root. */\n\tpath?: string;\n\t/** When true, include a `.git` directory with Git metadata (experimental). */\n\t'.git'?: boolean;\n};\nexport interface Directory {\n\tfiles: FileTree;\n\tname: string;\n}\nexport type DirectoryLiteralReference = Directory & {\n\t/** Identifies the file resource as a git directory */\n\tresource: 'literal:directory';\n};\n\nexport type BundledReference = {\n\t/** Identifies the file resource as a Blueprint file */\n\tresource: 'bundled';\n\t/** The path to the file in the Blueprint */\n\tpath: string;\n};\n\nexport type ZipWrapperReference = {\n\t/** Identifies the resource as a ZIP wrapper */\n\tresource: 'zip';\n\t/** The inner resource to wrap in a ZIP file */\n\tinner: FileReference | DirectoryReference;\n\t/** Optional filename for the ZIP (defaults to inner resource name + .zip) */\n\tname?: string;\n};\n\nexport type FileReference =\n\t| VFSReference\n\t| LiteralReference\n\t| CoreThemeReference\n\t| CorePluginReference\n\t| UrlReference\n\t| BundledReference\n\t| ZipWrapperReference;\n\nexport type DirectoryReference =\n\t| GitDirectoryReference\n\t| DirectoryLiteralReference;\n\nexport function isResourceReference(ref: any): ref is FileReference {\n\treturn (\n\t\tref &&\n\t\ttypeof ref === 'object' &&\n\t\ttypeof ref.resource === 'string' &&\n\t\tResourceTypes.includes(ref.resource)\n\t);\n}\n\n/**\n * Checks if a URL is a github-proxy.com URL that can be rewritten.\n *\n * @param url The URL to check\n * @returns true if the URL is a github-proxy.com URL\n */\nexport function isGithubProxyUrl(url: string): boolean {\n\ttry {\n\t\tconst parsed = new URL(url);\n\t\treturn parsed.hostname === 'github-proxy.com';\n\t} catch {\n\t\treturn false;\n\t}\n}\n\n/**\n * Rewrites a github-proxy.com URL to an equivalent Blueprint resource reference.\n *\n * github-proxy.com is being deprecated. This function enables automatic migration\n * of existing Blueprints that use github-proxy.com URLs to native Blueprint resources.\n *\n * Supported URL patterns:\n * - `?repo=owner/name` - Full repository at default branch\n * - `?repo=owner/name&branch=trunk` - Full repository at specific branch\n * - `?repo=owner/name&pr=123` - Full repository at PR head\n * - `?repo=owner/name&commit=abc` - Full repository at specific commit\n * - `?repo=owner/name&release=v1.0` - Full repository at release tag\n * - `?repo=owner/name&directory=subdir` - Subdirectory of repository\n * - `?repo=owner/name&release=v1.0&asset=file.zip` - Release asset download\n * - `https://github-proxy.com/https://github.com/...` - Direct GitHub URL proxy\n *\n * @param url The github-proxy.com URL to rewrite\n * @returns A ZipWrapperReference (wrapping git:directory) or UrlReference, or null if URL cannot be rewritten\n */\nexport function rewriteGithubProxyUrl(\n\turl: string\n): ZipWrapperReference | UrlReference | null {\n\tlet parsed: URL;\n\ttry {\n\t\tparsed = new URL(url);\n\t} catch {\n\t\treturn null;\n\t}\n\n\tif (parsed.hostname !== 'github-proxy.com') {\n\t\treturn null;\n\t}\n\n\t// Handle direct GitHub URL proxy: https://github-proxy.com/https://github.com/...\n\t// The pathname starts with a slash, so we slice it off\n\tconst pathAsUrl = parsed.pathname.slice(1);\n\tif (\n\t\tpathAsUrl.startsWith('https://github.com/') ||\n\t\tpathAsUrl.startsWith('http://github.com/')\n\t) {\n\t\treturn { resource: 'url', url: pathAsUrl };\n\t}\n\n\t// For /proxy/ endpoints, extract query parameters\n\tconst params = parsed.searchParams;\n\tconst repo = params.get('repo');\n\tif (!repo) {\n\t\treturn null;\n\t}\n\n\t// Handle release asset downloads (returns a file, not a directory)\n\tconst release = params.get('release');\n\tconst asset = params.get('asset');\n\tif (release && asset) {\n\t\t// GitHub supports /releases/latest/download/ URLs natively\n\t\tconst releasePath =\n\t\t\trelease === 'latest'\n\t\t\t\t? 'releases/latest/download'\n\t\t\t\t: `releases/download/${release}`;\n\t\treturn {\n\t\t\tresource: 'url',\n\t\t\turl: `https://github.com/${repo}/${releasePath}/${asset}`,\n\t\t};\n\t}\n\n\t// Determine the git ref based on the URL parameters\n\tlet ref: string;\n\tlet refType: 'branch' | 'tag' | 'commit' | undefined;\n\n\tconst pr = params.get('pr');\n\tconst commit = params.get('commit');\n\tconst branch = params.get('branch');\n\n\tif (pr) {\n\t\tref = `refs/pull/${pr}/head`;\n\t} else if (commit) {\n\t\tref = commit;\n\t\trefType = 'commit';\n\t} else if (release) {\n\t\tref = release;\n\t\trefType = 'tag';\n\t} else {\n\t\tref = branch || 'HEAD';\n\t}\n\n\tconst directory = params.get('directory');\n\n\t// Always wrap in zip to match github-proxy.com semantics (which always returns ZIP files)\n\tconst gitDirectoryRef: GitDirectoryReference = {\n\t\tresource: 'git:directory',\n\t\turl: `https://github.com/${repo}`,\n\t\tref,\n\t\t...(refType && { refType }),\n\t\t...(directory && { path: directory }),\n\t};\n\n\treturn {\n\t\tresource: 'zip',\n\t\tinner: gitDirectoryRef,\n\t};\n}\n\nexport abstract class Resource<T extends File | Directory> {\n\t/** Optional progress tracker to monitor progress */\n\tprotected _progress?: ProgressTracker;\n\tget progress() {\n\t\treturn this._progress;\n\t}\n\tset progress(value) {\n\t\tthis._progress = value;\n\t}\n\n\t/** A Promise that resolves to the file contents */\n\tprotected promise?: Promise<T>;\n\tprotected playground?: UniversalPHP;\n\n\tsetPlayground(playground: UniversalPHP) {\n\t\tthis.playground = playground;\n\t}\n\n\tabstract resolve(): Promise<T>;\n\n\t/** The name of the referenced file */\n\tabstract get name(): string;\n\n\t/** Whether this Resource is loaded asynchronously */\n\tget isAsync(): boolean {\n\t\treturn false;\n\t}\n\n\t/**\n\t * Creates a new Resource based on the given file reference\n\t *\n\t * @param ref The file reference to create the Resource for\n\t * @param options Additional options for the Resource\n\t * @returns A new Resource instance\n\t */\n\tstatic create(\n\t\tref: FileReference | DirectoryReference,\n\t\t{\n\t\t\tsemaphore,\n\t\t\tprogress,\n\t\t\tcorsProxy,\n\t\t\tstreamBundledFile,\n\t\t\tgitAdditionalHeadersCallback,\n\t\t}: {\n\t\t\t/** Optional semaphore to limit concurrent downloads */\n\t\t\tsemaphore?: Semaphore;\n\t\t\tprogress?: ProgressTracker;\n\t\t\tcorsProxy?: string;\n\t\t\tstreamBundledFile?: StreamBundledFile;\n\t\t\tgitAdditionalHeadersCallback?: (\n\t\t\t\turl: string\n\t\t\t) => Record<string, string>;\n\t\t}\n\t): Resource<File | Directory> {\n\t\t// Automatically rewrite github-proxy.com URLs to native Blueprint resources.\n\t\t// github-proxy.com is being deprecated - this provides graceful migration.\n\t\tif (ref.resource === 'url' && isGithubProxyUrl(ref.url)) {\n\t\t\tconst rewritten = rewriteGithubProxyUrl(ref.url);\n\t\t\tif (rewritten) {\n\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\tconsole.warn(\n\t\t\t\t\t`[Blueprints] github-proxy.com is deprecated and will stop working soon. ` +\n\t\t\t\t\t\t`The URL \"${ref.url}\" has been automatically converted to a ${rewritten.resource} resource. ` +\n\t\t\t\t\t\t`Please update your Blueprint to use native resource types. ` +\n\t\t\t\t\t\t`See: https://wordpress.github.io/wordpress-playground/blueprints/steps/resources`\n\t\t\t\t);\n\t\t\t\tref = rewritten;\n\t\t\t}\n\t\t}\n\n\t\tlet resource: Resource<File | Directory>;\n\t\tswitch (ref.resource) {\n\t\t\tcase 'vfs':\n\t\t\t\tresource = new VFSResource(ref, progress);\n\t\t\t\tbreak;\n\t\t\tcase 'literal':\n\t\t\t\tresource = new LiteralResource(ref, progress);\n\t\t\t\tbreak;\n\t\t\tcase 'wordpress.org/themes':\n\t\t\t\tresource = new CoreThemeResource(ref, progress);\n\t\t\t\tbreak;\n\t\t\tcase 'wordpress.org/plugins':\n\t\t\t\tresource = new CorePluginResource(ref, progress);\n\t\t\t\tbreak;\n\t\t\tcase 'url':\n\t\t\t\tresource = new UrlResource(ref, progress, { corsProxy });\n\t\t\t\tbreak;\n\t\t\tcase 'git:directory':\n\t\t\t\tresource = new GitDirectoryResource(ref, progress, {\n\t\t\t\t\tcorsProxy,\n\t\t\t\t\tadditionalHeaders: gitAdditionalHeadersCallback,\n\t\t\t\t});\n\t\t\t\tbreak;\n\t\t\tcase 'literal:directory':\n\t\t\t\tresource = new LiteralDirectoryResource(ref, progress);\n\t\t\t\tbreak;\n\t\t\tcase 'bundled':\n\t\t\t\tif (!streamBundledFile) {\n\t\t\t\t\tthrow new BlueprintFilesystemRequiredError();\n\t\t\t\t}\n\t\t\t\tresource = new BundledResource(\n\t\t\t\t\tref,\n\t\t\t\t\tstreamBundledFile,\n\t\t\t\t\tprogress\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase 'zip': {\n\t\t\t\t// Recursively create the inner resource\n\t\t\t\tconst innerResource = Resource.create(ref.inner, {\n\t\t\t\t\tsemaphore,\n\t\t\t\t\tprogress,\n\t\t\t\t\tcorsProxy,\n\t\t\t\t\tstreamBundledFile,\n\t\t\t\t\tgitAdditionalHeadersCallback,\n\t\t\t\t});\n\t\t\t\tresource = new ZipResource(ref, innerResource, progress);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tdefault:\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Unknown resource type: ${(ref as any).resource}`\n\t\t\t\t);\n\t\t}\n\n\t\tif (semaphore) {\n\t\t\tresource = new SemaphoreResource(resource, semaphore);\n\t\t}\n\n\t\treturn new CachedResource(resource);\n\t}\n}\n\nexport abstract class ResourceDecorator<\n\tT extends File | Directory,\n> extends Resource<T> {\n\tprotected resource: Resource<T>;\n\tconstructor(resource: Resource<T>) {\n\t\tsuper();\n\t\tthis.resource = resource;\n\t}\n\n\t/** @inheritDoc */\n\toverride get progress() {\n\t\treturn this.resource.progress;\n\t}\n\n\t/** @inheritDoc */\n\toverride set progress(value) {\n\t\tthis.resource.progress = value;\n\t}\n\n\t/** @inheritDoc */\n\tabstract override resolve(): Promise<T>;\n\n\t/** @inheritDoc */\n\tget name(): string {\n\t\treturn this.resource.name;\n\t}\n\n\t/** @inheritDoc */\n\toverride get isAsync(): boolean {\n\t\treturn this.resource.isAsync;\n\t}\n\n\t/** @inheritDoc */\n\toverride setPlayground(playground: UniversalPHP): void {\n\t\tthis.resource.setPlayground(playground);\n\t}\n}\n\n/**\n * A `Resource` that represents a file in the VFS (virtual file system) of the\n * playground.\n */\nexport class VFSResource extends Resource<File> {\n\tprivate resource: VFSReference;\n\n\t/**\n\t * Creates a new instance of `VFSResource`.\n\t * @param playground The playground client.\n\t * @param resource The VFS reference.\n\t * @param progress The progress tracker.\n\t */\n\tconstructor(resource: VFSReference, _progress?: ProgressTracker) {\n\t\tsuper();\n\t\tthis.resource = resource;\n\t\tthis._progress = _progress;\n\t}\n\n\t/** @inheritDoc */\n\tasync resolve() {\n\t\tconst buffer = await this.playground!.readFileAsBuffer(\n\t\t\tthis.resource.path\n\t\t);\n\t\tthis.progress?.set(100);\n\t\treturn new File([buffer], this.name);\n\t}\n\n\t/** @inheritDoc */\n\tget name() {\n\t\treturn this.resource.path.split('/').pop() || '';\n\t}\n}\n\n/**\n * A `Resource` that represents a literal file.\n */\nexport class LiteralResource extends Resource<File> {\n\tprivate resource: LiteralReference;\n\n\t/**\n\t * Creates a new instance of `LiteralResource`.\n\t * @param resource The literal reference.\n\t * @param progress The progress tracker.\n\t */\n\tconstructor(resource: LiteralReference, _progress?: ProgressTracker) {\n\t\tsuper();\n\t\tthis.resource = resource;\n\t\tthis._progress = _progress;\n\t}\n\n\t/** @inheritDoc */\n\tasync resolve() {\n\t\tthis.progress?.set(100);\n\t\treturn new File([this.resource.contents], this.resource.name);\n\t}\n\n\t/** @inheritDoc */\n\tget name() {\n\t\treturn this.resource.name;\n\t}\n}\n\n/**\n * A base class for `Resource`s that require fetching data from a remote URL.\n */\nexport abstract class FetchResource extends Resource<File> {\n\tprivate corsProxy?: string;\n\n\t/**\n\t * Creates a new instance of `FetchResource`.\n\t * @param progress The progress tracker.\n\t */\n\tconstructor(_progress?: ProgressTracker, corsProxy?: string) {\n\t\tsuper();\n\t\tthis._progress = _progress;\n\t\tthis.corsProxy = corsProxy;\n\t}\n\n\t/** @inheritDoc */\n\tasync resolve() {\n\t\tthis.progress?.setCaption(this.caption);\n\t\tconst url = this.getURL();\n\t\ttry {\n\t\t\tlet response = await fetchWithCorsProxy(\n\t\t\t\turl,\n\t\t\t\tundefined,\n\t\t\t\tthis.corsProxy,\n\t\t\t\tawait this.playground?.absoluteUrl\n\t\t\t);\n\t\t\tif (!response.ok) {\n\t\t\t\tthrow new ResourceDownloadError(\n\t\t\t\t\t`Could not download \"${url}\"`,\n\t\t\t\t\turl\n\t\t\t\t);\n\t\t\t}\n\t\t\tresponse = await cloneResponseMonitorProgress(\n\t\t\t\tresponse,\n\t\t\t\tthis.progress?.loadingListener ?? noop\n\t\t\t);\n\t\t\tif (response.status !== 200) {\n\t\t\t\tthrow new ResourceDownloadError(\n\t\t\t\t\t`Could not download \"${url}\"`,\n\t\t\t\t\turl\n\t\t\t\t);\n\t\t\t}\n\t\t\tconst filename =\n\t\t\t\tthis.name ||\n\t\t\t\tparseContentDisposition(\n\t\t\t\t\tresponse.headers.get('content-disposition') || ''\n\t\t\t\t) ||\n\t\t\t\tencodeURIComponent(url);\n\t\t\treturn new File([await response.arrayBuffer()], filename);\n\t\t} catch (e) {\n\t\t\tthrow new ResourceDownloadError(\n\t\t\t\t`Could not download \"${url}\".\\n\\n` +\n\t\t\t\t\t`Confirm that the URL is correct, the server is reachable, and the file is ` +\n\t\t\t\t\t`actually served at that URL. Original error: \\n ${e}`,\n\t\t\t\turl,\n\t\t\t\t{ cause: e }\n\t\t\t);\n\t\t}\n\t}\n\n\t/**\n\t * Gets the URL to fetch the data from.\n\t * @returns The URL.\n\t */\n\tprotected abstract getURL(): string;\n\n\t/**\n\t * Gets the caption for the progress tracker.\n\t * @returns The caption.\n\t */\n\tprotected get caption() {\n\t\treturn `Downloading ${this.name}`;\n\t}\n\n\t/** @inheritDoc */\n\tget name() {\n\t\ttry {\n\t\t\treturn new URL(this.getURL(), 'http://example.com').pathname\n\t\t\t\t.split('/')\n\t\t\t\t.pop()!;\n\t\t} catch {\n\t\t\treturn this.getURL();\n\t\t}\n\t}\n\n\t/** @inheritDoc */\n\toverride get isAsync(): boolean {\n\t\treturn true;\n\t}\n}\n\n/**\n * Parses the Content-Disposition header to extract the filename.\n *\n * @param contentDisposition The Content-Disposition header value\n * @returns The filename if found, null otherwise\n */\nfunction parseContentDisposition(contentDisposition: string): string | null {\n\tif (!contentDisposition) {\n\t\treturn null;\n\t}\n\n\t// Handle both filename and filename* parameters\n\tconst filenameMatch = contentDisposition.match(/filename\\*?=([^;]+)/i);\n\tif (!filenameMatch) {\n\t\treturn null;\n\t}\n\n\tlet filename = filenameMatch[1].trim();\n\n\t// Remove surrounding quotes\n\tif (\n\t\t(filename.startsWith('\"') && filename.endsWith('\"')) ||\n\t\t(filename.startsWith(\"'\") && filename.endsWith(\"'\"))\n\t) {\n\t\tfilename = filename.slice(1, -1);\n\t}\n\n\t// Handle RFC 5987 encoded filenames (filename*=UTF-8''example.txt)\n\tif (filenameMatch[0].includes('filename*')) {\n\t\tconst encodedMatch = filename.match(/^[^']*'[^']*'(.+)$/);\n\t\tif (encodedMatch) {\n\t\t\ttry {\n\t\t\t\tfilename = decodeURIComponent(encodedMatch[1]);\n\t\t\t} catch {\n\t\t\t\t// If decoding fails, use the original filename\n\t\t\t}\n\t\t}\n\t}\n\n\treturn filename;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-function\nconst noop = (() => {}) as any;\n\n/**\n * A `Resource` that represents a file available from a URL.\n */\nexport class UrlResource extends FetchResource {\n\tprivate resource: UrlReference;\n\tprivate options?: { corsProxy?: string };\n\n\t/**\n\t * Creates a new instance of `UrlResource`.\n\t * @param resource The URL reference.\n\t * @param progress The progress tracker.\n\t */\n\tconstructor(\n\t\tresource: UrlReference,\n\t\tprogress?: ProgressTracker,\n\t\toptions?: { corsProxy?: string }\n\t) {\n\t\tsuper(progress, options?.corsProxy);\n\t\tthis.resource = resource;\n\t\tthis.options = options;\n\t\t/**\n\t\t * Translates GitHub URLs into raw.githubusercontent.com URLs.\n\t\t *\n\t\t * Example:\n\t\t * https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-includes/version.php\n\t\t *\n\t\t * Becomes\n\t\t * https://raw.githubusercontent.com/WordPress/wordpress-develop/trunk/src/wp-includes/version.php\n\t\t *\n\t\t * There's virtually a zero chance you actually want to refer to the HTML response served\n\t\t * by GitHub.com, with the GitHub UI, file preview, etc. in it. Almost certainly, you want\n\t\t * to download the raw file.\n\t\t *\n\t\t * This often confuses Blueprint authors when the GitHub URL they've used in their Blueprint\n\t\t * does not work. There's plenty of issues in the Playground repository asking specifically\n\t\t * about that. Well, GitHub.com response is not what they want, and even if it was, GitHub\n\t\t * does not provide the necessary CORS headers.\n\t\t *\n\t\t * While the URL rewriting might confuse advanced developers, they're in a good\n\t\t * position to figure it out. This feature shouldn't do any harm.\n\t\t *\n\t\t * Note the rewriting is implemented in UrlResource, which is used in all Playground\n\t\t * implementations, e.g. the browser, the CLI, Studio, etc. While most of them don't\n\t\t * need to worry about CORS, we still want ot make sure the same Blueprints will work\n\t\t * in all Playground runtimes.\n\t\t *\n\t\t * ## Caveats\n\t\t *\n\t\t * Directory URLs are not supported. For example, a URL such as\n\t\t * https://github.com/WordPress/blueprints/tree/trunk/blueprints would be rewritten to\n\t\t * https://raw.githubusercontent.com/WordPress/blueprints/trunk/blueprints, which\n\t\t * yields `404: Not Found`.\n\t\t *\n\t\t * There's no way to distinguish between a file and a directory based just on its GitHub.com\n\t\t * URL. If this starts coming up a lot in Playground issues, let's explore consulting the\n\t\t * repository contents and rewriting the URL resource as a git directory resource.\n\t\t *\n\t\t * @see https://github.com/WordPress/wordpress-playground/pull/1793\n\t\t */\n\t\tif (this.resource.url.startsWith('https://github.com/')) {\n\t\t\tconst match = this.resource.url.match(\n\t\t\t\t/^https:\\/\\/github\\.com\\/(?<owner>[^/]+)\\/(?<repo>[^/]+)\\/(?:blob|raw)\\/(?<branch>[^/]+)\\/(?<path>.+[^/])$/\n\t\t\t);\n\t\t\tif (match?.groups) {\n\t\t\t\tthis.resource = {\n\t\t\t\t\t...this.resource,\n\t\t\t\t\turl: `https://raw.githubusercontent.com/${match.groups['owner']}/${match.groups['repo']}/${match.groups['branch']}/${match.groups['path']}`,\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\t}\n\n\t/** @inheritDoc */\n\tgetURL() {\n\t\treturn this.resource.url;\n\t}\n\n\t/** @inheritDoc */\n\tprotected override get caption() {\n\t\treturn this.resource.caption ?? super.caption;\n\t}\n}\n\n/**\n * A `Resource` that represents a git directory.\n */\nexport class GitDirectoryResource extends Resource<Directory> {\n\tprivate reference: GitDirectoryReference;\n\tprivate options?: {\n\t\tcorsProxy?: string;\n\t\tadditionalHeaders?: (url: string) => Record<string, string>;\n\t};\n\n\tconstructor(\n\t\treference: GitDirectoryReference,\n\t\t_progress?: ProgressTracker,\n\t\toptions?: {\n\t\t\tcorsProxy?: string;\n\t\t\tadditionalHeaders?: (url: string) => Record<string, string>;\n\t\t}\n\t) {\n\t\tsuper();\n\t\tthis.reference = reference;\n\t\tthis._progress = _progress;\n\t\tthis.options = options;\n\t}\n\n\tasync resolve() {\n\t\tconst additionalHeaders =\n\t\t\tthis.options?.additionalHeaders?.(this.reference.url) ?? {};\n\n\t\tconst repoUrl = this.options?.corsProxy\n\t\t\t? `${this.options.corsProxy}${this.reference.url}`\n\t\t\t: this.reference.url;\n\n\t\ttry {\n\t\t\tconst commitHash = await resolveCommitHash(\n\t\t\t\trepoUrl,\n\t\t\t\t{\n\t\t\t\t\tvalue: this.reference.ref,\n\t\t\t\t\ttype: this.reference.refType ?? 'infer',\n\t\t\t\t},\n\t\t\t\tadditionalHeaders\n\t\t\t);\n\t\t\tconst allFiles = await listGitFiles(\n\t\t\t\trepoUrl,\n\t\t\t\tcommitHash,\n\t\t\t\tadditionalHeaders\n\t\t\t);\n\n\t\t\tconst requestedPath = (this.reference.path ?? '').replace(\n\t\t\t\t/^\\/+/,\n\t\t\t\t''\n\t\t\t);\n\t\t\tconst filesToClone = listDescendantFiles(allFiles, requestedPath);\n\t\t\tconst checkout = await sparseCheckout(\n\t\t\t\trepoUrl,\n\t\t\t\tcommitHash,\n\t\t\t\tfilesToClone,\n\t\t\t\t{\n\t\t\t\t\twithObjects: this.reference['.git'],\n\t\t\t\t\tadditionalHeaders,\n\t\t\t\t}\n\t\t\t);\n\t\t\tlet files = checkout.files;\n\n\t\t\t// Remove the path prefix from the cloned file names.\n\t\t\tfiles = mapKeys(files, (name) =>\n\t\t\t\tname.substring(requestedPath.length).replace(/^\\/+/, '')\n\t\t\t);\n\t\t\tif (this.reference['.git']) {\n\t\t\t\tconst gitFiles = await createDotGitDirectory({\n\t\t\t\t\trepoUrl: this.reference.url,\n\t\t\t\t\tcommitHash,\n\t\t\t\t\tref: this.reference.ref,\n\t\t\t\t\trefType: this.reference.refType,\n\t\t\t\t\tobjects: checkout.objects ?? [],\n\t\t\t\t\tfileOids: checkout.fileOids ?? {},\n\t\t\t\t\tpathPrefix: requestedPath,\n\t\t\t\t});\n\t\t\t\tfiles = {\n\t\t\t\t\t...gitFiles,\n\t\t\t\t\t...files,\n\t\t\t\t};\n\t\t\t}\n\t\t\treturn {\n\t\t\t\tname: this.filename,\n\t\t\t\tfiles,\n\t\t\t};\n\t\t} catch (error) {\n\t\t\tif (error instanceof GitAuthenticationError) {\n\t\t\t\t// Unwrap and re-throw with the original URL (without CORS proxy)\n\t\t\t\tthrow new GitAuthenticationError(\n\t\t\t\t\tthis.reference.url,\n\t\t\t\t\terror.status\n\t\t\t\t);\n\t\t\t}\n\t\t\tthrow error;\n\t\t}\n\t}\n\n\t/**\n\t * Generate a nice, non-empty filename – the installPlugin step depends on it.\n\t */\n\tget filename() {\n\t\treturn (\n\t\t\tthis.name\n\t\t\t\t.replaceAll(/[^a-zA-Z0-9-.]/g, '-')\n\t\t\t\t.replaceAll(/-+/g, '-')\n\t\t\t\t.replace(/^[^a-zA-Z0-9]+|[^a-zA-Z0-9]+$/g, '') ||\n\t\t\trandomFilename()\n\t\t);\n\t}\n\n\t/** @inheritDoc */\n\tget name() {\n\t\treturn [\n\t\t\tthis.reference.url,\n\t\t\tthis.reference.ref ? `(${this.reference.ref})` : '',\n\t\t\tthis.reference.path?.replace(/^\\/+/, '')\n\t\t\t\t? `at ${this.reference.path}`\n\t\t\t\t: '',\n\t\t]\n\t\t\t.filter((segment) => segment.length > 0)\n\t\t\t.join(' ');\n\t}\n}\n\nfunction mapKeys(obj: Record<string, any>, fn: (key: string) => string) {\n\treturn Object.fromEntries(\n\t\tObject.entries(obj).map(([key, value]) => [fn(key), value])\n\t);\n}\n\n/**\n * A `Resource` that represents a git directory.\n */\nexport class LiteralDirectoryResource extends Resource<Directory> {\n\tprivate reference: DirectoryLiteralReference;\n\n\tconstructor(\n\t\treference: DirectoryLiteralReference,\n\t\t_progress?: ProgressTracker\n\t) {\n\t\tsuper();\n\t\tthis.reference = reference;\n\t\tthis._progress = _progress;\n\t}\n\n\tasync resolve() {\n\t\treturn this.reference;\n\t}\n\n\t/** @inheritDoc */\n\tget name() {\n\t\treturn this.reference.name;\n\t}\n}\n\n/**\n * A `Resource` that represents a WordPress core theme.\n */\nexport class CoreThemeResource extends FetchResource {\n\tprivate resource: CoreThemeReference;\n\n\tconstructor(resource: CoreThemeReference, progress?: ProgressTracker) {\n\t\tsuper(progress);\n\t\tthis.resource = resource;\n\t}\n\toverride get name() {\n\t\treturn zipNameToHumanName(this.resource.slug);\n\t}\n\tgetURL() {\n\t\tconst zipName = toDirectoryZipName(this.resource.slug);\n\t\treturn `https://downloads.wordpress.org/theme/${zipName}`;\n\t}\n}\n\n/**\n * A resource that fetches a WordPress plugin from wordpress.org.\n */\nexport class CorePluginResource extends FetchResource {\n\tprivate resource: CorePluginReference;\n\n\tconstructor(resource: CorePluginReference, progress?: ProgressTracker) {\n\t\tsuper(progress);\n\t\tthis.resource = resource;\n\t}\n\n\t/** @inheritDoc */\n\toverride get name() {\n\t\treturn zipNameToHumanName(this.resource.slug);\n\t}\n\n\t/** @inheritDoc */\n\tgetURL() {\n\t\tconst zipName = toDirectoryZipName(this.resource.slug);\n\t\treturn `https://downloads.wordpress.org/plugin/${zipName}`;\n\t}\n}\n\n/**\n * Transforms a plugin slug into a directory zip name.\n * If the input already ends with \".zip\", returns it unchanged.\n * Otherwise, appends \".latest-stable.zip\".\n */\nexport function toDirectoryZipName(rawInput: string) {\n\tif (!rawInput) {\n\t\treturn rawInput;\n\t}\n\tif (rawInput.endsWith('.zip')) {\n\t\treturn rawInput;\n\t}\n\treturn rawInput + '.latest-stable.zip';\n}\n\n/**\n * A decorator for a resource that adds caching functionality.\n */\nexport class CachedResource<\n\tT extends File | Directory,\n> extends ResourceDecorator<T> {\n\tprotected override promise?: Promise<T>;\n\n\t/** @inheritDoc */\n\toverride async resolve() {\n\t\tif (!this.promise) {\n\t\t\tthis.promise = this.resource.resolve();\n\t\t}\n\t\treturn this.promise;\n\t}\n}\n\n/**\n * A decorator for a resource that adds concurrency control functionality\n * through a semaphore.\n */\nexport class SemaphoreResource<\n\tT extends File | Directory,\n> extends ResourceDecorator<T> {\n\tprivate readonly semaphore: Semaphore;\n\tconstructor(resource: Resource<T>, semaphore: Semaphore) {\n\t\tsuper(resource);\n\t\tthis.semaphore = semaphore;\n\t}\n\n\t/** @inheritDoc */\n\toverride async resolve() {\n\t\tif (!this.isAsync) {\n\t\t\treturn this.resource.resolve();\n\t\t}\n\t\treturn this.semaphore.run(() => this.resource.resolve());\n\t}\n}\n\n/**\n * A `Resource` that represents a file bundled with the Blueprint.\n */\nexport class BundledResource extends Resource<File> {\n\tprivate resource: BundledReference;\n\tprivate streamBundledFile: StreamBundledFile;\n\n\t/**\n\t * Creates a new instance of `BlueprintResource`.\n\t * @param resource The blueprint reference.\n\t * @param filesystem The filesystem to read from.\n\t * @param progress The progress tracker.\n\t */\n\tconstructor(\n\t\tresource: BundledReference,\n\t\tstreamBundledFile: StreamBundledFile,\n\t\t_progress?: ProgressTracker\n\t) {\n\t\tif (!streamBundledFile) {\n\t\t\tthrow new Error(\n\t\t\t\t`You are trying to run a Blueprint that refers to a bundled file (\"blueprint\" resource type), ` +\n\t\t\t\t\t`but you did not provide the rest of the bundle. This Blueprint won't work as a standalone JSON file. ` +\n\t\t\t\t\t`You'll need to load the entire bundle, e.g. a blueprint.zip file. Alternatively, you may try loading it ` +\n\t\t\t\t\t`directly from a URL or a local directory and Playground will try (with your permission) to source the missing ` +\n\t\t\t\t\t`files from paths relative to the blueprint file.`\n\t\t\t);\n\t\t}\n\t\tsuper();\n\t\tthis.resource = resource;\n\t\tthis.streamBundledFile = streamBundledFile;\n\t\tthis._progress = _progress;\n\t}\n\n\t/** @inheritDoc */\n\tasync resolve() {\n\t\tthis.progress?.set(0);\n\n\t\ttry {\n\t\t\t// Get the file stream from the filesystem\n\t\t\tconst file = await this.streamBundledFile(this.resource.path);\n\t\t\tconst length = file.filesize;\n\t\t\tif (!length) {\n\t\t\t\tthis.progress?.set(100);\n\t\t\t\treturn file;\n\t\t\t}\n\t\t\tconst progressStream = cloneStreamMonitorProgress(\n\t\t\t\tfile.stream(),\n\t\t\t\tlength,\n\t\t\t\t(event) => {\n\t\t\t\t\tthis.progress?.set(\n\t\t\t\t\t\t(event.detail.loaded / event.detail.total) * 100\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t);\n\t\t\treturn new StreamedFile(progressStream, this.name, {\n\t\t\t\tfilesize: length,\n\t\t\t});\n\t\t} catch (error: unknown) {\n\t\t\tthis.progress?.set(100);\n\t\t\tthrow new Error(\n\t\t\t\t`Failed to read file from blueprint. This Blueprint refers to a resource of type \"bundled\" with path \"${this.resource.path}\" that was not available. ` +\n\t\t\t\t\t`Please ensure that the entire bundle, such as a blueprint.zip file, is loaded. If you are trying to load the Blueprint ` +\n\t\t\t\t\t`directly from a URL or a local directory, make sure that all the necessary files are accessible and located relative ` +\n\t\t\t\t\t`to the blueprint file. \\n\\nError details: ${\n\t\t\t\t\t\terror instanceof Error ? error.message : String(error)\n\t\t\t\t\t}`,\n\t\t\t\t{ cause: error }\n\t\t\t);\n\t\t}\n\t}\n\n\t/** @inheritDoc */\n\tget name() {\n\t\treturn this.resource.path.split('/').pop() || '';\n\t}\n\n\t/** @inheritDoc */\n\toverride get isAsync(): boolean {\n\t\treturn true;\n\t}\n}\n\n/**\n * A `Resource` that wraps another resource and outputs it as a ZIP file.\n * This is useful for converting directory resources to ZIP files, enabling\n * compatibility with steps that expect ZIP input (like `unzip`).\n */\nexport class ZipResource extends Resource<File> {\n\tprivate reference: ZipWrapperReference;\n\tprivate innerResource: Resource<File | Directory>;\n\n\tconstructor(\n\t\treference: ZipWrapperReference,\n\t\tinnerResource: Resource<File | Directory>,\n\t\t_progress?: ProgressTracker\n\t) {\n\t\tsuper();\n\t\tthis.reference = reference;\n\t\tthis.innerResource = innerResource;\n\t\tthis._progress = _progress;\n\t}\n\n\t/** @inheritDoc */\n\tasync resolve(): Promise<File> {\n\t\tthis.progress?.setCaption(`Creating ZIP: ${this.name}`);\n\n\t\t// Resolve the inner resource first\n\t\tconst innerResult = await this.innerResource.resolve();\n\n\t\t// Convert to an iterable of File objects for encodeZip\n\t\tlet files: File[];\n\n\t\tif (innerResult instanceof File) {\n\t\t\t// Inner resource is already a File - wrap it in a ZIP\n\t\t\tfiles = [innerResult];\n\t\t} else {\n\t\t\t// Inner resource is a Directory - convert FileTree to Files\n\t\t\tfiles = fileTreeToFiles(innerResult.files, innerResult.name);\n\t\t}\n\n\t\t// Create the ZIP using encodeZip\n\t\tconst zipStream = encodeZip(files);\n\t\tconst zipFile = await collectFile(this.name, zipStream);\n\n\t\tthis.progress?.set(100);\n\t\treturn zipFile;\n\t}\n\n\t/** @inheritDoc */\n\tget name(): string {\n\t\tif (this.reference.name) {\n\t\t\treturn this.reference.name;\n\t\t}\n\t\tconst innerName = this.innerResource.name;\n\t\treturn innerName.endsWith('.zip') ? innerName : `${innerName}.zip`;\n\t}\n\n\t/** @inheritDoc */\n\toverride get isAsync(): boolean {\n\t\treturn true;\n\t}\n}\n\n/**\n * Converts a FileTree to an array of File objects suitable for ZIP encoding.\n * Each file's name includes its relative path within the tree.\n */\nfunction fileTreeToFiles(tree: FileTree, baseName: string): File[] {\n\tconst files: File[] = [];\n\n\tfunction traverse(node: FileTree, currentPath: string) {\n\t\tfor (const [name, value] of Object.entries(node)) {\n\t\t\tconst fullPath = currentPath ? `${currentPath}/${name}` : name;\n\n\t\t\tif (value instanceof Uint8Array) {\n\t\t\t\tfiles.push(new File([value], `${baseName}/${fullPath}`));\n\t\t\t} else if (typeof value === 'string') {\n\t\t\t\tfiles.push(\n\t\t\t\t\tnew File(\n\t\t\t\t\t\t[new TextEncoder().encode(value)],\n\t\t\t\t\t\t`${baseName}/${fullPath}`\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\t// It's a nested FileTree\n\t\t\t\ttraverse(value, fullPath);\n\t\t\t}\n\t\t}\n\t}\n\n\ttraverse(tree, '');\n\treturn files;\n}\n","import type { StepHandler } from '.';\nimport { logger } from '@php-wasm/logger';\nimport { joinPaths, randomString } from '@php-wasm/util';\n/**\n * @inheritDoc activatePlugin\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"activatePlugin\",\n * \t\t\"pluginName\": \"Gutenberg\",\n * \t\t\"pluginPath\": \"/wordpress/wp-content/plugins/gutenberg\"\n * }\n * </code>\n */\nexport interface ActivatePluginStep {\n\tstep: 'activatePlugin';\n\t/**\n\t * Path to the plugin directory as absolute path\n\t * (/wordpress/wp-content/plugins/plugin-name); or the plugin entry file\n\t * relative to the plugins directory (plugin-name/plugin-name.php).\n\t */\n\tpluginPath: string;\n\t/** Optional. Plugin name to display in the progress bar. */\n\tpluginName?: string;\n}\n\n/**\n * Activates a WordPress plugin (if it's installed).\n *\n * @param playground The playground client.\n */\nexport const activatePlugin: StepHandler<ActivatePluginStep> = async (\n\tplayground,\n\t{ pluginPath, pluginName },\n\tprogress\n) => {\n\tprogress?.tracker.setCaption(`Activating ${pluginName || pluginPath}`);\n\n\tconst docroot = await playground.documentRoot;\n\n\t/**\n\t * Route this request's PHP errors to a scratch file we own, so we can\n\t * include them in the JS-side error message if activation fails. We\n\t * don't touch the user's debug.log — the activation snippet ini_sets\n\t * the path for this single request only. CLI workers share /tmp, so each\n\t * activation needs its own path rather than a shared scratch filename.\n\t */\n\tconst activationLogPath = joinPaths(\n\t\t'/tmp',\n\t\t`playground-activate-plugin-${randomString(20, '')}.log`\n\t);\n\n\t/**\n\t * Instead of checking the plugin activation response,\n\t * check if the plugin is active by looking at the active plugins list.\n\t *\n\t * We have to split the activation and the check into two PHP runs\n\t * because some plugins might redirect during activation,\n\t * which would prevent any output that happens after activation from being returned.\n\t *\n\t * Relying on the plugin activation response is not reliable because if the plugin activation\n\t * produces any output, WordPress will assume it's an activation error and return a WP_Error.\n\t * WordPress will still activate the plugin and load the required page,\n\t * but it will also show the error as a notice in wp-admin.\n\t * See WordPress source code for more details:\n\t * https://github.com/WordPress/wordpress-develop/blob/6.7/src/wp-admin/includes/plugin.php#L733\n\t */\n\tlet activationLog = '';\n\tconst activationRequest = playground.run({\n\t\tcode: `<?php\n\t\t\tdefine( 'WP_ADMIN', true );\n\t\t\trequire_once( getenv('DOCROOT') . \"/wp-load.php\" );\n\t\t\trequire_once( getenv('DOCROOT') . \"/wp-admin/includes/plugin.php\" );\n\n\t\t\t// Force PHP errors to our scratch log for this request so the\n\t\t\t// JS caller can surface them when activation fails. This wins\n\t\t\t// over whatever WP_DEBUG_LOG resolved to during bootstrap.\n\t\t\tini_set('log_errors', '1');\n\t\t\tini_set('error_log', getenv('ACTIVATION_LOG'));\n\n\t\t\t// Set current user to admin\n\t\t\twp_set_current_user( get_users(array('role' => 'Administrator') )[0]->ID );\n\n\t\t\t$plugin_path = getenv('PLUGIN_PATH');\n\t\t\t$response = false;\n\t\t\tif ( ! is_dir( $plugin_path)) {\n\t\t\t\t$response = activate_plugin($plugin_path);\n\t\t\t}\n\n\t\t\t// Activate plugin by name if activation by path wasn't successful\n\t\t\tif ( null !== $response ) {\n\t\t\t\tforeach ( ( glob( $plugin_path . '/*.php' ) ?: array() ) as $file ) {\n\t\t\t\t\t$info = get_plugin_data( $file, false, false );\n\t\t\t\t\tif ( ! empty( $info['Name'] ) ) {\n\t\t\t\t\t\t$response = activate_plugin( $file );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( is_wp_error($response) ) {\n\t\t\t\tdie( $response->get_error_message() );\n\t\t\t} else if ( false === $response ) {\n\t\t\t\tdie( \"The activatePlugin step wasn't able to find the plugin $plugin_path.\" );\n\t\t\t}\n\t\t`,\n\t\tenv: {\n\t\t\tPLUGIN_PATH: pluginPath,\n\t\t\tDOCROOT: docroot,\n\t\t\tACTIVATION_LOG: activationLogPath,\n\t\t},\n\t});\n\tconst activatePluginResult = await activationRequest.finally(async () => {\n\t\ttry {\n\t\t\t/**\n\t\t\t * Drain the scratch log immediately so the file is gone whether\n\t\t\t * activation succeeded or failed. Ignore only a file that disappeared\n\t\t\t * before cleanup; other filesystem errors must surface.\n\t\t\t */\n\t\t\tif (await playground.fileExists(activationLogPath)) {\n\t\t\t\tactivationLog = (\n\t\t\t\t\tawait playground.readFileAsText(activationLogPath)\n\t\t\t\t).trim();\n\t\t\t\tawait playground.unlink(activationLogPath);\n\t\t\t}\n\t\t} catch (error) {\n\t\t\tif (!isFileNotFoundError(error)) {\n\t\t\t\tthrow error;\n\t\t\t}\n\t\t}\n\t});\n\tif (activatePluginResult.text) {\n\t\tlogger.warn(\n\t\t\t`Plugin ${pluginPath} activation printed the following bytes: ${activatePluginResult.text}`\n\t\t);\n\t}\n\n\t/**\n\t * Instead of trusting the activation response, check the active plugins list.\n\t *\n\t * We try to discard any extra output via output buffering. The output of the script below\n\t * end with `{\"success\": true}` or `{\"success\": false}`. Only `{\"success\": true}` is\n\t * treated as a successful plugin activation.\n\t */\n\tconst activationStatusResult = await playground.run({\n\t\tcode: `<?php\n\t\t\tob_start();\n\t\t\trequire_once( getenv( 'DOCROOT' ) . \"/wp-load.php\" );\n\n\t\t\t$plugin_directory = rtrim( WP_PLUGIN_DIR, '/' ) . '/';\n\t\t\t$relative_plugin_path = getenv( 'PLUGIN_PATH' );\n\t\t\tif (strpos($relative_plugin_path, $plugin_directory) === 0) {\n\t\t\t\t$relative_plugin_path = substr($relative_plugin_path, strlen($plugin_directory));\n\t\t\t}\n\n\t\t\tif ( is_dir( $plugin_directory . $relative_plugin_path ) ) {\n\t\t\t\t$relative_plugin_path = rtrim( $relative_plugin_path, '/' ) . '/';\n\t\t\t}\n\n\t\t\t$active_plugins = get_option( 'active_plugins' );\n\t\t\tif ( ! is_array( $active_plugins ) ) {\n\t\t\t\t$active_plugins = array();\n\t\t\t}\n\t\t\tob_end_clean();\n\n\t\t\t/**\n\t\t\t * Use a shutdown function to ensure the activation-related output comes\n\t\t\t * last in stdout.\n\t\t\t */\n\t\t\tregister_shutdown_function( function() use ( $relative_plugin_path, $active_plugins ) {\n\t\t\t\tforeach ( $active_plugins as $plugin ) {\n\t\t\t\t\tif ( substr( $plugin, 0, strlen( $relative_plugin_path ) ) === $relative_plugin_path ) {\n\t\t\t\t\t\tdie('{\"success\": true}');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tdie('{\"success\": false}');\n\t\t\t});\n\t\t`,\n\t\tenv: {\n\t\t\tDOCROOT: docroot,\n\t\t\tPLUGIN_PATH: pluginPath,\n\t\t},\n\t});\n\n\tconst rawStatus = (activationStatusResult.text ?? '').trim();\n\tif (rawStatus.endsWith('{\"success\": true}')) {\n\t\treturn;\n\t}\n\tif (rawStatus !== '{\"success\": false}') {\n\t\tlogger.debug(rawStatus);\n\t}\n\n\t/**\n\t * At this point php.run() has already returned with exit code 0\n\t * (otherwise it would have thrown). The plugin still isn't active,\n\t * which usually means activate_plugin() returned a WP_Error and the\n\t * activation snippet die()'d with the message — that text is in\n\t * activatePluginResult.text. Combine that with anything PHP wrote\n\t * to the scratch log during the activation request.\n\t */\n\tconst details: string[] = [];\n\tconst wpOutput = (activatePluginResult.text ?? '').trim();\n\tif (wpOutput) {\n\t\tdetails.push(`WordPress said: ${wpOutput}`);\n\t}\n\tif (activationLog) {\n\t\tdetails.push(`PHP error log:\\n${activationLog}`);\n\t}\n\n\t/**\n\t * Response headers are sometimes the only signal — e.g. plugins that\n\t * redirect during activation produce no body at all. Always include\n\t * them as a last line. Reuse the same JSON layout the previous error\n\t * message used so anyone grepping logs for \"Response headers:\" still\n\t * finds it.\n\t */\n\tdetails.push(\n\t\t`Response headers: ${JSON.stringify(\n\t\t\tactivatePluginResult.headers,\n\t\t\tnull,\n\t\t\t2\n\t\t)}`\n\t);\n\n\t/**\n\t * The browser app surfaces PHP debug logs via the in-page console;\n\t * the CLI prints them to stderr. Point at both so the message is\n\t * useful regardless of where the Blueprint is being run.\n\t */\n\tdetails.push(\n\t\t`If you need more context, check the Playground console (browser DevTools) or the CLI output where this Blueprint was run.`\n\t);\n\n\tthrow new Error(\n\t\t`Plugin ${pluginPath} could not be activated.\\n\\n${details.join('\\n\\n')}`\n\t);\n};\n\n// Emscripten's MEMFS reports ENOENT as errno 44 instead of a Node error code.\nconst EMSCRIPTEN_ENOENT = 44;\n\nfunction isFileNotFoundError(error: unknown): boolean {\n\tconst fileSystemError = error as { code?: unknown; errno?: unknown };\n\treturn (\n\t\tfileSystemError.code === 'ENOENT' ||\n\t\tfileSystemError.errno === EMSCRIPTEN_ENOENT\n\t);\n}\n","import type { StepHandler } from '.';\nimport { logger } from '@php-wasm/logger';\n\n/**\n * @inheritDoc activateTheme\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"activateTheme\",\n * \t\t\"themeFolderName\": \"storefront\"\n * }\n * </code>\n */\nexport interface ActivateThemeStep {\n\tstep: 'activateTheme';\n\t/**\n\t * The name of the theme folder inside wp-content/themes/\n\t */\n\tthemeFolderName: string;\n}\n\n/**\n * Activates a WordPress theme (if it's installed).\n *\n * @param playground The playground client.\n * @param themeFolderName The theme folder name.\n */\nexport const activateTheme: StepHandler<ActivateThemeStep> = async (\n\tplayground,\n\t{ themeFolderName },\n\tprogress\n) => {\n\tprogress?.tracker.setCaption(`Activating ${themeFolderName}`);\n\tconst docroot = await playground.documentRoot;\n\n\tconst themeFolderPath = `${docroot}/wp-content/themes/${themeFolderName}`;\n\tif (!(await playground.fileExists(themeFolderPath))) {\n\t\tthrow new Error(`\n\t\t\tCouldn't activate theme ${themeFolderName}.\n\t\t\tTheme not found at the provided theme path: ${themeFolderPath}.\n\t\t\tCheck the theme path to ensure it's correct.\n\t\t\tIf the theme is not installed, you can install it using the installTheme step.\n\t\t\tMore info can be found in the Blueprint documentation: https://wordpress.github.io/wordpress-playground/blueprints/steps/#ActivateThemeStep\n\t\t`);\n\t}\n\tconst result = await playground.run({\n\t\tcode: `<?php\n\t\t\tdefine( 'WP_ADMIN', true );\n\t\t\trequire_once( getenv('docroot') . \"/wp-load.php\" );\n\n\t\t\t// Set current user to admin\n\t\t\twp_set_current_user( get_users(array('role' => 'Administrator') )[0]->ID );\n\n\t\t\tswitch_theme( getenv('themeFolderName') );\n\n\t\t\tif( wp_get_theme()->get_stylesheet() !== getenv('themeFolderName') ) {\n\t\t\t\tthrow new Exception( 'Theme ' . getenv('themeFolderName') . ' could not be activated.' );\t\t\t\t\n\t\t\t}\n\t\t\tdie('Theme activated successfully');\n\t\t`,\n\t\tenv: {\n\t\t\tdocroot,\n\t\t\tthemeFolderName,\n\t\t},\n\t});\n\tif (result.text !== 'Theme activated successfully') {\n\t\tlogger.debug(result);\n\t\tthrow new Error(\n\t\t\t`Theme ${themeFolderName} could not be activated - WordPress exited with exit code ${result.exitCode}. ` +\n\t\t\t\t`Inspect the \"debug\" logs in the console for more details. Output headers: ${JSON.stringify(\n\t\t\t\t\tresult.headers,\n\t\t\t\t\tnull,\n\t\t\t\t\t2\n\t\t\t\t)}`\n\t\t);\n\t}\n};\n","import type { PHPResponse } from '@php-wasm/universal';\nimport type { StepHandler } from '.';\nimport { logger } from '@php-wasm/logger';\n\n/* eslint-disable comment-length/limit-multi-line-comments */\n/**\n * @inheritDoc runPHP\n * @hasRunnableExample\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"runPHP\",\n * \t\t\"code\": \"<?php require_once '/wordpress/wp-load.php'; wp_insert_post(array('post_title' => 'wp-load.php required for WP functionality', 'post_status' => 'publish')); ?>\"\n * }\n * </code>\n */\n/* eslint-enable comment-length/limit-multi-line-comments */\nexport interface RunPHPStep {\n\t/** The step identifier. */\n\tstep: 'runPHP';\n\t/** The PHP code to run. */\n\tcode:\n\t\t| string\n\t\t| {\n\t\t\t\t/**\n\t\t\t\t * This property is ignored during Blueprint v1 execution but exists\n\t\t\t\t * so the same runPHP step structure can be used for Blueprints v1 and v2.\n\t\t\t\t */\n\t\t\t\tfilename: string;\n\t\t\t\tcontent: string;\n\t\t  };\n}\n\n/**\n * Runs PHP code.\n * When running WordPress functions, the `code` key must first load [`wp-load.php`](https://github.com/WordPress/WordPress/blob/master/wp-load.php) and start with `\"<?php require_once '/wordpress/wp-load.php'; \"`.\n */\nexport const runPHP: StepHandler<RunPHPStep, Promise<PHPResponse>> = async (\n\tplayground,\n\t{ code }\n) => {\n\tlet phpCodeString = typeof code === 'string' ? code : code.content;\n\n\tif (\n\t\tphpCodeString.includes('\"wordpress/wp-load.php\"') ||\n\t\tphpCodeString.includes(\"'wordpress/wp-load.php'\")\n\t) {\n\t\tlogger.error(\n\t\t\t`\nIt looks like you're trying to load WordPress using a relative path 'wordpress/wp-load.php'.\n\nPlayground recently changed the working directory from '/' to '/wordpress' to better mimic\nhow real web servers work. This means relative paths that used to work may no longer\npoint to the correct location.\n\nPlayground automatically updated the path for you, but at one point path rewriting will be removed. Please\nupdate your code to use an absolute path instead:\n\nInstead of:  require_once 'wordpress/wp-load.php';\nUse:         require_once '/wordpress/wp-load.php';\n\nThis will ensure your code works reliably regardless of the current working directory.\n\t\t`.trim()\n\t\t);\n\t\tphpCodeString = phpCodeString.replace(\n\t\t\t\"'wordpress/wp-load.php'\",\n\t\t\t\"'/wordpress/wp-load.php'\"\n\t\t);\n\t\tphpCodeString = phpCodeString.replace(\n\t\t\t'\"wordpress/wp-load.php\"',\n\t\t\t'\"/wordpress/wp-load.php\"'\n\t\t);\n\t}\n\treturn await playground.run({ code: phpCodeString });\n};\n","import type { StepHandler } from '.';\nimport type { PHPRunOptions } from '@php-wasm/universal';\n\n/**\n * @inheritDoc runPHP\n * @hasRunnableExample\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"runPHPWithOptions\",\n * \t\t\"options\": {\n * \t\t\t\"code\": \"<?php require_once '/wordpress/wp-load.php'; update_option('blogname', file_get_contents('php://input'));?>\",\n * \t\t\t\"body\": \"Site Name Modified by runPHPWithOptions\"\n * \t\t}\n * }\n * </code>\n */\nexport interface RunPHPWithOptionsStep {\n\tstep: 'runPHPWithOptions';\n\t/**\n\t * Run options (See\n\t * /wordpress-playground/api/universal/interface/PHPRunOptions/))\n\t */\n\toptions: PHPRunOptions;\n}\n\n/**\n * Runs PHP code with the given options.\n */\nexport const runPHPWithOptions: StepHandler<RunPHPWithOptionsStep> = async (\n\tplayground,\n\t{ options }\n) => {\n\treturn await playground.run(options);\n};\n","import { logger } from '@php-wasm/logger';\nimport type { StepHandler } from '.';\n\n/**\n * @inheritDoc rm\n * @hasRunnableExample\n * @landingPage /index.php\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"rm\",\n * \t\t\"path\": \"/wordpress/index.php\"\n * }\n * </code>\n */\nexport interface RmStep {\n\tstep: 'rm';\n\t/** The path to remove */\n\tpath: string;\n}\n\n/**\n * Removes a file at the specified path.\n */\nexport const rm: StepHandler<RmStep> = async (playground, { path }) => {\n\tif (!path.startsWith('/')) {\n\t\tlogger.error(\n\t\t\t`\nThe rm() step in your Blueprint refers to a relative path.\n\nPlayground recently changed the working directory from '/' to '/wordpress' to better mimic \nhow real web servers work. This means relative paths that used to work may no longer \npoint to the correct location.\n\nPlayground automatically updated the path for you, but at one point path rewriting will be removed. Please\nupdate your code to use an absolute path instead:\n\nInstead of:  rm({ path: 'wordpress/wp-load.php' });\nUse:         rm({ path: '/wordpress/wp-load.php' });\n\nThis will ensure your code works reliably regardless of the current working directory.\n\t\t`.trim()\n\t\t);\n\t\tpath = `/${path}`;\n\t}\n\tawait playground.unlink(path);\n};\n","export default \"<?php\\n\\n/**\\n * Naively splits an SQL string into a sequence of queries. It\\n * streams the data so you can process very large chunks of SQL\\n * without running out of memory.\\n * \\n * This class is **naive** because it doesn't understand what a\\n * valid query is. The lexer does not provide a way to distinguish\\n * between a syntax error and an incomplete input yet. Lacking this\\n * information, we assume that no SQL query is larger than 2MB and,\\n * failing to extract a query from a 2MB buffer, we fail. This heuristic\\n * is often sufficient, but may fail in pathological cases.\\n * \\n * Usage:\\n * \\n *     $stream = new WP_MySQL_Naive_Query_Stream();\\n *     $stream->append_sql( 'SELECT id FROM users; SELECT * FROM posts;' );\\n *     while ( $stream->next_query() ) {\\n *         $sql_string = $stream->get_query();\\n *         // Process the query.\\n *     }\\n *     $stream->append_sql( 'CREATE TABLE users (id INT, name VARCHAR(255));' );\\n *     while ( $stream->next_query() ) {\\n *         $sql_string = $stream->get_query();\\n *         // Process the query.\\n *     }\\n *     $stream->mark_input_complete();\\n *     $stream->next_query(); // returns false\\n */\\nclass WP_MySQL_Naive_Query_Stream {\\n\\n\\tprivate $sql_buffer = '';\\n\\tprivate $input_complete = false;\\n\\tprivate $state = true;\\n\\tprivate $last_query = false;\\n\\n\\tconst STATE_QUERY = 'valid';\\n\\tconst STATE_SYNTAX_ERROR = 'syntax_error';\\n\\tconst STATE_PAUSED_ON_INCOMPLETE_INPUT = 'paused_on_incomplete_input';\\n\\tconst STATE_FINISHED = 'finished';\\n\\n\\t/**\\n\\t * The maximum size of the buffer to store the SQL input. We don't\\n\\t * have enough information from the lexer to distinguish between\\n\\t * an incomplete input and a syntax error so we use a heuristic –\\n\\t * if we've accumulated more than this amount of SQL input, we assume\\n\\t * it's a syntax error. That's why this class is called a \\\"naive\\\" query\\n\\t * stream.\\n\\t */\\n\\tconst MAX_SQL_BUFFER_SIZE = 1024 * 1024 * 15;\\n\\n\\tpublic function __construct() {}\\n\\n\\tpublic function append_sql( string $sql ) {\\n\\t\\tif($this->input_complete) {\\n\\t\\t\\treturn false;\\n\\t\\t}\\n\\t\\t$this->sql_buffer .= $sql;\\n\\t\\t$this->state = self::STATE_QUERY;\\n\\t\\treturn true;\\n\\t}\\n\\n\\tpublic function is_paused_on_incomplete_input(): bool {\\n\\t\\treturn $this->state === self::STATE_PAUSED_ON_INCOMPLETE_INPUT;\\n\\t}\\n\\n\\tpublic function mark_input_complete() {\\n\\t\\t$this->input_complete = true;\\n\\t}\\n\\n\\tpublic function next_query() {\\n\\t\\t$this->last_query = false;\\n\\t\\tif($this->state === self::STATE_PAUSED_ON_INCOMPLETE_INPUT) {\\n\\t\\t\\treturn false;\\n\\t\\t}\\n\\n\\t\\t$result = $this->do_next_query();\\n\\t\\tif(!$result && strlen($this->sql_buffer) > self::MAX_SQL_BUFFER_SIZE) {\\n\\t\\t\\t$this->state = self::STATE_SYNTAX_ERROR;\\n\\t\\t\\treturn false;\\n\\t\\t}\\n\\t\\treturn $result;\\n\\t}\\n\\n\\tprivate function do_next_query() {\\n\\t\\t$query = [];\\n\\t\\t$lexer = new WP_MySQL_Lexer( $this->sql_buffer );\\n\\t\\twhile ( $lexer->next_token() ) {\\n\\t\\t\\t$token = $lexer->get_token();\\n\\t\\t\\t$query[] = $token;\\n\\t\\t\\tif ( $token->id === WP_MySQL_Lexer::SEMICOLON_SYMBOL ) {\\n\\t\\t\\t\\t// Got a complete query!\\n\\t\\t\\t\\tbreak;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// @TODO: expose this method from the lexer\\n\\t\\t// if($lexer->get_state() === WP_MySQL_Lexer::STATE_SYNTAX_ERROR) {\\n\\t\\t// \\treturn false;\\n\\t\\t// }\\n\\n\\t\\tif(!count($query)) {\\n\\t\\t\\tif ( $this->input_complete ) {\\n\\t\\t\\t\\t$this->state = self::STATE_FINISHED;\\n\\t\\t\\t} else {\\n\\t\\t\\t\\t$this->state = self::STATE_PAUSED_ON_INCOMPLETE_INPUT;\\n\\t\\t\\t}\\n\\t\\t\\treturn false;\\n\\t\\t}\\n\\n\\t\\t// The last token either needs to end with a semicolon, or be the\\n\\t\\t// last token in the input.\\n\\t\\t$last_token = $query[count($query) - 1];\\n\\t\\tif ( \\n\\t\\t\\t$last_token->id !== WP_MySQL_Lexer::SEMICOLON_SYMBOL &&\\n\\t\\t\\t! $this->input_complete\\n\\t\\t) {\\n\\t\\t\\t$this->state = self::STATE_PAUSED_ON_INCOMPLETE_INPUT;\\n\\t\\t\\treturn false;\\n\\t\\t}\\n\\n\\t\\t// See if the query has any meaningful tokens. We don't want to return\\n\\t\\t// to give the caller a comment disguised as a query.\\n\\t\\t$has_meaningful_tokens = false;\\n\\t\\tforeach($query as $token) {\\n\\t\\t\\tif ( \\n\\t\\t\\t\\t$token->id !== WP_MySQL_Lexer::WHITESPACE && \\n\\t\\t\\t\\t$token->id !== WP_MySQL_Lexer::COMMENT &&\\n\\t\\t\\t\\t$token->id !== WP_MySQL_Lexer::MYSQL_COMMENT_START &&\\n\\t\\t\\t\\t$token->id !== WP_MySQL_Lexer::MYSQL_COMMENT_END &&\\n\\t\\t\\t\\t$token->id !== WP_MySQL_Lexer::EOF\\n\\t\\t\\t) {\\n\\t\\t\\t\\t$has_meaningful_tokens = true;\\n\\t\\t\\t\\tbreak;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\tif(!$has_meaningful_tokens) {\\n\\t\\t\\tif ( $this->input_complete ) {\\n\\t\\t\\t\\t$this->state = self::STATE_FINISHED;\\n\\t\\t\\t} else {\\n\\t\\t\\t\\t$this->state = self::STATE_PAUSED_ON_INCOMPLETE_INPUT;\\n\\t\\t\\t}\\n\\t\\t\\treturn false;\\n\\t\\t}\\n\\n\\t\\t// Remove the query from the input buffer and return it.\\n\\t\\t$last_byte = $last_token->start + $last_token->length;\\n\\t\\t$query = substr($this->sql_buffer, 0, $last_byte);\\n\\t\\t$this->sql_buffer = substr($this->sql_buffer, $last_byte);\\n\\t\\t$this->last_query = $query;\\n\\t\\t$this->state = self::STATE_QUERY;\\n\\t\\treturn true;\\n\\t}\\n\\n\\tpublic function get_query() {\\n\\t\\treturn $this->last_query;\\n\\t}\\n\\n\\tpublic function get_state() {\\n\\t\\treturn $this->state;\\n\\t}\\n\\n}\"","import type { StepHandler } from '.';\nimport { rm } from './rm';\nimport { phpVars, randomFilename } from '@php-wasm/util';\n/** @ts-ignore */\nimport streamClassContent from './WP_MySQL_Naive_Query_Stream.php?raw';\n\n/**\n * @inheritDoc runSql\n * @hasRunnableExample\n * @example\n *\n * <code>\n * {\n *\t\t\"step\": \"runSql\",\n *\t\t\"sql\": {\n *\t\t\t\"resource\": \"literal\",\n *\t\t\t\"name\": \"schema.sql\",\n *\t\t\t\"contents\": \"DELETE FROM wp_posts\"\n *\t\t}\n * }\n * </code>\n */\nexport interface RunSqlStep<ResourceType> {\n\t/**\n\t * The step identifier.\n\t */\n\tstep: 'runSql';\n\t/**\n\t * The SQL to run. Each non-empty line must contain a valid SQL query.\n\t */\n\tsql: ResourceType;\n}\n\n/**\n * Run one or more SQL queries.\n *\n * This step uses WP_MySQL_Naive_Query_Stream to parse and execute SQL queries using\n * streaming semantics. It supports multiline queries, comments, and queries\n * separated by semicolons. Each query is executed using `$wpdb`. This step assumes\n * a presence of the `sqlite-database-integration` plugin that ships the required\n * query tokenizer classes.\n */\nexport const runSql: StepHandler<RunSqlStep<File>> = async (\n\tplayground,\n\t{ sql },\n\tprogress?\n) => {\n\tprogress?.tracker.setCaption(`Executing SQL Queries`);\n\n\tconst sqlFilename = `/tmp/${randomFilename()}.sql`;\n\tconst streamClassFilename = `/tmp/${randomFilename()}.php`;\n\n\tawait playground.writeFile(\n\t\tsqlFilename,\n\t\tnew Uint8Array(await sql.arrayBuffer())\n\t);\n\n\tawait playground.writeFile(\n\t\tstreamClassFilename,\n\t\tnew TextEncoder().encode(streamClassContent)\n\t);\n\n\tconst docroot = await playground.documentRoot;\n\n\tconst js = phpVars({ docroot, sqlFilename, streamClassFilename });\n\n\tconst runPhp = await playground.run({\n\t\tcode: `<?php\n\t\tdefine('WP_SQLITE_AST_DRIVER', true);\n\t\trequire_once ${js.docroot} . '/wp-load.php';\n\n\t\t// Load WP_MySQL_Naive_Query_Stream from the bundled file\n\t\trequire_once ${js.streamClassFilename};\n\n\t\tglobal $wpdb;\n\n\t\tdo_action('run_sql_step');\n\n\t\t$stream = new WP_MySQL_Naive_Query_Stream();\n\n\t\t// Open the SQL file for streaming\n\t\t$handle = fopen(${js.sqlFilename}, 'r');\n\t\tif (!$handle) {\n\t\t\tthrow new Exception('Failed to open SQL file');\n\t\t}\n\n\t\t// Read and process the file in 8KB chunks\n\t\t$chunk_size = 8192;\n\t\twhile (!feof($handle)) {\n\t\t\t$chunk = fread($handle, $chunk_size);\n\t\t\tif ($chunk === false) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\t$stream->append_sql($chunk);\n\n\t\t\t// Process any complete queries in the stream\n\t\t\twhile ($stream->next_query()) {\n\t\t\t\t$query = $stream->get_query();\n\t\t\t\t$wpdb->query($query);\n\t\t\t}\n\t\t}\n\n\t\tfclose($handle);\n\n\t\t// Mark input as complete and process any remaining queries\n\t\t$stream->mark_input_complete();\n\t\twhile ($stream->next_query()) {\n\t\t\t$query = $stream->get_query();\n\t\t\t$wpdb->query($query);\n\t\t}\n\t`,\n\t});\n\n\tawait rm(playground, { path: sqlFilename });\n\tawait rm(playground, { path: streamClassFilename });\n\n\treturn runPhp;\n};\n","import type { PHPRequest, PHPResponse } from '@php-wasm/universal';\nimport type { StepHandler } from '.';\nimport { logger } from '@php-wasm/logger';\n\n/**\n * @private\n * @inheritDoc request\n * @needsLogin\n * @hasRunnableExample\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"request\",\n * \t\t\"request\": {\n * \t\t\t\"method\": \"POST\",\n * \t\t\t\"url\": \"/wp-admin/admin-ajax.php\",\n * \t\t\t\"formData\": {\n * \t\t\t\t\"action\": \"my_action\",\n * \t\t\t\t\"foo\": \"bar\"\n * \t\t\t}\n * \t\t}\n * }\n * </code>\n */\nexport interface RequestStep {\n\tstep: 'request';\n\t/**\n\t * Request details (See\n\t * /wordpress-playground/api/universal/interface/PHPRequest)\n\t */\n\trequest: PHPRequest;\n}\n\n/**\n * Sends a HTTP request to Playground.\n */\nexport const request: StepHandler<RequestStep, Promise<PHPResponse>> = async (\n\tplayground,\n\t{ request }\n) => {\n\tlogger.warn(\n\t\t'Deprecated: The Blueprint step \"request\" is deprecated and will be removed in a future release.'\n\t);\n\tconst response = await (playground as any).request(request);\n\tif (response.httpStatusCode > 399 || response.httpStatusCode < 200) {\n\t\tlogger.warn('WordPress response was', { response });\n\t\tthrow new Error(\n\t\t\t`Request failed with status ${response.httpStatusCode}`\n\t\t);\n\t}\n\treturn response;\n};\n","import { joinPaths } from '@php-wasm/util';\nimport type { StepHandler } from '.';\nimport type { UniversalPHP } from '@php-wasm/universal';\nimport { defineWpConfigConstants } from '@wp-playground/wordpress';\n\n/**\n * @inheritDoc defineWpConfigConsts\n * @hasRunnableExample\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"defineWpConfigConsts\",\n * \t\t\"consts\": {\n *          \"WP_DEBUG\": true\n *      }\n * }\n * </code>\n */\nexport interface DefineWpConfigConstsStep {\n\tstep: 'defineWpConfigConsts';\n\t/** The constants to define */\n\tconsts: Record<string, unknown>;\n\t/**\n\t * The method of defining the constants in wp-config.php. Possible values are:\n\t *\n\t * - rewrite-wp-config: Default. Rewrites the wp-config.php file to\n\t *                      explicitly call define() with the requested\n\t *                      name and value. This method alters the file\n\t *                      on the disk, but it doesn't conflict with\n\t *                      existing define() calls in wp-config.php.\n\t *\n\t * - define-before-run: Defines the constant before running the requested\n\t *                      script. It doesn't alter any files on the disk, but\n\t *                      constants defined this way may conflict with existing\n\t *                      define() calls in wp-config.php.\n\t */\n\tmethod?: 'rewrite-wp-config' | 'define-before-run';\n\t/**\n\t * @deprecated This option is noop and will be removed in a future version.\n\t * This option is only kept in here to avoid breaking Blueprint schema validation\n\t * for existing apps using this option.\n\t */\n\tvirtualize?: boolean;\n}\n\n/**\n * Defines constants in a [`wp-config.php`](https://developer.wordpress.org/advanced-administration/wordpress/wp-config/) file.\n *\n * This step can be called multiple times, and the constants will be merged.\n *\n * @param playground The playground client.\n * @param wpConfigConst\n */\nexport const defineWpConfigConsts: StepHandler<\n\tDefineWpConfigConstsStep\n> = async (playground, { consts, method = 'define-before-run' }) => {\n\tswitch (method) {\n\t\tcase 'define-before-run':\n\t\t\tawait defineBeforeRun(playground, consts);\n\t\t\tbreak;\n\t\tcase 'rewrite-wp-config': {\n\t\t\tconst documentRoot = await playground.documentRoot;\n\t\t\tconst wpConfigPath = joinPaths(documentRoot, '/wp-config.php');\n\t\t\tawait defineWpConfigConstants(playground, wpConfigPath, consts);\n\t\t\tbreak;\n\t\t}\n\t\tdefault:\n\t\t\tthrow new Error(`Invalid method: ${method}`);\n\t}\n};\n\nexport async function defineBeforeRun(\n\tplayground: UniversalPHP,\n\tconsts: Record<string, unknown>\n) {\n\tfor (const key in consts) {\n\t\tawait playground.defineConstant(key, consts[key] as string);\n\t}\n}\n","import { phpVar } from '@php-wasm/util';\nimport type { StepHandler } from '.';\n\n/**\n * @inheritDoc setSiteOptions\n * @hasRunnableExample\n *\n * @example\n *\n * <code>\n * {\n *     \"step\": \"setSiteOptions\",\n *     \"options\": {\n *         \"blogname\": \"My Blog\",\n *         \"blogdescription\": \"A great blog\"\n *     }\n * }\n * </code>\n */\nexport type SetSiteOptionsStep = {\n\t/** The name of the step. Must be \"setSiteOptions\". */\n\tstep: 'setSiteOptions';\n\t/** The options to set on the site. */\n\toptions: Record<string, unknown>;\n};\n\n/**\n * Sets site options. This is equivalent to calling [`update_option`](https://developer.wordpress.org/reference/functions/update_option/) for each\n * option in the [`options`](https://developer.wordpress.org/apis/options/#available-options-by-category) object.\n */\nexport const setSiteOptions: StepHandler<SetSiteOptionsStep> = async (\n\tphp,\n\t{ options }\n) => {\n\tconst docroot = await php.documentRoot;\n\tawait php.run({\n\t\tcode: `<?php\n\t\tinclude ${phpVar(docroot)} . '/wp-load.php';\n\t\t$site_options = ${phpVar(options)};\n\t\t$flush_rewrite_rules = (\n\t\t\tis_array($site_options) &&\n\t\t\tarray_key_exists('permalink_structure', $site_options)\n\t\t) || (\n\t\t\tis_object($site_options) &&\n\t\t\tproperty_exists($site_options, 'permalink_structure')\n\t\t);\n\t\tforeach($site_options as $name => $value) {\n\t\t\tupdate_option($name, $value);\n\t\t}\n\t\tif ($flush_rewrite_rules) {\n\t\t\tflush_rewrite_rules(false);\n\t\t}\n\t\techo \"Success\";\n\t\t`,\n\t});\n};\n\n/**\n * @inheritDoc updateUserMeta\n * @hasRunnableExample\n *\n * @example\n *\n * <code>\n * {\n *     \"step\": \"updateUserMeta\",\n *     \"meta\": {\n * \t       \"first_name\": \"John\",\n * \t       \"last_name\": \"Doe\"\n *     },\n *     \"userId\": 1\n * }\n * </code>\n */\nexport interface UpdateUserMetaStep {\n\tstep: 'updateUserMeta';\n\t/** An object of user meta values to set, e.g. { \"first_name\": \"John\" } */\n\tmeta: Record<string, unknown>;\n\t/** User ID */\n\tuserId: number;\n}\n\n/**\n * Updates user meta. This is equivalent to calling [`update_user_meta`](https://developer.wordpress.org/reference/functions/update_user_meta/) for each\n * meta value in the `meta` object.\n */\nexport const updateUserMeta: StepHandler<UpdateUserMetaStep> = async (\n\tphp,\n\t{ meta, userId }\n) => {\n\tconst docroot = await php.documentRoot;\n\tawait php.run({\n\t\tcode: `<?php\n\t\tinclude ${phpVar(docroot)} . '/wp-load.php';\n\t\t$meta = ${phpVar(meta)};\n\t\tforeach($meta as $name => $value) {\n\t\t\tupdate_user_meta(${phpVar(userId)}, $name, $value);\n\t\t}\n\t\t`,\n\t});\n};\n","import type { PHPResponse, UniversalPHP } from '@php-wasm/universal';\nimport type { StepHandler } from '.';\nimport { joinPaths, phpVar } from '@php-wasm/util';\nimport type { FileReference } from '../v1/resources';\nimport { logger } from '@php-wasm/logger';\n\nexport const defaultWpCliPath = '/tmp/wp-cli.phar';\nexport const defaultWpCliResource: FileReference = {\n\tresource: 'url',\n\t/**\n\t * Use compression for downloading the wp-cli.phar file.\n\t * The official release, hosted at raw.githubusercontent.com, is ~7MB\n\t * and the transfer is uncompressed. playground.wordpress.net supports\n\t * transfer compression and only transmits ~1.4MB.\n\t *\n\t * @TODO: minify the wp-cli.phar file. It can be as small as 1MB when all the\n\t *        whitespaces and are removed, and even 500KB when libraries\n\t *        like the JavaScript parser or Composer are removed.\n\t */\n\turl: 'https://playground.wordpress.net/wp-cli.phar',\n};\n\nexport const assertWpCli = async (\n\tplayground: UniversalPHP,\n\twpCliPath: string = defaultWpCliPath\n) => {\n\tif (!(await playground.fileExists(wpCliPath))) {\n\t\tthrow new Error(`wp-cli.phar not found at ${wpCliPath}.\n\t\t\tYou can enable wp-cli support by adding \"wp-cli\" to the list of extra libraries in your blueprint as follows:\n\t\t\t{\n\t\t\t\t\"extraLibraries\": [ \"wp-cli\" ]\n\t\t\t}\n\t\t\tRead more about it in the documentation.\n\t\t\thttps://wordpress.github.io/wordpress-playground/blueprints/data-format#extra-libraries`);\n\t}\n};\n\n/**\n * @inheritDoc wpCLI\n * @hasRunnableExample\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"wp-cli\",\n * \t\t\"command\": \"wp post create --post_title='Test post' --post_excerpt='Some content'\"\n * }\n * </code>\n */\nexport interface WPCLIStep {\n\t/** The step identifier. */\n\tstep: 'wp-cli';\n\t/** The WP CLI command to run. */\n\tcommand: string | string[];\n\t/** wp-cli.phar path */\n\twpCliPath?: string;\n}\n\n/**\n * Runs PHP code using [WP-CLI](https://developer.wordpress.org/cli/commands/).\n */\nexport const wpCLI: StepHandler<WPCLIStep, Promise<PHPResponse>> = async (\n\tplayground,\n\t{ command, wpCliPath = defaultWpCliPath }\n) => {\n\tawait assertWpCli(playground, wpCliPath);\n\n\tlet args: string[];\n\tif (typeof command === 'string') {\n\t\tcommand = command.trim();\n\t\targs = splitShellCommand(command);\n\t} else {\n\t\targs = command;\n\t}\n\n\tconst cmd = args.shift();\n\tif (cmd !== 'wp') {\n\t\tthrow new Error(`The first argument must be \"wp\".`);\n\t}\n\n\tlet rewrotePaths = false;\n\tconst argsWithRewrittenPaths = args.map((arg) => {\n\t\tif (arg.startsWith('wordpress/')) {\n\t\t\trewrotePaths = true;\n\t\t\treturn `/${arg}`;\n\t\t}\n\t\treturn arg;\n\t});\n\n\tif (rewrotePaths) {\n\t\tlogger.error(\n\t\t\t`\nThe wp-cli step in your Blueprint refers to a relative path.\n\nPlayground recently changed the working directory from '/' to '/wordpress' to better mimic \nhow real web servers work. This means relative paths that used to work may no longer \npoint to the correct location.\n\nPlayground automatically updated the path for you, but at one point path rewriting will be removed. Please\nupdate your code to use an absolute path instead:\n\nInstead of:\n\n        {\n            \"step\": \"wp-cli\",\n            \"command\": \"wp media import wordpress/wp-content/Select-storage-method.png --post_id=4 --title='Select your storage method' --featured_image\"\n        }\n\nUse:\n\n        {\n            \"step\": \"wp-cli\",\n            \"command\": \"wp media import /wordpress/wp-content/Select-storage-method.png --post_id=4 --title='Select your storage method' --featured_image\"\n        }\n\nThis will ensure your code works reliably regardless of the current working directory.\n        `.trim()\n\t\t);\n\t}\n\n\tconst documentRoot = await playground.documentRoot;\n\n\tawait playground.writeFile('/tmp/stdout', '');\n\tawait playground.writeFile('/tmp/stderr', '');\n\tawait playground.writeFile(\n\t\tjoinPaths(documentRoot, 'run-cli.php'),\n\t\t`<?php\n\t\t// Set up the environment to emulate a shell script\n\t\t// call.\n\n\t\t// Set SHELL_PIPE to 0 to ensure WP-CLI formats\n\t\t// the output as ASCII tables.\n\t\t// @see https://github.com/wp-cli/wp-cli/issues/1102\n\t\tputenv( 'SHELL_PIPE=0' );\n\n\t\t// Set the argv global.\n\t\t$GLOBALS['argv'] = array_merge([\n\t\t  \"/tmp/wp-cli.phar\",\n\t\t  \"--path=${documentRoot}\"\n\t\t], ${phpVar(argsWithRewrittenPaths)});\n\n\t\t// Provide stdin, stdout, stderr streams outside of\n\t\t// the CLI SAPI.\n\t\tdefine('STDIN', fopen('php://stdin', 'rb'));\n\t\tdefine('STDOUT', fopen('php://stdout', 'wb'));\n\t\tdefine('STDERR', fopen('php://stderr', 'wb'));\n\n\t\trequire( ${phpVar(wpCliPath)} );\n\t\t`\n\t);\n\n\tconst result = await playground.run({\n\t\tscriptPath: joinPaths(documentRoot, 'run-cli.php'),\n\t});\n\n\tif (result.exitCode !== 0) {\n\t\tthrow new Error(result.errors);\n\t}\n\n\treturn result;\n};\n\n/**\n * Naive shell command parser.\n * Ensures that commands like `wp option set blogname \"My blog name\"` are split\n * into `['wp', 'option', 'set', 'blogname', 'My blog name']` instead of\n * `['wp', 'option', 'set', 'blogname', 'My', 'blog', 'name']`.\n *\n * @param command\n * @returns\n */\nexport function splitShellCommand(command: string) {\n\tconst MODE_NORMAL = 0;\n\tconst MODE_IN_QUOTE = 1;\n\n\tlet mode = MODE_NORMAL;\n\tlet quote = '';\n\n\tconst parts: string[] = [];\n\tlet currentPart = '';\n\tfor (let i = 0; i < command.length; i++) {\n\t\tconst char = command[i];\n\t\tif (mode === MODE_NORMAL) {\n\t\t\tif (char === '\"' || char === \"'\") {\n\t\t\t\tmode = MODE_IN_QUOTE;\n\t\t\t\tquote = char;\n\t\t\t} else if (char.match(/\\s/)) {\n\t\t\t\tif (currentPart) {\n\t\t\t\t\tparts.push(currentPart);\n\t\t\t\t}\n\t\t\t\tcurrentPart = '';\n\t\t\t} else {\n\t\t\t\tcurrentPart += char;\n\t\t\t}\n\t\t} else if (mode === MODE_IN_QUOTE) {\n\t\t\tif (char === '\\\\') {\n\t\t\t\ti++;\n\t\t\t\tcurrentPart += command[i];\n\t\t\t} else if (char === quote) {\n\t\t\t\tmode = MODE_NORMAL;\n\t\t\t\tquote = '';\n\t\t\t} else {\n\t\t\t\tcurrentPart += char;\n\t\t\t}\n\t\t}\n\t}\n\tif (currentPart) {\n\t\tparts.push(currentPart);\n\t}\n\treturn parts;\n}\n","import { phpVar } from '@php-wasm/util';\nimport type { StepHandler } from '.';\nimport { defineWpConfigConsts } from './define-wp-config-consts';\nimport { setSiteOptions } from './site-data';\nimport { assertWpCli, wpCLI } from './wp-cli';\n\n/**\n * @inheritDoc enableMultisite\n * @hasRunnableExample\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"enableMultisite\"\n * }\n * </code>\n */\nexport interface EnableMultisiteStep {\n\tstep: 'enableMultisite';\n\t/** wp-cli.phar path */\n\twpCliPath?: string;\n}\n\n/**\n * Defines the [Multisite](https://developer.wordpress.org/advanced-administration/multisite/create-network/) constants in a `wp-config.php` file.\n *\n * This step can be called multiple times, and the constants will be merged.\n *\n * @param playground The playground client.\n * @param enableMultisite\n */\nexport const enableMultisite: StepHandler<EnableMultisiteStep> = async (\n\tplayground,\n\t{ wpCliPath }\n) => {\n\tawait assertWpCli(playground, wpCliPath);\n\n\tawait defineWpConfigConsts(playground, {\n\t\tconsts: {\n\t\t\tWP_ALLOW_MULTISITE: 1,\n\t\t},\n\t});\n\n\tconst url = new URL(await playground.absoluteUrl);\n\tif (url.port !== '') {\n\t\tlet errorMessage = `The current host is ${url.host}, but WordPress multisites do not support custom ports.`;\n\t\tif (url.hostname === 'localhost') {\n\t\t\terrorMessage += ` For development, you can set up a playground.test domain using the instructions at https://wordpress.github.io/wordpress-playground/contributing/code.`;\n\t\t}\n\t\tthrow new Error(errorMessage);\n\t}\n\tconst sitePath = url.pathname.replace(/\\/$/, '') + '/';\n\tconst siteUrl = `${url.protocol}//${url.hostname}${sitePath}`;\n\tawait setSiteOptions(playground, {\n\t\toptions: {\n\t\t\tsiteurl: siteUrl,\n\t\t\thome: siteUrl,\n\t\t},\n\t});\n\n\tawait wpCLI(playground, {\n\t\tcommand: `wp core multisite-convert --base=\"${sitePath}\"`,\n\t});\n\n\t// Set $_SERVER['HTTP_HOST'] in wp-config.php for multisite support.\n\t// https://make.wordpress.org/cli/handbook/guides/common-issues/#php-notice-undefined-index-on-_server-superglobal\n\tconst docRoot = await playground.documentRoot;\n\tconst wpConfigPath = `${docRoot}/wp-config.php`;\n\tconst wpConfig = await playground.readFileAsText(wpConfigPath);\n\tlet newWpConfig = wpConfig;\n\tif (!wpConfig.includes(\"$_SERVER['HTTP_HOST']\")) {\n\t\tnewWpConfig = wpConfig.replace(\n\t\t\t/^<\\?php\\s*/i,\n\t\t\t`<?php\\n$_SERVER['HTTP_HOST'] = ${phpVar(url.hostname)};\\n`\n\t\t);\n\t}\n\tawait playground.writeFile(wpConfigPath, newWpConfig);\n};\n","import { logger } from '@php-wasm/logger';\nimport type { StepHandler } from '.';\n\n/**\n * @inheritDoc cp\n * @hasRunnableExample\n * @landingPage /index2.php\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"cp\",\n * \t\t\"fromPath\": \"/wordpress/index.php\",\n * \t\t\"toPath\": \"/wordpress/index2.php\"\n * }\n * </code>\n */\nexport interface CpStep {\n\tstep: 'cp';\n\t/** Source path */\n\tfromPath: string;\n\t/** Target path */\n\ttoPath: string;\n}\n\n/**\n * Copies a file from one path to another.\n */\nexport const cp: StepHandler<CpStep> = async (\n\tplayground,\n\t{ fromPath, toPath }\n) => {\n\tif (!fromPath.startsWith('/') || !toPath.startsWith('/')) {\n\t\tlogger.error(\n\t\t\t`\nThe cp() step in your Blueprint refers to a relative path.\n\nPlayground recently changed the working directory from '/' to '/wordpress' to better mimic \nhow real web servers work. This means relative paths that used to work may no longer \npoint to the correct location.\n\nPlayground automatically updated the path for you, but at one point path rewriting will be removed. Please\nupdate your code to use an absolute path instead:\n\nInstead of:  cp({ fromPath: 'wordpress/wp-load.php', toPath: 'wordpress/wp-load.php' });\nUse:         cp({ fromPath: '/wordpress/wp-load.php', toPath: '/wordpress/wp-load.php' });\n\nThis will ensure your code works reliably regardless of the current working directory.\n\t\t`.trim()\n\t\t);\n\t}\n\tif (!fromPath.startsWith('/')) {\n\t\tfromPath = `/${fromPath}`;\n\t}\n\tif (!toPath.startsWith('/')) {\n\t\ttoPath = `/${toPath}`;\n\t}\n\tawait playground.writeFile(\n\t\ttoPath,\n\t\tawait playground.readFileAsBuffer(fromPath)\n\t);\n};\n","import { logger } from '@php-wasm/logger';\nimport type { StepHandler } from '.';\n\n/**\n * @inheritDoc mv\n * @hasRunnableExample\n * @landingPage /index2.php\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"mv\",\n * \t\t\"fromPath\": \"/wordpress/index.php\",\n * \t\t\"toPath\": \"/wordpress/index2.php\"\n * }\n * </code>\n */\nexport interface MvStep {\n\tstep: 'mv';\n\t/** Source path */\n\tfromPath: string;\n\t/** Target path */\n\ttoPath: string;\n}\n\n/**\n * Moves a file or directory from one path to another.\n */\nexport const mv: StepHandler<MvStep> = async (\n\tplayground,\n\t{ fromPath, toPath }\n) => {\n\tif (!fromPath.startsWith('/') || !toPath.startsWith('/')) {\n\t\tlogger.error(\n\t\t\t`\nThe mv() step in your Blueprint refers to a relative path.\n\nPlayground recently changed the working directory from '/' to '/wordpress' to better mimic \nhow real web servers work. This means relative paths that used to work may no longer \npoint to the correct location.\n\nPlayground automatically updated the path for you, but at one point path rewriting will be removed. Please\nupdate your code to use an absolute path instead:\n\nInstead of:  mv({ fromPath: 'wordpress/wp-load.php', toPath: 'wordpress/wp-load.php' });\nUse:         mv({ fromPath: '/wordpress/wp-load.php', toPath: '/wordpress/wp-load.php' });\n\nThis will ensure your code works reliably regardless of the current working directory.\n\t\t`.trim()\n\t\t);\n\t}\n\tif (!fromPath.startsWith('/')) {\n\t\tfromPath = `/${fromPath}`;\n\t}\n\tif (!toPath.startsWith('/')) {\n\t\ttoPath = `/${toPath}`;\n\t}\n\tawait playground.mv(fromPath, toPath);\n};\n","import { logger } from '@php-wasm/logger';\nimport type { StepHandler } from '.';\n\n/**\n * @inheritDoc mkdir\n * @hasRunnableExample\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"mkdir\",\n * \t\t\"path\": \"/wordpress/my-new-folder\"\n * }\n * </code>\n */\nexport interface MkdirStep {\n\tstep: 'mkdir';\n\t/** The path of the directory you want to create */\n\tpath: string;\n}\n\n/**\n * Creates a directory at the specified path.\n */\nexport const mkdir: StepHandler<MkdirStep> = async (playground, { path }) => {\n\tif (!path.startsWith('/')) {\n\t\tlogger.error(\n\t\t\t`\nThe mkdir() step in your Blueprint refers to a relative path.\n\nPlayground recently changed the working directory from '/' to '/wordpress' to better mimic \nhow real web servers work. This means relative paths that used to work may no longer \npoint to the correct location.\n\nPlayground automatically updated the path for you, but at one point path rewriting will be removed. Please\nupdate your code to use an absolute path instead:\n\nInstead of:  mkdir({ path: 'wordpress/my-new-folder' });\nUse:         mkdir({ path: '/wordpress/my-new-folder' });\n\nThis will ensure your code works reliably regardless of the current working directory.\n\t\t`.trim()\n\t\t);\n\t}\n\tawait playground.mkdir(path);\n};\n","import { logger } from '@php-wasm/logger';\nimport type { StepHandler } from '.';\n\n/**\n * @inheritDoc rmdir\n * @hasRunnableExample\n * @landingPage /wp-admin/\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"rmdir\",\n * \t\t\"path\": \"/wordpress/wp-admin\"\n * }\n * </code>\n */\nexport interface RmdirStep {\n\tstep: 'rmdir';\n\t/** The path to remove */\n\tpath: string;\n}\n\n/**\n * Removes a directory at the specified path.\n */\nexport const rmdir: StepHandler<RmdirStep> = async (playground, { path }) => {\n\tif (!path.startsWith('/')) {\n\t\tlogger.error(\n\t\t\t`\nThe rmdir() step in your Blueprint refers to a relative path.\n\nPlayground recently changed the working directory from '/' to '/wordpress' to better mimic \nhow real web servers work. This means relative paths that used to work may no longer \npoint to the correct location.\n\nPlayground automatically updated the path for you, but at one point path rewriting will be removed. Please\nupdate your code to use an absolute path instead:\n\nInstead of:  rmdir({ path: 'wordpress/wp-load.php' });\nUse:         rmdir({ path: '/wordpress/wp-load.php' });\n\nThis will ensure your code works reliably regardless of the current working directory.\n\t\t`.trim()\n\t\t);\n\t\tpath = `/${path}`;\n\t}\n\tawait playground.rmdir(path);\n};\n","import { logger } from '@php-wasm/logger';\nimport type { StepHandler } from '.';\n\n/**\n * @inheritDoc writeFile\n * @hasRunnableExample\n * @landingPage /test.php\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"writeFile\",\n * \t\t\"path\": \"/wordpress/test.php\",\n * \t\t\"data\": \"<?php echo 'Hello World!'; ?>\"\n * }\n * </code>\n */\nexport interface WriteFileStep<FileResource> {\n\tstep: 'writeFile';\n\t/** The path of the file to write to */\n\tpath: string;\n\t/** The data to write */\n\tdata: FileResource | string | Uint8Array;\n}\n\n/**\n * Writes data to a file at the specified path.\n */\nexport const writeFile: StepHandler<WriteFileStep<File>> = async (\n\tplayground,\n\t{ path, data }\n) => {\n\tif (data instanceof File) {\n\t\tdata = new Uint8Array(await data.arrayBuffer());\n\t}\n\tif (!path.startsWith('/')) {\n\t\tlogger.error(\n\t\t\t`\nThe writeFile() step in your Blueprint refers to a relative path.\n\nPlayground recently changed the working directory from '/' to '/wordpress' to better mimic \nhow real web servers work. This means relative paths that used to work may no longer \npoint to the correct location.\n\nPlayground automatically updated the path for you, but at one point path rewriting will be removed. Please\nupdate your code to use an absolute path instead:\n\nInstead of:  writeFile({ path: 'wordpress/wp-load.php', data: '<?php echo \"Hello World!\"; ?>' });\nUse:         writeFile({ path: '/wordpress/wp-load.php', data: '<?php echo \"Hello World!\"; ?>' });\n\nThis will ensure your code works reliably regardless of the current working directory.\n\t\t`.trim()\n\t\t);\n\t\tpath = `/${path}`;\n\t}\n\t/**\n\t * PR #1426 removed the mu-plugins directory from the default\n\t * WordPress build used by Playground. This is consistent with\n\t * the official WordPress build, but it also breaks existing\n\t * Blueprints that assume the mu-plugins directory is still\n\t * in place.\n\t *\n\t * This code block creates the mu-plugins directory on a write\n\t * attempt as a courtesy to Playground developers.\n\t *\n\t * @see https://github.com/WordPress/wordpress-playground/pull/1426\n\t *      for more context.\n\t */\n\tif (\n\t\tpath.startsWith('/wordpress/wp-content/mu-plugins') &&\n\t\t!(await playground.fileExists('/wordpress/wp-content/mu-plugins'))\n\t) {\n\t\tawait playground.mkdir('/wordpress/wp-content/mu-plugins');\n\t}\n\tawait playground.writeFile(path, data);\n};\n","import { writeFiles as writeFilesToPhpWasm } from '@php-wasm/universal';\nimport type { StepHandler } from '.';\nimport type { Directory } from '../v1/resources';\nimport { logger } from '@php-wasm/logger';\n\n/**\n * @inheritDoc writeFiles\n * @hasRunnableExample\n * @landingPage /test.php\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"writeFiles\",\n * \t\t\"writeToPath\": \"/wordpress/wp-content/plugins/my-plugin\",\n * \t\t\"filesTree\": {\n * \t\t\t\"name\": \"my-plugin\",\n * \t\t\t\"files\": {\n * \t\t\t\t\"index.php\": \"<?php echo '<a>Hello World!</a>'; ?>\",\n * \t\t\t\t\"public\": {\n * \t\t\t\t\t\"style.css\": \"a { color: red; }\"\n * \t\t\t\t}\n * \t\t\t}\n * \t\t}\n * }\n * </code>\n */\nexport interface WriteFilesStep<DirectoryResource> {\n\tstep: 'writeFiles';\n\t/** The path of the file to write to */\n\twriteToPath: string;\n\t/**\n\t * The 'filesTree' defines the directory structure, supporting 'literal:directory' or\n\t * 'git:directory' types. The 'name' represents the root directory, while 'files' is an object\n\t * where keys are file paths, and values contain either file content as a string or nested objects\n\t * for subdirectories.\n\t */\n\tfilesTree: DirectoryResource;\n}\n\n/**\n * Writes multiple files to a specified directory in the Playground\n * filesystem.\n * ```\n * my-plugin/\n * ├── index.php\n * └── public/\n *     └── style.css\n * ```\n */\nexport const writeFiles: StepHandler<WriteFilesStep<Directory>> = async (\n\tplayground,\n\t{ writeToPath, filesTree }\n) => {\n\tif (!writeToPath.startsWith('/')) {\n\t\tlogger.error(\n\t\t\t`\nThe writeFiles() step in your Blueprint refers to a relative path.\n\nPlayground recently changed the working directory from '/' to '/wordpress' to better mimic \nhow real web servers work. This means relative paths that used to work may no longer\npoint to the correct location.\n\nPlayground automatically updated the path for you, but at one point path rewriting will be removed. Please\nupdate your code to use an absolute path instead:\n\nInstead of:  writeFiles({ writeToPath: 'wordpress/wp-content/plugins/my-plugin', filesTree: { name: 'style.css': 'a { color: red; }' });\nUse:         writeFiles({ writeToPath: '/wordpress/wp-content/plugins/my-plugin', filesTree: { name: 'style.css': 'a { color: red; }' });\n\nThis will ensure your code works reliably regardless of the current working directory.\n\t\t`.trim()\n\t\t);\n\t\twriteToPath = `/${writeToPath}`;\n\t}\n\tawait writeFilesToPhpWasm(playground, writeToPath, filesTree.files);\n};\n","import type { StepHandler } from '.';\nimport { defineWpConfigConsts } from './define-wp-config-consts';\n\n/**\n * Changes the site URL of the WordPress installation.\n *\n * @inheritDoc defineSiteUrl\n */\nexport interface DefineSiteUrlStep {\n\tstep: 'defineSiteUrl';\n\t/** The URL */\n\tsiteUrl: string;\n}\n\n/**\n * Sets [`WP_HOME`](https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#blog-address-url) and [`WP_SITEURL`](https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#wp-siteurl) constants for the WordPress installation.\n *\n * Using this step on playground.wordpress.net is moot.\n * It is useful when building a custom Playground-based tool, like [`wp-now`](https://www.npmjs.com/package/@wp-now/wp-now),\n * or deploying Playground on a custom domain.\n *\n * @param playground The playground client.\n * @param siteUrl\n */\nexport const defineSiteUrl: StepHandler<DefineSiteUrlStep> = async (\n\tplayground,\n\t{ siteUrl }\n) => {\n\tawait defineWpConfigConsts(playground, {\n\t\tconsts: {\n\t\t\tWP_HOME: siteUrl,\n\t\t\tWP_SITEURL: siteUrl,\n\t\t},\n\t});\n};\n","import type { StepHandler, StepProgress } from '.';\nimport { writeFile } from './write-file';\nimport type { UniversalPHP } from '@php-wasm/universal';\n\n/**\n * @inheritDoc importWxr\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"importWxr\",\n * \t\t\"file\": {\n * \t\t\t\"resource\": \"url\",\n * \t\t\t\"url\": \"https://your-site.com/starter-content.wxr\"\n * \t\t}\n * }\n * </code>\n */\nexport interface ImportWxrStep<ResourceType> {\n\tstep: 'importWxr';\n\t/** The file to import */\n\tfile: ResourceType;\n\t/**\n\t * Whether to fetch and import attachment files referenced by the WXR file.\n\t *\n\t * @default true\n\t */\n\tfetchAttachments?: boolean;\n\t/**\n\t * Whether to rewrite imported URLs to the current site URL.\n\t *\n\t * @default true\n\t */\n\trewriteUrls?: boolean;\n\t/**\n\t * Explicit URL replacements to apply when URL rewriting is enabled.\n\t */\n\turlMapping?: Record<string, string>;\n\t/**\n\t * Whether to import comments from the WXR file.\n\t *\n\t * @default true\n\t */\n\timportComments?: boolean;\n\t/**\n\t * The fallback local user for imported authors that cannot be mapped.\n\t *\n\t * @default \"admin\"\n\t */\n\tdefaultAuthorUsername?: string;\n\t/**\n\t * How to assign imported WXR authors to local WordPress users.\n\t *\n\t * @default \"default-author\"\n\t */\n\tauthorsMode?: 'create' | 'default-author' | 'map';\n\t/**\n\t * Remote WXR author usernames keyed to existing local usernames.\n\t */\n\tauthorsMap?: Record<string, string>;\n\t/**\n\t * Whether to create local users for imported WXR authors.\n\t *\n\t * @default false\n\t */\n\timportUsers?: boolean;\n\t/**\n\t * The importer to use. Possible values:\n\t *\n\t * - `default`: The importer from https://github.com/humanmade/WordPress-Importer\n\t * - `data-liberation`: The experimental Data Liberation WXR importer developed at\n\t *                      https://github.com/WordPress/wordpress-playground/issues/1894\n\t *\n\t * This option is deprecated. The syntax will not be removed, but once the\n\t * Data Liberation importer matures, it will become the only supported\n\t * importer and the `importer` option will be ignored.\n\t *\n\t * @deprecated\n\t */\n\timporter?: 'data-liberation' | 'default';\n}\n\n/**\n * Imports a WXR file into WordPress.\n *\n * @param playground Playground client.\n * @param file The file to import.\n */\nexport const importWxr: StepHandler<ImportWxrStep<File>> = async (\n\tplayground,\n\t{\n\t\tfile,\n\t\tfetchAttachments = true,\n\t\trewriteUrls = true,\n\t\turlMapping = {},\n\t\timportComments = true,\n\t\tdefaultAuthorUsername = 'admin',\n\t\tauthorsMode = 'default-author',\n\t\tauthorsMap = {},\n\t\timportUsers = false,\n\t},\n\tprogress?\n) => {\n\tconst fallbackAuthorUsername = defaultAuthorUsername.trim() || 'admin';\n\tawait importWithDefaultImporter(playground, file, progress, {\n\t\tfetchAttachments,\n\t\trewriteUrls,\n\t\turlMapping,\n\t\timportComments,\n\t\tfallbackAuthorUsername,\n\t\tauthorsMode,\n\t\tauthorsMap,\n\t\timportUsers,\n\t});\n};\n\nasync function importWithDefaultImporter(\n\tplayground: UniversalPHP,\n\tfile: File,\n\tprogress: StepProgress | undefined,\n\toptions: {\n\t\tfetchAttachments: boolean;\n\t\trewriteUrls: boolean;\n\t\turlMapping: Record<string, string>;\n\t\timportComments: boolean;\n\t\tfallbackAuthorUsername: string;\n\t\tauthorsMode: 'create' | 'default-author' | 'map';\n\t\tauthorsMap: Record<string, string>;\n\t\timportUsers: boolean;\n\t}\n) {\n\tprogress?.tracker?.setCaption('Importing content');\n\tawait writeFile(playground, {\n\t\tpath: '/tmp/import.wxr',\n\t\tdata: file,\n\t});\n\tawait playground.run({\n\t\t$_SERVER: {\n\t\t\t/**\n\t\t\t * get_site_url() infers the protocol from $_SERVER['HTTPS'] instead of\n\t\t\t * using the stored siteurl option. The importer relies on that behavior\n\t\t\t * when rewriting links in the WXR payload, so we populate the flag here\n\t\t\t * just as the web request layer would.\n\t\t\t */\n\t\t\tHTTPS: (await playground.absoluteUrl).startsWith('https://')\n\t\t\t\t? 'on'\n\t\t\t\t: '',\n\t\t},\n\t\tcode: `<?php\n\tdefine('WP_LOAD_IMPORTERS', true);\n\trequire 'wp-load.php';\n\trequire 'wp-admin/includes/admin.php';\n\n\t/**\n\t * Disable all kses filters to prevent content sanitization during import.\n\t * It messes up Playground URL scheme by mangling transforming code such as:\n\t *\n\t *     <a href=\"/scope:kind-quiet-lake/index.php\">Test</a>\n\t *\n\t * into:\n\t *\n\t *     <a href=\"kind-quiet-lake/index.php\">Test</a>\n\t */\n\tkses_remove_filters();\n\n\t// The WordPress importer assigns unmapped imported authors to the current\n\t// user, so set it to the requested fallback author before importing.\n\t$fallback_author_username = getenv('FALLBACK_AUTHOR_USERNAME');\n\t$fallback_author          = get_user_by('login', $fallback_author_username);\n\tif (!$fallback_author) {\n\t\tthrow new Exception(\n\t\t\tsprintf('Could not find fallback WXR import author \"%s\".', $fallback_author_username)\n\t\t);\n\t}\n\twp_set_current_user( $fallback_author->ID );\n\n\t$wp_import                  = new WP_Import();\n\t$import_data                = $wp_import->parse( getenv('IMPORT_FILE') );\n\t$authors_map                = json_decode(getenv('AUTHORS_MAP') ?: '{}', true);\n\tif (!is_array($authors_map)) {\n\t\tthrow new Exception('Invalid WXR authors map payload.');\n\t}\n\n\t// Prepare the data to be used in process_author_mapping();\n\t$wp_import->get_authors_from_import( $import_data );\n\t$author_mapping_form = blueprint_prepare_wxr_author_mapping(\n\t\t$wp_import->authors,\n\t\tgetenv('AUTHORS_MODE') ?: 'default-author',\n\t\t$authors_map,\n\t\tgetenv('IMPORT_USERS') === 'true',\n\t\t(int) $fallback_author->ID\n\t);\n\n\t$url_mapping_payload = getenv('URL_MAPPING') ?: '{}';\n\t$url_mapping         = json_decode($url_mapping_payload, true);\n\tif (!is_array($url_mapping)) {\n\t\tthrow new Exception(\n\t\t\tsprintf(\n\t\t\t\t'Invalid WXR URL mapping payload (%d bytes): %s.',\n\t\t\t\tstrlen($url_mapping_payload),\n\t\t\t\tjson_last_error_msg()\n\t\t\t)\n\t\t);\n\t}\n\tif (!empty($url_mapping) && getenv('REWRITE_URLS') === 'true') {\n\t\tadd_filter('wp_import_post_data_raw', function($post) use ($url_mapping) {\n\t\t\treturn blueprint_apply_wxr_url_mapping($post, $url_mapping);\n\t\t});\n\t}\n\n\tif (getenv('IMPORT_COMMENTS') === 'false') {\n\t\tadd_filter('wp_import_post_comments', '__return_empty_array');\n\t}\n\n\t// We no longer need the original data, so unset to avoid using excess\n\t// memory.\n\tunset( $import_data );\n\n\t// Drive the import\n\t$wp_import->fetch_attachments = getenv('FETCH_ATTACHMENTS') === 'true';\n\n\t$_GET  = array(\n\t\t'import' => 'wordpress',\n\t\t'step'   => 2,\n\t);\n\t$_POST = array(\n\t\t'imported_authors'  => $author_mapping_form['imported_authors'],\n\t\t'user_map'          => $author_mapping_form['user_map'],\n\t\t'user_new'          => $author_mapping_form['user_new'],\n\t\t'fetch_attachments' => $wp_import->fetch_attachments,\n\t);\n\n\t$GLOBALS['wpcli_import_current_file'] = basename( $file );\n\t$wp_import->import( getenv('IMPORT_FILE'), [\n\t\t'rewrite_urls' => getenv('REWRITE_URLS') === 'true',\n\t] );\n\n\t/**\n\t * Builds the importer form payload for WXR author assignment.\n\t */\n\tfunction blueprint_prepare_wxr_author_mapping(\n\t\tarray $authors,\n\t\tstring $authors_mode,\n\t\tarray $authors_map,\n\t\tbool $import_users,\n\t\tint $fallback_author_id\n\t): array {\n\t\t$imported_authors = array();\n\t\t$user_map         = array();\n\t\t$user_new         = array();\n\n\t\tforeach ($authors as $index => $author) {\n\t\t\t$remote_username = $author['author_login'] ?? '';\n\t\t\tif (!is_string($remote_username) || $remote_username === '') {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t$imported_authors[$index] = $remote_username;\n\t\t\tif (array_key_exists($remote_username, $authors_map)) {\n\t\t\t\t$user_map[$index] = blueprint_wxr_author_id_for_username(\n\t\t\t\t\t$authors_map[$remote_username],\n\t\t\t\t\t$remote_username\n\t\t\t\t);\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif ($authors_mode === 'map') {\n\t\t\t\tthrow new Exception(\n\t\t\t\t\tsprintf('Missing local user mapping for WXR author \"%s\".', $remote_username)\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tif ($authors_mode === 'create' && $import_users) {\n\t\t\t\t$user_new[$index] = $remote_username;\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t$user_map[$index] = $fallback_author_id;\n\t\t}\n\n\t\treturn array(\n\t\t\t'imported_authors' => $imported_authors,\n\t\t\t'user_map'         => $user_map,\n\t\t\t'user_new'         => $user_new,\n\t\t);\n\t}\n\n\t/**\n\t * Finds the local user ID for an explicit WXR author map entry.\n\t */\n\tfunction blueprint_wxr_author_id_for_username(string $local_username, string $remote_username): int {\n\t\tif ($local_username === '') {\n\t\t\tthrow new Exception(\n\t\t\t\tsprintf('Invalid local user mapping for WXR author \"%s\".', $remote_username)\n\t\t\t);\n\t\t}\n\n\t\t$local_user = get_user_by('login', $local_username);\n\t\tif (!$local_user) {\n\t\t\tthrow new Exception(\n\t\t\t\tsprintf(\n\t\t\t\t\t'Could not find local user \"%s\" mapped from WXR author \"%s\".',\n\t\t\t\t\t$local_username,\n\t\t\t\t\t$remote_username\n\t\t\t\t)\n\t\t\t);\n\t\t}\n\t\treturn (int) $local_user->ID;\n\t}\n\n\t/**\n\t * Applies explicit Blueprint URL replacements to parsed WXR data.\n\t */\n\tfunction blueprint_apply_wxr_url_mapping($value, array $url_mapping) {\n\t\tif (is_string($value)) {\n\t\t\treturn strtr($value, $url_mapping);\n\t\t}\n\t\tif (is_array($value)) {\n\t\t\tforeach ($value as $key => $item) {\n\t\t\t\t$value[$key] = blueprint_apply_wxr_url_mapping($item, $url_mapping);\n\t\t\t}\n\t\t}\n\t\treturn $value;\n\t}\n\t`,\n\t\tenv: {\n\t\t\tIMPORT_FILE: '/tmp/import.wxr',\n\t\t\tFETCH_ATTACHMENTS: options.fetchAttachments ? 'true' : 'false',\n\t\t\tREWRITE_URLS: options.rewriteUrls ? 'true' : 'false',\n\t\t\tURL_MAPPING: JSON.stringify(options.urlMapping),\n\t\t\tIMPORT_COMMENTS: options.importComments ? 'true' : 'false',\n\t\t\tFALLBACK_AUTHOR_USERNAME: options.fallbackAuthorUsername,\n\t\t\tAUTHORS_MODE: options.authorsMode,\n\t\t\tAUTHORS_MAP: JSON.stringify(options.authorsMap),\n\t\t\tIMPORT_USERS: options.importUsers ? 'true' : 'false',\n\t\t},\n\t});\n}\n","import type { StepHandler } from '.';\nimport { phpVar } from '@php-wasm/util';\n\n/**\n * @inheritDoc importThemeStarterContent\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"importThemeStarterContent\"\n * }\n * </code>\n */\nexport interface ImportThemeStarterContentStep {\n\t/** The step identifier. */\n\tstep: 'importThemeStarterContent';\n\t/**\n\t * The name of the theme to import content from.\n\t */\n\tthemeSlug?: string;\n}\n\n/**\n * Imports a theme Starter Content into WordPress.\n *\n * @param playground Playground client.\n */\nexport const importThemeStarterContent: StepHandler<\n\tImportThemeStarterContentStep\n> = async (playground, { themeSlug = '' }, progress) => {\n\tprogress?.tracker?.setCaption('Importing theme starter content');\n\n\tconst docroot = await playground.documentRoot;\n\tawait playground.run({\n\t\tcode: `<?php\n\n\t\t/**\n\t\t * Ensure that the customizer loads as an admin user.\n\t\t *\n\t\t * For compatibility with themes, this MUST be run prior to theme inclusion, which is why this is a plugins_loaded filter instead\n\t\t * of running _wp_customize_include() manually after load.\n\t\t */\n\t\tfunction importThemeStarterContent_plugins_loaded() {\n\t\t\t// Set as the admin user, this ensures we can customize the site.\n\t\t\twp_set_current_user(\n\t\t\t\tget_users( [ 'role' => 'Administrator' ] )[0]\n\t\t\t);\n\n\t\t\t// Force the site to be fresh, although it should already be.\n\t\t\tadd_filter( 'pre_option_fresh_site', '__return_true' );\n\n\t\t\t/*\n\t\t\t * Simulate this request as the customizer loading with the current theme in preview mode.\n\t\t\t *\n\t\t\t * See _wp_customize_include()\n\t\t\t */\n\t\t\t$_REQUEST['wp_customize']    = 'on';\n\t\t\t$_REQUEST['customize_theme'] = ${phpVar(themeSlug)} ?: get_stylesheet();\n\n\t\t\t/*\n\t\t\t * Claim this is a ajax request saving settings, to avoid the preview filters being applied.\n\t\t\t */\n\t\t\t$_REQUEST['action'] = 'customize_save';\n\t\t\tadd_filter( 'wp_doing_ajax', '__return_true' );\n\n\t\t\t$_GET = $_REQUEST;\n\t\t}\n\t\tplayground_add_filter( 'plugins_loaded', 'importThemeStarterContent_plugins_loaded', 0 );\n\n\t\trequire ${phpVar(docroot)} . '/wp-load.php';\n\n\t\t// Return early if there's no starter content.\n\t\tif ( ! get_theme_starter_content() ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Import the Starter Content.\n\t\t$wp_customize->import_theme_starter_content();\n\n\t\t// Publish the changeset, which publishes the starter content.\n\t\twp_publish_post( $wp_customize->changeset_post_id() );\n\t\t`,\n\t});\n};\n","import type { StepHandler } from '.';\nimport { unzipFile } from '@wp-playground/common';\nimport { logger } from '@php-wasm/logger';\n\n/**\n * @inheritDoc unzip\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"unzip\",\n * \t\t\"zipFile\": {\n * \t\t\t\"resource\": \"vfs\",\n * \t\t\t\"path\": \"/wordpress/data.zip\"\n * \t\t},\n * \t\t\"extractToPath\": \"/wordpress\"\n * }\n * </code>\n */\nexport interface UnzipStep<ResourceType> {\n\tstep: 'unzip';\n\t/** The zip file to extract */\n\tzipFile?: ResourceType;\n\t/**\n\t * The path of the zip file to extract\n\t * @deprecated Use zipFile instead.\n\t */\n\tzipPath?: string;\n\t/** The path to extract the zip file to */\n\textractToPath: string;\n}\n\n/**\n * Unzip a zip file.\n *\n * @param playground Playground client.\n * @param zipPath The zip file to unzip.\n * @param extractTo The directory to extract the zip file to.\n */\nexport const unzip: StepHandler<UnzipStep<File>> = async (\n\tplayground,\n\t{ zipFile, zipPath, extractToPath }\n) => {\n\tif (zipPath) {\n\t\t// @TODO: Remove the zipPath option in the next major version\n\t\tlogger.warn(\n\t\t\t`The \"zipPath\" option of the unzip() Blueprint step is deprecated and will be removed. ` +\n\t\t\t\t`Use \"zipFile\" instead.`\n\t\t);\n\t} else if (!zipFile) {\n\t\tthrow new Error('Either zipPath or zipFile must be provided');\n\t}\n\tawait unzipFile(playground, (zipFile || zipPath)!, extractToPath);\n};\n","/**\n * Used by the export step to exclude the Playground-specific files\n * from the zip file. Keep it in sync with the list of files created\n * by WordPressPatcher.\n */\nexport const wpContentFilesExcludedFromExport = [\n\t'db.php',\n\t'plugins/akismet',\n\t'plugins/hello.php',\n\t'plugins/wordpress-importer',\n\t'mu-plugins/sqlite-database-integration',\n\t'mu-plugins/playground-includes',\n\t'mu-plugins/0-playground.php',\n\t'mu-plugins/0-sqlite.php',\n\n\t/*\n\t * Listing core themes like that here isn't ideal, especially since\n\t * developers may actually want to use one of them.\n\t * @TODO Let's give the user a choice whether or not to include them.\n\t */\n\t'themes/twentytwenty',\n\t'themes/twentytwentyone',\n\t'themes/twentytwentytwo',\n\t'themes/twentytwentythree',\n\t'themes/twentytwentyfour',\n\t'themes/twentytwentyfive',\n\t'themes/twentytwentysix',\n];\n","import type { StepHandler } from '.';\nimport { unzip } from './unzip';\nimport { dirname, joinPaths, phpVar, phpVars } from '@php-wasm/util';\nimport type { UniversalPHP } from '@php-wasm/universal';\nimport { ensureWpConfig } from '@wp-playground/wordpress';\nimport { wpContentFilesExcludedFromExport } from '../utils/wp-content-files-excluded-from-exports';\nimport { defineSiteUrl } from './define-site-url';\n\n/**\n * @inheritDoc importWordPressFiles\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"importWordPressFiles\",\n * \t\t\"wordPressFilesZip\": {\n * \t\t\t\"resource\": \"url\",\n * \t\t\t\"url\": \"https://mysite.com/import.zip\"\n *  \t}\n * }\n * </code>\n */\nexport interface ImportWordPressFilesStep<ResourceType> {\n\tstep: 'importWordPressFiles';\n\t/**\n\t * The zip file containing the top-level WordPress files and\n\t * directories.\n\t */\n\twordPressFilesZip: ResourceType;\n\t/**\n\t * The path inside the zip file where the WordPress files are.\n\t */\n\tpathInZip?: string;\n}\n\n/**\n * Imports top-level WordPress files from a given zip file into\n * the `documentRoot`. For example, if a zip file contains the\n * `wp-content` and `wp-includes` directories, they will replace\n * the corresponding directories in Playground's `documentRoot`.\n *\n * Any files that Playground recognizes as \"excluded from the export\"\n * will carry over from the existing document root into the imported\n * directories. For example, the sqlite-database-integration plugin.\n *\n * @param playground Playground client.\n * @param wordPressFilesZip Zipped WordPress site.\n */\nexport const importWordPressFiles: StepHandler<\n\tImportWordPressFilesStep<File>\n> = async (playground, { wordPressFilesZip, pathInZip = '' }) => {\n\tconst documentRoot = await playground.documentRoot;\n\n\t// Unzip\n\tconst unzipRoot = joinPaths('/tmp', 'import');\n\tawait playground.mkdir(unzipRoot);\n\tawait unzip(playground, {\n\t\tzipFile: wordPressFilesZip,\n\t\textractToPath: unzipRoot,\n\t});\n\tlet importPath = joinPaths(unzipRoot, pathInZip);\n\timportPath =\n\t\t(await findWordPressFilesRoot(playground, importPath)) || importPath;\n\n\t// Read the export manifest if it exists. The manifest contains the\n\t// site URL (including scope) at export time, which we'll use later\n\t// to update URLs in the database when the scope changes.\n\tconst manifestPath = joinPaths(importPath, 'playground-export.json');\n\tlet oldSiteUrl: string | null = null;\n\tif (await playground.fileExists(manifestPath)) {\n\t\ttry {\n\t\t\tconst manifestContent =\n\t\t\t\tawait playground.readFileAsText(manifestPath);\n\t\t\tconst manifest = JSON.parse(manifestContent);\n\t\t\toldSiteUrl = manifest.siteUrl;\n\t\t\t// Remove the manifest file - it's not needed in the document root\n\t\t\tawait playground.unlink(manifestPath);\n\t\t} catch {\n\t\t\t// Ignore error – tolerate missing and malformed manifests.\n\t\t}\n\t}\n\n\t// Carry over any Playground-related files, such as the\n\t// SQLite database plugin, from the current wp-content\n\t// into the one that's about to be imported\n\tconst importedWpContentPath = joinPaths(importPath, 'wp-content');\n\tconst wpContentPath = joinPaths(documentRoot, 'wp-content');\n\tfor (const relativePath of wpContentFilesExcludedFromExport) {\n\t\t// Remove any paths that were supposed to be excluded from the export\n\t\t// but maybe weren't\n\t\tconst excludedImportPath = joinPaths(\n\t\t\timportedWpContentPath,\n\t\t\trelativePath\n\t\t);\n\t\tawait removePath(playground, excludedImportPath);\n\n\t\t// Replace them with files sourced from the live wp-content directory\n\t\tconst restoreFromPath = joinPaths(wpContentPath, relativePath);\n\t\tif (await playground.fileExists(restoreFromPath)) {\n\t\t\tawait playground.mkdir(dirname(excludedImportPath));\n\t\t\tawait playground.mv(restoreFromPath, excludedImportPath);\n\t\t}\n\t}\n\n\t// Carry over the database directory if the imported zip file doesn't\n\t// already contain one.\n\tconst importedDatabasePath = joinPaths(\n\t\timportPath,\n\t\t'wp-content',\n\t\t'database'\n\t);\n\tif (!(await playground.fileExists(importedDatabasePath))) {\n\t\tawait playground.mv(\n\t\t\tjoinPaths(documentRoot, 'wp-content', 'database'),\n\t\t\timportedDatabasePath\n\t\t);\n\t}\n\n\t// Move all the paths from the imported directory into the document root.\n\t// Overwrite, if needed.\n\tconst importedFilenames = await playground.listFiles(importPath);\n\tfor (const fileName of importedFilenames) {\n\t\tawait removePath(playground, joinPaths(documentRoot, fileName));\n\t\tawait playground.mv(\n\t\t\tjoinPaths(importPath, fileName),\n\t\t\tjoinPaths(documentRoot, fileName)\n\t\t);\n\t}\n\n\t// Remove the directory where we unzipped the imported zip file.\n\tawait playground.rmdir(unzipRoot, {\n\t\trecursive: true,\n\t});\n\n\t// Ensure required constants are defined if wp-config.php doesn't define them.\n\tawait ensureWpConfig(playground, documentRoot);\n\n\tconst newSiteUrl = await playground.absoluteUrl;\n\n\t// If the manifest didn't provide the old site URL, try to infer it from\n\t// the database. The siteurl option still contains the URL from the export\n\t// at this point, before we update it with defineSiteUrl.\n\tif (!oldSiteUrl) {\n\t\toldSiteUrl = await inferSiteUrlFromDatabase(playground, documentRoot);\n\t}\n\n\t// Adjust the site URL\n\tawait defineSiteUrl(playground, {\n\t\tsiteUrl: newSiteUrl,\n\t});\n\n\t// Upgrade the database\n\tconst upgradePhp = phpVar(\n\t\tjoinPaths(documentRoot, 'wp-admin', 'upgrade.php')\n\t);\n\tawait playground.run({\n\t\tcode: `<?php\n            $_GET['step'] = 'upgrade_db';\n            require ${upgradePhp};\n            `,\n\t});\n\n\t// If the site URL changed (different scope), update all URLs in the database.\n\t// This ensures that image and media URLs that reference the old scope\n\t// are updated to use the new scope.\n\tif (oldSiteUrl && oldSiteUrl !== newSiteUrl) {\n\t\tawait replaceSiteUrl(playground, documentRoot, oldSiteUrl, newSiteUrl);\n\t}\n};\n\n/**\n * Extracts the scope path segment from a Playground URL.\n * For example, \"http://playground.wordpress.net/scope:abc123/\" returns \"/scope:abc123/\".\n * Returns null if no scope is found.\n */\nfunction extractScopePath(url: string): string | null {\n\tconst match = url.match(/\\/scope:[^/]+\\/?/);\n\treturn match ? match[0].replace(/\\/?$/, '/') : null;\n}\n\n/**\n * Replaces the scope path segment in URLs stored in the database.\n * Only replaces /scope:old-scope/ with /scope:new-scope/, leaving the rest\n * of URLs intact. This is a targeted replacement that handles scope changes\n * when importing a Playground export into a different scope.\n *\n * This approach is reasonably safe because:\n * - The scope string is fairly unique (/scope:xyz/ pattern)\n * - The database fits into memory anyway\n * - There's no expectation of HTML entities or other escaping within the scope string\n */\nasync function replaceSiteUrl(\n\tplayground: UniversalPHP,\n\tdocumentRoot: string,\n\toldSiteUrl: string,\n\tnewSiteUrl: string\n) {\n\tconst oldScopePath = extractScopePath(oldSiteUrl);\n\tconst newScopePath = extractScopePath(newSiteUrl);\n\n\t// If we can't extract scope paths, there's nothing to replace\n\tif (!oldScopePath || !newScopePath) {\n\t\treturn;\n\t}\n\n\t// If the scopes are the same, no replacement needed\n\tif (oldScopePath === newScopePath) {\n\t\treturn;\n\t}\n\n\tawait playground.run({\n\t\tcode: `<?php\n\t\trequire_once getenv('DOCUMENT_ROOT') . '/wp-load.php';\n\t\tglobal $wpdb;\n\n\t\t$old_scope = getenv('OLD_SCOPE');\n\t\t$new_scope = getenv('NEW_SCOPE');\n\n\t\t// Update URLs in posts content, excerpts, and GUIDs\n\t\t$wpdb->query($wpdb->prepare(\n\t\t\t\"UPDATE {$wpdb->posts} SET post_content = REPLACE(post_content, %s, %s)\",\n\t\t\t$old_scope, $new_scope\n\t\t));\n\t\t$wpdb->query($wpdb->prepare(\n\t\t\t\"UPDATE {$wpdb->posts} SET post_excerpt = REPLACE(post_excerpt, %s, %s)\",\n\t\t\t$old_scope, $new_scope\n\t\t));\n\t\t$wpdb->query($wpdb->prepare(\n\t\t\t\"UPDATE {$wpdb->posts} SET guid = REPLACE(guid, %s, %s)\",\n\t\t\t$old_scope, $new_scope\n\t\t));\n\n\t\t// Update URLs in post meta\n\t\t$wpdb->query($wpdb->prepare(\n\t\t\t\"UPDATE {$wpdb->postmeta} SET meta_value = REPLACE(meta_value, %s, %s) WHERE meta_value LIKE %s\",\n\t\t\t$old_scope, $new_scope, '%' . $wpdb->esc_like($old_scope) . '%'\n\t\t));\n\n\t\t// Update URLs in options (handles both regular and serialized data)\n\t\t$wpdb->query($wpdb->prepare(\n\t\t\t\"UPDATE {$wpdb->options} SET option_value = REPLACE(option_value, %s, %s) WHERE option_value LIKE %s\",\n\t\t\t$old_scope, $new_scope, '%' . $wpdb->esc_like($old_scope) . '%'\n\t\t));\n\n\t\t// Update URLs in user meta\n\t\t$wpdb->query($wpdb->prepare(\n\t\t\t\"UPDATE {$wpdb->usermeta} SET meta_value = REPLACE(meta_value, %s, %s) WHERE meta_value LIKE %s\",\n\t\t\t$old_scope, $new_scope, '%' . $wpdb->esc_like($old_scope) . '%'\n\t\t));\n\n\t\t// Update URLs in term meta\n\t\t$wpdb->query($wpdb->prepare(\n\t\t\t\"UPDATE {$wpdb->termmeta} SET meta_value = REPLACE(meta_value, %s, %s) WHERE meta_value LIKE %s\",\n\t\t\t$old_scope, $new_scope, '%' . $wpdb->esc_like($old_scope) . '%'\n\t\t));\n\n\t\t// Update URLs in comments\n\t\t$wpdb->query($wpdb->prepare(\n\t\t\t\"UPDATE {$wpdb->comments} SET comment_content = REPLACE(comment_content, %s, %s) WHERE comment_content LIKE %s\",\n\t\t\t$old_scope, $new_scope, '%' . $wpdb->esc_like($old_scope) . '%'\n\t\t));\n\t\t$wpdb->query($wpdb->prepare(\n\t\t\t\"UPDATE {$wpdb->comments} SET comment_author_url = REPLACE(comment_author_url, %s, %s) WHERE comment_author_url LIKE %s\",\n\t\t\t$old_scope, $new_scope, '%' . $wpdb->esc_like($old_scope) . '%'\n\t\t));\n\t\t`,\n\t\tenv: {\n\t\t\tDOCUMENT_ROOT: documentRoot,\n\t\t\tOLD_SCOPE: oldScopePath,\n\t\t\tNEW_SCOPE: newScopePath,\n\t\t},\n\t});\n}\n\n/**\n * Attempts to infer the old site URL from the WordPress database.\n * This is used when importing legacy exports that don't have a manifest file.\n * We query the siteurl option directly from the database using raw SQL because\n * get_option('siteurl') would return the WP_SITEURL constant value instead of\n * what's stored in the database.\n */\nasync function inferSiteUrlFromDatabase(\n\tplayground: UniversalPHP,\n\tdocumentRoot: string\n): Promise<string | null> {\n\tconst js = phpVars({ documentRoot });\n\tconst result = await playground.run({\n\t\tcode: `<?php\n\t\trequire_once ${js.documentRoot} . '/wp-load.php';\n\t\tglobal $wpdb;\n\t\t$row = $wpdb->get_row(\"SELECT option_value FROM {$wpdb->options} WHERE option_name = 'siteurl'\");\n\t\techo $row ? $row->option_value : '';\n\t\t`,\n\t});\n\tconst siteUrl = result.text.trim();\n\treturn siteUrl || null;\n}\n\nconst WORDPRESS_ROOT_MARKERS = [\n\t'wp-content',\n\t'wp-admin',\n\t'wp-includes',\n\t'wp-config.php',\n\t'wp-config-sample.php',\n];\n\n/**\n * Finds the directory containing the WordPress files in an extracted archive.\n *\n * Some ZIP tools wrap the selected files in a single parent directory. Without\n * unwrapping that directory, importWordPressFiles() reports success but moves\n * the wrapper into WordPress, leaving the live wp-content unchanged.\n *\n * Only one wrapper directory is supported, and only when it is the only entry\n * at the requested import path. Deeper layouts are ambiguous, so they are left\n * unchanged instead of guessing.\n *\n * wp-content is not required here. importWordPressFiles() can also replace\n * other top-level WordPress files such as wp-admin, wp-includes, or\n * wp-config.php.\n */\nasync function findWordPressFilesRoot(\n\tplayground: UniversalPHP,\n\timportPath: string\n): Promise<string | null> {\n\tif (await hasWordPressRootMarker(playground, importPath)) {\n\t\treturn importPath;\n\t}\n\n\tconst fileNames = await playground.listFiles(importPath);\n\tif (fileNames.length !== 1) {\n\t\treturn null;\n\t}\n\n\tconst nestedPath = joinPaths(importPath, fileNames[0]);\n\tif (!(await playground.isDir(nestedPath))) {\n\t\treturn null;\n\t}\n\n\tif (await hasWordPressRootMarker(playground, nestedPath)) {\n\t\treturn nestedPath;\n\t}\n\n\treturn null;\n}\n\nasync function hasWordPressRootMarker(\n\tplayground: UniversalPHP,\n\tpath: string\n): Promise<boolean> {\n\tfor (const marker of WORDPRESS_ROOT_MARKERS) {\n\t\tif (await playground.fileExists(joinPaths(path, marker))) {\n\t\t\treturn true;\n\t\t}\n\t}\n\treturn false;\n}\n\nasync function removePath(playground: UniversalPHP, path: string) {\n\tif (await playground.fileExists(path)) {\n\t\tif (await playground.isDir(path)) {\n\t\t\tawait playground.rmdir(path);\n\t\t} else {\n\t\t\tawait playground.unlink(path);\n\t\t}\n\t}\n}\n","import type { UniversalPHP } from '@php-wasm/universal';\n\n/**\n * Exports the WordPress database as a WXR file using\n * the core WordPress export tool.\n *\n * @param playground Playground client\n * @returns WXR file\n */\nexport async function exportWXR(playground: UniversalPHP) {\n\tconst databaseExportResponse = await playground.request({\n\t\turl: '/wp-admin/export.php?download=true&content=all',\n\t});\n\treturn new File([databaseExportResponse.bytes], 'export.xml');\n}\n","import type { UniversalPHP } from '@php-wasm/universal';\nimport { joinPaths, randomFilename } from '@php-wasm/util';\nimport { unzip } from './unzip';\n\nexport interface InstallAssetOptions {\n\t/**\n\t * The zip file to install.\n\t */\n\tzipFile: File;\n\t/**\n\t * Target path to extract the main folder.\n\t * @example\n\t *\n\t * <code>\n\t * const targetPath = `${await playground.documentRoot}/wp-content/plugins`;\n\t * </code>\n\t */\n\ttargetPath: string;\n\t/**\n\t * Target folder name to install the asset into.\n\t */\n\ttargetFolderName?: string;\n\t/**\n\t * What to do if the asset already exists.\n\t */\n\tifAlreadyInstalled?: 'overwrite' | 'skip' | 'error';\n}\n\n/**\n * Install asset: Extract folder from zip file and move it to target\n */\nexport async function installAsset(\n\tplayground: UniversalPHP,\n\t{\n\t\ttargetPath,\n\t\tzipFile,\n\t\tifAlreadyInstalled = 'overwrite',\n\t\ttargetFolderName = '',\n\t}: InstallAssetOptions\n): Promise<{\n\tassetFolderPath: string;\n\tassetFolderName: string;\n}> {\n\t// Extract to temporary folder so we can find asset folder name\n\tconst zipFileName = zipFile.name;\n\tconst assetNameGuess = zipFileName.replace(/\\.zip$/, '');\n\n\tconst wpContent = joinPaths(await playground.documentRoot, 'wp-content');\n\tconst tmpDir = joinPaths(wpContent, randomFilename());\n\tconst tmpUnzippedFilesPath = joinPaths(tmpDir, 'assets', assetNameGuess);\n\n\tif (await playground.fileExists(tmpUnzippedFilesPath)) {\n\t\tawait playground.rmdir(tmpDir, {\n\t\t\trecursive: true,\n\t\t});\n\t}\n\tawait playground.mkdir(tmpDir);\n\n\ttry {\n\t\tawait unzip(playground, {\n\t\t\tzipFile,\n\t\t\textractToPath: tmpUnzippedFilesPath,\n\t\t});\n\n\t\t// Find the path asset folder name\n\t\tlet files = await playground.listFiles(tmpUnzippedFilesPath, {\n\t\t\tprependPath: true,\n\t\t});\n\t\t// _unzip_file_ziparchive in WordPress skips the __MACOSX files, and so\n\t\t// should we here.\n\t\tfiles = files.filter((name) => !name.endsWith('/__MACOSX'));\n\n\t\t/**\n\t\t * If the zip only contains a single entry that is directory,\n\t\t * we assume that's the asset folder. Otherwise, the zip\n\t\t * probably contains the plugin files without an intermediate folder.\n\t\t */\n\t\tconst zipHasRootFolder =\n\t\t\tfiles.length === 1 && (await playground.isDir(files[0]));\n\t\tlet assetFolderName;\n\t\tlet tmpAssetPath = '';\n\t\tif (zipHasRootFolder) {\n\t\t\ttmpAssetPath = files[0];\n\t\t\tassetFolderName = files[0].split('/').pop()!;\n\t\t} else {\n\t\t\ttmpAssetPath = tmpUnzippedFilesPath;\n\t\t\tassetFolderName = assetNameGuess;\n\t\t}\n\n\t\t// If a specific slug was requested be used, use that.\n\t\tif (targetFolderName && targetFolderName.length) {\n\t\t\tassetFolderName = targetFolderName;\n\t\t}\n\n\t\t// Move asset folder to target path\n\t\tconst assetFolderPath = `${targetPath}/${assetFolderName}`;\n\n\t\t// Handle the scenario when the asset is already installed.\n\t\tif (await playground.fileExists(assetFolderPath)) {\n\t\t\tif (!(await playground.isDir(assetFolderPath))) {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Cannot install asset ${assetFolderName} to ${assetFolderPath} because a file with the same name already exists. Note it's a file, not a directory! Is this by mistake?`\n\t\t\t\t);\n\t\t\t}\n\t\t\tif (ifAlreadyInstalled === 'overwrite') {\n\t\t\t\tawait playground.rmdir(assetFolderPath, {\n\t\t\t\t\trecursive: true,\n\t\t\t\t});\n\t\t\t} else if (ifAlreadyInstalled === 'skip') {\n\t\t\t\treturn {\n\t\t\t\t\tassetFolderPath,\n\t\t\t\t\tassetFolderName,\n\t\t\t\t};\n\t\t\t} else {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Cannot install asset ${assetFolderName} to ${targetPath} because it already exists and ` +\n\t\t\t\t\t\t`the ifAlreadyInstalled option was set to ${ifAlreadyInstalled}`\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t\tawait playground.mv(tmpAssetPath, assetFolderPath);\n\n\t\treturn {\n\t\t\tassetFolderPath,\n\t\t\tassetFolderName,\n\t\t};\n\t} finally {\n\t\tawait playground.rmdir(tmpDir, {\n\t\t\trecursive: true,\n\t\t});\n\t}\n}\n","import type { StepHandler } from '.';\nimport type { InstallAssetOptions } from './install-asset';\nimport { installAsset } from './install-asset';\nimport { activatePlugin } from './activate-plugin';\nimport { writeFile } from './write-file';\nimport { zipNameToHumanName } from '../utils/zip-name-to-human-name';\nimport type { Directory } from '../v1/resources';\nimport { joinPaths } from '@php-wasm/util';\nimport { writeFiles, type UniversalPHP } from '@php-wasm/universal';\nimport { logger } from '@php-wasm/logger';\n\nconst ACTIVATION_OPTIONS_PAYLOAD_PREFIX = 'PLAYGROUND_ACTIVATION_OPTIONS:';\n\n/**\n * @inheritDoc installPlugin\n * @hasRunnableExample\n * @needsLogin\n * @landingPage /wp-admin/plugins.php\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"installPlugin\",\n * \t\t\"pluginData\": {\n * \t\t\t\"resource\": \"wordpress.org/plugins\",\n * \t\t\t\"slug\": \"gutenberg\"\n * \t\t},\n * \t\t\"options\": {\n * \t\t\t\"activate\": true\n * \t\t}\n * }\n * </code>\n *\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"installPlugin\",\n * \t\t\"pluginData\": {\n * \t\t\t\"resource\": \"git:directory\",\n * \t\t\t\"url\": \"https://github.com/wordpress/wordpress-playground.git\",\n * \t\t\t\t\"ref\": \"HEAD\",\n * \t\t\t\t\"path\": \"wp-content/plugins/hello-dolly\"\n * \t\t},\n * \t\t\"options\": {\n * \t\t\t\"activate\": true\n * \t\t}\n * }\n * </code>\n */\nexport interface InstallPluginStep<\n\tFileResource,\n\tDirectoryResource,\n> extends Pick<InstallAssetOptions, 'ifAlreadyInstalled'> {\n\t/**\n\t * The step identifier.\n\t */\n\tstep: 'installPlugin';\n\t/**\n\t * The plugin files to install. It can be a plugin zip file, a single PHP\n\t * file, or a directory containing all the plugin files at its root.\n\t */\n\tpluginData: FileResource | DirectoryResource;\n\n\t/**\n\t * @deprecated. Use 'pluginData' instead.\n\t */\n\tpluginZipFile?: FileResource;\n\n\t/**\n\t * Optional installation options.\n\t */\n\toptions?: InstallPluginOptions;\n}\n\nexport interface InstallPluginOptions {\n\t/**\n\t * Whether to activate the plugin after installing it.\n\t */\n\tactivate?: boolean;\n\t/**\n\t * Parameters to expose to the plugin during its activation hook.\n\t */\n\tactivationOptions?: Record<string, unknown>;\n\t/**\n\t * Whether installation/activation failures should abort the Blueprint.\n\t */\n\tonError?: 'skip-plugin' | 'throw';\n\t/**\n\t * The name of the folder to install the plugin to. Defaults to guessing from pluginData\n\t */\n\ttargetFolderName?: string;\n\t/**\n\t * Human-readable plugin name for progress captions and skip warnings.\n\t */\n\thumanReadableName?: string;\n}\n\n/**\n * Installs a WordPress plugin in the Playground.\n *\n * @param playground The playground client.\n * @param pluginData The plugin zip file.\n * @param options Optional. Set `activate` to false if you don't want to activate the plugin.\n */\nexport const installPlugin: StepHandler<\n\tInstallPluginStep<File, Directory>\n> = async (\n\tplayground,\n\t{ pluginData, pluginZipFile, ifAlreadyInstalled, options = {} },\n\tprogress?\n) => {\n\tif (pluginZipFile) {\n\t\tpluginData = pluginZipFile;\n\t\tlogger.warn(\n\t\t\t'The \"pluginZipFile\" option is deprecated. Use \"pluginData\" instead.'\n\t\t);\n\t}\n\n\tlet assetPath = '';\n\tlet assetNiceName = '';\n\tconst progressName = () => options.humanReadableName || assetNiceName;\n\n\tconst looksLikeZipFile = async (file: File): Promise<boolean> => {\n\t\tif (file.name.toLowerCase().endsWith('.zip')) {\n\t\t\treturn true;\n\t\t}\n\n\t\tconst filePrefix = new Uint8Array(await file.arrayBuffer(), 0, 4);\n\t\t// Check against the signature for non-empty, non-spanned zip files.\n\t\tconst matchesZipSignature =\n\t\t\tfilePrefix[0] === 0x50 &&\n\t\t\tfilePrefix[1] === 0x4b &&\n\t\t\tfilePrefix[2] === 0x03 &&\n\t\t\tfilePrefix[3] === 0x04;\n\t\treturn matchesZipSignature;\n\t};\n\n\ttry {\n\t\tconst pluginsDirectoryPath = joinPaths(\n\t\t\tawait playground.documentRoot,\n\t\t\t'wp-content',\n\t\t\t'plugins'\n\t\t);\n\t\tconst targetFolderName =\n\t\t\t'targetFolderName' in options ? options.targetFolderName : '';\n\n\t\tif (pluginData instanceof File) {\n\t\t\tif (await looksLikeZipFile(pluginData)) {\n\t\t\t\t// Assume any other file is a zip file\n\t\t\t\t// @TODO: Consider validating whether this is a zip file?\n\t\t\t\tconst zipFileName =\n\t\t\t\t\tpluginData.name.split('/').pop() || 'plugin.zip';\n\t\t\t\tassetNiceName = zipNameToHumanName(zipFileName);\n\n\t\t\t\tprogress?.tracker.setCaption(\n\t\t\t\t\t`Installing the ${progressName()} plugin`\n\t\t\t\t);\n\t\t\t\tconst assetResult = await installAsset(playground, {\n\t\t\t\t\tifAlreadyInstalled,\n\t\t\t\t\tzipFile: pluginData,\n\t\t\t\t\ttargetPath: `${await playground.documentRoot}/wp-content/plugins`,\n\t\t\t\t\ttargetFolderName: targetFolderName,\n\t\t\t\t});\n\t\t\t\tassetPath = assetResult.assetFolderPath;\n\t\t\t\tassetNiceName = assetResult.assetFolderName;\n\t\t\t} else if (pluginData.name.endsWith('.php')) {\n\t\t\t\tconst destinationFilePath = joinPaths(\n\t\t\t\t\tpluginsDirectoryPath,\n\t\t\t\t\tpluginData.name\n\t\t\t\t);\n\t\t\t\tawait writeFile(playground, {\n\t\t\t\t\tpath: destinationFilePath,\n\t\t\t\t\tdata: pluginData,\n\t\t\t\t});\n\t\t\t\tassetPath = destinationFilePath;\n\t\t\t\tassetNiceName = pluginData.name;\n\t\t\t} else {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t'pluginData looks like a file ' +\n\t\t\t\t\t\t'but does not look like a .zip or .php file.'\n\t\t\t\t);\n\t\t\t}\n\t\t} else if (pluginData) {\n\t\t\tassetNiceName = pluginData.name;\n\t\t\tprogress?.tracker.setCaption(\n\t\t\t\t`Installing the ${progressName()} plugin`\n\t\t\t);\n\n\t\t\tconst pluginDirectoryPath = joinPaths(\n\t\t\t\tpluginsDirectoryPath,\n\t\t\t\ttargetFolderName || pluginData.name\n\t\t\t);\n\t\t\tawait writeFiles(\n\t\t\t\tplayground,\n\t\t\t\tpluginDirectoryPath,\n\t\t\t\tpluginData.files,\n\t\t\t\t{\n\t\t\t\t\trmRoot: true,\n\t\t\t\t}\n\t\t\t);\n\t\t\tassetPath = pluginDirectoryPath;\n\t\t}\n\n\t\t// Activate\n\t\tconst activate = 'activate' in options ? options.activate : true;\n\n\t\tif (activate) {\n\t\t\tlet activationOptionName: string | undefined;\n\t\t\tif (options.activationOptions !== undefined) {\n\t\t\t\tactivationOptionName = await setPluginActivationOptions(\n\t\t\t\t\tplayground,\n\t\t\t\t\tassetPath,\n\t\t\t\t\toptions.activationOptions\n\t\t\t\t);\n\t\t\t}\n\t\t\ttry {\n\t\t\t\tawait activatePlugin(\n\t\t\t\t\tplayground,\n\t\t\t\t\t{\n\t\t\t\t\t\tpluginPath: assetPath,\n\t\t\t\t\t\tpluginName: progressName(),\n\t\t\t\t\t},\n\t\t\t\t\tprogress\n\t\t\t\t);\n\t\t\t} finally {\n\t\t\t\tif (activationOptionName) {\n\t\t\t\t\tawait deletePluginActivationOptions(\n\t\t\t\t\t\tplayground,\n\t\t\t\t\t\tactivationOptionName\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t} catch (error) {\n\t\tif (options.onError === 'skip-plugin') {\n\t\t\tconst skippedPluginName = progressName() || 'unknown plugin';\n\t\t\tlogger.warn(\n\t\t\t\t`Skipping plugin installation for ${skippedPluginName} after failure: ${\n\t\t\t\t\terror instanceof Error ? error.message : String(error)\n\t\t\t\t}`\n\t\t\t);\n\t\t\treturn;\n\t\t}\n\t\tthrow error;\n\t}\n};\n\n/**\n * Stages activation options for a plugin before its activation hook runs.\n *\n * Blueprint v2 defines these as values exposed through the\n * `blueprint_activation_` + `plugin_basename(__FILE__)` option during\n * activation. A runtime-only global/env value would be cleaner, but activation\n * currently happens behind `activatePlugin()`, across a separate PHP request\n * boundary from this staging call. The temporary option survives that boundary\n * and is deleted in `finally` after activation.\n */\nasync function setPluginActivationOptions(\n\tplayground: UniversalPHP,\n\tpluginPath: string,\n\tactivationOptions: Record<string, unknown>\n) {\n\tconst docroot = await playground.documentRoot;\n\tconst result = await playground.run({\n\t\tcode: `<?php\nob_start();\ndefine('WP_ADMIN', true);\nrequire_once getenv('DOCROOT') . \"/wp-load.php\";\nrequire_once getenv('DOCROOT') . \"/wp-admin/includes/plugin.php\";\n\n$payload_prefix = getenv('ACTIVATION_OPTIONS_PAYLOAD_PREFIX');\n$plugin_path = getenv('PLUGIN_PATH');\n$plugin_file = '';\nif (is_dir($plugin_path)) {\n\tforeach ((glob(rtrim($plugin_path, '/') . '/*.php') ?: array()) as $file) {\n\t\t$info = get_plugin_data($file, false, false);\n\t\tif (!empty($info['Name'])) {\n\t\t\t$plugin_file = $file;\n\t\t\tbreak;\n\t\t}\n\t}\n} else {\n\t$plugin_dir = rtrim(WP_PLUGIN_DIR, '/');\n\t$plugin_file = $plugin_path;\n\tif (strpos($plugin_file, $plugin_dir . '/') !== 0 && file_exists($plugin_dir . '/' . $plugin_file)) {\n\t\t$plugin_file = $plugin_dir . '/' . $plugin_file;\n\t}\n}\n\nif (!$plugin_file || !file_exists($plugin_file)) {\n\tob_end_clean();\n\t// Prefix the JSON payload so JS can find it even if plugin bootstrap\n\t// code prints notices or other output during this request.\n\techo $payload_prefix . json_encode(array('error' => 'Could not find plugin file for activation options.'));\n\texit;\n}\n\n$options_json = getenv('ACTIVATION_OPTIONS_JSON');\n$options = json_decode($options_json ?: '', true);\nif (!is_array($options)) {\n\tob_end_clean();\n\t// Prefix the JSON payload so JS can find it even if plugin bootstrap\n\t// code prints notices or other output during this request.\n\techo $payload_prefix . json_encode(array('error' => 'Could not decode plugin activation options.'));\n\texit;\n}\n$option_name = 'blueprint_activation_' . plugin_basename($plugin_file);\nupdate_option($option_name, $options);\nob_end_clean();\n// Prefix the JSON payload so JS can find it even if plugin bootstrap\n// code prints notices or other output during this request.\necho $payload_prefix . json_encode(array('optionName' => $option_name));\n`,\n\t\tenv: {\n\t\t\tDOCROOT: docroot,\n\t\t\tPLUGIN_PATH: pluginPath,\n\t\t\tACTIVATION_OPTIONS_JSON: JSON.stringify(activationOptions),\n\t\t\tACTIVATION_OPTIONS_PAYLOAD_PREFIX:\n\t\t\t\tACTIVATION_OPTIONS_PAYLOAD_PREFIX,\n\t\t},\n\t});\n\tconst payload = parseActivationOptionsPayload(result.text);\n\tif (payload?.['error']) {\n\t\tthrow new Error(String(payload['error']));\n\t}\n\tif (!payload?.['optionName'] || typeof payload['optionName'] !== 'string') {\n\t\tthrow new Error('Could not determine plugin activation options name.');\n\t}\n\treturn payload['optionName'];\n}\n\nasync function deletePluginActivationOptions(\n\tplayground: UniversalPHP,\n\toptionName: string\n) {\n\tawait playground.run({\n\t\tcode: `<?php\nrequire_once getenv('DOCROOT') . \"/wp-load.php\";\ndelete_option(getenv('OPTION_NAME'));\n`,\n\t\tenv: {\n\t\t\tDOCROOT: await playground.documentRoot,\n\t\t\tOPTION_NAME: optionName,\n\t\t},\n\t});\n}\n\n/**\n * Extracts the staging helper's JSON payload from noisy PHP output.\n *\n * `playground.run()` returns everything printed during the request. A plugin\n * file loaded by WordPress may echo warnings, notices, or regular output while\n * the helper is locating the plugin file. The helper therefore prefixes its\n * machine-readable JSON with `ACTIVATION_OPTIONS_PAYLOAD_PREFIX`, and this\n * parser reads only the first line after the last prefix occurrence.\n */\nfunction parseActivationOptionsPayload(text: string | undefined) {\n\tconst output = text || '';\n\n\t// Plugin bootstrap code may write arbitrary output before or after our\n\t// helper runs, so read the last sentinel occurrence instead of assuming\n\t// the response body is only JSON.\n\tconst payloadIndex = output.lastIndexOf(ACTIVATION_OPTIONS_PAYLOAD_PREFIX);\n\tif (payloadIndex === -1) {\n\t\treturn undefined;\n\t}\n\n\t// The helper emits exactly one JSON object after the sentinel. Keep only\n\t// the first line so later plugin output cannot become part of the JSON\n\t// parse.\n\tconst payload = output\n\t\t.slice(payloadIndex + ACTIVATION_OPTIONS_PAYLOAD_PREFIX.length)\n\t\t.trimStart()\n\t\t.split(/\\r?\\n/, 1)[0]\n\t\t.trim();\n\tif (!payload) {\n\t\treturn undefined;\n\t}\n\ttry {\n\t\treturn JSON.parse(payload) as Record<string, unknown>;\n\t} catch {\n\t\tthrow new Error('Could not parse plugin activation options payload.');\n\t}\n}\n","import type { StepHandler } from '.';\nimport type { InstallAssetOptions } from './install-asset';\nimport { installAsset } from './install-asset';\nimport { activateTheme } from './activate-theme';\nimport type { Directory } from '../v1/resources';\nimport { importThemeStarterContent } from './import-theme-starter-content';\nimport { zipNameToHumanName } from '../utils/zip-name-to-human-name';\nimport { writeFiles } from '@php-wasm/universal';\nimport { basename, joinPaths } from '@php-wasm/util';\nimport { logger } from '@php-wasm/logger';\n\n/**\n * @inheritDoc installTheme\n * @hasRunnableExample\n * @needsLogin\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"installTheme\",\n * \t\t\"themeData\": {\n * \t\t\t\"resource\": \"wordpress.org/themes\",\n * \t\t\t\"slug\": \"pendant\"\n * \t\t},\n * \t\t\"options\": {\n * \t\t\t\"activate\": true,\n * \t\t\t\"importStarterContent\": true\n * \t\t}\n * }\n * </code>\n */\nexport interface InstallThemeStep<FileResource, DirectoryResource> extends Pick<\n\tInstallAssetOptions,\n\t'ifAlreadyInstalled'\n> {\n\t/**\n\t * The step identifier.\n\t */\n\tstep: 'installTheme';\n\t/**\n\t * The theme files to install. It can be either a theme zip file, or a\n\t * directory containing all the theme files at its root.\n\t */\n\tthemeData: FileResource | DirectoryResource;\n\t/**\n\t * @deprecated. Use 'themeData' instead.\n\t */\n\tthemeZipFile?: FileResource;\n\t/**\n\t * Optional installation options.\n\t */\n\toptions?: InstallThemeOptions;\n}\n\nexport interface InstallThemeOptions {\n\t/**\n\t * Whether to activate the theme after installing it.\n\t */\n\tactivate?: boolean;\n\t/**\n\t * Whether to import the theme's starter content after installing it.\n\t */\n\timportStarterContent?: boolean;\n\t/**\n\t * Whether installation, activation, or starter-content failures should\n\t * abort the Blueprint.\n\t */\n\tonError?: 'skip-theme' | 'throw';\n\t/**\n\t * The name of the folder to install the theme to. Defaults to guessing from themeData\n\t */\n\ttargetFolderName?: string;\n\t/**\n\t * Human-readable theme name for the progress caption and skip warning.\n\t */\n\thumanReadableName?: string;\n}\n\n/**\n * Installs a WordPress theme in the Playground.\n *\n * @param playground The playground client.\n * @param themeZipFile The theme zip file.\n * @param options Optional. Set `activate` to false if you don't want to activate the theme.\n */\nexport const installTheme: StepHandler<\n\tInstallThemeStep<File, Directory>\n> = async (\n\tplayground,\n\t{ themeData, themeZipFile, ifAlreadyInstalled, options = {} },\n\tprogress\n) => {\n\tif (themeZipFile) {\n\t\tthemeData = themeZipFile;\n\t\tlogger.warn(\n\t\t\t'The \"themeZipFile\" option is deprecated. Use \"themeData\" instead.'\n\t\t);\n\t}\n\n\tconst onError = options.onError ?? 'throw';\n\tlet assetNiceName = '';\n\tconst progressName = () => options.humanReadableName || assetNiceName;\n\ttry {\n\t\tconst targetFolderName =\n\t\t\t'targetFolderName' in options ? options.targetFolderName : '';\n\t\tlet assetFolderName = '';\n\t\tif (themeData instanceof File) {\n\t\t\t// @TODO: Consider validating whether this is a zip file?\n\t\t\tconst zipFileName = themeData.name.split('/').pop() || 'theme.zip';\n\t\t\tassetNiceName = zipNameToHumanName(zipFileName);\n\n\t\t\tprogress?.tracker.setCaption(\n\t\t\t\t`Installing the ${progressName()} theme`\n\t\t\t);\n\t\t\tconst assetResult = await installAsset(playground, {\n\t\t\t\tifAlreadyInstalled,\n\t\t\t\tzipFile: themeData,\n\t\t\t\ttargetPath: `${await playground.documentRoot}/wp-content/themes`,\n\t\t\t\ttargetFolderName: targetFolderName,\n\t\t\t});\n\t\t\tassetFolderName = assetResult.assetFolderName;\n\t\t} else {\n\t\t\tassetNiceName = themeData.name;\n\t\t\tassetFolderName = targetFolderName || assetNiceName;\n\t\t\tif (\n\t\t\t\t!assetFolderName ||\n\t\t\t\tbasename(assetFolderName) !== assetFolderName\n\t\t\t) {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t'Theme folder name must be a single directory name.'\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tprogress?.tracker.setCaption(\n\t\t\t\t`Installing the ${progressName()} theme`\n\t\t\t);\n\t\t\tconst themeDirectoryPath = joinPaths(\n\t\t\t\tawait playground.documentRoot,\n\t\t\t\t'wp-content',\n\t\t\t\t'themes',\n\t\t\t\tassetFolderName\n\t\t\t);\n\t\t\tlet shouldWriteThemeFiles = true;\n\t\t\t/**\n\t\t\t * Directory themes are written directly instead of going through\n\t\t\t * `installAsset()`, so apply the same `ifAlreadyInstalled` rule here.\n\t\t\t */\n\t\t\tif (await playground.fileExists(themeDirectoryPath)) {\n\t\t\t\tif (!(await playground.isDir(themeDirectoryPath))) {\n\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t`Cannot install theme ${assetFolderName} to ${themeDirectoryPath} because a file with the same name already exists. Note it's a file, not a directory! Is this by mistake?`\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\tif ((ifAlreadyInstalled ?? 'overwrite') === 'skip') {\n\t\t\t\t\tshouldWriteThemeFiles = false;\n\t\t\t\t} else if (ifAlreadyInstalled === 'error') {\n\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t`Cannot install theme ${assetFolderName} to ${themeDirectoryPath} because it already exists and ` +\n\t\t\t\t\t\t\t`the ifAlreadyInstalled option was set to ${ifAlreadyInstalled}`\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (shouldWriteThemeFiles) {\n\t\t\t\tawait writeFiles(\n\t\t\t\t\tplayground,\n\t\t\t\t\tthemeDirectoryPath,\n\t\t\t\t\tthemeData.files,\n\t\t\t\t\t{\n\t\t\t\t\t\trmRoot: true,\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\n\t\tconst activate = 'activate' in options ? options.activate : true;\n\t\tif (activate) {\n\t\t\tawait activateTheme(\n\t\t\t\tplayground,\n\t\t\t\t{\n\t\t\t\t\tthemeFolderName: assetFolderName,\n\t\t\t\t},\n\t\t\t\tprogress\n\t\t\t);\n\t\t}\n\n\t\tconst importStarterContent =\n\t\t\t'importStarterContent' in options\n\t\t\t\t? options.importStarterContent\n\t\t\t\t: false;\n\t\tif (importStarterContent) {\n\t\t\tawait importThemeStarterContent(\n\t\t\t\tplayground,\n\t\t\t\t{\n\t\t\t\t\tthemeSlug: assetFolderName,\n\t\t\t\t},\n\t\t\t\tprogress\n\t\t\t);\n\t\t}\n\t} catch (error) {\n\t\tif (onError === 'skip-theme') {\n\t\t\tconst skippedThemeName = progressName() || 'unknown theme';\n\t\t\tlogger.warn(\n\t\t\t\t`Skipping theme installation for ${skippedThemeName} after failure: ${\n\t\t\t\t\terror instanceof Error ? error.message : String(error)\n\t\t\t\t}`\n\t\t\t);\n\t\t\treturn;\n\t\t}\n\t\tthrow error;\n\t}\n};\n","import type { StepHandler } from '.';\n\n/**\n * @inheritDoc login\n * @hasRunnableExample\n * @example\n *\n * <code>\n * {\n *     \"step\": \"login\",\n *     \"username\": \"admin\"\n * }\n * </code>\n */\nexport type LoginStep = {\n\tstep: 'login';\n\t/**\n\t * The user to log in as. Defaults to 'admin'.\n\t */\n\tusername?: string;\n\t/**\n\t * @deprecated The password field is deprecated and will be removed in a future version.\n\t * Only the username field is required for user authentication.\n\t */\n\tpassword?: string;\n};\n\n/**\n * Logs in to Playground.\n * Under the hood, this function sets the `PLAYGROUND_AUTO_LOGIN_AS_USER` constant.\n * The `0-auto-login.php` mu-plugin uses that constant to log in the user on the first load.\n * This step depends on the `@wp-playground/wordpress` package because\n * the plugin is located in and loaded automatically by the `@wp-playground/wordpress` package.\n */\nexport const login: StepHandler<LoginStep> = async (\n\tplayground,\n\t{ username = 'admin' } = {},\n\tprogress\n) => {\n\tprogress?.tracker.setCaption(progress?.initialCaption || 'Logging in');\n\n\t// TODO: Make defineConstant apply to all workers\n\tplayground.defineConstant('PLAYGROUND_AUTO_LOGIN_AS_USER', username);\n};\n","import type { StepHandler } from '.';\n\n/**\n * @inheritDoc resetData\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"resetData\"\n * }\n * </code>\n */\nexport interface ResetDataStep {\n\tstep: 'resetData';\n\t/**\n\t * Content types to remove. When omitted, all posts, pages, custom post\n\t * types, and comments are removed.\n\t */\n\tcontentTypes?: Array<'posts' | 'pages' | 'comments'>;\n}\n\n/**\n * Deletes the selected WordPress content through WordPress APIs so dependent\n * records are removed with it. Empty tables have their sequences reset so\n * later imports receive the identifiers they would on a site without the\n * removed content.\n *\n * @param playground Playground client.\n */\nexport const resetData: StepHandler<ResetDataStep> = async (\n\tplayground,\n\toptions,\n\tprogress?\n) => {\n\tprogress?.tracker?.setCaption('Resetting WordPress data');\n\tconst docroot = await playground.documentRoot;\n\tconst contentTypes = new Set(options.contentTypes ?? []);\n\tconst removeAllPostTypes = options.contentTypes === undefined;\n\tconst postTypes = [\n\t\tcontentTypes.has('posts') ? 'post' : undefined,\n\t\tcontentTypes.has('pages') ? 'page' : undefined,\n\t].filter((postType): postType is string => postType !== undefined);\n\tconst removePosts = removeAllPostTypes || contentTypes.has('posts');\n\tconst removeComments = contentTypes.has('comments');\n\n\tawait playground.run({\n\t\tenv: {\n\t\t\tDOCROOT: docroot,\n\t\t\tPLAYGROUND_RESET_ALL_POST_TYPES: removeAllPostTypes ? '1' : '0',\n\t\t\tPLAYGROUND_RESET_POST_TYPES: JSON.stringify(postTypes),\n\t\t\tPLAYGROUND_RESET_POSTS: removePosts ? '1' : '0',\n\t\t\tPLAYGROUND_RESET_COMMENTS:\n\t\t\t\tremoveAllPostTypes || removeComments ? '1' : '0',\n\t\t},\n\t\tcode: `<?php\n\t\trequire getenv('DOCROOT') . '/wp-load.php';\n\n\t\t$remove_all_post_types = getenv('PLAYGROUND_RESET_ALL_POST_TYPES') === '1';\n\t\t$post_types = json_decode(getenv('PLAYGROUND_RESET_POST_TYPES'), true);\n\t\tif (!is_array($post_types)) {\n\t\t\tthrow new RuntimeException('Invalid post types passed to resetData.');\n\t\t}\n\n\t\tif ($remove_all_post_types) {\n\t\t\t$post_ids = $wpdb->get_col(\n\t\t\t\t\"SELECT ID FROM {$wpdb->posts} ORDER BY ID DESC\"\n\t\t\t);\n\t\t} elseif (count($post_types) > 0) {\n\t\t\t$placeholders = implode(', ', array_fill(0, count($post_types), '%s'));\n\t\t\t$post_ids = $wpdb->get_col($wpdb->prepare(\n\t\t\t\t\"SELECT ID FROM {$wpdb->posts} \" .\n\t\t\t\t\"WHERE post_type IN ($placeholders) ORDER BY ID DESC\",\n\t\t\t\t...$post_types\n\t\t\t));\n\t\t} else {\n\t\t\t$post_ids = [];\n\t\t}\n\n\t\tforeach ($post_ids as $post_id) {\n\t\t\twp_delete_post((int) $post_id, true);\n\t\t}\n\n\t\t// WordPress refreshes this cache before deleting the post row, so removing\n\t\t// the last published post leaves the cache set to true.\n\t\tif (getenv('PLAYGROUND_RESET_POSTS') === '1') {\n\t\t\tdelete_option('wp_calendar_block_has_published_posts');\n\t\t}\n\n\t\t$remove_comments = getenv('PLAYGROUND_RESET_COMMENTS') === '1';\n\t\tif ($remove_comments) {\n\t\t\t$comment_ids = $wpdb->get_col(\n\t\t\t\t\"SELECT comment_ID FROM {$wpdb->comments}\"\n\t\t\t);\n\t\t\tforeach ($comment_ids as $comment_id) {\n\t\t\t\twp_delete_comment((int) $comment_id, true);\n\t\t\t}\n\t\t}\n\n\t\t$reset_sequence_if_empty = static function($table_name) use ($wpdb) {\n\t\t\t$count = $wpdb->get_var(\"SELECT COUNT(*) FROM {$table_name}\");\n\t\t\tif ((int) $count !== 0) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif (isset($GLOBALS['@pdo'])) {\n\t\t\t\t$statement = $GLOBALS['@pdo']->prepare(\n\t\t\t\t\t'DELETE FROM SQLITE_SEQUENCE WHERE NAME = :table_name'\n\t\t\t\t);\n\t\t\t\t$statement->execute([':table_name' => $table_name]);\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t$wpdb->query(\"ALTER TABLE {$table_name} AUTO_INCREMENT = 1\");\n\t\t};\n\n\t\tif ($remove_all_post_types || count($post_types) > 0) {\n\t\t\t$reset_sequence_if_empty($wpdb->posts);\n\t\t\t$reset_sequence_if_empty($wpdb->postmeta);\n\t\t}\n\t\tif ($remove_comments || $remove_all_post_types || count($post_types) > 0) {\n\t\t\t$reset_sequence_if_empty($wpdb->comments);\n\t\t\t$reset_sequence_if_empty($wpdb->commentmeta);\n\t\t}\n\t\t`,\n\t});\n};\n","import type { StepHandler } from '.';\n\n/**\n * @private\n */\nexport interface RunWpInstallationWizardStep {\n\tstep: 'runWpInstallationWizard';\n\toptions: WordPressInstallationOptions;\n}\n\nexport interface WordPressInstallationOptions {\n\tadminUsername?: string;\n\tadminPassword?: string;\n}\n\n/**\n * Installs WordPress\n *\n * @param playground The playground client.\n * @param options Installation options.\n */\nexport const runWpInstallationWizard: StepHandler<\n\tRunWpInstallationWizardStep\n> = async (playground, { options }) => {\n\tawait playground.request({\n\t\turl: '/wp-admin/install.php?step=2',\n\t\tmethod: 'POST',\n\t\tbody: {\n\t\t\tlanguage: 'en',\n\t\t\tprefix: 'wp_',\n\t\t\tweblog_title: 'My WordPress Website',\n\t\t\tuser_name: options.adminPassword || 'admin',\n\t\t\tadmin_password: options.adminPassword || 'password',\n\t\t\t// The installation wizard demands typing the same password twice\n\t\t\tadmin_password2: options.adminPassword || 'password',\n\t\t\tSubmit: 'Install WordPress',\n\t\t\tpw_weak: '1',\n\t\t\tadmin_email: 'admin@localhost.com',\n\t\t},\n\t});\n};\n","import { joinPaths, phpVars } from '@php-wasm/util';\nimport type { UniversalPHP } from '@php-wasm/universal';\nimport { wpContentFilesExcludedFromExport } from '../utils/wp-content-files-excluded-from-exports';\n\ninterface ZipWpContentOptions {\n\t/**\n\t * @private\n\t * A temporary workaround to enable including the WordPress default theme\n\t * in the exported zip file.\n\t */\n\tselfContained?: boolean;\n}\n\n/**\n * Replace the current wp-content directory with one from the provided zip file.\n *\n * @param playground Playground client.\n * @param wpContentZip Zipped WordPress site.\n */\nexport const zipWpContent = async (\n\tplayground: UniversalPHP,\n\t{ selfContained = false }: ZipWpContentOptions = {}\n) => {\n\tconst zipPath = '/tmp/wordpress-playground.zip';\n\tconst manifestPath = '/tmp/playground-export.json';\n\n\tconst documentRoot = await playground.documentRoot;\n\tconst wpContentPath = joinPaths(documentRoot, 'wp-content');\n\n\t// Create a manifest file containing metadata about this export,\n\t// including the site URL (with scope). This will be used during import\n\t// to update URLs in the database when the scope changes.\n\tconst siteUrl = await playground.absoluteUrl;\n\tawait playground.writeFile(\n\t\tmanifestPath,\n\t\tnew TextEncoder().encode(JSON.stringify({ siteUrl }))\n\t);\n\n\tlet exceptPaths = wpContentFilesExcludedFromExport;\n\t/*\n\t * This is a temporary workaround to enable including the WordPress\n\t * default theme and the SQLite plugin in the exported zip file. Let's\n\t * transition from this workaround to iterator-based streams once the\n\t * new API is merged in PR 851.\n\t */\n\tif (selfContained) {\n\t\t// This is a bit backwards, so hang on!\n\t\t// We have a list of paths to exclude.\n\t\t// We then *remove* the default theme and the SQLite plugin from that list.\n\t\t// As a result, we *include* the default theme and the SQLite plugin in the\n\t\t// final zip. It is hacky and will be removed soon.\n\t\texceptPaths = exceptPaths\n\t\t\t.filter((path) => !path.startsWith('themes/twenty'))\n\t\t\t.filter(\n\t\t\t\t(path) => path !== 'mu-plugins/sqlite-database-integration'\n\t\t\t);\n\t}\n\n\tconst additionalPaths: Record<string, string> = {\n\t\t[manifestPath]: 'playground-export.json',\n\t};\n\tif (selfContained) {\n\t\tadditionalPaths[joinPaths(documentRoot, 'wp-config.php')] =\n\t\t\t'wp-config.php';\n\t}\n\n\tconst js = phpVars({\n\t\tzipPath,\n\t\twpContentPath,\n\t\tdocumentRoot,\n\t\texceptPaths: exceptPaths.map((path) =>\n\t\t\tjoinPaths(documentRoot, 'wp-content', path)\n\t\t),\n\t\tadditionalPaths,\n\t});\n\tawait runPhpWithZipFunctions(\n\t\tplayground,\n\t\t`zipDir(${js.wpContentPath}, ${js.zipPath}, array(\n\t\t\t'exclude_paths' => ${js.exceptPaths},\n\t\t\t'zip_root'      => ${js.documentRoot},\n\t\t\t'additional_paths' => ${js.additionalPaths}\n\t\t));`\n\t);\n\n\tconst fileBuffer = await playground.readFileAsBuffer(zipPath);\n\tplayground.unlink(zipPath);\n\tplayground.unlink(manifestPath);\n\n\treturn fileBuffer;\n};\n\nconst zipFunctions = `<?php\n\nfunction zipDir($root, $output, $options = array())\n{\n    $root = rtrim($root, '/');\n    $additionalPaths = array_key_exists('additional_paths', $options) ? $options['additional_paths'] : array();\n    $excludePaths = array_key_exists('exclude_paths', $options) ? $options['exclude_paths'] : array();\n    $zip_root = array_key_exists('zip_root', $options) ? $options['zip_root'] : $root;\n\n    $zip = new ZipArchive;\n    $res = $zip->open($output, ZipArchive::CREATE);\n    if ($res === TRUE) {\n        $directories = array(\n            $root . '/'\n        );\n        while (sizeof($directories)) {\n            $current_dir = array_pop($directories);\n\n            if ($handle = opendir($current_dir)) {\n                while (false !== ($entry = readdir($handle))) {\n                    if ($entry == '.' || $entry == '..') {\n                        continue;\n                    }\n\n                    $entry = join_paths($current_dir, $entry);\n                    if (in_array($entry, $excludePaths)) {\n                        continue;\n                    }\n\n                    if (is_dir($entry)) {\n                        $directory_path = $entry . '/';\n                        array_push($directories, $directory_path);\n                    } else if (is_file($entry)) {\n                        // ensure compliance with zip spec by only using relative paths for files\n                        $zip->addFile($entry, ltrim(substr($entry, strlen($zip_root)), '/'));\n                    }\n                }\n                closedir($handle);\n            }\n        }\n        foreach ($additionalPaths as $disk_path => $zip_path) {\n            $zip->addFile($disk_path, $zip_path);\n        }\n        $zip->close();\n        chmod($output, 0777);\n    }\n}\n\nfunction join_paths()\n{\n    $paths = array();\n\n    foreach (func_get_args() as $arg) {\n        if ($arg !== '') {\n            $paths[] = $arg;\n        }\n    }\n\n    return preg_replace('#/+#', '/', join('/', $paths));\n}\n`;\n\nasync function runPhpWithZipFunctions(playground: UniversalPHP, code: string) {\n\treturn await playground.run({\n\t\tcode: zipFunctions + code,\n\t});\n}\n","import type { StepHandler } from '.';\nimport { unzipFile } from '@wp-playground/common';\nimport { logger } from '@php-wasm/logger';\nimport { phpVar, Semaphore } from '@php-wasm/util';\n/**\n * @inheritDoc setSiteLanguage\n * @hasRunnableExample\n * @example\n *\n * <code>\n * {\n * \t\t\"step\": \"setSiteLanguage\",\n * \t\t\"language\": \"en_US\"\n * }\n * </code>\n */\nexport interface SetSiteLanguageStep {\n\tstep: 'setSiteLanguage';\n\t/** The language to set, e.g. 'en_US' */\n\tlanguage: string;\n}\n\n/**\n * Get the translation package URL for a given WordPress version and language.\n * The translation package URL is fetched from the WordPress.org API based on\n * the provided WordPress version.\n *\n * If the translation package is not found, an error is thrown.\n */\nexport const getWordPressTranslationUrl = async (\n\twpVersion: string,\n\tlanguage: string\n): Promise<string> => {\n\tconst languageTranslations = await fetch(\n\t\t`https://api.wordpress.org/translations/core/1.0/?version=${wpVersion}`\n\t);\n\tconst languageTranslationsJson = await languageTranslations.json();\n\tconst languageTranslation = languageTranslationsJson.translations.find(\n\t\t(translation: any) =>\n\t\t\ttranslation.language.toLowerCase() === language.toLowerCase()\n\t);\n\n\tif (!languageTranslation) {\n\t\tthrow new Error(\n\t\t\t`Failed to get ${language} translation package for WordPress ${wpVersion}.`\n\t\t);\n\t}\n\n\treturn languageTranslation.package;\n};\n\n/**\n * Sets the site language and download translations.\n */\nexport const setSiteLanguage: StepHandler<SetSiteLanguageStep> = async (\n\tplayground,\n\t{ language },\n\tprogress\n) => {\n\tprogress?.tracker.setCaption(progress?.initialCaption || 'Translating');\n\n\tconst docroot = await playground.documentRoot;\n\n\tawait playground.defineConstant('WPLANG', language);\n\tawait playground.run({\n\t\tcode: `<?php\n\t\trequire_once ${phpVar(docroot)} . '/wp-load.php';\n\t\tupdate_option('WPLANG', ${phpVar(language)});\n\t\t`,\n\t});\n\n\tconst wpVersion = (\n\t\tawait playground.run({\n\t\t\tcode: `<?php\n\t\t\trequire '${docroot}/wp-includes/version.php';\n\t\t\techo $wp_version;\n\t\t`,\n\t\t})\n\t).text;\n\n\tconst translations = [\n\t\t{\n\t\t\turl: await getWordPressTranslationUrl(wpVersion, language),\n\t\t\ttype: 'core',\n\t\t},\n\t];\n\n\tconst pluginListResponse = await playground.run({\n\t\tcode: `<?php\n\t\trequire_once('${docroot}/wp-load.php');\n\t\trequire_once('${docroot}/wp-admin/includes/plugin.php');\n\t\techo json_encode(\n\t\t\tarray_values(\n\t\t\t\tarray_map(\n\t\t\t\t\tfunction($plugin) {\n\t\t\t\t\t\treturn [\n\t\t\t\t\t\t\t'slug'    => $plugin['TextDomain'],\n\t\t\t\t\t\t\t'version' => $plugin['Version']\n\t\t\t\t\t\t];\n\t\t\t\t\t},\n\t\t\t\t\tarray_filter(\n\t\t\t\t\t\tget_plugins(),\n\t\t\t\t\t\tfunction($plugin) {\n\t\t\t\t\t\t\treturn !empty($plugin['TextDomain']);\n\t\t\t\t\t\t}\n\t\t\t\t\t)\n\t\t\t\t)\n\t\t\t)\n\t\t);`,\n\t});\n\n\tconst plugins = pluginListResponse.json;\n\tfor (const { slug, version } of plugins) {\n\t\ttranslations.push({\n\t\t\turl: `https://downloads.wordpress.org/translation/plugin/${slug}/${version}/${language}.zip`,\n\t\t\ttype: 'plugin',\n\t\t});\n\t}\n\n\tconst themeListResponse = await playground.run({\n\t\tcode: `<?php\n\t\trequire_once('${docroot}/wp-load.php');\n\t\trequire_once('${docroot}/wp-admin/includes/theme.php');\n\t\techo json_encode(\n\t\t\tarray_values(\n\t\t\t\tarray_map(\n\t\t\t\t\tfunction($theme) {\n\t\t\t\t\t\treturn [\n\t\t\t\t\t\t\t'slug'    => $theme->get('TextDomain'),\n\t\t\t\t\t\t\t'version' => $theme->get('Version')\n\t\t\t\t\t\t];\n\t\t\t\t\t},\n\t\t\t\t\twp_get_themes()\n\t\t\t\t)\n\t\t\t)\n\t\t);`,\n\t});\n\n\tconst themes = themeListResponse.json;\n\tfor (const { slug, version } of themes) {\n\t\ttranslations.push({\n\t\t\turl: `https://downloads.wordpress.org/translation/theme/${slug}/${version}/${language}.zip`,\n\t\t\ttype: 'theme',\n\t\t});\n\t}\n\n\tif (!(await playground.isDir(`${docroot}/wp-content/languages/plugins`))) {\n\t\tawait playground.mkdir(`${docroot}/wp-content/languages/plugins`);\n\t}\n\tif (!(await playground.isDir(`${docroot}/wp-content/languages/themes`))) {\n\t\tawait playground.mkdir(`${docroot}/wp-content/languages/themes`);\n\t}\n\n\t// Fetch translations in parallel\n\tconst fetchQueue = new Semaphore({ concurrency: 5 });\n\tconst translationsQueue = translations.map(({ url, type }) =>\n\t\tfetchQueue.run(async () => {\n\t\t\ttry {\n\t\t\t\tconst response = await fetch(url);\n\t\t\t\tif (!response.ok) {\n\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t`Failed to download translations for ${type}: ${response.statusText}`\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\tlet destination = `${docroot}/wp-content/languages`;\n\t\t\t\tif (type === 'plugin') {\n\t\t\t\t\tdestination += '/plugins';\n\t\t\t\t} else if (type === 'theme') {\n\t\t\t\t\tdestination += '/themes';\n\t\t\t\t}\n\n\t\t\t\tawait unzipFile(\n\t\t\t\t\tplayground,\n\t\t\t\t\tnew File(\n\t\t\t\t\t\t[await response.arrayBuffer()],\n\t\t\t\t\t\t`${language}-${type}.zip`\n\t\t\t\t\t),\n\t\t\t\t\tdestination\n\t\t\t\t);\n\t\t\t} catch (error) {\n\t\t\t\t/**\n\t\t\t\t * Throw an error when a core translation isn't found.\n\t\t\t\t *\n\t\t\t\t * The language slug used in the Blueprint is not recognized by the\n\t\t\t\t * WordPress.org API and will always return a 404. This is likely\n\t\t\t\t * unintentional – perhaps a typo or the API consumer guessed the\n\t\t\t\t * slug wrong.\n\t\t\t\t *\n\t\t\t\t * The least we can do is communicate the problem.\n\t\t\t\t */\n\t\t\t\tif (type === 'core') {\n\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t`Failed to download translations for WordPress. Please check if the language code ${language} is correct. You can find all available languages and translations on https://translate.wordpress.org/.`\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\t/**\n\t\t\t\t * WordPress core has translations for the requested language,\n\t\t\t\t * but one of the installed plugins or themes doesn't.\n\t\t\t\t *\n\t\t\t\t * This is fine. Not all plugins and themes have translations for\n\t\t\t\t * every language. Let's just log a warning and move on.\n\t\t\t\t */\n\t\t\t\tlogger.warn(\n\t\t\t\t\t`Error downloading translations for ${type}: ${error}`\n\t\t\t\t);\n\t\t\t}\n\t\t})\n\t);\n\tawait Promise.all(translationsQueue);\n};\n","'use strict';\nexport const validate = validate10;\nexport default validate10;\nconst schema11 = {\n\t$schema: 'http://json-schema.org/schema',\n\t$ref: '#/definitions/BlueprintV1Declaration',\n\tdefinitions: {\n\t\tBlueprintV1Declaration: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tlandingPage: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The URL to navigate to after the blueprint has been run.',\n\t\t\t\t},\n\t\t\t\tdescription: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t\"Optional description. It doesn't do anything but is exposed as a courtesy to developers who may want to document which blueprint file does what.\",\n\t\t\t\t\tdeprecated: 'Use meta.description instead.',\n\t\t\t\t},\n\t\t\t\tmeta: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\ttitle: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'A clear and concise name for your Blueprint.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tdescription: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'A brief explanation of what your Blueprint offers.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tauthor: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'A GitHub username of the author of this Blueprint.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tcategories: {\n\t\t\t\t\t\t\ttype: 'array',\n\t\t\t\t\t\t\titems: { type: 'string' },\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Relevant categories to help users find your Blueprint in the future Blueprints section on WordPress.org.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['title', 'author'],\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Optional metadata. Used by the Blueprints gallery at https://github.com/WordPress/blueprints',\n\t\t\t\t},\n\t\t\t\tpreferredVersions: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tphp: {\n\t\t\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t\t\t{ $ref: '#/definitions/BlueprintPHPVersion' },\n\t\t\t\t\t\t\t\t{ type: 'string', const: 'latest' },\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The preferred PHP version to use. If not specified, the latest supported version will be used.\\n\\nNote: PHP 7.2 and 7.3 are deprecated and will be automatically upgraded to 7.4.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\twp: {\n\t\t\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t\t\t{ type: 'string', const: 'latest' },\n\t\t\t\t\t\t\t\t{ type: 'boolean', const: false },\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The preferred WordPress version to use, or `false` to boot a PHP-only Playground without downloading or installing WordPress. If not specified, the latest supported version will be used.\\n\\nWhen set to `false`, WordPress-specific Blueprint fields (`plugins`, `siteOptions`, `login`, and WordPress-only steps) are rejected at compile time.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['php', 'wp'],\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The preferred PHP and WordPress versions to use.',\n\t\t\t\t},\n\t\t\t\tfeatures: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tintl: {\n\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Should boot with support for Intl dynamic extension',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tnetworking: {\n\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Should boot with support for network request via wp_safe_remote_get?',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\textraLibraries: {\n\t\t\t\t\ttype: 'array',\n\t\t\t\t\titems: { $ref: '#/definitions/ExtraLibrary' },\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Extra libraries to preload into the Playground instance.',\n\t\t\t\t},\n\t\t\t\tconstants: {\n\t\t\t\t\t$ref: '#/definitions/PHPConstants',\n\t\t\t\t\tdescription: 'PHP Constants to define on every request',\n\t\t\t\t},\n\t\t\t\tplugins: {\n\t\t\t\t\ttype: 'array',\n\t\t\t\t\titems: {\n\t\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t\t{ $ref: '#/definitions/FileReference' },\n\t\t\t\t\t\t],\n\t\t\t\t\t},\n\t\t\t\t\tdescription: 'WordPress plugins to install and activate',\n\t\t\t\t},\n\t\t\t\tsiteOptions: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: { type: 'string' },\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tblogname: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: 'The site title',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\tdescription: 'WordPress site options to define',\n\t\t\t\t},\n\t\t\t\tlogin: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ type: 'boolean' },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tusername: { type: 'string' },\n\t\t\t\t\t\t\t\tpassword: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\trequired: ['username', 'password'],\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'User to log in as. If true, logs the user in as admin/password.',\n\t\t\t\t},\n\t\t\t\tphpExtensionBundles: {\n\t\t\t\t\tdeprecated:\n\t\t\t\t\t\t'No longer used. Feel free to remove it from your Blueprint.',\n\t\t\t\t},\n\t\t\t\tsteps: {\n\t\t\t\t\ttype: 'array',\n\t\t\t\t\titems: {\n\t\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t\t{ $ref: '#/definitions/StepDefinition' },\n\t\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t\t{ not: {} },\n\t\t\t\t\t\t\t{ type: 'boolean', const: false },\n\t\t\t\t\t\t\t{ type: 'null' },\n\t\t\t\t\t\t],\n\t\t\t\t\t},\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The steps to run after every other operation in this Blueprint was executed.',\n\t\t\t\t},\n\t\t\t\t$schema: { type: 'string' },\n\t\t\t},\n\t\t\tadditionalProperties: false,\n\t\t\tdescription:\n\t\t\t\t'The Blueprint declaration, typically stored in a blueprint.json file.',\n\t\t},\n\t\tBlueprintPHPVersion: {\n\t\t\tanyOf: [\n\t\t\t\t{ $ref: '#/definitions/AllPHPVersion' },\n\t\t\t\t{ type: 'string', const: '7.2' },\n\t\t\t\t{ type: 'string', const: '7.3' },\n\t\t\t],\n\t\t\tdescription:\n\t\t\t\t'PHP versions accepted in Blueprint schema. Includes deprecated versions (7.2, 7.3) which are automatically upgraded to 7.4 during compilation.',\n\t\t},\n\t\tAllPHPVersion: {\n\t\t\tanyOf: [\n\t\t\t\t{ $ref: '#/definitions/PHPNextVersion' },\n\t\t\t\t{ $ref: '#/definitions/SupportedPHPVersion' },\n\t\t\t\t{ $ref: '#/definitions/LegacyPHPVersion' },\n\t\t\t],\n\t\t},\n\t\tPHPNextVersion: { type: 'string', const: 'next' },\n\t\tSupportedPHPVersion: {\n\t\t\ttype: 'string',\n\t\t\tenum: ['8.5', '8.4', '8.3', '8.2', '8.1', '8.0', '7.4'],\n\t\t},\n\t\tLegacyPHPVersion: { type: 'string', enum: ['5.2'] },\n\t\tExtraLibrary: { type: 'string', const: 'wp-cli' },\n\t\tPHPConstants: {\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: { type: ['string', 'boolean', 'number'] },\n\t\t},\n\t\tFileReference: {\n\t\t\tanyOf: [\n\t\t\t\t{ $ref: '#/definitions/VFSReference' },\n\t\t\t\t{ $ref: '#/definitions/LiteralReference' },\n\t\t\t\t{ $ref: '#/definitions/CoreThemeReference' },\n\t\t\t\t{ $ref: '#/definitions/CorePluginReference' },\n\t\t\t\t{ $ref: '#/definitions/UrlReference' },\n\t\t\t\t{ $ref: '#/definitions/BundledReference' },\n\t\t\t\t{ $ref: '#/definitions/ZipWrapperReference' },\n\t\t\t],\n\t\t},\n\t\tVFSReference: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tresource: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'vfs',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Identifies the file resource as Virtual File System (VFS)',\n\t\t\t\t},\n\t\t\t\tpath: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'The path to the file in the VFS',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['resource', 'path'],\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tLiteralReference: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tresource: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'literal',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Identifies the file resource as a literal file',\n\t\t\t\t},\n\t\t\t\tname: { type: 'string', description: 'The name of the file' },\n\t\t\t\tcontents: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tBYTES_PER_ELEMENT: { type: 'number' },\n\t\t\t\t\t\t\t\tbuffer: {\n\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\trequired: ['byteLength'],\n\t\t\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\tbyteOffset: { type: 'number' },\n\t\t\t\t\t\t\t\tlength: { type: 'number' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\trequired: [\n\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t'buffer',\n\t\t\t\t\t\t\t\t'byteLength',\n\t\t\t\t\t\t\t\t'byteOffset',\n\t\t\t\t\t\t\t\t'length',\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tadditionalProperties: { type: 'number' },\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\tdescription: 'The contents of the file',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['resource', 'name', 'contents'],\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tCoreThemeReference: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tresource: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'wordpress.org/themes',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Identifies the file resource as a WordPress Core theme',\n\t\t\t\t},\n\t\t\t\tslug: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'The slug of the WordPress Core theme',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['resource', 'slug'],\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tCorePluginReference: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tresource: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'wordpress.org/plugins',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Identifies the file resource as a WordPress Core plugin',\n\t\t\t\t},\n\t\t\t\tslug: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'The slug of the WordPress Core plugin',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['resource', 'slug'],\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tUrlReference: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tresource: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'url',\n\t\t\t\t\tdescription: 'Identifies the file resource as a URL',\n\t\t\t\t},\n\t\t\t\turl: { type: 'string', description: 'The URL of the file' },\n\t\t\t\tcaption: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Optional caption for displaying a progress message',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['resource', 'url'],\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tBundledReference: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tresource: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'bundled',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Identifies the file resource as a Blueprint file',\n\t\t\t\t},\n\t\t\t\tpath: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'The path to the file in the Blueprint',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['resource', 'path'],\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tZipWrapperReference: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tresource: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'zip',\n\t\t\t\t\tdescription: 'Identifies the resource as a ZIP wrapper',\n\t\t\t\t},\n\t\t\t\tinner: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ $ref: '#/definitions/FileReference' },\n\t\t\t\t\t\t{ $ref: '#/definitions/DirectoryReference' },\n\t\t\t\t\t],\n\t\t\t\t\tdescription: 'The inner resource to wrap in a ZIP file',\n\t\t\t\t},\n\t\t\t\tname: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Optional filename for the ZIP (defaults to inner resource name + .zip)',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['resource', 'inner'],\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tDirectoryReference: {\n\t\t\tanyOf: [\n\t\t\t\t{ $ref: '#/definitions/GitDirectoryReference' },\n\t\t\t\t{ $ref: '#/definitions/DirectoryLiteralReference' },\n\t\t\t],\n\t\t},\n\t\tGitDirectoryReference: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tresource: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'git:directory',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Identifies the file resource as a git directory',\n\t\t\t\t},\n\t\t\t\turl: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'The URL of the git repository',\n\t\t\t\t},\n\t\t\t\tref: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The ref (branch, tag, or commit) of the git repository',\n\t\t\t\t},\n\t\t\t\trefType: {\n\t\t\t\t\t$ref: '#/definitions/GitDirectoryRefType',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Explicit hint about the ref type (branch, tag, commit, refname)',\n\t\t\t\t},\n\t\t\t\tpath: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The path to the directory in the git repository. Defaults to the repo root.',\n\t\t\t\t},\n\t\t\t\t'.git': {\n\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'When true, include a `.git` directory with Git metadata (experimental).',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['resource', 'url', 'ref'],\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tGitDirectoryRefType: {\n\t\t\ttype: 'string',\n\t\t\tenum: ['branch', 'tag', 'commit', 'refname'],\n\t\t},\n\t\tDirectoryLiteralReference: {\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tresource: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'literal:directory',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Identifies the file resource as a git directory',\n\t\t\t\t},\n\t\t\t\tfiles: { $ref: '#/definitions/FileTree' },\n\t\t\t\tname: { type: 'string' },\n\t\t\t},\n\t\t\trequired: ['files', 'name', 'resource'],\n\t\t},\n\t\tFileTree: {\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: {\n\t\t\t\tanyOf: [\n\t\t\t\t\t{ $ref: '#/definitions/FileTree' },\n\t\t\t\t\t{ type: ['object', 'string'] },\n\t\t\t\t],\n\t\t\t},\n\t\t\tproperties: {},\n\t\t},\n\t\tStepDefinition: {\n\t\t\ttype: 'object',\n\t\t\tdiscriminator: { propertyName: 'step' },\n\t\t\trequired: ['step'],\n\t\t\toneOf: [\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'activatePlugin' },\n\t\t\t\t\t\tpluginPath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Path to the plugin directory as absolute path (/wordpress/wp-content/plugins/plugin-name); or the plugin entry file relative to the plugins directory (plugin-name/plugin-name.php).',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tpluginName: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Optional. Plugin name to display in the progress bar.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['pluginPath', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'activateTheme' },\n\t\t\t\t\t\tthemeFolderName: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The name of the theme folder inside wp-content/themes/',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['step', 'themeFolderName'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'cp' },\n\t\t\t\t\t\tfromPath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: 'Source path',\n\t\t\t\t\t\t},\n\t\t\t\t\t\ttoPath: { type: 'string', description: 'Target path' },\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['fromPath', 'step', 'toPath'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'defineWpConfigConsts' },\n\t\t\t\t\t\tconsts: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tadditionalProperties: {},\n\t\t\t\t\t\t\tdescription: 'The constants to define',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tmethod: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tenum: ['rewrite-wp-config', 'define-before-run'],\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t\"The method of defining the constants in wp-config.php. Possible values are:\\n\\n- rewrite-wp-config: Default. Rewrites the wp-config.php file to                      explicitly call define() with the requested                      name and value. This method alters the file                      on the disk, but it doesn't conflict with                      existing define() calls in wp-config.php.\\n\\n- define-before-run: Defines the constant before running the requested                      script. It doesn't alter any files on the disk, but                      constants defined this way may conflict with existing                      define() calls in wp-config.php.\",\n\t\t\t\t\t\t},\n\t\t\t\t\t\tvirtualize: {\n\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\tdeprecated:\n\t\t\t\t\t\t\t\t'This option is noop and will be removed in a future version.\\nThis option is only kept in here to avoid breaking Blueprint schema validation\\nfor existing apps using this option.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['consts', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'defineSiteUrl' },\n\t\t\t\t\t\tsiteUrl: { type: 'string', description: 'The URL' },\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['siteUrl', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'enableMultisite' },\n\t\t\t\t\t\twpCliPath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: 'wp-cli.phar path',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'importWxr' },\n\t\t\t\t\t\tfile: {\n\t\t\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\t\t\tdescription: 'The file to import',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tfetchAttachments: {\n\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Whether to fetch and import attachment files referenced by the WXR file.',\n\t\t\t\t\t\t\tdefault: true,\n\t\t\t\t\t\t},\n\t\t\t\t\t\trewriteUrls: {\n\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Whether to rewrite imported URLs to the current site URL.',\n\t\t\t\t\t\t\tdefault: true,\n\t\t\t\t\t\t},\n\t\t\t\t\t\turlMapping: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tadditionalProperties: { type: 'string' },\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Explicit URL replacements to apply when URL rewriting is enabled.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\timportComments: {\n\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Whether to import comments from the WXR file.',\n\t\t\t\t\t\t\tdefault: true,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tdefaultAuthorUsername: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The fallback local user for imported authors that cannot be mapped.',\n\t\t\t\t\t\t\tdefault: 'admin',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tauthorsMode: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tenum: ['create', 'default-author', 'map'],\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'How to assign imported WXR authors to local WordPress users.',\n\t\t\t\t\t\t\tdefault: 'default-author',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tauthorsMap: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tadditionalProperties: { type: 'string' },\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Remote WXR author usernames keyed to existing local usernames.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\timportUsers: {\n\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Whether to create local users for imported WXR authors.',\n\t\t\t\t\t\t\tdefault: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\timporter: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tenum: ['data-liberation', 'default'],\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The importer to use. Possible values:\\n\\n- `default`: The importer from https://github.com/humanmade/WordPress-Importer\\n- `data-liberation`: The experimental Data Liberation WXR importer developed at                      https://github.com/WordPress/wordpress-playground/issues/1894\\n\\nThis option is deprecated. The syntax will not be removed, but once the Data Liberation importer matures, it will become the only supported importer and the `importer` option will be ignored.',\n\t\t\t\t\t\t\tdeprecated: true,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['file', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tconst: 'importThemeStarterContent',\n\t\t\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tthemeSlug: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The name of the theme to import content from.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'importWordPressFiles' },\n\t\t\t\t\t\twordPressFilesZip: {\n\t\t\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The zip file containing the top-level WordPress files and directories.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tpathInZip: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The path inside the zip file where the WordPress files are.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['step', 'wordPressFilesZip'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tifAlreadyInstalled: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tenum: ['overwrite', 'skip', 'error'],\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'What to do if the asset already exists.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tconst: 'installPlugin',\n\t\t\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tpluginData: {\n\t\t\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t\t\t{ $ref: '#/definitions/FileReference' },\n\t\t\t\t\t\t\t\t{ $ref: '#/definitions/DirectoryReference' },\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The plugin files to install. It can be a plugin zip file, a single PHP file, or a directory containing all the plugin files at its root.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tpluginZipFile: {\n\t\t\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\t\t\tdeprecated: \". Use 'pluginData' instead.\",\n\t\t\t\t\t\t},\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\t$ref: '#/definitions/InstallPluginOptions',\n\t\t\t\t\t\t\tdescription: 'Optional installation options.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['pluginData', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tifAlreadyInstalled: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tenum: ['overwrite', 'skip', 'error'],\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'What to do if the asset already exists.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tconst: 'installTheme',\n\t\t\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tthemeData: {\n\t\t\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t\t\t{ $ref: '#/definitions/FileReference' },\n\t\t\t\t\t\t\t\t{ $ref: '#/definitions/DirectoryReference' },\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The theme files to install. It can be either a theme zip file, or a directory containing all the theme files at its root.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tthemeZipFile: {\n\t\t\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\t\t\tdeprecated: \". Use 'themeData' instead.\",\n\t\t\t\t\t\t},\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\t$ref: '#/definitions/InstallThemeOptions',\n\t\t\t\t\t\t\tdescription: 'Optional installation options.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['step', 'themeData'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'login' },\n\t\t\t\t\t\tusername: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t\"The user to log in as. Defaults to 'admin'.\",\n\t\t\t\t\t\t},\n\t\t\t\t\t\tpassword: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdeprecated:\n\t\t\t\t\t\t\t\t'The password field is deprecated and will be removed in a future version.\\nOnly the username field is required for user authentication.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'mkdir' },\n\t\t\t\t\t\tpath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The path of the directory you want to create',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['path', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'mv' },\n\t\t\t\t\t\tfromPath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: 'Source path',\n\t\t\t\t\t\t},\n\t\t\t\t\t\ttoPath: { type: 'string', description: 'Target path' },\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['fromPath', 'step', 'toPath'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'resetData' },\n\t\t\t\t\t\tcontentTypes: {\n\t\t\t\t\t\t\ttype: 'array',\n\t\t\t\t\t\t\titems: {\n\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\tenum: ['posts', 'pages', 'comments'],\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Content types to remove. When omitted, all posts, pages, custom post types, and comments are removed.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'request' },\n\t\t\t\t\t\trequest: {\n\t\t\t\t\t\t\t$ref: '#/definitions/PHPRequest',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Request details (See /wordpress-playground/api/universal/interface/PHPRequest)',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['request', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'rm' },\n\t\t\t\t\t\tpath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: 'The path to remove',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['path', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'rmdir' },\n\t\t\t\t\t\tpath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: 'The path to remove',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['path', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tconst: 'runPHP',\n\t\t\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tcode: {\n\t\t\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\t\tfilename: {\n\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t\t\t\t\t'This property is ignored during Blueprint v1 execution but exists so the same runPHP step structure can be used for Blueprints v1 and v2.',\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\tcontent: { type: 'string' },\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\trequired: ['filename', 'content'],\n\t\t\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tdescription: 'The PHP code to run.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['code', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'runPHPWithOptions' },\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\t$ref: '#/definitions/PHPRunOptions',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'Run options (See /wordpress-playground/api/universal/interface/PHPRunOptions/))',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['options', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tconst: 'runWpInstallationWizard',\n\t\t\t\t\t\t},\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\t$ref: '#/definitions/WordPressInstallationOptions',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['options', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tconst: 'runSql',\n\t\t\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tsql: {\n\t\t\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The SQL to run. Each non-empty line must contain a valid SQL query.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['sql', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tconst: 'setSiteOptions',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'The name of the step. Must be \"setSiteOptions\".',\n\t\t\t\t\t\t},\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tadditionalProperties: {},\n\t\t\t\t\t\t\tdescription: 'The options to set on the site.',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['options', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'unzip' },\n\t\t\t\t\t\tzipFile: {\n\t\t\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\t\t\tdescription: 'The zip file to extract',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tzipPath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: 'The path of the zip file to extract',\n\t\t\t\t\t\t\tdeprecated: 'Use zipFile instead.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\textractToPath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: 'The path to extract the zip file to',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['extractToPath', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'updateUserMeta' },\n\t\t\t\t\t\tmeta: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tadditionalProperties: {},\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t'An object of user meta values to set, e.g. { \"first_name\": \"John\" }',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tuserId: { type: 'number', description: 'User ID' },\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['meta', 'step', 'userId'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'writeFile' },\n\t\t\t\t\t\tpath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: 'The path of the file to write to',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tdata: {\n\t\t\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t\t\t{ $ref: '#/definitions/FileReference' },\n\t\t\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\t\tBYTES_PER_ELEMENT: { type: 'number' },\n\t\t\t\t\t\t\t\t\t\tbuffer: {\n\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\trequired: ['byteLength'],\n\t\t\t\t\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\t\t\tbyteOffset: { type: 'number' },\n\t\t\t\t\t\t\t\t\t\tlength: { type: 'number' },\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\trequired: [\n\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t\t\t'buffer',\n\t\t\t\t\t\t\t\t\t\t'byteLength',\n\t\t\t\t\t\t\t\t\t\t'byteOffset',\n\t\t\t\t\t\t\t\t\t\t'length',\n\t\t\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t\t\tadditionalProperties: { type: 'number' },\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tdescription: 'The data to write',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['data', 'path', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'writeFiles' },\n\t\t\t\t\t\twriteToPath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: 'The path of the file to write to',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tfilesTree: {\n\t\t\t\t\t\t\t$ref: '#/definitions/DirectoryReference',\n\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t\"The 'filesTree' defines the directory structure, supporting 'literal:directory' or 'git:directory' types. The 'name' represents the root directory, while 'files' is an object where keys are file paths, and values contain either file content as a string or nested objects for subdirectories.\",\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['filesTree', 'step', 'writeToPath'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tconst: 'wp-cli',\n\t\t\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\tcommand: {\n\t\t\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t\t\t{ type: 'array', items: { type: 'string' } },\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tdescription: 'The WP CLI command to run.',\n\t\t\t\t\t\t},\n\t\t\t\t\t\twpCliPath: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: 'wp-cli.phar path',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['command', 'step'],\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tprogress: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tstep: { type: 'string', const: 'setSiteLanguage' },\n\t\t\t\t\t\tlanguage: {\n\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\tdescription: \"The language to set, e.g. 'en_US'\",\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['language', 'step'],\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t\tInstallPluginOptions: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tactivate: {\n\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Whether to activate the plugin after installing it.',\n\t\t\t\t},\n\t\t\t\tactivationOptions: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: {},\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Parameters to expose to the plugin during its activation hook.',\n\t\t\t\t},\n\t\t\t\tonError: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tenum: ['skip-plugin', 'throw'],\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Whether installation/activation failures should abort the Blueprint.',\n\t\t\t\t},\n\t\t\t\ttargetFolderName: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The name of the folder to install the plugin to. Defaults to guessing from pluginData',\n\t\t\t\t},\n\t\t\t\thumanReadableName: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Human-readable plugin name for progress captions and skip warnings.',\n\t\t\t\t},\n\t\t\t},\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tInstallThemeOptions: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tactivate: {\n\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Whether to activate the theme after installing it.',\n\t\t\t\t},\n\t\t\t\timportStarterContent: {\n\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t\"Whether to import the theme's starter content after installing it.\",\n\t\t\t\t},\n\t\t\t\tonError: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tenum: ['skip-theme', 'throw'],\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Whether installation, activation, or starter-content failures should abort the Blueprint.',\n\t\t\t\t},\n\t\t\t\ttargetFolderName: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The name of the folder to install the theme to. Defaults to guessing from themeData',\n\t\t\t\t},\n\t\t\t\thumanReadableName: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Human-readable theme name for the progress caption and skip warning.',\n\t\t\t\t},\n\t\t\t},\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tPHPRequest: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tmethod: {\n\t\t\t\t\t$ref: '#/definitions/HTTPMethod',\n\t\t\t\t\tdescription: 'Request method. Default: `GET`.',\n\t\t\t\t},\n\t\t\t\turl: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'Request path or absolute URL.',\n\t\t\t\t},\n\t\t\t\theaders: {\n\t\t\t\t\t$ref: '#/definitions/PHPRequestHeaders',\n\t\t\t\t\tdescription: 'Request headers.',\n\t\t\t\t},\n\t\t\t\tbody: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tBYTES_PER_ELEMENT: { type: 'number' },\n\t\t\t\t\t\t\t\tbuffer: {\n\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\trequired: ['byteLength'],\n\t\t\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\tbyteOffset: { type: 'number' },\n\t\t\t\t\t\t\t\tlength: { type: 'number' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\trequired: [\n\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t'buffer',\n\t\t\t\t\t\t\t\t'byteLength',\n\t\t\t\t\t\t\t\t'byteOffset',\n\t\t\t\t\t\t\t\t'length',\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tadditionalProperties: { type: 'number' },\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tadditionalProperties: {\n\t\t\t\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\t\t\tBYTES_PER_ELEMENT: {\n\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tbuffer: {\n\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\t\t\t\t\tbyteLength: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\trequired: ['byteLength'],\n\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\t\t\t\tbyteOffset: { type: 'number' },\n\t\t\t\t\t\t\t\t\t\t\tlength: { type: 'number' },\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\trequired: [\n\t\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t\t\t\t'buffer',\n\t\t\t\t\t\t\t\t\t\t\t'byteLength',\n\t\t\t\t\t\t\t\t\t\t\t'byteOffset',\n\t\t\t\t\t\t\t\t\t\t\t'length',\n\t\t\t\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t\t\t\tadditionalProperties: {\n\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\t\t\tsize: { type: 'number' },\n\t\t\t\t\t\t\t\t\t\t\ttype: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\tlastModified: { type: 'number' },\n\t\t\t\t\t\t\t\t\t\t\tname: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\twebkitRelativePath: {\n\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\trequired: [\n\t\t\t\t\t\t\t\t\t\t\t'lastModified',\n\t\t\t\t\t\t\t\t\t\t\t'name',\n\t\t\t\t\t\t\t\t\t\t\t'size',\n\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t'webkitRelativePath',\n\t\t\t\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Request body. If an object is given, the request will be encoded as multipart and sent with a `multipart/form-data` header.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['url'],\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tHTTPMethod: {\n\t\t\ttype: 'string',\n\t\t\tenum: ['GET', 'POST', 'HEAD', 'OPTIONS', 'PATCH', 'PUT', 'DELETE'],\n\t\t},\n\t\tPHPRequestHeaders: {\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: { type: 'string' },\n\t\t},\n\t\tPHPRunOptions: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\trelativeUri: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Request path following the domain:port part – after any URL rewriting rules (e.g. apache .htaccess) have been applied.',\n\t\t\t\t},\n\t\t\t\tscriptPath: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'Path of the .php file to execute.',\n\t\t\t\t},\n\t\t\t\tprotocol: { type: 'string', description: 'Request protocol.' },\n\t\t\t\tmethod: {\n\t\t\t\t\t$ref: '#/definitions/HTTPMethod',\n\t\t\t\t\tdescription: 'Request method. Default: `GET`.',\n\t\t\t\t},\n\t\t\t\theaders: {\n\t\t\t\t\t$ref: '#/definitions/PHPRequestHeaders',\n\t\t\t\t\tdescription: 'Request headers.',\n\t\t\t\t},\n\t\t\t\tbody: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tBYTES_PER_ELEMENT: { type: 'number' },\n\t\t\t\t\t\t\t\tbuffer: {\n\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\trequired: ['byteLength'],\n\t\t\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\tbyteOffset: { type: 'number' },\n\t\t\t\t\t\t\t\tlength: { type: 'number' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\trequired: [\n\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t'buffer',\n\t\t\t\t\t\t\t\t'byteLength',\n\t\t\t\t\t\t\t\t'byteOffset',\n\t\t\t\t\t\t\t\t'length',\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tadditionalProperties: { type: 'number' },\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\tdescription: 'Request body.',\n\t\t\t\t},\n\t\t\t\tenv: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: { type: 'string' },\n\t\t\t\t\tdescription: 'Environment variables to set for this run.',\n\t\t\t\t},\n\t\t\t\t$_SERVER: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: { type: 'string' },\n\t\t\t\t\tdescription: '$_SERVER entries to set for this run.',\n\t\t\t\t},\n\t\t\t\tcode: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The code snippet to eval instead of a php file.',\n\t\t\t\t},\n\t\t\t},\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\tWordPressInstallationOptions: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tadminUsername: { type: 'string' },\n\t\t\t\tadminPassword: { type: 'string' },\n\t\t\t},\n\t\t\tadditionalProperties: false,\n\t\t},\n\t},\n};\nconst schema12 = {\n\ttype: 'object',\n\tproperties: {\n\t\tlandingPage: {\n\t\t\ttype: 'string',\n\t\t\tdescription:\n\t\t\t\t'The URL to navigate to after the blueprint has been run.',\n\t\t},\n\t\tdescription: {\n\t\t\ttype: 'string',\n\t\t\tdescription:\n\t\t\t\t\"Optional description. It doesn't do anything but is exposed as a courtesy to developers who may want to document which blueprint file does what.\",\n\t\t\tdeprecated: 'Use meta.description instead.',\n\t\t},\n\t\tmeta: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\ttitle: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'A clear and concise name for your Blueprint.',\n\t\t\t\t},\n\t\t\t\tdescription: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'A brief explanation of what your Blueprint offers.',\n\t\t\t\t},\n\t\t\t\tauthor: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'A GitHub username of the author of this Blueprint.',\n\t\t\t\t},\n\t\t\t\tcategories: {\n\t\t\t\t\ttype: 'array',\n\t\t\t\t\titems: { type: 'string' },\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Relevant categories to help users find your Blueprint in the future Blueprints section on WordPress.org.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['title', 'author'],\n\t\t\tadditionalProperties: false,\n\t\t\tdescription:\n\t\t\t\t'Optional metadata. Used by the Blueprints gallery at https://github.com/WordPress/blueprints',\n\t\t},\n\t\tpreferredVersions: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tphp: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ $ref: '#/definitions/BlueprintPHPVersion' },\n\t\t\t\t\t\t{ type: 'string', const: 'latest' },\n\t\t\t\t\t],\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The preferred PHP version to use. If not specified, the latest supported version will be used.\\n\\nNote: PHP 7.2 and 7.3 are deprecated and will be automatically upgraded to 7.4.',\n\t\t\t\t},\n\t\t\t\twp: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t{ type: 'string', const: 'latest' },\n\t\t\t\t\t\t{ type: 'boolean', const: false },\n\t\t\t\t\t],\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The preferred WordPress version to use, or `false` to boot a PHP-only Playground without downloading or installing WordPress. If not specified, the latest supported version will be used.\\n\\nWhen set to `false`, WordPress-specific Blueprint fields (`plugins`, `siteOptions`, `login`, and WordPress-only steps) are rejected at compile time.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['php', 'wp'],\n\t\t\tadditionalProperties: false,\n\t\t\tdescription: 'The preferred PHP and WordPress versions to use.',\n\t\t},\n\t\tfeatures: {\n\t\t\ttype: 'object',\n\t\t\tproperties: {\n\t\t\t\tintl: {\n\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Should boot with support for Intl dynamic extension',\n\t\t\t\t},\n\t\t\t\tnetworking: {\n\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Should boot with support for network request via wp_safe_remote_get?',\n\t\t\t\t},\n\t\t\t},\n\t\t\tadditionalProperties: false,\n\t\t},\n\t\textraLibraries: {\n\t\t\ttype: 'array',\n\t\t\titems: { $ref: '#/definitions/ExtraLibrary' },\n\t\t\tdescription:\n\t\t\t\t'Extra libraries to preload into the Playground instance.',\n\t\t},\n\t\tconstants: {\n\t\t\t$ref: '#/definitions/PHPConstants',\n\t\t\tdescription: 'PHP Constants to define on every request',\n\t\t},\n\t\tplugins: {\n\t\t\ttype: 'array',\n\t\t\titems: {\n\t\t\t\tanyOf: [\n\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t{ $ref: '#/definitions/FileReference' },\n\t\t\t\t],\n\t\t\t},\n\t\t\tdescription: 'WordPress plugins to install and activate',\n\t\t},\n\t\tsiteOptions: {\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: { type: 'string' },\n\t\t\tproperties: {\n\t\t\t\tblogname: { type: 'string', description: 'The site title' },\n\t\t\t},\n\t\t\tdescription: 'WordPress site options to define',\n\t\t},\n\t\tlogin: {\n\t\t\tanyOf: [\n\t\t\t\t{ type: 'boolean' },\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tusername: { type: 'string' },\n\t\t\t\t\t\tpassword: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\trequired: ['username', 'password'],\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t],\n\t\t\tdescription:\n\t\t\t\t'User to log in as. If true, logs the user in as admin/password.',\n\t\t},\n\t\tphpExtensionBundles: {\n\t\t\tdeprecated:\n\t\t\t\t'No longer used. Feel free to remove it from your Blueprint.',\n\t\t},\n\t\tsteps: {\n\t\t\ttype: 'array',\n\t\t\titems: {\n\t\t\t\tanyOf: [\n\t\t\t\t\t{ $ref: '#/definitions/StepDefinition' },\n\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t{ not: {} },\n\t\t\t\t\t{ type: 'boolean', const: false },\n\t\t\t\t\t{ type: 'null' },\n\t\t\t\t],\n\t\t\t},\n\t\t\tdescription:\n\t\t\t\t'The steps to run after every other operation in this Blueprint was executed.',\n\t\t},\n\t\t$schema: { type: 'string' },\n\t},\n\tadditionalProperties: false,\n\tdescription:\n\t\t'The Blueprint declaration, typically stored in a blueprint.json file.',\n};\nconst schema18 = { type: 'string', const: 'wp-cli' };\nconst schema19 = {\n\ttype: 'object',\n\tadditionalProperties: { type: ['string', 'boolean', 'number'] },\n};\nconst func2 = Object.prototype.hasOwnProperty;\nconst schema13 = {\n\tanyOf: [\n\t\t{ $ref: '#/definitions/AllPHPVersion' },\n\t\t{ type: 'string', const: '7.2' },\n\t\t{ type: 'string', const: '7.3' },\n\t],\n\tdescription:\n\t\t'PHP versions accepted in Blueprint schema. Includes deprecated versions (7.2, 7.3) which are automatically upgraded to 7.4 during compilation.',\n};\nconst schema14 = {\n\tanyOf: [\n\t\t{ $ref: '#/definitions/PHPNextVersion' },\n\t\t{ $ref: '#/definitions/SupportedPHPVersion' },\n\t\t{ $ref: '#/definitions/LegacyPHPVersion' },\n\t],\n};\nconst schema15 = { type: 'string', const: 'next' };\nconst schema16 = {\n\ttype: 'string',\n\tenum: ['8.5', '8.4', '8.3', '8.2', '8.1', '8.0', '7.4'],\n};\nconst schema17 = { type: 'string', enum: ['5.2'] };\nfunction validate13(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tconst _errs0 = errors;\n\tlet valid0 = false;\n\tconst _errs1 = errors;\n\tif (typeof data !== 'string') {\n\t\tconst err0 = {\n\t\t\tinstancePath,\n\t\t\tschemaPath: '#/definitions/PHPNextVersion/type',\n\t\t\tkeyword: 'type',\n\t\t\tparams: { type: 'string' },\n\t\t\tmessage: 'must be string',\n\t\t};\n\t\tif (vErrors === null) {\n\t\t\tvErrors = [err0];\n\t\t} else {\n\t\t\tvErrors.push(err0);\n\t\t}\n\t\terrors++;\n\t}\n\tif ('next' !== data) {\n\t\tconst err1 = {\n\t\t\tinstancePath,\n\t\t\tschemaPath: '#/definitions/PHPNextVersion/const',\n\t\t\tkeyword: 'const',\n\t\t\tparams: { allowedValue: 'next' },\n\t\t\tmessage: 'must be equal to constant',\n\t\t};\n\t\tif (vErrors === null) {\n\t\t\tvErrors = [err1];\n\t\t} else {\n\t\t\tvErrors.push(err1);\n\t\t}\n\t\terrors++;\n\t}\n\tvar _valid0 = _errs1 === errors;\n\tvalid0 = valid0 || _valid0;\n\tif (!valid0) {\n\t\tconst _errs4 = errors;\n\t\tif (typeof data !== 'string') {\n\t\t\tconst err2 = {\n\t\t\t\tinstancePath,\n\t\t\t\tschemaPath: '#/definitions/SupportedPHPVersion/type',\n\t\t\t\tkeyword: 'type',\n\t\t\t\tparams: { type: 'string' },\n\t\t\t\tmessage: 'must be string',\n\t\t\t};\n\t\t\tif (vErrors === null) {\n\t\t\t\tvErrors = [err2];\n\t\t\t} else {\n\t\t\t\tvErrors.push(err2);\n\t\t\t}\n\t\t\terrors++;\n\t\t}\n\t\tif (\n\t\t\t!(\n\t\t\t\tdata === '8.5' ||\n\t\t\t\tdata === '8.4' ||\n\t\t\t\tdata === '8.3' ||\n\t\t\t\tdata === '8.2' ||\n\t\t\t\tdata === '8.1' ||\n\t\t\t\tdata === '8.0' ||\n\t\t\t\tdata === '7.4'\n\t\t\t)\n\t\t) {\n\t\t\tconst err3 = {\n\t\t\t\tinstancePath,\n\t\t\t\tschemaPath: '#/definitions/SupportedPHPVersion/enum',\n\t\t\t\tkeyword: 'enum',\n\t\t\t\tparams: { allowedValues: schema16.enum },\n\t\t\t\tmessage: 'must be equal to one of the allowed values',\n\t\t\t};\n\t\t\tif (vErrors === null) {\n\t\t\t\tvErrors = [err3];\n\t\t\t} else {\n\t\t\t\tvErrors.push(err3);\n\t\t\t}\n\t\t\terrors++;\n\t\t}\n\t\tvar _valid0 = _errs4 === errors;\n\t\tvalid0 = valid0 || _valid0;\n\t\tif (!valid0) {\n\t\t\tconst _errs7 = errors;\n\t\t\tif (typeof data !== 'string') {\n\t\t\t\tconst err4 = {\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/definitions/LegacyPHPVersion/type',\n\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t};\n\t\t\t\tif (vErrors === null) {\n\t\t\t\t\tvErrors = [err4];\n\t\t\t\t} else {\n\t\t\t\t\tvErrors.push(err4);\n\t\t\t\t}\n\t\t\t\terrors++;\n\t\t\t}\n\t\t\tif (!(data === '5.2')) {\n\t\t\t\tconst err5 = {\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/definitions/LegacyPHPVersion/enum',\n\t\t\t\t\tkeyword: 'enum',\n\t\t\t\t\tparams: { allowedValues: schema17.enum },\n\t\t\t\t\tmessage: 'must be equal to one of the allowed values',\n\t\t\t\t};\n\t\t\t\tif (vErrors === null) {\n\t\t\t\t\tvErrors = [err5];\n\t\t\t\t} else {\n\t\t\t\t\tvErrors.push(err5);\n\t\t\t\t}\n\t\t\t\terrors++;\n\t\t\t}\n\t\t\tvar _valid0 = _errs7 === errors;\n\t\t\tvalid0 = valid0 || _valid0;\n\t\t}\n\t}\n\tif (!valid0) {\n\t\tconst err6 = {\n\t\t\tinstancePath,\n\t\t\tschemaPath: '#/anyOf',\n\t\t\tkeyword: 'anyOf',\n\t\t\tparams: {},\n\t\t\tmessage: 'must match a schema in anyOf',\n\t\t};\n\t\tif (vErrors === null) {\n\t\t\tvErrors = [err6];\n\t\t} else {\n\t\t\tvErrors.push(err6);\n\t\t}\n\t\terrors++;\n\t\tvalidate13.errors = vErrors;\n\t\treturn false;\n\t} else {\n\t\terrors = _errs0;\n\t\tif (vErrors !== null) {\n\t\t\tif (_errs0) {\n\t\t\t\tvErrors.length = _errs0;\n\t\t\t} else {\n\t\t\t\tvErrors = null;\n\t\t\t}\n\t\t}\n\t}\n\tvalidate13.errors = vErrors;\n\treturn errors === 0;\n}\nfunction validate12(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tconst _errs0 = errors;\n\tlet valid0 = false;\n\tconst _errs1 = errors;\n\tif (\n\t\t!validate13(data, {\n\t\t\tinstancePath,\n\t\t\tparentData,\n\t\t\tparentDataProperty,\n\t\t\trootData,\n\t\t})\n\t) {\n\t\tvErrors =\n\t\t\tvErrors === null\n\t\t\t\t? validate13.errors\n\t\t\t\t: vErrors.concat(validate13.errors);\n\t\terrors = vErrors.length;\n\t}\n\tvar _valid0 = _errs1 === errors;\n\tvalid0 = valid0 || _valid0;\n\tif (!valid0) {\n\t\tconst _errs2 = errors;\n\t\tif (typeof data !== 'string') {\n\t\t\tconst err0 = {\n\t\t\t\tinstancePath,\n\t\t\t\tschemaPath: '#/anyOf/1/type',\n\t\t\t\tkeyword: 'type',\n\t\t\t\tparams: { type: 'string' },\n\t\t\t\tmessage: 'must be string',\n\t\t\t};\n\t\t\tif (vErrors === null) {\n\t\t\t\tvErrors = [err0];\n\t\t\t} else {\n\t\t\t\tvErrors.push(err0);\n\t\t\t}\n\t\t\terrors++;\n\t\t}\n\t\tif ('7.2' !== data) {\n\t\t\tconst err1 = {\n\t\t\t\tinstancePath,\n\t\t\t\tschemaPath: '#/anyOf/1/const',\n\t\t\t\tkeyword: 'const',\n\t\t\t\tparams: { allowedValue: '7.2' },\n\t\t\t\tmessage: 'must be equal to constant',\n\t\t\t};\n\t\t\tif (vErrors === null) {\n\t\t\t\tvErrors = [err1];\n\t\t\t} else {\n\t\t\t\tvErrors.push(err1);\n\t\t\t}\n\t\t\terrors++;\n\t\t}\n\t\tvar _valid0 = _errs2 === errors;\n\t\tvalid0 = valid0 || _valid0;\n\t\tif (!valid0) {\n\t\t\tconst _errs4 = errors;\n\t\t\tif (typeof data !== 'string') {\n\t\t\t\tconst err2 = {\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/anyOf/2/type',\n\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t};\n\t\t\t\tif (vErrors === null) {\n\t\t\t\t\tvErrors = [err2];\n\t\t\t\t} else {\n\t\t\t\t\tvErrors.push(err2);\n\t\t\t\t}\n\t\t\t\terrors++;\n\t\t\t}\n\t\t\tif ('7.3' !== data) {\n\t\t\t\tconst err3 = {\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/anyOf/2/const',\n\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\tparams: { allowedValue: '7.3' },\n\t\t\t\t\tmessage: 'must be equal to constant',\n\t\t\t\t};\n\t\t\t\tif (vErrors === null) {\n\t\t\t\t\tvErrors = [err3];\n\t\t\t\t} else {\n\t\t\t\t\tvErrors.push(err3);\n\t\t\t\t}\n\t\t\t\terrors++;\n\t\t\t}\n\t\t\tvar _valid0 = _errs4 === errors;\n\t\t\tvalid0 = valid0 || _valid0;\n\t\t}\n\t}\n\tif (!valid0) {\n\t\tconst err4 = {\n\t\t\tinstancePath,\n\t\t\tschemaPath: '#/anyOf',\n\t\t\tkeyword: 'anyOf',\n\t\t\tparams: {},\n\t\t\tmessage: 'must match a schema in anyOf',\n\t\t};\n\t\tif (vErrors === null) {\n\t\t\tvErrors = [err4];\n\t\t} else {\n\t\t\tvErrors.push(err4);\n\t\t}\n\t\terrors++;\n\t\tvalidate12.errors = vErrors;\n\t\treturn false;\n\t} else {\n\t\terrors = _errs0;\n\t\tif (vErrors !== null) {\n\t\t\tif (_errs0) {\n\t\t\t\tvErrors.length = _errs0;\n\t\t\t} else {\n\t\t\t\tvErrors = null;\n\t\t\t}\n\t\t}\n\t}\n\tvalidate12.errors = vErrors;\n\treturn errors === 0;\n}\nconst schema20 = {\n\tanyOf: [\n\t\t{ $ref: '#/definitions/VFSReference' },\n\t\t{ $ref: '#/definitions/LiteralReference' },\n\t\t{ $ref: '#/definitions/CoreThemeReference' },\n\t\t{ $ref: '#/definitions/CorePluginReference' },\n\t\t{ $ref: '#/definitions/UrlReference' },\n\t\t{ $ref: '#/definitions/BundledReference' },\n\t\t{ $ref: '#/definitions/ZipWrapperReference' },\n\t],\n};\nconst schema21 = {\n\ttype: 'object',\n\tproperties: {\n\t\tresource: {\n\t\t\ttype: 'string',\n\t\t\tconst: 'vfs',\n\t\t\tdescription:\n\t\t\t\t'Identifies the file resource as Virtual File System (VFS)',\n\t\t},\n\t\tpath: {\n\t\t\ttype: 'string',\n\t\t\tdescription: 'The path to the file in the VFS',\n\t\t},\n\t},\n\trequired: ['resource', 'path'],\n\tadditionalProperties: false,\n};\nconst schema22 = {\n\ttype: 'object',\n\tproperties: {\n\t\tresource: {\n\t\t\ttype: 'string',\n\t\t\tconst: 'literal',\n\t\t\tdescription: 'Identifies the file resource as a literal file',\n\t\t},\n\t\tname: { type: 'string', description: 'The name of the file' },\n\t\tcontents: {\n\t\t\tanyOf: [\n\t\t\t\t{ type: 'string' },\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tBYTES_PER_ELEMENT: { type: 'number' },\n\t\t\t\t\t\tbuffer: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: { byteLength: { type: 'number' } },\n\t\t\t\t\t\t\trequired: ['byteLength'],\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\tbyteOffset: { type: 'number' },\n\t\t\t\t\t\tlength: { type: 'number' },\n\t\t\t\t\t},\n\t\t\t\t\trequired: [\n\t\t\t\t\t\t'BYTES_PER_ELEMENT',\n\t\t\t\t\t\t'buffer',\n\t\t\t\t\t\t'byteLength',\n\t\t\t\t\t\t'byteOffset',\n\t\t\t\t\t\t'length',\n\t\t\t\t\t],\n\t\t\t\t\tadditionalProperties: { type: 'number' },\n\t\t\t\t},\n\t\t\t],\n\t\t\tdescription: 'The contents of the file',\n\t\t},\n\t},\n\trequired: ['resource', 'name', 'contents'],\n\tadditionalProperties: false,\n};\nconst schema23 = {\n\ttype: 'object',\n\tproperties: {\n\t\tresource: {\n\t\t\ttype: 'string',\n\t\t\tconst: 'wordpress.org/themes',\n\t\t\tdescription:\n\t\t\t\t'Identifies the file resource as a WordPress Core theme',\n\t\t},\n\t\tslug: {\n\t\t\ttype: 'string',\n\t\t\tdescription: 'The slug of the WordPress Core theme',\n\t\t},\n\t},\n\trequired: ['resource', 'slug'],\n\tadditionalProperties: false,\n};\nconst schema24 = {\n\ttype: 'object',\n\tproperties: {\n\t\tresource: {\n\t\t\ttype: 'string',\n\t\t\tconst: 'wordpress.org/plugins',\n\t\t\tdescription:\n\t\t\t\t'Identifies the file resource as a WordPress Core plugin',\n\t\t},\n\t\tslug: {\n\t\t\ttype: 'string',\n\t\t\tdescription: 'The slug of the WordPress Core plugin',\n\t\t},\n\t},\n\trequired: ['resource', 'slug'],\n\tadditionalProperties: false,\n};\nconst schema25 = {\n\ttype: 'object',\n\tproperties: {\n\t\tresource: {\n\t\t\ttype: 'string',\n\t\t\tconst: 'url',\n\t\t\tdescription: 'Identifies the file resource as a URL',\n\t\t},\n\t\turl: { type: 'string', description: 'The URL of the file' },\n\t\tcaption: {\n\t\t\ttype: 'string',\n\t\t\tdescription: 'Optional caption for displaying a progress message',\n\t\t},\n\t},\n\trequired: ['resource', 'url'],\n\tadditionalProperties: false,\n};\nconst schema26 = {\n\ttype: 'object',\n\tproperties: {\n\t\tresource: {\n\t\t\ttype: 'string',\n\t\t\tconst: 'bundled',\n\t\t\tdescription: 'Identifies the file resource as a Blueprint file',\n\t\t},\n\t\tpath: {\n\t\t\ttype: 'string',\n\t\t\tdescription: 'The path to the file in the Blueprint',\n\t\t},\n\t},\n\trequired: ['resource', 'path'],\n\tadditionalProperties: false,\n};\nconst schema27 = {\n\ttype: 'object',\n\tproperties: {\n\t\tresource: {\n\t\t\ttype: 'string',\n\t\t\tconst: 'zip',\n\t\t\tdescription: 'Identifies the resource as a ZIP wrapper',\n\t\t},\n\t\tinner: {\n\t\t\tanyOf: [\n\t\t\t\t{ $ref: '#/definitions/FileReference' },\n\t\t\t\t{ $ref: '#/definitions/DirectoryReference' },\n\t\t\t],\n\t\t\tdescription: 'The inner resource to wrap in a ZIP file',\n\t\t},\n\t\tname: {\n\t\t\ttype: 'string',\n\t\t\tdescription:\n\t\t\t\t'Optional filename for the ZIP (defaults to inner resource name + .zip)',\n\t\t},\n\t},\n\trequired: ['resource', 'inner'],\n\tadditionalProperties: false,\n};\nconst wrapper0 = { validate: validate16 };\nconst schema28 = {\n\tanyOf: [\n\t\t{ $ref: '#/definitions/GitDirectoryReference' },\n\t\t{ $ref: '#/definitions/DirectoryLiteralReference' },\n\t],\n};\nconst schema29 = {\n\ttype: 'object',\n\tproperties: {\n\t\tresource: {\n\t\t\ttype: 'string',\n\t\t\tconst: 'git:directory',\n\t\t\tdescription: 'Identifies the file resource as a git directory',\n\t\t},\n\t\turl: { type: 'string', description: 'The URL of the git repository' },\n\t\tref: {\n\t\t\ttype: 'string',\n\t\t\tdescription:\n\t\t\t\t'The ref (branch, tag, or commit) of the git repository',\n\t\t},\n\t\trefType: {\n\t\t\t$ref: '#/definitions/GitDirectoryRefType',\n\t\t\tdescription:\n\t\t\t\t'Explicit hint about the ref type (branch, tag, commit, refname)',\n\t\t},\n\t\tpath: {\n\t\t\ttype: 'string',\n\t\t\tdescription:\n\t\t\t\t'The path to the directory in the git repository. Defaults to the repo root.',\n\t\t},\n\t\t'.git': {\n\t\t\ttype: 'boolean',\n\t\t\tdescription:\n\t\t\t\t'When true, include a `.git` directory with Git metadata (experimental).',\n\t\t},\n\t},\n\trequired: ['resource', 'url', 'ref'],\n\tadditionalProperties: false,\n};\nconst schema30 = {\n\ttype: 'string',\n\tenum: ['branch', 'tag', 'commit', 'refname'],\n};\nfunction validate19(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tif (errors === 0) {\n\t\tif (data && typeof data == 'object' && !Array.isArray(data)) {\n\t\t\tlet missing0;\n\t\t\tif (\n\t\t\t\t(data.resource === undefined && (missing0 = 'resource')) ||\n\t\t\t\t(data.url === undefined && (missing0 = 'url')) ||\n\t\t\t\t(data.ref === undefined && (missing0 = 'ref'))\n\t\t\t) {\n\t\t\t\tvalidate19.errors = [\n\t\t\t\t\t{\n\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\tschemaPath: '#/required',\n\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\tparams: { missingProperty: missing0 },\n\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\"must have required property '\" + missing0 + \"'\",\n\t\t\t\t\t},\n\t\t\t\t];\n\t\t\t\treturn false;\n\t\t\t} else {\n\t\t\t\tconst _errs1 = errors;\n\t\t\t\tfor (const key0 in data) {\n\t\t\t\t\tif (\n\t\t\t\t\t\t!(\n\t\t\t\t\t\t\tkey0 === 'resource' ||\n\t\t\t\t\t\t\tkey0 === 'url' ||\n\t\t\t\t\t\t\tkey0 === 'ref' ||\n\t\t\t\t\t\t\tkey0 === 'refType' ||\n\t\t\t\t\t\t\tkey0 === 'path' ||\n\t\t\t\t\t\t\tkey0 === '.git'\n\t\t\t\t\t\t)\n\t\t\t\t\t) {\n\t\t\t\t\t\tvalidate19.errors = [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\tschemaPath: '#/additionalProperties',\n\t\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\t\tparams: { additionalProperty: key0 },\n\t\t\t\t\t\t\t\tmessage: 'must NOT have additional properties',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t];\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (_errs1 === errors) {\n\t\t\t\t\tif (data.resource !== undefined) {\n\t\t\t\t\t\tlet data0 = data.resource;\n\t\t\t\t\t\tconst _errs2 = errors;\n\t\t\t\t\t\tif (typeof data0 !== 'string') {\n\t\t\t\t\t\t\tvalidate19.errors = [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/resource',\n\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/resource/type',\n\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ('git:directory' !== data0) {\n\t\t\t\t\t\t\tvalidate19.errors = [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/resource',\n\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/resource/const',\n\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\tparams: { allowedValue: 'git:directory' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be equal to constant',\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tvar valid0 = _errs2 === errors;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t}\n\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\tif (data.url !== undefined) {\n\t\t\t\t\t\t\tconst _errs4 = errors;\n\t\t\t\t\t\t\tif (typeof data.url !== 'string') {\n\t\t\t\t\t\t\t\tvalidate19.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/url',\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/url/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tvar valid0 = _errs4 === errors;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\tif (data.ref !== undefined) {\n\t\t\t\t\t\t\t\tconst _errs6 = errors;\n\t\t\t\t\t\t\t\tif (typeof data.ref !== 'string') {\n\t\t\t\t\t\t\t\t\tvalidate19.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/ref',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/ref/type',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tvar valid0 = _errs6 === errors;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\tif (data.refType !== undefined) {\n\t\t\t\t\t\t\t\t\tlet data3 = data.refType;\n\t\t\t\t\t\t\t\t\tconst _errs8 = errors;\n\t\t\t\t\t\t\t\t\tif (typeof data3 !== 'string') {\n\t\t\t\t\t\t\t\t\t\tvalidate19.errors = [\n\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/refType',\n\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/GitDirectoryRefType/type',\n\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\tdata3 === 'branch' ||\n\t\t\t\t\t\t\t\t\t\t\tdata3 === 'tag' ||\n\t\t\t\t\t\t\t\t\t\t\tdata3 === 'commit' ||\n\t\t\t\t\t\t\t\t\t\t\tdata3 === 'refname'\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tvalidate19.errors = [\n\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/refType',\n\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/GitDirectoryRefType/enum',\n\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'enum',\n\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValues:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tschema30.enum,\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to one of the allowed values',\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tvar valid0 = _errs8 === errors;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\tif (data.path !== undefined) {\n\t\t\t\t\t\t\t\t\t\tconst _errs11 = errors;\n\t\t\t\t\t\t\t\t\t\tif (typeof data.path !== 'string') {\n\t\t\t\t\t\t\t\t\t\t\tvalidate19.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/path',\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/path/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tvar valid0 = _errs11 === errors;\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\t\tif (data['.git'] !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tconst _errs13 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\ttypeof data['.git'] !==\n\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\tvalidate19.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/.git',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/.git/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid0 = _errs13 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tvalidate19.errors = [\n\t\t\t\t{\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/type',\n\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t},\n\t\t\t];\n\t\t\treturn false;\n\t\t}\n\t}\n\tvalidate19.errors = vErrors;\n\treturn errors === 0;\n}\nconst schema31 = {\n\ttype: 'object',\n\tadditionalProperties: false,\n\tproperties: {\n\t\tresource: {\n\t\t\ttype: 'string',\n\t\t\tconst: 'literal:directory',\n\t\t\tdescription: 'Identifies the file resource as a git directory',\n\t\t},\n\t\tfiles: { $ref: '#/definitions/FileTree' },\n\t\tname: { type: 'string' },\n\t},\n\trequired: ['files', 'name', 'resource'],\n};\nconst schema32 = {\n\ttype: 'object',\n\tadditionalProperties: {\n\t\tanyOf: [\n\t\t\t{ $ref: '#/definitions/FileTree' },\n\t\t\t{ type: ['object', 'string'] },\n\t\t],\n\t},\n\tproperties: {},\n};\nconst wrapper1 = { validate: validate22 };\nfunction validate22(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tif (errors === 0) {\n\t\tif (data && typeof data == 'object' && !Array.isArray(data)) {\n\t\t\tfor (const key0 in data) {\n\t\t\t\tlet data0 = data[key0];\n\t\t\t\tconst _errs2 = errors;\n\t\t\t\tconst _errs3 = errors;\n\t\t\t\tlet valid1 = false;\n\t\t\t\tconst _errs4 = errors;\n\t\t\t\tif (\n\t\t\t\t\t!wrapper1.validate(data0, {\n\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t'/' +\n\t\t\t\t\t\t\tkey0.replace(/~/g, '~0').replace(/\\//g, '~1'),\n\t\t\t\t\t\tparentData: data,\n\t\t\t\t\t\tparentDataProperty: key0,\n\t\t\t\t\t\trootData,\n\t\t\t\t\t})\n\t\t\t\t) {\n\t\t\t\t\tvErrors =\n\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t? wrapper1.validate.errors\n\t\t\t\t\t\t\t: vErrors.concat(wrapper1.validate.errors);\n\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t}\n\t\t\t\tvar _valid0 = _errs4 === errors;\n\t\t\t\tvalid1 = valid1 || _valid0;\n\t\t\t\tif (!valid1) {\n\t\t\t\t\tconst _errs5 = errors;\n\t\t\t\t\tif (\n\t\t\t\t\t\t!(\n\t\t\t\t\t\t\tdata0 &&\n\t\t\t\t\t\t\ttypeof data0 == 'object' &&\n\t\t\t\t\t\t\t!Array.isArray(data0)\n\t\t\t\t\t\t) &&\n\t\t\t\t\t\ttypeof data0 !== 'string'\n\t\t\t\t\t) {\n\t\t\t\t\t\tconst err0 = {\n\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t'/' +\n\t\t\t\t\t\t\t\tkey0.replace(/~/g, '~0').replace(/\\//g, '~1'),\n\t\t\t\t\t\t\tschemaPath: '#/additionalProperties/anyOf/1/type',\n\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\ttype: schema32.additionalProperties.anyOf[1]\n\t\t\t\t\t\t\t\t\t.type,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tmessage: 'must be object,string',\n\t\t\t\t\t\t};\n\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\tvErrors = [err0];\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvErrors.push(err0);\n\t\t\t\t\t\t}\n\t\t\t\t\t\terrors++;\n\t\t\t\t\t}\n\t\t\t\t\tvar _valid0 = _errs5 === errors;\n\t\t\t\t\tvalid1 = valid1 || _valid0;\n\t\t\t\t}\n\t\t\t\tif (!valid1) {\n\t\t\t\t\tconst err1 = {\n\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t'/' +\n\t\t\t\t\t\t\tkey0.replace(/~/g, '~0').replace(/\\//g, '~1'),\n\t\t\t\t\t\tschemaPath: '#/additionalProperties/anyOf',\n\t\t\t\t\t\tkeyword: 'anyOf',\n\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\tmessage: 'must match a schema in anyOf',\n\t\t\t\t\t};\n\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\tvErrors = [err1];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvErrors.push(err1);\n\t\t\t\t\t}\n\t\t\t\t\terrors++;\n\t\t\t\t\tvalidate22.errors = vErrors;\n\t\t\t\t\treturn false;\n\t\t\t\t} else {\n\t\t\t\t\terrors = _errs3;\n\t\t\t\t\tif (vErrors !== null) {\n\t\t\t\t\t\tif (_errs3) {\n\t\t\t\t\t\t\tvErrors.length = _errs3;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvErrors = null;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tvar valid0 = _errs2 === errors;\n\t\t\t\tif (!valid0) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tvalidate22.errors = [\n\t\t\t\t{\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/type',\n\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t},\n\t\t\t];\n\t\t\treturn false;\n\t\t}\n\t}\n\tvalidate22.errors = vErrors;\n\treturn errors === 0;\n}\nfunction validate21(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tif (errors === 0) {\n\t\tif (data && typeof data == 'object' && !Array.isArray(data)) {\n\t\t\tlet missing0;\n\t\t\tif (\n\t\t\t\t(data.files === undefined && (missing0 = 'files')) ||\n\t\t\t\t(data.name === undefined && (missing0 = 'name')) ||\n\t\t\t\t(data.resource === undefined && (missing0 = 'resource'))\n\t\t\t) {\n\t\t\t\tvalidate21.errors = [\n\t\t\t\t\t{\n\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\tschemaPath: '#/required',\n\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\tparams: { missingProperty: missing0 },\n\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\"must have required property '\" + missing0 + \"'\",\n\t\t\t\t\t},\n\t\t\t\t];\n\t\t\t\treturn false;\n\t\t\t} else {\n\t\t\t\tconst _errs1 = errors;\n\t\t\t\tfor (const key0 in data) {\n\t\t\t\t\tif (\n\t\t\t\t\t\t!(\n\t\t\t\t\t\t\tkey0 === 'resource' ||\n\t\t\t\t\t\t\tkey0 === 'files' ||\n\t\t\t\t\t\t\tkey0 === 'name'\n\t\t\t\t\t\t)\n\t\t\t\t\t) {\n\t\t\t\t\t\tvalidate21.errors = [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\tschemaPath: '#/additionalProperties',\n\t\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\t\tparams: { additionalProperty: key0 },\n\t\t\t\t\t\t\t\tmessage: 'must NOT have additional properties',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t];\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (_errs1 === errors) {\n\t\t\t\t\tif (data.resource !== undefined) {\n\t\t\t\t\t\tlet data0 = data.resource;\n\t\t\t\t\t\tconst _errs2 = errors;\n\t\t\t\t\t\tif (typeof data0 !== 'string') {\n\t\t\t\t\t\t\tvalidate21.errors = [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/resource',\n\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/resource/type',\n\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ('literal:directory' !== data0) {\n\t\t\t\t\t\t\tvalidate21.errors = [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/resource',\n\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/resource/const',\n\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\tallowedValue: 'literal:directory',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\tmessage: 'must be equal to constant',\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tvar valid0 = _errs2 === errors;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t}\n\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\tif (data.files !== undefined) {\n\t\t\t\t\t\t\tconst _errs4 = errors;\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t!validate22(data.files, {\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/files',\n\t\t\t\t\t\t\t\t\tparentData: data,\n\t\t\t\t\t\t\t\t\tparentDataProperty: 'files',\n\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t? validate22.errors\n\t\t\t\t\t\t\t\t\t\t: vErrors.concat(validate22.errors);\n\t\t\t\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tvar valid0 = _errs4 === errors;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\tif (data.name !== undefined) {\n\t\t\t\t\t\t\t\tconst _errs5 = errors;\n\t\t\t\t\t\t\t\tif (typeof data.name !== 'string') {\n\t\t\t\t\t\t\t\t\tvalidate21.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/name',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/name/type',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tvar valid0 = _errs5 === errors;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tvalidate21.errors = [\n\t\t\t\t{\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/type',\n\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t},\n\t\t\t];\n\t\t\treturn false;\n\t\t}\n\t}\n\tvalidate21.errors = vErrors;\n\treturn errors === 0;\n}\nfunction validate18(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tconst _errs0 = errors;\n\tlet valid0 = false;\n\tconst _errs1 = errors;\n\tif (\n\t\t!validate19(data, {\n\t\t\tinstancePath,\n\t\t\tparentData,\n\t\t\tparentDataProperty,\n\t\t\trootData,\n\t\t})\n\t) {\n\t\tvErrors =\n\t\t\tvErrors === null\n\t\t\t\t? validate19.errors\n\t\t\t\t: vErrors.concat(validate19.errors);\n\t\terrors = vErrors.length;\n\t}\n\tvar _valid0 = _errs1 === errors;\n\tvalid0 = valid0 || _valid0;\n\tif (!valid0) {\n\t\tconst _errs2 = errors;\n\t\tif (\n\t\t\t!validate21(data, {\n\t\t\t\tinstancePath,\n\t\t\t\tparentData,\n\t\t\t\tparentDataProperty,\n\t\t\t\trootData,\n\t\t\t})\n\t\t) {\n\t\t\tvErrors =\n\t\t\t\tvErrors === null\n\t\t\t\t\t? validate21.errors\n\t\t\t\t\t: vErrors.concat(validate21.errors);\n\t\t\terrors = vErrors.length;\n\t\t}\n\t\tvar _valid0 = _errs2 === errors;\n\t\tvalid0 = valid0 || _valid0;\n\t}\n\tif (!valid0) {\n\t\tconst err0 = {\n\t\t\tinstancePath,\n\t\t\tschemaPath: '#/anyOf',\n\t\t\tkeyword: 'anyOf',\n\t\t\tparams: {},\n\t\t\tmessage: 'must match a schema in anyOf',\n\t\t};\n\t\tif (vErrors === null) {\n\t\t\tvErrors = [err0];\n\t\t} else {\n\t\t\tvErrors.push(err0);\n\t\t}\n\t\terrors++;\n\t\tvalidate18.errors = vErrors;\n\t\treturn false;\n\t} else {\n\t\terrors = _errs0;\n\t\tif (vErrors !== null) {\n\t\t\tif (_errs0) {\n\t\t\t\tvErrors.length = _errs0;\n\t\t\t} else {\n\t\t\t\tvErrors = null;\n\t\t\t}\n\t\t}\n\t}\n\tvalidate18.errors = vErrors;\n\treturn errors === 0;\n}\nfunction validate17(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tif (errors === 0) {\n\t\tif (data && typeof data == 'object' && !Array.isArray(data)) {\n\t\t\tlet missing0;\n\t\t\tif (\n\t\t\t\t(data.resource === undefined && (missing0 = 'resource')) ||\n\t\t\t\t(data.inner === undefined && (missing0 = 'inner'))\n\t\t\t) {\n\t\t\t\tvalidate17.errors = [\n\t\t\t\t\t{\n\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\tschemaPath: '#/required',\n\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\tparams: { missingProperty: missing0 },\n\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\"must have required property '\" + missing0 + \"'\",\n\t\t\t\t\t},\n\t\t\t\t];\n\t\t\t\treturn false;\n\t\t\t} else {\n\t\t\t\tconst _errs1 = errors;\n\t\t\t\tfor (const key0 in data) {\n\t\t\t\t\tif (\n\t\t\t\t\t\t!(\n\t\t\t\t\t\t\tkey0 === 'resource' ||\n\t\t\t\t\t\t\tkey0 === 'inner' ||\n\t\t\t\t\t\t\tkey0 === 'name'\n\t\t\t\t\t\t)\n\t\t\t\t\t) {\n\t\t\t\t\t\tvalidate17.errors = [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\tschemaPath: '#/additionalProperties',\n\t\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\t\tparams: { additionalProperty: key0 },\n\t\t\t\t\t\t\t\tmessage: 'must NOT have additional properties',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t];\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (_errs1 === errors) {\n\t\t\t\t\tif (data.resource !== undefined) {\n\t\t\t\t\t\tlet data0 = data.resource;\n\t\t\t\t\t\tconst _errs2 = errors;\n\t\t\t\t\t\tif (typeof data0 !== 'string') {\n\t\t\t\t\t\t\tvalidate17.errors = [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/resource',\n\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/resource/type',\n\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ('zip' !== data0) {\n\t\t\t\t\t\t\tvalidate17.errors = [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/resource',\n\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/resource/const',\n\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\tparams: { allowedValue: 'zip' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be equal to constant',\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tvar valid0 = _errs2 === errors;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t}\n\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\tif (data.inner !== undefined) {\n\t\t\t\t\t\t\tlet data1 = data.inner;\n\t\t\t\t\t\t\tconst _errs4 = errors;\n\t\t\t\t\t\t\tconst _errs5 = errors;\n\t\t\t\t\t\t\tlet valid1 = false;\n\t\t\t\t\t\t\tconst _errs6 = errors;\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t!wrapper0.validate(data1, {\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/inner',\n\t\t\t\t\t\t\t\t\tparentData: data,\n\t\t\t\t\t\t\t\t\tparentDataProperty: 'inner',\n\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t? wrapper0.validate.errors\n\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\twrapper0.validate.errors\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tvar _valid0 = _errs6 === errors;\n\t\t\t\t\t\t\tvalid1 = valid1 || _valid0;\n\t\t\t\t\t\t\tif (!valid1) {\n\t\t\t\t\t\t\t\tconst _errs7 = errors;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t!validate18(data1, {\n\t\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/inner',\n\t\t\t\t\t\t\t\t\t\tparentData: data,\n\t\t\t\t\t\t\t\t\t\tparentDataProperty: 'inner',\n\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t? validate18.errors\n\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(validate18.errors);\n\t\t\t\t\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tvar _valid0 = _errs7 === errors;\n\t\t\t\t\t\t\t\tvalid1 = valid1 || _valid0;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (!valid1) {\n\t\t\t\t\t\t\t\tconst err0 = {\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/inner',\n\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/inner/anyOf',\n\t\t\t\t\t\t\t\t\tkeyword: 'anyOf',\n\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\tmessage: 'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\tvErrors = [err0];\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvErrors.push(err0);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\tvalidate17.errors = vErrors;\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\terrors = _errs5;\n\t\t\t\t\t\t\t\tif (vErrors !== null) {\n\t\t\t\t\t\t\t\t\tif (_errs5) {\n\t\t\t\t\t\t\t\t\t\tvErrors.length = _errs5;\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvErrors = null;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tvar valid0 = _errs4 === errors;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\tif (data.name !== undefined) {\n\t\t\t\t\t\t\t\tconst _errs8 = errors;\n\t\t\t\t\t\t\t\tif (typeof data.name !== 'string') {\n\t\t\t\t\t\t\t\t\tvalidate17.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/name',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/name/type',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tvar valid0 = _errs8 === errors;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tvalidate17.errors = [\n\t\t\t\t{\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/type',\n\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t},\n\t\t\t];\n\t\t\treturn false;\n\t\t}\n\t}\n\tvalidate17.errors = vErrors;\n\treturn errors === 0;\n}\nfunction validate16(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tconst _errs0 = errors;\n\tlet valid0 = false;\n\tconst _errs1 = errors;\n\tconst _errs2 = errors;\n\tif (errors === _errs2) {\n\t\tif (data && typeof data == 'object' && !Array.isArray(data)) {\n\t\t\tlet missing0;\n\t\t\tif (\n\t\t\t\t(data.resource === undefined && (missing0 = 'resource')) ||\n\t\t\t\t(data.path === undefined && (missing0 = 'path'))\n\t\t\t) {\n\t\t\t\tconst err0 = {\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/definitions/VFSReference/required',\n\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\tparams: { missingProperty: missing0 },\n\t\t\t\t\tmessage: \"must have required property '\" + missing0 + \"'\",\n\t\t\t\t};\n\t\t\t\tif (vErrors === null) {\n\t\t\t\t\tvErrors = [err0];\n\t\t\t\t} else {\n\t\t\t\t\tvErrors.push(err0);\n\t\t\t\t}\n\t\t\t\terrors++;\n\t\t\t} else {\n\t\t\t\tconst _errs4 = errors;\n\t\t\t\tfor (const key0 in data) {\n\t\t\t\t\tif (!(key0 === 'resource' || key0 === 'path')) {\n\t\t\t\t\t\tconst err1 = {\n\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t'#/definitions/VFSReference/additionalProperties',\n\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\tparams: { additionalProperty: key0 },\n\t\t\t\t\t\t\tmessage: 'must NOT have additional properties',\n\t\t\t\t\t\t};\n\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\tvErrors = [err1];\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvErrors.push(err1);\n\t\t\t\t\t\t}\n\t\t\t\t\t\terrors++;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (_errs4 === errors) {\n\t\t\t\t\tif (data.resource !== undefined) {\n\t\t\t\t\t\tlet data0 = data.resource;\n\t\t\t\t\t\tconst _errs5 = errors;\n\t\t\t\t\t\tif (typeof data0 !== 'string') {\n\t\t\t\t\t\t\tconst err2 = {\n\t\t\t\t\t\t\t\tinstancePath: instancePath + '/resource',\n\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t'#/definitions/VFSReference/properties/resource/type',\n\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\tvErrors = [err2];\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvErrors.push(err2);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ('vfs' !== data0) {\n\t\t\t\t\t\t\tconst err3 = {\n\t\t\t\t\t\t\t\tinstancePath: instancePath + '/resource',\n\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t'#/definitions/VFSReference/properties/resource/const',\n\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\tparams: { allowedValue: 'vfs' },\n\t\t\t\t\t\t\t\tmessage: 'must be equal to constant',\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\tvErrors = [err3];\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvErrors.push(err3);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tvar valid2 = _errs5 === errors;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar valid2 = true;\n\t\t\t\t\t}\n\t\t\t\t\tif (valid2) {\n\t\t\t\t\t\tif (data.path !== undefined) {\n\t\t\t\t\t\t\tconst _errs7 = errors;\n\t\t\t\t\t\t\tif (typeof data.path !== 'string') {\n\t\t\t\t\t\t\t\tconst err4 = {\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/path',\n\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t'#/definitions/VFSReference/properties/path/type',\n\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\tvErrors = [err4];\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvErrors.push(err4);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tvar valid2 = _errs7 === errors;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvar valid2 = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tconst err5 = {\n\t\t\t\tinstancePath,\n\t\t\t\tschemaPath: '#/definitions/VFSReference/type',\n\t\t\t\tkeyword: 'type',\n\t\t\t\tparams: { type: 'object' },\n\t\t\t\tmessage: 'must be object',\n\t\t\t};\n\t\t\tif (vErrors === null) {\n\t\t\t\tvErrors = [err5];\n\t\t\t} else {\n\t\t\t\tvErrors.push(err5);\n\t\t\t}\n\t\t\terrors++;\n\t\t}\n\t}\n\tvar _valid0 = _errs1 === errors;\n\tvalid0 = valid0 || _valid0;\n\tif (!valid0) {\n\t\tconst _errs9 = errors;\n\t\tconst _errs10 = errors;\n\t\tif (errors === _errs10) {\n\t\t\tif (data && typeof data == 'object' && !Array.isArray(data)) {\n\t\t\t\tlet missing1;\n\t\t\t\tif (\n\t\t\t\t\t(data.resource === undefined && (missing1 = 'resource')) ||\n\t\t\t\t\t(data.name === undefined && (missing1 = 'name')) ||\n\t\t\t\t\t(data.contents === undefined && (missing1 = 'contents'))\n\t\t\t\t) {\n\t\t\t\t\tconst err6 = {\n\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\tschemaPath: '#/definitions/LiteralReference/required',\n\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\tparams: { missingProperty: missing1 },\n\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\"must have required property '\" + missing1 + \"'\",\n\t\t\t\t\t};\n\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\tvErrors = [err6];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvErrors.push(err6);\n\t\t\t\t\t}\n\t\t\t\t\terrors++;\n\t\t\t\t} else {\n\t\t\t\t\tconst _errs12 = errors;\n\t\t\t\t\tfor (const key1 in data) {\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\tkey1 === 'resource' ||\n\t\t\t\t\t\t\t\tkey1 === 'name' ||\n\t\t\t\t\t\t\t\tkey1 === 'contents'\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tconst err7 = {\n\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/additionalProperties',\n\t\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\t\tparams: { additionalProperty: key1 },\n\t\t\t\t\t\t\t\tmessage: 'must NOT have additional properties',\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\tvErrors = [err7];\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvErrors.push(err7);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif (_errs12 === errors) {\n\t\t\t\t\t\tif (data.resource !== undefined) {\n\t\t\t\t\t\t\tlet data2 = data.resource;\n\t\t\t\t\t\t\tconst _errs13 = errors;\n\t\t\t\t\t\t\tif (typeof data2 !== 'string') {\n\t\t\t\t\t\t\t\tconst err8 = {\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/resource',\n\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/resource/type',\n\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\tvErrors = [err8];\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvErrors.push(err8);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif ('literal' !== data2) {\n\t\t\t\t\t\t\t\tconst err9 = {\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/resource',\n\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/resource/const',\n\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\tparams: { allowedValue: 'literal' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be equal to constant',\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\tvErrors = [err9];\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvErrors.push(err9);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tvar valid4 = _errs13 === errors;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvar valid4 = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (valid4) {\n\t\t\t\t\t\t\tif (data.name !== undefined) {\n\t\t\t\t\t\t\t\tconst _errs15 = errors;\n\t\t\t\t\t\t\t\tif (typeof data.name !== 'string') {\n\t\t\t\t\t\t\t\t\tconst err10 = {\n\t\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/name',\n\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/name/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\tvErrors = [err10];\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvErrors.push(err10);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tvar valid4 = _errs15 === errors;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvar valid4 = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (valid4) {\n\t\t\t\t\t\t\t\tif (data.contents !== undefined) {\n\t\t\t\t\t\t\t\t\tlet data4 = data.contents;\n\t\t\t\t\t\t\t\t\tconst _errs17 = errors;\n\t\t\t\t\t\t\t\t\tconst _errs18 = errors;\n\t\t\t\t\t\t\t\t\tlet valid5 = false;\n\t\t\t\t\t\t\t\t\tconst _errs19 = errors;\n\t\t\t\t\t\t\t\t\tif (typeof data4 !== 'string') {\n\t\t\t\t\t\t\t\t\t\tconst err11 = {\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/contents',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/0/type',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\tvErrors = [err11];\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err11);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tvar _valid1 = _errs19 === errors;\n\t\t\t\t\t\t\t\t\tvalid5 = valid5 || _valid1;\n\t\t\t\t\t\t\t\t\tif (!valid5) {\n\t\t\t\t\t\t\t\t\t\tconst _errs21 = errors;\n\t\t\t\t\t\t\t\t\t\tif (errors === _errs21) {\n\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\tdata4 &&\n\t\t\t\t\t\t\t\t\t\t\t\ttypeof data4 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data4)\n\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet missing2;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t(data4.BYTES_PER_ELEMENT ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t(data4.buffer ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'buffer')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t(data4.byteLength ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t(data4.byteOffset ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteOffset')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t(data4.length ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing2 = 'length'))\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst err12 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contents',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/1/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing2 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err12];\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err12);\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs23 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key2 in data4) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'buffer' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteOffset' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'length'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4[key2];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs24 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data5 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err13 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contents/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/1/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs24 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid6) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs23 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.BYTES_PER_ELEMENT !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.BYTES_PER_ELEMENT;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs26 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data6 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err14 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contents/BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/1/properties/BYTES_PER_ELEMENT/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr14,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr14\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs26 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid7) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.buffer !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.buffer;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs28 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs28\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data7 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet missing3;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7.byteLength ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength')\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err15 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contents/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/1/properties/buffer/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing3 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr15,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr15\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs30 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key3 in data7) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err16 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contents/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/1/properties/buffer/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr16\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs30 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7.byteLength !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data8 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7.byteLength;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data8 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata8\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err17 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contents/buffer/byteLength',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/1/properties/buffer/properties/byteLength/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr17\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contents/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/1/properties/buffer/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr18,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr18\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs28 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid7) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.byteLength !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data9 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.byteLength;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs33 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data9 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata9\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err19 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contents/byteLength',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/1/properties/byteLength/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr19,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr19\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs33 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid7) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.byteOffset !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data10 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.byteOffset;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs35 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data10 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata10\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err20 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contents/byteOffset',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/1/properties/byteOffset/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr20\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs35 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid7\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.length !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs37 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data11 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata11\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contents/length',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/1/properties/length/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr21,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr21\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs37 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tconst err22 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contents',\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf/1/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err22];\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err22);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tvar _valid1 = _errs21 === errors;\n\t\t\t\t\t\t\t\t\t\tvalid5 = valid5 || _valid1;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (!valid5) {\n\t\t\t\t\t\t\t\t\t\tconst err23 = {\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/contents',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/LiteralReference/properties/contents/anyOf',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'anyOf',\n\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\tvErrors = [err23];\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err23);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\terrors = _errs18;\n\t\t\t\t\t\t\t\t\t\tif (vErrors !== null) {\n\t\t\t\t\t\t\t\t\t\t\tif (_errs18) {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length = _errs18;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors = null;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tvar valid4 = _errs17 === errors;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvar valid4 = true;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tconst err24 = {\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/definitions/LiteralReference/type',\n\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t};\n\t\t\t\tif (vErrors === null) {\n\t\t\t\t\tvErrors = [err24];\n\t\t\t\t} else {\n\t\t\t\t\tvErrors.push(err24);\n\t\t\t\t}\n\t\t\t\terrors++;\n\t\t\t}\n\t\t}\n\t\tvar _valid0 = _errs9 === errors;\n\t\tvalid0 = valid0 || _valid0;\n\t\tif (!valid0) {\n\t\t\tconst _errs39 = errors;\n\t\t\tconst _errs40 = errors;\n\t\t\tif (errors === _errs40) {\n\t\t\t\tif (data && typeof data == 'object' && !Array.isArray(data)) {\n\t\t\t\t\tlet missing4;\n\t\t\t\t\tif (\n\t\t\t\t\t\t(data.resource === undefined &&\n\t\t\t\t\t\t\t(missing4 = 'resource')) ||\n\t\t\t\t\t\t(data.slug === undefined && (missing4 = 'slug'))\n\t\t\t\t\t) {\n\t\t\t\t\t\tconst err25 = {\n\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t'#/definitions/CoreThemeReference/required',\n\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\tparams: { missingProperty: missing4 },\n\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\tmissing4 +\n\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t};\n\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\tvErrors = [err25];\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvErrors.push(err25);\n\t\t\t\t\t\t}\n\t\t\t\t\t\terrors++;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tconst _errs42 = errors;\n\t\t\t\t\t\tfor (const key4 in data) {\n\t\t\t\t\t\t\tif (!(key4 === 'resource' || key4 === 'slug')) {\n\t\t\t\t\t\t\t\tconst err26 = {\n\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t'#/definitions/CoreThemeReference/additionalProperties',\n\t\t\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\t\t\tparams: { additionalProperty: key4 },\n\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\tvErrors = [err26];\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvErrors.push(err26);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (_errs42 === errors) {\n\t\t\t\t\t\t\tif (data.resource !== undefined) {\n\t\t\t\t\t\t\t\tlet data12 = data.resource;\n\t\t\t\t\t\t\t\tconst _errs43 = errors;\n\t\t\t\t\t\t\t\tif (typeof data12 !== 'string') {\n\t\t\t\t\t\t\t\t\tconst err27 = {\n\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/resource',\n\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t'#/definitions/CoreThemeReference/properties/resource/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\tvErrors = [err27];\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvErrors.push(err27);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif ('wordpress.org/themes' !== data12) {\n\t\t\t\t\t\t\t\t\tconst err28 = {\n\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/resource',\n\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t'#/definitions/CoreThemeReference/properties/resource/const',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t'wordpress.org/themes',\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be equal to constant',\n\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\tvErrors = [err28];\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvErrors.push(err28);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tvar valid10 = _errs43 === errors;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvar valid10 = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (valid10) {\n\t\t\t\t\t\t\t\tif (data.slug !== undefined) {\n\t\t\t\t\t\t\t\t\tconst _errs45 = errors;\n\t\t\t\t\t\t\t\t\tif (typeof data.slug !== 'string') {\n\t\t\t\t\t\t\t\t\t\tconst err29 = {\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/slug',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/CoreThemeReference/properties/slug/type',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\tvErrors = [err29];\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err29);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tvar valid10 = _errs45 === errors;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvar valid10 = true;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tconst err30 = {\n\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\tschemaPath: '#/definitions/CoreThemeReference/type',\n\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t};\n\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\tvErrors = [err30];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvErrors.push(err30);\n\t\t\t\t\t}\n\t\t\t\t\terrors++;\n\t\t\t\t}\n\t\t\t}\n\t\t\tvar _valid0 = _errs39 === errors;\n\t\t\tvalid0 = valid0 || _valid0;\n\t\t\tif (!valid0) {\n\t\t\t\tconst _errs47 = errors;\n\t\t\t\tconst _errs48 = errors;\n\t\t\t\tif (errors === _errs48) {\n\t\t\t\t\tif (\n\t\t\t\t\t\tdata &&\n\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t) {\n\t\t\t\t\t\tlet missing5;\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t(data.resource === undefined &&\n\t\t\t\t\t\t\t\t(missing5 = 'resource')) ||\n\t\t\t\t\t\t\t(data.slug === undefined && (missing5 = 'slug'))\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tconst err31 = {\n\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t'#/definitions/CorePluginReference/required',\n\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\tparams: { missingProperty: missing5 },\n\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\tmissing5 +\n\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\tvErrors = [err31];\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvErrors.push(err31);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tconst _errs50 = errors;\n\t\t\t\t\t\t\tfor (const key5 in data) {\n\t\t\t\t\t\t\t\tif (!(key5 === 'resource' || key5 === 'slug')) {\n\t\t\t\t\t\t\t\t\tconst err32 = {\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t'#/definitions/CorePluginReference/additionalProperties',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\t\t\t\tparams: { additionalProperty: key5 },\n\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\tvErrors = [err32];\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvErrors.push(err32);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (_errs50 === errors) {\n\t\t\t\t\t\t\t\tif (data.resource !== undefined) {\n\t\t\t\t\t\t\t\t\tlet data14 = data.resource;\n\t\t\t\t\t\t\t\t\tconst _errs51 = errors;\n\t\t\t\t\t\t\t\t\tif (typeof data14 !== 'string') {\n\t\t\t\t\t\t\t\t\t\tconst err33 = {\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/resource',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/CorePluginReference/properties/resource/type',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\tvErrors = [err33];\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err33);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif ('wordpress.org/plugins' !== data14) {\n\t\t\t\t\t\t\t\t\t\tconst err34 = {\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/resource',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/CorePluginReference/properties/resource/const',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'wordpress.org/plugins',\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\tvErrors = [err34];\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err34);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tvar valid12 = _errs51 === errors;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvar valid12 = true;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (valid12) {\n\t\t\t\t\t\t\t\t\tif (data.slug !== undefined) {\n\t\t\t\t\t\t\t\t\t\tconst _errs53 = errors;\n\t\t\t\t\t\t\t\t\t\tif (typeof data.slug !== 'string') {\n\t\t\t\t\t\t\t\t\t\t\tconst err35 = {\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/slug',\n\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/CorePluginReference/properties/slug/type',\n\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err35];\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err35);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tvar valid12 = _errs53 === errors;\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvar valid12 = true;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tconst err36 = {\n\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t'#/definitions/CorePluginReference/type',\n\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t};\n\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\tvErrors = [err36];\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvErrors.push(err36);\n\t\t\t\t\t\t}\n\t\t\t\t\t\terrors++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tvar _valid0 = _errs47 === errors;\n\t\t\t\tvalid0 = valid0 || _valid0;\n\t\t\t\tif (!valid0) {\n\t\t\t\t\tconst _errs55 = errors;\n\t\t\t\t\tconst _errs56 = errors;\n\t\t\t\t\tif (errors === _errs56) {\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tlet missing6;\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t(data.resource === undefined &&\n\t\t\t\t\t\t\t\t\t(missing6 = 'resource')) ||\n\t\t\t\t\t\t\t\t(data.url === undefined && (missing6 = 'url'))\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tconst err37 = {\n\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t'#/definitions/UrlReference/required',\n\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\tparams: { missingProperty: missing6 },\n\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\tmissing6 +\n\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\tvErrors = [err37];\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvErrors.push(err37);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tconst _errs58 = errors;\n\t\t\t\t\t\t\t\tfor (const key6 in data) {\n\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\tkey6 === 'resource' ||\n\t\t\t\t\t\t\t\t\t\t\tkey6 === 'url' ||\n\t\t\t\t\t\t\t\t\t\t\tkey6 === 'caption'\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tconst err38 = {\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/UrlReference/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty: key6,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\tvErrors = [err38];\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err38);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (_errs58 === errors) {\n\t\t\t\t\t\t\t\t\tif (data.resource !== undefined) {\n\t\t\t\t\t\t\t\t\t\tlet data16 = data.resource;\n\t\t\t\t\t\t\t\t\t\tconst _errs59 = errors;\n\t\t\t\t\t\t\t\t\t\tif (typeof data16 !== 'string') {\n\t\t\t\t\t\t\t\t\t\t\tconst err39 = {\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/resource',\n\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/UrlReference/properties/resource/type',\n\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err39];\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err39);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif ('url' !== data16) {\n\t\t\t\t\t\t\t\t\t\t\tconst err40 = {\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/resource',\n\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/UrlReference/properties/resource/const',\n\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\tparams: { allowedValue: 'url' },\n\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err40];\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err40);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tvar valid14 = _errs59 === errors;\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvar valid14 = true;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (valid14) {\n\t\t\t\t\t\t\t\t\t\tif (data.url !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tconst _errs61 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (typeof data.url !== 'string') {\n\t\t\t\t\t\t\t\t\t\t\t\tconst err41 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/url',\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/UrlReference/properties/url/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err41];\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err41);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid14 = _errs61 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid14 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid14) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.caption !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs63 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst err42 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/UrlReference/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err42];\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err42);\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid14 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs63 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid14 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tconst err43 = {\n\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\tschemaPath: '#/definitions/UrlReference/type',\n\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\tvErrors = [err43];\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvErrors.push(err43);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tvar _valid0 = _errs55 === errors;\n\t\t\t\t\tvalid0 = valid0 || _valid0;\n\t\t\t\t\tif (!valid0) {\n\t\t\t\t\t\tconst _errs65 = errors;\n\t\t\t\t\t\tconst _errs66 = errors;\n\t\t\t\t\t\tif (errors === _errs66) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing7;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.resource === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing7 = 'resource')) ||\n\t\t\t\t\t\t\t\t\t(data.path === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing7 = 'path'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tconst err44 = {\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t'#/definitions/BundledReference/required',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\tparams: { missingProperty: missing7 },\n\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\tmissing7 +\n\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\tvErrors = [err44];\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvErrors.push(err44);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs68 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key7 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey7 === 'resource' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey7 === 'path'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tconst err45 = {\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/BundledReference/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty: key7,\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err45];\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err45);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs68 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.resource !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data19 = data.resource;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs69 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (typeof data19 !== 'string') {\n\t\t\t\t\t\t\t\t\t\t\t\tconst err46 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/resource',\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/BundledReference/properties/resource/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err46];\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err46);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif ('bundled' !== data19) {\n\t\t\t\t\t\t\t\t\t\t\t\tconst err47 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/resource',\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/BundledReference/properties/resource/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue: 'bundled',\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err47];\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err47);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid16 = _errs69 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid16 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid16) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.path !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs71 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.path !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst err48 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/path',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/BundledReference/properties/path/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err48];\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err48);\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid16 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs71 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid16 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tconst err49 = {\n\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t'#/definitions/BundledReference/type',\n\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\tvErrors = [err49];\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvErrors.push(err49);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tvar _valid0 = _errs65 === errors;\n\t\t\t\t\t\tvalid0 = valid0 || _valid0;\n\t\t\t\t\t\tif (!valid0) {\n\t\t\t\t\t\t\tconst _errs73 = errors;\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t!validate17(data, {\n\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\tparentData,\n\t\t\t\t\t\t\t\t\tparentDataProperty,\n\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t? validate17.errors\n\t\t\t\t\t\t\t\t\t\t: vErrors.concat(validate17.errors);\n\t\t\t\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tvar _valid0 = _errs73 === errors;\n\t\t\t\t\t\t\tvalid0 = valid0 || _valid0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\tif (!valid0) {\n\t\tconst err50 = {\n\t\t\tinstancePath,\n\t\t\tschemaPath: '#/anyOf',\n\t\t\tkeyword: 'anyOf',\n\t\t\tparams: {},\n\t\t\tmessage: 'must match a schema in anyOf',\n\t\t};\n\t\tif (vErrors === null) {\n\t\t\tvErrors = [err50];\n\t\t} else {\n\t\t\tvErrors.push(err50);\n\t\t}\n\t\terrors++;\n\t\tvalidate16.errors = vErrors;\n\t\treturn false;\n\t} else {\n\t\terrors = _errs0;\n\t\tif (vErrors !== null) {\n\t\t\tif (_errs0) {\n\t\t\t\tvErrors.length = _errs0;\n\t\t\t} else {\n\t\t\t\tvErrors = null;\n\t\t\t}\n\t\t}\n\t}\n\tvalidate16.errors = vErrors;\n\treturn errors === 0;\n}\nconst schema33 = {\n\ttype: 'object',\n\tdiscriminator: { propertyName: 'step' },\n\trequired: ['step'],\n\toneOf: [\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'activatePlugin' },\n\t\t\t\tpluginPath: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Path to the plugin directory as absolute path (/wordpress/wp-content/plugins/plugin-name); or the plugin entry file relative to the plugins directory (plugin-name/plugin-name.php).',\n\t\t\t\t},\n\t\t\t\tpluginName: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Optional. Plugin name to display in the progress bar.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['pluginPath', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'activateTheme' },\n\t\t\t\tthemeFolderName: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The name of the theme folder inside wp-content/themes/',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['step', 'themeFolderName'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'cp' },\n\t\t\t\tfromPath: { type: 'string', description: 'Source path' },\n\t\t\t\ttoPath: { type: 'string', description: 'Target path' },\n\t\t\t},\n\t\t\trequired: ['fromPath', 'step', 'toPath'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'defineWpConfigConsts' },\n\t\t\t\tconsts: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: {},\n\t\t\t\t\tdescription: 'The constants to define',\n\t\t\t\t},\n\t\t\t\tmethod: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tenum: ['rewrite-wp-config', 'define-before-run'],\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t\"The method of defining the constants in wp-config.php. Possible values are:\\n\\n- rewrite-wp-config: Default. Rewrites the wp-config.php file to                      explicitly call define() with the requested                      name and value. This method alters the file                      on the disk, but it doesn't conflict with                      existing define() calls in wp-config.php.\\n\\n- define-before-run: Defines the constant before running the requested                      script. It doesn't alter any files on the disk, but                      constants defined this way may conflict with existing                      define() calls in wp-config.php.\",\n\t\t\t\t},\n\t\t\t\tvirtualize: {\n\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\tdeprecated:\n\t\t\t\t\t\t'This option is noop and will be removed in a future version.\\nThis option is only kept in here to avoid breaking Blueprint schema validation\\nfor existing apps using this option.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['consts', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'defineSiteUrl' },\n\t\t\t\tsiteUrl: { type: 'string', description: 'The URL' },\n\t\t\t},\n\t\t\trequired: ['siteUrl', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'enableMultisite' },\n\t\t\t\twpCliPath: { type: 'string', description: 'wp-cli.phar path' },\n\t\t\t},\n\t\t\trequired: ['step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'importWxr' },\n\t\t\t\tfile: {\n\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\tdescription: 'The file to import',\n\t\t\t\t},\n\t\t\t\tfetchAttachments: {\n\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Whether to fetch and import attachment files referenced by the WXR file.',\n\t\t\t\t\tdefault: true,\n\t\t\t\t},\n\t\t\t\trewriteUrls: {\n\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Whether to rewrite imported URLs to the current site URL.',\n\t\t\t\t\tdefault: true,\n\t\t\t\t},\n\t\t\t\turlMapping: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: { type: 'string' },\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Explicit URL replacements to apply when URL rewriting is enabled.',\n\t\t\t\t},\n\t\t\t\timportComments: {\n\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Whether to import comments from the WXR file.',\n\t\t\t\t\tdefault: true,\n\t\t\t\t},\n\t\t\t\tdefaultAuthorUsername: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The fallback local user for imported authors that cannot be mapped.',\n\t\t\t\t\tdefault: 'admin',\n\t\t\t\t},\n\t\t\t\tauthorsMode: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tenum: ['create', 'default-author', 'map'],\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'How to assign imported WXR authors to local WordPress users.',\n\t\t\t\t\tdefault: 'default-author',\n\t\t\t\t},\n\t\t\t\tauthorsMap: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: { type: 'string' },\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Remote WXR author usernames keyed to existing local usernames.',\n\t\t\t\t},\n\t\t\t\timportUsers: {\n\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Whether to create local users for imported WXR authors.',\n\t\t\t\t\tdefault: false,\n\t\t\t\t},\n\t\t\t\timporter: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tenum: ['data-liberation', 'default'],\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The importer to use. Possible values:\\n\\n- `default`: The importer from https://github.com/humanmade/WordPress-Importer\\n- `data-liberation`: The experimental Data Liberation WXR importer developed at                      https://github.com/WordPress/wordpress-playground/issues/1894\\n\\nThis option is deprecated. The syntax will not be removed, but once the Data Liberation importer matures, it will become the only supported importer and the `importer` option will be ignored.',\n\t\t\t\t\tdeprecated: true,\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['file', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'importThemeStarterContent',\n\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t},\n\t\t\t\tthemeSlug: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The name of the theme to import content from.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'importWordPressFiles' },\n\t\t\t\twordPressFilesZip: {\n\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The zip file containing the top-level WordPress files and directories.',\n\t\t\t\t},\n\t\t\t\tpathInZip: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The path inside the zip file where the WordPress files are.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['step', 'wordPressFilesZip'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tifAlreadyInstalled: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tenum: ['overwrite', 'skip', 'error'],\n\t\t\t\t\tdescription: 'What to do if the asset already exists.',\n\t\t\t\t},\n\t\t\t\tstep: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'installPlugin',\n\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t},\n\t\t\t\tpluginData: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ $ref: '#/definitions/FileReference' },\n\t\t\t\t\t\t{ $ref: '#/definitions/DirectoryReference' },\n\t\t\t\t\t],\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The plugin files to install. It can be a plugin zip file, a single PHP file, or a directory containing all the plugin files at its root.',\n\t\t\t\t},\n\t\t\t\tpluginZipFile: {\n\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\tdeprecated: \". Use 'pluginData' instead.\",\n\t\t\t\t},\n\t\t\t\toptions: {\n\t\t\t\t\t$ref: '#/definitions/InstallPluginOptions',\n\t\t\t\t\tdescription: 'Optional installation options.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['pluginData', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tifAlreadyInstalled: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tenum: ['overwrite', 'skip', 'error'],\n\t\t\t\t\tdescription: 'What to do if the asset already exists.',\n\t\t\t\t},\n\t\t\t\tstep: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'installTheme',\n\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t},\n\t\t\t\tthemeData: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ $ref: '#/definitions/FileReference' },\n\t\t\t\t\t\t{ $ref: '#/definitions/DirectoryReference' },\n\t\t\t\t\t],\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The theme files to install. It can be either a theme zip file, or a directory containing all the theme files at its root.',\n\t\t\t\t},\n\t\t\t\tthemeZipFile: {\n\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\tdeprecated: \". Use 'themeData' instead.\",\n\t\t\t\t},\n\t\t\t\toptions: {\n\t\t\t\t\t$ref: '#/definitions/InstallThemeOptions',\n\t\t\t\t\tdescription: 'Optional installation options.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['step', 'themeData'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'login' },\n\t\t\t\tusername: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: \"The user to log in as. Defaults to 'admin'.\",\n\t\t\t\t},\n\t\t\t\tpassword: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdeprecated:\n\t\t\t\t\t\t'The password field is deprecated and will be removed in a future version.\\nOnly the username field is required for user authentication.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'mkdir' },\n\t\t\t\tpath: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'The path of the directory you want to create',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['path', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'mv' },\n\t\t\t\tfromPath: { type: 'string', description: 'Source path' },\n\t\t\t\ttoPath: { type: 'string', description: 'Target path' },\n\t\t\t},\n\t\t\trequired: ['fromPath', 'step', 'toPath'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'resetData' },\n\t\t\t\tcontentTypes: {\n\t\t\t\t\ttype: 'array',\n\t\t\t\t\titems: {\n\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\tenum: ['posts', 'pages', 'comments'],\n\t\t\t\t\t},\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Content types to remove. When omitted, all posts, pages, custom post types, and comments are removed.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'request' },\n\t\t\t\trequest: {\n\t\t\t\t\t$ref: '#/definitions/PHPRequest',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Request details (See /wordpress-playground/api/universal/interface/PHPRequest)',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['request', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'rm' },\n\t\t\t\tpath: { type: 'string', description: 'The path to remove' },\n\t\t\t},\n\t\t\trequired: ['path', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'rmdir' },\n\t\t\t\tpath: { type: 'string', description: 'The path to remove' },\n\t\t\t},\n\t\t\trequired: ['path', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'runPHP',\n\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t},\n\t\t\t\tcode: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tfilename: {\n\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\tdescription:\n\t\t\t\t\t\t\t\t\t\t'This property is ignored during Blueprint v1 execution but exists so the same runPHP step structure can be used for Blueprints v1 and v2.',\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tcontent: { type: 'string' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\trequired: ['filename', 'content'],\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\tdescription: 'The PHP code to run.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['code', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'runPHPWithOptions' },\n\t\t\t\toptions: {\n\t\t\t\t\t$ref: '#/definitions/PHPRunOptions',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'Run options (See /wordpress-playground/api/universal/interface/PHPRunOptions/))',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['options', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'runWpInstallationWizard' },\n\t\t\t\toptions: { $ref: '#/definitions/WordPressInstallationOptions' },\n\t\t\t},\n\t\t\trequired: ['options', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'runSql',\n\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t},\n\t\t\t\tsql: {\n\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The SQL to run. Each non-empty line must contain a valid SQL query.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['sql', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'setSiteOptions',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'The name of the step. Must be \"setSiteOptions\".',\n\t\t\t\t},\n\t\t\t\toptions: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: {},\n\t\t\t\t\tdescription: 'The options to set on the site.',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['options', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'unzip' },\n\t\t\t\tzipFile: {\n\t\t\t\t\t$ref: '#/definitions/FileReference',\n\t\t\t\t\tdescription: 'The zip file to extract',\n\t\t\t\t},\n\t\t\t\tzipPath: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'The path of the zip file to extract',\n\t\t\t\t\tdeprecated: 'Use zipFile instead.',\n\t\t\t\t},\n\t\t\t\textractToPath: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'The path to extract the zip file to',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['extractToPath', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'updateUserMeta' },\n\t\t\t\tmeta: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: {},\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t'An object of user meta values to set, e.g. { \"first_name\": \"John\" }',\n\t\t\t\t},\n\t\t\t\tuserId: { type: 'number', description: 'User ID' },\n\t\t\t},\n\t\t\trequired: ['meta', 'step', 'userId'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'writeFile' },\n\t\t\t\tpath: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'The path of the file to write to',\n\t\t\t\t},\n\t\t\t\tdata: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ $ref: '#/definitions/FileReference' },\n\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\tBYTES_PER_ELEMENT: { type: 'number' },\n\t\t\t\t\t\t\t\tbuffer: {\n\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\trequired: ['byteLength'],\n\t\t\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\tbyteOffset: { type: 'number' },\n\t\t\t\t\t\t\t\tlength: { type: 'number' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\trequired: [\n\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t'buffer',\n\t\t\t\t\t\t\t\t'byteLength',\n\t\t\t\t\t\t\t\t'byteOffset',\n\t\t\t\t\t\t\t\t'length',\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\tadditionalProperties: { type: 'number' },\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\tdescription: 'The data to write',\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['data', 'path', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'writeFiles' },\n\t\t\t\twriteToPath: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: 'The path of the file to write to',\n\t\t\t\t},\n\t\t\t\tfilesTree: {\n\t\t\t\t\t$ref: '#/definitions/DirectoryReference',\n\t\t\t\t\tdescription:\n\t\t\t\t\t\t\"The 'filesTree' defines the directory structure, supporting 'literal:directory' or 'git:directory' types. The 'name' represents the root directory, while 'files' is an object where keys are file paths, and values contain either file content as a string or nested objects for subdirectories.\",\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['filesTree', 'step', 'writeToPath'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tconst: 'wp-cli',\n\t\t\t\t\tdescription: 'The step identifier.',\n\t\t\t\t},\n\t\t\t\tcommand: {\n\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t{ type: 'array', items: { type: 'string' } },\n\t\t\t\t\t],\n\t\t\t\t\tdescription: 'The WP CLI command to run.',\n\t\t\t\t},\n\t\t\t\twpCliPath: { type: 'string', description: 'wp-cli.phar path' },\n\t\t\t},\n\t\t\trequired: ['command', 'step'],\n\t\t},\n\t\t{\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: false,\n\t\t\tproperties: {\n\t\t\t\tprogress: {\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tweight: { type: 'number' },\n\t\t\t\t\t\tcaption: { type: 'string' },\n\t\t\t\t\t},\n\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t},\n\t\t\t\tstep: { type: 'string', const: 'setSiteLanguage' },\n\t\t\t\tlanguage: {\n\t\t\t\t\ttype: 'string',\n\t\t\t\t\tdescription: \"The language to set, e.g. 'en_US'\",\n\t\t\t\t},\n\t\t\t},\n\t\t\trequired: ['language', 'step'],\n\t\t},\n\t],\n};\nconst schema34 = {\n\ttype: 'object',\n\tproperties: {\n\t\tactivate: {\n\t\t\ttype: 'boolean',\n\t\t\tdescription: 'Whether to activate the plugin after installing it.',\n\t\t},\n\t\tactivationOptions: {\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: {},\n\t\t\tdescription:\n\t\t\t\t'Parameters to expose to the plugin during its activation hook.',\n\t\t},\n\t\tonError: {\n\t\t\ttype: 'string',\n\t\t\tenum: ['skip-plugin', 'throw'],\n\t\t\tdescription:\n\t\t\t\t'Whether installation/activation failures should abort the Blueprint.',\n\t\t},\n\t\ttargetFolderName: {\n\t\t\ttype: 'string',\n\t\t\tdescription:\n\t\t\t\t'The name of the folder to install the plugin to. Defaults to guessing from pluginData',\n\t\t},\n\t\thumanReadableName: {\n\t\t\ttype: 'string',\n\t\t\tdescription:\n\t\t\t\t'Human-readable plugin name for progress captions and skip warnings.',\n\t\t},\n\t},\n\tadditionalProperties: false,\n};\nconst schema35 = {\n\ttype: 'object',\n\tproperties: {\n\t\tactivate: {\n\t\t\ttype: 'boolean',\n\t\t\tdescription: 'Whether to activate the theme after installing it.',\n\t\t},\n\t\timportStarterContent: {\n\t\t\ttype: 'boolean',\n\t\t\tdescription:\n\t\t\t\t\"Whether to import the theme's starter content after installing it.\",\n\t\t},\n\t\tonError: {\n\t\t\ttype: 'string',\n\t\t\tenum: ['skip-theme', 'throw'],\n\t\t\tdescription:\n\t\t\t\t'Whether installation, activation, or starter-content failures should abort the Blueprint.',\n\t\t},\n\t\ttargetFolderName: {\n\t\t\ttype: 'string',\n\t\t\tdescription:\n\t\t\t\t'The name of the folder to install the theme to. Defaults to guessing from themeData',\n\t\t},\n\t\thumanReadableName: {\n\t\t\ttype: 'string',\n\t\t\tdescription:\n\t\t\t\t'Human-readable theme name for the progress caption and skip warning.',\n\t\t},\n\t},\n\tadditionalProperties: false,\n};\nconst schema42 = {\n\ttype: 'object',\n\tproperties: {\n\t\tadminUsername: { type: 'string' },\n\t\tadminPassword: { type: 'string' },\n\t},\n\tadditionalProperties: false,\n};\nconst schema36 = {\n\ttype: 'object',\n\tproperties: {\n\t\tmethod: {\n\t\t\t$ref: '#/definitions/HTTPMethod',\n\t\t\tdescription: 'Request method. Default: `GET`.',\n\t\t},\n\t\turl: { type: 'string', description: 'Request path or absolute URL.' },\n\t\theaders: {\n\t\t\t$ref: '#/definitions/PHPRequestHeaders',\n\t\t\tdescription: 'Request headers.',\n\t\t},\n\t\tbody: {\n\t\t\tanyOf: [\n\t\t\t\t{ type: 'string' },\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tBYTES_PER_ELEMENT: { type: 'number' },\n\t\t\t\t\t\tbuffer: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: { byteLength: { type: 'number' } },\n\t\t\t\t\t\t\trequired: ['byteLength'],\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\tbyteOffset: { type: 'number' },\n\t\t\t\t\t\tlength: { type: 'number' },\n\t\t\t\t\t},\n\t\t\t\t\trequired: [\n\t\t\t\t\t\t'BYTES_PER_ELEMENT',\n\t\t\t\t\t\t'buffer',\n\t\t\t\t\t\t'byteLength',\n\t\t\t\t\t\t'byteOffset',\n\t\t\t\t\t\t'length',\n\t\t\t\t\t],\n\t\t\t\t\tadditionalProperties: { type: 'number' },\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tadditionalProperties: {\n\t\t\t\t\t\tanyOf: [\n\t\t\t\t\t\t\t{ type: 'string' },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\tBYTES_PER_ELEMENT: { type: 'number' },\n\t\t\t\t\t\t\t\t\tbuffer: {\n\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\trequired: ['byteLength'],\n\t\t\t\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\t\t\t\tbyteOffset: { type: 'number' },\n\t\t\t\t\t\t\t\t\tlength: { type: 'number' },\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\trequired: [\n\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t\t'buffer',\n\t\t\t\t\t\t\t\t\t'byteLength',\n\t\t\t\t\t\t\t\t\t'byteOffset',\n\t\t\t\t\t\t\t\t\t'length',\n\t\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t\tadditionalProperties: { type: 'number' },\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\tproperties: {\n\t\t\t\t\t\t\t\t\tsize: { type: 'number' },\n\t\t\t\t\t\t\t\t\ttype: { type: 'string' },\n\t\t\t\t\t\t\t\t\tlastModified: { type: 'number' },\n\t\t\t\t\t\t\t\t\tname: { type: 'string' },\n\t\t\t\t\t\t\t\t\twebkitRelativePath: { type: 'string' },\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\trequired: [\n\t\t\t\t\t\t\t\t\t'lastModified',\n\t\t\t\t\t\t\t\t\t'name',\n\t\t\t\t\t\t\t\t\t'size',\n\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t'webkitRelativePath',\n\t\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t],\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t\tdescription:\n\t\t\t\t'Request body. If an object is given, the request will be encoded as multipart and sent with a `multipart/form-data` header.',\n\t\t},\n\t},\n\trequired: ['url'],\n\tadditionalProperties: false,\n};\nconst schema37 = {\n\ttype: 'string',\n\tenum: ['GET', 'POST', 'HEAD', 'OPTIONS', 'PATCH', 'PUT', 'DELETE'],\n};\nconst schema38 = { type: 'object', additionalProperties: { type: 'string' } };\nfunction validate37(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tif (errors === 0) {\n\t\tif (data && typeof data == 'object' && !Array.isArray(data)) {\n\t\t\tlet missing0;\n\t\t\tif (data.url === undefined && (missing0 = 'url')) {\n\t\t\t\tvalidate37.errors = [\n\t\t\t\t\t{\n\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\tschemaPath: '#/required',\n\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\tparams: { missingProperty: missing0 },\n\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\"must have required property '\" + missing0 + \"'\",\n\t\t\t\t\t},\n\t\t\t\t];\n\t\t\t\treturn false;\n\t\t\t} else {\n\t\t\t\tconst _errs1 = errors;\n\t\t\t\tfor (const key0 in data) {\n\t\t\t\t\tif (\n\t\t\t\t\t\t!(\n\t\t\t\t\t\t\tkey0 === 'method' ||\n\t\t\t\t\t\t\tkey0 === 'url' ||\n\t\t\t\t\t\t\tkey0 === 'headers' ||\n\t\t\t\t\t\t\tkey0 === 'body'\n\t\t\t\t\t\t)\n\t\t\t\t\t) {\n\t\t\t\t\t\tvalidate37.errors = [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\tschemaPath: '#/additionalProperties',\n\t\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\t\tparams: { additionalProperty: key0 },\n\t\t\t\t\t\t\t\tmessage: 'must NOT have additional properties',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t];\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (_errs1 === errors) {\n\t\t\t\t\tif (data.method !== undefined) {\n\t\t\t\t\t\tlet data0 = data.method;\n\t\t\t\t\t\tconst _errs2 = errors;\n\t\t\t\t\t\tif (typeof data0 !== 'string') {\n\t\t\t\t\t\t\tvalidate37.errors = [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/method',\n\t\t\t\t\t\t\t\t\tschemaPath: '#/definitions/HTTPMethod/type',\n\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\tdata0 === 'GET' ||\n\t\t\t\t\t\t\t\tdata0 === 'POST' ||\n\t\t\t\t\t\t\t\tdata0 === 'HEAD' ||\n\t\t\t\t\t\t\t\tdata0 === 'OPTIONS' ||\n\t\t\t\t\t\t\t\tdata0 === 'PATCH' ||\n\t\t\t\t\t\t\t\tdata0 === 'PUT' ||\n\t\t\t\t\t\t\t\tdata0 === 'DELETE'\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tvalidate37.errors = [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/method',\n\t\t\t\t\t\t\t\t\tschemaPath: '#/definitions/HTTPMethod/enum',\n\t\t\t\t\t\t\t\t\tkeyword: 'enum',\n\t\t\t\t\t\t\t\t\tparams: { allowedValues: schema37.enum },\n\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t'must be equal to one of the allowed values',\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tvar valid0 = _errs2 === errors;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t}\n\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\tif (data.url !== undefined) {\n\t\t\t\t\t\t\tconst _errs5 = errors;\n\t\t\t\t\t\t\tif (typeof data.url !== 'string') {\n\t\t\t\t\t\t\t\tvalidate37.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/url',\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/url/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tvar valid0 = _errs5 === errors;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\tif (data.headers !== undefined) {\n\t\t\t\t\t\t\t\tlet data2 = data.headers;\n\t\t\t\t\t\t\t\tconst _errs7 = errors;\n\t\t\t\t\t\t\t\tconst _errs8 = errors;\n\t\t\t\t\t\t\t\tif (errors === _errs8) {\n\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\tdata2 &&\n\t\t\t\t\t\t\t\t\t\ttypeof data2 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t!Array.isArray(data2)\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tfor (const key1 in data2) {\n\t\t\t\t\t\t\t\t\t\t\tconst _errs11 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\ttypeof data2[key1] !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\tvalidate37.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/headers/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey1\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/PHPRequestHeaders/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid3 = _errs11 === errors;\n\t\t\t\t\t\t\t\t\t\t\tif (!valid3) {\n\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvalidate37.errors = [\n\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/headers',\n\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/PHPRequestHeaders/type',\n\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tvar valid0 = _errs7 === errors;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\tif (data.body !== undefined) {\n\t\t\t\t\t\t\t\t\tlet data4 = data.body;\n\t\t\t\t\t\t\t\t\tconst _errs13 = errors;\n\t\t\t\t\t\t\t\t\tconst _errs14 = errors;\n\t\t\t\t\t\t\t\t\tlet valid4 = false;\n\t\t\t\t\t\t\t\t\tconst _errs15 = errors;\n\t\t\t\t\t\t\t\t\tif (typeof data4 !== 'string') {\n\t\t\t\t\t\t\t\t\t\tconst err0 = {\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/body',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/0/type',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\tvErrors = [err0];\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err0);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tvar _valid0 = _errs15 === errors;\n\t\t\t\t\t\t\t\t\tvalid4 = valid4 || _valid0;\n\t\t\t\t\t\t\t\t\tif (!valid4) {\n\t\t\t\t\t\t\t\t\t\tconst _errs17 = errors;\n\t\t\t\t\t\t\t\t\t\tif (errors === _errs17) {\n\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\tdata4 &&\n\t\t\t\t\t\t\t\t\t\t\t\ttypeof data4 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data4)\n\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet missing1;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t(data4.BYTES_PER_ELEMENT ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t(data4.buffer ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'buffer')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t(data4.byteLength ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t(data4.byteOffset ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteOffset')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t(data4.length ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing1 = 'length'))\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst err1 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing1 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err1];\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err1);\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs19 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key2 in data4) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'buffer' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteOffset' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'length'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4[key2];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs20 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data5 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err2 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr2\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs20 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid5) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs19 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.BYTES_PER_ELEMENT !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.BYTES_PER_ELEMENT;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs22 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data6 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err3 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/BYTES_PER_ELEMENT/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr3\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs22 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid6) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.buffer !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.buffer;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs24 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs24\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data7 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet missing2;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7.byteLength ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength')\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/buffer/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing2 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs26 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key3 in data7) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/buffer/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs26 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7.byteLength !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data8 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7.byteLength;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data8 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata8\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/buffer/byteLength',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/buffer/properties/byteLength/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr6\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/buffer/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr7\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs24 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid6) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.byteLength !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data9 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.byteLength;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs29 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data9 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata9\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err8 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/byteLength',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/byteLength/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr8\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs29 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid6) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.byteOffset !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data10 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.byteOffset;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs31 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data10 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata10\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err9 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/byteOffset',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/byteOffset/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr9\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs31 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid6\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.length !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs33 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data11 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata11\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err10 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/length',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/length/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr10,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr10\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs33 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tconst err11 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/body',\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err11];\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err11);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tvar _valid0 = _errs17 === errors;\n\t\t\t\t\t\t\t\t\t\tvalid4 = valid4 || _valid0;\n\t\t\t\t\t\t\t\t\t\tif (!valid4) {\n\t\t\t\t\t\t\t\t\t\t\tconst _errs35 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs35) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata4 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data4 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data4)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key4 in data4) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data12 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata4[key4];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs38 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs39 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet valid9 = false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs40 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data12 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err12 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/0/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr12,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr12\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs40 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid9 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid9 || _valid1;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid9) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs42 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs42\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data12 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet missing3;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data12.BYTES_PER_ELEMENT ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data12.buffer ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'buffer')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data12.byteLength ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data12.byteOffset ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteOffset')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data12.length ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'length'))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/1/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing3 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs44 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key5 in data12) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'buffer' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteOffset' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'length'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs45 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data13 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err14 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/1/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr14,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr14\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid10 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs45 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid10\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs44 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.BYTES_PER_ELEMENT !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data14 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.BYTES_PER_ELEMENT;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs47 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data14 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata14\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err15 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/1/properties/BYTES_PER_ELEMENT/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr15,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr15\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs47 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid11\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.buffer !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data15 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.buffer;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs49 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs49\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata15 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data15 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata15\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet missing4;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata15.byteLength ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength')\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err16 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/1/properties/buffer/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing4 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr16\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs51 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key6 in data15) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey6 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err17 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/1/properties/buffer/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr17\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs51 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata15.byteLength !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data16 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata15.byteLength;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data16 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata16\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/buffer/byteLength',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/1/properties/buffer/properties/byteLength/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr18,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr18\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err19 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/1/properties/buffer/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr19,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr19\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs49 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid11\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.byteLength !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data17 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.byteLength;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs54 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data17 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata17\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err20 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/byteLength',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/1/properties/byteLength/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr20\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs54 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid11\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.byteOffset !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.byteOffset;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs56 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data18 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata18\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/byteOffset',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/1/properties/byteOffset/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr21,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr21\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs56 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid11\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.length !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data19 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs58 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data19 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata19\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err22 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/length',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/1/properties/length/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr22,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr22\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs58 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err23 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/1/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr23,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr23\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs42 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid9 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid9 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid1;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid9) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs60 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs60\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data12 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet missing5;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data12.lastModified ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'lastModified')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data12.name ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'name')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data12.size ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'size')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data12.type ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data12.webkitRelativePath ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'webkitRelativePath'))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err24 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/2/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing5 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr24,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr24\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs62 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key7 in data12) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey7 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'size' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey7 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey7 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'lastModified' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey7 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'name' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey7 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'webkitRelativePath'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err25 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/2/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr25,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr25\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs62 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.size !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data20 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.size;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs63 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data20 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata20\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err26 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/size',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/2/properties/size/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr26,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr26\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs63 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.type !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs65 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data12.type !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err27 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/2/properties/type/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr27,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr27\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs65 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.lastModified !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data22 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.lastModified;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs67 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data22 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata22\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err28 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/lastModified',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/2/properties/lastModified/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr28,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr28\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs67 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.name !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs69 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data12.name !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err29 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/name',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/2/properties/name/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr29,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr29\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs69 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12.webkitRelativePath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs71 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data12.webkitRelativePath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err30 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/webkitRelativePath',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/2/properties/webkitRelativePath/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr30,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr30\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs71 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err31 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf/2/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr31,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr31\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs60 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid9 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid9 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid1;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid9) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err32 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/additionalProperties/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr32,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr32\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = _errs39;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors !== null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs39) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs39;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid8 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs38 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid8) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst err33 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/2/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err33];\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err33);\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar _valid0 = _errs35 === errors;\n\t\t\t\t\t\t\t\t\t\t\tvalid4 = valid4 || _valid0;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (!valid4) {\n\t\t\t\t\t\t\t\t\t\tconst err34 = {\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/body',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'anyOf',\n\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\tvErrors = [err34];\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err34);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\tvalidate37.errors = vErrors;\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\terrors = _errs14;\n\t\t\t\t\t\t\t\t\t\tif (vErrors !== null) {\n\t\t\t\t\t\t\t\t\t\t\tif (_errs14) {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length = _errs14;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors = null;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tvar valid0 = _errs13 === errors;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tvalidate37.errors = [\n\t\t\t\t{\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/type',\n\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t},\n\t\t\t];\n\t\t\treturn false;\n\t\t}\n\t}\n\tvalidate37.errors = vErrors;\n\treturn errors === 0;\n}\nconst schema39 = {\n\ttype: 'object',\n\tproperties: {\n\t\trelativeUri: {\n\t\t\ttype: 'string',\n\t\t\tdescription:\n\t\t\t\t'Request path following the domain:port part – after any URL rewriting rules (e.g. apache .htaccess) have been applied.',\n\t\t},\n\t\tscriptPath: {\n\t\t\ttype: 'string',\n\t\t\tdescription: 'Path of the .php file to execute.',\n\t\t},\n\t\tprotocol: { type: 'string', description: 'Request protocol.' },\n\t\tmethod: {\n\t\t\t$ref: '#/definitions/HTTPMethod',\n\t\t\tdescription: 'Request method. Default: `GET`.',\n\t\t},\n\t\theaders: {\n\t\t\t$ref: '#/definitions/PHPRequestHeaders',\n\t\t\tdescription: 'Request headers.',\n\t\t},\n\t\tbody: {\n\t\t\tanyOf: [\n\t\t\t\t{ type: 'string' },\n\t\t\t\t{\n\t\t\t\t\ttype: 'object',\n\t\t\t\t\tproperties: {\n\t\t\t\t\t\tBYTES_PER_ELEMENT: { type: 'number' },\n\t\t\t\t\t\tbuffer: {\n\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\tproperties: { byteLength: { type: 'number' } },\n\t\t\t\t\t\t\trequired: ['byteLength'],\n\t\t\t\t\t\t\tadditionalProperties: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t\tbyteLength: { type: 'number' },\n\t\t\t\t\t\tbyteOffset: { type: 'number' },\n\t\t\t\t\t\tlength: { type: 'number' },\n\t\t\t\t\t},\n\t\t\t\t\trequired: [\n\t\t\t\t\t\t'BYTES_PER_ELEMENT',\n\t\t\t\t\t\t'buffer',\n\t\t\t\t\t\t'byteLength',\n\t\t\t\t\t\t'byteOffset',\n\t\t\t\t\t\t'length',\n\t\t\t\t\t],\n\t\t\t\t\tadditionalProperties: { type: 'number' },\n\t\t\t\t},\n\t\t\t],\n\t\t\tdescription: 'Request body.',\n\t\t},\n\t\tenv: {\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: { type: 'string' },\n\t\t\tdescription: 'Environment variables to set for this run.',\n\t\t},\n\t\t$_SERVER: {\n\t\t\ttype: 'object',\n\t\t\tadditionalProperties: { type: 'string' },\n\t\t\tdescription: '$_SERVER entries to set for this run.',\n\t\t},\n\t\tcode: {\n\t\t\ttype: 'string',\n\t\t\tdescription: 'The code snippet to eval instead of a php file.',\n\t\t},\n\t},\n\tadditionalProperties: false,\n};\nfunction validate39(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tif (errors === 0) {\n\t\tif (data && typeof data == 'object' && !Array.isArray(data)) {\n\t\t\tconst _errs1 = errors;\n\t\t\tfor (const key0 in data) {\n\t\t\t\tif (!func2.call(schema39.properties, key0)) {\n\t\t\t\t\tvalidate39.errors = [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\tschemaPath: '#/additionalProperties',\n\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\tparams: { additionalProperty: key0 },\n\t\t\t\t\t\t\tmessage: 'must NOT have additional properties',\n\t\t\t\t\t\t},\n\t\t\t\t\t];\n\t\t\t\t\treturn false;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (_errs1 === errors) {\n\t\t\t\tif (data.relativeUri !== undefined) {\n\t\t\t\t\tconst _errs2 = errors;\n\t\t\t\t\tif (typeof data.relativeUri !== 'string') {\n\t\t\t\t\t\tvalidate39.errors = [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tinstancePath: instancePath + '/relativeUri',\n\t\t\t\t\t\t\t\tschemaPath: '#/properties/relativeUri/type',\n\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t];\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\tvar valid0 = _errs2 === errors;\n\t\t\t\t} else {\n\t\t\t\t\tvar valid0 = true;\n\t\t\t\t}\n\t\t\t\tif (valid0) {\n\t\t\t\t\tif (data.scriptPath !== undefined) {\n\t\t\t\t\t\tconst _errs4 = errors;\n\t\t\t\t\t\tif (typeof data.scriptPath !== 'string') {\n\t\t\t\t\t\t\tvalidate39.errors = [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/scriptPath',\n\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/scriptPath/type',\n\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tvar valid0 = _errs4 === errors;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t}\n\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\tif (data.protocol !== undefined) {\n\t\t\t\t\t\t\tconst _errs6 = errors;\n\t\t\t\t\t\t\tif (typeof data.protocol !== 'string') {\n\t\t\t\t\t\t\t\tvalidate39.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/protocol',\n\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t'#/properties/protocol/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tvar valid0 = _errs6 === errors;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\tif (data.method !== undefined) {\n\t\t\t\t\t\t\t\tlet data3 = data.method;\n\t\t\t\t\t\t\t\tconst _errs8 = errors;\n\t\t\t\t\t\t\t\tif (typeof data3 !== 'string') {\n\t\t\t\t\t\t\t\t\tvalidate39.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/method',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/HTTPMethod/type',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\tdata3 === 'GET' ||\n\t\t\t\t\t\t\t\t\t\tdata3 === 'POST' ||\n\t\t\t\t\t\t\t\t\t\tdata3 === 'HEAD' ||\n\t\t\t\t\t\t\t\t\t\tdata3 === 'OPTIONS' ||\n\t\t\t\t\t\t\t\t\t\tdata3 === 'PATCH' ||\n\t\t\t\t\t\t\t\t\t\tdata3 === 'PUT' ||\n\t\t\t\t\t\t\t\t\t\tdata3 === 'DELETE'\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate39.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/method',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/HTTPMethod/enum',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'enum',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tallowedValues: schema37.enum,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to one of the allowed values',\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tvar valid0 = _errs8 === errors;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\tif (data.headers !== undefined) {\n\t\t\t\t\t\t\t\t\tlet data4 = data.headers;\n\t\t\t\t\t\t\t\t\tconst _errs11 = errors;\n\t\t\t\t\t\t\t\t\tconst _errs12 = errors;\n\t\t\t\t\t\t\t\t\tif (errors === _errs12) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\tdata4 &&\n\t\t\t\t\t\t\t\t\t\t\ttypeof data4 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data4)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tfor (const key1 in data4) {\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs15 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data4[key1] !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate39.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/headers/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey1\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/PHPRequestHeaders/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid3 = _errs15 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (!valid3) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvalidate39.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/headers',\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/PHPRequestHeaders/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tvar valid0 = _errs11 === errors;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\tif (data.body !== undefined) {\n\t\t\t\t\t\t\t\t\t\tlet data6 = data.body;\n\t\t\t\t\t\t\t\t\t\tconst _errs17 = errors;\n\t\t\t\t\t\t\t\t\t\tconst _errs18 = errors;\n\t\t\t\t\t\t\t\t\t\tlet valid4 = false;\n\t\t\t\t\t\t\t\t\t\tconst _errs19 = errors;\n\t\t\t\t\t\t\t\t\t\tif (typeof data6 !== 'string') {\n\t\t\t\t\t\t\t\t\t\t\tconst err0 = {\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/body',\n\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/0/type',\n\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err0];\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err0);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tvar _valid0 = _errs19 === errors;\n\t\t\t\t\t\t\t\t\t\tvalid4 = valid4 || _valid0;\n\t\t\t\t\t\t\t\t\t\tif (!valid4) {\n\t\t\t\t\t\t\t\t\t\t\tconst _errs21 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs21) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata6 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data6 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data6)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet missing0;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data6.BYTES_PER_ELEMENT ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data6.buffer ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'buffer')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data6.byteLength ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data6.byteOffset ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteOffset')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data6.length ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'length'))\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err1 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing0 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err1];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err1);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs23 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key2 in data6) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'buffer' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteOffset' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'length'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6[key2];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs24 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data7 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr2\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs24 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid5) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs23 === errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.BYTES_PER_ELEMENT !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data8 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.BYTES_PER_ELEMENT;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs26 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data8 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata8\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/BYTES_PER_ELEMENT/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr3\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs26 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid6) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.buffer !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data9 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.buffer;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs28 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs28\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata9 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data9 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata9\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet missing1;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata9.byteLength ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength')\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/buffer/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing1 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs30 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key3 in data9) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/buffer/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs30 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata9.byteLength !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data10 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata9.byteLength;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data10 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata10\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/buffer/byteLength',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/buffer/properties/byteLength/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr6\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/buffer/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr7\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs28 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid6) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.byteLength !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.byteLength;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs33 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data11 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata11\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err8 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/byteLength',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/byteLength/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr8\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs33 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid6\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.byteOffset !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data12 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.byteOffset;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs35 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data12 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err9 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/byteOffset',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/byteOffset/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr9\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs35 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid6\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.length !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs37 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data13 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err10 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body/length',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/properties/length/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr10,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr10\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs37 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst err11 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/body',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf/1/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err11];\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err11);\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar _valid0 = _errs21 === errors;\n\t\t\t\t\t\t\t\t\t\t\tvalid4 = valid4 || _valid0;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (!valid4) {\n\t\t\t\t\t\t\t\t\t\t\tconst err12 = {\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/body',\n\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/body/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err12];\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err12);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\tvalidate39.errors = vErrors;\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\terrors = _errs18;\n\t\t\t\t\t\t\t\t\t\t\tif (vErrors !== null) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (_errs18) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length = _errs18;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = null;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tvar valid0 = _errs17 === errors;\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\t\tif (data.env !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data14 = data.env;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs39 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs39) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata14 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data14 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data14)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key4 in data14) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs42 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data14[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t] !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate39.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/env/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/env/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid8 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs42 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid8) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate39.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/env',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/env/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid0 = _errs39 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.$_SERVER !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data16 = data.$_SERVER;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs44 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs44) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata16 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data16 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data16)\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key5 in data16) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs47 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data16[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t] !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate39.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/$_SERVER/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/%24_SERVER/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid9 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs47 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid9) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate39.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/$_SERVER',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/%24_SERVER/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 = _errs44 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.code !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs49 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.code !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate39.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/code',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/code/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs49 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tvalidate39.errors = [\n\t\t\t\t{\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/type',\n\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t},\n\t\t\t];\n\t\t\treturn false;\n\t\t}\n\t}\n\tvalidate39.errors = vErrors;\n\treturn errors === 0;\n}\nfunction validate28(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tif (errors === 0) {\n\t\tif (data && typeof data == 'object' && !Array.isArray(data)) {\n\t\t\tlet missing0;\n\t\t\tif (data.step === undefined && (missing0 = 'step')) {\n\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t{\n\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\tschemaPath: '#/required',\n\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\tparams: { missingProperty: missing0 },\n\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\"must have required property '\" + missing0 + \"'\",\n\t\t\t\t\t},\n\t\t\t\t];\n\t\t\t\treturn false;\n\t\t\t} else {\n\t\t\t\tconst tag0 = data.step;\n\t\t\t\tif (typeof tag0 == 'string') {\n\t\t\t\t\tif (tag0 === 'activatePlugin') {\n\t\t\t\t\t\tconst _errs2 = errors;\n\t\t\t\t\t\tif (errors === _errs2) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing1;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.pluginPath === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing1 = 'pluginPath')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing1 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/0/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing1,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing1 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs4 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key0 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey0 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey0 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey0 === 'pluginPath' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey0 === 'pluginName'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/0/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs4 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data0 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs5 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs5) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata0 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data0 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data0)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs7 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key1 in data0) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey1 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey1 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/0/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs7 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata0.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata0.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs8 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data1 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata1\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/0/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs8 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid3 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid3) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata0.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs10 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data0.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/0/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs10 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid3 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/0/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid2 = _errs5 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid2 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid2) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data3 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs12 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (typeof data3 !== 'string') {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/0/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t'activatePlugin' !== data3\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/0/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'activatePlugin',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid2 = _errs12 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid2 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid2) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.pluginPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs14 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.pluginPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/pluginPath',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/0/properties/pluginPath/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs14 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid2 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid2) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.pluginName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs16 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.pluginName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/pluginName',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/0/properties/pluginName/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs16 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid2 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/0/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'activateTheme') {\n\t\t\t\t\t\tconst _errs18 = errors;\n\t\t\t\t\t\tif (errors === _errs18) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing2;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing2 = 'step')) ||\n\t\t\t\t\t\t\t\t\t(data.themeFolderName === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing2 = 'themeFolderName'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/1/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing2,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing2 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs20 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key2 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey2 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey2 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey2 === 'themeFolderName'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/1/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs20 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data6 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs21 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs21) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata6 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data6 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data6)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs23 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key3 in data6) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/1/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs23 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs24 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data7 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata7\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/1/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs24 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid6) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs26 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data6.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/1/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs26 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/1/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid5 = _errs21 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid5 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid5) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data9 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs28 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (typeof data9 !== 'string') {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/1/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('activateTheme' !== data9) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/1/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'activateTheme',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid5 = _errs28 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid5 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid5) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.themeFolderName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs30 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.themeFolderName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/themeFolderName',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/1/properties/themeFolderName/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs30 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid5 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/1/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'cp') {\n\t\t\t\t\t\tconst _errs32 = errors;\n\t\t\t\t\t\tif (errors === _errs32) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing3;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.fromPath === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing3 = 'fromPath')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing3 = 'step')) ||\n\t\t\t\t\t\t\t\t\t(data.toPath === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing3 = 'toPath'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/2/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing3,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing3 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs34 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key4 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey4 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey4 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey4 === 'fromPath' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey4 === 'toPath'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/2/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs34 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data11 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs35 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs35) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata11 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data11 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data11)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs37 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key5 in data11) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/2/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs37 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata11.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data12 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata11.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs38 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data12 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata12\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/2/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid9 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs38 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid9 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid9) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata11.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs40 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data11.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/2/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid9 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs40 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid9 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/2/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid8 = _errs35 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid8 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid8) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data14 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs42 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data14 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/2/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('cp' !== data14) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/2/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'cp',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid8 = _errs42 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid8 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid8) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.fromPath !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs44 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.fromPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/fromPath',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/2/properties/fromPath/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid8 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs44 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid8 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid8) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.toPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs46 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.toPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/toPath',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/2/properties/toPath/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid8 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs46 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid8 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/2/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'defineWpConfigConsts') {\n\t\t\t\t\t\tconst _errs48 = errors;\n\t\t\t\t\t\tif (errors === _errs48) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing4;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.consts === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing4 = 'consts')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing4 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/3/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing4,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing4 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs50 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key6 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey6 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey6 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey6 === 'consts' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey6 === 'method' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey6 === 'virtualize'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/3/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs50 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data17 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs51 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs51) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata17 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data17 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data17)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs53 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key7 in data17) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey7 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey7 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/3/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs53 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata17.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata17.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs54 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data18 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata18\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/3/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid12 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs54 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid12 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid12) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata17.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs56 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data17.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/3/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid12 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs56 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid12 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/3/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid11 = _errs51 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid11 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid11) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data20 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs58 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data20 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/3/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t'defineWpConfigConsts' !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata20\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/3/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'defineWpConfigConsts',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs58 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid11) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.consts !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data21 = data.consts;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs60 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs60) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata21 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data21 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata21\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key8 in data21) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs63 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs63 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid13) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/consts',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/3/properties/consts/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs60 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid11) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.method !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data23 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.method;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs64 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data23 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/method',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/3/properties/method/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata23 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'rewrite-wp-config' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata23 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'define-before-run'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/method',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/3/properties/method/enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValues:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschema33\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.oneOf[3]\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.properties\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.method\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.enum,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to one of the allowed values',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs64 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid11) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.virtualize !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs66 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.virtualize !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/virtualize',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/3/properties/virtualize/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs66 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/3/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'defineSiteUrl') {\n\t\t\t\t\t\tconst _errs68 = errors;\n\t\t\t\t\t\tif (errors === _errs68) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing5;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.siteUrl === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing5 = 'siteUrl')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing5 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/4/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing5,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing5 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs70 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key9 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey9 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey9 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey9 === 'siteUrl'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/4/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs70 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data25 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs71 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs71) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata25 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data25 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data25)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs73 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key10 in data25) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey10 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey10 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/4/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey10,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs73 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata25.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data26 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata25.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs74 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data26 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata26\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/4/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid16 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs74 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid16 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid16) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata25.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs76 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data25.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/4/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid16 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs76 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid16 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/4/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid15 = _errs71 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid15 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid15) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data28 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs78 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data28 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/4/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t'defineSiteUrl' !== data28\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/4/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'defineSiteUrl',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid15 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs78 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid15 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid15) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.siteUrl !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs80 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.siteUrl !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/siteUrl',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/4/properties/siteUrl/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid15 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs80 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid15 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/4/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'enableMultisite') {\n\t\t\t\t\t\tconst _errs82 = errors;\n\t\t\t\t\t\tif (errors === _errs82) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing6;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\tdata.step === undefined &&\n\t\t\t\t\t\t\t\t\t(missing6 = 'step')\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/5/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing6,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing6 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs84 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key11 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey11 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey11 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey11 === 'wpCliPath'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/5/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey11,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs84 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data30 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs85 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs85) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata30 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data30 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data30)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs87 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key12 in data30) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey12 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey12 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/5/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey12,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs87 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata30.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data31 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata30.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs88 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data31 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata31\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/5/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid19 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs88 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid19 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid19) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata30.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs90 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data30.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/5/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid19 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs90 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid19 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/5/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid18 = _errs85 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid18 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid18) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data33 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs92 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data33 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/5/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t'enableMultisite' !== data33\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/5/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'enableMultisite',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs92 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid18 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid18) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.wpCliPath !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs94 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.wpCliPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/wpCliPath',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/5/properties/wpCliPath/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs94 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid18 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/5/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'importWxr') {\n\t\t\t\t\t\tconst _errs96 = errors;\n\t\t\t\t\t\tif (errors === _errs96) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing7;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.file === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing7 = 'file')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing7 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/6/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing7,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing7 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs98 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key13 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!func2.call(\n\t\t\t\t\t\t\t\t\t\t\t\tschema33.oneOf[6].properties,\n\t\t\t\t\t\t\t\t\t\t\t\tkey13\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs98 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data35 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs99 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs99) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata35 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data35 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data35)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs101 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key14 in data35) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey14 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey14 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey14,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs101 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata35.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data36 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata35.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs102 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data36 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata36\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid22 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs102 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid22 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid22) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata35.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs104 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data35.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid22 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs104 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid22 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid21 = _errs99 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid21) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data38 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs106 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data38 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('importWxr' !== data38) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'importWxr',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs106 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid21) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.file !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs108 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate16(data.file, {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/file',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData: data,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'file',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs108 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid21) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.fetchAttachments !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs109 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.fetchAttachments !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/fetchAttachments',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/fetchAttachments/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs109 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid21) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.rewriteUrls !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs111 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.rewriteUrls !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/rewriteUrls',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/rewriteUrls/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs111 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid21) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.urlMapping !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data42 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.urlMapping;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs113 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs113\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata42 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data42 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata42\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key15 in data42) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs116 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data42[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey15\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t] !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/urlMapping/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey15\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/urlMapping/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid23 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs116 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid23\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/urlMapping',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/urlMapping/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs113 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid21) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.importComments !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs118 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.importComments !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/importComments',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/importComments/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs118 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid21) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.defaultAuthorUsername !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs120 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.defaultAuthorUsername !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/defaultAuthorUsername',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/defaultAuthorUsername/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs120 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid21\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.authorsMode !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data46 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.authorsMode;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs122 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data46 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/authorsMode',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/authorsMode/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata46 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'create' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata46 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'default-author' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata46 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'map'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/authorsMode',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/authorsMode/enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValues:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschema33\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.oneOf[6]\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.properties\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.authorsMode\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.enum,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to one of the allowed values',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs122 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid21\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.authorsMap !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data47 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.authorsMap;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs124 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs124\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata47 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data47 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata47\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key16 in data47) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs127 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data47[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey16\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t] !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/authorsMap/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey16\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/authorsMap/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid24 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs127 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid24\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/authorsMap',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/authorsMap/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs124 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid21\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.importUsers !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs129 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.importUsers !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/importUsers',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/importUsers/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs129 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid21\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.importer !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data50 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.importer;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs131 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data50 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/importer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/importer/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata50 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'data-liberation' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata50 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'default'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/importer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/6/properties/importer/enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValues:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschema33\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.oneOf[6]\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.properties\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.importer\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.enum,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to one of the allowed values',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs131 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid21 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/6/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'importThemeStarterContent') {\n\t\t\t\t\t\tconst _errs133 = errors;\n\t\t\t\t\t\tif (errors === _errs133) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing8;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\tdata.step === undefined &&\n\t\t\t\t\t\t\t\t\t(missing8 = 'step')\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/7/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing8,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing8 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs135 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key17 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey17 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey17 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey17 === 'themeSlug'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/7/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs135 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data51 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs136 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs136) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata51 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data51 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data51)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs138 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key18 in data51) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey18 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey18 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/7/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey18,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs138 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata51.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data52 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata51.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs139 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data52 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata52\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/7/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid27 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs139 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid27 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid27) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata51.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs141 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data51.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/7/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid27 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs141 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid27 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/7/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid26 = _errs136 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid26 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid26) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data54 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs143 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data54 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/7/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t'importThemeStarterContent' !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata54\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/7/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'importThemeStarterContent',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid26 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs143 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid26 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid26) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.themeSlug !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs145 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.themeSlug !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/themeSlug',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/7/properties/themeSlug/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid26 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs145 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid26 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/7/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'importWordPressFiles') {\n\t\t\t\t\t\tconst _errs147 = errors;\n\t\t\t\t\t\tif (errors === _errs147) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing9;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing9 = 'step')) ||\n\t\t\t\t\t\t\t\t\t(data.wordPressFilesZip === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing9 = 'wordPressFilesZip'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/8/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing9,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing9 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs149 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key19 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey19 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey19 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey19 === 'wordPressFilesZip' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey19 === 'pathInZip'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/8/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey19,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs149 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data56 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs150 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs150) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata56 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data56 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data56)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs152 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key20 in data56) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey20 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey20 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/8/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs152 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata56.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data57 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata56.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs153 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data57 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata57\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/8/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid30 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs153 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid30 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid30) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata56.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs155 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data56.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/8/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid30 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs155 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid30 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/8/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid29 = _errs150 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid29 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid29) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data59 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs157 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data59 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/8/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t'importWordPressFiles' !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata59\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/8/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'importWordPressFiles',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid29 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs157 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid29 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid29) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.wordPressFilesZip !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs159 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate16(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.wordPressFilesZip,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/wordPressFilesZip',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'wordPressFilesZip',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid29 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs159 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid29 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid29) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.pathInZip !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs160 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.pathInZip !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/pathInZip',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/8/properties/pathInZip/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid29 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs160 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid29 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/8/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'installPlugin') {\n\t\t\t\t\t\tconst _errs162 = errors;\n\t\t\t\t\t\tif (errors === _errs162) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing10;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.pluginData === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing10 = 'pluginData')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing10 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/9/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing10,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing10 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs164 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key21 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey21 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey21 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t'ifAlreadyInstalled' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey21 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey21 === 'pluginData' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey21 === 'pluginZipFile' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey21 === 'options'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/9/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey21,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs164 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data62 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs165 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs165) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata62 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data62 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data62)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs167 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key22 in data62) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey22 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey22 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/9/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey22,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs167 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata62.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data63 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata62.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs168 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data63 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata63\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/9/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid33 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs168 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid33 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid33) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata62.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs170 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data62.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/9/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid33 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs170 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid33 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/9/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid32 = _errs165 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid32 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid32) {\n\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\tdata.ifAlreadyInstalled !==\n\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data65 =\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.ifAlreadyInstalled;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs172 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data65 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/ifAlreadyInstalled',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/9/properties/ifAlreadyInstalled/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata65 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'overwrite' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata65 === 'skip' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata65 === 'error'\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/ifAlreadyInstalled',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/9/properties/ifAlreadyInstalled/enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValues:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschema33\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.oneOf[9]\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.properties\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.ifAlreadyInstalled\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.enum,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to one of the allowed values',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid32 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs172 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid32 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid32) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data66 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs174 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data66 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/9/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'installPlugin' !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata66\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/9/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'installPlugin',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid32 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs174 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid32 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid32) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.pluginData !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data67 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.pluginData;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs176 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs177 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet valid34 = false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs178 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate16(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata67,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/pluginData',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'pluginData',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs178 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid34 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid34 || _valid0;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid34) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs179 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate18(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata67,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/pluginData',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'pluginData',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate18.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate18.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs179 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid34 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid34 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid0;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid34) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err0 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/pluginData',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/9/properties/pluginData/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr0\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = _errs177;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors !== null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs177) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs177;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid32 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs176 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid32 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid32) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.pluginZipFile !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs180 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate16(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.pluginZipFile,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/pluginZipFile',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'pluginZipFile',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid32 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs180 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid32 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid32) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.options !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data69 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.options;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs181 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs182 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs182\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata69 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data69 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata69\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs184 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key23 in data69) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey23 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'activate' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey23 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'activationOptions' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey23 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'onError' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey23 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'targetFolderName' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey23 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'humanReadableName'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallPluginOptions/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey23,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs184 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata69.activate !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs185 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data69.activate !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/activate',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallPluginOptions/properties/activate/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid36 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs185 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid36 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid36\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata69.activationOptions !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data71 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata69.activationOptions;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs187 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs187\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata71 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data71 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata71\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key24 in data71) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs190 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid37 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs190 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid37\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/activationOptions',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallPluginOptions/properties/activationOptions/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid36 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs187 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid36 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid36\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata69.onError !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data73 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata69.onError;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs191 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data73 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/onError',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallPluginOptions/properties/onError/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata73 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'skip-plugin' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata73 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'throw'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/onError',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallPluginOptions/properties/onError/enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValues:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschema34\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.properties\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.onError\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.enum,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to one of the allowed values',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid36 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs191 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid36 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid36\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata69.targetFolderName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs193 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data69.targetFolderName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/targetFolderName',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallPluginOptions/properties/targetFolderName/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid36 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs193 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid36 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid36\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata69.humanReadableName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs195 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data69.humanReadableName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/humanReadableName',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallPluginOptions/properties/humanReadableName/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid36 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs195 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid36 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallPluginOptions/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid32 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs181 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid32 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/9/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'installTheme') {\n\t\t\t\t\t\tconst _errs197 = errors;\n\t\t\t\t\t\tif (errors === _errs197) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing11;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing11 = 'step')) ||\n\t\t\t\t\t\t\t\t\t(data.themeData === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing11 = 'themeData'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/10/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing11,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing11 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs199 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key25 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey25 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey25 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t'ifAlreadyInstalled' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey25 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey25 === 'themeData' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey25 === 'themeZipFile' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey25 === 'options'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/10/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey25,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs199 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data76 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs200 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs200) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata76 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data76 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data76)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs202 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key26 in data76) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey26 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey26 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/10/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey26,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs202 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata76.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data77 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata76.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs203 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data77 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata77\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/10/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid40 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs203 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid40 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid40) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata76.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs205 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data76.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/10/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid40 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs205 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid40 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/10/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid39 = _errs200 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid39 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid39) {\n\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\tdata.ifAlreadyInstalled !==\n\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data79 =\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.ifAlreadyInstalled;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs207 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data79 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/ifAlreadyInstalled',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/10/properties/ifAlreadyInstalled/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata79 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'overwrite' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata79 === 'skip' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata79 === 'error'\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/ifAlreadyInstalled',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/10/properties/ifAlreadyInstalled/enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValues:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschema33\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.oneOf[10]\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.properties\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.ifAlreadyInstalled\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.enum,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to one of the allowed values',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid39 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs207 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid39 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid39) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data80 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs209 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data80 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/10/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'installTheme' !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata80\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/10/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'installTheme',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid39 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs209 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid39 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid39) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.themeData !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data81 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.themeData;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs211 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs212 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet valid41 = false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs213 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate16(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata81,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/themeData',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'themeData',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs213 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid41 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid41 || _valid1;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid41) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs214 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate18(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata81,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/themeData',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'themeData',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate18.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate18.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs214 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid41 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid41 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid1;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid41) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err1 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/themeData',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/10/properties/themeData/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr1\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = _errs212;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors !== null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs212) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs212;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid39 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs211 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid39 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid39) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.themeZipFile !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs215 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate16(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.themeZipFile,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/themeZipFile',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'themeZipFile',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid39 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs215 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid39 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid39) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.options !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data83 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.options;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs216 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs217 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs217\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata83 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data83 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata83\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs219 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key27 in data83) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey27 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'activate' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey27 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'importStarterContent' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey27 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'onError' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey27 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'targetFolderName' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey27 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'humanReadableName'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallThemeOptions/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey27,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs219 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata83.activate !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs220 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data83.activate !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/activate',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallThemeOptions/properties/activate/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid43 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs220 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid43 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid43\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata83.importStarterContent !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs222 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data83.importStarterContent !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/importStarterContent',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallThemeOptions/properties/importStarterContent/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid43 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs222 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid43 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid43\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata83.onError !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data86 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata83.onError;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs224 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data86 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/onError',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallThemeOptions/properties/onError/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata86 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'skip-theme' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata86 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'throw'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/onError',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallThemeOptions/properties/onError/enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValues:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschema35\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.properties\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.onError\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.enum,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to one of the allowed values',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid43 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs224 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid43 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid43\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata83.targetFolderName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs226 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data83.targetFolderName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/targetFolderName',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallThemeOptions/properties/targetFolderName/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid43 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs226 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid43 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid43\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata83.humanReadableName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs228 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data83.humanReadableName !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/humanReadableName',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallThemeOptions/properties/humanReadableName/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid43 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs228 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid43 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/InstallThemeOptions/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid39 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs216 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid39 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/10/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'login') {\n\t\t\t\t\t\tconst _errs230 = errors;\n\t\t\t\t\t\tif (errors === _errs230) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing12;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\tdata.step === undefined &&\n\t\t\t\t\t\t\t\t\t(missing12 = 'step')\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/11/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing12,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing12 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs232 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key28 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey28 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey28 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey28 === 'username' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey28 === 'password'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/11/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey28,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs232 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data89 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs233 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs233) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata89 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data89 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data89)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs235 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key29 in data89) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey29 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey29 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/11/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey29,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs235 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata89.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data90 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata89.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs236 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data90 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata90\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/11/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid46 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs236 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid46 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid46) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata89.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs238 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data89.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/11/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid46 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs238 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid46 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/11/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid45 = _errs233 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid45 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid45) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data92 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs240 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data92 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/11/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('login' !== data92) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/11/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'login',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid45 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs240 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid45 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid45) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.username !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs242 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.username !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/username',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/11/properties/username/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid45 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs242 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid45 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid45) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.password !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs244 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.password !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/password',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/11/properties/password/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid45 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs244 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid45 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/11/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'mkdir') {\n\t\t\t\t\t\tconst _errs246 = errors;\n\t\t\t\t\t\tif (errors === _errs246) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing13;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.path === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing13 = 'path')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing13 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/12/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing13,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing13 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs248 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key30 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey30 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey30 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey30 === 'path'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/12/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey30,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs248 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data95 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs249 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs249) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata95 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data95 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data95)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs251 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key31 in data95) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey31 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey31 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/12/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey31,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs251 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata95.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data96 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata95.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs252 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data96 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata96\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/12/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid49 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs252 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid49 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid49) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata95.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs254 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data95.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/12/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid49 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs254 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid49 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/12/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid48 = _errs249 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid48 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid48) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data98 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs256 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data98 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/12/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('mkdir' !== data98) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/12/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'mkdir',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid48 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs256 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid48 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid48) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.path !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs258 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.path !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/path',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/12/properties/path/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid48 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs258 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid48 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/12/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'mv') {\n\t\t\t\t\t\tconst _errs260 = errors;\n\t\t\t\t\t\tif (errors === _errs260) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing14;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.fromPath === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing14 = 'fromPath')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing14 = 'step')) ||\n\t\t\t\t\t\t\t\t\t(data.toPath === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing14 = 'toPath'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/13/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing14,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing14 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs262 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key32 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey32 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey32 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey32 === 'fromPath' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey32 === 'toPath'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/13/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey32,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs262 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data100 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs263 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs263) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata100 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data100 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data100)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs265 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key33 in data100) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey33 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey33 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/13/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey33,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs265 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata100.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data101 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata100.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs266 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data101 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata101\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/13/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid52 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs266 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid52 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid52) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata100.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs268 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data100.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/13/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid52 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs268 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid52 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/13/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid51 = _errs263 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid51 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid51) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data103 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs270 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data103 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/13/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('mv' !== data103) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/13/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'mv',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid51 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs270 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid51 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid51) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.fromPath !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs272 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.fromPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/fromPath',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/13/properties/fromPath/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid51 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs272 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid51 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid51) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.toPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs274 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.toPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/toPath',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/13/properties/toPath/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid51 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs274 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid51 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/13/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'resetData') {\n\t\t\t\t\t\tconst _errs276 = errors;\n\t\t\t\t\t\tif (errors === _errs276) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing15;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\tdata.step === undefined &&\n\t\t\t\t\t\t\t\t\t(missing15 = 'step')\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/14/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing15,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing15 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs278 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key34 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey34 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey34 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey34 === 'contentTypes'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/14/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey34,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs278 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data106 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs279 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs279) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata106 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data106 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data106)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs281 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key35 in data106) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey35 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey35 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/14/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey35,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs281 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata106.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data107 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata106.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs282 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data107 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata107\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/14/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid55 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs282 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid55 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid55) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata106.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs284 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data106.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/14/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid55 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs284 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid55 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/14/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid54 = _errs279 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid54 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid54) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data109 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs286 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data109 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/14/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('resetData' !== data109) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/14/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'resetData',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid54 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs286 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid54 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid54) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.contentTypes !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data110 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.contentTypes;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs288 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs288) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tArray.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata110\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid56 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst len0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata110.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet i0 = 0;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti0 < len0;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti0++\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data111 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata110[i0];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs290 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data111 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contentTypes/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/14/properties/contentTypes/items/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata111 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'posts' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata111 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'pages' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata111 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'comments'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contentTypes/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/14/properties/contentTypes/items/enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'enum',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValues:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschema33\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.oneOf[14]\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.properties\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.contentTypes\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.items\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.enum,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to one of the allowed values',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid56 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs290 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid56) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/contentTypes',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/14/properties/contentTypes/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid54 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs288 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid54 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/14/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'request') {\n\t\t\t\t\t\tconst _errs292 = errors;\n\t\t\t\t\t\tif (errors === _errs292) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing16;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.request === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing16 = 'request')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing16 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/15/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing16,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing16 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs294 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key36 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey36 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey36 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey36 === 'request'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/15/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey36,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs294 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data112 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs295 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs295) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata112 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data112 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data112)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs297 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key37 in data112) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey37 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey37 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/15/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey37,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs297 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata112.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data113 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata112.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs298 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data113 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata113\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/15/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid59 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs298 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid59 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid59) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata112.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs300 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data112.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/15/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid59 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs300 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid59 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/15/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid58 = _errs295 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid58 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid58) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data115 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs302 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data115 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/15/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('request' !== data115) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/15/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'request',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid58 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs302 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid58 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid58) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.request !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs304 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate37(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.request,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/request',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'request',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate37.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate37.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid58 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs304 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid58 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/15/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'rm') {\n\t\t\t\t\t\tconst _errs305 = errors;\n\t\t\t\t\t\tif (errors === _errs305) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing17;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.path === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing17 = 'path')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing17 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/16/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing17,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing17 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs307 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key38 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey38 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey38 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey38 === 'path'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/16/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey38,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs307 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data117 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs308 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs308) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata117 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data117 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data117)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs310 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key39 in data117) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey39 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey39 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/16/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey39,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs310 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata117.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data118 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata117.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs311 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data118 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata118\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/16/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid62 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs311 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid62 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid62) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata117.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs313 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data117.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/16/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid62 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs313 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid62 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/16/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid61 = _errs308 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid61 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid61) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data120 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs315 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data120 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/16/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('rm' !== data120) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/16/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'rm',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid61 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs315 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid61 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid61) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.path !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs317 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.path !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/path',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/16/properties/path/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid61 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs317 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid61 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/16/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'rmdir') {\n\t\t\t\t\t\tconst _errs319 = errors;\n\t\t\t\t\t\tif (errors === _errs319) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing18;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.path === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing18 = 'path')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing18 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/17/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing18,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing18 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs321 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key40 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey40 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey40 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey40 === 'path'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/17/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey40,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs321 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data122 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs322 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs322) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata122 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data122 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data122)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs324 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key41 in data122) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey41 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey41 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/17/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey41,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs324 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata122.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data123 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata122.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs325 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data123 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata123\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/17/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid65 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs325 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid65 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid65) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata122.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs327 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data122.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/17/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid65 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs327 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid65 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/17/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid64 = _errs322 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid64 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid64) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data125 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs329 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data125 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/17/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('rmdir' !== data125) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/17/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'rmdir',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid64 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs329 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid64 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid64) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.path !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs331 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.path !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/path',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/17/properties/path/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid64 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs331 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid64 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/17/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'runPHP') {\n\t\t\t\t\t\tconst _errs333 = errors;\n\t\t\t\t\t\tif (errors === _errs333) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing19;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.code === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing19 = 'code')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing19 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/18/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing19,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing19 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs335 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key42 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey42 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey42 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey42 === 'code'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey42,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs335 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data127 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs336 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs336) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata127 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data127 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data127)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs338 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key43 in data127) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey43 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey43 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey43,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs338 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata127.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data128 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata127.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs339 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data128 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata128\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid68 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs339 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid68 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid68) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata127.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs341 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data127.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid68 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs341 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid68 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid67 = _errs336 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid67 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid67) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data130 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs343 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data130 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('runPHP' !== data130) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'runPHP',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid67 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs343 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid67 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid67) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.code !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data131 = data.code;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs345 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs346 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet valid69 = false;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs347 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data131 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err2 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/code',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/code/anyOf/0/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err2];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err2);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs347 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalid69 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid69 || _valid2;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid69) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs349 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors === _errs349\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata131 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data131 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata131\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet missing20;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data131.filename ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing20 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'filename')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data131.content ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing20 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'content'))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/code',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/code/anyOf/1/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing20 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr3\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs351 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key44 in data131) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey44 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'filename' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey44 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'content'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/code',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/code/anyOf/1/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey44,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs351 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata131.filename !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs352 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data131.filename !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/code/filename',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/code/anyOf/1/properties/filename/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid70 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs352 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid70 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid70\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata131.content !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs354 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data131.content !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/code/content',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/code/anyOf/1/properties/content/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr6\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid70 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs354 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid70 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err7 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/code',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/code/anyOf/1/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr7\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs349 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid69 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid69 || _valid2;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid69) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err8 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/code',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/18/properties/code/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err8];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err8);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = _errs346;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors !== null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs346) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs346;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = null;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid67 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs345 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid67 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/18/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'runPHPWithOptions') {\n\t\t\t\t\t\tconst _errs356 = errors;\n\t\t\t\t\t\tif (errors === _errs356) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing21;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.options === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing21 = 'options')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing21 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/19/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing21,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing21 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs358 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key45 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey45 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey45 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey45 === 'options'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/19/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey45,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs358 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data134 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs359 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs359) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata134 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data134 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data134)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs361 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key46 in data134) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey46 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey46 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/19/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey46,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs361 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata134.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data135 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata134.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs362 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data135 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata135\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/19/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid73 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs362 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid73 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid73) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata134.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs364 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data134.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/19/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid73 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs364 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid73 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/19/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid72 = _errs359 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid72 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid72) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data137 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs366 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data137 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/19/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t'runPHPWithOptions' !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata137\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/19/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'runPHPWithOptions',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid72 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs366 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid72 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid72) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.options !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs368 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate39(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.options,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'options',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate39.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate39.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid72 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs368 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid72 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/19/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'runWpInstallationWizard') {\n\t\t\t\t\t\tconst _errs369 = errors;\n\t\t\t\t\t\tif (errors === _errs369) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing22;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.options === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing22 = 'options')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing22 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/20/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing22,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing22 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs371 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key47 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey47 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey47 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey47 === 'options'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/20/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey47,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs371 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data139 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs372 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs372) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata139 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data139 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data139)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs374 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key48 in data139) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey48 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey48 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/20/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey48,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs374 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata139.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data140 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata139.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs375 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data140 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata140\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/20/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid76 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs375 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid76 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid76) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata139.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs377 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data139.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/20/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid76 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs377 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid76 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/20/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid75 = _errs372 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid75 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid75) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data142 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs379 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data142 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/20/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t'runWpInstallationWizard' !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata142\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/20/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'runWpInstallationWizard',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid75 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs379 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid75 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid75) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.options !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data143 = data.options;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs381 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs382 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs382) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata143 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data143 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata143\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs384 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key49 in data143) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey49 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'adminUsername' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey49 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'adminPassword'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/WordPressInstallationOptions/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey49,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs384 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata143.adminUsername !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs385 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data143.adminUsername !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/adminUsername',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/WordPressInstallationOptions/properties/adminUsername/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid78 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs385 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid78 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid78) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata143.adminPassword !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs387 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data143.adminPassword !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options/adminPassword',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/WordPressInstallationOptions/properties/adminPassword/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid78 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs387 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid78 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/WordPressInstallationOptions/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid75 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs381 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid75 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/20/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'runSql') {\n\t\t\t\t\t\tconst _errs389 = errors;\n\t\t\t\t\t\tif (errors === _errs389) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing23;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.sql === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing23 = 'sql')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing23 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/21/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing23,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing23 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs391 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key50 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey50 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey50 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey50 === 'sql'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/21/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey50,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs391 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data146 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs392 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs392) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata146 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data146 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data146)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs394 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key51 in data146) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey51 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey51 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/21/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey51,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs394 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata146.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data147 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata146.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs395 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data147 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata147\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/21/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid81 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs395 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid81 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid81) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata146.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs397 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data146.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/21/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid81 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs397 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid81 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/21/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid80 = _errs392 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid80 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid80) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data149 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs399 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data149 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/21/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('runSql' !== data149) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/21/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'runSql',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid80 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs399 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid80 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid80) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.sql !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs401 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate16(data.sql, {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/sql',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData: data,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'sql',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid80 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs401 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid80 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/21/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'setSiteOptions') {\n\t\t\t\t\t\tconst _errs402 = errors;\n\t\t\t\t\t\tif (errors === _errs402) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing24;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.options === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing24 = 'options')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing24 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/22/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing24,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing24 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs404 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key52 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey52 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey52 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey52 === 'options'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/22/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey52,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs404 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data151 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs405 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs405) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata151 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data151 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data151)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs407 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key53 in data151) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey53 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey53 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/22/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey53,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs407 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata151.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data152 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata151.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs408 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data152 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata152\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/22/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid84 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs408 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid84 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid84) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata151.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs410 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data151.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/22/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid84 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs410 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid84 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/22/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid83 = _errs405 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid83 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid83) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data154 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs412 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data154 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/22/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t'setSiteOptions' !== data154\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/22/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'setSiteOptions',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid83 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs412 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid83 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid83) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.options !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data155 = data.options;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs414 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs414) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata155 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data155 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata155\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key54 in data155) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs417 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid85 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs417 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid85) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/options',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/22/properties/options/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid83 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs414 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid83 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/22/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'unzip') {\n\t\t\t\t\t\tconst _errs418 = errors;\n\t\t\t\t\t\tif (errors === _errs418) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing25;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.extractToPath === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing25 = 'extractToPath')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing25 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/23/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing25,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing25 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs420 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key55 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey55 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey55 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey55 === 'zipFile' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey55 === 'zipPath' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey55 === 'extractToPath'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/23/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey55,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs420 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data157 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs421 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs421) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata157 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data157 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data157)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs423 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key56 in data157) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey56 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey56 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/23/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey56,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs423 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata157.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data158 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata157.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs424 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data158 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata158\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/23/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid88 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs424 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid88 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid88) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata157.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs426 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data157.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/23/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid88 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs426 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid88 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/23/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid87 = _errs421 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid87 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid87) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data160 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs428 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data160 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/23/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('unzip' !== data160) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/23/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'unzip',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid87 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs428 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid87 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid87) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.zipFile !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs430 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate16(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.zipFile,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/zipFile',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'zipFile',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid87 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs430 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid87 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid87) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.zipPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs431 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.zipPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/zipPath',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/23/properties/zipPath/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid87 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs431 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid87 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid87) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.extractToPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs433 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.extractToPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/extractToPath',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/23/properties/extractToPath/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid87 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs433 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid87 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/23/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'updateUserMeta') {\n\t\t\t\t\t\tconst _errs435 = errors;\n\t\t\t\t\t\tif (errors === _errs435) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing26;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.meta === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing26 = 'meta')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing26 = 'step')) ||\n\t\t\t\t\t\t\t\t\t(data.userId === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing26 = 'userId'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/24/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing26,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing26 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs437 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key57 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey57 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey57 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey57 === 'meta' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey57 === 'userId'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/24/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey57,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs437 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data164 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs438 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs438) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata164 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data164 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data164)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs440 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key58 in data164) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey58 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey58 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/24/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey58,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs440 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata164.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data165 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata164.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs441 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data165 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata165\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/24/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid91 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs441 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid91 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid91) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata164.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs443 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data164.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/24/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid91 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs443 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid91 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/24/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid90 = _errs438 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid90 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid90) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data167 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs445 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data167 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/24/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t'updateUserMeta' !== data167\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/24/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'updateUserMeta',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid90 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs445 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid90 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid90) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.meta !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data168 = data.meta;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs447 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs447) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata168 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data168 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata168\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key59 in data168) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs450 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid92 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs450 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid92) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/meta',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/24/properties/meta/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid90 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs447 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid90 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid90) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.userId !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data170 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.userId;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs451 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data170 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata170\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/userId',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/24/properties/userId/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid90 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs451 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid90 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/24/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'writeFile') {\n\t\t\t\t\t\tconst _errs453 = errors;\n\t\t\t\t\t\tif (errors === _errs453) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing27;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.data === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing27 = 'data')) ||\n\t\t\t\t\t\t\t\t\t(data.path === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing27 = 'path')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing27 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/25/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing27,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing27 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs455 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key60 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey60 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey60 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey60 === 'path' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey60 === 'data'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey60,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs455 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data171 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs456 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs456) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata171 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data171 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data171)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs458 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key61 in data171) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey61 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey61 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey61,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs458 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata171.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data172 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata171.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs459 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data172 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata172\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid95 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs459 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid95 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid95) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata171.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs461 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data171.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid95 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs461 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid95 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid94 = _errs456 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid94 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid94) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data174 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs463 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data174 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('writeFile' !== data174) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'writeFile',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid94 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs463 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid94 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid94) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data.path !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs465 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.path !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/path',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/path/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid94 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs465 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid94 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid94) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.data !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data176 = data.data;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs467 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs468 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet valid96 = false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs469 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate16(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'data',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs469 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid96 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid96 || _valid3;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid96) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs470 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data176 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err9 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/1/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr9\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs470 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid96 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid96 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid3;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid96) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs472 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs472\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data176 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet missing28;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data176.BYTES_PER_ELEMENT ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing28 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data176.buffer ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing28 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'buffer')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data176.byteLength ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing28 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data176.byteOffset ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing28 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteOffset')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data176.length ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing28 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'length'))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err10 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/2/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing28,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing28 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr10,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr10\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs474 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key62 in data176) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey62 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'BYTES_PER_ELEMENT' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey62 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'buffer' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey62 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey62 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteOffset' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey62 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'length'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data177 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey62\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs475 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data177 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata177\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey62\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/2/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr11,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr11\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid97 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs475 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid97\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs474 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176.BYTES_PER_ELEMENT !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data178 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176.BYTES_PER_ELEMENT;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs477 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data178 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata178\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err12 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data/BYTES_PER_ELEMENT',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/2/properties/BYTES_PER_ELEMENT/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr12,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr12\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid98 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs477 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid98 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid98\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176.buffer !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data179 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176.buffer;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs479 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs479\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata179 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data179 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata179\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet missing29;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata179.byteLength ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing29 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength')\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/2/properties/buffer/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing29,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing29 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs481 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key63 in data179) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey63 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'byteLength'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err14 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/2/properties/buffer/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey63,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr14,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr14\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs481 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata179.byteLength !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data180 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata179.byteLength;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data180 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata180\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err15 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data/buffer/byteLength',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/2/properties/buffer/properties/byteLength/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr15,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr15\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err16 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data/buffer',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/2/properties/buffer/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr16\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid98 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs479 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid98 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid98\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176.byteLength !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data181 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176.byteLength;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs484 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data181 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata181\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err17 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data/byteLength',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/2/properties/byteLength/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr17\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid98 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs484 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid98 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid98\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176.byteOffset !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data182 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176.byteOffset;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs486 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data182 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata182\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data/byteOffset',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/2/properties/byteOffset/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr18,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr18\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid98 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs486 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid98 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid98\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176.length !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data183 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata176.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs488 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data183 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata183\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err19 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data/length',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/2/properties/length/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr19,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr19\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid98 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs488 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid98 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err20 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf/2/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr20\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs472 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid96 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid96 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid3;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid96) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err21 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/data',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/25/properties/data/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr21,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr21\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = _errs468;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors !== null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs468) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs468;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid94 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs467 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid94 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/25/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'writeFiles') {\n\t\t\t\t\t\tconst _errs490 = errors;\n\t\t\t\t\t\tif (errors === _errs490) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing30;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.filesTree === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing30 = 'filesTree')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing30 = 'step')) ||\n\t\t\t\t\t\t\t\t\t(data.writeToPath === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing30 = 'writeToPath'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/26/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing30,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing30 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs492 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key64 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey64 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey64 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey64 === 'writeToPath' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey64 === 'filesTree'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/26/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey64,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs492 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data184 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs493 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs493) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata184 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data184 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data184)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs495 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key65 in data184) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey65 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey65 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/26/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey65,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs495 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata184.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data185 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata184.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs496 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data185 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata185\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/26/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid102 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs496 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid102 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid102) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata184.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs498 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data184.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/26/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid102 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs498 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid102 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/26/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid101 = _errs493 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid101 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid101) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data187 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs500 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data187 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/26/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('writeFiles' !== data187) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/26/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'writeFiles',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid101 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs500 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid101 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid101) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.writeToPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs502 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.writeToPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/writeToPath',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/26/properties/writeToPath/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid101 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs502 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid101 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid101) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.filesTree !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs504 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate18(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.filesTree,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/filesTree',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'filesTree',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate18.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate18.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid101 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs504 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid101 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/26/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'wp-cli') {\n\t\t\t\t\t\tconst _errs505 = errors;\n\t\t\t\t\t\tif (errors === _errs505) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing31;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.command === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing31 = 'command')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing31 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/27/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing31,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing31 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs507 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key66 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey66 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey66 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey66 === 'command' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey66 === 'wpCliPath'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey66,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs507 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data190 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs508 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs508) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata190 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data190 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data190)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs510 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key67 in data190) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey67 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey67 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey67,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs510 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata190.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data191 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata190.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs511 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data191 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata191\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid105 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs511 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid105 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid105) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata190.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs513 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data190.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid105 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs513 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid105 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid104 = _errs508 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid104 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid104) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data193 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs515 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data193 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif ('wp-cli' !== data193) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'wp-cli',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid104 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs515 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid104 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid104) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.command !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data194 = data.command;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs517 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs518 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet valid106 = false;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs519 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data194 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err22 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/command',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/properties/command/anyOf/0/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err22];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err22);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs519 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalid106 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid106 || _valid4;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid106) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs521 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors === _errs521\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tArray.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata194\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid107 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst len1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata194.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet i1 = 0;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti1 < len1;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti1++\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs523 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data194[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti1\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t] !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err23 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/command/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/properties/command/anyOf/1/items/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr23,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr23\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid107 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs523 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid107\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err24 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/command',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/properties/command/anyOf/1/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr24,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr24\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs521 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid106 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid106 || _valid4;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid106) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err25 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/command',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/properties/command/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err25];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err25);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = _errs518;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors !== null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs518) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs518;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = null;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid104 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs517 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid104 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid104) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.wpCliPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs525 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.wpCliPath !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/wpCliPath',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/27/properties/wpCliPath/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid104 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs525 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid104 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/27/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (tag0 === 'setSiteLanguage') {\n\t\t\t\t\t\tconst _errs527 = errors;\n\t\t\t\t\t\tif (errors === _errs527) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tdata &&\n\t\t\t\t\t\t\t\ttypeof data == 'object' &&\n\t\t\t\t\t\t\t\t!Array.isArray(data)\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tlet missing32;\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t(data.language === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing32 = 'language')) ||\n\t\t\t\t\t\t\t\t\t(data.step === undefined &&\n\t\t\t\t\t\t\t\t\t\t(missing32 = 'step'))\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/28/required',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing32,\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\tmissing32 +\n\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst _errs529 = errors;\n\t\t\t\t\t\t\t\t\tfor (const key68 in data) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\tkey68 === 'progress' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey68 === 'step' ||\n\t\t\t\t\t\t\t\t\t\t\t\tkey68 === 'language'\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/28/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey68,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (_errs529 === errors) {\n\t\t\t\t\t\t\t\t\t\tif (data.progress !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data197 = data.progress;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs530 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs530) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata197 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data197 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data197)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs532 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key69 in data197) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey69 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'weight' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey69 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'caption'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/28/properties/progress/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey69,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs532 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata197.weight !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data198 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata197.weight;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs533 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data198 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata198\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/weight',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/28/properties/progress/properties/weight/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid110 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs533 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid110 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid110) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata197.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs535 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data197.caption !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress/caption',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/28/properties/progress/properties/caption/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid110 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs535 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid110 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/progress',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/28/properties/progress/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid109 = _errs530 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid109 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid109) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.step !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data200 = data.step;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs537 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data200 !== 'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/28/properties/step/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t'setSiteLanguage' !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata200\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/step',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/28/properties/step/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'setSiteLanguage',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid109 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t_errs537 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid109 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid109) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.language !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs539 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.language !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/language',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/oneOf/28/properties/language/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid109 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs539 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid109 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\t\t\tschemaPath: '#/oneOf/28/type',\n\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\t\tschemaPath: '#/discriminator',\n\t\t\t\t\t\t\t\tkeyword: 'discriminator',\n\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\terror: 'mapping',\n\t\t\t\t\t\t\t\t\ttag: 'step',\n\t\t\t\t\t\t\t\t\ttagValue: tag0,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tmessage: 'value of tag \"step\" must be in oneOf',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t];\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tvalidate28.errors = [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\tschemaPath: '#/discriminator',\n\t\t\t\t\t\t\tkeyword: 'discriminator',\n\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\terror: 'tag',\n\t\t\t\t\t\t\t\ttag: 'step',\n\t\t\t\t\t\t\t\ttagValue: tag0,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tmessage: 'tag \"step\" must be string',\n\t\t\t\t\t\t},\n\t\t\t\t\t];\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tvalidate28.errors = [\n\t\t\t\t{\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/type',\n\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t},\n\t\t\t];\n\t\t\treturn false;\n\t\t}\n\t}\n\tvalidate28.errors = vErrors;\n\treturn errors === 0;\n}\nfunction validate11(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tif (errors === 0) {\n\t\tif (data && typeof data == 'object' && !Array.isArray(data)) {\n\t\t\tconst _errs1 = errors;\n\t\t\tfor (const key0 in data) {\n\t\t\t\tif (!func2.call(schema12.properties, key0)) {\n\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tinstancePath,\n\t\t\t\t\t\t\tschemaPath: '#/additionalProperties',\n\t\t\t\t\t\t\tkeyword: 'additionalProperties',\n\t\t\t\t\t\t\tparams: { additionalProperty: key0 },\n\t\t\t\t\t\t\tmessage: 'must NOT have additional properties',\n\t\t\t\t\t\t},\n\t\t\t\t\t];\n\t\t\t\t\treturn false;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (_errs1 === errors) {\n\t\t\t\tif (data.landingPage !== undefined) {\n\t\t\t\t\tconst _errs2 = errors;\n\t\t\t\t\tif (typeof data.landingPage !== 'string') {\n\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tinstancePath: instancePath + '/landingPage',\n\t\t\t\t\t\t\t\tschemaPath: '#/properties/landingPage/type',\n\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t];\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\tvar valid0 = _errs2 === errors;\n\t\t\t\t} else {\n\t\t\t\t\tvar valid0 = true;\n\t\t\t\t}\n\t\t\t\tif (valid0) {\n\t\t\t\t\tif (data.description !== undefined) {\n\t\t\t\t\t\tconst _errs4 = errors;\n\t\t\t\t\t\tif (typeof data.description !== 'string') {\n\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tinstancePath: instancePath + '/description',\n\t\t\t\t\t\t\t\t\tschemaPath: '#/properties/description/type',\n\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\tparams: { type: 'string' },\n\t\t\t\t\t\t\t\t\tmessage: 'must be string',\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tvar valid0 = _errs4 === errors;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t}\n\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\tif (data.meta !== undefined) {\n\t\t\t\t\t\t\tlet data2 = data.meta;\n\t\t\t\t\t\t\tconst _errs6 = errors;\n\t\t\t\t\t\t\tif (errors === _errs6) {\n\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\tdata2 &&\n\t\t\t\t\t\t\t\t\ttypeof data2 == 'object' &&\n\t\t\t\t\t\t\t\t\t!Array.isArray(data2)\n\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\tlet missing0;\n\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t(data2.title === undefined &&\n\t\t\t\t\t\t\t\t\t\t\t(missing0 = 'title')) ||\n\t\t\t\t\t\t\t\t\t\t(data2.author === undefined &&\n\t\t\t\t\t\t\t\t\t\t\t(missing0 = 'author'))\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/meta',\n\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/meta/required',\n\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty: missing0,\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\tmissing0 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tconst _errs8 = errors;\n\t\t\t\t\t\t\t\t\t\tfor (const key1 in data2) {\n\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\tkey1 === 'title' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\tkey1 === 'description' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\tkey1 === 'author' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\tkey1 === 'categories'\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/meta',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/meta/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (_errs8 === errors) {\n\t\t\t\t\t\t\t\t\t\t\tif (data2.title !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs9 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data2.title !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/meta/title',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/meta/properties/title/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid1 = _errs9 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid1 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid1) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata2.description !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs11 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data2.description !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/meta/description',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/meta/properties/description/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs11 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid1 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid1) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata2.author !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs13 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data2.author !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/meta/author',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/meta/properties/author/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs13 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid1 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid1) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata2.categories !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata2.categories;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs15 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs15\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tArray.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid2 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst len0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata6.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet i0 = 0;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti0 <\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlen0;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti0++\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs17 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data6[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti0\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t] !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/meta/categories/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/meta/properties/categories/items/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs17 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid2\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/meta/categories',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/meta/properties/categories/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs15 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid1 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath + '/meta',\n\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/meta/type',\n\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tvar valid0 = _errs6 === errors;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\tif (data.preferredVersions !== undefined) {\n\t\t\t\t\t\t\t\tlet data8 = data.preferredVersions;\n\t\t\t\t\t\t\t\tconst _errs19 = errors;\n\t\t\t\t\t\t\t\tif (errors === _errs19) {\n\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\tdata8 &&\n\t\t\t\t\t\t\t\t\t\ttypeof data8 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t!Array.isArray(data8)\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tlet missing1;\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t(data8.php === undefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t(missing1 = 'php')) ||\n\t\t\t\t\t\t\t\t\t\t\t(data8.wp === undefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t(missing1 = 'wp'))\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions',\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing1 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tconst _errs21 = errors;\n\t\t\t\t\t\t\t\t\t\t\tfor (const key2 in data8) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 === 'php' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2 === 'wp'\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (_errs21 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data8.php !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data9 = data8.php;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs22 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs23 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet valid4 = false;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs24 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate12(data9, {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions/php',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData: data8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'php',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate12.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate12.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = vErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs24 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalid4 = valid4 || _valid0;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid4) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs25 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data9 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err0 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions/php',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/properties/php/anyOf/1/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr0\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'latest' !== data9\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err1 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions/php',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/properties/php/anyOf/1/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'latest',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr1\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs25 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid4 || _valid0;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid4) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err2 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions/php',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/properties/php/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors === null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [err2];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(err2);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = _errs23;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (vErrors !== null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs23) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs23;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = null;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs22 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid3 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid3) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata8.wp !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data10 = data8.wp;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs27 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs28 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet valid5 = false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs29 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data10 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err3 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions/wp',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/properties/wp/anyOf/0/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr3\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs29 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid5 || _valid1;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid5) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs31 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data10 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err4 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions/wp',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/properties/wp/anyOf/1/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'latest' !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata10\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err5 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions/wp',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/properties/wp/anyOf/1/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'latest',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs31 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid5 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid1;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid5) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs33 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data10 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions/wp',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/properties/wp/anyOf/2/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr6\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfalse !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata10\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions/wp',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/properties/wp/anyOf/2/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue: false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr7\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid1 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs33 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid5 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid5 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid1;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid5) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err8 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions/wp',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/properties/wp/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr8\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = _errs28;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors !== null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs28) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs28;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs27 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid3 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t'/preferredVersions',\n\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/preferredVersions/type',\n\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tvar valid0 = _errs19 === errors;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\tif (data.features !== undefined) {\n\t\t\t\t\t\t\t\t\tlet data11 = data.features;\n\t\t\t\t\t\t\t\t\tconst _errs35 = errors;\n\t\t\t\t\t\t\t\t\tif (errors === _errs35) {\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\tdata11 &&\n\t\t\t\t\t\t\t\t\t\t\ttypeof data11 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data11)\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\tconst _errs37 = errors;\n\t\t\t\t\t\t\t\t\t\t\tfor (const key3 in data11) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3 === 'intl' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3 === 'networking'\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/features',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/features/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (_errs37 === errors) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (data11.intl !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs38 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data11.intl !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/features/intl',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/features/properties/intl/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs38 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid6) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata11.networking !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs40 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data11.networking !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/features/networking',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/features/properties/networking/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs40 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid6 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/features',\n\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/features/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tvar valid0 = _errs35 === errors;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\tif (data.extraLibraries !== undefined) {\n\t\t\t\t\t\t\t\t\t\tlet data14 = data.extraLibraries;\n\t\t\t\t\t\t\t\t\t\tconst _errs42 = errors;\n\t\t\t\t\t\t\t\t\t\tif (errors === _errs42) {\n\t\t\t\t\t\t\t\t\t\t\tif (Array.isArray(data14)) {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 = true;\n\t\t\t\t\t\t\t\t\t\t\t\tconst len1 = data14.length;\n\t\t\t\t\t\t\t\t\t\t\t\tfor (\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet i1 = 0;\n\t\t\t\t\t\t\t\t\t\t\t\t\ti1 < len1;\n\t\t\t\t\t\t\t\t\t\t\t\t\ti1++\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data15 = data14[i1];\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs44 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data15 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/extraLibraries/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/ExtraLibrary/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif ('wp-cli' !== data15) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/extraLibraries/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/ExtraLibrary/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'wp-cli',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid7 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs44 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid7) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/extraLibraries',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/extraLibraries/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tvar valid0 = _errs42 === errors;\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\t\tif (data.constants !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\tlet data16 = data.constants;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs47 = errors;\n\t\t\t\t\t\t\t\t\t\t\tconst _errs48 = errors;\n\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs48) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata16 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data16 == 'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(data16)\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key4 in data16) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data17 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata16[key4];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs51 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data17 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data17 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data17 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'number' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tisFinite(data17)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/constants/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey4\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/PHPConstants/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: schema19\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.additionalProperties\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.type,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string,boolean,number',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid10 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs51 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid10) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/constants',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/definitions/PHPConstants/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tvar valid0 = _errs47 === errors;\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\t\t\tif (data.plugins !== undefined) {\n\t\t\t\t\t\t\t\t\t\t\t\tlet data18 = data.plugins;\n\t\t\t\t\t\t\t\t\t\t\t\tconst _errs53 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs53) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (Array.isArray(data18)) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst len2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata18.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet i2 = 0;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti2 < len2;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti2++\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data19 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata18[i2];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs55 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs56 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet valid12 = false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs57 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data19 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err9 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/plugins/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/plugins/items/anyOf/0/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr9\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs57 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid12 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid12 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid2;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid12) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs59 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate16(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata19,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/plugins/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata18,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate16.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs59 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid12 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid12 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid2;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid12) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err10 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/plugins/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/plugins/items/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr10,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr10\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs56;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs56\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs56;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid11 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs55 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid11) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/plugins',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/plugins/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 = _errs53 === errors;\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\tdata.siteOptions !==\n\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet data20 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.siteOptions;\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs60 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (errors === _errs60) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata20 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data20 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata20\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs62 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key5 in data20) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'blogname'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs63 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data20[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t] !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/siteOptions/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey5\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/~/g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~0'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/\\//g,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'~1'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/siteOptions/additionalProperties/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs63 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs62 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata20.blogname !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data20.blogname !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/siteOptions/blogname',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/siteOptions/properties/blogname/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/siteOptions',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/siteOptions/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs60 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.login !== undefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data23 = data.login;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs67 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs68 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet valid15 = false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs69 = errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data23 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err11 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/login',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/login/anyOf/0/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr11,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr11\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs69 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid15 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid15 || _valid3;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid15) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs71 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs71\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata23 &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data23 ==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'object' &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!Array.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata23\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet missing2;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data23.username ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'username')) ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(data23.password ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(missing2 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'password'))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err12 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/login',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/login/anyOf/1/required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'required',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissingProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"must have required property '\" +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmissing2 +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"'\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr12,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr12\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs73 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (const key6 in data23) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey6 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'username' ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey6 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'password'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err13 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/login',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/login/anyOf/1/additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'additionalProperties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tadditionalProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkey6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT have additional properties',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs73 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata23.username !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs74 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data23.username !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err14 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/login/username',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/login/anyOf/1/properties/username/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr14,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr14\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid16 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs74 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid16 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid16\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata23.password !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs76 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data23.password !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err15 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/login/password',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/login/anyOf/1/properties/password/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr15,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr15\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid16 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs76 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid16 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err16 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/login',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/login/anyOf/1/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be object',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr16\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs71 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid15 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid15 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid3;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (!valid15) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err17 = {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/login',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/login/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors === null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors = [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr17\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors = _errs68;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors !== null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (_errs68) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs68;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs67 === errors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.steps !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data26 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.steps;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs78 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs78\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tArray.isArray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata26\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid17 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst len3 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata26.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfor (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet i3 = 0;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti3 <\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlen3;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti3++\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet data27 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata26[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti3\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs80 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs81 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet valid18 = false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs82 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!validate28(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata27,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/steps/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentData:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata26,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparentDataProperty:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trootData,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t? validate28.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: vErrors.concat(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate28.errors\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs82 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid18 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid4;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid18\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs83 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data27 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/steps/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/steps/items/anyOf/1/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr18,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr18\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs83 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid18 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid4;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid18\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs85 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err19 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/steps/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/steps/items/anyOf/2/not',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'not',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must NOT be valid',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr19,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr19\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs85 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid18 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid4;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid18\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs87 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data27 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'boolean'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err20 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/steps/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/steps/items/anyOf/3/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be boolean',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr20\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfalse !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata27\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err21 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/steps/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/steps/items/anyOf/3/const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'const',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tallowedValue: false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be equal to constant',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr21,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr21\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs87 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid18 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid4;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid18\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs89 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata27 !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err22 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/steps/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/steps/items/anyOf/4/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'null',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be null',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr22,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr22\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar _valid4 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs89 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid18 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalid18 ||\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_valid4;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid18\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst err23 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/steps/' +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/steps/items/anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must match a schema in anyOf',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr23,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.push(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terr23\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs81;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs81\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors.length =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs81;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvErrors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnull;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid17 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs80 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t!valid17\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/steps',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/steps/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be array',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs78 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (valid0) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.$schema !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tundefined\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tconst _errs91 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttypeof data.$schema !==\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'string'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvalidate11.errors =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tinstancePath +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'/$schema',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tschemaPath:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'#/properties/%24schema/type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tkeyword:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'type',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tparams: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage:\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'must be string',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t];\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 =\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t_errs91 ===\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\terrors;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar valid0 = true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tvalidate11.errors = [\n\t\t\t\t{\n\t\t\t\t\tinstancePath,\n\t\t\t\t\tschemaPath: '#/type',\n\t\t\t\t\tkeyword: 'type',\n\t\t\t\t\tparams: { type: 'object' },\n\t\t\t\t\tmessage: 'must be object',\n\t\t\t\t},\n\t\t\t];\n\t\t\treturn false;\n\t\t}\n\t}\n\tvalidate11.errors = vErrors;\n\treturn errors === 0;\n}\nfunction validate10(\n\tdata,\n\t{ instancePath = '', parentData, parentDataProperty, rootData = data } = {}\n) {\n\tlet vErrors = null;\n\tlet errors = 0;\n\tif (\n\t\t!validate11(data, {\n\t\t\tinstancePath,\n\t\t\tparentData,\n\t\t\tparentDataProperty,\n\t\t\trootData,\n\t\t})\n\t) {\n\t\tvErrors =\n\t\t\tvErrors === null\n\t\t\t\t? validate11.errors\n\t\t\t\t: vErrors.concat(validate11.errors);\n\t\terrors = vErrors.length;\n\t}\n\tvalidate10.errors = vErrors;\n\treturn errors === 0;\n}\n","/**\n * Heuristically indicates whether a URL looks like a Git repository.\n *\n * Blueprint compilers use this to distinguish plugin/theme repository URLs\n * from downloadable ZIP URLs. This is intentionally a small allowlist of URL\n * shapes Playground can clone, not a general Git remote detector.\n */\nexport function seemsLikeGitRepoUrl(url: string): boolean {\n\tconst normalizedUrl = url.trim().replace(/\\/+$/, '');\n\n\t// Explicit Git clone URLs can point to any HTTPS host.\n\tif (/^https:\\/\\/.+\\.git$/.test(normalizedUrl)) {\n\t\treturn true;\n\t}\n\n\t// GitHub shorthand: exactly /owner/repo.\n\tif (/^https:\\/\\/github\\.com\\/[^/]+\\/[^/]+$/.test(normalizedUrl)) {\n\t\treturn true;\n\t}\n\n\t// GitLab shorthand: /group[/subgroup...]/project.\n\treturn /^https:\\/\\/gitlab\\.com\\/[^/]+\\/[^/]+(\\/[^/]+)*$/.test(\n\t\tnormalizedUrl\n\t);\n}\n","/** Thrown when a Blueprint declaration does not conform to its schema. */\nexport class InvalidBlueprintError extends Error {\n\tpublic readonly validationErrors?: unknown;\n\n\tconstructor(message: string, validationErrors?: unknown) {\n\t\tsuper(message);\n\t\tthis.name = 'InvalidBlueprintError';\n\t\tthis.validationErrors = validationErrors;\n\t}\n}\n","import { ProgressTracker } from '@php-wasm/progress';\nimport { Semaphore } from '@php-wasm/util';\nimport type { AllPHPVersion, UniversalPHP } from '@php-wasm/universal';\nimport { AllPHPVersions, LatestSupportedPHPVersion } from '@php-wasm/universal';\nimport type { FileReference } from './resources';\nimport { isResourceReference, Resource } from './resources';\nimport type { Step, StepDefinition, WriteFileStep } from '../steps';\nimport * as allStepHandlers from '../steps/handlers';\nimport type {\n\tBlueprintV1Declaration,\n\tExtraLibrary,\n\tStreamBundledFile,\n\tBlueprintV1,\n} from './types';\nimport type { BlueprintBundle } from '../types';\nimport { logger } from '@php-wasm/logger';\n\n// @TODO: Configure this in the `wp-cli` step, not here.\nconst { wpCLI, ...otherStepHandlers } = allStepHandlers;\nconst keyedStepHandlers = {\n\t...otherStepHandlers,\n\t'wp-cli': wpCLI,\n\timportFile: otherStepHandlers.importWxr,\n};\n\n/**\n * The JSON schema validator stored in this directory is used to validate\n * the Blueprints and is autogenerated from the Blueprints schema which is\n * autogenerated from TypeScript types.\n *\n * Whenever the types are modified, the schema and validator need to be\n * rebuilt using `nx build playground-blueprints` and then committed to\n * the repository.\n *\n * Unfortunately, it is not auto-rebuilt in `npm run dev` mode as the\n * `dts-bundle-generator` utility we use for type rollyps does not support\n * watching for changes.\n */\nimport blueprintValidator from '../../../public/blueprint-schema-validator';\nimport { defaultWpCliPath, defaultWpCliResource } from '../steps/wp-cli';\nimport type { ErrorObject } from 'ajv';\nimport { seemsLikeGitRepoUrl } from '../is-git-repo-url';\nimport { InvalidBlueprintError } from '../invalid-blueprint-error';\n\nexport { InvalidBlueprintError };\n\n/**\n * Error thrown when a single Blueprint step fails during execution.\n *\n * This error carries structured information about the failing step so that\n * consumers (e.g. the Playground UI) do not have to parse human‑readable\n * error messages to understand what went wrong.\n */\nexport class BlueprintStepExecutionError extends Error {\n\tpublic readonly stepNumber: number;\n\tpublic readonly step: StepDefinition;\n\tpublic readonly messages: string[];\n\n\tconstructor(options: {\n\t\tstepNumber: number;\n\t\tstep: StepDefinition;\n\t\tcause: unknown;\n\t}) {\n\t\tconst { stepNumber, step, cause } = options;\n\t\tconst causeError =\n\t\t\tcause instanceof Error ? cause : new Error(String(cause));\n\t\tconst baseMessage = `Error when executing the blueprint step #${stepNumber}`;\n\t\tconst fullMessage = causeError.message\n\t\t\t? `${baseMessage}: ${causeError.message}`\n\t\t\t: baseMessage;\n\n\t\tsuper(fullMessage, { cause: causeError });\n\t\tthis.name = 'BlueprintStepExecutionError';\n\t\tthis.stepNumber = stepNumber;\n\t\tthis.step = step;\n\t\tthis.messages = (causeError.message || '')\n\t\t\t.split('\\n')\n\t\t\t.map((line) => line.trim())\n\t\t\t.filter(Boolean);\n\t}\n}\n\nexport type CompiledV1Step = (php: UniversalPHP) => Promise<void> | void;\n\nexport interface CompiledBlueprintV1 {\n\t/** The requested versions of PHP and WordPress for the blueprint */\n\tversions: {\n\t\tphp: AllPHPVersion;\n\t\twp: string;\n\t};\n\tfeatures: {\n\t\t/** Should boot with support for Intl dynamic extension */\n\t\tintl: boolean;\n\t\t/** Should boot with support for network request via wp_safe_remote_get? */\n\t\tnetworking: boolean;\n\t};\n\textraLibraries: ExtraLibrary[];\n\t/** The compiled steps for the blueprint */\n\trun: (playground: UniversalPHP) => Promise<void>;\n}\n\nexport type OnStepCompleted = (output: any, step: StepDefinition) => any;\n\nexport interface CompileBlueprintV1Options {\n\t/** Optional progress tracker to monitor progress */\n\tprogress?: ProgressTracker;\n\t/** Optional semaphore to control access to a shared resource */\n\tsemaphore?: Semaphore;\n\t/** Optional callback with step output */\n\tonStepCompleted?: OnStepCompleted;\n\t/** Optional callback with blueprint validation result */\n\tonBlueprintValidated?: (blueprint: BlueprintV1Declaration) => void;\n\t/**\n\t * Proxy URL to use for cross-origin requests.\n\t *\n\t * For example, if corsProxy is set to \"https://cors.wordpress.net/proxy.php\",\n\t * then the CORS requests to https://github.com/WordPress/gutenberg.git would actually\n\t * be made to https://cors.wordpress.net/proxy.php?https://github.com/WordPress/gutenberg.git.\n\t */\n\tcorsProxy?: string;\n\t/**\n\t * A filesystem to use for the blueprint.\n\t */\n\tstreamBundledFile?: StreamBundledFile;\n\t/**\n\t * Additional headers to pass to git operations.\n\t * A function that returns headers based on the URL being accessed.\n\t */\n\tgitAdditionalHeadersCallback?: (url: string) => Record<string, string>;\n\t/**\n\t * Additional steps to add to the blueprint.\n\t */\n\tadditionalSteps?: any[];\n}\n\nexport async function compileBlueprintV1(\n\tinput: BlueprintV1Declaration | BlueprintBundle,\n\toptions: CompileBlueprintV1Options = {}\n): Promise<CompiledBlueprintV1> {\n\tconst finalOptions: CompileBlueprintV1Options = {\n\t\t...options,\n\t};\n\n\tlet blueprint: BlueprintV1Declaration;\n\tif (isBlueprintBundle(input)) {\n\t\tblueprint = await getBlueprintDeclaration(input);\n\t\tfinalOptions.streamBundledFile = function (...args: [any]) {\n\t\t\treturn input.read(...args);\n\t\t};\n\t} else {\n\t\tblueprint = input as BlueprintV1Declaration;\n\t}\n\n\treturn compileBlueprintJson(blueprint, finalOptions);\n}\n\nexport function isBlueprintBundle(input: any): input is BlueprintBundle {\n\treturn input && 'read' in input && typeof input.read === 'function';\n}\n\nexport async function getBlueprintDeclaration(\n\tblueprint: BlueprintV1 | BlueprintBundle\n): Promise<BlueprintV1Declaration> {\n\tif (!isBlueprintBundle(blueprint)) {\n\t\treturn blueprint;\n\t}\n\tconst blueprintFile = await blueprint.read('blueprint.json');\n\tconst blueprintText = await blueprintFile.text();\n\treturn JSON.parse(blueprintText);\n}\n\n/**\n * Compiles Blueprint into a form that can be executed.\n *\n * @param playground The PlaygroundClient to use for the compilation\n * @param blueprint The bBueprint to compile\n * @param options Additional options for the compilation\n * @returns The compiled blueprint\n */\nfunction compileBlueprintJson(\n\tblueprint: BlueprintV1Declaration,\n\t{\n\t\tprogress = new ProgressTracker(),\n\t\tsemaphore = new Semaphore({ concurrency: 3 }),\n\t\tonStepCompleted = () => {},\n\t\tonBlueprintValidated = () => {},\n\t\tcorsProxy,\n\t\tstreamBundledFile,\n\t\tgitAdditionalHeadersCallback,\n\t\tadditionalSteps,\n\t}: CompileBlueprintV1Options = {}\n): CompiledBlueprintV1 {\n\tblueprint = structuredClone(blueprint);\n\n\tblueprint = {\n\t\t...blueprint,\n\t\tsteps: (blueprint.steps || [])\n\t\t\t.filter(isStepDefinition)\n\t\t\t.filter(isStepStillSupported),\n\t};\n\n\tblueprint.steps = [...(blueprint.steps || []), ...(additionalSteps || [])];\n\n\tif (blueprint.preferredVersions?.wp === false) {\n\t\tassertNoWordPressFeatures(blueprint);\n\t}\n\n\tfor (const step of blueprint.steps!) {\n\t\tif (!step || typeof step !== 'object') {\n\t\t\tcontinue;\n\t\t}\n\t\t// Convert legacy importFile steps to importWxr\n\t\tif ((step as any).step === 'importFile') {\n\t\t\t(step as any).step = 'importWxr';\n\t\t\tlogger.warn(\n\t\t\t\t`The \"importFile\" step is deprecated. Use \"importWxr\" instead.`\n\t\t\t);\n\t\t} else if (\n\t\t\t(step as any)?.step === 'installPlugin' &&\n\t\t\t'pluginZipFile' in step\n\t\t) {\n\t\t\t(step as any).pluginData = (step as any).pluginZipFile;\n\t\t\tlogger.warn(\n\t\t\t\t`The \"pluginZipFile\" option of the \"installPlugin\" step is deprecated. Use \"pluginData\" instead.`\n\t\t\t);\n\t\t} else if (\n\t\t\t(step as any)?.step === 'installTheme' &&\n\t\t\t'themeZipFile' in step\n\t\t) {\n\t\t\t(step as any).themeData = (step as any).themeZipFile;\n\t\t\tlogger.warn(\n\t\t\t\t`The \"themeZipFile\" option of the \"installTheme\" step is deprecated. Use \"themeData\" instead.`\n\t\t\t);\n\t\t}\n\t}\n\n\t// Experimental declarative syntax {{{\n\tif (blueprint.constants) {\n\t\tblueprint.steps!.unshift({\n\t\t\tstep: 'defineWpConfigConsts',\n\t\t\tconsts: blueprint.constants,\n\t\t});\n\t}\n\tif (blueprint.siteOptions) {\n\t\tblueprint.steps!.unshift({\n\t\t\tstep: 'setSiteOptions',\n\t\t\toptions: blueprint.siteOptions,\n\t\t});\n\t}\n\tif (blueprint.plugins) {\n\t\t// Translate an array of strings into a map of pluginName => true to\n\t\t// install the latest version of the plugin from wordpress.org\n\t\tconst steps = blueprint.plugins\n\t\t\t.map((value) => {\n\t\t\t\tif (typeof value === 'string') {\n\t\t\t\t\tif (seemsLikeGitRepoUrl(value)) {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tresource: 'zip',\n\t\t\t\t\t\t\tinner: {\n\t\t\t\t\t\t\t\tresource: 'git:directory',\n\t\t\t\t\t\t\t\turl: value.trim().replace(/\\/+$/, ''),\n\t\t\t\t\t\t\t\tref: 'HEAD',\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t} as FileReference;\n\t\t\t\t\t} else if (value.startsWith('https://')) {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tresource: 'url',\n\t\t\t\t\t\t\turl: value,\n\t\t\t\t\t\t} as FileReference;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tresource: 'wordpress.org/plugins',\n\t\t\t\t\t\t\tslug: value,\n\t\t\t\t\t\t} as FileReference;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn value;\n\t\t\t})\n\t\t\t.map((resource) => ({\n\t\t\t\tstep: 'installPlugin',\n\t\t\t\tpluginData: resource,\n\t\t\t})) as StepDefinition[];\n\t\tblueprint.steps!.unshift(...steps);\n\t}\n\n\t/**\n\t * Prepend a login step to enable Blueprints to override the default login step.\n\t */\n\tif (blueprint.login) {\n\t\tblueprint.steps!.unshift({\n\t\t\tstep: 'login',\n\t\t\t...(blueprint.login === true\n\t\t\t\t? { username: 'admin' }\n\t\t\t\t: blueprint.login),\n\t\t});\n\t}\n\n\t/**\n\t * Download WP-CLI. {{{\n\t * Hardcoding this in the compile() function is a temporary solution\n\t * to provide steps with the wp-cli.phar file it needs. Eventually,\n\t * each Blueprint step may be able to specify any pre-requisite resources.\n\t * Also, wp-cli should only be downloaded if it's not already present.\n\t *\n\t * The enableMultisite step uses wp-cli to convert the site to a multisite.\n\t * The wp-cli step itself depends on WP-CLI.\n\t */\n\tconst indexOfStepThatDependsOnWpCli =\n\t\tblueprint.steps?.findIndex(\n\t\t\t(step) =>\n\t\t\t\ttypeof step === 'object' &&\n\t\t\t\tstep?.step &&\n\t\t\t\t['wp-cli', 'enableMultisite'].includes(step.step)\n\t\t) ?? -1;\n\tif (\n\t\tblueprint?.extraLibraries?.includes('wp-cli') ||\n\t\tindexOfStepThatDependsOnWpCli !== -1\n\t) {\n\t\tconst wpCliInstallStep: WriteFileStep<FileReference> = {\n\t\t\tstep: 'writeFile',\n\t\t\tdata: defaultWpCliResource,\n\t\t\tpath: defaultWpCliPath,\n\t\t};\n\t\t/**\n\t\t * If the blueprint does not have a wp-cli step,\n\t\t * we can install wp-cli as the last step because other steps don't depend\n\t\t * on wp-cli.\n\t\t *\n\t\t * If the blueprint has wp-cli steps,\n\t\t * we need to install wp-cli before running these steps.\n\t\t */\n\t\tif (indexOfStepThatDependsOnWpCli === -1) {\n\t\t\tblueprint.steps?.push(wpCliInstallStep);\n\t\t} else {\n\t\t\tblueprint.steps?.splice(\n\t\t\t\tindexOfStepThatDependsOnWpCli,\n\t\t\t\t0,\n\t\t\t\twpCliInstallStep\n\t\t\t);\n\t\t}\n\t}\n\n\t/**\n\t * Download the WordPress-importer plugin. {{{\n\t * Hardcoding this in the compile() function is a temporary solution\n\t */\n\tconst importWxrStepIndex = blueprint.steps?.findIndex(\n\t\t(step) => typeof step === 'object' && step?.step === 'importWxr'\n\t);\n\tif (importWxrStepIndex !== undefined && importWxrStepIndex > -1) {\n\t\tblueprint.steps?.splice(importWxrStepIndex, 0, {\n\t\t\tstep: 'installPlugin',\n\t\t\tpluginData: {\n\t\t\t\tresource: 'wordpress.org/plugins',\n\t\t\t\tslug: 'wordpress-importer',\n\t\t\t},\n\t\t});\n\t}\n\n\tconst validationResult = validateBlueprint(blueprint);\n\tif (!validationResult.valid) {\n\t\tconst { errors } = validationResult;\n\t\tconst formattedErrors = formatValidationErrors(blueprint, errors);\n\n\t\tthrow new InvalidBlueprintError(\n\t\t\t`Invalid Blueprint: The Blueprint does not conform to the schema.\\n\\n` +\n\t\t\t\t`Found ${errors.length} validation error(s):\\n\\n${formattedErrors}\\n\\n` +\n\t\t\t\t`Please review your Blueprint and fix these issues. ` +\n\t\t\t\t`Learn more about the Blueprint format: https://wordpress.github.io/wordpress-playground/blueprints/data-format`,\n\t\t\terrors\n\t\t);\n\t}\n\n\tonBlueprintValidated(blueprint);\n\n\tconst steps = (blueprint.steps || []) as StepDefinition[];\n\tconst totalProgressWeight = steps.reduce(\n\t\t(total, step) => total + (step.progress?.weight || 1),\n\t\t0\n\t);\n\tconst compiled = steps.map((step) =>\n\t\tcompileStep(step, {\n\t\t\tsemaphore,\n\t\t\trootProgressTracker: progress,\n\t\t\ttotalProgressWeight,\n\t\t\tcorsProxy,\n\t\t\tstreamBundledFile,\n\t\t\tgitAdditionalHeadersCallback,\n\t\t})\n\t);\n\n\treturn {\n\t\tversions: {\n\t\t\tphp: compileVersion(\n\t\t\t\tblueprint.preferredVersions?.php,\n\t\t\t\tAllPHPVersions,\n\t\t\t\tLatestSupportedPHPVersion\n\t\t\t),\n\t\t\twp: blueprint.preferredVersions?.wp || 'latest',\n\t\t},\n\t\tfeatures: {\n\t\t\t// Disable intl by default to reduce the transfer size\n\t\t\tintl: blueprint.features?.intl ?? false,\n\t\t\t// Enable network access by default\n\t\t\tnetworking: blueprint.features?.networking ?? true,\n\t\t},\n\t\textraLibraries: blueprint.extraLibraries || [],\n\t\trun: async (playground: UniversalPHP) => {\n\t\t\ttry {\n\t\t\t\t// Start resolving resources early\n\t\t\t\tfor (const { resources } of compiled) {\n\t\t\t\t\tfor (const resource of resources) {\n\t\t\t\t\t\tresource.setPlayground(playground);\n\t\t\t\t\t\tif (resource.isAsync) {\n\t\t\t\t\t\t\tresource.resolve().catch(() => {\n\t\t\t\t\t\t\t\t/**\n\t\t\t\t\t\t\t\t * Catch and ignore the errors.\n\t\t\t\t\t\t\t\t *\n\t\t\t\t\t\t\t\t * If we let them bubble up at this stage, they'll turn into uncaught\n\t\t\t\t\t\t\t\t * rejections and clog the error log.\n\t\t\t\t\t\t\t\t *\n\t\t\t\t\t\t\t\t * Instead, let's wait until a step tries to await the resource resolution\n\t\t\t\t\t\t\t\t * and handle the rejection there.\n\t\t\t\t\t\t\t\t */\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tfor (const [i, { run, step }] of Object.entries(compiled)) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tconst result = await run(playground);\n\t\t\t\t\t\tonStepCompleted(result, step);\n\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\tconst stepNumber = Number(i) + 1;\n\t\t\t\t\t\tthrow new BlueprintStepExecutionError({\n\t\t\t\t\t\t\tstepNumber,\n\t\t\t\t\t\t\tstep,\n\t\t\t\t\t\t\tcause: e,\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} finally {\n\t\t\t\ttry {\n\t\t\t\t\t/**\n\t\t\t\t\t * Use an intermediate redirection step to ensure the login cookies\n\t\t\t\t\t * are set before we redirecting to the landing page.\n\t\t\t\t\t *\n\t\t\t\t\t * @see playground_auto_login_redirect_target in the @wp-playground/wordpress package.\n\t\t\t\t\t */\n\t\t\t\t\tconst targetUrl = await (\n\t\t\t\t\t\tplayground as any\n\t\t\t\t\t).pathToInternalUrl(blueprint.landingPage || '/');\n\t\t\t\t\tawait (playground as any).goTo(\n\t\t\t\t\t\t'/index.php?playground-redirection-handler&next=' +\n\t\t\t\t\t\t\tencodeURIComponent(targetUrl)\n\t\t\t\t\t);\n\t\t\t\t} catch {\n\t\t\t\t\t/**\n\t\t\t\t\t * Redirecting to the landing page is a browser-only feature for now.\n\t\t\t\t\t *\n\t\t\t\t\t * The playground object only exposes the `goTo` method when\n\t\t\t\t\t * it's a Comlink proxy object running in the browser.\n\t\t\t\t\t *\n\t\t\t\t\t * Let's tolerate any errors thrown in other runtimes.\n\t\t\t\t\t *\n\t\t\t\t\t * @TODO: Handle \"landingPage\" in a PHP plugin to make it work in all environments.\n\t\t\t\t\t */\n\t\t\t\t}\n\t\t\t\tprogress.finish();\n\t\t\t}\n\t\t},\n\t};\n}\n\nfunction formatValidationErrors(\n\tblueprint: BlueprintV1Declaration,\n\terrors: ErrorObject<string, unknown>[]\n) {\n\treturn errors\n\t\t.map((err, index) => {\n\t\t\tconst path = err.instancePath || '/';\n\t\t\tlet message = err.message || 'validation failed';\n\n\t\t\t// For \"additional properties\" errors, highlight the actual problematic key\n\t\t\tlet highlightedSnippet = '';\n\t\t\tif (message.includes('must NOT have additional properties')) {\n\t\t\t\t// Extract the property name from the error params\n\t\t\t\tconst additionalProperty = (err.params as any)\n\t\t\t\t\t?.additionalProperty;\n\t\t\t\tif (additionalProperty) {\n\t\t\t\t\tmessage = `has unexpected property \"${additionalProperty}\"`;\n\n\t\t\t\t\t// Try to show the offending key highlighted\n\t\t\t\t\ttry {\n\t\t\t\t\t\tconst pathParts = path.split('/').filter(Boolean);\n\t\t\t\t\t\tlet currentValue: any = blueprint;\n\t\t\t\t\t\tfor (const part of pathParts) {\n\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\tcurrentValue &&\n\t\t\t\t\t\t\t\ttypeof currentValue === 'object'\n\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\tcurrentValue = currentValue[part];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (currentValue && typeof currentValue === 'object') {\n\t\t\t\t\t\t\tconst offendingValue =\n\t\t\t\t\t\t\t\tcurrentValue[additionalProperty];\n\t\t\t\t\t\t\tconst valueStr = JSON.stringify(offendingValue);\n\t\t\t\t\t\t\thighlightedSnippet = `\\n  \"${additionalProperty}\": ${valueStr}\\n  ${'^'.repeat(\n\t\t\t\t\t\t\t\tadditionalProperty.length + 2\n\t\t\t\t\t\t\t)} This property is not recognized`;\n\t\t\t\t\t\t}\n\t\t\t\t\t} catch {\n\t\t\t\t\t\t// If we can't extract context, that's okay\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// For other errors, try to extract the offending value\n\t\t\t\ttry {\n\t\t\t\t\tconst pathParts = path.split('/').filter(Boolean);\n\t\t\t\t\tlet currentValue: any = blueprint;\n\t\t\t\t\tfor (const part of pathParts) {\n\t\t\t\t\t\tif (currentValue && typeof currentValue === 'object') {\n\t\t\t\t\t\t\tcurrentValue = currentValue[part];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif (currentValue !== undefined) {\n\t\t\t\t\t\tconst valueStr = JSON.stringify(currentValue, null, 2);\n\t\t\t\t\t\t// Limit snippet length\n\t\t\t\t\t\tconst snippet =\n\t\t\t\t\t\t\tvalueStr.length > 200\n\t\t\t\t\t\t\t\t? valueStr.substring(0, 200) + '...'\n\t\t\t\t\t\t\t\t: valueStr;\n\t\t\t\t\t\thighlightedSnippet = `\\n  Value: ${snippet}`;\n\t\t\t\t\t}\n\t\t\t\t} catch {\n\t\t\t\t\t// If we can't extract context, that's okay\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn `${\n\t\t\t\tindex + 1\n\t\t\t}. At path \"${path}\": ${message}${highlightedSnippet}`;\n\t\t})\n\t\t.join('\\n\\n');\n}\n\nexport type BlueprintValidationResult =\n\t| { valid: true }\n\t| { valid: false; errors: ErrorObject[] };\n\nexport function validateBlueprint(\n\tblueprintMaybe: object\n): BlueprintValidationResult {\n\tconst valid = blueprintValidator(blueprintMaybe);\n\tif (valid) {\n\t\treturn { valid };\n\t}\n\n\t/**\n\t * Each entry of \"steps\" can be either an object, null, undefined etc\n\t * via the \"anyOf\" part of the schema.\n\t *\n\t * If the step has any error in it, like a missing property, Ajv will\n\t * also return errors for each case listed in \"anyOf\" which means we'll\n\t * learn that step is not a null, undefined etc. This is not helpful, so\n\t * we filter out those errors.\n\t *\n\t * However, if the \"anyOf\" error is the only error we have then we want\n\t * to keep it because the step is likely, say, a number, and we want to\n\t * let the developer know.\n\t */\n\tconst hasErrorsDifferentThanAnyOf: Set<string> = new Set();\n\tfor (const error of blueprintValidator.errors!) {\n\t\tif (!error.schemaPath.startsWith('#/properties/steps/items/anyOf')) {\n\t\t\thasErrorsDifferentThanAnyOf.add(error.instancePath);\n\t\t}\n\t}\n\tconst errors =\n\t\tblueprintValidator.errors?.filter(\n\t\t\t(error) =>\n\t\t\t\t!(\n\t\t\t\t\terror.schemaPath.startsWith(\n\t\t\t\t\t\t'#/properties/steps/items/anyOf'\n\t\t\t\t\t) && hasErrorsDifferentThanAnyOf.has(error.instancePath)\n\t\t\t\t)\n\t\t) ?? [];\n\n\treturn {\n\t\tvalid: false,\n\t\terrors,\n\t};\n}\n\n/**\n * Compiles a preferred version string into a supported version\n *\n * @param value The value to compile\n * @param supported The list of supported versions\n * @param latest The latest supported version\n * @returns The compiled version\n */\nfunction compileVersion<T>(\n\tvalue: string | undefined | null,\n\tsupported: readonly T[],\n\tlatest: string\n): T {\n\t// Upgrade deprecated PHP versions 7.2 and 7.3 to 7.4\n\tif (value === '7.2' || value === '7.3') {\n\t\tlogger.warn(\n\t\t\t`PHP ${value} is no longer supported. Automatically upgrading to PHP 7.4.`\n\t\t);\n\t\tvalue = '7.4';\n\t}\n\n\tif (value && supported.includes(value as any)) {\n\t\treturn value as T;\n\t}\n\treturn latest as T;\n}\n\n/**\n * Determines if a step is a StepDefinition object\n *\n * @param step The object to test\n * @returns Whether the object is a StepDefinition\n */\nexport function isStepDefinition(\n\tstep: Step | string | undefined | false | null\n): step is StepDefinition {\n\treturn !!(typeof step === 'object' && step);\n}\n\n/**\n * Determines if a step is still supported, or was it deprecated\n * and removed.\n *\n * @param step The step definition to test.\n * @returns Whether the step is still supported.\n */\nfunction isStepStillSupported(\n\tstep: Record<string, any>\n): step is StepDefinition {\n\tif (['setPhpIniEntry', 'request'].includes(step['step'])) {\n\t\tlogger.warn(\n\t\t\t`The \"${step['step']}\" Blueprint is no longer supported and you can remove it from your Blueprint.`\n\t\t);\n\t\treturn false;\n\t}\n\treturn true;\n}\n\ninterface CompileStepArgsOptions {\n\t/** Optional semaphore to control access to a shared resource */\n\tsemaphore?: Semaphore;\n\t/** The root progress tracker for the compilation */\n\trootProgressTracker: ProgressTracker;\n\t/** The total progress weight of all the steps in the blueprint */\n\ttotalProgressWeight: number;\n\t/**\n\t * Proxy URL to use for cross-origin requests.\n\t *\n\t * @see CompileBlueprintV1Options.corsProxy\n\t */\n\tcorsProxy?: string;\n\t/**\n\t * A filesystem to use for the \"blueprint\" resource type.\n\t */\n\tstreamBundledFile?: StreamBundledFile;\n\t/**\n\t * Additional headers to pass to git operations.\n\t * A function that returns headers based on the URL being accessed.\n\t */\n\tgitAdditionalHeadersCallback?: (url: string) => Record<string, string>;\n}\n\n/**\n * Compiles a single Blueprint step into a form that can be executed\n *\n * @param playground The PlaygroundClient to use for the compilation\n * @param step The step to compile\n * @param options Additional options for the compilation\n * @returns The compiled step\n */\nfunction compileStep<S extends StepDefinition>(\n\tstep: S,\n\t{\n\t\tsemaphore,\n\t\trootProgressTracker,\n\t\ttotalProgressWeight,\n\t\tcorsProxy,\n\t\tstreamBundledFile,\n\t\tgitAdditionalHeadersCallback,\n\t}: CompileStepArgsOptions\n): { run: CompiledV1Step; step: S; resources: Array<Resource<any>> } {\n\tconst stepProgress = rootProgressTracker.stage(\n\t\t(step.progress?.weight || 1) / totalProgressWeight,\n\t\tstep.progress?.caption\n\t);\n\n\tconst args: any = {};\n\tfor (const key of Object.keys(step)) {\n\t\tlet value = (step as any)[key];\n\t\tif (isResourceReference(value)) {\n\t\t\tvalue = Resource.create(value, {\n\t\t\t\tsemaphore,\n\t\t\t\tcorsProxy,\n\t\t\t\tstreamBundledFile,\n\t\t\t\tgitAdditionalHeadersCallback,\n\t\t\t});\n\t\t}\n\t\targs[key] = value;\n\t}\n\n\tconst run = async (playground: UniversalPHP) => {\n\t\ttry {\n\t\t\tif (step.progress?.caption) {\n\t\t\t\tstepProgress.setCaption(step.progress.caption);\n\t\t\t}\n\t\t\tstepProgress.fillSlowly();\n\t\t\treturn await keyedStepHandlers[step.step](\n\t\t\t\tplayground,\n\t\t\t\tawait resolveArguments(args),\n\t\t\t\t{\n\t\t\t\t\ttracker: stepProgress,\n\t\t\t\t\tinitialCaption: step.progress?.caption,\n\t\t\t\t}\n\t\t\t);\n\t\t} finally {\n\t\t\tstepProgress.finish();\n\t\t}\n\t};\n\n\t/**\n\t * The weight of each async resource is the same, and is the same as the\n\t * weight of the step itself.\n\t */\n\tconst resources = getResources(args);\n\tconst asyncResources = getResources(args).filter(\n\t\t(resource) => resource.isAsync\n\t);\n\n\tconst evenWeight = 1 / (asyncResources.length + 1);\n\tfor (const resource of asyncResources) {\n\t\tresource.progress = stepProgress.stage(evenWeight);\n\t}\n\n\treturn { run, step, resources };\n}\n\n/**\n * Gets the resources used by a specific compiled step\n *\n * @param step The compiled step\n * @returns The resources used by the compiled step\n */\nfunction getResources<S extends StepDefinition>(args: S) {\n\tconst result: Resource<any>[] = [];\n\tfor (const argName in args) {\n\t\tconst resourceMaybe = (args as any)[argName];\n\t\tif (resourceMaybe instanceof Resource) {\n\t\t\tresult.push(resourceMaybe);\n\t\t}\n\t}\n\treturn result;\n}\n\n/**\n * Replaces Resource objects with their resolved values\n *\n * @param step The compiled step\n * @returns The resources used by the compiled step\n */\nasync function resolveArguments<T extends Record<string, unknown>>(args: T) {\n\tconst resolved: any = {};\n\tfor (const argName in args) {\n\t\tconst resourceMaybe = (args as any)[argName];\n\t\tif (resourceMaybe instanceof Resource) {\n\t\t\tresolved[argName] = await resourceMaybe.resolve();\n\t\t} else {\n\t\t\tresolved[argName] = resourceMaybe;\n\t\t}\n\t}\n\treturn resolved;\n}\n\nexport async function runBlueprintV1Steps(\n\tcompiledBlueprint: CompiledBlueprintV1,\n\tplayground: UniversalPHP\n) {\n\tawait compiledBlueprint.run(playground);\n}\n\n/**\n * Steps that require WordPress to be installed. When\n * `preferredVersions.wp: false` is set on the Blueprint, these steps are\n * rejected at compile time.\n */\nconst WORDPRESS_ONLY_STEPS = new Set([\n\t'installPlugin',\n\t'installTheme',\n\t'activatePlugin',\n\t'activateTheme',\n\t'login',\n\t'setSiteOptions',\n\t'updateUserMeta',\n\t'importWxr',\n\t'importFile',\n\t'importWordPressFiles',\n\t'enableMultisite',\n\t'wp-cli',\n\t'resetData',\n]);\n\nfunction assertNoWordPressFeatures(blueprint: BlueprintV1Declaration) {\n\tconst offenders: string[] = [];\n\tif (blueprint.plugins?.length) offenders.push('plugins');\n\tif (blueprint.siteOptions) offenders.push('siteOptions');\n\tif (blueprint.login) offenders.push('login');\n\tif (blueprint.extraLibraries?.includes('wp-cli')) {\n\t\toffenders.push(\"extraLibraries includes 'wp-cli'\");\n\t}\n\tconst badSteps = (blueprint.steps || [])\n\t\t.filter(\n\t\t\t(s): s is StepDefinition =>\n\t\t\t\t!!s && typeof s === 'object' && 'step' in s\n\t\t)\n\t\t.map((s) => s.step)\n\t\t.filter((name) => WORDPRESS_ONLY_STEPS.has(name as string));\n\tif (badSteps.length) {\n\t\toffenders.push(`steps: ${[...new Set(badSteps)].join(', ')}`);\n\t}\n\tif (offenders.length) {\n\t\tthrow new InvalidBlueprintError(\n\t\t\t`Blueprint has \\`preferredVersions.wp: false\\` but uses ` +\n\t\t\t\t`WordPress-only features: ${offenders.join('; ')}. Remove ` +\n\t\t\t\t`these or drop \\`preferredVersions.wp: false\\`.`,\n\t\t\t[]\n\t\t);\n\t}\n}\n","import {\n\tvalidateBlueprint,\n\ttype BlueprintValidationResult,\n} from './v1/compile';\n\n/**\n * Validates either Blueprint declaration version without loading the v2\n * validator for v1 declarations.\n */\nexport async function validateBlueprintDeclaration(\n\tblueprintMaybe: unknown\n): Promise<BlueprintValidationResult> {\n\tif (isBlueprintV2Candidate(blueprintMaybe)) {\n\t\tconst { validateBlueprintV2Declaration } =\n\t\t\tawait import('./v2/validate-blueprint-v2');\n\t\treturn validateBlueprintV2Declaration(blueprintMaybe);\n\t}\n\n\treturn validateBlueprint(blueprintMaybe as object);\n}\n\n/** Selects v2 only when the declaration explicitly requests version 2. */\nfunction isBlueprintV2Candidate(\n\tblueprintMaybe: unknown\n): blueprintMaybe is { version: 2 } {\n\treturn (\n\t\ttypeof blueprintMaybe === 'object' &&\n\t\tblueprintMaybe !== null &&\n\t\t'version' in blueprintMaybe &&\n\t\tblueprintMaybe.version === 2\n\t);\n}\n","import {\n\tAllPHPVersions,\n\tLatestSupportedPHPVersion,\n\ttype AllPHPVersion,\n} from '@php-wasm/universal';\nimport { RecommendedPHPVersion } from '@wp-playground/common';\nimport {\n\tgetWordPressStableVersions,\n\tresolveWordPressRelease,\n} from '@wp-playground/wordpress';\nimport type { BlueprintDeclaration, RuntimeConfiguration } from '../types';\nimport type { BlueprintV2Declaration } from './blueprint-v2-declaration';\n\nconst V2_WORDPRESS_VERSION_LABELS = [\n\t'latest',\n\t'beta',\n\t'trunk',\n\t'nightly',\n\t'none',\n];\nconst CUSTOM_WORDPRESS_VERSION = 'custom';\nconst V2_WORDPRESS_VERSION_PATTERN =\n\t/^\\d+\\.\\d+(?:\\.\\d+)?(?:-(?:beta|rc)\\d+)?$/i;\nconst V2_PHP_CONSTRAINT_CANDIDATES = AllPHPVersions.filter(\n\t(phpVersion) => phpVersion !== 'next'\n) as AllPHPVersion[];\n\ntype UnvalidatedV2WordPressVersionConstraint = {\n\tmin: unknown;\n\tmax?: unknown;\n\tpreferred?: unknown;\n};\ntype V2WordPressVersionConstraint = {\n\tmin: string;\n\tmax?: string;\n\tpreferred?: string;\n};\ntype ComparableWordPressVersion = {\n\tparts: [number, number, number, number, number];\n\tpatchSpecified: boolean;\n\tsuffix?: 'beta' | 'rc';\n};\n\n/**\n * Resolves the runtime settings required by a Blueprint v2 declaration.\n *\n * This module owns the v2 support boundary: unsupported declarations and\n * runtime sources are rejected here instead of falling back to v1 behavior.\n * The validation callback runs before any runtime source is resolved.\n */\nexport async function resolveBlueprintV2RuntimeConfiguration(\n\tdeclaration: BlueprintDeclaration,\n\tsiteMode: BlueprintV2SiteMode = 'create-new-site',\n\tonBlueprintValidated?: (declaration: BlueprintV2Declaration) => void\n): Promise<RuntimeConfiguration> {\n\tif (!isBlueprintV2Declaration(declaration)) {\n\t\tthrow new Error('Expected a Blueprint v2 declaration.');\n\t}\n\tconst { assertValidBlueprintV2Declaration } =\n\t\tawait import('./validate-blueprint-v2');\n\tassertValidBlueprintV2Declaration(declaration);\n\tonBlueprintValidated?.(declaration);\n\tconst playgroundOptions =\n\t\tdeclaration.applicationOptions?.['wordpress-playground'];\n\tconst wpVersion = await resolveV2WordPressVersion(\n\t\tdeclaration,\n\t\tsiteMode === 'create-new-site'\n\t);\n\n\treturn {\n\t\tphpVersion: resolveV2PHPVersion(declaration),\n\t\twpVersion,\n\t\tintl: playgroundOptions?.loadPhpExtensions?.includes('intl') ?? false,\n\t\tnetworking: playgroundOptions?.networkAccess ?? false,\n\t\tconstants: declaration.constants ?? {},\n\t\textraLibraries: [],\n\t};\n}\n\n/** Describes whether Playground creates a site or applies to mounted files. */\nexport type BlueprintV2SiteMode = 'create-new-site' | 'apply-to-existing-site';\n\n/**\n * Verifies that an existing site satisfies its Blueprint v2 WordPress version.\n *\n * Only constraint objects restrict an existing site. Shorthand versions,\n * including `latest` and concrete releases, are new-site selection hints.\n * `preferred` is also a selection hint and does not narrow compatibility.\n */\nexport async function assertBlueprintV2WordPressVersionCompatibility(\n\tdeclaration: BlueprintV2Declaration,\n\tinstalledVersion: string\n): Promise<void> {\n\tconst wordpressVersion = declaration.wordpressVersion;\n\tif (!isV2WordPressVersionConstraint(wordpressVersion)) {\n\t\treturn;\n\t}\n\n\tassertV2WordPressVersionConstraintSemantics(wordpressVersion);\n\tif (\n\t\tisV2WordPressVersionWithinConstraints(\n\t\t\tinstalledVersion,\n\t\t\twordpressVersion\n\t\t)\n\t) {\n\t\treturn;\n\t}\n\tthrowV2WordPressVersionCompatibilityError(\n\t\tinstalledVersion,\n\t\twordpressVersion\n\t);\n}\n\n/**\n * Indicates whether a reflected declaration identifies itself as Blueprint v2.\n */\nfunction isBlueprintV2Declaration(\n\tdeclaration: BlueprintDeclaration\n): declaration is BlueprintV2Declaration {\n\treturn (declaration as { version?: unknown }).version === 2;\n}\n\n/**\n * Selects a supported PHP runtime from a Blueprint v2 version declaration.\n *\n * A constraint's recommended version takes precedence. Without a declaration,\n * Playground uses its recommended PHP version.\n */\nfunction resolveV2PHPVersion(\n\tdeclaration: BlueprintV2Declaration\n): AllPHPVersion {\n\tconst phpVersion = declaration.phpVersion;\n\tif (typeof phpVersion === 'string') {\n\t\treturn resolveV2PHPVersionString(phpVersion);\n\t}\n\n\tconst recommendedVersion = getV2PHPConstraintRecommendedVersion(phpVersion);\n\tif (recommendedVersion) {\n\t\tconst resolvedRecommendedVersion =\n\t\t\tresolveV2PHPVersionString(recommendedVersion);\n\t\tif (\n\t\t\tphpVersion &&\n\t\t\ttypeof phpVersion === 'object' &&\n\t\t\tisV2PHPVersionWithinConstraints(\n\t\t\t\tresolvedRecommendedVersion,\n\t\t\t\tphpVersion\n\t\t\t)\n\t\t) {\n\t\t\treturn resolvedRecommendedVersion;\n\t\t}\n\t\tthrow new Error(\n\t\t\t`Blueprint v2 recommended PHP version ` +\n\t\t\t\t`\"${recommendedVersion}\" does not satisfy constraints ` +\n\t\t\t\t`${JSON.stringify(phpVersion)}.`\n\t\t);\n\t}\n\n\tconst constrainedVersion = resolveV2PHPConstraintVersion(phpVersion);\n\tif (constrainedVersion) {\n\t\treturn constrainedVersion;\n\t}\n\tif (phpVersion && typeof phpVersion === 'object') {\n\t\tthrow new Error(\n\t\t\t`Unsatisfiable Blueprint v2 PHP version constraints ` +\n\t\t\t\t`${JSON.stringify(phpVersion)}. ` +\n\t\t\t\t`Supported versions: ${AllPHPVersions.join(', ')}.`\n\t\t);\n\t}\n\n\treturn RecommendedPHPVersion;\n}\n\n/**\n * Resolves the `latest` alias or validates a concrete PHP runtime version.\n */\nfunction resolveV2PHPVersionString(phpVersion: string): AllPHPVersion {\n\tif (phpVersion === 'latest') {\n\t\treturn LatestSupportedPHPVersion;\n\t}\n\tif ((AllPHPVersions as readonly string[]).includes(phpVersion)) {\n\t\treturn phpVersion as AllPHPVersion;\n\t}\n\tthrow new Error(\n\t\t`Unsupported Blueprint v2 PHP version \"${phpVersion}\". ` +\n\t\t\t`Supported versions: ${AllPHPVersions.join(', ')}.`\n\t);\n}\n\n/**\n * Returns a constraint's recommended PHP version when it is a string.\n */\nfunction getV2PHPConstraintRecommendedVersion(\n\tphpVersion: BlueprintV2Declaration['phpVersion']\n): string | undefined {\n\tif (!phpVersion || typeof phpVersion !== 'object') {\n\t\treturn undefined;\n\t}\n\tif (!('recommended' in phpVersion)) {\n\t\treturn undefined;\n\t}\n\treturn typeof phpVersion.recommended === 'string'\n\t\t? phpVersion.recommended\n\t\t: undefined;\n}\n\n/**\n * Selects a supported PHP version within the declared constraint bounds.\n *\n * Playground's recommended version wins when compatible; otherwise, the first\n * compatible runtime in the supported-version list is returned.\n */\nfunction resolveV2PHPConstraintVersion(\n\tphpVersion: BlueprintV2Declaration['phpVersion']\n): AllPHPVersion | undefined {\n\tif (!phpVersion || typeof phpVersion !== 'object') {\n\t\treturn undefined;\n\t}\n\tif (isV2PHPVersionWithinConstraints(RecommendedPHPVersion, phpVersion)) {\n\t\treturn RecommendedPHPVersion;\n\t}\n\treturn V2_PHP_CONSTRAINT_CANDIDATES.find((candidate) =>\n\t\tisV2PHPVersionWithinConstraints(candidate, phpVersion)\n\t);\n}\n\n/**\n * Indicates whether a PHP version satisfies inclusive Blueprint v2 bounds.\n *\n * The `next` development build is excluded because numeric constraints cannot\n * establish its ordering relative to released versions.\n */\nfunction isV2PHPVersionWithinConstraints(\n\tphpVersion: AllPHPVersion,\n\tconstraints: Exclude<BlueprintV2Declaration['phpVersion'], string>\n): boolean {\n\tif (phpVersion === 'next') {\n\t\treturn false;\n\t}\n\tconst minVersion = normalizeV2PHPConstraintVersion(constraints?.min);\n\tif (minVersion && comparePHPVersions(phpVersion, minVersion) < 0) {\n\t\treturn false;\n\t}\n\tconst maxVersion = normalizeV2PHPConstraintVersion(constraints?.max);\n\tif (maxVersion && comparePHPVersions(phpVersion, maxVersion) > 0) {\n\t\treturn false;\n\t}\n\treturn true;\n}\n\n/**\n * Maps the `latest` PHP constraint label to the latest supported runtime.\n */\nfunction normalizeV2PHPConstraintVersion(\n\tphpVersion: string | undefined\n): string | undefined {\n\tif (phpVersion === 'latest') {\n\t\treturn LatestSupportedPHPVersion;\n\t}\n\treturn phpVersion;\n}\n\n/**\n * Compares PHP versions by major, minor, and patch components.\n *\n * Returns a negative number when `left` is older, a positive number when it is\n * newer, and zero when both versions have equal components.\n */\nfunction comparePHPVersions(left: string, right: string): number {\n\tconst leftParts = parsePHPVersion(left);\n\tconst rightParts = parsePHPVersion(right);\n\tfor (let i = 0; i < 3; i++) {\n\t\tconst difference = leftParts[i] - rightParts[i];\n\t\tif (difference !== 0) {\n\t\t\treturn difference;\n\t\t}\n\t}\n\treturn 0;\n}\n\n/**\n * Parses a PHP version into numeric components, defaulting omitted parts to zero.\n */\nfunction parsePHPVersion(phpVersion: string): [number, number, number] {\n\tconst [major = 0, minor = 0, patch = 0] = phpVersion\n\t\t.split('.')\n\t\t.map((part) => Number(part));\n\treturn [major, minor, patch];\n}\n\n/**\n * Resolves the WordPress runtime source from a Blueprint v2 declaration.\n *\n * Missing versions default to `latest`. Custom data references use a synthetic\n * runtime label because their concrete archive is resolved before boot.\n */\nasync function resolveV2WordPressVersion(\n\tdeclaration: BlueprintV2Declaration,\n\tselectAvailableRelease: boolean\n): Promise<string> {\n\tconst wordpressVersion = declaration.wordpressVersion;\n\tif (typeof wordpressVersion === 'string') {\n\t\treturn resolveV2WordPressVersionString(wordpressVersion);\n\t}\n\n\tif (isV2WordPressVersionConstraint(wordpressVersion)) {\n\t\tif (!selectAvailableRelease) {\n\t\t\tassertV2WordPressVersionConstraintSemantics(wordpressVersion);\n\t\t\t// Existing sites are checked against the bounds before WordPress boot.\n\t\t\t// No concrete download is needed in apply-to-existing-site mode.\n\t\t\treturn 'latest';\n\t\t}\n\t\tconst constrainedVersion =\n\t\t\tawait resolveV2WordPressConstraintVersion(wordpressVersion);\n\t\tif (constrainedVersion) {\n\t\t\treturn constrainedVersion;\n\t\t}\n\n\t\tthrow new Error(\n\t\t\t`Unsatisfiable Blueprint v2 WordPress version constraints ` +\n\t\t\t\t`${JSON.stringify(wordpressVersion)}. ` +\n\t\t\t\t'No available WordPress release satisfies the declared bounds.'\n\t\t);\n\t}\n\n\tif (wordpressVersion && typeof wordpressVersion === 'object') {\n\t\t// Validation guarantees that non-constraint objects are data references.\n\t\t// Their archive is resolved separately before WordPress boot.\n\t\treturn CUSTOM_WORDPRESS_VERSION;\n\t}\n\n\treturn 'latest';\n}\n\n/**\n * Resolves a Blueprint v2 WordPress version string to a runtime source.\n *\n * Runtime configuration carries named builds and HTTP(S) ZIP URLs directly.\n * Execution-context references use a synthetic label and resolve separately.\n */\nfunction resolveV2WordPressVersionString(wordpressVersion: string): string {\n\tif (isHttpUrl(wordpressVersion)) {\n\t\treturn wordpressVersion;\n\t}\n\tif (isExecutionContextPath(wordpressVersion)) {\n\t\treturn CUSTOM_WORDPRESS_VERSION;\n\t}\n\tif (\n\t\tV2_WORDPRESS_VERSION_LABELS.includes(wordpressVersion) ||\n\t\tV2_WORDPRESS_VERSION_PATTERN.test(wordpressVersion)\n\t) {\n\t\treturn wordpressVersion;\n\t}\n\n\tthrow new Error(\n\t\t`Unsupported Blueprint v2 WordPress version \"${wordpressVersion}\". ` +\n\t\t\t'Use latest, beta, trunk, nightly, or a version like ' +\n\t\t\t'6.8, 6.8.1, 6.8-beta1, 6.8-rc1; or use none to boot PHP without WordPress.'\n\t);\n}\n\n/**\n * Identifies a constraint-shaped value without trusting its property types.\n *\n * Property validation happens before the object is used for version comparison.\n */\nfunction isV2WordPressVersionConstraint(\n\twordpressVersion: unknown\n): wordpressVersion is UnvalidatedV2WordPressVersionConstraint {\n\tif (!wordpressVersion || typeof wordpressVersion !== 'object') {\n\t\treturn false;\n\t}\n\treturn 'min' in wordpressVersion;\n}\n\n/**\n * Selects an available WordPress release from a Blueprint v2 constraint.\n *\n * Stable releases come from the official WordPress release catalog. A concrete\n * preferred branch or release wins when available and compatible; otherwise the\n * newest release satisfying the bounds is selected.\n */\nasync function resolveV2WordPressConstraintVersion(\n\twordpressVersion: UnvalidatedV2WordPressVersionConstraint\n): Promise<string | undefined> {\n\tassertV2WordPressVersionConstraintSemantics(wordpressVersion);\n\tconst preferredVersion = wordpressVersion.preferred;\n\tconst availableVersions =\n\t\tawait getAvailableV2WordPressVersions(wordpressVersion);\n\tif (preferredVersion && preferredVersion !== 'latest') {\n\t\tconst preferredVersions = availableVersions.filter((candidate) =>\n\t\t\tdoesV2WordPressVersionMatchExpression(candidate, preferredVersion)\n\t\t);\n\t\tif (preferredVersions.length === 0) {\n\t\t\tthrow new Error(\n\t\t\t\t`Blueprint v2 preferred WordPress version ` +\n\t\t\t\t\t`\"${preferredVersion}\" is not available.`\n\t\t\t);\n\t\t}\n\t\tconst compatiblePreferredVersion = preferredVersions.find((candidate) =>\n\t\t\tisV2WordPressVersionWithinConstraints(candidate, wordpressVersion)\n\t\t);\n\t\tif (compatiblePreferredVersion) {\n\t\t\treturn compatiblePreferredVersion;\n\t\t}\n\t\tthrow new Error(\n\t\t\t`Blueprint v2 preferred WordPress version ` +\n\t\t\t\t`\"${preferredVersion}\" does not satisfy constraints ` +\n\t\t\t\t`${JSON.stringify(wordpressVersion)}.`\n\t\t);\n\t}\n\n\treturn availableVersions.find((candidate) =>\n\t\tisV2WordPressVersionWithinConstraints(candidate, wordpressVersion)\n\t);\n}\n\n/**\n * Validates the shape and internal consistency of WordPress version bounds.\n *\n * This check does not consult the release catalog, so existing sites can be\n * checked without requiring a downloadable release for the installed version.\n */\nfunction assertV2WordPressVersionConstraintSemantics(\n\twordpressVersion: UnvalidatedV2WordPressVersionConstraint\n): asserts wordpressVersion is V2WordPressVersionConstraint {\n\tassertV2WordPressVersionConstraint(wordpressVersion);\n\tassertV2ComparableWordPressConstraintVersion(\n\t\t'wordpressVersion.min',\n\t\twordpressVersion.min\n\t);\n\tif (wordpressVersion.max) {\n\t\tassertV2ComparableWordPressConstraintVersion(\n\t\t\t'wordpressVersion.max',\n\t\t\twordpressVersion.max\n\t\t);\n\t}\n\n\tconst preferredVersion = wordpressVersion.preferred;\n\tif (preferredVersion && preferredVersion !== 'latest') {\n\t\tassertV2ComparableWordPressConstraintVersion(\n\t\t\t'wordpressVersion.preferred',\n\t\t\tpreferredVersion\n\t\t);\n\t\tif (\n\t\t\t!doesV2WordPressVersionExpressionSatisfyConstraints(\n\t\t\t\tpreferredVersion,\n\t\t\t\twordpressVersion\n\t\t\t)\n\t\t) {\n\t\t\tthrow new Error(\n\t\t\t\t`Blueprint v2 preferred WordPress version ` +\n\t\t\t\t\t`\"${preferredVersion}\" does not satisfy constraints ` +\n\t\t\t\t\t`${JSON.stringify(wordpressVersion)}.`\n\t\t\t);\n\t\t}\n\t}\n\tif (\n\t\t!isV2WordPressVersionWithinConstraints(\n\t\t\twordpressVersion.min,\n\t\t\twordpressVersion\n\t\t)\n\t) {\n\t\tthrow new Error(\n\t\t\t`Unsatisfiable Blueprint v2 WordPress version constraints ` +\n\t\t\t\t`${JSON.stringify(wordpressVersion)}. ` +\n\t\t\t\t'The minimum version exceeds the maximum version.'\n\t\t);\n\t}\n}\n\n/**\n * Returns comparable WordPress releases ordered from newest to oldest.\n *\n * The stable catalog is exhaustive. The current beta-channel offer is added\n * only for constraints that mention a prerelease because historical\n * prereleases are not part of the stable release catalog.\n */\nasync function getAvailableV2WordPressVersions(\n\tconstraints?: V2WordPressVersionConstraint\n): Promise<string[]> {\n\tconst versions = (await getWordPressStableVersions()).map(\n\t\tnormalizeV2AvailableWordPressVersion\n\t);\n\tif (\n\t\tconstraints &&\n\t\t[constraints.min, constraints.max, constraints.preferred].some(\n\t\t\t(version) =>\n\t\t\t\tversion &&\n\t\t\t\tparseComparableWordPressVersion(version)?.suffix !== undefined\n\t\t)\n\t) {\n\t\tconst betaRelease = await resolveWordPressRelease('beta');\n\t\tversions.push(betaRelease.version);\n\t}\n\n\treturn Array.from(new Set(versions))\n\t\t.filter(isComparableWordPressVersion)\n\t\t.sort((left, right) => compareWordPressVersions(right, left));\n}\n\n/**\n * Preserves an initial stable release as an exact runtime request.\n *\n * WordPress catalogs call the first release in a branch `6.8`, while runtime\n * consumers interpret `6.8` as the newest patch in that branch. The explicit\n * `6.8.0` form keeps constraint selection from booting a newer patch instead.\n */\nfunction normalizeV2AvailableWordPressVersion(\n\twordpressVersion: string\n): string {\n\treturn /^\\d+\\.\\d+$/.test(wordpressVersion)\n\t\t? `${wordpressVersion}.0`\n\t\t: wordpressVersion;\n}\n\n/**\n * Indicates whether a release matches an exact or branch-style expression.\n *\n * A stable expression without a patch, such as `6.8`, selects the newest stable\n * release in that branch. Patch and prerelease expressions compare exactly.\n */\nfunction doesV2WordPressVersionMatchExpression(\n\twordpressVersion: string,\n\texpression: string\n): boolean {\n\tconst parsedVersion = parseComparableWordPressVersion(wordpressVersion);\n\tconst parsedExpression = parseComparableWordPressVersion(expression);\n\tif (!parsedVersion || !parsedExpression) {\n\t\treturn false;\n\t}\n\tif (!parsedExpression.patchSpecified && !parsedExpression.suffix) {\n\t\treturn (\n\t\t\t!parsedVersion.suffix &&\n\t\t\tparsedVersion.parts[0] === parsedExpression.parts[0] &&\n\t\t\tparsedVersion.parts[1] === parsedExpression.parts[1]\n\t\t);\n\t}\n\treturn compareWordPressVersions(wordpressVersion, expression) === 0;\n}\n\n/**\n * Indicates whether a preferred exact release or branch intersects the bounds.\n *\n * A patchless stable expression such as `6.8` represents the entire stable\n * branch, so it is valid when at least one theoretical `6.8.x` release could\n * satisfy the constraint. Release availability is checked separately.\n */\nfunction doesV2WordPressVersionExpressionSatisfyConstraints(\n\texpression: string,\n\tconstraints: V2WordPressVersionConstraint\n): boolean {\n\tconst parsedExpression = parseComparableWordPressVersion(expression);\n\tif (!parsedExpression) {\n\t\treturn false;\n\t}\n\tif (parsedExpression.patchSpecified || parsedExpression.suffix) {\n\t\treturn isV2WordPressVersionWithinConstraints(expression, constraints);\n\t}\n\n\tconst parsedMin = parseComparableWordPressVersion(constraints.min)!;\n\tconst branch = parsedExpression.parts.slice(0, 2);\n\tconst minBranch = parsedMin.parts.slice(0, 2);\n\tif (compareV2WordPressVersionBranches(branch, minBranch) < 0) {\n\t\treturn false;\n\t}\n\tif (!constraints.max) {\n\t\treturn true;\n\t}\n\n\tconst parsedMax = parseComparableWordPressVersion(constraints.max)!;\n\tconst maxBranch = parsedMax.parts.slice(0, 2);\n\tconst maxBranchComparison = compareV2WordPressVersionBranches(\n\t\tbranch,\n\t\tmaxBranch\n\t);\n\treturn (\n\t\tmaxBranchComparison < 0 ||\n\t\t(maxBranchComparison === 0 && !parsedMax.suffix)\n\t);\n}\n\n/**\n * Compares WordPress major/minor branch identifiers.\n */\nfunction compareV2WordPressVersionBranches(\n\tleft: number[],\n\tright: number[]\n): number {\n\tfor (let i = 0; i < 2; i++) {\n\t\tconst difference = left[i] - right[i];\n\t\tif (difference !== 0) {\n\t\t\treturn difference;\n\t\t}\n\t}\n\treturn 0;\n}\n\n/**\n * Throws the common existing-site compatibility diagnostic.\n */\nfunction throwV2WordPressVersionCompatibilityError(\n\tinstalledVersion: string,\n\trequirement: V2WordPressVersionConstraint\n): never {\n\tthrow new Error(\n\t\t`Installed WordPress version \"${installedVersion}\" does not satisfy ` +\n\t\t\t`Blueprint v2 wordpressVersion ${JSON.stringify(requirement)}.`\n\t);\n}\n\n/**\n * Validates the property types of a constraint-shaped WordPress version value.\n */\nfunction assertV2WordPressVersionConstraint(\n\twordpressVersion: UnvalidatedV2WordPressVersionConstraint\n): asserts wordpressVersion is V2WordPressVersionConstraint {\n\tassertV2StringWordPressConstraintVersion(\n\t\t'wordpressVersion.min',\n\t\twordpressVersion.min\n\t);\n\tif (wordpressVersion.max !== undefined) {\n\t\tassertV2StringWordPressConstraintVersion(\n\t\t\t'wordpressVersion.max',\n\t\t\twordpressVersion.max\n\t\t);\n\t}\n\tif (wordpressVersion.preferred !== undefined) {\n\t\tassertV2StringWordPressConstraintVersion(\n\t\t\t'wordpressVersion.preferred',\n\t\t\twordpressVersion.preferred\n\t\t);\n\t}\n}\n\n/**\n * Validates that a WordPress constraint field contains a string value.\n *\n * The supplied schema path is included in the error so malformed runtime input\n * can be traced back to the exact Blueprint field.\n */\nfunction assertV2StringWordPressConstraintVersion(\n\tpath: string,\n\tvalue: unknown\n) {\n\tif (typeof value === 'string') {\n\t\treturn;\n\t}\n\tthrow new Error(\n\t\t`Unsupported Blueprint v2 WordPress version constraint ` +\n\t\t\t`${path} ${JSON.stringify(value)}. ` +\n\t\t\t'Use a version like 6.8, 6.8.1, 6.8-beta1, or 6.8-rc1.'\n\t);\n}\n\n/**\n * Validates that a WordPress constraint field can participate in comparisons.\n *\n * Runtime labels and custom URLs are valid top-level sources but not constraint\n * bounds, which must use concrete release versions.\n */\nfunction assertV2ComparableWordPressConstraintVersion(\n\tpath: string,\n\twordpressVersion: string\n) {\n\tif (isComparableWordPressVersion(wordpressVersion)) {\n\t\treturn;\n\t}\n\tthrow new Error(\n\t\t`Unsupported Blueprint v2 WordPress version constraint ` +\n\t\t\t`${path} \"${wordpressVersion}\". ` +\n\t\t\t'Use a version like 6.8, 6.8.1, 6.8-beta1, or 6.8-rc1.'\n\t);\n}\n\n/**\n * Indicates whether a WordPress release satisfies inclusive constraint bounds.\n *\n * Non-comparable runtime labels and custom URLs never satisfy constraints.\n */\nfunction isV2WordPressVersionWithinConstraints(\n\twordpressVersion: string,\n\tconstraints: V2WordPressVersionConstraint\n): boolean {\n\tconst parsedVersion = parseComparableWordPressVersion(wordpressVersion);\n\tconst parsedMin = parseComparableWordPressVersion(constraints.min);\n\tif (!parsedVersion || !parsedMin) {\n\t\treturn false;\n\t}\n\tif (compareWordPressVersions(wordpressVersion, constraints.min) < 0) {\n\t\treturn false;\n\t}\n\tif (!constraints.max) {\n\t\treturn true;\n\t}\n\tconst parsedMax = parseComparableWordPressVersion(constraints.max);\n\tif (!parsedMax) {\n\t\treturn false;\n\t}\n\tif (\n\t\t!parsedMax.patchSpecified &&\n\t\t!parsedMax.suffix &&\n\t\tparsedVersion.parts[0] === parsedMax.parts[0] &&\n\t\tparsedVersion.parts[1] === parsedMax.parts[1]\n\t) {\n\t\treturn true;\n\t}\n\treturn compareWordPressVersions(wordpressVersion, constraints.max) <= 0;\n}\n\n/**\n * Compares concrete WordPress releases using their parsed precedence components.\n *\n * Returns a negative number when `left` is older, a positive number when it is\n * newer, and zero when both releases have equal precedence.\n */\nfunction compareWordPressVersions(left: string, right: string): number {\n\tconst leftVersion = parseComparableWordPressVersion(left);\n\tconst rightVersion = parseComparableWordPressVersion(right);\n\tif (!leftVersion || !rightVersion) {\n\t\tthrow new Error(\n\t\t\t`Cannot compare WordPress versions \"${left}\" and \"${right}\".`\n\t\t);\n\t}\n\tfor (let i = 0; i < leftVersion.parts.length; i++) {\n\t\tconst difference = leftVersion.parts[i] - rightVersion.parts[i];\n\t\tif (difference !== 0) {\n\t\t\treturn difference;\n\t\t}\n\t}\n\treturn 0;\n}\n\n/**\n * Indicates whether a WordPress version is a concrete, orderable release.\n */\nfunction isComparableWordPressVersion(wordpressVersion: string): boolean {\n\treturn parseComparableWordPressVersion(wordpressVersion) !== null;\n}\n\n/**\n * Parses a comparable WordPress release into components ordered by precedence.\n *\n * Missing patch numbers become zero, and suffix ranks preserve the WordPress\n * release order: beta before RC before the stable release. Runtime labels and\n * custom URLs are not comparable and return `null`. `patchSpecified` remains\n * separate so a max bound such as `6.8` can include every `6.8.x` patch.\n */\nfunction parseComparableWordPressVersion(\n\twordpressVersion: string\n): ComparableWordPressVersion | null {\n\tconst match = wordpressVersion.match(\n\t\t/^(\\d+)\\.(\\d+)(?:\\.(\\d+))?(?:-(beta|rc)(\\d+))?$/i\n\t);\n\tif (!match) {\n\t\treturn null;\n\t}\n\tconst [, major, minor, patch, suffix, suffixVersion = '0'] = match;\n\tconst normalizedSuffix = suffix?.toLowerCase() as 'beta' | 'rc' | undefined;\n\tconst suffixRank = normalizedSuffix\n\t\t? normalizedSuffix === 'beta'\n\t\t\t? 0\n\t\t\t: 1\n\t\t: 2;\n\treturn {\n\t\tparts: [\n\t\t\tNumber(major),\n\t\t\tNumber(minor),\n\t\t\tNumber(patch ?? '0'),\n\t\t\tsuffixRank,\n\t\t\tNumber(suffixVersion),\n\t\t],\n\t\tpatchSpecified: patch !== undefined,\n\t\tsuffix: normalizedSuffix,\n\t};\n}\n\n/**\n * Indicates whether a runtime source uses a supported HTTP(S) URL prefix.\n */\nfunction isHttpUrl(reference: string) {\n\treturn reference.startsWith('http://') || reference.startsWith('https://');\n}\n\n/**\n * Indicates whether a source uses an absolute or explicit relative file path.\n */\nfunction isExecutionContextPath(reference: string) {\n\treturn (\n\t\treference.startsWith('/') ||\n\t\treference.startsWith('./') ||\n\t\treference.startsWith('../')\n\t);\n}\n","import type { FileTree, UniversalPHP } from '@php-wasm/universal';\nimport { basename, joinPaths, resolvePathUnder } from '@php-wasm/util';\nimport type { RuntimeConfiguration } from '../types';\nimport type { ResolveRuntimeConfigurationOptions } from '../resolve-runtime-configuration';\nimport { seemsLikeGitRepoUrl } from '../is-git-repo-url';\nimport {\n\tcompileBlueprintV1,\n\ttype CompileBlueprintV1Options,\n} from '../v1/compile';\nimport type { BlueprintV1Declaration } from '../v1/types';\nimport type {\n\tInstallPluginOptions,\n\tInstallPluginStep,\n\tInstallThemeOptions,\n\tInstallThemeStep,\n\tStepDefinition,\n} from '../steps';\nimport {\n\tResource,\n\ttype DirectoryReference,\n\ttype FileReference,\n} from '../v1/resources';\nimport type { BlueprintV2Declaration } from './blueprint-v2-declaration';\nimport {\n\tresolveBlueprintV2RuntimeConfiguration,\n\ttype BlueprintV2SiteMode,\n} from './resolve-runtime-configuration';\n\nexport class UnsupportedBlueprintV2FeatureError extends Error {\n\tpublic readonly featurePath: string;\n\n\tconstructor(\n\t\tfeaturePath: string,\n\t\tmessage = 'This Blueprint v2 feature is not supported by the TypeScript runner yet.'\n\t) {\n\t\tsuper(`${featurePath}: ${message}`);\n\t\tthis.name = 'UnsupportedBlueprintV2FeatureError';\n\t\tthis.featurePath = featurePath;\n\t}\n}\n\ntype BlueprintV2ApplicationOptions =\n\tBlueprintV2Declaration['applicationOptions'];\ntype BlueprintV2ContentBaseline = NonNullable<\n\tBlueprintV2Declaration['contentBaseline']\n>;\ntype BlueprintV2ContentType = Extract<\n\tBlueprintV2ContentBaseline,\n\treadonly unknown[]\n>[number];\ntype BlueprintV2Constants = NonNullable<BlueprintV2Declaration['constants']>;\ntype BlueprintV2SiteOptions = NonNullable<\n\tBlueprintV2Declaration['siteOptions']\n>;\ntype BlueprintV2MuPlugin = NonNullable<\n\tBlueprintV2Declaration['muPlugins']\n>[number];\ntype BlueprintV2Theme = NonNullable<BlueprintV2Declaration['themes']>[number];\ntype BlueprintV2ActiveTheme = NonNullable<\n\tBlueprintV2Declaration['activeTheme']\n>;\ntype BlueprintV2Plugin = NonNullable<BlueprintV2Declaration['plugins']>[number];\ntype BlueprintV2Fonts = NonNullable<BlueprintV2Declaration['fonts']>;\ntype BlueprintV2Media = NonNullable<BlueprintV2Declaration['media']>[number];\ntype BlueprintV2Role = NonNullable<BlueprintV2Declaration['roles']>[number];\ntype BlueprintV2User = NonNullable<BlueprintV2Declaration['users']>[number];\ntype BlueprintV2PostTypes = NonNullable<BlueprintV2Declaration['postTypes']>;\ntype BlueprintV2Content = NonNullable<\n\tBlueprintV2Declaration['content']\n>[number];\ntype BlueprintV2Step = NonNullable<\n\tBlueprintV2Declaration['additionalStepsAfterExecution']\n>[number];\ntype BlueprintV2ImportContentStep = Extract<\n\tBlueprintV2Step,\n\t{ step: 'importContent' }\n>;\ntype BlueprintV2RunPHPStep = Extract<BlueprintV2Step, { step: 'runPHP' }>;\ntype BlueprintV2ImportMediaStep = Extract<\n\tBlueprintV2Step,\n\t{ step: 'importMedia' }\n>;\ntype BlueprintV2WriteFilesStep = Extract<\n\tBlueprintV2Step,\n\t{ step: 'writeFiles' }\n>;\ntype BlueprintV2PostContent = Extract<BlueprintV2Content, { type: 'posts' }>;\ntype BlueprintV2WxrContent = Extract<BlueprintV2Content, { type: 'wxr' }>;\ntype JsonObject = Record<string, any>;\ntype BlueprintV2DataReference =\n\t| string\n\t| {\n\t\t\tfilename: string;\n\t\t\tcontent: string;\n\t  }\n\t| {\n\t\t\tdirectoryName: string;\n\t\t\tfiles: Record<string, string | BlueprintV2InlineDirectory>;\n\t  }\n\t| {\n\t\t\tgitRepository: string;\n\t\t\tref?: string;\n\t\t\tpathInRepository?: string;\n\t\t\tpath?: string;\n\t  };\ntype BlueprintV2InlineDirectory = {\n\tfiles: Record<string, string | BlueprintV2InlineDirectory>;\n};\ntype BlueprintV2FileDataReference =\n\t| string\n\t| {\n\t\t\tfilename: string;\n\t\t\tcontent: string;\n\t  };\ntype BlueprintV2InstallAssetDefinition = {\n\tsource: BlueprintV2DataReference;\n\tactive?: boolean;\n\tactivationOptions?: Record<string, unknown>;\n\tifAlreadyInstalled?: 'overwrite' | 'skip' | 'error';\n\timportStarterContent?: boolean;\n\ttargetDirectoryName?: string;\n\tonError?: 'skip-plugin' | 'skip-theme' | 'throw';\n\thumanReadableName?: string;\n};\n\nconst SITE_CREATION_CONTENT_TYPES: BlueprintV2ContentType[] = [\n\t'posts',\n\t'pages',\n\t'comments',\n];\n\nexport type BlueprintV2ExecutionPlan = BlueprintV2ExecutionPlanItem[];\nexport type BlueprintV2StepPlan = StepDefinition[];\nexport type BlueprintV2StepPlanLoweringResult = {\n\tsteps: BlueprintV2StepPlan;\n\tunsupportedPlan: BlueprintV2ExecutionPlan;\n};\n\ntype BlueprintV2LoweringContext = {\n\tnextTempFileIndex: number;\n};\n\nexport type BlueprintV2ExecutionPlanItem =\n\t| {\n\t\t\ttype: 'applyContentBaseline';\n\t\t\tcontentBaseline: BlueprintV2ContentBaseline;\n\t\t\tsourcePath: '/contentBaseline';\n\t  }\n\t| {\n\t\t\ttype: 'applyUsersBaseline';\n\t\t\tsourcePath: '/usersBaseline';\n\t  }\n\t| {\n\t\t\ttype: 'defineWpConfigConsts';\n\t\t\tconsts: BlueprintV2Constants;\n\t  }\n\t| {\n\t\t\ttype: 'setSiteOptions';\n\t\t\toptions: BlueprintV2SiteOptions;\n\t  }\n\t| {\n\t\t\ttype: 'installMuPlugin';\n\t\t\tmuPlugin: BlueprintV2MuPlugin;\n\t\t\tsourcePath: string;\n\t  }\n\t| {\n\t\t\ttype: 'installTheme';\n\t\t\ttheme: BlueprintV2Theme;\n\t\t\tactive: false;\n\t\t\tsourcePath: string;\n\t  }\n\t| {\n\t\t\ttype: 'installTheme';\n\t\t\ttheme: BlueprintV2ActiveTheme;\n\t\t\tactive: true;\n\t\t\tsourcePath: string;\n\t  }\n\t| {\n\t\t\ttype: 'installPlugin';\n\t\t\tplugin: BlueprintV2Plugin;\n\t\t\tsourcePath: string;\n\t  }\n\t| {\n\t\t\ttype: 'installFonts';\n\t\t\tfonts: BlueprintV2Fonts;\n\t  }\n\t| {\n\t\t\ttype: 'importMedia';\n\t\t\tmedia: BlueprintV2Media;\n\t\t\tsourcePath: string;\n\t  }\n\t| {\n\t\t\ttype: 'setSiteLanguage';\n\t\t\tlanguage: string;\n\t  }\n\t| {\n\t\t\ttype: 'defineRoles';\n\t\t\troles: BlueprintV2Role[];\n\t  }\n\t| {\n\t\t\ttype: 'defineUsers';\n\t\t\tusers: BlueprintV2User[];\n\t  }\n\t| {\n\t\t\ttype: 'definePostTypes';\n\t\t\tpostTypes: BlueprintV2PostTypes;\n\t  }\n\t| {\n\t\t\ttype: 'importContent';\n\t\t\tcontent: BlueprintV2Content;\n\t\t\tsourcePath: string;\n\t  }\n\t| {\n\t\t\ttype: 'runStep';\n\t\t\tstep: BlueprintV2Step;\n\t\t\tsourcePath: string;\n\t  };\n\nexport type CompiledBlueprintV2 = {\n\truntime: RuntimeConfiguration;\n\tapplicationOptions?: BlueprintV2ApplicationOptions;\n\tplan: BlueprintV2ExecutionPlan;\n\tsteps: BlueprintV2StepPlan;\n\tunsupportedPlan: BlueprintV2ExecutionPlan;\n\trun: (playground: UniversalPHP) => Promise<void>;\n};\n\nexport type CompileBlueprintV2Options = Pick<\n\tCompileBlueprintV1Options,\n\t'progress' | 'streamBundledFile'\n> &\n\tResolveRuntimeConfigurationOptions & {\n\t\tonBlueprintValidated?: (blueprint: BlueprintV2Declaration) => void;\n\t};\n\nexport type ResolveBlueprintV2WordPressSourceOptions = Pick<\n\tCompileBlueprintV1Options,\n\t| 'corsProxy'\n\t| 'gitAdditionalHeadersCallback'\n\t| 'progress'\n\t| 'semaphore'\n\t| 'streamBundledFile'\n>;\n\n/**\n * Compiles a Blueprint v2 declaration into the pieces the TypeScript runner can\n * understand today.\n *\n * It resolves runtime options, creates an ordered v2 execution plan, and lowers\n * supported plan items into v1 step records. Fully lowered plans run through the\n * existing v1 runner; unsupported items stay visible and block execution before\n * any partial work is applied.\n */\nexport async function compileBlueprintV2(\n\tdeclaration: BlueprintV2Declaration,\n\toptions: CompileBlueprintV2Options = {}\n): Promise<CompiledBlueprintV2> {\n\tconst runtime = await resolveBlueprintV2RuntimeConfiguration(\n\t\tdeclaration,\n\t\toptions.siteMode,\n\t\toptions.onBlueprintValidated\n\t);\n\tconst plan = createBlueprintV2ExecutionPlan(declaration, options.siteMode);\n\tconst { steps, unsupportedPlan } = lowerBlueprintV2ExecutionPlan(plan);\n\tconst v1Blueprint = createV1BlueprintForLoweredV2Steps(\n\t\tdeclaration,\n\t\truntime,\n\t\tsteps\n\t);\n\treturn {\n\t\truntime,\n\t\tapplicationOptions: declaration.applicationOptions,\n\t\tplan,\n\t\tsteps,\n\t\tunsupportedPlan,\n\t\trun: async (playground) => {\n\t\t\tif (unsupportedPlan.length > 0) {\n\t\t\t\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\t\t\t\t'executionPlan',\n\t\t\t\t\tgetUnsupportedPlanMessage(unsupportedPlan)\n\t\t\t\t);\n\t\t\t}\n\t\t\tconst v1Runner = await compileBlueprintV1(v1Blueprint, {\n\t\t\t\tprogress: options.progress,\n\t\t\t\tstreamBundledFile: options.streamBundledFile,\n\t\t\t});\n\t\t\tawait v1Runner.run(playground);\n\t\t},\n\t};\n}\n\n/**\n * Loads a custom WordPress source into the file expected by the boot API.\n *\n * Built-in versions and HTTP(S) ZIP URLs already use each consumer's normal\n * WordPress download path. Execution-context, inline, and Git references need\n * the Blueprint resource loader to turn them into a concrete archive first.\n */\nexport async function resolveBlueprintV2WordPressSource(\n\tdeclaration: BlueprintV2Declaration,\n\toptions: ResolveBlueprintV2WordPressSourceOptions = {}\n): Promise<File | undefined> {\n\tconst { assertValidBlueprintV2Declaration } =\n\t\tawait import('./validate-blueprint-v2');\n\tassertValidBlueprintV2Declaration(declaration);\n\tconst source = getCustomWordPressDataReference(\n\t\tdeclaration.wordpressVersion\n\t);\n\tif (!source) {\n\t\treturn undefined;\n\t}\n\n\tconst resourceReference = convertV2DataReferenceToV1(source, 'wordpress');\n\tconst resource = Resource.create(\n\t\tisDirectoryReference(resourceReference)\n\t\t\t? {\n\t\t\t\t\tresource: 'zip',\n\t\t\t\t\tinner: resourceReference,\n\t\t\t\t\tname: 'wordpress.zip',\n\t\t\t\t}\n\t\t\t: resourceReference,\n\t\toptions\n\t);\n\treturn (await resource.resolve()) as File;\n}\n\n/**\n * Builds the smallest v1 declaration needed to run already-lowered v2 steps.\n *\n * Top-level v2 constants, site options, plugins, and themes are not copied into\n * the v1 top-level fields because the v2 plan lowering already converted them\n * into ordered steps. Copying them here would make the v1 compiler run them\n * twice.\n */\nfunction createV1BlueprintForLoweredV2Steps(\n\tdeclaration: BlueprintV2Declaration,\n\truntime: RuntimeConfiguration,\n\tsteps: BlueprintV2StepPlan\n): BlueprintV1Declaration {\n\tconst applicationOptions =\n\t\tdeclaration.applicationOptions?.['wordpress-playground'];\n\n\treturn {\n\t\tpreferredVersions: {\n\t\t\tphp: runtime.phpVersion,\n\t\t\twp:\n\t\t\t\tdeclaration.wordpressVersion === 'none'\n\t\t\t\t\t? false\n\t\t\t\t\t: runtime.wpVersion,\n\t\t},\n\t\tfeatures: {\n\t\t\tintl: runtime.intl,\n\t\t\tnetworking: runtime.networking,\n\t\t},\n\t\textraLibraries: runtime.extraLibraries,\n\t\tlandingPage: applicationOptions?.landingPage,\n\t\tlogin: applicationOptions?.login,\n\t\tsteps,\n\t};\n}\n\nfunction getUnsupportedPlanMessage(unsupportedPlan: BlueprintV2ExecutionPlan) {\n\tconst unsupportedItems = unsupportedPlan\n\t\t.map(\n\t\t\t(item) =>\n\t\t\t\t`${getUnsupportedPlanItemPath(item)} (${getUnsupportedPlanItemName(item)})`\n\t\t)\n\t\t.join(', ');\n\n\treturn (\n\t\t`Blueprint v2 execution plan contains unsupported items: ` +\n\t\t`${unsupportedItems}.`\n\t);\n}\n\nfunction getUnsupportedPlanItemName(item: BlueprintV2ExecutionPlanItem) {\n\tif (item.type === 'runStep') {\n\t\treturn item.step.step;\n\t}\n\treturn item.type;\n}\n\nfunction getUnsupportedPlanItemPath(item: BlueprintV2ExecutionPlanItem) {\n\treturn 'sourcePath' in item ? item.sourcePath : `/${item.type}`;\n}\n\n/**\n * Converts the top-level Blueprint v2 fields into a simple ordered plan.\n *\n * The plan keeps the original v2 data intact. It only decides execution order\n * and records where each item came from, which makes unsupported items visible\n * instead of silently dropping them during lowering.\n */\nexport function createBlueprintV2ExecutionPlan(\n\tdeclaration: BlueprintV2Declaration,\n\tsiteMode: BlueprintV2SiteMode = 'create-new-site'\n): BlueprintV2ExecutionPlan {\n\tconst plan: BlueprintV2ExecutionPlan = [];\n\tconst contentBaseline = declaration.contentBaseline;\n\n\tif (siteMode === 'create-new-site' && contentBaseline !== undefined) {\n\t\tconst preservedContent = getPreservedContentTypes(contentBaseline);\n\t\tif (\n\t\t\tSITE_CREATION_CONTENT_TYPES.some(\n\t\t\t\t(contentType) => !preservedContent.includes(contentType)\n\t\t\t)\n\t\t) {\n\t\t\tplan.push({\n\t\t\t\ttype: 'applyContentBaseline',\n\t\t\t\tcontentBaseline,\n\t\t\t\tsourcePath: '/contentBaseline',\n\t\t\t});\n\t\t}\n\t}\n\tif (\n\t\tsiteMode === 'create-new-site' &&\n\t\tdeclaration.usersBaseline === 'empty'\n\t) {\n\t\tplan.push({\n\t\t\ttype: 'applyUsersBaseline',\n\t\t\tsourcePath: '/usersBaseline',\n\t\t});\n\t}\n\n\tif (\n\t\tdeclaration.constants &&\n\t\tObject.keys(declaration.constants).length > 0\n\t) {\n\t\tplan.push({\n\t\t\ttype: 'defineWpConfigConsts',\n\t\t\tconsts: declaration.constants,\n\t\t});\n\t}\n\n\tif (\n\t\tdeclaration.siteOptions &&\n\t\tObject.keys(declaration.siteOptions).length > 0\n\t) {\n\t\tplan.push({\n\t\t\ttype: 'setSiteOptions',\n\t\t\toptions: declaration.siteOptions,\n\t\t});\n\t}\n\n\tfor (const [index, muPlugin] of (declaration.muPlugins ?? []).entries()) {\n\t\tplan.push({\n\t\t\ttype: 'installMuPlugin',\n\t\t\tmuPlugin,\n\t\t\tsourcePath: `/muPlugins/${index}`,\n\t\t});\n\t}\n\n\tfor (const [index, theme] of (declaration.themes ?? []).entries()) {\n\t\tplan.push({\n\t\t\ttype: 'installTheme',\n\t\t\ttheme,\n\t\t\tactive: false,\n\t\t\tsourcePath: `/themes/${index}`,\n\t\t});\n\t}\n\n\tif (declaration.activeTheme !== undefined) {\n\t\tplan.push({\n\t\t\ttype: 'installTheme',\n\t\t\ttheme: declaration.activeTheme,\n\t\t\tactive: true,\n\t\t\tsourcePath: '/activeTheme',\n\t\t});\n\t}\n\n\tfor (const [index, plugin] of (declaration.plugins ?? []).entries()) {\n\t\tplan.push({\n\t\t\ttype: 'installPlugin',\n\t\t\tplugin,\n\t\t\tsourcePath: `/plugins/${index}`,\n\t\t});\n\t}\n\n\tif (declaration.fonts && Object.keys(declaration.fonts).length > 0) {\n\t\tplan.push({\n\t\t\ttype: 'installFonts',\n\t\t\tfonts: declaration.fonts,\n\t\t});\n\t}\n\n\tfor (const [index, media] of (declaration.media ?? []).entries()) {\n\t\tplan.push({\n\t\t\ttype: 'importMedia',\n\t\t\tmedia,\n\t\t\tsourcePath: `/media/${index}`,\n\t\t});\n\t}\n\n\tif (declaration.siteLanguage) {\n\t\tplan.push({\n\t\t\ttype: 'setSiteLanguage',\n\t\t\tlanguage: declaration.siteLanguage,\n\t\t});\n\t}\n\n\tif (declaration.roles?.length) {\n\t\tplan.push({\n\t\t\ttype: 'defineRoles',\n\t\t\troles: declaration.roles,\n\t\t});\n\t}\n\n\tif (declaration.users?.length) {\n\t\tplan.push({\n\t\t\ttype: 'defineUsers',\n\t\t\tusers: declaration.users,\n\t\t});\n\t}\n\n\tif (\n\t\tdeclaration.postTypes &&\n\t\tObject.keys(declaration.postTypes).length > 0\n\t) {\n\t\tplan.push({\n\t\t\ttype: 'definePostTypes',\n\t\t\tpostTypes: declaration.postTypes,\n\t\t});\n\t}\n\n\tfor (const [index, content] of (declaration.content ?? []).entries()) {\n\t\tplan.push({\n\t\t\ttype: 'importContent',\n\t\t\tcontent,\n\t\t\tsourcePath: `/content/${index}`,\n\t\t});\n\t}\n\n\tfor (const [index, step] of (\n\t\tdeclaration.additionalStepsAfterExecution ?? []\n\t).entries()) {\n\t\tplan.push({\n\t\t\ttype: 'runStep',\n\t\t\tstep,\n\t\t\tsourcePath: `/additionalStepsAfterExecution/${index}`,\n\t\t});\n\t}\n\n\treturn plan;\n}\n\n/**\n * Converts the supported v2 plan items into v1-compatible step records.\n *\n * The v1 step runner already knows how to install plugins, install themes, set\n * options, and run several imperative steps. This function reuses those shapes\n * while keeping unsupported v2-only work in `unsupportedPlan` for future PRs.\n */\nexport function lowerBlueprintV2ExecutionPlan(\n\tplan: BlueprintV2ExecutionPlan\n): BlueprintV2StepPlanLoweringResult {\n\tconst steps: StepDefinition[] = [];\n\tconst unsupportedPlan: BlueprintV2ExecutionPlan = [];\n\tconst context: BlueprintV2LoweringContext = {\n\t\tnextTempFileIndex: 0,\n\t};\n\n\tfor (const planItem of plan) {\n\t\tconst loweredSteps = lowerBlueprintV2ExecutionPlanItem(\n\t\t\tplanItem,\n\t\t\tcontext\n\t\t);\n\t\tif (loweredSteps) {\n\t\t\tsteps.push(...addProgressMetadata(loweredSteps, planItem));\n\t\t} else {\n\t\t\tunsupportedPlan.push(planItem);\n\t\t}\n\t}\n\n\treturn { steps, unsupportedPlan };\n}\n\n/**\n * Assigns progress metadata to the v1 steps produced by one v2 plan item.\n *\n * Some v2 declarations expand into multiple v1 steps. Splitting one unit of\n * progress across those steps keeps the tracker aligned with user-facing v2\n * declarations instead of leaking the internal lowering shape.\n */\nfunction addProgressMetadata(\n\tsteps: StepDefinition[],\n\tplanItem: BlueprintV2ExecutionPlanItem\n): StepDefinition[] {\n\tif (steps.length === 0) {\n\t\treturn steps;\n\t}\n\tconst caption = getProgressCaption(planItem);\n\tconst weight = 1 / steps.length;\n\treturn steps.map((step) => ({\n\t\t...step,\n\t\tprogress: {\n\t\t\t...step.progress,\n\t\t\tcaption: step.progress?.caption ?? caption,\n\t\t\tweight: step.progress?.weight ?? weight,\n\t\t},\n\t}));\n}\n\n/**\n * Returns the progress caption for a single v2 execution-plan item.\n *\n * Keep this switch exhaustive. A new execution-plan item should fail type\n * checks here until the runner decides what progress text to report for it.\n */\nfunction getProgressCaption(planItem: BlueprintV2ExecutionPlanItem): string {\n\tswitch (planItem.type) {\n\t\tcase 'applyContentBaseline':\n\t\t\treturn 'Removing initial content';\n\t\tcase 'applyUsersBaseline':\n\t\t\treturn 'Removing initial users';\n\t\tcase 'defineWpConfigConsts':\n\t\t\treturn 'Defining constants';\n\t\tcase 'setSiteOptions':\n\t\t\treturn 'Setting site options';\n\t\tcase 'installMuPlugin':\n\t\t\treturn 'Installing must-use plugin';\n\t\tcase 'installTheme':\n\t\t\treturn planItem.active\n\t\t\t\t? 'Installing active theme'\n\t\t\t\t: 'Installing theme';\n\t\tcase 'installPlugin':\n\t\t\treturn 'Installing plugin';\n\t\tcase 'installFonts':\n\t\t\treturn 'Installing fonts';\n\t\tcase 'importMedia':\n\t\t\treturn 'Importing media';\n\t\tcase 'setSiteLanguage':\n\t\t\treturn 'Setting site language';\n\t\tcase 'defineRoles':\n\t\t\treturn 'Creating roles';\n\t\tcase 'defineUsers':\n\t\t\treturn 'Creating users';\n\t\tcase 'definePostTypes':\n\t\t\treturn 'Registering post types';\n\t\tcase 'importContent':\n\t\t\treturn getContentProgressCaption(planItem.content);\n\t\tcase 'runStep':\n\t\t\treturn getAdditionalStepProgressCaption(planItem.step);\n\t}\n\treturn assertNever(planItem);\n}\n\n/**\n * Makes discriminated-union switches fail at compile time when they miss a\n * case. The thrown error is only a runtime fallback for malformed input.\n */\nfunction assertNever(value: never): never {\n\tthrow new Error(`Unexpected Blueprint v2 progress item: ${value}`);\n}\n\n/**\n * Returns the progress caption for v2 content imports.\n *\n * Keep this switch exhaustive. Adding a new content type should require an\n * explicit caption decision instead of silently falling back to generic text.\n */\nfunction getContentProgressCaption(content: BlueprintV2Content): string {\n\tswitch (content.type) {\n\t\tcase 'mysql-dump':\n\t\t\treturn 'Importing SQL content';\n\t\tcase 'posts':\n\t\t\treturn 'Importing posts';\n\t\tcase 'wxr':\n\t\t\treturn 'Importing WXR content';\n\t}\n\treturn assertNever(content);\n}\n\n/**\n * Returns the progress caption for `additionalStepsAfterExecution` entries.\n *\n * Keep this switch exhaustive. These are direct v1-style steps embedded in v2,\n * so new supported step types need a visible progress label here as well.\n */\nfunction getAdditionalStepProgressCaption(step: BlueprintV2Step): string {\n\tswitch (step.step) {\n\t\tcase 'activatePlugin':\n\t\t\treturn 'Activating plugin';\n\t\tcase 'activateTheme':\n\t\t\treturn 'Activating theme';\n\t\tcase 'cp':\n\t\t\treturn 'Copying files';\n\t\tcase 'defineConstants':\n\t\t\treturn 'Defining constants';\n\t\tcase 'enableMultisite':\n\t\t\treturn 'Enabling multisite';\n\t\tcase 'importContent':\n\t\t\treturn 'Importing content';\n\t\tcase 'importMedia':\n\t\t\treturn 'Importing media';\n\t\tcase 'importThemeStarterContent':\n\t\t\treturn 'Importing theme starter content';\n\t\tcase 'installPlugin':\n\t\t\treturn 'Installing plugin';\n\t\tcase 'installTheme':\n\t\t\treturn 'Installing theme';\n\t\tcase 'mkdir':\n\t\t\treturn 'Creating directory';\n\t\tcase 'mv':\n\t\t\treturn 'Moving files';\n\t\tcase 'rm':\n\t\t\treturn 'Removing file';\n\t\tcase 'rmdir':\n\t\t\treturn 'Removing directory';\n\t\tcase 'resetData':\n\t\t\treturn 'Resetting WordPress data';\n\t\tcase 'runPHP':\n\t\t\treturn 'Running PHP';\n\t\tcase 'runSQL':\n\t\t\treturn 'Executing SQL queries';\n\t\tcase 'setSiteLanguage':\n\t\t\treturn 'Setting site language';\n\t\tcase 'setSiteOptions':\n\t\t\treturn 'Setting site options';\n\t\tcase 'unzip':\n\t\t\treturn 'Extracting ZIP file';\n\t\tcase 'wp-cli':\n\t\t\treturn 'Running WP-CLI';\n\t\tcase 'writeFiles':\n\t\t\treturn 'Writing files';\n\t}\n\treturn assertNever(step);\n}\n\n/**\n * Lowers one v2 plan item when it has a direct v1 step equivalent.\n *\n * Returning `undefined` is intentional: it means \"this plan item is valid v2,\n * but this PR has not taught the TypeScript runner how to represent it yet.\"\n */\nfunction lowerBlueprintV2ExecutionPlanItem(\n\tplanItem: BlueprintV2ExecutionPlanItem,\n\tcontext: BlueprintV2LoweringContext\n): StepDefinition[] | undefined {\n\tswitch (planItem.type) {\n\t\tcase 'applyContentBaseline':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'resetData',\n\t\t\t\t\tcontentTypes: getRemovedContentTypes(\n\t\t\t\t\t\tplanItem.contentBaseline\n\t\t\t\t\t),\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'applyUsersBaseline':\n\t\t\treturn lowerUsersBaseline();\n\t\tcase 'defineWpConfigConsts':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'defineWpConfigConsts',\n\t\t\t\t\tconsts: planItem.consts,\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'setSiteOptions':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'setSiteOptions',\n\t\t\t\t\toptions: planItem.options,\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'installTheme':\n\t\t\treturn [createInstallThemeStep(planItem.theme, planItem.active)];\n\t\tcase 'installPlugin':\n\t\t\treturn [createInstallPluginStep(planItem.plugin)];\n\t\tcase 'installMuPlugin':\n\t\t\treturn lowerMuPlugin(planItem.muPlugin, planItem.sourcePath);\n\t\tcase 'installFonts':\n\t\t\treturn lowerFonts(planItem.fonts, context);\n\t\tcase 'importMedia':\n\t\t\treturn lowerMediaItems(\n\t\t\t\t[planItem.media],\n\t\t\t\tplanItem.sourcePath,\n\t\t\t\tcontext\n\t\t\t);\n\t\tcase 'defineRoles':\n\t\t\treturn [createRolesStep(planItem.roles)];\n\t\tcase 'defineUsers':\n\t\t\treturn [createUsersStep(planItem.users)];\n\t\tcase 'definePostTypes':\n\t\t\treturn lowerPostTypes(planItem.postTypes);\n\t\tcase 'importContent':\n\t\t\treturn lowerBlueprintV2Content(\n\t\t\t\tplanItem.content,\n\t\t\t\tplanItem.sourcePath,\n\t\t\t\tcontext\n\t\t\t);\n\t\tcase 'setSiteLanguage':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'setSiteLanguage',\n\t\t\t\t\tlanguage: planItem.language,\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'runStep':\n\t\t\treturn lowerAdditionalBlueprintV2Step(\n\t\t\t\tplanItem.step,\n\t\t\t\tplanItem.sourcePath,\n\t\t\t\tcontext\n\t\t\t);\n\t\tdefault:\n\t\t\treturn undefined;\n\t}\n}\n\nfunction getRemovedContentTypes(\n\tcontentBaseline: BlueprintV2ContentBaseline\n): BlueprintV2ContentType[] {\n\tconst preservedContent = getPreservedContentTypes(contentBaseline);\n\treturn SITE_CREATION_CONTENT_TYPES.filter(\n\t\t(contentType) => !preservedContent.includes(contentType)\n\t);\n}\n\nfunction getPreservedContentTypes(\n\tcontentBaseline: BlueprintV2ContentBaseline\n): readonly BlueprintV2ContentType[] {\n\tif (contentBaseline === 'keep-all') {\n\t\treturn SITE_CREATION_CONTENT_TYPES;\n\t}\n\tif (contentBaseline === 'empty') {\n\t\treturn [];\n\t}\n\treturn asArray(contentBaseline);\n}\n\n/**\n * Removes the users created by the WordPress installation wizard.\n *\n * Schema validation guarantees content is removed first and the Blueprint\n * declares a replacement administrator. Resetting the empty tables lets that\n * administrator receive the same identifier as the vanilla account it replaces.\n */\nfunction lowerUsersBaseline(): StepDefinition[] {\n\treturn [\n\t\t{\n\t\t\tstep: 'runPHP',\n\t\t\tcode: `<?php\n\t\t\trequire '/wordpress/wp-load.php';\n\t\t\trequire_once ABSPATH . 'wp-admin/includes/user.php';\n\n\t\t\t$user_ids = get_users(['fields' => 'ID']);\n\t\t\tforeach ($user_ids as $user_id) {\n\t\t\t\twp_delete_user((int) $user_id);\n\t\t\t}\n\n\t\t\t$reset_sequence_if_empty = static function($table_name) use ($wpdb) {\n\t\t\t\t$count = $wpdb->get_var(\"SELECT COUNT(*) FROM {$table_name}\");\n\t\t\t\tif ((int) $count !== 0) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif (isset($GLOBALS['@pdo'])) {\n\t\t\t\t\t$statement = $GLOBALS['@pdo']->prepare(\n\t\t\t\t\t\t'DELETE FROM SQLITE_SEQUENCE WHERE NAME = :table_name'\n\t\t\t\t\t);\n\t\t\t\t\t$statement->execute([':table_name' => $table_name]);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t$wpdb->query(\"ALTER TABLE {$table_name} AUTO_INCREMENT = 1\");\n\t\t\t};\n\n\t\t\t$reset_sequence_if_empty($wpdb->users);\n\t\t\t$reset_sequence_if_empty($wpdb->usermeta);\n\t\t\t`,\n\t\t},\n\t];\n}\n\nfunction lowerBlueprintV2Content(\n\tcontent: BlueprintV2Content,\n\tfeaturePath: string,\n\tcontext: BlueprintV2LoweringContext\n): StepDefinition[] | undefined {\n\tswitch (content.type) {\n\t\tcase 'mysql-dump':\n\t\t\treturn asArray(content.source).map((source, index) => ({\n\t\t\t\tstep: 'runSql',\n\t\t\t\tsql: convertV2FileDataReferenceToV1(\n\t\t\t\t\tsource,\n\t\t\t\t\t`${featurePath}.source[${index}]`\n\t\t\t\t),\n\t\t\t}));\n\t\tcase 'wxr':\n\t\t\treturn lowerBlueprintV2WxrContent(content, featurePath);\n\t\tcase 'posts':\n\t\t\treturn lowerPostsContent(content, featurePath, context);\n\t\tdefault:\n\t\t\treturn undefined;\n\t}\n}\n\nfunction lowerBlueprintV2WxrContent(\n\tcontent: BlueprintV2WxrContent,\n\tfeaturePath: string\n): StepDefinition[] | undefined {\n\tconst authorsMode =\n\t\tcontent.authorsMode ??\n\t\t(content.importUsers ? 'create' : 'default-author');\n\tconst importUsers =\n\t\tcontent.importUsers ?? (authorsMode === 'create' ? true : false);\n\n\treturn asArray(content.source).map((source, index) => {\n\t\tconst step: StepDefinition = {\n\t\t\tstep: 'importWxr',\n\t\t\tfile: convertV2FileDataReferenceToV1(\n\t\t\t\tsource,\n\t\t\t\t`${featurePath}.source[${index}]`\n\t\t\t),\n\t\t\tfetchAttachments: content.staticAssets !== 'hotlink',\n\t\t\trewriteUrls: content.urlsMode !== 'preserve',\n\t\t\timportComments: content.importComments ?? false,\n\t\t\tauthorsMode,\n\t\t\timportUsers,\n\t\t};\n\t\tif (content.urlsMap !== undefined) {\n\t\t\tstep.urlMapping = content.urlsMap;\n\t\t}\n\t\tif (content.authorsMap !== undefined) {\n\t\t\tstep.authorsMap = content.authorsMap;\n\t\t}\n\t\tif (content.defaultAuthorUsername !== undefined) {\n\t\t\tstep.defaultAuthorUsername = content.defaultAuthorUsername;\n\t\t}\n\t\treturn step;\n\t});\n}\n\n/**\n * Lowers v2's `additionalStepsAfterExecution` entries that already match v1\n * steps closely enough to reuse their existing runner implementations.\n */\nfunction lowerAdditionalBlueprintV2Step(\n\tstep: BlueprintV2Step,\n\tfeaturePath: string,\n\tcontext: BlueprintV2LoweringContext\n): StepDefinition[] | undefined {\n\tswitch (step.step) {\n\t\tcase 'activatePlugin':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'activatePlugin',\n\t\t\t\t\tpluginPath: step.pluginPath,\n\t\t\t\t\tpluginName: step.humanReadableName,\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'activateTheme':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'activateTheme',\n\t\t\t\t\tthemeFolderName: step.themeDirectoryName,\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'cp':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'cp',\n\t\t\t\t\tfromPath: toPlaygroundPath(step.fromPath),\n\t\t\t\t\ttoPath: toPlaygroundPath(step.toPath),\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'defineConstants':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'defineWpConfigConsts',\n\t\t\t\t\tconsts: step.constants,\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'enableMultisite':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'enableMultisite',\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'importContent':\n\t\t\treturn lowerImportContentStep(step, context);\n\t\tcase 'importMedia':\n\t\t\treturn lowerImportMediaStep(step, featurePath, context);\n\t\tcase 'importThemeStarterContent':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'importThemeStarterContent',\n\t\t\t\t\tthemeSlug: step.themeSlug,\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'installPlugin':\n\t\t\treturn [createInstallPluginStep(step)];\n\t\tcase 'installTheme':\n\t\t\treturn [createInstallThemeStep(step, step.active ?? true)];\n\t\tcase 'mkdir':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'mkdir',\n\t\t\t\t\tpath: toPlaygroundPath(step.path),\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'mv':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'mv',\n\t\t\t\t\tfromPath: toPlaygroundPath(step.fromPath),\n\t\t\t\t\ttoPath: toPlaygroundPath(step.toPath),\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'rm':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'rm',\n\t\t\t\t\tpath: toPlaygroundPath(step.path),\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'rmdir':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'rmdir',\n\t\t\t\t\tpath: toPlaygroundPath(step.path),\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'resetData':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'resetData',\n\t\t\t\t\tcontentTypes: step.contentTypes,\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'runPHP':\n\t\t\treturn lowerRunPHPStep(step, featurePath, context);\n\t\tcase 'runSQL':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'runSql',\n\t\t\t\t\tsql: convertV2FileDataReferenceToV1(\n\t\t\t\t\t\tstep.source,\n\t\t\t\t\t\t'runSQL.source'\n\t\t\t\t\t),\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'setSiteLanguage':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'setSiteLanguage',\n\t\t\t\t\tlanguage: step.language,\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'setSiteOptions':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'setSiteOptions',\n\t\t\t\t\toptions: step.options,\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'wp-cli':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'wp-cli',\n\t\t\t\t\tcommand: step.command,\n\t\t\t\t\twpCliPath: step.wpCliPath,\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'unzip':\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'unzip',\n\t\t\t\t\tzipFile: convertV2FileDataReferenceToV1(\n\t\t\t\t\t\tstep.zipFile,\n\t\t\t\t\t\t'unzip.zipFile'\n\t\t\t\t\t),\n\t\t\t\t\textractToPath: toPlaygroundPath(step.extractToPath),\n\t\t\t\t},\n\t\t\t];\n\t\tcase 'writeFiles':\n\t\t\treturn lowerWriteFilesStep(step);\n\t\tdefault:\n\t\t\treturn undefined;\n\t}\n}\n\n/**\n * Lowers nested `importContent` entries one-by-one so unsupported content\n * still bubbles up as an unsupported v2 plan item.\n */\nfunction lowerImportContentStep(\n\tstep: BlueprintV2ImportContentStep,\n\tcontext: BlueprintV2LoweringContext\n): StepDefinition[] | undefined {\n\tconst steps: StepDefinition[] = [];\n\tfor (const [index, content] of step.content.entries()) {\n\t\tconst loweredSteps = lowerBlueprintV2Content(\n\t\t\tcontent,\n\t\t\t`importContent.content[${index}]`,\n\t\t\tcontext\n\t\t);\n\t\tif (!loweredSteps) {\n\t\t\treturn undefined;\n\t\t}\n\t\tsteps.push(...loweredSteps);\n\t}\n\treturn steps;\n}\n\n/**\n * Lowers file-backed `runPHP` steps by materializing the PHP script into a\n * compiler-owned temp path before requiring it.\n */\nfunction lowerRunPHPStep(\n\tstep: BlueprintV2RunPHPStep,\n\tfeaturePath: string,\n\tcontext: BlueprintV2LoweringContext\n): StepDefinition[] | undefined {\n\tif (isInlineFile(step.code)) {\n\t\tif (step.env) {\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'runPHPWithOptions',\n\t\t\t\t\toptions: {\n\t\t\t\t\t\tcode: step.code.content,\n\t\t\t\t\t\tenv: step.env,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t];\n\t\t}\n\t\treturn [\n\t\t\t{\n\t\t\t\tstep: 'runPHP',\n\t\t\t\tcode: step.code,\n\t\t\t},\n\t\t];\n\t}\n\n\tconst phpPath = nextTempFilePath(context, 'blueprint-run-php', 'php');\n\treturn [\n\t\t{\n\t\t\tstep: 'writeFile',\n\t\t\tpath: phpPath,\n\t\t\tdata: convertV2FileDataReferenceToV1(\n\t\t\t\tstep.code,\n\t\t\t\t`${featurePath}/code`\n\t\t\t),\n\t\t},\n\t\t{\n\t\t\tstep: 'runPHPWithOptions',\n\t\t\toptions: {\n\t\t\t\tcode: `<?php require ${JSON.stringify(phpPath)};`,\n\t\t\t\tenv: step.env || {},\n\t\t\t},\n\t\t},\n\t];\n}\n\n/**\n * Adapts step-local media declarations before delegating to the shared media\n * lowering path.\n */\nfunction lowerImportMediaStep(\n\tstep: BlueprintV2ImportMediaStep,\n\tfeaturePath: string,\n\tcontext: BlueprintV2LoweringContext\n): StepDefinition[] {\n\treturn lowerMediaItems(step.media, `${featurePath}/media`, context);\n}\n\n/**\n * Writes a v2 mu-plugin reference directly into `mu-plugins`.\n *\n * Structured inline-file and inline-directory names are already filenames, so\n * they are passed through without rewriting.\n */\nfunction lowerMuPlugin(\n\tmuPlugin: BlueprintV2MuPlugin,\n\tfeaturePath: string\n): StepDefinition[] {\n\tconst targetPath = getMuPluginTargetPath(muPlugin, featurePath);\n\tconst resource = convertV2WritableDataReferenceToV1(muPlugin, featurePath);\n\tif (isDirectoryReference(resource)) {\n\t\treturn [\n\t\t\t{\n\t\t\t\tstep: 'writeFiles',\n\t\t\t\twriteToPath: targetPath,\n\t\t\t\tfilesTree: resource,\n\t\t\t},\n\t\t];\n\t}\n\treturn [\n\t\t{\n\t\t\tstep: 'writeFile',\n\t\t\tpath: targetPath,\n\t\t\tdata: resource,\n\t\t},\n\t];\n}\n\n/**\n * Splits post declarations into inline posts and file-backed posts for the\n * PHP importer.\n */\nfunction lowerPostsContent(\n\tcontent: BlueprintV2PostContent,\n\tfeaturePath: string,\n\tcontext: BlueprintV2LoweringContext\n): StepDefinition[] {\n\tconst steps: StepDefinition[] = [];\n\tconst inlinePosts: JsonObject[] = [];\n\tconst postFiles: JsonObject[] = [];\n\tconst sourceIsArray = Array.isArray(content.source);\n\tconst sources = (sourceIsArray ? content.source : [content.source]) as (\n\t\t| BlueprintV2FileDataReference\n\t\t| JsonObject\n\t)[];\n\n\tfor (const [index, source] of sources.entries()) {\n\t\tconst sourcePath = sourceIsArray\n\t\t\t? `${featurePath}.source[${index}]`\n\t\t\t: `${featurePath}.source`;\n\n\t\tif (isV2FileDataReferenceLike(source)) {\n\t\t\tconst path = nextTempFilePath(context, 'blueprint-post-content');\n\t\t\tsteps.push({\n\t\t\t\tstep: 'writeFile',\n\t\t\t\tpath,\n\t\t\t\tdata: convertV2FileDataReferenceToV1(source, sourcePath),\n\t\t\t});\n\t\t\tpostFiles.push({\n\t\t\t\tpath,\n\t\t\t\tpost_title: 'Untitled Post',\n\t\t\t\tpost_type: 'post',\n\t\t\t});\n\t\t\tcontinue;\n\t\t}\n\n\t\tinlinePosts.push({ ...(source as JsonObject) });\n\t}\n\n\tif (inlinePosts.length === 0 && postFiles.length === 0) {\n\t\treturn steps;\n\t}\n\n\tsteps.push({\n\t\tstep: 'runPHPWithOptions',\n\t\toptions: {\n\t\t\tcode: IMPORT_POSTS_PHP,\n\t\t\tenv: {\n\t\t\t\tBLUEPRINT_POSTS: JSON.stringify(inlinePosts),\n\t\t\t\tBLUEPRINT_POST_FILES: JSON.stringify(postFiles),\n\t\t\t\tBLUEPRINT_URLS_MODE: content.urlsMode || 'rewrite',\n\t\t\t\tBLUEPRINT_URLS_MAP: JSON.stringify(content.urlsMap || {}),\n\t\t\t},\n\t\t},\n\t});\n\treturn steps;\n}\n\n/**\n * Materializes media file references and keeps user-facing media metadata\n * separate from compiler-owned temporary file paths.\n */\nfunction lowerMediaItems(\n\tmediaItems: BlueprintV2Media[],\n\tfeaturePath: string,\n\tcontext: BlueprintV2LoweringContext\n): StepDefinition[] {\n\tconst steps: StepDefinition[] = [];\n\tconst materializedMedia: JsonObject[] = [];\n\n\tfor (const [index, item] of mediaItems.entries()) {\n\t\tconst definition =\n\t\t\titem && typeof item === 'object' && 'source' in item\n\t\t\t\t? item\n\t\t\t\t: { source: item };\n\t\tconst sourcePath = `${featurePath}[${index}]`;\n\t\tconst filename = fileReferenceBasename(definition.source, sourcePath);\n\t\tconst path = nextTempFilePath(context, 'blueprint-media');\n\t\tsteps.push({\n\t\t\tstep: 'writeFile',\n\t\t\tpath,\n\t\t\tdata: convertV2FileDataReferenceToV1(definition.source, sourcePath),\n\t\t});\n\n\t\tconst media: JsonObject = { path, filename };\n\t\tfor (const field of ['title', 'description', 'alt', 'caption']) {\n\t\t\tif ((definition as any)[field] !== undefined) {\n\t\t\t\tmedia[field] = (definition as any)[field];\n\t\t\t}\n\t\t}\n\t\tmaterializedMedia.push(media);\n\t}\n\n\tif (materializedMedia.length === 0) {\n\t\treturn steps;\n\t}\n\n\tsteps.push({\n\t\tstep: 'runPHPWithOptions',\n\t\toptions: {\n\t\t\tcode: IMPORT_MEDIA_PHP,\n\t\t\tenv: {\n\t\t\t\tBLUEPRINT_MEDIA: JSON.stringify(materializedMedia),\n\t\t\t},\n\t\t},\n\t});\n\treturn steps;\n}\n\n/**\n * Registers v2 post types by writing generated mu-plugins.\n *\n * File-backed argument objects stay in support files so PHP can load the JSON\n * at runtime without embedding arbitrary file contents in code.\n */\nfunction lowerPostTypes(postTypes: BlueprintV2PostTypes): StepDefinition[] {\n\treturn Object.entries(postTypes).flatMap(([slug, args], index) => {\n\t\tconst supportFileName = `blueprint-post-type-${index}`;\n\t\tconst pluginPath = `/wordpress/wp-content/mu-plugins/${supportFileName}.php`;\n\n\t\tif (typeof args === 'string') {\n\t\t\tconst argsPath = `/wordpress/wp-content/mu-plugins/${supportFileName}.json`;\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tstep: 'writeFile',\n\t\t\t\t\tpath: argsPath,\n\t\t\t\t\tdata: convertV2FileDataReferenceToV1(\n\t\t\t\t\t\targs,\n\t\t\t\t\t\t`postTypes.${JSON.stringify(slug)}`\n\t\t\t\t\t),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tstep: 'writeFile',\n\t\t\t\t\tpath: pluginPath,\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tresource: 'literal',\n\t\t\t\t\t\tname: `${supportFileName}.php`,\n\t\t\t\t\t\tcontents: createPostTypePluginCode(slug, argsPath),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t];\n\t\t}\n\n\t\tconst postTypeArgs: JsonObject = { ...(args as JsonObject) };\n\t\tif (postTypeArgs['label'] === undefined) {\n\t\t\tpostTypeArgs['label'] = defaultDisplayNameFromSlug(slug);\n\t\t}\n\t\treturn [\n\t\t\t{\n\t\t\t\tstep: 'writeFile',\n\t\t\t\tpath: pluginPath,\n\t\t\t\tdata: {\n\t\t\t\t\tresource: 'literal',\n\t\t\t\t\tname: `${supportFileName}.php`,\n\t\t\t\t\tcontents: createInlinePostTypePluginCode(\n\t\t\t\t\t\tslug,\n\t\t\t\t\t\tpostTypeArgs\n\t\t\t\t\t),\n\t\t\t\t},\n\t\t\t},\n\t\t];\n\t});\n}\n\n/**\n * Packages role declarations for the PHP runtime code that applies WordPress\n * role API changes.\n */\nfunction createRolesStep(roles: BlueprintV2Role[]): StepDefinition {\n\treturn {\n\t\tstep: 'runPHPWithOptions',\n\t\toptions: {\n\t\t\tcode: DEFINE_ROLES_PHP,\n\t\t\tenv: {\n\t\t\t\tBLUEPRINT_ROLES: JSON.stringify(roles),\n\t\t\t},\n\t\t},\n\t};\n}\n\n/**\n * Packages user declarations for the PHP runtime code that creates or updates\n * WordPress users.\n */\nfunction createUsersStep(users: BlueprintV2User[]): StepDefinition {\n\treturn {\n\t\tstep: 'runPHPWithOptions',\n\t\toptions: {\n\t\t\tcode: DEFINE_USERS_PHP,\n\t\t\tenv: {\n\t\t\t\tBLUEPRINT_USERS: JSON.stringify(users),\n\t\t\t},\n\t\t},\n\t};\n}\n\n/**\n * Lowers v2 font collections and inline font shortcuts into WordPress font\n * library records.\n *\n * Font binaries are materialized separately and referenced by opaque tokens in\n * the collection JSON consumed by the PHP installer.\n */\nfunction lowerFonts(\n\tfonts: BlueprintV2Fonts,\n\tcontext: BlueprintV2LoweringContext\n): StepDefinition[] {\n\tconst steps: StepDefinition[] = [];\n\tconst collections: JsonObject[] = [];\n\tconst fontFiles: Record<string, JsonObject> = {};\n\tlet fileIndex = 0;\n\n\tfor (const [slug, definition] of Object.entries(fonts)) {\n\t\tconst fontPath = `fonts.${JSON.stringify(slug)}`;\n\t\tif (isV2FileDataReferenceLike(definition)) {\n\t\t\tconst token = materializeFontSource(\n\t\t\t\tdefinition,\n\t\t\t\t`${fontPath}.source`,\n\t\t\t\tslug,\n\t\t\t\tsteps,\n\t\t\t\tfontFiles,\n\t\t\t\tfileIndex++,\n\t\t\t\tcontext\n\t\t\t);\n\t\t\tconst name = defaultDisplayNameFromSlug(slug);\n\t\t\tcollections.push({\n\t\t\t\tslug,\n\t\t\t\tname,\n\t\t\t\tfont_families: [\n\t\t\t\t\t{\n\t\t\t\t\t\tfont_family_settings: {\n\t\t\t\t\t\t\tname,\n\t\t\t\t\t\t\tslug,\n\t\t\t\t\t\t\tfontFamily: name,\n\t\t\t\t\t\t\tfontFace: [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tfontFamily: name,\n\t\t\t\t\t\t\t\t\tsrc: token,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t],\n\t\t\t});\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst collection = cloneJson(definition as JsonObject);\n\t\tcollection['slug'] = slug;\n\t\tcollection['name'] =\n\t\t\tcollection['name'] || defaultDisplayNameFromSlug(slug);\n\t\tcollection['font_families'] = (collection['font_families'] || []).map(\n\t\t\t(family: JsonObject, familyIndex: number) => {\n\t\t\t\tconst nextFamily = cloneJson(family);\n\t\t\t\tconst settings = {\n\t\t\t\t\t...(nextFamily['font_family_settings'] || {}),\n\t\t\t\t};\n\t\t\t\tif (Array.isArray(settings['fontFace'])) {\n\t\t\t\t\tsettings['fontFace'] = settings['fontFace'].map(\n\t\t\t\t\t\t(face: JsonObject, faceIndex: number) => {\n\t\t\t\t\t\t\tconst nextFace = { ...face };\n\t\t\t\t\t\t\tnextFace['src'] = materializeFontFaceSource(\n\t\t\t\t\t\t\t\tnextFace['src'] as\n\t\t\t\t\t\t\t\t\t| BlueprintV2FileDataReference\n\t\t\t\t\t\t\t\t\t| BlueprintV2FileDataReference[],\n\t\t\t\t\t\t\t\t`${fontPath}.font_families[${familyIndex}].font_family_settings.fontFace[${faceIndex}].src`,\n\t\t\t\t\t\t\t\t(settings['slug'] as string) || slug,\n\t\t\t\t\t\t\t\tsteps,\n\t\t\t\t\t\t\t\tfontFiles,\n\t\t\t\t\t\t\t\t() => fileIndex++,\n\t\t\t\t\t\t\t\tcontext\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\treturn nextFace;\n\t\t\t\t\t\t}\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\tnextFamily['font_family_settings'] = settings;\n\t\t\t\treturn nextFamily;\n\t\t\t}\n\t\t);\n\t\tcollections.push(collection);\n\t}\n\n\tif (collections.length === 0) {\n\t\treturn steps;\n\t}\n\n\tsteps.push({\n\t\tstep: 'runPHPWithOptions',\n\t\toptions: {\n\t\t\tcode: INSTALL_FONTS_PHP,\n\t\t\tenv: {\n\t\t\t\tBLUEPRINT_FONT_COLLECTIONS: JSON.stringify(collections),\n\t\t\t\tBLUEPRINT_FONT_FILES: JSON.stringify(fontFiles),\n\t\t\t},\n\t\t},\n\t});\n\treturn steps;\n}\n\n/**\n * Lowers v2 `writeFiles` entries while preserving whether each source is a\n * single file or a directory tree.\n */\nfunction lowerWriteFilesStep(\n\tstep: BlueprintV2WriteFilesStep\n): StepDefinition[] {\n\tconst steps: StepDefinition[] = [];\n\tfor (const [path, dataReference] of Object.entries(step.files)) {\n\t\tconst writeToPath = toPlaygroundPath(path);\n\t\tconst resource = convertV2WritableDataReferenceToV1(\n\t\t\tdataReference,\n\t\t\t`writeFiles.files[${JSON.stringify(path)}]`\n\t\t);\n\t\tif (isDirectoryReference(resource)) {\n\t\t\tsteps.push({\n\t\t\t\tstep: 'writeFiles',\n\t\t\t\twriteToPath,\n\t\t\t\tfilesTree: resource,\n\t\t\t});\n\t\t} else {\n\t\t\tsteps.push({\n\t\t\t\tstep: 'writeFile',\n\t\t\t\tpath: writeToPath,\n\t\t\t\tdata: resource,\n\t\t\t});\n\t\t}\n\t}\n\treturn steps;\n}\n\n/**\n * Lowers a font face `src` value while preserving whether the declaration used\n * one source or an ordered fallback list.\n */\nfunction materializeFontFaceSource(\n\tsource: BlueprintV2FileDataReference | BlueprintV2FileDataReference[],\n\tsourcePath: string,\n\tslug: string,\n\tsteps: StepDefinition[],\n\tfontFiles: Record<string, JsonObject>,\n\tnextIndex: () => number,\n\tcontext: BlueprintV2LoweringContext\n) {\n\tif (Array.isArray(source)) {\n\t\treturn source.map((item, index) =>\n\t\t\tmaterializeFontSource(\n\t\t\t\titem,\n\t\t\t\t`${sourcePath}[${index}]`,\n\t\t\t\tslug,\n\t\t\t\tsteps,\n\t\t\t\tfontFiles,\n\t\t\t\tnextIndex(),\n\t\t\t\tcontext\n\t\t\t)\n\t\t);\n\t}\n\treturn materializeFontSource(\n\t\tsource,\n\t\tsourcePath,\n\t\tslug,\n\t\tsteps,\n\t\tfontFiles,\n\t\tnextIndex(),\n\t\tcontext\n\t);\n}\n\n/**\n * Materializes one font binary and returns the token that the generated PHP\n * installer later replaces with copied font-file metadata.\n */\nfunction materializeFontSource(\n\tsource: BlueprintV2FileDataReference,\n\tsourcePath: string,\n\tslug: string,\n\tsteps: StepDefinition[],\n\tfontFiles: Record<string, JsonObject>,\n\tindex: number,\n\tcontext: BlueprintV2LoweringContext\n) {\n\tconst filename = fileReferenceBasename(source, sourcePath);\n\tif (!/\\.(woff2|woff|ttf|otf)$/i.test(filename)) {\n\t\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\t\tsourcePath,\n\t\t\t'Blueprint v2 font sources must reference .woff2, .woff, .ttf, or .otf files.'\n\t\t);\n\t}\n\tconst token = `font-${index}`;\n\tconst path = nextTempFilePath(context, 'blueprint-font');\n\tsteps.push({\n\t\tstep: 'writeFile',\n\t\tpath,\n\t\tdata: convertV2FileDataReferenceToV1(source, sourcePath),\n\t});\n\tfontFiles[`blueprint-font-file:${token}`] = {\n\t\tpath,\n\t\tfilename,\n\t};\n\treturn `blueprint-font-file:${token}`;\n}\n\n/**\n * Builds a mu-plugin that registers a post type from an inline JSON object.\n */\nfunction createInlinePostTypePluginCode(slug: string, args: JsonObject) {\n\treturn `<?php\nadd_action('init', function () {\n\tregister_post_type(${JSON.stringify(slug)}, json_decode(${JSON.stringify(\n\t\tJSON.stringify(args)\n\t)}, true));\n}, 0);\n`;\n}\n\n/**\n * Builds a mu-plugin that registers a post type from a support JSON file\n * written next to the generated plugin.\n */\nfunction createPostTypePluginCode(slug: string, argsPath: string) {\n\tconst argsFilename = basename(argsPath);\n\treturn `<?php\nadd_action('init', function () {\n\t$args = json_decode(file_get_contents(__DIR__ . '/${argsFilename}'), true);\n\tif (!is_array($args)) {\n\t\t$args = array();\n\t}\n\tif (!isset($args['label'])) {\n\t\t$args['label'] = ${JSON.stringify(defaultDisplayNameFromSlug(slug))};\n\t}\n\tregister_post_type(${JSON.stringify(slug)}, $args);\n}, 0);\n`;\n}\n\nconst DEFINE_ROLES_PHP = `<?php\nrequire '/wordpress/wp-load.php';\n\n$roles = json_decode(getenv('BLUEPRINT_ROLES') ?: '[]', true);\nif (!is_array($roles)) {\n\tthrow new Exception('Invalid Blueprint roles payload.');\n}\n\nforeach ($roles as $role) {\n\tif (empty($role['name']) || !is_string($role['name'])) {\n\t\tcontinue;\n\t}\n\t$role_name = $role['name'];\n\t$display_name = $role['display_name'] ?? ucfirst($role_name);\n\t$capabilities = $role['capabilities'] ?? array();\n\tif (!get_role($role_name)) {\n\t\tadd_role($role_name, $display_name, array('read' => true));\n\t}\n\t$role_object = get_role($role_name);\n\tif (!$role_object) {\n\t\tthrow new Exception('Could not create Blueprint role: ' . $role_name);\n\t}\n\tforeach ($capabilities as $capability => $grant) {\n\t\tif (filter_var($grant, FILTER_VALIDATE_BOOLEAN)) {\n\t\t\t$role_object->add_cap($capability);\n\t\t} else {\n\t\t\t$role_object->remove_cap($capability);\n\t\t}\n\t}\n}\n`;\n\nconst DEFINE_USERS_PHP = `<?php\nrequire '/wordpress/wp-load.php';\n\n$users = json_decode(getenv('BLUEPRINT_USERS') ?: '[]', true);\nif (!is_array($users)) {\n\tthrow new Exception('Invalid Blueprint users payload.');\n}\n\nforeach ($users as $user) {\n\tif (empty($user['username']) || !is_string($user['username'])) {\n\t\tcontinue;\n\t}\n\t$username = $user['username'];\n\t$existing = get_user_by('login', $username);\n\tif ($existing) {\n\t\t$user_id = $existing->ID;\n\t} else {\n\t\t$email = $user['email'] ?? $username . '@example.com';\n\t\t$password = $user['password'] ?? wp_generate_password(24, true, true);\n\t\t$user_id = wp_create_user($username, $password, $email);\n\t\tif (is_wp_error($user_id)) {\n\t\t\tthrow new Exception($user_id->get_error_message());\n\t\t}\n\t}\n\t$user_object = new WP_User($user_id);\n\tif (!empty($user['role']) && is_string($user['role'])) {\n\t\t$user_object->set_role($user['role']);\n\t}\n\tforeach (($user['meta'] ?? array()) as $meta_key => $meta_value) {\n\t\tupdate_user_meta($user_id, $meta_key, $meta_value);\n\t}\n}\n`;\n\nconst IMPORT_POSTS_PHP = `<?php\nrequire '/wordpress/wp-load.php';\n\n$posts = json_decode(getenv('BLUEPRINT_POSTS') ?: '[]', true);\n$post_files = json_decode(getenv('BLUEPRINT_POST_FILES') ?: '[]', true);\n$urls_mode = getenv('BLUEPRINT_URLS_MODE') ?: 'rewrite';\n$urls_map = json_decode(getenv('BLUEPRINT_URLS_MAP') ?: '{}', true);\n\nif (!is_array($posts) || !is_array($post_files) || !is_array($urls_map)) {\n\tthrow new Exception('Invalid Blueprint posts payload.');\n}\n\n$blueprint_temp_files = array();\nforeach ($post_files as $file) {\n\tif (is_array($file) && !empty($file['path']) && is_string($file['path'])) {\n\t\t$blueprint_temp_files[] = $file['path'];\n\t}\n}\n\ntry {\n\tforeach ($post_files as $file) {\n\t\t$source_path = $file['path'] ?? '';\n\t\tif (!$source_path || !is_readable($source_path)) {\n\t\t\tthrow new Exception('Post content source is not readable: ' . $source_path);\n\t\t}\n\t\t$posts[] = array(\n\t\t\t'post_title' => $file['post_title'] ?? 'Untitled Post',\n\t\t\t'post_content' => file_get_contents($source_path),\n\t\t\t'post_status' => 'publish',\n\t\t\t'post_type' => $file['post_type'] ?? 'post',\n\t\t);\n\t}\n\n\t$default_author = blueprint_default_post_author();\n\twp_set_current_user($default_author);\n\n\tforeach ($posts as $post) {\n\t\tif (!is_array($post)) {\n\t\t\tthrow new Exception('Each Blueprint post must be an object.');\n\t\t}\n\n\t\t$post = blueprint_prepare_post($post, $default_author, $urls_mode, $urls_map);\n\t\t$post_tags = $post['post_tags'] ?? null;\n\t\t$page_template = $post['page_template'] ?? null;\n\t\t$tax_input = $post['tax_input'] ?? null;\n\t\tunset($post['post_tags'], $post['page_template'], $post['tax_input']);\n\n\t\t$post_id = wp_insert_post(wp_slash($post), true);\n\t\tif (is_wp_error($post_id)) {\n\t\t\tthrow new Exception($post_id->get_error_message());\n\t\t}\n\n\t\tif (is_array($post_tags)) {\n\t\t\tblueprint_set_terms($post_id, 'post_tag', $post_tags);\n\t\t}\n\t\tif (is_array($tax_input)) {\n\t\t\tforeach ($tax_input as $taxonomy => $terms) {\n\t\t\t\tif (taxonomy_exists($taxonomy) && is_array($terms)) {\n\t\t\t\t\tblueprint_set_terms($post_id, $taxonomy, $terms);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif ($page_template && ($post['post_type'] ?? 'post') === 'page') {\n\t\t\tupdate_post_meta($post_id, '_wp_page_template', $page_template);\n\t\t}\n\t}\n} finally {\n\tblueprint_cleanup_post_temp_files($blueprint_temp_files);\n}\n\n/**\n * Builds the wp_insert_post() payload for one Blueprint post.\n */\nfunction blueprint_prepare_post(array $post, int $default_author, string $urls_mode, array $urls_map): array {\n\tif (!isset($post['post_author'])) {\n\t\t$post['post_author'] = $default_author;\n\t} else {\n\t\t$post['post_author'] = (int) $post['post_author'];\n\t\tif ($post['post_author'] <= 0 || !get_userdata($post['post_author'])) {\n\t\t\t$post['post_author'] = $default_author;\n\t\t}\n\t}\n\n\tif (isset($post['post_parent_name']) && !isset($post['post_parent'])) {\n\t\t$post['post_parent'] = blueprint_find_parent_post_id(\n\t\t\t$post['post_parent_name'],\n\t\t\t$post['post_type'] ?? 'page'\n\t\t);\n\t}\n\tunset($post['post_parent_name']);\n\n\tif (isset($post['post_category']) && is_array($post['post_category'])) {\n\t\t$post['post_category'] = blueprint_ensure_terms('category', $post['post_category']);\n\t}\n\n\tforeach (array('post_content', 'post_excerpt', 'guid') as $field) {\n\t\tif (isset($post[$field]) && is_string($post[$field])) {\n\t\t\t$post[$field] = blueprint_rewrite_urls($post[$field], $urls_mode, $urls_map);\n\t\t}\n\t}\n\tif (isset($post['meta_input']) && is_array($post['meta_input'])) {\n\t\t$post['meta_input'] = blueprint_rewrite_urls($post['meta_input'], $urls_mode, $urls_map);\n\t}\n\n\treturn $post;\n}\n\n/**\n * Returns the author used when imported post data omits one.\n */\nfunction blueprint_default_post_author(): int {\n\t$admins = get_users(array(\n\t\t'role' => 'administrator',\n\t\t'number' => 1,\n\t\t'orderby' => 'ID',\n\t\t'order' => 'ASC',\n\t\t'fields' => 'ID',\n\t));\n\tif (!empty($admins)) {\n\t\treturn (int) $admins[0];\n\t}\n\n\t$users = get_users(array(\n\t\t'number' => 1,\n\t\t'orderby' => 'ID',\n\t\t'order' => 'ASC',\n\t\t'fields' => 'ID',\n\t));\n\tif (!empty($users)) {\n\t\treturn (int) $users[0];\n\t}\n\n\t$existing = get_user_by('login', 'blueprint-author');\n\tif ($existing) {\n\t\treturn (int) $existing->ID;\n\t}\n\n\t$user_id = wp_create_user(\n\t\t'blueprint-author',\n\t\twp_generate_password(24, true, true),\n\t\t'blueprint-author@example.com'\n\t);\n\tif (is_wp_error($user_id)) {\n\t\tthrow new Exception($user_id->get_error_message());\n\t}\n\treturn (int) $user_id;\n}\n\n/**\n * Resolves a parent post by title for hierarchical post declarations.\n */\nfunction blueprint_find_parent_post_id(string $name, string $post_type): int {\n\t$parent = get_page_by_path(sanitize_title($name), OBJECT, $post_type);\n\tif (!$parent) {\n\t\t$parent = get_page_by_title($name, OBJECT, $post_type);\n\t}\n\tif (!$parent) {\n\t\tthrow new Exception('Could not resolve post_parent_name: ' . $name);\n\t}\n\treturn (int) $parent->ID;\n}\n\n/**\n * Ensures and assigns taxonomy terms for one imported post.\n */\nfunction blueprint_set_terms(int $post_id, string $taxonomy, array $terms): void {\n\t$term_ids = blueprint_ensure_terms($taxonomy, $terms);\n\tif (!empty($term_ids)) {\n\t\t$result = wp_set_object_terms($post_id, $term_ids, $taxonomy, false);\n\t\tif (is_wp_error($result)) {\n\t\t\tthrow new Exception($result->get_error_message());\n\t\t}\n\t}\n}\n\n/**\n * Creates missing terms and returns IDs ready for wp_set_post_terms().\n */\nfunction blueprint_ensure_terms(string $taxonomy, array $terms): array {\n\t$term_ids = array();\n\tforeach ($terms as $term_name) {\n\t\tif (!is_string($term_name) || $term_name === '') {\n\t\t\tcontinue;\n\t\t}\n\t\t$term = get_term_by('slug', sanitize_title($term_name), $taxonomy);\n\t\tif (!$term) {\n\t\t\t$term = get_term_by('name', $term_name, $taxonomy);\n\t\t}\n\t\tif (!$term) {\n\t\t\t$created = wp_insert_term($term_name, $taxonomy, array(\n\t\t\t\t'slug' => sanitize_title($term_name),\n\t\t\t));\n\t\t\tif (is_wp_error($created)) {\n\t\t\t\tthrow new Exception($created->get_error_message());\n\t\t\t}\n\t\t\t$term_ids[] = (int) $created['term_id'];\n\t\t\tcontinue;\n\t\t}\n\t\t$term_ids[] = (int) $term->term_id;\n\t}\n\treturn $term_ids;\n}\n\n/**\n * Applies the requested URL-preservation or URL-rewrite policy recursively.\n */\nfunction blueprint_rewrite_urls($value, string $urls_mode, array $urls_map) {\n\tif ($urls_mode === 'preserve' || empty($urls_map)) {\n\t\treturn $value;\n\t}\n\tif (is_string($value)) {\n\t\treturn strtr($value, $urls_map);\n\t}\n\tif (is_array($value)) {\n\t\tforeach ($value as $key => $item) {\n\t\t\t$value[$key] = blueprint_rewrite_urls($item, $urls_mode, $urls_map);\n\t\t}\n\t\treturn $value;\n\t}\n\treturn $value;\n}\n\n/**\n * Removes temporary files used while importing file-backed posts.\n */\nfunction blueprint_cleanup_post_temp_files(array $paths): void {\n\tforeach (array_unique($paths) as $path) {\n\t\tif (is_string($path) && file_exists($path)) {\n\t\t\t@unlink($path);\n\t\t}\n\t}\n}\n`;\n\nconst IMPORT_MEDIA_PHP = `<?php\nrequire '/wordpress/wp-load.php';\nrequire_once ABSPATH . 'wp-admin/includes/image.php';\nrequire_once ABSPATH . 'wp-admin/includes/file.php';\n\n$media_items = json_decode(getenv('BLUEPRINT_MEDIA') ?: '[]', true);\nif (!is_array($media_items)) {\n\tthrow new Exception('Invalid Blueprint media payload.');\n}\n\n$blueprint_temp_files = array();\nforeach ($media_items as $item) {\n\tif (is_array($item) && !empty($item['path']) && is_string($item['path'])) {\n\t\t$blueprint_temp_files[] = $item['path'];\n\t}\n}\n\ntry {\n\tforeach ($media_items as $item) {\n\t\t$source_path = $item['path'] ?? '';\n\t\tif (!$source_path || !is_readable($source_path)) {\n\t\t\tthrow new Exception('Media source is not readable: ' . $source_path);\n\t\t}\n\n\t\t$uploads = wp_upload_dir();\n\t\tif (!empty($uploads['error'])) {\n\t\t\tthrow new Exception($uploads['error']);\n\t\t}\n\t\tif (!wp_mkdir_p($uploads['path'])) {\n\t\t\tthrow new Exception('Could not create uploads directory: ' . $uploads['path']);\n\t\t}\n\n\t\t$filename = basename($item['filename'] ?? $source_path);\n\t\tif (!is_string($filename) || basename($filename) !== $filename || sanitize_file_name($filename) !== $filename) {\n\t\t\tthrow new Exception('Invalid Blueprint media filename: must already be a valid filename.');\n\t\t}\n\t\t$filename = wp_unique_filename($uploads['path'], $filename);\n\t\t$target_path = trailingslashit($uploads['path']) . $filename;\n\t\tif (!copy($source_path, $target_path)) {\n\t\t\tthrow new Exception('Could not copy media file to uploads directory.');\n\t\t}\n\n\t\t$filetype = wp_check_filetype($filename, null);\n\t\t$attachment = array(\n\t\t\t'guid' => trailingslashit($uploads['url']) . $filename,\n\t\t\t'post_mime_type' => $filetype['type'] ?: 'application/octet-stream',\n\t\t\t'post_title' => $item['title'] ?? preg_replace('/\\\\.[^.]+$/', '', $filename),\n\t\t\t'post_content' => $item['description'] ?? '',\n\t\t\t'post_excerpt' => $item['caption'] ?? '',\n\t\t\t'post_status' => 'inherit',\n\t\t);\n\n\t\t$attachment_id = wp_insert_attachment($attachment, $target_path, 0, true);\n\t\tif (is_wp_error($attachment_id)) {\n\t\t\tthrow new Exception($attachment_id->get_error_message());\n\t\t}\n\n\t\t$metadata = wp_generate_attachment_metadata($attachment_id, $target_path);\n\t\tif (!is_wp_error($metadata) && !empty($metadata)) {\n\t\t\twp_update_attachment_metadata($attachment_id, $metadata);\n\t\t}\n\t\tif (array_key_exists('alt', $item)) {\n\t\t\tupdate_post_meta($attachment_id, '_wp_attachment_image_alt', $item['alt']);\n\t\t}\n\t}\n} finally {\n\tblueprint_cleanup_media_temp_files($blueprint_temp_files);\n}\n\n/**\n * Removes temporary files used while importing media attachments.\n */\nfunction blueprint_cleanup_media_temp_files(array $paths): void {\n\tforeach (array_unique($paths) as $path) {\n\t\tif (is_string($path) && file_exists($path)) {\n\t\t\t@unlink($path);\n\t\t}\n\t}\n}\n`;\n\nconst INSTALL_FONTS_PHP = `<?php\nrequire '/wordpress/wp-load.php';\n\n$collections = json_decode(getenv('BLUEPRINT_FONT_COLLECTIONS') ?: '[]', true);\n$files = json_decode(getenv('BLUEPRINT_FONT_FILES') ?: '{}', true);\n\nif (!is_array($collections) || !is_array($files)) {\n\tthrow new Exception('Invalid Blueprint fonts payload.');\n}\nif (!function_exists('wp_get_font_dir') || !post_type_exists('wp_font_family') || !post_type_exists('wp_font_face')) {\n\tthrow new Exception('Blueprint fonts require WordPress 6.5 or newer.');\n}\n\n/**\n * Requires a Blueprint slug field to already be a WordPress slug.\n */\nfunction blueprint_require_valid_slug(string $slug, string $field): string {\n\tif ($slug === '' || sanitize_title($slug) !== $slug) {\n\t\tthrow new Exception('Invalid Blueprint ' . $field . ': must already be a valid slug.');\n\t}\n\treturn $slug;\n}\n\n$blueprint_temp_files = blueprint_font_temp_files($files);\ntry {\n\t$font_dir = wp_get_font_dir();\n\tif (!empty($font_dir['error'])) {\n\t\tthrow new Exception($font_dir['error']);\n\t}\n\tif (!wp_mkdir_p($font_dir['basedir'])) {\n\t\tthrow new Exception('Could not create font directory: ' . $font_dir['basedir']);\n\t}\n\n\t$registered_collections = array();\n\tforeach ($collections as $collection) {\n\t\tif (!is_array($collection) || empty($collection['slug']) || !is_string($collection['slug'])) {\n\t\t\tthrow new Exception('Each Blueprint font collection must have a slug.');\n\t\t}\n\n\t\t$slug = blueprint_require_valid_slug($collection['slug'], 'font collection slug');\n\t\t$families = isset($collection['font_families']) && is_array($collection['font_families'])\n\t\t\t? $collection['font_families']\n\t\t\t: array();\n\n\t\tforeach ($families as $family_index => $family) {\n\t\t\tif (!is_array($family) || !isset($family['font_family_settings']) || !is_array($family['font_family_settings'])) {\n\t\t\t\tthrow new Exception('Each Blueprint font family must include font_family_settings.');\n\t\t\t}\n\n\t\t\t$settings = $family['font_family_settings'];\n\t\t\t$family_id = blueprint_upsert_font_family($settings);\n\t\t\tif (!empty($settings['fontFace']) && is_array($settings['fontFace'])) {\n\t\t\t\tforeach ($settings['fontFace'] as $face_index => $face) {\n\t\t\t\t\tif (!is_array($face)) {\n\t\t\t\t\t\tthrow new Exception('Each Blueprint fontFace entry must be an object.');\n\t\t\t\t\t}\n\t\t\t\t\t$prepared_face = blueprint_prepare_font_face($face, $files, $font_dir);\n\t\t\t\t\tblueprint_upsert_font_face($family_id, $prepared_face['settings'], $prepared_face['files']);\n\t\t\t\t\t$settings['fontFace'][$face_index] = $prepared_face['settings'];\n\t\t\t\t}\n\t\t\t}\n\t\t\t$families[$family_index]['font_family_settings'] = $settings;\n\t\t}\n\n\t\t$collection_args = array(\n\t\t\t'name' => $collection['name'] ?? blueprint_default_display_name_from_slug($slug),\n\t\t\t'font_families' => $families,\n\t\t);\n\t\t$categories = blueprint_collect_font_categories($families);\n\t\tif (!empty($categories)) {\n\t\t\t$collection_args['categories'] = $categories;\n\t\t}\n\t\t$registered_collections[$slug] = $collection_args;\n\t\tblueprint_register_font_collection($slug, $collection_args);\n\t}\n\n\tblueprint_write_font_collections_mu_plugin($registered_collections);\n} finally {\n\tblueprint_cleanup_font_temp_files($blueprint_temp_files);\n}\n\n/**\n * Creates or updates a WordPress font-family post for a font collection.\n */\nfunction blueprint_upsert_font_family(array $settings): int {\n\tforeach (array('name', 'slug', 'fontFamily') as $field) {\n\t\tif (empty($settings[$field]) || !is_string($settings[$field])) {\n\t\t\tthrow new Exception('Font family setting \"' . $field . '\" is required.');\n\t\t}\n\t}\n\n\t$slug = blueprint_require_valid_slug($settings['slug'], 'font family slug');\n\t$post_content = $settings;\n\tunset($post_content['name'], $post_content['slug']);\n\n\t$existing = get_posts(array(\n\t\t'post_type' => 'wp_font_family',\n\t\t'name' => $slug,\n\t\t'post_status' => 'any',\n\t\t'numberposts' => 1,\n\t));\n\t$post = array(\n\t\t'post_type' => 'wp_font_family',\n\t\t'post_status' => 'publish',\n\t\t'post_title' => $settings['name'],\n\t\t'post_name' => $slug,\n\t\t'post_content' => wp_json_encode($post_content),\n\t);\n\tif (!empty($existing)) {\n\t\t$post['ID'] = $existing[0]->ID;\n\t}\n\n\t$post_id = wp_insert_post(wp_slash($post), true);\n\tif (is_wp_error($post_id)) {\n\t\tthrow new Exception($post_id->get_error_message());\n\t}\n\treturn (int) $post_id;\n}\n\n/**\n * Converts Blueprint font-face settings into WordPress font-library fields.\n */\nfunction blueprint_prepare_font_face(array $settings, array $files, array $font_dir): array {\n\tif (empty($settings['fontFamily']) || empty($settings['src'])) {\n\t\tthrow new Exception('Font face settings require fontFamily and src.');\n\t}\n\n\t$srcs = is_array($settings['src']) ? $settings['src'] : array($settings['src']);\n\t$processed_srcs = array();\n\t$file_meta = array();\n\n\tforeach ($srcs as $src) {\n\t\tif (is_string($src) && isset($files[$src])) {\n\t\t\t$copied = blueprint_copy_font_file($files[$src], $font_dir);\n\t\t\t$processed_srcs[] = $copied['url'];\n\t\t\t$file_meta[] = $copied['relative'];\n\t\t\tcontinue;\n\t\t}\n\t\t$processed_srcs[] = $src;\n\t}\n\n\t$settings['src'] = count($processed_srcs) === 1 ? $processed_srcs[0] : $processed_srcs;\n\treturn array(\n\t\t'settings' => $settings,\n\t\t'files' => $file_meta,\n\t);\n}\n\n/**\n * Copies one materialized font binary into the WordPress uploads directory.\n */\nfunction blueprint_copy_font_file(array $file, array $font_dir): array {\n\t$source_path = $file['path'] ?? '';\n\tif (!$source_path || !is_readable($source_path)) {\n\t\tthrow new Exception('Font source is not readable: ' . $source_path);\n\t}\n\n\t$filename = $file['filename'] ?? basename($source_path);\n\tif (!is_string($filename) || basename($filename) !== $filename || sanitize_file_name($filename) !== $filename) {\n\t\tthrow new Exception('Invalid Blueprint font filename: must already be a valid filename.');\n\t}\n\tif (!preg_match('/\\\\.(woff2|woff|ttf|otf)$/i', $filename)) {\n\t\tthrow new Exception('Unsupported font file extension: ' . $filename);\n\t}\n\n\t$unique_filename = wp_unique_filename($font_dir['basedir'], $filename);\n\t$target_path = trailingslashit($font_dir['basedir']) . $unique_filename;\n\tif (!copy($source_path, $target_path)) {\n\t\tthrow new Exception('Could not copy font file to fonts directory.');\n\t}\n\n\treturn array(\n\t\t'url' => trailingslashit($font_dir['baseurl']) . $unique_filename,\n\t\t'relative' => $unique_filename,\n\t);\n}\n\n/**\n * Creates or updates a font-face post belonging to a font family.\n */\nfunction blueprint_upsert_font_face(int $family_id, array $settings, array $file_meta): int {\n\t$title = blueprint_font_face_slug($settings);\n\t$existing = get_posts(array(\n\t\t'post_type' => 'wp_font_face',\n\t\t'post_parent' => $family_id,\n\t\t'title' => $title,\n\t\t'post_status' => 'any',\n\t\t'numberposts' => 1,\n\t));\n\n\t$post = array(\n\t\t'post_type' => 'wp_font_face',\n\t\t'post_parent' => $family_id,\n\t\t'post_status' => 'publish',\n\t\t'post_title' => $title,\n\t\t'post_name' => sanitize_title($title),\n\t\t'post_content' => wp_json_encode($settings),\n\t);\n\tif (!empty($existing)) {\n\t\t$post['ID'] = $existing[0]->ID;\n\t}\n\n\t$post_id = wp_insert_post(wp_slash($post), true);\n\tif (is_wp_error($post_id)) {\n\t\tthrow new Exception($post_id->get_error_message());\n\t}\n\n\tdelete_post_meta($post_id, '_wp_font_face_file');\n\tforeach ($file_meta as $relative_path) {\n\t\tadd_post_meta($post_id, '_wp_font_face_file', $relative_path);\n\t}\n\treturn (int) $post_id;\n}\n\n/**\n * Builds the stable slug used to find an existing font-face post.\n */\nfunction blueprint_font_face_slug(array $settings): string {\n\tif (class_exists('WP_Font_Utils') && method_exists('WP_Font_Utils', 'get_font_face_slug')) {\n\t\treturn WP_Font_Utils::get_font_face_slug($settings);\n\t}\n\t$parts = array($settings['fontFamily'] ?? 'font');\n\tforeach (array('fontStyle', 'fontWeight', 'fontStretch') as $field) {\n\t\tif (!empty($settings[$field])) {\n\t\t\t$parts[] = (string) $settings[$field];\n\t\t}\n\t}\n\treturn implode('-', $parts);\n}\n\n/**\n * Collects category slugs declared by all families in a collection.\n */\nfunction blueprint_collect_font_categories(array $families): array {\n\t$categories = array();\n\tforeach ($families as $family) {\n\t\tforeach (($family['categories'] ?? array()) as $category) {\n\t\t\tif (!is_string($category) || $category === '') {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t$slug = blueprint_require_valid_slug($category, 'font category slug');\n\t\t\t$categories[$slug] = array(\n\t\t\t\t'name' => blueprint_default_display_name_from_slug($slug),\n\t\t\t\t'slug' => $slug,\n\t\t\t);\n\t\t}\n\t}\n\treturn array_values($categories);\n}\n\n/**\n * Registers collection metadata after font posts have been imported.\n */\nfunction blueprint_register_font_collection(string $slug, array $collection_args): void {\n\tif (!function_exists('wp_register_font_collection') || !class_exists('WP_Font_Library')) {\n\t\treturn;\n\t}\n\t$library = WP_Font_Library::get_instance();\n\tif ($library->get_font_collection($slug) && function_exists('wp_unregister_font_collection')) {\n\t\twp_unregister_font_collection($slug);\n\t}\n\t$result = wp_register_font_collection($slug, $collection_args);\n\tif (is_wp_error($result)) {\n\t\tthrow new Exception($result->get_error_message());\n\t}\n}\n\n/**\n * Persists imported font collections so they are registered on every boot.\n */\nfunction blueprint_write_font_collections_mu_plugin(array $collections): void {\n\tif (empty($collections)) {\n\t\treturn;\n\t}\n\t$dir = WP_CONTENT_DIR . '/mu-plugins';\n\tif (!wp_mkdir_p($dir)) {\n\t\tthrow new Exception('Could not create mu-plugins directory for font collections.');\n\t}\n\t$code = \"<?php\\\\nadd_action('init', function () {\\\\n\" .\n\t\t\"\\\\tif (!function_exists('wp_register_font_collection') || !class_exists('WP_Font_Library')) {\\\\n\\\\t\\\\treturn;\\\\n\\\\t}\\\\n\" .\n\t\t\"\\\\t\\\\$collections = \" . var_export($collections, true) . \";\\\\n\" .\n\t\t\"\\\\t\\\\$library = WP_Font_Library::get_instance();\\\\n\" .\n\t\t\"\\\\tforeach (\\\\$collections as \\\\$slug => \\\\$args) {\\\\n\" .\n\t\t\"\\\\t\\\\tif (\\\\$library->get_font_collection(\\\\$slug) && function_exists('wp_unregister_font_collection')) {\\\\n\\\\t\\\\t\\\\twp_unregister_font_collection(\\\\$slug);\\\\n\\\\t\\\\t}\\\\n\" .\n\t\t\"\\\\t\\\\twp_register_font_collection(\\\\$slug, \\\\$args);\\\\n\" .\n\t\t\"\\\\t}\\\\n\" .\n\t\t\"}, 0);\\\\n\";\n\tfile_put_contents($dir . '/blueprint-font-collections.php', $code);\n}\n\n/**\n * Converts a slug into the fallback label used by generated font settings.\n */\nfunction blueprint_default_display_name_from_slug(string $slug): string {\n\treturn ucwords(str_replace(array('-', '_'), ' ', $slug));\n}\n\n/**\n * Extracts temp paths from the materialized font-file map for cleanup.\n */\nfunction blueprint_font_temp_files(array $files): array {\n\t$paths = array();\n\tforeach ($files as $file) {\n\t\tif (is_array($file) && !empty($file['path']) && is_string($file['path'])) {\n\t\t\t$paths[] = $file['path'];\n\t\t}\n\t}\n\treturn $paths;\n}\n\n/**\n * Removes temporary files used while importing fonts.\n */\nfunction blueprint_cleanup_font_temp_files(array $paths): void {\n\tforeach (array_unique($paths) as $path) {\n\t\tif (is_string($path) && file_exists($path)) {\n\t\t\t@unlink($path);\n\t\t}\n\t}\n}\n`;\n\n/**\n * Creates the v1 `installPlugin` step for a v2 plugin declaration.\n *\n * Blueprint v2 accepts either a bare data reference (`\"akismet\"`) or an object\n * with a `source` plus install options. `normalizeAssetDefinition()` gives both\n * forms one shape before this function maps the fields to v1 names.\n */\nfunction createInstallPluginStep(plugin: BlueprintV2Plugin): StepDefinition {\n\tconst definition = normalizeAssetDefinition(plugin);\n\tconst step: InstallPluginStep<FileReference, DirectoryReference> = {\n\t\tstep: 'installPlugin',\n\t\tpluginData: convertV2DataReferenceToV1(definition.source, 'plugin'),\n\t\toptions: createInstallPluginOptions(definition),\n\t};\n\n\tif (definition.ifAlreadyInstalled) {\n\t\tstep.ifAlreadyInstalled = definition.ifAlreadyInstalled;\n\t}\n\n\treturn step;\n}\n\n/**\n * Maps plugin-only v2 install options to the v1 `installPlugin` option names.\n */\nfunction createInstallPluginOptions(\n\tdefinition: BlueprintV2InstallAssetDefinition\n): InstallPluginOptions {\n\tconst options: InstallPluginOptions = {\n\t\tactivate: definition.active ?? true,\n\t};\n\n\tif (definition.activationOptions) {\n\t\toptions.activationOptions = definition.activationOptions;\n\t}\n\tif (\n\t\tdefinition.onError === 'skip-plugin' ||\n\t\tdefinition.onError === 'throw'\n\t) {\n\t\toptions.onError = definition.onError;\n\t}\n\tif (definition.targetDirectoryName) {\n\t\toptions.targetFolderName = definition.targetDirectoryName;\n\t}\n\tif (definition.humanReadableName) {\n\t\toptions.humanReadableName = definition.humanReadableName;\n\t}\n\n\treturn options;\n}\n\n/**\n * Creates the v1 `installTheme` step for a v2 theme declaration.\n *\n * `active` comes from the surrounding v2 plan item because top-level themes and\n * `activeTheme` use the same source shapes but different activation behavior.\n */\nfunction createInstallThemeStep(\n\ttheme: BlueprintV2Theme | BlueprintV2ActiveTheme,\n\tactive: boolean\n): StepDefinition {\n\tconst definition = normalizeAssetDefinition(theme);\n\tconst step: InstallThemeStep<FileReference, DirectoryReference> = {\n\t\tstep: 'installTheme',\n\t\tthemeData: convertV2DataReferenceToV1(definition.source, 'theme'),\n\t\toptions: createInstallThemeOptions(definition, active),\n\t};\n\n\tif (definition.ifAlreadyInstalled) {\n\t\tstep.ifAlreadyInstalled = definition.ifAlreadyInstalled;\n\t}\n\n\treturn step;\n}\n\n/**\n * Maps theme-only v2 install options to the v1 `installTheme` option names.\n */\nfunction createInstallThemeOptions(\n\tdefinition: BlueprintV2InstallAssetDefinition,\n\tactive: boolean\n): InstallThemeOptions {\n\tconst options: InstallThemeOptions = {\n\t\tactivate: active,\n\t\timportStarterContent: definition.importStarterContent ?? false,\n\t};\n\n\tif (definition.targetDirectoryName) {\n\t\toptions.targetFolderName = definition.targetDirectoryName;\n\t}\n\tif (definition.onError === 'skip-theme' || definition.onError === 'throw') {\n\t\toptions.onError = definition.onError;\n\t}\n\tif (definition.humanReadableName) {\n\t\toptions.humanReadableName = definition.humanReadableName;\n\t}\n\n\treturn options;\n}\n\n/**\n * Turns the two accepted v2 asset forms into a single object shape.\n *\n * Objects with `source` are full install definitions. Inline files, inline\n * directories, git references, and strings are data references and must be\n * wrapped as `{ source }` before they can be lowered.\n */\nfunction normalizeAssetDefinition(\n\tasset: BlueprintV2Plugin | BlueprintV2Theme | BlueprintV2ActiveTheme\n): BlueprintV2InstallAssetDefinition {\n\tif (\n\t\tasset &&\n\t\ttypeof asset === 'object' &&\n\t\t'source' in asset &&\n\t\t!isInlineFile(asset) &&\n\t\t!isInlineDirectory(asset) &&\n\t\t!isGitPath(asset)\n\t) {\n\t\treturn asset as BlueprintV2InstallAssetDefinition;\n\t}\n\treturn { source: asset as BlueprintV2DataReference };\n}\n\n/**\n * Returns WordPress data references that cannot use the existing version/URL\n * download path and therefore need the Blueprint resource loader.\n */\nfunction getCustomWordPressDataReference(\n\twordpressVersion: BlueprintV2Declaration['wordpressVersion']\n): BlueprintV2DataReference | undefined {\n\tif (\n\t\ttypeof wordpressVersion === 'string' &&\n\t\tisExecutionContextPath(wordpressVersion)\n\t) {\n\t\treturn wordpressVersion;\n\t}\n\tif (\n\t\tisInlineFile(wordpressVersion) ||\n\t\tisInlineDirectory(wordpressVersion) ||\n\t\tisGitPath(wordpressVersion)\n\t) {\n\t\treturn wordpressVersion;\n\t}\n\treturn undefined;\n}\n\n/**\n * Maps a Blueprint v2 data reference to the equivalent v1 resource.\n *\n * V2 groups URLs, WordPress.org slugs, execution-context paths, inline data,\n * and git repositories into one data-reference concept. V1 uses separate\n * `resource` names, so each supported v2 form is identified here explicitly.\n */\nfunction convertV2DataReferenceToV1(\n\treference: BlueprintV2DataReference,\n\tcontext: 'plugin' | 'theme' | 'wordpress'\n): FileReference | DirectoryReference {\n\tif (typeof reference === 'string') {\n\t\tif (seemsLikeGitRepoUrl(reference)) {\n\t\t\treturn {\n\t\t\t\tresource: 'zip',\n\t\t\t\tinner: {\n\t\t\t\t\tresource: 'git:directory',\n\t\t\t\t\turl: reference.trim().replace(/\\/+$/, ''),\n\t\t\t\t\tref: 'HEAD',\n\t\t\t\t},\n\t\t\t};\n\t\t}\n\t\tif (isHttpUrl(reference)) {\n\t\t\treturn { resource: 'url', url: reference };\n\t\t}\n\t\tif (isExecutionContextPath(reference)) {\n\t\t\treturn {\n\t\t\t\tresource: 'bundled',\n\t\t\t\tpath: normalizeExecutionContextPath(reference),\n\t\t\t};\n\t\t}\n\t\tif (context === 'wordpress') {\n\t\t\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\t\t\t'wordpressVersion',\n\t\t\t\t'Unsupported Blueprint v2 WordPress data reference.'\n\t\t\t);\n\t\t}\n\t\treturn wordpressOrgResource(\n\t\t\treference,\n\t\t\tcontext === 'plugin' ? 'plugins' : 'themes'\n\t\t);\n\t}\n\n\tif (isInlineFile(reference)) {\n\t\treturn {\n\t\t\tresource: 'literal',\n\t\t\tname: reference.filename,\n\t\t\tcontents: reference.content,\n\t\t};\n\t}\n\n\tif (isInlineDirectory(reference)) {\n\t\treturn {\n\t\t\tresource: 'literal:directory',\n\t\t\tname: reference.directoryName,\n\t\t\tfiles: inlineDirectoryFilesToFileTree(reference.files),\n\t\t};\n\t}\n\n\tif (isGitPath(reference)) {\n\t\treturn {\n\t\t\tresource: 'git:directory',\n\t\t\turl: reference.gitRepository,\n\t\t\tref: reference.ref || 'HEAD',\n\t\t\tpath: reference.pathInRepository || reference.path || '',\n\t\t};\n\t}\n\n\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\tcontext,\n\t\t'Unsupported Blueprint v2 data reference.'\n\t);\n}\n\nfunction convertV2FileDataReferenceToV1(\n\treference: BlueprintV2FileDataReference,\n\tfeaturePath: string\n): FileReference {\n\tif (typeof reference === 'string') {\n\t\tif (isHttpUrl(reference)) {\n\t\t\treturn { resource: 'url', url: reference };\n\t\t}\n\t\tif (isTargetSitePath(reference)) {\n\t\t\treturn {\n\t\t\t\tresource: 'vfs',\n\t\t\t\tpath: toPlaygroundPath(reference, featurePath),\n\t\t\t};\n\t\t}\n\t\tif (isExecutionContextPath(reference)) {\n\t\t\treturn {\n\t\t\t\tresource: 'bundled',\n\t\t\t\tpath: normalizeExecutionContextPath(reference),\n\t\t\t};\n\t\t}\n\t\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\t\tfeaturePath,\n\t\t\t'Blueprint v2 file references must be URLs, execution-context paths, or target-site paths.'\n\t\t);\n\t}\n\n\tif (isInlineFile(reference)) {\n\t\treturn {\n\t\t\tresource: 'literal',\n\t\t\tname: reference.filename,\n\t\t\tcontents: reference.content,\n\t\t};\n\t}\n\n\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\tfeaturePath,\n\t\t'Unsupported Blueprint v2 file reference.'\n\t);\n}\n\nfunction convertV2WritableDataReferenceToV1(\n\treference: BlueprintV2DataReference,\n\tfeaturePath: string\n): FileReference | DirectoryReference {\n\tif (typeof reference === 'string') {\n\t\tif (isHttpUrl(reference)) {\n\t\t\treturn { resource: 'url', url: reference };\n\t\t}\n\t\tif (isExecutionContextPath(reference)) {\n\t\t\treturn {\n\t\t\t\tresource: 'bundled',\n\t\t\t\tpath: normalizeExecutionContextPath(reference),\n\t\t\t};\n\t\t}\n\t\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\t\tfeaturePath,\n\t\t\t'Blueprint v2 writable data references must be URLs or execution-context paths.'\n\t\t);\n\t}\n\n\tif (isInlineFile(reference)) {\n\t\treturn {\n\t\t\tresource: 'literal',\n\t\t\tname: reference.filename,\n\t\t\tcontents: reference.content,\n\t\t};\n\t}\n\n\tif (isInlineDirectory(reference)) {\n\t\treturn {\n\t\t\tresource: 'literal:directory',\n\t\t\tname: reference.directoryName,\n\t\t\tfiles: inlineDirectoryFilesToFileTree(reference.files),\n\t\t};\n\t}\n\n\tif (isGitPath(reference)) {\n\t\treturn {\n\t\t\tresource: 'git:directory',\n\t\t\turl: reference.gitRepository,\n\t\t\tref: reference.ref || 'HEAD',\n\t\t\tpath: reference.pathInRepository || reference.path || '',\n\t\t};\n\t}\n\n\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\tfeaturePath,\n\t\t'Unsupported Blueprint v2 writable data reference.'\n\t);\n}\n\nfunction isDirectoryReference(\n\tresource: FileReference | DirectoryReference\n): resource is DirectoryReference {\n\treturn (\n\t\tresource.resource === 'literal:directory' ||\n\t\tresource.resource === 'git:directory'\n\t);\n}\n\n/**\n * Computes the mu-plugin installation path from structured data-reference\n * fields without rewriting explicit inline filenames or directory names.\n */\nfunction getMuPluginTargetPath(\n\treference: BlueprintV2DataReference,\n\tfeaturePath: string\n) {\n\tconst muPluginsPath = '/wordpress/wp-content/mu-plugins';\n\tif (isInlineFile(reference)) {\n\t\treturn joinPaths(muPluginsPath, reference.filename);\n\t}\n\tif (isInlineDirectory(reference)) {\n\t\treturn joinPaths(muPluginsPath, reference.directoryName);\n\t}\n\tif (isGitPath(reference)) {\n\t\treturn joinPaths(\n\t\t\tmuPluginsPath,\n\t\t\tgitPathBasename(reference, featurePath)\n\t\t);\n\t}\n\tif (typeof reference === 'string') {\n\t\treturn joinPaths(\n\t\t\tmuPluginsPath,\n\t\t\tfileReferenceBasename(reference, featurePath)\n\t\t);\n\t}\n\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\tfeaturePath,\n\t\t'Unsupported Blueprint v2 mu-plugin data reference.'\n\t);\n}\n\n/**\n * Distinguishes file references from inline JSON objects in union fields such\n * as posts and media declarations.\n */\nfunction isV2FileDataReferenceLike(\n\tvalue: any\n): value is BlueprintV2FileDataReference {\n\treturn typeof value === 'string' || isInlineFile(value);\n}\n\n/**\n * Allocates a compiler-owned temp path for generated support files.\n *\n * The path intentionally does not include Blueprint-provided names.\n */\nfunction nextTempFilePath(\n\tcontext: BlueprintV2LoweringContext,\n\tprefix: string,\n\textension?: string\n) {\n\tconst suffix = extension ? `.${extension}` : '';\n\treturn `/tmp/${prefix}-${context.nextTempFileIndex++}${suffix}`;\n}\n\n/**\n * Extracts the user-facing filename from supported file-reference shapes.\n *\n * This is used for WordPress metadata such as media and font filenames, not\n * for compiler temporary paths.\n */\nfunction fileReferenceBasename(\n\treference: BlueprintV2FileDataReference,\n\tfeaturePath: string\n) {\n\tif (typeof reference === 'string') {\n\t\tif (isHttpUrl(reference)) {\n\t\t\treturn basename(new URL(reference).pathname);\n\t\t}\n\t\tif (isExecutionContextPath(reference)) {\n\t\t\treturn basename(normalizeExecutionContextPath(reference));\n\t\t}\n\t\tif (isTargetSitePath(reference)) {\n\t\t\treturn basename(toPlaygroundPath(reference, featurePath));\n\t\t}\n\t}\n\tif (isInlineFile(reference)) {\n\t\treturn reference.filename;\n\t}\n\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\tfeaturePath,\n\t\t'Blueprint v2 file references must be URLs, execution-context paths, ' +\n\t\t\t'target-site paths, or inline files.'\n\t);\n}\n\n/**\n * Gets the target name for a git data reference from its structured repository\n * path, or from the repository URL when no path is provided.\n */\nfunction gitPathBasename(\n\treference: Extract<BlueprintV2DataReference, { gitRepository: string }>,\n\tfeaturePath: string\n) {\n\tconst pathInRepository = reference.pathInRepository || reference.path;\n\tif (pathInRepository) {\n\t\tif (pathContainsParentDirectorySegment(pathInRepository)) {\n\t\t\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\t\t\t`${featurePath}.pathInRepository`,\n\t\t\t\t'Blueprint v2 git paths must not contain parent directory segments.'\n\t\t\t);\n\t\t}\n\t\treturn basename(pathInRepository);\n\t}\n\treturn basename(new URL(reference.gitRepository).pathname);\n}\n\n/**\n * Converts a machine slug into a fallback display name for generated\n * WordPress records.\n */\nfunction defaultDisplayNameFromSlug(slug: string) {\n\treturn slug\n\t\t.replace(/[-_]+/g, ' ')\n\t\t.replace(/\\b\\w/g, (letter) => letter.toUpperCase());\n}\n\n/**\n * Clones JSON-compatible Blueprint data before adding compiler defaults.\n */\nfunction cloneJson<T>(value: T): T {\n\treturn JSON.parse(JSON.stringify(value));\n}\n\nfunction asArray<T>(value: T | T[]): T[] {\n\treturn Array.isArray(value) ? value : [value];\n}\n\n/**\n * Converts a v2 target-site path into the absolute WordPress VFS path that v1\n * file steps expect.\n *\n * V2 paths in imperative file steps are site-relative (`site:...`) or plain\n * relative paths. Paths that resolve outside the WordPress root are rejected.\n */\nfunction toPlaygroundPath(path: string, featurePath = 'path'): string {\n\tif (typeof path !== 'string' || path.trim() === '') {\n\t\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\t\tfeaturePath,\n\t\t\t'Invalid Blueprint v2 path: must not be empty.'\n\t\t);\n\t}\n\n\tconst hasTargetSitePrefix = path.startsWith('site:');\n\tconst pathWithinSite = hasTargetSitePrefix\n\t\t? path.slice('site:'.length)\n\t\t: path;\n\tif (!hasTargetSitePrefix && pathWithinSite === '/wordpress') {\n\t\treturn '/wordpress';\n\t}\n\tconst candidatePath =\n\t\t!hasTargetSitePrefix && pathWithinSite.startsWith('/wordpress/')\n\t\t\t? pathWithinSite\n\t\t\t: joinPaths('/wordpress', pathWithinSite);\n\tconst resolvedPath = resolvePathUnder(candidatePath, '/wordpress');\n\tif (!resolvedPath) {\n\t\tthrow new UnsupportedBlueprintV2FeatureError(\n\t\t\tfeaturePath,\n\t\t\t`Invalid Blueprint v2 path \"${path}\": must stay within the target WordPress root.`\n\t\t);\n\t}\n\treturn resolvedPath;\n}\n\n/**\n * Checks whether a string is an HTTP(S) URL rather than a WordPress.org slug or\n * a Blueprint execution-context path.\n */\nfunction isHttpUrl(value: string) {\n\ttry {\n\t\tconst url = new URL(value);\n\t\treturn url.protocol === 'http:' || url.protocol === 'https:';\n\t} catch {\n\t\treturn false;\n\t}\n}\n\n/** Checks whether a file reference names the mutable target-site filesystem. */\nfunction isTargetSitePath(value: string) {\n\treturn value.startsWith('site:');\n}\n\n/**\n * Checks whether a string points at a file in the Blueprint Execution Context.\n */\nfunction isExecutionContextPath(value: string) {\n\t// The Blueprint v2 schema defines both \"./\" and \"/\" as paths in the\n\t// Blueprint Execution Context. \"/\" is chrooted there, not in WordPress.\n\treturn (\n\t\t(value.startsWith('./') || value.startsWith('/')) &&\n\t\t!pathContainsParentDirectorySegment(\n\t\t\tnormalizeExecutionContextPath(value)\n\t\t)\n\t);\n}\n\n/**\n * Removes the execution-context marker so v1 bundled resources can resolve the\n * path relative to the bundle root.\n */\nfunction normalizeExecutionContextPath(path: string) {\n\treturn path.replace(/^\\.?\\//, '');\n}\n\n/**\n * Rejects parent-directory traversal before a v2 path is converted to a v1 VFS\n * or bundled-resource path.\n */\nfunction pathContainsParentDirectorySegment(path: string) {\n\tconst vfsPath = path.startsWith('site:')\n\t\t? path.slice('site:'.length)\n\t\t: path;\n\treturn vfsPath.replace(/\\\\/g, '/').split('/').includes('..');\n}\n\n/**\n * Converts a WordPress.org slug, optionally with `@version`, to the v1 resource\n * shape that the existing plugin/theme installers already consume.\n */\nfunction wordpressOrgResource(\n\treference: string,\n\ttype: 'plugins' | 'themes'\n): FileReference {\n\tconst { slug, version } = splitWordPressOrgVersionSuffix(reference);\n\tif (version && version !== 'latest') {\n\t\tconst singular = type === 'plugins' ? 'plugin' : 'theme';\n\t\treturn {\n\t\t\tresource: 'url',\n\t\t\turl: `https://downloads.wordpress.org/${singular}/${slug}.${version}.zip`,\n\t\t};\n\t}\n\treturn {\n\t\tresource:\n\t\t\ttype === 'plugins'\n\t\t\t\t? 'wordpress.org/plugins'\n\t\t\t\t: 'wordpress.org/themes',\n\t\tslug,\n\t} as FileReference;\n}\n\n/**\n * Splits only the optional `@version` suffix defined by Blueprint v2. The slug\n * itself stays opaque so future WordPress.org slug formats keep working.\n */\nfunction splitWordPressOrgVersionSuffix(reference: string) {\n\tconst separatorIndex = reference.lastIndexOf('@');\n\tif (separatorIndex === -1) {\n\t\treturn { slug: reference };\n\t}\n\n\tconst version = reference.slice(separatorIndex + 1);\n\tif (!isSupportedWordPressOrgReferenceVersion(version)) {\n\t\treturn { slug: reference };\n\t}\n\n\treturn {\n\t\tslug: reference.slice(0, separatorIndex),\n\t\tversion,\n\t};\n}\n\nfunction isSupportedWordPressOrgReferenceVersion(version: string) {\n\treturn version === 'latest' || /^\\d+\\.\\d+(?:\\.\\d+)?$/.test(version);\n}\n\n/**\n * Detects v2 inline file references.\n */\nfunction isInlineFile(\n\tvalue: any\n): value is { filename: string; content: string } {\n\treturn (\n\t\tvalue &&\n\t\ttypeof value === 'object' &&\n\t\ttypeof value.filename === 'string' &&\n\t\ttypeof value.content === 'string'\n\t);\n}\n\n/**\n * Detects v2 inline directory references.\n */\nfunction isInlineDirectory(value: any): value is {\n\tdirectoryName: string;\n\tfiles: Record<string, string | BlueprintV2InlineDirectory>;\n} {\n\treturn (\n\t\tvalue &&\n\t\ttypeof value === 'object' &&\n\t\ttypeof value.directoryName === 'string' &&\n\t\tvalue.files &&\n\t\ttypeof value.files === 'object'\n\t);\n}\n\n/**\n * Detects v2 git directory references.\n */\nfunction isGitPath(value: any): value is {\n\tgitRepository: string;\n\tref?: string;\n\tpathInRepository?: string;\n\tpath?: string;\n} {\n\treturn (\n\t\tvalue &&\n\t\ttypeof value === 'object' &&\n\t\ttypeof value.gitRepository === 'string'\n\t);\n}\n\n/**\n * Converts v2 inline directory contents to the recursive file-tree object used\n * by v1 literal directory resources.\n *\n * File names come from user input, so `Object.defineProperty()` is used instead\n * of normal assignment. That keeps names such as `__proto__` as file entries\n * instead of letting JavaScript treat them as object-prototype operations.\n */\nfunction inlineDirectoryFilesToFileTree(\n\tfiles: Record<string, string | BlueprintV2InlineDirectory>\n): FileTree {\n\tconst fileTree: FileTree = {};\n\tfor (const [path, content] of Object.entries(files)) {\n\t\tconst value =\n\t\t\ttypeof content === 'string'\n\t\t\t\t? content\n\t\t\t\t: inlineDirectoryFilesToFileTree(content.files);\n\t\tObject.defineProperty(fileTree, path, {\n\t\t\tvalue,\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\t\t\twritable: true,\n\t\t});\n\t}\n\treturn fileTree;\n}\n","import {\n\tFetchFilesystem,\n\tInMemoryFilesystem,\n\tOverlayFilesystem,\n\tChrootFilesystem,\n\tZipFilesystem,\n} from '@wp-playground/storage';\nimport { basename, dirname, normalizePath } from '@php-wasm/util';\nimport type { BlueprintBundle } from './types';\n\nexport class BlueprintFetchError extends Error {\n\tpublic readonly url: string;\n\n\tconstructor(message: string, url: string, options?: ErrorOptions) {\n\t\tsuper(message, options);\n\t\tthis.name = 'BlueprintFetchError';\n\t\tthis.url = url;\n\t}\n}\n\nexport interface ResolveRemoteBlueprintOptions {\n\tfetch?: typeof fetch;\n\tcorsProxy?: string;\n}\n\n/**\n * Resolves a remote blueprint from a URL.\n *\n * @param url - The URL of the blueprint to resolve.\n * @returns A promise that resolves to the resolved blueprint.\n */\nexport async function resolveRemoteBlueprint(\n\turl: string,\n\toptions: ResolveRemoteBlueprintOptions = {}\n): Promise<BlueprintBundle> {\n\tlet blueprintBytes: ArrayBuffer;\n\ttry {\n\t\tconst fetchBlueprint = options.fetch || fetch;\n\t\tconst response = await fetchBlueprint(url, {\n\t\t\tcredentials: 'omit',\n\t\t});\n\t\tif (!response.ok) {\n\t\t\tthrow new Error(`Failed to fetch blueprint from ${url}`);\n\t\t}\n\t\tblueprintBytes = await response.arrayBuffer();\n\t} catch (error) {\n\t\tthrow new BlueprintFetchError(\n\t\t\t`Blueprint file could not be resolved from ${url}: ${error instanceof Error ? error.message : String(error)}`,\n\t\t\turl,\n\t\t\t{ cause: error }\n\t\t);\n\t}\n\n\ttry {\n\t\tconst blueprintText = new TextDecoder().decode(blueprintBytes);\n\t\tJSON.parse(blueprintText);\n\n\t\t// No exceptions, good! We're dealing with a JSON file. Let's\n\t\t// resolve the \"bundled\" resources from the same remote URL.\n\t\treturn new OverlayFilesystem([\n\t\t\tnew InMemoryFilesystem({\n\t\t\t\t'blueprint.json': blueprintText,\n\t\t\t}),\n\t\t\tnew FetchFilesystem({\n\t\t\t\tbaseUrl: url,\n\t\t\t\tcorsProxy: options.corsProxy,\n\t\t\t}),\n\t\t]);\n\t} catch (error) {\n\t\t// If the blueprint is not a JSON file, check if it's a ZIP file.\n\t\tif (await looksLikeZipFile(blueprintBytes)) {\n\t\t\treturn createBlueprintBundleFromZip(blueprintBytes);\n\t\t}\n\t\tthrow new Error(\n\t\t\t`Blueprint file at ${url} is neither a valid JSON nor a ZIP file.`,\n\t\t\t{ cause: error }\n\t\t);\n\t}\n}\n\n/**\n * Locates blueprint.json inside a zip archive.\n *\n * 1. Checks for blueprint.json at the root.\n * 2. If not found, looks for a single top-level directory (ignoring\n *    __MACOSX) and checks for blueprint.json inside it.\n * 3. Throws if there are multiple top-level directories or no\n *    blueprint.json is found.\n */\nfunction findBlueprintJsonPath(entryPaths: string[]): string {\n\tconst normalized = entryPaths.map((p) => normalizePath(p));\n\n\tif (\n\t\tnormalized.some(\n\t\t\t(p) => basename(p) === 'blueprint.json' && dirname(p) === ''\n\t\t)\n\t) {\n\t\treturn 'blueprint.json';\n\t}\n\n\tconst topLevelDirs = new Set<string>();\n\tfor (const p of normalized) {\n\t\tconst dir = p.split('/')[0];\n\t\tif (dir && dir !== basename(p)) {\n\t\t\t// Entry is inside a directory — record the top-level dir.\n\t\t\tif (dir !== '__MACOSX') {\n\t\t\t\ttopLevelDirs.add(dir);\n\t\t\t}\n\t\t}\n\t}\n\n\tif (topLevelDirs.size > 1) {\n\t\tthrow new Error(\n\t\t\t'ZIP contains multiple top-level directories. ' +\n\t\t\t\t'Bundle ZIPs must contain blueprint.json at the root ' +\n\t\t\t\t'or inside a single top-level directory.'\n\t\t);\n\t}\n\n\tif (topLevelDirs.size === 1) {\n\t\tconst dir = [...topLevelDirs][0];\n\t\tconst candidate = `${dir}/blueprint.json`;\n\t\tif (normalized.includes(candidate)) {\n\t\t\treturn candidate;\n\t\t}\n\t}\n\n\tthrow new Error(\n\t\t'ZIP does not contain a blueprint.json. ' +\n\t\t\t'Place blueprint.json at the ZIP root or inside a ' +\n\t\t\t'single top-level directory.'\n\t);\n}\n\n/**\n * Creates a BlueprintBundle from a zip ArrayBuffer. Locates\n * blueprint.json at the root or inside a single top-level directory.\n */\nasync function createBlueprintBundleFromZip(\n\tarrayBuffer: ArrayBuffer\n): Promise<BlueprintBundle> {\n\tconst zipFs = ZipFilesystem.fromArrayBuffer(arrayBuffer);\n\tconst entryPaths = await zipFs.getAllFilePaths();\n\tconst blueprintPath = findBlueprintJsonPath(entryPaths);\n\tconst dir = dirname(blueprintPath);\n\treturn dir === '' ? zipFs : new ChrootFilesystem(dir, zipFs);\n}\n\nasync function looksLikeZipFile(bytes: ArrayBuffer): Promise<boolean> {\n\tif (bytes.byteLength < 4) {\n\t\treturn false;\n\t}\n\tconst filePrefix = new Uint8Array(bytes, 0, 4);\n\t// Check against the signature for non-empty, non-spanned zip files.\n\tconst matchesZipSignature =\n\t\tfilePrefix[0] === 0x50 &&\n\t\tfilePrefix[1] === 0x4b &&\n\t\tfilePrefix[2] === 0x03 &&\n\t\tfilePrefix[3] === 0x04;\n\treturn matchesZipSignature;\n}\n","import { BlueprintReflection } from './reflection';\nimport type { Blueprint, RuntimeConfiguration } from './types';\nimport { compileBlueprintV1 } from './v1/compile';\nimport type { BlueprintV1 } from './v1/types';\nimport {\n\tresolveBlueprintV2RuntimeConfiguration,\n\ttype BlueprintV2SiteMode,\n} from './v2/resolve-runtime-configuration';\n\nexport type ResolveRuntimeConfigurationOptions = {\n\t/** Determines whether WordPress is selected for download or checked in place. */\n\tsiteMode?: BlueprintV2SiteMode;\n};\n\n/**\n * Resolves the runtime settings required before executing a Blueprint.\n *\n * Blueprint v1 settings come from its compiled form. Blueprint v2 settings are\n * delegated to the v2 runtime configuration resolver. Existing-site mode\n * validates WordPress constraints without selecting a release to download.\n */\nexport async function resolveRuntimeConfiguration(\n\tblueprint: Blueprint,\n\toptions: ResolveRuntimeConfigurationOptions = {}\n): Promise<RuntimeConfiguration> {\n\tconst reflection = await BlueprintReflection.create(blueprint);\n\tif (reflection.getVersion() === 1) {\n\t\tconst compiledBlueprint = await compileBlueprintV1(\n\t\t\tblueprint as BlueprintV1\n\t\t);\n\n\t\treturn {\n\t\t\twpVersion: compiledBlueprint.versions.wp,\n\t\t\tphpVersion: compiledBlueprint.versions.php,\n\t\t\tintl: compiledBlueprint.features.intl,\n\t\t\tnetworking: compiledBlueprint.features.networking,\n\t\t\textraLibraries: compiledBlueprint.extraLibraries,\n\t\t\t/*\n\t\t\t * Constants don't matter so much for temporary sites so let's\n\t\t\t * use an empty object here. We can't easily figure out which\n\t\t\t * additional constants were applied via playground.defineConstant()\n\t\t\t * at this stage anyway.\n\t\t\t *\n\t\t\t * This property is only relevant for stored sites to ensure they're\n\t\t\t * consistently applied across page reloads.\n\t\t\t */\n\t\t\tconstants: {},\n\t\t};\n\t}\n\n\treturn resolveBlueprintV2RuntimeConfiguration(\n\t\treflection.getDeclaration(),\n\t\toptions.siteMode\n\t);\n}\n","import type { UniversalPHP } from '@php-wasm/universal';\nimport type { Blueprint, BlueprintBundle, BlueprintDeclaration } from './types';\nimport { getBlueprintDeclaration } from './reflection';\nimport {\n\tcompileBlueprintV1,\n\ttype CompileBlueprintV1Options,\n\ttype CompiledBlueprintV1,\n\tisBlueprintBundle,\n} from './v1/compile';\nimport type { BlueprintV1Declaration } from './v1/types';\nimport type { BlueprintV2Declaration } from './v2/blueprint-v2-declaration';\nimport { compileBlueprintV2, type CompiledBlueprintV2 } from './v2/compile';\nimport type { ResolveRuntimeConfigurationOptions } from './resolve-runtime-configuration';\n\nexport type BlueprintExecutionPath = 'v1' | 'v2';\n\nexport type CompiledBlueprintForExecution =\n\t| {\n\t\t\tversion: 1;\n\t\t\tdeclaration: BlueprintV1Declaration;\n\t\t\tcompiled: CompiledBlueprintV1;\n\t\t\trun: (playground: UniversalPHP) => Promise<void>;\n\t  }\n\t| {\n\t\t\tversion: 2;\n\t\t\tdeclaration: BlueprintV2Declaration;\n\t\t\tcompiled: CompiledBlueprintV2;\n\t\t\trun: (playground: UniversalPHP) => Promise<void>;\n\t  };\n\nexport interface CompileBlueprintForExecutionOptions\n\textends\n\t\tOmit<\n\t\t\tCompileBlueprintV1Options,\n\t\t\t'onBlueprintValidated' | 'streamBundledFile'\n\t\t>,\n\t\tResolveRuntimeConfigurationOptions {\n\tonBlueprintValidated?: (blueprint: BlueprintDeclaration) => void;\n}\n\ntype BlueprintExecutionInput = Blueprint | BlueprintBundle | string;\n\n/**\n * Compiles a Blueprint into the shape consumers need before execution.\n *\n * The legacy `compileBlueprint()` export intentionally remains v1-only for\n * backwards compatibility. This helper is the version-aware entrypoint that\n * newer callers can migrate to as Blueprint v2 support grows.\n */\nexport async function compileBlueprintForExecution(\n\tinput: BlueprintExecutionInput,\n\toptions: CompileBlueprintForExecutionOptions = {}\n): Promise<CompiledBlueprintForExecution> {\n\tconst isRawJsonInput = typeof input === 'string';\n\tconst declaration = await getBlueprintDeclaration(input);\n\tif (isBlueprintV2Declaration(declaration)) {\n\t\treturn compileBlueprintV2ForExecution(\n\t\t\tisRawJsonInput ? declaration : input,\n\t\t\tdeclaration,\n\t\t\toptions\n\t\t);\n\t}\n\tif (isRawJsonInput) {\n\t\tthrow new Error(\n\t\t\t'Raw JSON input is only supported for Blueprint v2 declarations.'\n\t\t);\n\t}\n\treturn compileBlueprintV1ForExecution(input, declaration, options);\n}\n\nasync function compileBlueprintV2ForExecution(\n\tinput: Blueprint | BlueprintBundle,\n\tdeclaration: BlueprintV2Declaration,\n\toptions: CompileBlueprintForExecutionOptions\n): Promise<CompiledBlueprintForExecution> {\n\tconst compiled = await compileBlueprintV2(declaration, {\n\t\tprogress: options.progress,\n\t\tstreamBundledFile: isBlueprintBundle(input)\n\t\t\t? (...args: [any]) => input.read(...args)\n\t\t\t: undefined,\n\t\tsiteMode: options.siteMode,\n\t\tonBlueprintValidated: options.onBlueprintValidated,\n\t});\n\treturn {\n\t\tversion: 2,\n\t\tdeclaration,\n\t\tcompiled,\n\t\trun: compiled.run,\n\t};\n}\n\nasync function compileBlueprintV1ForExecution(\n\tinput: Blueprint | BlueprintBundle,\n\tdeclaration: BlueprintV1Declaration,\n\toptions: CompileBlueprintForExecutionOptions\n): Promise<CompiledBlueprintForExecution> {\n\tconst compileInput = isBlueprintBundle(input) ? input : declaration;\n\tconst compiled = await compileBlueprintV1(compileInput, {\n\t\t...options,\n\t\tonBlueprintValidated: options.onBlueprintValidated as\n\t\t\t| CompileBlueprintV1Options['onBlueprintValidated']\n\t\t\t| undefined,\n\t});\n\treturn {\n\t\tversion: 1,\n\t\tdeclaration,\n\t\tcompiled,\n\t\trun: compiled.run,\n\t};\n}\n\nfunction isBlueprintV2Declaration(\n\tdeclaration: BlueprintDeclaration\n): declaration is BlueprintV2Declaration {\n\treturn (declaration as { version?: unknown }).version === 2;\n}\n","export type {\n\tBlueprintV1,\n\tBlueprintV1Declaration,\n\tPHPConstants,\n\tExtraLibrary,\n} from './lib/v1/types';\nexport type {\n\tBlueprint,\n\tBlueprintBundle,\n\tBlueprintDeclaration,\n\tRuntimeConfiguration,\n} from './lib/types';\nexport { BlueprintReflection } from './lib/reflection';\nexport {\n\tgetBlueprintDeclaration,\n\tisBlueprintBundle,\n\tcompileBlueprintV1,\n\trunBlueprintV1Steps,\n\tInvalidBlueprintError,\n\tBlueprintStepExecutionError,\n\tvalidateBlueprint,\n\n\t// BC:\n\tcompileBlueprintV1 as compileBlueprint,\n\trunBlueprintV1Steps as runBlueprintSteps,\n\tisStepDefinition,\n} from './lib/v1/compile';\nexport type {\n\tCompileBlueprintV1Options,\n\tCompiledBlueprintV1,\n\tCompiledV1Step,\n\tOnStepCompleted,\n\tBlueprintValidationResult,\n} from './lib/v1/compile';\nexport { validateBlueprintDeclaration } from './lib/validate-blueprint-declaration';\nexport type {\n\tCachedResource,\n\tCorePluginReference,\n\tCorePluginResource,\n\tCoreThemeReference,\n\tCoreThemeResource,\n\tFetchResource,\n\tFileReference,\n\tLiteralReference,\n\tLiteralResource,\n\tResource,\n\tResourceDecorator,\n\tResourceTypes,\n\tSemaphoreResource,\n\tUrlReference,\n\tUrlResource,\n\tVFSReference,\n\tVFSResource,\n} from './lib/v1/resources';\nexport {\n\tBlueprintFilesystemRequiredError,\n\tResourceDownloadError,\n} from './lib/v1/resources';\nexport * from './lib/steps';\nexport * from './lib/steps/handlers';\nexport type {\n\tBlueprintV2,\n\tBlueprintV2Declaration,\n} from './lib/v2/blueprint-v2-declaration';\nexport {\n\tcompileBlueprintV2,\n\tcreateBlueprintV2ExecutionPlan,\n\tresolveBlueprintV2WordPressSource,\n} from './lib/v2/compile';\nexport type {\n\tCompiledBlueprintV2,\n\tCompileBlueprintV2Options,\n\tResolveBlueprintV2WordPressSourceOptions,\n} from './lib/v2/compile';\n\nexport {\n\tresolveRemoteBlueprint,\n\tBlueprintFetchError,\n} from './lib/resolve-remote-blueprint';\nexport type { ResolveRemoteBlueprintOptions } from './lib/resolve-remote-blueprint';\nexport { wpContentFilesExcludedFromExport } from './lib/utils/wp-content-files-excluded-from-exports';\nexport { resolveRuntimeConfiguration } from './lib/resolve-runtime-configuration';\nexport type { ResolveRuntimeConfigurationOptions } from './lib/resolve-runtime-configuration';\nexport { assertBlueprintV2WordPressVersionCompatibility } from './lib/v2/resolve-runtime-configuration';\nexport type { BlueprintV2SiteMode } from './lib/v2/resolve-runtime-configuration';\nexport { compileBlueprintForExecution } from './lib/compile';\nexport type {\n\tBlueprintExecutionPath,\n\tCompiledBlueprintForExecution,\n\tCompileBlueprintForExecutionOptions,\n} from './lib/compile';\n\n/**\n * @deprecated This function is a no-op. Playground no longer uses a proxy to download plugins and themes.\n *             To be removed in v0.3.0\n */\nexport function setPluginProxyURL() {}\n"],"names":["isBlueprintBundle","input","getBlueprintDeclaration","blueprint","declaration","blueprintText","BlueprintReflection","bundle","version","zipNameToHumanName","zipName","mixedCaseName","BUNDLED_RESOURCE_ERROR_MESSAGE","BlueprintFilesystemRequiredError","message","ResourceDownloadError","url","options","ResourceTypes","isResourceReference","ref","isGithubProxyUrl","rewriteGithubProxyUrl","parsed","pathAsUrl","params","repo","release","asset","releasePath","refType","pr","commit","branch","directory","Resource","value","playground","semaphore","progress","corsProxy","streamBundledFile","gitAdditionalHeadersCallback","rewritten","resource","VFSResource","LiteralResource","CoreThemeResource","CorePluginResource","UrlResource","GitDirectoryResource","LiteralDirectoryResource","BundledResource","innerResource","ZipResource","SemaphoreResource","CachedResource","ResourceDecorator","_progress","buffer","_a","FetchResource","response","fetchWithCorsProxy","_b","cloneResponseMonitorProgress","_c","noop","filename","parseContentDisposition","e","contentDisposition","filenameMatch","encodedMatch","match","reference","additionalHeaders","repoUrl","commitHash","resolveCommitHash","allFiles","listGitFiles","requestedPath","filesToClone","listDescendantFiles","checkout","sparseCheckout","files","mapKeys","name","createDotGitDirectory","error","GitAuthenticationError","randomFilename","segment","obj","fn","key","toDirectoryZipName","rawInput","file","length","progressStream","cloneStreamMonitorProgress","event","StreamedFile","innerResult","fileTreeToFiles","zipStream","encodeZip","zipFile","collectFile","innerName","tree","baseName","traverse","node","currentPath","fullPath","activatePlugin","pluginPath","pluginName","docroot","activationLogPath","joinPaths","randomString","activationLog","activatePluginResult","isFileNotFoundError","logger","rawStatus","details","wpOutput","EMSCRIPTEN_ENOENT","fileSystemError","activateTheme","themeFolderName","themeFolderPath","result","runPHP","code","phpCodeString","runPHPWithOptions","rm","path","streamClassContent","runSql","sql","sqlFilename","streamClassFilename","js","phpVars","runPhp","request","defineWpConfigConsts","consts","method","defineBeforeRun","documentRoot","wpConfigPath","defineWpConfigConstants","setSiteOptions","php","phpVar","updateUserMeta","meta","userId","defaultWpCliPath","defaultWpCliResource","assertWpCli","wpCliPath","wpCLI","command","args","splitShellCommand","rewrotePaths","argsWithRewrittenPaths","arg","mode","quote","parts","currentPart","i","char","enableMultisite","errorMessage","sitePath","siteUrl","wpConfig","newWpConfig","cp","fromPath","toPath","mv","mkdir","rmdir","writeFile","data","writeFiles","writeToPath","filesTree","writeFilesToPhpWasm","defineSiteUrl","importWxr","fetchAttachments","rewriteUrls","urlMapping","importComments","defaultAuthorUsername","authorsMode","authorsMap","importUsers","fallbackAuthorUsername","importWithDefaultImporter","importThemeStarterContent","themeSlug","unzip","zipPath","extractToPath","unzipFile","wpContentFilesExcludedFromExport","importWordPressFiles","wordPressFilesZip","pathInZip","unzipRoot","importPath","findWordPressFilesRoot","manifestPath","oldSiteUrl","manifestContent","importedWpContentPath","wpContentPath","relativePath","excludedImportPath","removePath","restoreFromPath","dirname","importedDatabasePath","importedFilenames","fileName","ensureWpConfig","newSiteUrl","inferSiteUrlFromDatabase","upgradePhp","replaceSiteUrl","extractScopePath","oldScopePath","newScopePath","WORDPRESS_ROOT_MARKERS","hasWordPressRootMarker","fileNames","nestedPath","marker","exportWXR","databaseExportResponse","installAsset","targetPath","ifAlreadyInstalled","targetFolderName","assetNameGuess","wpContent","tmpDir","tmpUnzippedFilesPath","zipHasRootFolder","assetFolderName","tmpAssetPath","assetFolderPath","ACTIVATION_OPTIONS_PAYLOAD_PREFIX","installPlugin","pluginData","pluginZipFile","assetPath","assetNiceName","progressName","looksLikeZipFile","filePrefix","pluginsDirectoryPath","zipFileName","assetResult","destinationFilePath","pluginDirectoryPath","activationOptionName","setPluginActivationOptions","deletePluginActivationOptions","skippedPluginName","activationOptions","payload","parseActivationOptionsPayload","optionName","text","output","payloadIndex","installTheme","themeData","themeZipFile","onError","basename","themeDirectoryPath","shouldWriteThemeFiles","skippedThemeName","login","username","resetData","contentTypes","removeAllPostTypes","postTypes","postType","removePosts","removeComments","runWpInstallationWizard","zipWpContent","selfContained","exceptPaths","additionalPaths","runPhpWithZipFunctions","fileBuffer","zipFunctions","getWordPressTranslationUrl","wpVersion","language","languageTranslation","translation","setSiteLanguage","translations","plugins","slug","themes","fetchQueue","Semaphore","translationsQueue","type","destination","schema12","schema19","func2","schema16","schema17","validate13","instancePath","parentData","parentDataProperty","rootData","vErrors","errors","_errs0","valid0","_errs1","err0","err1","_valid0","_errs4","err2","err3","_errs7","err4","err5","err6","validate12","_errs2","wrapper0","validate16","schema30","validate19","missing0","key0","data0","_errs6","data3","_errs8","_errs11","_errs13","schema32","wrapper1","validate22","_errs3","valid1","_errs5","validate21","validate18","validate17","data1","valid2","_errs9","missing1","_errs12","key1","err7","data2","err8","err9","valid4","_errs15","err10","data4","_errs17","_errs18","valid5","_errs19","err11","_valid1","_errs21","missing2","err12","_errs23","key2","data5","_errs24","err13","valid6","data6","_errs26","err14","valid7","data7","_errs28","missing3","err15","_errs30","key3","err16","data8","err17","err18","data9","_errs33","err19","data10","_errs35","err20","data11","_errs37","err21","err22","err23","err24","_errs39","missing4","err25","_errs42","key4","err26","data12","_errs43","err27","err28","valid10","_errs45","err29","err30","_errs47","missing5","err31","_errs50","key5","err32","data14","_errs51","err33","err34","valid12","_errs53","err35","err36","_errs55","missing6","err37","_errs58","key6","err38","data16","_errs59","err39","err40","valid14","_errs61","err41","_errs63","err42","err43","_errs65","missing7","err44","_errs68","key7","err45","data19","_errs69","err46","err47","valid16","_errs71","err48","err49","_errs73","err50","schema33","schema34","schema35","schema37","validate37","valid3","_errs14","_errs20","_errs22","_errs29","_errs31","_errs38","valid9","_errs40","_errs44","data13","valid11","data15","_errs49","data17","_errs54","data18","_errs56","_errs60","_errs62","data20","valid13","data22","_errs67","valid8","schema39","validate39","validate28","tag0","_errs10","_errs16","_errs34","_errs46","data21","data23","_errs64","_errs66","_errs70","key9","data25","key10","data26","_errs74","_errs76","valid15","data28","_errs78","_errs80","_errs84","key11","data30","_errs85","_errs87","key12","data31","_errs88","valid19","_errs90","valid18","data33","_errs92","_errs94","_errs98","key13","data35","_errs99","_errs101","key14","data36","_errs102","valid22","_errs104","valid21","data38","_errs106","_errs108","_errs109","_errs111","data42","_errs113","key15","_errs116","valid23","_errs118","_errs120","data46","_errs122","data47","_errs124","key16","_errs127","valid24","_errs129","data50","_errs131","missing8","_errs135","key17","data51","_errs136","_errs138","key18","data52","_errs139","valid27","_errs141","valid26","data54","_errs143","_errs145","missing9","_errs149","key19","data56","_errs150","_errs152","key20","data57","_errs153","valid30","_errs155","valid29","data59","_errs157","_errs159","_errs160","missing10","_errs164","key21","data62","_errs165","_errs167","key22","data63","_errs168","valid33","_errs170","valid32","data65","_errs172","data66","_errs174","data67","_errs176","_errs177","valid34","_errs178","_errs179","_errs180","data69","_errs181","_errs184","key23","_errs185","valid36","data71","_errs187","data73","_errs191","_errs193","_errs195","missing11","_errs199","key25","data76","_errs200","_errs202","key26","data77","_errs203","valid40","_errs205","valid39","data79","_errs207","data80","_errs209","data81","_errs211","_errs212","valid41","_errs213","_errs214","_errs215","data83","_errs216","_errs219","key27","_errs220","valid43","_errs222","data86","_errs224","_errs226","_errs228","missing12","_errs232","key28","data89","_errs233","_errs235","key29","data90","_errs236","valid46","_errs238","valid45","data92","_errs240","_errs242","_errs244","missing13","_errs248","key30","data95","_errs249","_errs251","key31","data96","_errs252","valid49","_errs254","valid48","data98","_errs256","_errs258","missing14","_errs262","key32","data100","_errs263","_errs265","key33","data101","_errs266","valid52","_errs268","valid51","data103","_errs270","_errs272","_errs274","missing15","_errs278","key34","data106","_errs279","_errs281","key35","data107","_errs282","valid55","_errs284","valid54","data109","_errs286","data110","_errs288","valid56","len0","i0","data111","_errs290","missing16","_errs294","key36","data112","_errs295","_errs297","key37","data113","_errs298","valid59","_errs300","valid58","data115","_errs302","_errs304","missing17","_errs307","key38","data117","_errs308","_errs310","key39","data118","_errs311","valid62","_errs313","valid61","data120","_errs315","_errs317","missing18","_errs321","key40","data122","_errs322","_errs324","key41","data123","_errs325","valid65","_errs327","valid64","data125","_errs329","_errs331","missing19","_errs335","key42","data127","_errs336","_errs338","key43","data128","_errs339","valid68","_errs341","valid67","data130","_errs343","data131","_errs345","_errs346","valid69","_errs347","_valid2","_errs349","missing20","_errs351","key44","_errs352","valid70","_errs354","missing21","_errs358","key45","data134","_errs359","_errs361","key46","data135","_errs362","valid73","_errs364","valid72","data137","_errs366","_errs368","missing22","_errs371","key47","data139","_errs372","_errs374","key48","data140","_errs375","valid76","_errs377","valid75","data142","_errs379","data143","_errs381","_errs384","key49","_errs385","valid78","_errs387","missing23","_errs391","key50","data146","_errs392","_errs394","key51","data147","_errs395","valid81","_errs397","valid80","data149","_errs399","_errs401","missing24","_errs404","key52","data151","_errs405","_errs407","key53","data152","_errs408","valid84","_errs410","valid83","data154","_errs412","data155","_errs414","missing25","_errs420","key55","data157","_errs421","_errs423","key56","data158","_errs424","valid88","_errs426","valid87","data160","_errs428","_errs430","_errs431","_errs433","missing26","_errs437","key57","data164","_errs438","_errs440","key58","data165","_errs441","valid91","_errs443","valid90","data167","_errs445","data168","_errs447","data170","_errs451","missing27","_errs455","key60","data171","_errs456","_errs458","key61","data172","_errs459","valid95","_errs461","valid94","data174","_errs463","_errs465","data176","_errs467","_errs468","valid96","_errs469","_valid3","_errs470","_errs472","missing28","_errs474","key62","data177","_errs475","valid97","data178","_errs477","valid98","data179","_errs479","missing29","_errs481","key63","data180","data181","_errs484","data182","_errs486","data183","_errs488","missing30","_errs492","key64","data184","_errs493","_errs495","key65","data185","_errs496","valid102","_errs498","valid101","data187","_errs500","_errs502","_errs504","missing31","_errs507","key66","data190","_errs508","_errs510","key67","data191","_errs511","valid105","_errs513","valid104","data193","_errs515","data194","_errs517","_errs518","valid106","_errs519","_valid4","_errs521","valid107","len1","i1","_errs523","_errs525","missing32","_errs529","key68","data197","_errs530","_errs532","key69","data198","_errs533","valid110","_errs535","valid109","data200","_errs537","_errs539","validate11","_errs25","_errs27","len2","i2","_errs57","valid17","len3","i3","data27","_errs81","_errs82","_errs83","_errs89","_errs91","validate10","seemsLikeGitRepoUrl","normalizedUrl","InvalidBlueprintError","validationErrors","otherStepHandlers","allStepHandlers","keyedStepHandlers","BlueprintStepExecutionError","stepNumber","step","cause","causeError","baseMessage","fullMessage","line","compileBlueprintV1","finalOptions","compileBlueprintJson","ProgressTracker","onStepCompleted","onBlueprintValidated","additionalSteps","isStepDefinition","isStepStillSupported","assertNoWordPressFeatures","steps","indexOfStepThatDependsOnWpCli","wpCliInstallStep","_d","_e","importWxrStepIndex","_f","_g","validationResult","validateBlueprint","formattedErrors","formatValidationErrors","totalProgressWeight","total","compiled","compileStep","compileVersion","_h","AllPHPVersions","LatestSupportedPHPVersion","_i","_j","_k","resources","run","targetUrl","err","index","highlightedSnippet","additionalProperty","pathParts","currentValue","part","offendingValue","valueStr","blueprintMaybe","valid","blueprintValidator","hasErrorsDifferentThanAnyOf","supported","latest","rootProgressTracker","stepProgress","resolveArguments","getResources","asyncResources","evenWeight","argName","resourceMaybe","resolved","runBlueprintV1Steps","compiledBlueprint","WORDPRESS_ONLY_STEPS","offenders","badSteps","validateBlueprintDeclaration","isBlueprintV2Candidate","validateBlueprintV2Declaration","V2_WORDPRESS_VERSION_LABELS","CUSTOM_WORDPRESS_VERSION","V2_WORDPRESS_VERSION_PATTERN","V2_PHP_CONSTRAINT_CANDIDATES","phpVersion","resolveBlueprintV2RuntimeConfiguration","siteMode","isBlueprintV2Declaration","assertValidBlueprintV2Declaration","playgroundOptions","resolveV2WordPressVersion","resolveV2PHPVersion","assertBlueprintV2WordPressVersionCompatibility","installedVersion","wordpressVersion","isV2WordPressVersionConstraint","assertV2WordPressVersionConstraintSemantics","isV2WordPressVersionWithinConstraints","throwV2WordPressVersionCompatibilityError","resolveV2PHPVersionString","recommendedVersion","getV2PHPConstraintRecommendedVersion","resolvedRecommendedVersion","isV2PHPVersionWithinConstraints","constrainedVersion","resolveV2PHPConstraintVersion","RecommendedPHPVersion","candidate","constraints","minVersion","normalizeV2PHPConstraintVersion","comparePHPVersions","maxVersion","left","right","leftParts","parsePHPVersion","rightParts","difference","major","minor","patch","selectAvailableRelease","resolveV2WordPressVersionString","resolveV2WordPressConstraintVersion","isHttpUrl","isExecutionContextPath","preferredVersion","availableVersions","getAvailableV2WordPressVersions","preferredVersions","doesV2WordPressVersionMatchExpression","compatiblePreferredVersion","assertV2WordPressVersionConstraint","assertV2ComparableWordPressConstraintVersion","doesV2WordPressVersionExpressionSatisfyConstraints","versions","getWordPressStableVersions","normalizeV2AvailableWordPressVersion","parseComparableWordPressVersion","betaRelease","resolveWordPressRelease","isComparableWordPressVersion","compareWordPressVersions","expression","parsedVersion","parsedExpression","parsedMin","minBranch","compareV2WordPressVersionBranches","parsedMax","maxBranch","maxBranchComparison","requirement","assertV2StringWordPressConstraintVersion","leftVersion","rightVersion","suffix","suffixVersion","normalizedSuffix","suffixRank","UnsupportedBlueprintV2FeatureError","featurePath","SITE_CREATION_CONTENT_TYPES","compileBlueprintV2","runtime","plan","createBlueprintV2ExecutionPlan","unsupportedPlan","lowerBlueprintV2ExecutionPlan","v1Blueprint","createV1BlueprintForLoweredV2Steps","getUnsupportedPlanMessage","resolveBlueprintV2WordPressSource","source","getCustomWordPressDataReference","resourceReference","convertV2DataReferenceToV1","isDirectoryReference","applicationOptions","item","getUnsupportedPlanItemPath","getUnsupportedPlanItemName","contentBaseline","preservedContent","getPreservedContentTypes","contentType","muPlugin","theme","plugin","media","content","context","planItem","loweredSteps","lowerBlueprintV2ExecutionPlanItem","addProgressMetadata","caption","getProgressCaption","weight","getContentProgressCaption","getAdditionalStepProgressCaption","assertNever","getRemovedContentTypes","lowerUsersBaseline","createInstallThemeStep","createInstallPluginStep","lowerMuPlugin","lowerFonts","lowerMediaItems","createRolesStep","createUsersStep","lowerPostTypes","lowerBlueprintV2Content","lowerAdditionalBlueprintV2Step","asArray","convertV2FileDataReferenceToV1","lowerBlueprintV2WxrContent","lowerPostsContent","toPlaygroundPath","lowerImportContentStep","lowerImportMediaStep","lowerRunPHPStep","lowerWriteFilesStep","isInlineFile","phpPath","nextTempFilePath","getMuPluginTargetPath","convertV2WritableDataReferenceToV1","inlinePosts","postFiles","sourceIsArray","sources","sourcePath","isV2FileDataReferenceLike","IMPORT_POSTS_PHP","mediaItems","materializedMedia","definition","fileReferenceBasename","field","IMPORT_MEDIA_PHP","supportFileName","argsPath","createPostTypePluginCode","postTypeArgs","defaultDisplayNameFromSlug","createInlinePostTypePluginCode","roles","DEFINE_ROLES_PHP","users","DEFINE_USERS_PHP","fonts","collections","fontFiles","fileIndex","fontPath","token","materializeFontSource","collection","cloneJson","family","familyIndex","nextFamily","settings","face","faceIndex","nextFace","materializeFontFaceSource","INSTALL_FONTS_PHP","dataReference","nextIndex","normalizeAssetDefinition","createInstallPluginOptions","active","createInstallThemeOptions","isInlineDirectory","isGitPath","normalizeExecutionContextPath","wordpressOrgResource","inlineDirectoryFilesToFileTree","isTargetSitePath","muPluginsPath","gitPathBasename","prefix","extension","pathInRepository","pathContainsParentDirectorySegment","letter","hasTargetSitePrefix","pathWithinSite","candidatePath","resolvedPath","resolvePathUnder","splitWordPressOrgVersionSuffix","separatorIndex","isSupportedWordPressOrgReferenceVersion","fileTree","BlueprintFetchError","resolveRemoteBlueprint","blueprintBytes","OverlayFilesystem","InMemoryFilesystem","FetchFilesystem","createBlueprintBundleFromZip","findBlueprintJsonPath","entryPaths","normalized","p","normalizePath","topLevelDirs","dir","arrayBuffer","zipFs","ZipFilesystem","blueprintPath","ChrootFilesystem","bytes","resolveRuntimeConfiguration","reflection","compileBlueprintForExecution","isRawJsonInput","compileBlueprintV2ForExecution","compileBlueprintV1ForExecution","compileInput","setPluginProxyURL"],"mappings":"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SACCQ,EACA,WACDR,EAAM,aACN,SACCQ,EACA,eACDR,EAAM,aACN,SACCQ,EACA,eACDR,EAAM,SACN,SACCQ,EAAW,UACZ,CACD,MAAMC,EAAQ,CACb,aACChE,EACA,YACD,WACC,sEACD,QAAS,WACT,OAAQ,CACP,gBACC+D,CAChB,EACc,QACC,gCACAA,EACA,GACf,EACiB3D,IAAY,KACfA,EAAU,CAAC4D,CAAK,EAEhB5D,EAAQ,KAAK4D,CAAK,EAEnB3D,GACD,KAAO,CACN,MAAM4D,EAAU5D,EAChB,UAAW6D,KAAQX,EAClB,GACC,EACCW,IACC,qBACDA,IACC,UACDA,IACC,cACDA,IACC,cACDA,IACC,UAED,CACD,IAAIC,EACHZ,EAAMW,CAAI,EACX,MAAME,GACL/D,EACD,GACC,EACC,OAAO8D,GACN,UACD,SACCA,CAClB,GAEiB,CACD,MAAME,EAAQ,CACb,aACCrE,EACA,aACAkE,EACE,QACA,KACA,IACpB,EACoB,QACA,MACA,IACpB,EACiB,WACC,uFACD,QACC,OACD,OAAQ,CACP,KAAM,QACxB,EACiB,QACC,gBAClB,EAEiB9D,IACA,KAEAA,EAAU,CACTiE,CAClB,EAEiBjE,EAAQ,KACPiE,CAClB,EAEgBhE,GACD,CACA,IAAIiE,EACHF,KACA/D,EACD,GAAI,CAACiE,EACJ,KAEF,CAED,GAAIL,IAAY5D,EAAQ,CACvB,GACCkD,EAAM,oBACN,OACC,CACD,IAAIgB,EACHhB,EAAM,kBACP,MAAMiB,EACLnE,EACD,GACC,EACC,OAAOkE,GACN,UACD,SACCA,CAClB,GAEiB,CACD,MAAME,GAAQ,CACb,aACCzE,EACA,8BACD,WACC,+FACD,QACC,OACD,OAAQ,CACP,KAAM,QACxB,EACiB,QACC,gBAClB,EAEiBI,IACA,KAEAA,EAAU,CACTqE,EAClB,EAEiBrE,EAAQ,KACPqE,EAClB,EAEgBpE,GACD,CACA,IAAIqE,EACHF,IACAnE,CACF,KACC,KAAIqE,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCnB,EAAM,SACN,OACC,CACD,IAAIoB,EACHpB,EAAM,OACP,MAAMqB,EACLvE,EACD,GACCA,IACAuE,EAEA,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACnB,EACmB,CACD,IAAIE,EACJ,GACCF,EAAM,aACL,SACAE,EACA,cACA,CACD,MAAMC,EACL,CACC,aACC9E,EACA,mBACD,WACC,wFACD,QACC,WACD,OAAQ,CACP,gBACC6E,CACvB,EACqB,QACC,gCACAA,EACA,GACtB,EAEoBzE,IACA,KAEAA,EACC,CACC0E,CACtB,EAEoB1E,EAAQ,KACP0E,CACrB,EAEmBzE,GACD,KAAO,CACN,MAAM0E,EACL1E,EACD,UAAW2E,KAAQL,EAClB,GAEEK,IACA,aAEA,CACD,MAAMC,EACL,CACC,aACCjF,EACA,mBACD,WACC,oGACD,QACC,uBACD,OAAQ,CACP,mBACCgF,CACzB,EACuB,QACC,qCACxB,EAEsB5E,IACA,KAEAA,EACC,CACC6E,CACxB,EAEsB7E,EAAQ,KACP6E,CACvB,EAEqB5E,IACA,KACD,CAED,GACC0E,IACA1E,GAGCsE,EAAM,aACN,OACC,CACD,IAAIO,EACHP,EAAM,WACP,GACC,EACC,OAAOO,GACN,UACD,SACCA,CACxB,GAEuB,CACD,MAAMC,EACL,CACC,aACCnF,EACA,8BACD,WACC,0GACD,QACC,OACD,OAAQ,CACP,KAAM,QAC/B,EACwB,QACC,gBACzB,EAEuBI,IACA,KAEAA,EACC,CACC+E,CACzB,EAEuB/E,EAAQ,KACP+E,CACxB,EAEsB9E,GACD,CACD,CAEF,CACD,KAAO,CACN,MAAM+E,EACL,CACC,aACCpF,EACA,mBACD,WACC,oFACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,EAEmBI,IACA,KAEAA,EACC,CACCgF,CACrB,EAEmBhF,EAAQ,KACPgF,CACpB,EAEkB/E,GACD,CAED,IAAIqE,EACHE,IACAvE,CACF,KACC,KAAIqE,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCnB,EAAM,aACN,OACC,CACD,IAAI8B,EACH9B,EAAM,WACP,MAAM+B,EACLjF,EACD,GACC,EACC,OAAOgF,GACN,UACD,SACCA,CACpB,GAEmB,CACD,MAAME,EACL,CACC,aACCvF,EACA,uBACD,WACC,wFACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,EAEmBI,IACA,KAEAA,EACC,CACCmF,CACrB,EAEmBnF,EAAQ,KACPmF,CACpB,EAEkBlF,GACD,CACA,IAAIqE,EACHY,IACAjF,CACF,KACC,KAAIqE,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCnB,EAAM,aACN,OACC,CACD,IAAIiC,EACHjC,EAAM,WACP,MAAMkC,EACLpF,EACD,GACC,EACC,OAAOmF,GACN,UACD,SACCA,CACrB,GAEoB,CACD,MAAME,EACL,CACC,aACC1F,EACA,uBACD,WACC,wFACD,QACC,OACD,OAAQ,CACP,KAAM,QAC5B,EACqB,QACC,gBACtB,EAEoBI,IACA,KAEAA,EACC,CACCsF,CACtB,EAEoBtF,EAAQ,KACPsF,CACrB,EAEmBrF,GACD,CACA,IAAIqE,EACHe,IACApF,CACF,KACC,KAAIqE,EAAS,GAEd,GACCA,EAEA,GACCnB,EAAM,SACN,OACC,CACD,IAAIoC,EACHpC,EAAM,OACP,MAAMqC,EACLvF,EACD,GACC,EACC,OAAOsF,GACN,UACD,SACCA,CACtB,GAEqB,CACD,MAAME,EACL,CACC,aACC7F,EACA,mBACD,WACC,oFACD,QACC,OACD,OAAQ,CACP,KAAM,QAC7B,EACsB,QACC,gBACvB,EAEqBI,IACA,KAEAA,EACC,CACCyF,CACvB,EAEqBzF,EAAQ,KACPyF,CACtB,EAEoBxF,GACD,CACA,IAAIqE,EACHkB,IACAvF,CACF,KACC,KAAIqE,EAAS,EAGhB,CACD,CACD,CACD,CACD,CACD,KAAO,CACN,MAAMoB,EAAQ,CACb,aACC9F,EACA,YACD,WACC,kEACD,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACtB,EACgBI,IAAY,KACfA,EAAU,CAAC0F,CAAK,EAEhB1F,EAAQ,KAAK0F,CAAK,EAEnBzF,GACD,CAED,IAAIwD,E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U,CAACK,CAAI,EAEfL,EAAQ,KAAKK,CAAI,EAElBJ,GACD,CACA,IAAIM,EAAU0C,IAAYhD,EAE1B,GADA+C,GAASA,IAAUzC,EACf,CAACyC,GAAQ,CACZ,MAAMI,EAAUnD,EAChB,GAAIA,IAAWmD,EACd,GACCD,GACA,OAAOA,GAAS,UAChB,CAAC,MAAM,QAAQA,CAAK,EACnB,CACD,IAAIV,EACJ,GACEU,EAAM,oBACN,SACCV,EACA,sBACDU,EAAM,SACN,SACCV,EACA,WACDU,EAAM,aACN,SACCV,EACA,eACDU,EAAM,aACN,SACCV,EACA,eACDU,EAAM,SACN,SACCV,EAAW,UACZ,CACD,MAAMnC,EAAO,CACZ,aACCV,EACA,QACD,WACC,qCACD,QAAS,WACT,OAAQ,CACP,gBACC6C,CAChB,EACc,QACC,gCACAA,EACA,GACf,EACiBzC,IAAY,KACfA,EAAU,CAACM,CAAI,EAEfN,EAAQ,KAAKM,CAAI,EAElBL,GACD,KAAO,CACN,MAAMsD,EAAUtD,EAChB,UAAW6D,KAAQX,EAClB,GACC,EACCW,IACC,qBACDA,IACC,UACDA,IACC,cACDA,IACC,cACDA,IACC,UAED,CACD,IAAIC,EACHZ,EAAMW,CAAI,EACX,MAAMkG,EACL/J,EACD,GACC,EACC,OAAO8D,GACN,UACD,SACCA,CAClB,GAEiB,CACD,MAAMtD,EAAO,CACZ,aACCb,EACA,SACAkE,EACE,QACA,KACA,IACpB,EACoB,QACA,MACA,IACpB,EACiB,WACC,sDACD,QACC,OACD,OAAQ,CACP,KAAM,QACxB,EACiB,QACC,gBAClB,EAEiB9D,IACA,KAEAA,EAAU,CACTS,CAClB,EAEiBT,EAAQ,KACPS,CAClB,EAEgBR,GACD,CACA,IAAIqD,EACH0G,IACA/J,EACD,GAAI,CAACqD,EACJ,KAEF,CAED,GAAIC,IAAYtD,EAAQ,CACvB,GACCkD,EAAM,oBACN,OACC,CACD,IAAIgB,EACHhB,EAAM,kBACP,MAAM8G,EACLhK,EACD,GACC,EACC,OAAOkE,GACN,UACD,SACCA,CAClB,GAEiB,CACD,MAAMzD,EAAO,CACZ,aACCd,EACA,0BACD,WACC,8DACD,QACC,OACD,OAAQ,CACP,KAAM,QACxB,EACiB,QACC,gBAClB,EAEiBI,IACA,KAEAA,EAAU,CACTU,CAClB,EAEiBV,EAAQ,KACPU,CAClB,EAEgBT,GACD,CACA,IAAIiE,EACH+F,IACAhK,CACF,KACC,KAAIiE,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCf,EAAM,SACN,OACC,CACD,IAAIoB,EACHpB,EAAM,OACP,MAAMa,EACL/D,EACD,GACCA,IACA+D,EAEA,GACCO,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACnB,EACmB,CACD,IAAIZ,EACJ,GACCY,EAAM,aACL,SACAZ,EACA,cACA,CACD,MAAM/C,EACL,CACC,aACChB,EACA,eACD,WACC,uDACD,QACC,WACD,OAAQ,CACP,gBACC+D,CACvB,EACqB,QACC,gCACAA,EACA,GACtB,EAEoB3D,IACA,KAEAA,EACC,CACCY,CACtB,EAEoBZ,EAAQ,KACPY,CACrB,EAEmBX,GACD,KAAO,CACN,MAAMmE,EACLnE,EACD,UAAW2E,KAAQL,EAClB,GAEEK,IACA,aAEA,CACD,MAAM/D,EACL,CACC,aACCjB,EACA,eACD,WACC,mEACD,QACC,uBACD,OAAQ,CACP,mBACCgF,CACzB,EACuB,QACC,qCACxB,EAEsB5E,IACA,KAEAA,EACC,CACCa,CACxB,EAEsBb,EAAQ,KACPa,CACvB,EAEqBZ,IACA,KACD,CAED,GACCmE,IACAnE,GAGCsE,EAAM,aACN,OACC,CACD,IAAIO,EACHP,EAAM,WACP,GACC,EACC,OAAOO,GACN,UACD,SACCA,CACxB,GAEuB,CACD,MAAMhE,EACL,CACC,aACClB,EACA,0BACD,WACC,yEACD,QACC,OACD,OAAQ,CACP,KAAM,QAC/B,EACwB,QACC,gBACzB,EAEuBI,IACA,KAEAA,EACC,CACCc,CACzB,EAEuBd,EAAQ,KACPc,CACxB,EAEsBb,GACD,CACD,CAEF,CACD,KAAO,CACN,MAAM2C,EACL,CACC,aACChD,EACA,eACD,WACC,mDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,EAEmBI,IACA,KAEAA,EACC,CACC4C,CACrB,EAEmB5C,EAAQ,KACP4C,CACpB,EAEkB3C,GACD,CAED,IAAIiE,EACHF,IACA/D,CACF,KACC,KAAIiE,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCf,EAAM,aACN,OACC,CACD,IAAI8B,EACH9B,EAAM,WACP,MAAM+G,EACLjK,EACD,GACC,EACC,OAAOgF,GACN,UACD,SACCA,CACpB,GAEmB,CACD,MAAMnC,EACL,CACC,aACClD,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,EAEmBI,IACA,KAEAA,EACC,CACC8C,CACrB,EAEmB9C,EAAQ,KACP8C,CACpB,EAEkB7C,GACD,CACA,IAAIiE,EACHgG,IACAjK,CACF,KACC,KAAIiE,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCf,EAAM,aACN,OACC,CACD,IAAIiC,EACHjC,EAAM,WACP,MAAMgH,EACLlK,EACD,GACC,EACC,OAAOmF,GACN,UACD,SACCA,CACrB,GAEoB,CACD,MAAMrC,EACL,CACC,aACCnD,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC5B,EACqB,QACC,gBACtB,EAEoBI,IACA,KAEAA,EACC,CACC+C,CACtB,EAEoB/C,EAAQ,KACP+C,CACrB,EAEmB9C,GACD,CACA,IAAIiE,EACHiG,IACAlK,CACF,KACC,KAAIiE,EAAS,GAEd,GACCA,EAEA,GACCf,EAAM,SACN,OACC,CACD,IAAIoC,EACHpC,EAAM,OACP,MAAM+B,EACLjF,EACD,GACC,EACC,OAAOsF,GACN,UACD,SACCA,CACtB,GAEqB,CACD,MAAMrC,EACL,CACC,aACCtD,EACA,eACD,WACC,mDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC7B,EACsB,QACC,gBACvB,EAEqBI,IACA,KAEAA,EACC,CACCkD,CACvB,EAEqBlD,EAAQ,KACPkD,CACtB,EAEoBjD,GACD,CACA,IAAIiE,EACHgB,IACAjF,CACF,KACC,KAAIiE,EAAS,EAGhB,CACD,CACD,CACD,CACD,CACD,KAAO,CACN,MAAMV,EAAQ,CACb,aACC5D,EAAe,QAChB,WACC,iCACD,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACtB,EACgBI,IAAY,KACfA,EAAU,CAACwD,CAAK,EAEhBxD,EAAQ,KAAKwD,CAAK,EAEnBvD,GACD,CAED,IAAIM,EAAU6C,IAAYnD,EAE1B,GADA+C,GAASA,IAAUzC,EACf,CAACyC,GAAQ,CACZ,MAAMqC,EAAUpF,EAChB,GAAIA,IAAWoF,EACd,GACClC,GACA,OAAOA,GAAS,UAChB,CAAC,MAAM,QAAQA,CAAK,EAEpB,UAAW8C,KAAQ9C,EAAO,CACzB,IAAIgD,EACHhD,EAAM8C,CAAI,EACX,MAAMmE,EAAUnK,EACV4F,EAAU5F,EAChB,IAAIoK,EAAS,GACb,MAAMC,EAAUrK,EAChB,GACC,OAAOkG,GACP,SACC,CACD,MAAMvC,EAAQ,CACb,aACChE,EACA,SACAqG,EACE,QACA,KACA,IACnB,EACmB,QACA,MACA,IACnB,EACgB,WACC,8DACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,EAEgBjG,IAAY,KAEZA,EAAU,CACT4D,CACjB,EAEgB5D,EAAQ,KACP4D,CACjB,EAEe3D,GACD,CACA,IAAIwD,EACH6G,IAAYrK,EAGb,GAFAoK,EACCA,GAAU5G,EACP,CAAC4G,EAAQ,CACZ,MAAMrE,EACL/F,EACD,GACCA,IACA+F,EAEA,GACCG,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CAClB,EACkB,CACD,IAAI1B,EACJ,GACE0B,EAAO,oBACP,SACC1B,EACA,sBACD0B,EAAO,SACP,SACC1B,EACA,WACD0B,EAAO,aACP,SACC1B,EACA,eACD0B,EAAO,aACP,SACC1B,EACA,eACD0B,EAAO,SACP,SACC1B,EACA,UACD,CACD,MAAMR,GACL,CACC,aACCrE,EACA,SACAqG,EACE,QACA,KACA,IACvB,EACuB,QACA,MACA,IACvB,EACoB,WACC,kEACD,QACC,WACD,OAAQ,CACP,gBACCxB,CACtB,EACoB,QACC,gCACAA,EACA,GACrB,EAEmBzE,IACA,KAEAA,EACC,CACCiE,EACrB,EAEmBjE,EAAQ,KACPiE,EACpB,EAEkBhE,GACD,KAAO,CACN,MAAMsK,GACLtK,EACD,UAAW8G,KAAQZ,EAClB,GACC,EACCY,IACC,qBACDA,IACC,UACDA,IACC,cACDA,IACC,cACDA,IACC,UAED,CACD,IAAIyD,EACHrE,EACCY,CACtB,EACoB,MAAMP,EACLvG,EACD,GACC,EACC,OAAOuK,GACN,UACD,SACCA,CACvB,GAEsB,CACD,MAAMnG,EACL,CACC,aACCzE,EACA,SACAqG,EACE,QACA,KACA,IAC1B,EAC0B,QACA,MACA,IAC1B,EACwB,IACAc,EACE,QACA,KACA,IAC1B,EAC0B,QACA,MACA,IAC1B,EACuB,WACC,mFACD,QACC,OACD,OAAQ,CACP,KAAM,QAC9B,EACuB,QACC,gBACxB,EAEsB/G,IACA,KAEAA,EACC,CACCqE,CACxB,EAEsBrE,EAAQ,KACPqE,CACvB,EAEqBpE,GACD,CACA,IAAIsG,EACHC,IACAvG,EACD,GACC,CAACsG,EAED,KAEF,CAED,GACCgE,KACAtK,EACC,CACD,GACCkG,EAAO,oBACP,OACC,CACD,IAAIc,EACHd,EAAO,kBACR,MAAMQ,EACL1G,EACD,GACC,EACC,OAAOgH,GACN,UACD,SACCA,CACvB,GAEsB,CACD,MAAMvC,EACL,CACC,aACC9E,EACA,SACAqG,EACE,QACA,KACA,IAC1B,EAC0B,QACA,MACA,IAC1B,EACwB,qBACD,WACC,2FACD,QACC,OACD,OAAQ,CACP,KAAM,QAC9B,EACuB,QACC,gBACxB,EAEsBjG,IACA,KAEAA,EACC,CACC0E,CACxB,EAEsB1E,EAAQ,KACP0E,CACvB,EAEqBzE,GACD,CACA,IAAIwK,EACH9D,IACA1G,CACF,KACC,KAAIwK,EAAU,GAEf,GACCA,EACC,CACD,GACCtE,EAAO,SACP,OACC,CACD,IAAIuE,EACHvE,EAAO,OACR,MAAMwE,EACL1K,EACD,GACCA,IACA0K,EAEA,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACxB,EACwB,CACD,IAAI5E,EACJ,GACC4E,EAAO,aACN,SACA5E,EACA,cACA,CACD,MAAMjB,GACL,CACC,aACCjF,EACA,SACAqG,EACE,QACA,KACA,IAC7B,EAC6B,QACA,MACA,IAC7B,EAC2B,UACD,WACC,oFACD,QACC,WACD,OAAQ,CACP,gBACCH,CAC5B,EAC0B,QACC,gCACAA,EACA,GAC3B,EAEyB9F,IACA,KAEAA,EACC,CACC6E,EAC3B,EAEyB7E,EAAQ,KACP6E,EAC1B,EAEwB5E,GACD,KAAO,CACN,MAAMiH,GACLjH,EACD,UAAW4H,MAAQ6C,EAClB,GAEE7C,KACA,aAEA,CACD,MAAM9C,GACL,CACC,aACCnF,EACA,SACAqG,EACE,QACA,KACA,IAC/B,EAC+B,QACA,MACA,IAC/B,EAC6B,UACD,WACC,gGACD,QACC,uBACD,OAAQ,CACP,mBACC4B,EAC9B,EAC4B,QACC,qCAC7B,EAE2B7H,IACA,KAEAA,EACC,CACC+E,EAC7B,EAE2B/E,EAAQ,KACP+E,EAC5B,EAE0B9E,IACA,KACD,CAED,GACCiH,KACAjH,GAGCyK,EAAO,aACP,OACC,CACD,IAAI3C,GACH2C,EAAO,WACR,GACC,EACC,OAAO3C,IACN,UACD,SACCA,EAC7B,GAE4B,CACD,MAAM/C,GACL,CACC,aACCpF,EACA,SACAqG,EACE,QACA,KACA,IAChC,EACgC,QACA,MACA,IAChC,EAC8B,qBACD,WACC,sGACD,QACC,OACD,OAAQ,CACP,KAAM,QACpC,EAC6B,QACC,gBAC9B,EAE4BjG,IACA,KAEAA,EACC,CACCgF,EAC9B,EAE4BhF,EAAQ,KACPgF,EAC7B,EAE2B/E,GACD,CACD,CAEF,CACD,KAAO,CACN,MAAMkF,EACL,CACC,aACCvF,EACA,SACAqG,EACE,QACA,KACA,IAC5B,EAC4B,QACA,MACA,IAC5B,EAC0B,UACD,WACC,gFACD,QACC,OACD,OAAQ,CACP,KAAM,QAChC,EACyB,QACC,gBAC1B,EAEwBjG,IACA,KAEAA,EACC,CACCmF,CAC1B,EAEwBnF,EAAQ,KACPmF,CACzB,EAEuBlF,GACD,CAED,IAAIwK,EACHE,IACA1K,CACF,KACC,KAAIwK,EAAU,GAEf,GACCA,EACC,CACD,GACCtE,EAAO,aACP,OACC,CACD,IAAIyE,EACHzE,EAAO,WACR,MAAM0E,EACL5K,EACD,GACC,EACC,OAAO2K,GACN,UACD,SACCA,CACzB,GAEwB,CACD,MAAMtF,EACL,CACC,aACC1F,EACA,SACAqG,EACE,QACA,KACA,IAC5B,EAC4B,QACA,MACA,IAC5B,EAC0B,cACD,WACC,oFACD,QACC,OACD,OAAQ,CACP,KAAM,QAChC,EACyB,QACC,gBAC1B,EAEwBjG,IACA,KAEAA,EACC,CACCsF,CAC1B,EAEwBtF,EAAQ,KACPsF,CACzB,EAEuBrF,GACD,CACA,IAAIwK,EACHI,IACA5K,CACF,KACC,KAAIwK,EAAU,GAEf,GACCA,EACC,CACD,GACCtE,EAAO,aACP,OACC,CACD,IAAI2E,EACH3E,EAAO,WACR,MAAM4E,EACL9K,EACD,GACC,EACC,OAAO6K,GACN,UACD,SACCA,CAC1B,GAEyB,CACD,MAAMrF,EACL,CACC,aACC7F,EACA,SACAqG,EACE,QACA,KACA,IAC7B,EAC6B,QACA,MACA,IAC7B,EAC2B,cACD,WACC,oFACD,QACC,OACD,OAAQ,CACP,KAAM,QACjC,EAC0B,QACC,gBAC3B,EAEyBjG,IACA,KAEAA,EACC,CACCyF,CAC3B,EAEyBzF,EAAQ,KACPyF,CAC1B,EAEwBxF,GACD,CACA,IAAIwK,EACHM,IACA9K,CACF,KACC,KAAIwK,EAAU,GAEf,GACCA,EAEA,GACCtE,EAAO,SACP,OACC,CACD,IAAI4C,EACH5C,EAAO,OACR,MAAMyB,EACL3H,EACD,GACC,EACC,OAAO8I,GACN,UACD,SACCA,CAC3B,GAE0B,CACD,MAAMrD,EACL,CACC,aACC9F,EACA,SACAqG,EACE,QACA,KACA,IAC9B,EAC8B,QACA,MACA,IAC9B,EAC4B,UACD,WACC,gFACD,QACC,OACD,OAAQ,CACP,KAAM,QAClC,EAC2B,QACC,gBAC5B,EAE0BjG,IACA,KAEAA,EACC,CACC0F,CAC5B,EAE0B1F,EAAQ,KACP0F,CAC3B,EAEyBzF,GACD,CACA,IAAIwK,EACH7C,IACA3H,CACF,KACC,KAAIwK,EAAU,EAGjB,CACD,CACD,CACD,CACD,CACD,KAAO,CACN,MAAM9E,EACL,CACC,aACC/F,EACA,SACAqG,EACE,QACA,KACA,IACtB,EACsB,QACA,MACA,IACtB,EACmB,WACC,8DACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,EAEkBjG,IACA,KAEAA,EACC,CACC2F,CACpB,EAEkB3F,EAAQ,KACP2F,CACnB,EAEiB1F,GACD,CAED,IAAIwD,EACHuC,IACA/F,EAID,GAHAoK,EACCA,GACA5G,EACG,CAAC4G,EAAQ,CACZ,MAAMW,EACL/K,EACD,GACCA,IACA+K,EAEA,GACC7E,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACnB,EACmB,CACD,IAAIS,EACJ,GACET,EAAO,eACP,SACCS,EACA,iBACDT,EAAO,OACP,SACCS,EACA,SACDT,EAAO,OACP,SACCS,EACA,SACDT,EAAO,OACP,SACCS,EACA,SACDT,EAAO,qBACP,SACCS,EACA,sBACD,CACD,MAAMhB,EACL,CACC,aACChG,EACA,SACAqG,EACE,QACA,KACA,IACxB,EACwB,QACA,MACA,IACxB,EACqB,WACC,kEACD,QACC,WACD,OAAQ,CACP,gBACCW,CACvB,EACqB,QACC,gCACAA,EACA,GACtB,EAEoB5G,IACA,KAEAA,EACC,CACC4F,CACtB,EAEoB5F,EAAQ,KACP4F,CACrB,EAEmB3F,GACD,KAAO,CACN,MAAMgL,EACLhL,EACD,UAAW4I,KAAQ1C,EAClB,GACC,EACC0C,IACC,QACDA,IACC,QACDA,IACC,gBACDA,IACC,QACDA,IACC,sBAED,CACD,MAAM9C,EACL,CACC,aACCnG,EACA,SACAqG,EACE,QACA,KACA,IAC1B,EAC0B,QACA,MACA,IAC1B,EACuB,WACC,8EACD,QACC,uBACD,OAAQ,CACP,mBACC4C,CACzB,EACuB,QACC,qCACxB,EAEsB7I,IACA,KAEAA,EACC,CACC+F,CACxB,EAEsB/F,EAAQ,KACP+F,CACvB,EAEqB9F,IACA,KACD,CAED,GACCgL,IACAhL,EACC,CACD,GACCkG,EAAO,OACP,OACC,CACD,IAAI+E,EACH/E,EAAO,KACR,MAAMmC,EACLrI,EACD,GACC,EACC,OAAOiL,GACN,UACD,SACCA,CACxB,GAEuB,CACD,MAAMhF,GACL,CACC,aACCtG,EACA,SACAqG,EACE,QACA,KACA,IAC3B,EAC2B,QACA,MACA,IAC3B,EACyB,QACD,WACC,8EACD,QACC,OACD,OAAQ,CACP,KAAM,QAC/B,EACwB,QACC,gBACzB,EAEuBjG,IACA,KAEAA,EACC,CACCkG,EACzB,EAEuBlG,EAAQ,KACPkG,EACxB,EAEsBjG,GACD,CACA,IAAIkL,EACH7C,IACArI,CACF,KACC,KAAIkL,EAAU,GAEf,GACCA,EACC,CACD,GACChF,EAAO,OACP,OACC,CACD,MAAMsC,EACLxI,EACD,GACC,OAAOkG,EAAO,MACd,SACC,CACD,MAAME,GACL,CACC,aACCzG,EACA,SACAqG,EACE,QACA,KACA,IAC5B,EAC4B,QACA,MACA,IAC5B,EAC0B,QACD,WACC,8EACD,QACC,OACD,OAAQ,CACP,KAAM,QAChC,EACyB,QACC,gBAC1B,EAEwBjG,IACA,KAEAA,EACC,CACCqG,EAC1B,EAEwBrG,EAAQ,KACPqG,EACzB,EAEuBpG,GACD,CACA,IAAIkL,EACH1C,IACAxI,CACF,KACC,KAAIkL,EAAU,GAEf,GACCA,EACC,CACD,GACChF,EAAO,eACP,OACC,CACD,IAAIiF,EACHjF,EAAO,aACR,MAAMkF,EACLpL,EACD,GACC,EACC,OAAOmL,GACN,UACD,SACCA,CAC1B,GAEyB,CACD,MAAM9E,GACL,CACC,aACC1G,EACA,SACAqG,EACE,QACA,KACA,IAC7B,EAC6B,QACA,MACA,IAC7B,EAC2B,gBACD,WACC,sFACD,QACC,OACD,OAAQ,CACP,KAAM,QACjC,EAC0B,QACC,gBAC3B,EAEyBjG,IACA,KAEAA,EACC,CACCsG,EAC3B,EAEyBtG,EAAQ,KACPsG,EAC1B,EAEwBrG,GACD,CACA,IAAIkL,EACHE,IACApL,CACF,KACC,KAAIkL,EAAU,GAEf,GACCA,EACC,CACD,GACChF,EAAO,OACP,OACC,CACD,MAAM6C,EACL/I,EACD,GACC,OAAOkG,EAAO,MACd,SACC,CACD,MAAMM,GACL,CACC,aACC7G,EACA,SACAqG,EACE,QACA,KACA,IAC9B,EAC8B,QACA,MACA,IAC9B,EAC4B,QACD,WACC,8EACD,QACC,OACD,OAAQ,CACP,KAAM,QAClC,EAC2B,QACC,gBAC5B,EAE0BjG,IACA,KAEAA,EACC,CACCyG,EAC5B,EAE0BzG,EAAQ,KACPyG,EAC3B,EAEyBxG,GACD,CACA,IAAIkL,EACHnC,IACA/I,CACF,KACC,KAAIkL,EAAU,GAEf,GACCA,EAEA,GACChF,EAAO,qBACP,OACC,CACD,MAAMiD,EACLnJ,EACD,GACC,OAAOkG,EAAO,oBACd,SACC,CACD,MAAMO,GACL,CACC,aACC9G,EACA,SACAqG,EACE,QACA,KACA,IAC/B,EAC+B,QACA,MACA,IAC/B,EAC6B,sBACD,WACC,4FACD,QACC,OACD,OAAQ,CACP,KAAM,QACnC,EAC4B,QACC,gBAC7B,EAE2BjG,IACA,KAEAA,EACC,CACC0G,EAC7B,EAE2B1G,EAAQ,KACP0G,EAC5B,EAE0BzG,GACD,CACA,IAAIkL,EACH/B,IACAnJ,CACF,KACC,KAAIkL,EAAU,EAGjB,CACD,CACD,CACD,CACD,CACD,KAAO,CACN,MAAMtE,EACL,CACC,aACCjH,EACA,SACAqG,EACE,QACA,KACA,IACvB,EACuB,QACA,MACA,IACvB,EACoB,WACC,8DACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,EAEmBjG,IACA,KAEAA,EACC,CACC6G,CACrB,EAEmB7G,EAAQ,KACP6G,CACpB,EAEkB5G,GACD,CAED,IAAIwD,EACHuH,IACA/K,EACDoK,EACCA,GA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CD8C,EAAM,SACN,SACC9C,EACA,UACD,CACD,MAAMf,EAAO,CACZ,aACCV,EACA,QACD,WACC,qCACD,QAAS,WACT,OAAQ,CACP,gBACCyB,CACjB,EACe,QACC,gCACAA,EACA,GAChB,EACkBrB,IAAY,KACfA,EAAU,CAACM,CAAI,EAEfN,EAAQ,KAAKM,CAAI,EAElBL,GACD,KAAO,CACN,MAAM4D,EAAU5D,EAChB,UAAW6D,KAAQK,EAClB,GACC,EACCL,IACC,qBACDA,IACC,UACDA,IACC,cACDA,IACC,cACDA,IACC,UAED,CACD,IAAIS,EACHJ,EAAML,CAAI,EACX,MAAME,EACL/D,EACD,GACC,EACC,OAAOsE,GACN,UACD,SACCA,CACnB,GAEkB,CACD,MAAM9D,EACL,CACC,aACCb,EACA,SACAkE,EACE,QACA,KACA,IACtB,EACsB,QACA,MACA,IACtB,EACmB,WACC,sDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,EAEkB9D,IACA,KAEAA,EACC,CACCS,CACpB,EAEkBT,EAAQ,KACPS,CACnB,EAEiBR,GACD,CACA,IAAIqD,EACHU,IACA/D,EACD,GAAI,CAACqD,EACJ,KAEF,CAED,GACCO,IAAY5D,EACX,CACD,GACCkE,EAAM,oBACN,OACC,CACD,IAAIW,EACHX,EAAM,kBACP,MAAMC,EACLnE,EACD,GACC,EACC,OAAO6E,GACN,UACD,SACCA,CACnB,GAEkB,CACD,MAAMpE,EACL,CACC,aACCd,EACA,0BACD,WACC,8DACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,EAEkBI,IACA,KAEAA,EACC,CACCU,CACpB,EAEkBV,EAAQ,KACPU,CACnB,EAEiBT,GACD,CACA,IAAIiE,EACHE,IACAnE,CACF,KACC,KAAIiE,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCC,EAAM,SACN,OACC,CACD,IAAIc,EACHd,EAAM,OACP,MAAMK,EACLvE,EACD,GACCA,IACAuE,EAEA,GACCS,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACpB,EACoB,CACD,IAAIxC,EACJ,GACCwC,EAAM,aACL,SACAxC,EACA,cACA,CACD,MAAM7B,EACL,CACC,aACChB,EACA,eACD,WACC,uDACD,QACC,WACD,OAAQ,CACP,gBACC6C,CACxB,EACsB,QACC,gCACAA,EACA,GACvB,EAEqBzC,IACA,KAEAA,EACC,CACCY,CACvB,EAEqBZ,EAAQ,KACPY,CACtB,EAEoBX,GACD,KAAO,CACN,MAAM0E,EACL1E,EACD,UAAW2E,KAAQK,EAClB,GAEEL,IACA,aAEA,CACD,MAAM/D,EACL,CACC,aACCjB,EACA,eACD,WACC,mEACD,QACC,uBACD,OAAQ,CACP,mBACCgF,CAC1B,EACwB,QACC,qCACzB,EAEuB5E,IACA,KAEAA,EACC,CACCa,CACzB,EAEuBb,EAAQ,KACPa,CACxB,EAEsBZ,IACA,KACD,CAED,GACC0E,IACA1E,GAGCgF,EAAM,aACN,OACC,CACD,IAAIG,EACHH,EAAM,WACP,GACC,EACC,OAAOG,GACN,UACD,SACCA,CACzB,GAEwB,CACD,MAAMtE,EACL,CACC,aACClB,EACA,0BACD,WACC,yEACD,QACC,OACD,OAAQ,CACP,KAAM,QAChC,EACyB,QACC,gBAC1B,EAEwBI,IACA,KAEAA,EACC,CACCc,CAC1B,EAEwBd,EAAQ,KACPc,CACzB,EAEuBb,GACD,CACD,CAEF,CACD,KAAO,CACN,MAAM2C,EACL,CACC,aACChD,EACA,eACD,WACC,mDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC5B,EACqB,QACC,gBACtB,EAEoBI,IACA,KAEAA,EACC,CACC4C,CACtB,EAEoB5C,EAAQ,KACP4C,CACrB,EAEmB3C,GACD,CAED,IAAIiE,EACHM,IACAvE,CACF,KACC,KAAIiE,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCC,EAAM,aACN,OACC,CACD,IAAIoB,EACHpB,EAAM,WACP,MAAMe,EACLjF,EACD,GACC,EACC,OAAOsF,GACN,UACD,SACCA,CACrB,GAEoB,CACD,MAAMzC,EACL,CACC,aACClD,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC5B,EACqB,QACC,gBACtB,EAEoBI,IACA,KAEAA,EACC,CACC8C,CACtB,EAEoB9C,EAAQ,KACP8C,CACrB,EAEmB7C,GACD,CACA,IAAIiE,EACHgB,IACAjF,CACF,KACC,KAAIiE,EAAS,GAEd,GACCA,EACC,CACD,GACCC,EAAM,aACN,OACC,CACD,IAAIgC,EACHhC,EAAM,WACP,MAAMkB,EACLpF,EACD,GACC,EACC,OAAOkG,GACN,UACD,SACCA,CACtB,GAEqB,CACD,MAAMpD,EACL,CACC,aACCnD,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC7B,EACsB,QACC,gBACvB,EAEqBI,IACA,KAEAA,EACC,CACC+C,CACvB,EAEqB/C,EAAQ,KACP+C,CACtB,EAEoB9C,GACD,CACA,IAAIiE,EACHmB,IACApF,CACF,KACC,KAAIiE,EAAS,GAEd,GACCA,EAEA,GACCC,EAAM,SACN,OACC,CACD,IAAIqG,EACHrG,EAAM,OACP,MAAMqB,EACLvF,EACD,GACC,EACC,OAAOuK,GACN,UACD,SACCA,CACvB,GAEsB,CACD,MAAMtH,EACL,CACC,aACCtD,EACA,eACD,WACC,mDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC9B,EACuB,QACC,gBACxB,EAEsBI,IACA,KAEAA,EACC,CACCkD,CACxB,EAEsBlD,EAAQ,KACPkD,CACvB,EAEqBjD,GACD,CACA,IAAIiE,EACHsB,IACAvF,CACF,KACC,KAAIiE,EAAS,EAGhB,CACD,CACD,CACD,CACD,CACD,KAAO,CACN,MAAMV,EAAQ,CACb,aACC5D,EACA,QACD,WACC,iCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACrB,EACc,QACC,gBACf,EACiBI,IAAY,KACfA,EAAU,CAACwD,CAAK,EAEhBxD,EAAQ,KAAKwD,CAAK,EAEnBvD,GACD,CAED,IAAIM,EAAUmD,IAAYzD,EAC1B+C,GAASA,IAAUzC,CACpB,CACA,GAAKyC,GAoBJ/C,EAASoD,EACLrD,IAAY,OACXqD,EACHrD,EAAQ,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GAEd,GAAIA,EACH,GACCvI,EAAM,UACN,OACC,CACD,MAAMoK,EACL1L,EACD,GACC,OAAOsB,EAAM,SACb,SAEA,OAAAkK,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIkK,EACH6B,IACA1L,CACF,KACC,KAAI6J,EAAS,EAGhB,CACD,KACC,QAAA2B,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,qCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI2C,EAASL,IAAWjC,CACzB,KACC,KAAIsC,EAAS,GAEd,GAAIA,EAAQ,CACX,GAAIxL,EAAK,OAAS,OAAW,CAC5B,IAAI0K,EAAQ1K,EAAK,KACjB,MAAM2L,EAAUzC,EAChB,GAAI,OAAOwB,GAAU,SACpB,OAAAgK,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,iCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GACsB6B,IAArB,iBAEA,OAAAgK,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,QACT,OAAQ,CACP,aACC,gBACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI2C,EAASG,IAAYzC,CAC1B,KACC,KAAIsC,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCxL,EAAK,aACL,OACC,CACD,MAAMgT,EAAU9J,EAChB,GACC,OAAOlJ,EAAK,YACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,cACD,WACC,uCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAI2C,EACHwH,IAAY9J,CACd,KACC,KAAIsC,EAAS,GAEd,GAAIA,EACH,GACCxL,EAAK,aACL,OACC,CACD,MAAM6U,EAAU3L,EAChB,GACC,OAAOlJ,EAAK,YACZ,SAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,cACD,WACC,uCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAER,IAAI2C,EACHqJ,IAAY3L,CACd,KACC,KAAIsC,EAAS,EAGhB,CACD,CACD,CACD,CACD,KACC,QAAAkJ,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,iBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,iBAEnB,GAAIzL,IADYA,EAEf,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAI4M,EACJ,GACE5M,EAAK,OAAS,SACb4M,EAAW,SACZ5M,EAAK,kBAAoB,SACxB4M,EAAW,mBAEb,OAAA8H,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,qBACZ,QAAS,WACT,OAAQ,CACP,gBAAiB+D,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMqG,EAAU/J,EAChB,UAAW6D,KAAQ/M,EAClB,GACC,EACC+M,IAAS,YACTA,IAAS,QACTA,IAAS,mBAGV,OAAA2H,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,iCACD,QACC,uBACD,OAAQ,CACP,mBACCkE,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAIkG,IAAY/J,EAAQ,CACvB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIoN,EAAQpN,EAAK,SACjB,MAAM2M,EAAUzD,EAChB,GAAIA,IAAWyD,EACd,GACCS,GACA,OAAOA,GAAS,UAChB,CAAC,MAAM,QAAQA,CAAK,EACnB,CACD,MAAMN,EAAU5D,EAChB,UAAW2E,KAAQT,EAClB,GACC,EACCS,IACC,UACDA,IACC,WAGF,OAAA6G,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,qDACD,QACC,uBACD,OAAQ,CACP,mBACCgF,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAIf,IAAY5D,EAAQ,CACvB,GACCkE,EAAM,SACN,OACC,CACD,IAAII,EACHJ,EAAM,OACP,MAAMH,EACL/D,EACD,GACC,EACC,OAAOsE,GACN,UACD,SACCA,CAClB,GAGgB,OAAAkH,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIsE,EACHF,IACA/D,CACF,KACC,KAAIiE,EAAS,GAEd,GAAIA,EACH,GACCC,EAAM,UACN,OACC,CACD,MAAMC,EACLnE,EACD,GACC,OAAOkE,EAAM,SACb,SAEA,OAAAsH,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIsE,EACHE,IACAnE,CACF,KACC,KAAIiE,EAAS,EAGhB,CACD,KACC,QAAAuH,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,qCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI0D,EAASI,IAAYzD,CAC1B,KACC,KAAIqD,EAAS,GAEd,GAAIA,EAAQ,CACX,GAAIvM,EAAK,OAAS,OAAW,CAC5B,IAAIkO,EAAQlO,EAAK,KACjB,MAAMyN,EAAUvE,EAChB,GAAI,OAAOgF,GAAU,SACpB,OAAAwG,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,iCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAwBqF,IAApB,gBACH,OAAAwG,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,QACT,OAAQ,CACP,aACC,eACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI0D,EAASkB,IAAYvE,CAC1B,KACC,KAAIqD,EAAS,GAEd,GAAIA,EACH,GACCvM,EAAK,kBACL,OACC,CACD,MAAM4N,EAAU1E,EAChB,GACC,OAAOlJ,EAAK,iBACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,mBACD,WACC,4CACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAI0D,EACHqB,IAAY1E,CACd,KACC,KAAIqD,EAAS,EAGhB,CACD,CACD,CACD,KACC,QAAAmI,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,iBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,MAEnB,GAAIzL,IADYA,EAEf,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAI0N,EACJ,GACE1N,EAAK,WAAa,SACjB0N,EAAW,aACZ1N,EAAK,OAAS,SACb0N,EAAW,SACZ1N,EAAK,SAAW,SACf0N,EAAW,UAEb,OAAAgH,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,qBACZ,QAAS,WACT,OAAQ,CACP,gBAAiB6E,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMoH,EAAU5L,EAChB,UAAWgG,KAAQlP,EAClB,GACC,EACCkP,IAAS,YACTA,IAAS,QACTA,IAAS,YACTA,IAAS,UAGV,OAAAwF,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,iCACD,QACC,uBACD,OAAQ,CACP,mBACCqG,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAI4F,IAAY5L,EAAQ,CACvB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIwO,EAASxO,EAAK,SAClB,MAAMsO,EAAUpF,EAChB,GAAIA,IAAWoF,EACd,GACCE,GACA,OAAOA,GAAU,UACjB,CAAC,MAAM,QAAQA,CAAM,EACpB,CACD,MAAMC,EAAUvF,EAChB,UAAW8G,KAAQxB,EAClB,GACC,EACCwB,IACC,UACDA,IACC,WAGF,OAAA0E,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,qDACD,QACC,uBACD,OAAQ,CACP,mBACCmH,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAIvB,IAAYvF,EAAQ,CACvB,GACCsF,EAAO,SACP,OACC,CACD,IAAIY,EACHZ,EAAO,OACR,MAAM6E,EACLnK,EACD,GACC,EACC,OAAOkG,GACN,UACD,SACCA,CAClB,GAGgB,OAAAsF,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIyK,EACHD,IACAnK,CACF,KACC,KAAIoK,EAAS,GAEd,GAAIA,EACH,GACC9E,EAAO,UACP,OACC,CACD,MAAM+E,EACLrK,EACD,GACC,OAAOsF,EAAO,SACd,SAEA,OAAAkG,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIyK,EACHC,IACArK,CACF,KACC,KAAIoK,EAAS,EAGhB,CACD,KACC,QAAAoB,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,qCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI0L,EAASjG,IAAYpF,CAC1B,KACC,KAAIqL,EAAS,GAEd,GAAIA,EAAQ,CACX,GAAIvU,EAAK,OAAS,OAAW,CAC5B,IAAIkQ,EAASlQ,EAAK,KAClB,MAAMiP,EAAU/F,EAChB,GACC,OAAOgH,GAAW,SAElB,OAAAwE,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,iCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAaqH,IAAT,KACH,OAAAwE,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,QACT,OAAQ,CACP,aACC,IACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI0L,EAAStF,IAAY/F,CAC1B,KACC,KAAIqL,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCvU,EAAK,WAAa,OACjB,CACD,MAAMwT,EAAUtK,EAChB,GACC,OAAOlJ,EAAK,UACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,qCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAI0L,EACHf,IAAYtK,CACd,KACC,KAAIqL,EAAS,GAEd,GAAIA,EACH,GACCvU,EAAK,SACL,OACC,CACD,MAAM+U,EAAU7L,EAChB,GACC,OAAOlJ,EAAK,QACZ,SAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,UACD,WACC,mCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAER,IAAI0L,EACHQ,IAAY7L,CACd,KACC,KAAIqL,EAAS,EAGhB,CACD,CACD,CACD,CACD,KACC,QAAAG,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,iBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,wBAEnB,GAAIzL,IADYA,EAEf,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAI+O,EACJ,GACE/O,EAAK,SAAW,SACf+O,EAAW,WACZ/O,EAAK,OAAS,SACb+O,EAAW,QAEb,OAAA2F,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,qBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBkG,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMgB,EAAU7G,EAChB,UAAW4H,KAAQ9Q,EAClB,GACC,EACC8Q,IAAS,YACTA,IAAS,QACTA,IAAS,UACTA,IAAS,UACTA,IAAS,cAGV,OAAA4D,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,iCACD,QACC,uBACD,OAAQ,CACP,mBACCiI,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAIf,IAAY7G,EAAQ,CACvB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAI6T,EAAS7T,EAAK,SAClB,MAAMmQ,EAAUjH,EAChB,GAAIA,IAAWiH,EACd,GACC0D,GACA,OAAOA,GAAU,UACjB,CAAC,MAAM,QAAQA,CAAM,EACpB,CACD,MAAMtD,EAAUrH,EAChB,UAAW4I,KAAQ+B,EAClB,GACC,EACC/B,IACC,UACDA,IACC,WAGF,OAAA4C,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,qDACD,QACC,uBACD,OAAQ,CACP,mBACCiJ,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAIvB,IAAYrH,EAAQ,CACvB,GACC2K,EAAO,SACP,OACC,CACD,IAAIE,EACHF,EAAO,OACR,MAAMC,EACL5K,EACD,GACC,EACC,OAAO6K,GACN,UACD,SACCA,CAClB,GAGgB,OAAAW,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIyH,EACHwD,IACA5K,CACF,KACC,KAAIoH,EAAU,GAEf,GAAIA,EACH,GACCuD,EAAO,UACP,OACC,CACD,MAAMG,EACL9K,EACD,GACC,OAAO2K,EAAO,SACd,SAEA,OAAAa,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIyH,EACH0D,IACA9K,CACF,KACC,KAAIoH,EAAU,EAGjB,CACD,KACC,QAAAoE,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,qCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI6K,EAAUvD,IAAYjH,CAC3B,KACC,KAAIwK,EAAU,GAEf,GAAIA,EAAS,CACZ,GAAI1T,EAAK,OAAS,OAAW,CAC5B,IAAImU,EAASnU,EAAK,KAClB,MAAM6Q,EAAU3H,EAChB,GACC,OAAOiL,GAAW,SAElB,OAAAO,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,iCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAECsL,IADA,uBAGA,OAAAO,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,QACT,OAAQ,CACP,aACC,sBACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI6K,EACH7C,IAAY3H,CACd,KACC,KAAIwK,EAAU,GAEf,GAAIA,EAAS,CACZ,GAAI1T,EAAK,SAAW,OAAW,CAC9B,IAAIgV,EAAShV,EAAK,OAClB,MAAMiU,EAAU/K,EAChB,GAAIA,IAAW+K,GAEb,EAAAe,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CAChB,GAae,OAAAN,EAAW,OACV,CACC,CACC,aACC7L,EACA,UACD,WACC,mCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAGT,IAAI6K,EACHO,IAAY/K,CACd,KACC,KAAIwK,EAAU,GAEf,GAAIA,EAAS,CACZ,GACC1T,EAAK,SACL,OACC,CACD,IAAIiV,EACHjV,EAAK,OACN,MAAMkV,EAAUhM,EAChB,GACC,OAAO+L,GACP,SAEA,OAAAP,EAAW,OACV,CACC,CACC,aACC7L,EACA,UACD,WACC,mCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAER,GACC,EACCoM,IACC,qBACDA,IACC,qBAGF,OAAAP,EAAW,OACV,CACC,CACC,aACC7L,EACA,UACD,WACC,mCACD,QACC,OACD,OAAQ,CACP,cACC6J,GACE,MAAM,CAAC,EACP,WACA,OACA,IACtB,EACkB,QACC,4CACnB,CACA,EACsB,GAER,IAAIgB,EACHwB,IAAYhM,CACd,KACC,KAAIwK,EAAU,GAEf,GAAIA,EACH,GACC1T,EAAK,aACL,OACC,CACD,MAAMmV,EACLjM,EACD,GACC,OAAOlJ,EAAK,YACZ,UAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,cACD,WACC,uCACD,QACC,OACD,OAAQ,CACP,KAAM,SAC1B,EACmB,QACC,iBACpB,CACA,EACuB,GAER,IAAI6K,EACHyB,IACAjM,CACF,KACC,KAAIwK,EAAU,EAGjB,CACD,CACD,CACD,CACD,CACD,KACC,QAAAgB,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,iBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,iBAEnB,GAAIzL,IADYA,EAEf,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAI6P,EACJ,GACE7P,EAAK,UAAY,SAChB6P,EAAW,YACZ7P,EAAK,OAAS,SACb6P,EAAW,QAEb,OAAA6E,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,qBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBgH,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMuF,EAAUlM,EAChB,UAAWmM,KAAQrV,EAClB,GACC,EACCqV,IAAS,YACTA,IAAS,QACTA,IAAS,WAGV,OAAAX,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,iCACD,QACC,uBACD,OAAQ,CACP,mBACCwM,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAYlM,EAAQ,CACvB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIsV,EAAStV,EAAK,SAClB,MAAMqS,EAAUnJ,EAChB,GAAIA,IAAWmJ,EACd,GACCiD,GACA,OAAOA,GAAU,UACjB,CAAC,MAAM,QAAQA,CAAM,EACpB,CACD,MAAM9C,EAAUtJ,EAChB,UAAWqM,KAASD,EACnB,GACC,EACCC,IACC,UACDA,IACC,WAGF,OAAAb,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,qDACD,QACC,uBACD,OAAQ,CACP,mBACC0M,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAI/C,IAAYtJ,EAAQ,CACvB,GACCoM,EAAO,SACP,OACC,CACD,IAAIE,EACHF,EAAO,OACR,MAAMG,EACLvM,EACD,GACC,EACC,OAAOsM,GACN,UACD,SACCA,CAClB,GAGgB,OAAAd,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIuJ,EACHqD,IACAvM,CACF,KACC,KAAIkJ,EAAU,GAEf,GAAIA,EACH,GACCkD,EAAO,UACP,OACC,CACD,MAAMI,EACLxM,EACD,GACC,OAAOoM,EAAO,SACd,SAEA,OAAAZ,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIuJ,EACHsD,IACAxM,CACF,KACC,KAAIkJ,EAAU,EAGjB,CACD,KACC,QAAAsC,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,qCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI8M,EAAUtD,IAAYnJ,CAC3B,KACC,KAAIyM,EAAU,GAEf,GAAIA,EAAS,CACZ,GAAI3V,EAAK,OAAS,OAAW,CAC5B,IAAI4V,EAAS5V,EAAK,KAClB,MAAM6V,EAAU3M,EAChB,GACC,OAAO0M,GAAW,SAElB,OAAAlB,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,iCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GACqB+M,IAApB,gBAEA,OAAAlB,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,QACT,OAAQ,CACP,aACC,eACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI8M,EACHE,IAAY3M,CACd,KACC,KAAIyM,EAAU,GAEf,GAAIA,EACH,GACC3V,EAAK,UAAY,OAChB,CACD,MAAM8V,EAAU5M,EAChB,GACC,OAAOlJ,EAAK,SACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,WACD,WACC,oCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAI8M,EACHG,IAAY5M,CACd,KACC,KAAIyM,EAAU,EAGjB,CACD,CACD,CACD,KACC,QAAAjB,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,iBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,mBAEnB,GAAIzL,IADYA,EAEf,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAI2Q,EACJ,GACC3Q,EAAK,OAAS,SACb2Q,EAAW,QAEZ,OAAA+D,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,qBACZ,QAAS,WACT,OAAQ,CACP,gBAAiB8H,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMoF,EAAU7M,EAChB,UAAW8M,KAAShW,EACnB,GACC,EACCgW,IAAU,YACVA,IAAU,QACVA,IAAU,aAGX,OAAAtB,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,iCACD,QACC,uBACD,OAAQ,CACP,mBACCmN,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAY7M,EAAQ,CACvB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIiW,EAASjW,EAAK,SAClB,MAAMkW,EAAUhN,EAChB,GAAIA,IAAWgN,EACd,GACCD,GACA,OAAOA,GAAU,UACjB,CAAC,MAAM,QAAQA,CAAM,EACpB,CACD,MAAME,EAAUjN,EAChB,UAAWkN,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA1B,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,qDACD,QACC,uBACD,OAAQ,CACP,mBACCuN,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAYjN,EAAQ,CACvB,GACC+M,EAAO,SACP,OACC,CACD,IAAII,EACHJ,EAAO,OACR,MAAMK,EACLpN,EACD,GACC,EACC,OAAOmN,GACN,UACD,SACCA,CAClB,GAGgB,OAAA3B,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI0N,EACHD,IACApN,CACF,KACC,KAAIqN,EAAU,GAEf,GAAIA,EACH,GACCN,EAAO,UACP,OACC,CACD,MAAMO,EACLtN,EACD,GACC,OAAO+M,EAAO,SACd,SAEA,OAAAvB,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI0N,EACHC,IACAtN,CACF,KACC,KAAIqN,EAAU,EAGjB,CACD,KACC,QAAA7B,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,qCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI4N,GAAUP,IAAYhN,CAC3B,KACC,KAAIuN,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAIzW,EAAK,OAAS,OAAW,CAC5B,IAAI0W,EAAS1W,EAAK,KAClB,MAAM2W,EAAUzN,EAChB,GACC,OAAOwN,GAAW,SAElB,OAAAhC,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,iCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GACuB6N,IAAtB,kBAEA,OAAAhC,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,QACT,OAAQ,CACP,aACC,iBACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI4N,GACHE,IAAYzN,CACd,KACC,KAAIuN,GAAU,GAEf,GAAIA,GACH,GACCzW,EAAK,YAAc,OAClB,CACD,MAAM4W,EAAU1N,EAChB,GACC,OAAOlJ,EAAK,WACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,aACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAI4N,GACHG,IAAY1N,CACd,KACC,KAAIuN,GAAU,EAGjB,CACD,CACD,CACD,KACC,QAAA/B,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,iBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,aAEnB,GAAIzL,IADYA,EAEf,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAI2R,EACJ,GACE3R,EAAK,OAAS,SACb2R,EAAW,SACZ3R,EAAK,OAAS,SACb2R,EAAW,QAEb,OAAA+C,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,qBACZ,QAAS,WACT,OAAQ,CACP,gBAAiB8I,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMkF,EAAU3N,EAChB,UAAW4N,KAAS9W,EACnB,GACC,CAACyI,GAAM,KACNiK,GAAS,MAAM,CAAC,EAAE,WAClBoE,CACZ,EAEW,OAAApC,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,iCACD,QACC,uBACD,OAAQ,CACP,mBACCiO,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAY3N,EAAQ,CACvB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAI+W,EAAS/W,EAAK,SAClB,MAAMgX,EAAU9N,EAChB,GAAIA,IAAW8N,EACd,GACCD,GACA,OAAOA,GAAU,UACjB,CAAC,MAAM,QAAQA,CAAM,EACpB,CACD,MAAME,EAAW/N,EACjB,UAAWgO,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAAxC,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,qDACD,QACC,uBACD,OAAQ,CACP,mBACCqO,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAa/N,EAAQ,CACxB,GACC6N,EAAO,SACP,OACC,CACD,IAAII,EACHJ,EAAO,OACR,MAAMK,EACLlO,EACD,GACC,EACC,OAAOiO,GACN,UACD,SACCA,CAClB,GAGgB,OAAAzC,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIwO,EACHD,IACAlO,CACF,KACC,KAAImO,EAAU,GAEf,GAAIA,EACH,GACCN,EAAO,UACP,OACC,CACD,MAAMO,EACLpO,EACD,GACC,OAAO6N,EAAO,SACd,SAEA,OAAArC,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIwO,EACHC,IACApO,CACF,KACC,KAAImO,EAAU,EAGjB,CACD,KACC,QAAA3C,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,qCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI0O,EAAUP,IAAY9N,CAC3B,KACC,KAAIqO,EAAU,GAEf,GAAIA,EAAS,CACZ,GAAIvX,EAAK,OAAS,OAAW,CAC5B,IAAIwX,EAASxX,EAAK,KAClB,MAAMyX,EAAWvO,EACjB,GACC,OAAOsO,GAAW,SAElB,OAAA9C,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,iCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAoB2O,IAAhB,YACH,OAAA9C,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,QACT,OAAQ,CACP,aACC,WACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI0O,EACHE,IAAavO,CACf,KACC,KAAIqO,EAAU,GAEf,GAAIA,EAAS,CACZ,GAAIvX,EAAK,OAAS,OAAW,CAC5B,MAAM0X,EAAWxO,EAEfiB,EAAWnK,EAAK,KAAM,CACtB,aACC6I,EACA,QACD,WAAY7I,EACZ,mBACC,OACD,SAAAgJ,CACf,CAAe,IAEDC,EACCA,IAAY,KACTkB,EAAW,OACXlB,EAAQ,OACRkB,EAAW,MAC7B,EACcjB,EAASD,EAAQ,QAElB,IAAIsO,EACHG,IAAaxO,CACf,KACC,KAAIqO,EAAU,GAEf,GAAIA,EAAS,CACZ,GACCvX,EAAK,mBACL,OACC,CACD,MAAM2X,EAAWzO,EACjB,GACC,OAAOlJ,EAAK,kBACZ,UAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,6CACD,QACC,OACD,OAAQ,CACP,KAAM,SACzB,EACkB,QACC,iBACnB,CACA,EACsB,GAER,IAAI0O,EACHI,IAAazO,CACf,KACC,KAAIqO,EAAU,GAEf,GAAIA,EAAS,CACZ,GACCvX,EAAK,cACL,OACC,CACD,MAAM4X,EACL1O,EACD,GACC,OAAOlJ,EAAK,aACZ,UAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,eACD,WACC,wCACD,QACC,OACD,OAAQ,CACP,KAAM,SAC1B,EACmB,QACC,iBACpB,CACA,EACuB,GAER,IAAI0O,EACHK,IACA1O,CACF,KACC,KAAIqO,EAAU,GAEf,GAAIA,EAAS,CACZ,GACCvX,EAAK,aACL,OACC,CACD,IAAI6X,EACH7X,EAAK,WACN,MAAM8X,EACL5O,EACD,GACCA,IACA4O,EAEA,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACnB,EAEkB,UAAWE,KAASF,EAAQ,CAC3B,MAAMG,EACL9O,EACD,GACC,OAAO2O,EACNE,CACrB,GACoB,SAEA,OAAArD,EAAW,OACV,CACC,CACC,aACC7L,EACA,eACAkP,EACE,QACA,KACA,IAC1B,EAC0B,QACA,MACA,IAC1B,EACuB,WACC,4DACD,QACC,OACD,OAAQ,CACP,KAAM,QAC9B,EACuB,QACC,gBACxB,CACA,EAC2B,GAER,IAAIE,EACHD,IACA9O,EACD,GACC,CAAC+O,EAED,KAEF,KAEA,QAAAvD,EAAW,OACV,CACC,CACC,aACC7L,EACA,cACD,WACC,uCACD,QACC,OACD,OAAQ,CACP,KAAM,QAC5B,EACqB,QACC,gBACtB,CACA,EACyB,GAGT,IAAI0O,EACHO,IACA5O,CACF,KACC,KAAIqO,EAAU,GAEf,GAAIA,EAAS,CACZ,GACCvX,EAAK,iBACL,OACC,CACD,MAAMkY,EACLhP,EACD,GACC,OAAOlJ,EAAK,gBACZ,UAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,kBACD,WACC,2CACD,QACC,OACD,OAAQ,CACP,KAAM,SAC5B,EACqB,QACC,iBACtB,CACA,EACyB,GAER,IAAI0O,EACHW,IACAhP,CACF,KACC,KAAIqO,EAAU,GAEf,GAAIA,EAAS,CACZ,GACCvX,EAAK,wBACL,OACC,CACD,MAAMmY,EACLjP,EACD,GACC,OAAOlJ,EAAK,uBACZ,SAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,yBACD,WACC,kDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC7B,EACsB,QACC,gBACvB,CACA,EAC0B,GAER,IAAI0O,EACHY,IACAjP,CACF,KACC,KAAIqO,EAAU,GAEf,GACCA,EACC,CACD,GACCvX,EAAK,cACL,OACC,CACD,IAAIoY,EACHpY,EAAK,YACN,MAAMqY,EACLnP,EACD,GACC,OAAOkP,GACP,SAEA,OAAA1D,EAAW,OACV,CACC,CACC,aACC7L,EACA,eACD,WACC,wCACD,QACC,OACD,OAAQ,CACP,KAAM,QAC9B,EACuB,QACC,gBACxB,CACA,EAC2B,GAER,GACC,EACCuP,IACC,UACDA,IACC,kBACDA,IACC,OAGF,OAAA1D,EAAW,OACV,CACC,CACC,aACC7L,EACA,eACD,WACC,wCACD,QACC,OACD,OAAQ,CACP,cACC6J,GACE,MAAM,CAAC,EACP,WACA,YACA,IAC3B,EACuB,QACC,4CACxB,CACA,EAC2B,GAER,IAAI6E,EACHc,IACAnP,CACF,KACC,KAAIqO,EAAU,GAEf,GACCA,EACC,CACD,GACCvX,EAAK,aACL,OACC,CACD,IAAIsY,EACHtY,EAAK,WACN,MAAMuY,EACLrP,EACD,GACCA,IACAqP,EAEA,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACvB,EAEsB,UAAWE,KAASF,EAAQ,CAC3B,MAAMG,EACLvP,EACD,GACC,OAAOoP,EACNE,CACzB,GACwB,SAEA,OAAA9D,EAAW,OACV,CACC,CACC,aACC7L,EACA,eACA2P,EACE,QACA,KACA,IAC9B,EAC8B,QACA,MACA,IAC9B,EAC2B,WACC,4DACD,QACC,OACD,OAAQ,CACP,KAAM,QAClC,EAC2B,QACC,gBAC5B,CACA,EAC+B,GAER,IAAIE,GACHD,IACAvP,EACD,GACC,CAACwP,GAED,KAEF,KAEA,QAAAhE,EAAW,OACV,CACC,CACC,aACC7L,EACA,cACD,WACC,uCACD,QACC,OACD,OAAQ,CACP,KAAM,QAChC,EACyB,QACC,gBAC1B,CACA,EAC6B,GAGT,IAAI0O,EACHgB,IACArP,CACF,KACC,KAAIqO,EAAU,GAEf,GACCA,EACC,CACD,GACCvX,EAAK,cACL,OACC,CACD,MAAM2Y,EACLzP,EACD,GACC,OAAOlJ,EAAK,aACZ,UAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,eACD,WACC,wCACD,QACC,OACD,OAAQ,CACP,KAAM,SAChC,EACyB,QACC,iBAC1B,CACA,EAC6B,GAER,IAAI0O,EACHoB,IACAzP,CACF,KACC,KAAIqO,EAAU,GAEf,GACCA,EAEA,GACCvX,EAAK,WACL,OACC,CACD,IAAI4Y,EACH5Y,EAAK,SACN,MAAM6Y,EACL3P,EACD,GACC,OAAO0P,GACP,SAEA,OAAAlE,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,qCACD,QACC,OACD,OAAQ,CACP,KAAM,QACjC,EAC0B,QACC,gBAC3B,CACA,EAC8B,GAER,GACC,EACC+P,IACC,mBACDA,IACC,WAGF,OAAAlE,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,qCACD,QACC,OACD,OAAQ,CACP,cACC6J,GACE,MAAM,CAAC,EACP,WACA,SACA,IAC9B,EAC0B,QACC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EACLnR,EACD,GACC,EACC,OAAOkR,GACN,UACD,SACCA,CAClB,GAGgB,OAAA1F,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIyR,EACHD,IACAnR,CACF,KACC,KAAIoR,EAAU,GAEf,GAAIA,EACH,GACCN,EAAO,UACP,OACC,CACD,MAAMO,EACLrR,EACD,GACC,OAAO8Q,EAAO,SACd,SAEA,OAAAtF,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIyR,EACHC,IACArR,CACF,KACC,KAAIoR,EAAU,EAGjB,CACD,KACC,QAAA5F,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,qCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI2R,EAAUP,IAAa/Q,CAC5B,KACC,KAAIsR,EAAU,GAEf,GAAIA,EAAS,CACZ,GAAIxa,EAAK,OAAS,OAAW,CAC5B,IAAIya,EAASza,EAAK,KAClB,MAAM0a,EAAWxR,EACjB,GACC,OAAOuR,GAAW,SAElB,OAAA/F,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,iCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAEC4R,IADA,uBAGA,OAAA/F,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,QACT,OAAQ,CACP,aACC,sBACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI2R,EACHE,IAAaxR,CACf,KACC,KAAIsR,EAAU,GAEf,GAAIA,EAAS,CACZ,GACCxa,EAAK,oBACL,OACC,CACD,MAAM2a,EAAWzR,EAEfiB,EACAnK,EAAK,kBACL,CACC,aACC6I,EACA,qBACD,WACC7I,EACD,mBACC,oBACD,SAAAgJ,CAChB,CACA,IAEcC,EACCA,IAAY,KACTkB,EAAW,OACXlB,EAAQ,OACRkB,EAAW,MAC7B,EACcjB,EAASD,EAAQ,QAElB,IAAIuR,EACHG,IAAazR,CACf,KACC,KAAIsR,EAAU,GAEf,GAAIA,EACH,GACCxa,EAAK,YACL,OACC,CACD,MAAM4a,EAAW1R,EACjB,GACC,OAAOlJ,EAAK,WACZ,SAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,aACD,WACC,sCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAER,IAAI2R,EACHI,IAAa1R,CACf,KACC,KAAIsR,EAAU,EAGjB,CACD,CACD,CACD,CACD,KACC,QAAA9F,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,iBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,iBAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAI6a,EACJ,GACE7a,EAAK,aAAe,SACnB6a,EAAY,eACb7a,EAAK,OAAS,SACb6a,EAAY,QAEd,OAAAnG,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,qBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBgS,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAW5R,EACjB,UAAW6R,KAAS/a,EACnB,GACC,EACC+a,IAAU,YACVA,IACC,sBACDA,IAAU,QACVA,IAAU,cACVA,IAAU,iBACVA,IAAU,WAGX,OAAArG,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,iCACD,QACC,uBACD,OAAQ,CACP,mBACCkS,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAa5R,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIgb,EAAShb,EAAK,SAClB,MAAMib,EAAW/R,EACjB,GAAIA,IAAW+R,EACd,GACCD,GACA,OAAOA,GAAU,UACjB,CAAC,MAAM,QAAQA,CAAM,EACpB,CACD,MAAME,EAAWhS,EACjB,UAAWiS,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAAzG,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,qDACD,QACC,uBACD,OAAQ,CACP,mBACCsS,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAahS,EAAQ,CACxB,GACC8R,EAAO,SACP,OACC,CACD,IAAII,EACHJ,EAAO,OACR,MAAMK,EACLnS,EACD,GACC,EACC,OAAOkS,GACN,UACD,SACCA,CAClB,GAGgB,OAAA1G,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIyS,EACHD,IACAnS,CACF,KACC,KAAIoS,EAAU,GAEf,GAAIA,EACH,GACCN,EAAO,UACP,OACC,CACD,MAAMO,EACLrS,EACD,GACC,OAAO8R,EAAO,SACd,SAEA,OAAAtG,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIyS,EACHC,IACArS,CACF,KACC,KAAIoS,EAAU,EAGjB,CACD,KACC,QAAA5G,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,qCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI2S,EAAUP,IAAa/R,CAC5B,KACC,KAAIsS,EAAU,GAEf,GAAIA,EAAS,CACZ,GACCxb,EAAK,qBACL,OACC,CACD,IAAIyb,EACHzb,EAAK,mBACN,MAAM0b,EAAWxS,EACjB,GACC,OAAOuS,GAAW,SAElB,OAAA/G,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,sBACD,WACC,+CACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GACC,EACC4S,IACC,aACDA,IAAW,QACXA,IAAW,SAGZ,OAAA/G,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,sBACD,WACC,+CACD,QAAS,OACT,OAAQ,CACP,cACC6J,GACE,MAAM,CAAC,EACP,WACA,mBACA,IACnB,EACe,QACC,4CAChB,CACA,EACoB,GAER,IAAI8I,EACHE,IAAaxS,CACf,KACC,KAAIsS,EAAU,GAEf,GAAIA,EAAS,CACZ,GAAIxb,EAAK,OAAS,OAAW,CAC5B,IAAI2b,EAAS3b,EAAK,KAClB,MAAM4b,EAAW1S,EACjB,GACC,OAAOyS,GACP,SAEA,OAAAjH,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,iCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,GAEC8S,IADA,gBAGA,OAAAjH,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QACC,QACD,OAAQ,CACP,aACC,eAClB,EACgB,QACC,2BACjB,CACA,EACqB,GAER,IAAI2S,EACHI,IAAa1S,CACf,KACC,KAAIsS,EAAU,GAEf,GAAIA,EAAS,CACZ,GACCxb,EAAK,aACL,OACC,CACD,IAAI6b,EACH7b,EAAK,WACN,MAAM8b,EAAW5S,EACX6S,EAAW7S,EACjB,IAAI8S,EAAU,GACd,MAAMC,EAAW/S,EAEfiB,EACA0R,EACA,CACC,aACChT,EACA,cACD,WACC7I,EACD,mBACC,aACD,SAAAgJ,CACjB,CACA,IAEeC,EACCA,IAAY,KACTkB,EAAW,OACXlB,EAAQ,OACRkB,EAAW,MAC9B,EACejB,EACCD,EAAQ,QAEV,IAAIO,EACHyS,IAAa/S,EAGd,GAFA8S,EACCA,GAAWxS,EACR,CAACwS,EAAS,CACb,MAAME,EACLhT,EAECmC,GACAwQ,EACA,CACC,aACChT,EACA,cACD,WACC7I,EACD,mBACC,aACD,SAAAgJ,CAClB,CACA,IAEgBC,EACCA,IACA,KACGoC,GAAW,OACXpC,EAAQ,OACRoC,GAAW,MAC/B,EACgBnC,EACCD,EAAQ,QAEV,IAAIO,EACH0S,IACAhT,EACD8S,EACCA,GACAxS,CACF,CACA,GAAKwS,EA6BJ9S,EAAS6S,EAER9S,IAAY,OAER8S,EACH9S,EAAQ,OACP8S,EAED9S,EACC,UAtCU,CACb,MAAMK,EAAO,CACZ,aACCT,EACA,cACD,WACC,wCACD,QACC,QACD,OAAQ,CAAA,EACR,QACC,8BACjB,EACe,OACCI,IAAY,KAEZA,EAAU,CACTK,CACjB,EAEgBL,EAAQ,KACPK,CACjB,EAEeJ,IACAwL,EAAW,OACVzL,EACM,EACR,CAcA,IAAIuS,EACHM,IAAa5S,CACf,KACC,KAAIsS,EAAU,GAEf,GAAIA,EAAS,CACZ,GACCxb,EAAK,gBACL,OACC,CACD,MAAMmc,EACLjT,EAECiB,EACAnK,EAAK,cACL,CACC,aACC6I,EACA,iBACD,WACC7I,EACD,mBACC,gBACD,SAAAgJ,CAClB,CACA,IAEgBC,EACCA,IACA,KACGkB,EAAW,OACXlB,EAAQ,OACRkB,EAAW,MAC/B,EACgBjB,EACCD,EAAQ,QAEV,IAAIuS,EACHW,IACAjT,CACF,KACC,KAAIsS,EAAU,GAEf,GAAIA,EACH,GACCxb,EAAK,UACL,OACC,CACD,IAAIoc,EACHpc,EAAK,QACN,MAAMqc,EACLnT,EAGD,GACCA,IAFAA,EAKA,GACCkT,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACnB,EACmB,CACD,MAAME,EACLpT,EACD,UAAWqT,KAASH,EACnB,GACC,EACCG,IACC,YACDA,IACC,qBACDA,IACC,WACDA,IACC,oBACDA,IACC,qBAGF,OAAA7H,EAAW,OACV,CACC,CACC,aACC7L,EACA,WACD,WACC,0DACD,QACC,uBACD,OAAQ,CACP,mBACC0T,CACzB,EACuB,QACC,qCACxB,CACA,EAC2B,GAIT,GACCD,IACApT,EACC,CACD,GACCkT,EAAO,WACP,OACC,CACD,MAAMI,EACLtT,EACD,GACC,OAAOkT,EAAO,UACd,UAEA,OAAA1H,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,8DACD,QACC,OACD,OAAQ,CACP,KAAM,SAC/B,EACwB,QACC,iBACzB,CACA,EAC4B,GAER,IAAI4T,EACHD,IACAtT,CACF,KACC,KAAIuT,EAAU,GAEf,GACCA,EACC,CACD,GACCL,EAAO,oBACP,OACC,CACD,IAAIM,EACHN,EAAO,kBACR,MAAMO,EACLzT,EACD,GACCA,IACAyT,GAGC,EAAAD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACxB,GAeuB,OAAAhI,EAAW,OACV,CACC,CACC,aACC7L,EACA,6BACD,WACC,uEACD,QACC,OACD,OAAQ,CACP,KAAM,QACjC,EAC0B,QACC,gBAC3B,CACA,EAC8B,GAGT,IAAI4T,EACHE,IACAzT,CACF,KACC,KAAIuT,EAAU,GAEf,GACCA,EACC,CACD,GACCL,EAAO,UACP,OACC,CACD,IAAIQ,EACHR,EAAO,QACR,MAAMS,EACL3T,EACD,GACC,OAAO0T,GACP,SAEA,OAAAlI,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,6DACD,QACC,OACD,OAAQ,CACP,KAAM,QACjC,EAC0B,QACC,gBAC3B,CACA,EAC8B,GAER,GACC,EACC+T,IACC,eACDA,IACC,SAGF,OAAAlI,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,6DACD,QACC,OACD,OAAQ,CACP,cACC8J,GACE,WACA,QACA,IAC9B,EAC0B,QACC,4CAC3B,CACA,EAC8B,GAER,IAAI8J,EACHI,IACA3T,CACF,KACC,KAAIuT,EAAU,GAEf,GACCA,EACC,CACD,GACCL,EAAO,mBACP,OACC,CACD,MAAMU,EACL5T,EACD,GACC,OAAOkT,EAAO,kBACd,SAEA,OAAA1H,EAAW,OACV,CACC,CACC,aACC7L,EACA,4BACD,WACC,sEACD,QACC,OACD,OAAQ,CACP,KAAM,QAClC,EAC2B,QACC,gBAC5B,CACA,EAC+B,GAER,IAAI4T,EACHK,IACA5T,CACF,KACC,KAAIuT,EAAU,GAEf,GACCA,EAEA,GACCL,EAAO,oBACP,OACC,CACD,MAAMW,EACL7T,EACD,GACC,OAAOkT,EAAO,mBACd,SAEA,OAAA1H,EAAW,OACV,CACC,CACC,aACC7L,EACA,6BACD,WACC,uEACD,QACC,OACD,OAAQ,CACP,KAAM,QACnC,EAC4B,QACC,gBAC7B,CACA,EACgC,GAER,IAAI4T,EACHM,IACA7T,CACF,KACC,KAAIuT,EAAU,EAGjB,CACD,CACD,CACD,CACD,KACC,QAAA/H,EAAW,OACV,CACC,CACC,aACC7L,EACA,WACD,WACC,0CACD,QACC,OACD,OAAQ,CACP,KAAM,QAC5B,EACqB,QACC,gBACtB,CACA,EACyB,GAGT,IAAI2S,EACHa,IACAnT,CACF,KACC,KAAIsS,EAAU,EAGjB,CACD,CACD,CACD,CACD,CACD,CACD,KACC,QAAA9G,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,iBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,gBAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIgd,EACJ,GACEhd,EAAK,OAAS,SACbgd,EAAY,SACbhd,EAAK,YAAc,SAClBgd,EAAY,aAEd,OAAAtI,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBmU,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAW/T,EACjB,UAAWgU,KAASld,EACnB,GACC,EACCkd,IAAU,YACVA,IACC,sBACDA,IAAU,QACVA,IAAU,aACVA,IAAU,gBACVA,IAAU,WAGX,OAAAxI,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCqU,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAa/T,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAImd,EAASnd,EAAK,SAClB,MAAMod,EAAWlU,EACjB,GAAIA,IAAWkU,EACd,GACCD,GACA,OAAOA,GAAU,UACjB,CAAC,MAAM,QAAQA,CAAM,EACpB,CACD,MAAME,EAAWnU,EACjB,UAAWoU,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA5I,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACCyU,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAanU,EAAQ,CACxB,GACCiU,EAAO,SACP,OACC,CACD,IAAII,EACHJ,EAAO,OACR,MAAMK,EACLtU,EACD,GACC,EACC,OAAOqU,GACN,UACD,SACCA,CAClB,GAGgB,OAAA7I,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI4U,EACHD,IACAtU,CACF,KACC,KAAIuU,EAAU,GAEf,GAAIA,EACH,GACCN,EAAO,UACP,OACC,CACD,MAAMO,EACLxU,EACD,GACC,OAAOiU,EAAO,SACd,SAEA,OAAAzI,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI4U,EACHC,IACAxU,CACF,KACC,KAAIuU,EAAU,EAGjB,CACD,KACC,QAAA/I,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI8U,EAAUP,IAAalU,CAC5B,KACC,KAAIyU,EAAU,GAEf,GAAIA,EAAS,CACZ,GACC3d,EAAK,qBACL,OACC,CACD,IAAI4d,EACH5d,EAAK,mBACN,MAAM6d,EAAW3U,EACjB,GACC,OAAO0U,GAAW,SAElB,OAAAlJ,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,sBACD,WACC,gDACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GACC,EACC+U,IACC,aACDA,IAAW,QACXA,IAAW,SAGZ,OAAAlJ,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,sBACD,WACC,gDACD,QAAS,OACT,OAAQ,CACP,cACC6J,GACE,MAAM,EAAE,EACR,WACA,mBACA,IACnB,EACe,QACC,4CAChB,CACA,EACoB,GAER,IAAIiL,EACHE,IAAa3U,CACf,KACC,KAAIyU,EAAU,GAEf,GAAIA,EAAS,CACZ,GAAI3d,EAAK,OAAS,OAAW,CAC5B,IAAI8d,EAAS9d,EAAK,KAClB,MAAM+d,EAAW7U,EACjB,GACC,OAAO4U,GACP,SAEA,OAAApJ,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,GAECiV,IADA,eAGA,OAAApJ,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QACC,QACD,OAAQ,CACP,aACC,cAClB,EACgB,QACC,2BACjB,CACA,EACqB,GAER,IAAI8U,EACHI,IAAa7U,CACf,KACC,KAAIyU,EAAU,GAEf,GAAIA,EAAS,CACZ,GACC3d,EAAK,YACL,OACC,CACD,IAAIge,EACHhe,EAAK,UACN,MAAMie,EAAW/U,EACXgV,EAAWhV,EACjB,IAAIiV,EAAU,GACd,MAAMC,EAAWlV,EAEfiB,EACA6T,EACA,CACC,aACCnV,EACA,aACD,WACC7I,EACD,mBACC,YACD,SAAAgJ,CACjB,CACA,IAEeC,EACCA,IAAY,KACTkB,EAAW,OACXlB,EAAQ,OACRkB,EAAW,MAC9B,EACejB,EACCD,EAAQ,QAEV,IAAIyD,EACH0R,IAAalV,EAGd,GAFAiV,EACCA,GAAWzR,EACR,CAACyR,EAAS,CACb,MAAME,EACLnV,EAECmC,GACA2S,EACA,CACC,aACCnV,EACA,aACD,WACC7I,EACD,mBACC,YACD,SAAAgJ,CAClB,CACA,IAEgBC,EACCA,IACA,KACGoC,GAAW,OACXpC,EAAQ,OACRoC,GAAW,MAC/B,EACgBnC,EACCD,EAAQ,QAEV,IAAIyD,EACH2R,IACAnV,EACDiV,EACCA,GACAzR,CACF,CACA,GAAKyR,EA6BJjV,EAASgV,EAERjV,IAAY,OAERiV,EACHjV,EAAQ,OACPiV,EAEDjV,EACC,UAtCU,CACb,MAAMM,EAAO,CACZ,aACCV,EACA,aACD,WACC,wCACD,QACC,QACD,OAAQ,CAAA,EACR,QACC,8BACjB,EACe,OACCI,IAAY,KAEZA,EAAU,CACTM,CACjB,EAEgBN,EAAQ,KACPM,CACjB,EAEeL,IACAwL,EAAW,OACVzL,EACM,EACR,CAcA,IAAI0U,EACHM,IAAa/U,CACf,KACC,KAAIyU,EAAU,GAEf,GAAIA,EAAS,CACZ,GACC3d,EAAK,eACL,OACC,CACD,MAAMse,EACLpV,EAECiB,EACAnK,EAAK,aACL,CACC,aACC6I,EACA,gBACD,WACC7I,EACD,mBACC,eACD,SAAAgJ,CAClB,CACA,IAEgBC,EACCA,IACA,KACGkB,EAAW,OACXlB,EAAQ,OACRkB,EAAW,MAC/B,EACgBjB,EACCD,EAAQ,QAEV,IAAI0U,EACHW,IACApV,CACF,KACC,KAAIyU,EAAU,GAEf,GAAIA,EACH,GACC3d,EAAK,UACL,OACC,CACD,IAAIue,EACHve,EAAK,QACN,MAAMwe,EACLtV,EAGD,GACCA,IAFAA,EAKA,GACCqV,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACnB,EACmB,CACD,MAAME,EACLvV,EACD,UAAWwV,KAASH,EACnB,GACC,EACCG,IACC,YACDA,IACC,wBACDA,IACC,WACDA,IACC,oBACDA,IACC,qBAGF,OAAAhK,EAAW,OACV,CACC,CACC,aACC7L,EACA,WACD,WACC,yDACD,QACC,uBACD,OAAQ,CACP,mBACC6V,CACzB,EACuB,QACC,qCACxB,CACA,EAC2B,GAIT,GACCD,IACAvV,EACC,CACD,GACCqV,EAAO,WACP,OACC,CACD,MAAMI,EACLzV,EACD,GACC,OAAOqV,EAAO,UACd,UAEA,OAAA7J,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,6DACD,QACC,OACD,OAAQ,CACP,KAAM,SAC/B,EACwB,QACC,iBACzB,CACA,EAC4B,GAER,IAAI+V,EACHD,IACAzV,CACF,KACC,KAAI0V,EAAU,GAEf,GACCA,EACC,CACD,GACCL,EAAO,uBACP,OACC,CACD,MAAMM,EACL3V,EACD,GACC,OAAOqV,EAAO,sBACd,UAEA,OAAA7J,EAAW,OACV,CACC,CACC,aACC7L,EACA,gCACD,WACC,yEACD,QACC,OACD,OAAQ,CACP,KAAM,SAChC,EACyB,QACC,iBAC1B,CACA,EAC6B,GAER,IAAI+V,EACHC,IACA3V,CACF,KACC,KAAI0V,EAAU,GAEf,GACCA,EACC,CACD,GACCL,EAAO,UACP,OACC,CACD,IAAIO,EACHP,EAAO,QACR,MAAMQ,EACL7V,EACD,GACC,OAAO4V,GACP,SAEA,OAAApK,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,4DACD,QACC,OACD,OAAQ,CACP,KAAM,QACjC,EAC0B,QACC,gBAC3B,CACA,EAC8B,GAER,GACC,EACCiW,IACC,cACDA,IACC,SAGF,OAAApK,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,4DACD,QACC,OACD,OAAQ,CACP,cACC+J,GACE,WACA,QACA,IAC9B,EAC0B,QACC,4CAC3B,CACA,EAC8B,GAER,IAAIgM,EACHG,IACA7V,CACF,KACC,KAAI0V,EAAU,GAEf,GACCA,EACC,CACD,GACCL,EAAO,mBACP,OACC,CACD,MAAMS,EACL9V,EACD,GACC,OAAOqV,EAAO,kBACd,SAEA,OAAA7J,EAAW,OACV,CACC,CACC,aACC7L,EACA,4BACD,WACC,qEACD,QACC,OACD,OAAQ,CACP,KAAM,QAClC,EAC2B,QACC,gBAC5B,CACA,EAC+B,GAER,IAAI+V,EACHI,IACA9V,CACF,KACC,KAAI0V,EAAU,GAEf,GACCA,EAEA,GACCL,EAAO,oBACP,OACC,CACD,MAAMU,EACL/V,EACD,GACC,OAAOqV,EAAO,mBACd,SAEA,OAAA7J,EAAW,OACV,CACC,CACC,aACC7L,EACA,6BACD,WACC,sEACD,QACC,OACD,OAAQ,CACP,KAAM,QACnC,EAC4B,QACC,gBAC7B,CACA,EACgC,GAER,IAAI+V,EACHK,IACA/V,CACF,KACC,KAAI0V,EAAU,EAGjB,CACD,CACD,CACD,CACD,KACC,QAAAlK,EAAW,OACV,CACC,CACC,aACC7L,EACA,WACD,WACC,yCACD,QACC,OACD,OAAQ,CACP,KAAM,QAC5B,EACqB,QACC,gBACtB,CACA,EACyB,GAGT,IAAI8U,EACHa,IACAtV,CACF,KACC,KAAIyU,EAAU,EAGjB,CACD,CACD,CACD,CACD,CACD,CACD,KACC,QAAAjJ,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,SAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIkf,EACJ,GACClf,EAAK,OAAS,SACbkf,EAAY,QAEb,OAAAxK,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBqW,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWjW,EACjB,UAAWkW,KAASpf,EACnB,GACC,EACCof,IAAU,YACVA,IAAU,QACVA,IAAU,YACVA,IAAU,YAGX,OAAA1K,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCuW,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAajW,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIqf,EAASrf,EAAK,SAClB,MAAMsf,EAAWpW,EACjB,GAAIA,IAAWoW,EACd,GACCD,GACA,OAAOA,GAAU,UACjB,CAAC,MAAM,QAAQA,CAAM,EACpB,CACD,MAAME,EAAWrW,EACjB,UAAWsW,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA9K,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC2W,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAarW,EAAQ,CACxB,GACCmW,EAAO,SACP,OACC,CACD,IAAII,EACHJ,EAAO,OACR,MAAMK,EACLxW,EACD,GACC,EACC,OAAOuW,GACN,UACD,SACCA,CAClB,GAGgB,OAAA/K,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI8W,EACHD,IACAxW,CACF,KACC,KAAIyW,EAAU,GAEf,GAAIA,EACH,GACCN,EAAO,UACP,OACC,CACD,MAAMO,EACL1W,EACD,GACC,OAAOmW,EAAO,SACd,SAEA,OAAA3K,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI8W,EACHC,IACA1W,CACF,KACC,KAAIyW,EAAU,EAGjB,CACD,KACC,QAAAjL,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAIgX,EAAUP,IAAapW,CAC5B,KACC,KAAI2W,EAAU,GAEf,GAAIA,EAAS,CACZ,GAAI7f,EAAK,OAAS,OAAW,CAC5B,IAAI8f,EAAS9f,EAAK,KAClB,MAAM+f,EAAW7W,EACjB,GACC,OAAO4W,GAAW,SAElB,OAAApL,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAgBiX,IAAZ,QACH,OAAApL,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,OACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAIgX,EACHE,IAAa7W,CACf,KACC,KAAI2W,EAAU,GAEf,GAAIA,EAAS,CACZ,GACC7f,EAAK,WAAa,OACjB,CACD,MAAMggB,EAAW9W,EACjB,GACC,OAAOlJ,EAAK,UACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAIgX,EACHG,IAAa9W,CACf,KACC,KAAI2W,EAAU,GAEf,GAAIA,EACH,GACC7f,EAAK,WACL,OACC,CACD,MAAMigB,EAAW/W,EACjB,GACC,OAAOlJ,EAAK,UACZ,SAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAER,IAAIgX,EACHI,IAAa/W,CACf,KACC,KAAI2W,EAAU,EAGjB,CACD,CACD,CACD,CACD,KACC,QAAAnL,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,SAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIkgB,EACJ,GACElgB,EAAK,OAAS,SACbkgB,EAAY,SACblgB,EAAK,OAAS,SACbkgB,EAAY,QAEd,OAAAxL,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBqX,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWjX,EACjB,UAAWkX,KAASpgB,EACnB,GACC,EACCogB,IAAU,YACVA,IAAU,QACVA,IAAU,QAGX,OAAA1L,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCuX,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAajX,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIqgB,EAASrgB,EAAK,SAClB,MAAMsgB,EAAWpX,EACjB,GAAIA,IAAWoX,EACd,GACCD,GACA,OAAOA,GAAU,UACjB,CAAC,MAAM,QAAQA,CAAM,EACpB,CACD,MAAME,EAAWrX,EACjB,UAAWsX,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA9L,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC2X,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAarX,EAAQ,CACxB,GACCmX,EAAO,SACP,OACC,CACD,IAAII,EACHJ,EAAO,OACR,MAAMK,EACLxX,EACD,GACC,EACC,OAAOuX,GACN,UACD,SACCA,CAClB,GAGgB,OAAA/L,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI8X,EACHD,IACAxX,CACF,KACC,KAAIyX,EAAU,GAEf,GAAIA,EACH,GACCN,EAAO,UACP,OACC,CACD,MAAMO,EACL1X,EACD,GACC,OAAOmX,EAAO,SACd,SAEA,OAAA3L,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI8X,EACHC,IACA1X,CACF,KACC,KAAIyX,EAAU,EAGjB,CACD,KACC,QAAAjM,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAIgY,GAAUP,IAAapX,CAC5B,KACC,KAAI2X,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAI7gB,EAAK,OAAS,OAAW,CAC5B,IAAI8gB,EAAS9gB,EAAK,KAClB,MAAM+gB,EAAW7X,EACjB,GACC,OAAO4X,GAAW,SAElB,OAAApM,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAgBiY,IAAZ,QACH,OAAApM,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,OACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAIgY,GACHE,IAAa7X,CACf,KACC,KAAI2X,GAAU,GAEf,GAAIA,GACH,GAAI7gB,EAAK,OAAS,OAAW,CAC5B,MAAMghB,EAAW9X,EACjB,GACC,OAAOlJ,EAAK,MACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAIgY,GACHG,IAAa9X,CACf,KACC,KAAI2X,GAAU,EAGjB,CACD,CACD,CACD,KACC,QAAAnM,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,MAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIihB,EACJ,GACEjhB,EAAK,WAAa,SACjBihB,EAAY,aACbjhB,EAAK,OAAS,SACbihB,EAAY,SACbjhB,EAAK,SAAW,SACfihB,EAAY,UAEd,OAAAvM,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBoY,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWhY,EACjB,UAAWiY,KAASnhB,EACnB,GACC,EACCmhB,IAAU,YACVA,IAAU,QACVA,IAAU,YACVA,IAAU,UAGX,OAAAzM,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCsY,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAahY,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIohB,EAAUphB,EAAK,SACnB,MAAMqhB,EAAWnY,EACjB,GAAIA,IAAWmY,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWpY,EACjB,UAAWqY,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA7M,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC0Y,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAapY,EAAQ,CACxB,GACCkY,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACLvY,EACD,GACC,EACC,OAAOsY,GACN,UACD,SACCA,CAClB,GAGgB,OAAA9M,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI6Y,EACHD,IACAvY,CACF,KACC,KAAIwY,EAAU,GAEf,GAAIA,EACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACLzY,EACD,GACC,OAAOkY,EAAQ,SACf,SAEA,OAAA1M,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI6Y,EACHC,IACAzY,CACF,KACC,KAAIwY,EAAU,EAGjB,CACD,KACC,QAAAhN,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI+Y,EAAUP,IAAanY,CAC5B,KACC,KAAI0Y,EAAU,GAEf,GAAIA,EAAS,CAC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,CACA,EACwB,GAER,IAAI6Z,EACHC,IACAzZ,CACF,KACC,KAAIwZ,EAAU,EAGjB,CACD,KACC,QAAAhO,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI+Z,EAAUP,IAAanZ,CAC5B,KACC,KAAI0Z,EAAU,GAEf,GAAIA,EAAS,CACZ,GAAI5iB,EAAK,OAAS,OAAW,CAC5B,IAAI6iB,EAAU7iB,EAAK,KACnB,MAAM8iB,EAAW5Z,EACjB,GACC,OAAO2Z,GAAY,SAEnB,OAAAnO,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAoBga,IAAhB,YACH,OAAAnO,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,WACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI+Z,EACHE,IAAa5Z,CACf,KACC,KAAI0Z,EAAU,GAEf,GAAIA,EACH,GACC5iB,EAAK,eACL,OACC,CACD,IAAI+iB,EACH/iB,EAAK,aACN,MAAMgjB,EAAW9Z,EACjB,GAAIA,IAAW8Z,EACd,GACC,MAAM,QACLD,CAChB,EACgB,CACD,IAAIE,GAAU,GACd,MAAMC,EACLH,EAAQ,OACT,QACKI,EAAK,EACTA,EAAKD,EACLC,IACC,CACD,IAAIC,EACHL,EAAQI,CAAE,EACX,MAAME,EACLna,EACD,GACC,OAAOka,GACP,SAEA,OAAA1O,EAAW,OACV,CACC,CACC,aACC7L,EACA,iBACAsa,EACD,WACC,gDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,GACC,EACCC,IACC,SACDA,IACC,SACDA,IACC,YAGF,OAAA1O,EAAW,OACV,CACC,CACC,aACC7L,EACA,iBACAsa,EACD,WACC,gDACD,QACC,OACD,OAAQ,CACP,cACCzQ,GACE,MAAM,EAAE,EACR,WACA,aACA,MACA,IACxB,EACoB,QACC,4CACrB,CACA,EACwB,GAER,IAAIuQ,GACHI,IACAna,EACD,GAAI,CAAC+Z,GACJ,KAEF,CACD,KACC,QAAAvO,EAAW,OACV,CACC,CACC,aACC7L,EACA,gBACD,WACC,0CACD,QACC,OACD,OAAQ,CACP,KAAM,OACzB,EACkB,QACC,eACnB,CACA,EACsB,GAGT,IAAI+Z,EACHI,IAAa9Z,CACf,KACC,KAAI0Z,EAAU,EAGjB,CACD,CACD,CACD,KACC,QAAAlO,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,WAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIsjB,EACJ,GACEtjB,EAAK,UAAY,SAChBsjB,EAAY,YACbtjB,EAAK,OAAS,SACbsjB,EAAY,QAEd,OAAA5O,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBya,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWra,EACjB,UAAWsa,KAASxjB,EACnB,GACC,EACCwjB,IAAU,YACVA,IAAU,QACVA,IAAU,WAGX,OAAA9O,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACC2a,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAara,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIyjB,EAAUzjB,EAAK,SACnB,MAAM0jB,EAAWxa,EACjB,GAAIA,IAAWwa,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWza,EACjB,UAAW0a,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAAlP,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC+a,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAaza,EAAQ,CACxB,GACCua,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACL5a,EACD,GACC,EACC,OAAO2a,GACN,UACD,SACCA,CAClB,GAGgB,OAAAnP,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIkb,GACHD,IACA5a,CACF,KACC,KAAI6a,GAAU,GAEf,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACL9a,EACD,GACC,OAAOua,EAAQ,SACf,SAEA,OAAA/O,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIkb,GACHC,IACA9a,CACF,KACC,KAAI6a,GAAU,EAGjB,CACD,KACC,QAAArP,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAIob,GAAUP,IAAaxa,CAC5B,KACC,KAAI+a,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAIjkB,EAAK,OAAS,OAAW,CAC5B,IAAIkkB,EAAUlkB,EAAK,KACnB,MAAMmkB,EAAWjb,EACjB,GACC,OAAOgb,GAAY,SAEnB,OAAAxP,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAkBqb,IAAd,UACH,OAAAxP,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,SACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAIob,GACHE,IAAajb,CACf,KACC,KAAI+a,GAAU,GAEf,GAAIA,GACH,GACCjkB,EAAK,UAAY,OAChB,CACD,MAAMokB,EAAWlb,EAEf4J,GACA9S,EAAK,QACL,CACC,aACC6I,EACA,WACD,WACC7I,EACD,mBACC,UACD,SAAAgJ,CAChB,CACA,IAEcC,EACCA,IAAY,KACT6J,GAAW,OACX7J,EAAQ,OACR6J,GAAW,MAC7B,EACc5J,EAASD,EAAQ,QAElB,IAAIgb,GACHG,IAAalb,CACf,KACC,KAAI+a,GAAU,EAGjB,CACD,CACD,CACD,KACC,QAAAvP,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,MAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIqkB,EACJ,GACErkB,EAAK,OAAS,SACbqkB,EAAY,SACbrkB,EAAK,OAAS,SACbqkB,EAAY,QAEd,OAAA3P,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBwb,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWpb,EACjB,UAAWqb,KAASvkB,EACnB,GACC,EACCukB,IAAU,YACVA,IAAU,QACVA,IAAU,QAGX,OAAA7P,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACC0b,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAapb,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIwkB,EAAUxkB,EAAK,SACnB,MAAMykB,EAAWvb,EACjB,GAAIA,IAAWub,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWxb,EACjB,UAAWyb,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAAjQ,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC8b,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAaxb,EAAQ,CACxB,GACCsb,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACL3b,EACD,GACC,EACC,OAAO0b,GACN,UACD,SACCA,CAClB,GAGgB,OAAAlQ,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIic,GACHD,IACA3b,CACF,KACC,KAAI4b,GAAU,GAEf,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACL7b,EACD,GACC,OAAOsb,EAAQ,SACf,SAEA,OAAA9P,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIic,GACHC,IACA7b,CACF,KACC,KAAI4b,GAAU,EAGjB,CACD,KACC,QAAApQ,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAImc,GAAUP,IAAavb,CAC5B,KACC,KAAI8b,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAIhlB,EAAK,OAAS,OAAW,CAC5B,IAAIilB,EAAUjlB,EAAK,KACnB,MAAMklB,EAAWhc,EACjB,GACC,OAAO+b,GAAY,SAEnB,OAAAvQ,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAaoc,IAAT,KACH,OAAAvQ,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,IACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAImc,GACHE,IAAahc,CACf,KACC,KAAI8b,GAAU,GAEf,GAAIA,GACH,GAAIhlB,EAAK,OAAS,OAAW,CAC5B,MAAMmlB,EAAWjc,EACjB,GACC,OAAOlJ,EAAK,MACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAImc,GACHG,IAAajc,CACf,KACC,KAAI8b,GAAU,EAGjB,CACD,CACD,CACD,KACC,QAAAtQ,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,SAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIolB,EACJ,GACEplB,EAAK,OAAS,SACbolB,EAAY,SACbplB,EAAK,OAAS,SACbolB,EAAY,QAEd,OAAA1Q,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBuc,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWnc,EACjB,UAAWoc,KAAStlB,EACnB,GACC,EACCslB,IAAU,YACVA,IAAU,QACVA,IAAU,QAGX,OAAA5Q,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCyc,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAanc,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIulB,EAAUvlB,EAAK,SACnB,MAAMwlB,EAAWtc,EACjB,GAAIA,IAAWsc,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWvc,EACjB,UAAWwc,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAAhR,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC6c,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAavc,EAAQ,CACxB,GACCqc,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACL1c,EACD,GACC,EACC,OAAOyc,GACN,UACD,SACCA,CAClB,GAGgB,OAAAjR,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIgd,GACHD,IACA1c,CACF,KACC,KAAI2c,GAAU,GAEf,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACL5c,EACD,GACC,OAAOqc,EAAQ,SACf,SAEA,OAAA7Q,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIgd,GACHC,IACA5c,CACF,KACC,KAAI2c,GAAU,EAGjB,CACD,KACC,QAAAnR,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAIkd,GAAUP,IAAatc,CAC5B,KACC,KAAI6c,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAI/lB,EAAK,OAAS,OAAW,CAC5B,IAAIgmB,EAAUhmB,EAAK,KACnB,MAAMimB,EAAW/c,EACjB,GACC,OAAO8c,GAAY,SAEnB,OAAAtR,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAgBmd,IAAZ,QACH,OAAAtR,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,OACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAIkd,GACHE,IAAa/c,CACf,KACC,KAAI6c,GAAU,GAEf,GAAIA,GACH,GAAI/lB,EAAK,OAAS,OAAW,CAC5B,MAAMkmB,EAAWhd,EACjB,GACC,OAAOlJ,EAAK,MACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAIkd,GACHG,IAAahd,CACf,KACC,KAAI6c,GAAU,EAGjB,CACD,CACD,CACD,KACC,QAAArR,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,UAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAImmB,EACJ,GACEnmB,EAAK,OAAS,SACbmmB,EAAY,SACbnmB,EAAK,OAAS,SACbmmB,EAAY,QAEd,OAAAzR,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBsd,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWld,EACjB,UAAWmd,KAASrmB,EACnB,GACC,EACCqmB,IAAU,YACVA,IAAU,QACVA,IAAU,QAGX,OAAA3R,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCwd,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAald,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIsmB,EAAUtmB,EAAK,SACnB,MAAMumB,EAAWrd,EACjB,GAAIA,IAAWqd,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWtd,EACjB,UAAWud,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA/R,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC4d,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAatd,EAAQ,CACxB,GACCod,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACLzd,EACD,GACC,EACC,OAAOwd,GACN,UACD,SACCA,CAClB,GAGgB,OAAAhS,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI+d,GACHD,IACAzd,CACF,KACC,KAAI0d,GAAU,GAEf,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACL3d,EACD,GACC,OAAOod,EAAQ,SACf,SAEA,OAAA5R,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI+d,GACHC,IACA3d,CACF,KACC,KAAI0d,GAAU,EAGjB,CACD,KACC,QAAAlS,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAIie,GAAUP,IAAard,CAC5B,KACC,KAAI4d,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAI9mB,EAAK,OAAS,OAAW,CAC5B,IAAI+mB,EAAU/mB,EAAK,KACnB,MAAMgnB,EAAW9d,EACjB,GACC,OAAO6d,GAAY,SAEnB,OAAArS,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAiBke,IAAb,SACH,OAAArS,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,QACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAIie,GACHE,IAAa9d,CACf,KACC,KAAI4d,GAAU,GAEf,GAAIA,GACH,GAAI9mB,EAAK,OAAS,OAAW,CAC5B,IAAIinB,EAAUjnB,EAAK,KACnB,MAAMknB,EAAWhe,EACXie,EAAWje,EACjB,IAAIke,EAAU,GACd,MAAMC,EAAWne,EACjB,GACC,OAAO+d,GACP,SACC,CACD,MAAMvd,EAAO,CACZ,aACCb,EACA,QACD,WACC,0CACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,EACkBI,IAAY,KACfA,EAAU,CAACS,CAAI,EAEfT,EAAQ,KAAKS,CAAI,EAElBR,GACD,CACA,IAAIoe,GACHD,IAAane,EAGd,GAFAke,EACCA,GAAWE,GACR,CAACF,EAAS,CACb,MAAMG,EAAWre,EACjB,GACCA,IAAWqe,EAEX,GACCN,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACjB,EACiB,CACD,IAAIO,GACJ,GACEP,EAAQ,WACR,SACCO,GACA,aACDP,EAAQ,UACR,SACCO,GACA,WACD,CACD,MAAM7d,GACL,CACC,aACCd,EACA,QACD,WACC,8CACD,QACC,WACD,OAAQ,CACP,gBACC2e,EACrB,EACmB,QACC,gCACAA,GACA,GACpB,EAEkBve,IACA,KAEAA,EACC,CACCU,EACpB,EAEkBV,EAAQ,KACPU,EACnB,EAEiBT,GACD,KAAO,CACN,MAAMue,GACLve,EACD,UAAWwe,MAAST,EACnB,GACC,EACCS,KACC,YACDA,KACC,WAED,CACD,MAAM7d,GACL,CACC,aACChB,EACA,QACD,WACC,0DACD,QACC,uBACD,OAAQ,CACP,mBACC6e,EACvB,EACqB,QACC,qCACtB,EAEoBze,IACA,KAEAA,EACC,CACCY,EACtB,EAEoBZ,EAAQ,KACPY,EACrB,EAEmBX,IACA,KACD,CAED,GACCue,KACAve,EACC,CACD,GACC+d,EAAQ,WACR,OACC,CACD,MAAMU,GACLze,EACD,GACC,OAAO+d,EAAQ,UACf,SACC,CACD,MAAMnd,GACL,CACC,aACCjB,EACA,iBACD,WACC,8DACD,QACC,OACD,OAAQ,CACP,KAAM,QAC7B,EACsB,QACC,gBACvB,EAEqBI,IACA,KAEAA,EACC,CACCa,EACvB,EAEqBb,EAAQ,KACPa,EACtB,EAEoBZ,GACD,CACA,IAAI0e,GACHD,KACAze,CACF,KACC,KAAI0e,GAAU,GAEf,GACCA,GAEA,GACCX,EAAQ,UACR,OACC,CACD,MAAMY,GACL3e,EACD,GACC,OAAO+d,EAAQ,SACf,SACC,CACD,MAAMld,EACL,CACC,aACClB,EACA,gBACD,WACC,6DACD,QACC,OACD,OAAQ,CACP,KAAM,QAC9B,EACuB,QACC,gBACxB,EAEsBI,IACA,KAEAA,EACC,CACCc,CACxB,EAEsBd,EAAQ,KACPc,CACvB,EAEqBb,GACD,CACA,IAAI0e,GACHC,KACA3e,CACF,KACC,KAAI0e,GAAU,EAGjB,CACD,CACD,KAAO,CACN,MAAM/b,GAAO,CACZ,aACChD,EACA,QACD,WACC,0CACD,QACC,OACD,OAAQ,CACP,KAAM,QACxB,EACiB,QACC,gBAClB,EAEiBI,IACA,KAEAA,EAAU,CACT4C,EAClB,EAEiB5C,EAAQ,KACP4C,EAClB,EAEgB3C,GACD,CAED,IAAIoe,GACHC,IAAare,EACdke,EACCA,GAAWE,EACb,CACA,GAAKF,EAsBJle,EAASie,EACLle,IAAY,OACXke,EACHle,EAAQ,OACPke,EAEDle,EAAU,UA5BC,CACb,MAAM8C,EAAO,CACZ,aACClD,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CAAA,EACR,QACC,8BAChB,EACc,OAAII,IAAY,KACfA,EAAU,CAAC8C,CAAI,EAEf9C,EAAQ,KAAK8C,CAAI,EAElB7C,IACAwL,EAAW,OACVzL,EACM,EACR,CAWA,IAAI6d,GACHI,IAAahe,CACf,KACC,KAAI4d,GAAU,EAGjB,CACD,CACD,CACD,KACC,QAAApS,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,qBAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAI8nB,EACJ,GACE9nB,EAAK,UAAY,SAChB8nB,EAAY,YACb9nB,EAAK,OAAS,SACb8nB,EAAY,QAEd,OAAApT,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBif,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAW7e,EACjB,UAAW8e,KAAShoB,EACnB,GACC,EACCgoB,IAAU,YACVA,IAAU,QACVA,IAAU,WAGX,OAAAtT,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCmf,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAa7e,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIioB,EAAUjoB,EAAK,SACnB,MAAMkoB,EAAWhf,EACjB,GAAIA,IAAWgf,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWjf,EACjB,UAAWkf,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA1T,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACCuf,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAajf,EAAQ,CACxB,GACC+e,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACLpf,EACD,GACC,EACC,OAAOmf,GACN,UACD,SACCA,CAClB,GAGgB,OAAA3T,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI0f,GACHD,IACApf,CACF,KACC,KAAIqf,GAAU,GAEf,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACLtf,EACD,GACC,OAAO+e,EAAQ,SACf,SAEA,OAAAvT,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI0f,GACHC,IACAtf,CACF,KACC,KAAIqf,GAAU,EAGjB,CACD,KACC,QAAA7T,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI4f,GAAUP,IAAahf,CAC5B,KACC,KAAIuf,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAIzoB,EAAK,OAAS,OAAW,CAC5B,IAAI0oB,EAAU1oB,EAAK,KACnB,MAAM2oB,EAAWzf,EACjB,GACC,OAAOwf,GAAY,SAEnB,OAAAhU,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAEC6f,IADA,oBAGA,OAAAhU,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,mBACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI4f,GACHE,IAAazf,CACf,KACC,KAAIuf,GAAU,GAEf,GAAIA,GACH,GACCzoB,EAAK,UAAY,OAChB,CACD,MAAM4oB,EAAW1f,EAEfuL,GACAzU,EAAK,QACL,CACC,aACC6I,EACA,WACD,WACC7I,EACD,mBACC,UACD,SAAAgJ,CAChB,CACA,IAEcC,EACCA,IAAY,KACTwL,GAAW,OACXxL,EAAQ,OACRwL,GAAW,MAC7B,EACcvL,EAASD,EAAQ,QAElB,IAAIwf,GACHG,IAAa1f,CACf,KACC,KAAIuf,GAAU,EAGjB,CACD,CACD,CACD,KACC,QAAA/T,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,2BAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAI6oB,EACJ,GACE7oB,EAAK,UAAY,SAChB6oB,EAAY,YACb7oB,EAAK,OAAS,SACb6oB,EAAY,QAEd,OAAAnU,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBggB,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAW5f,EACjB,UAAW6f,KAAS/oB,EACnB,GACC,EACC+oB,IAAU,YACVA,IAAU,QACVA,IAAU,WAGX,OAAArU,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCkgB,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAa5f,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIgpB,EAAUhpB,EAAK,SACnB,MAAMipB,EAAW/f,EACjB,GAAIA,IAAW+f,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWhgB,EACjB,UAAWigB,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAAzU,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACCsgB,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAahgB,EAAQ,CACxB,GACC8f,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACLngB,EACD,GACC,EACC,OAAOkgB,GACN,UACD,SACCA,CAClB,GAGgB,OAAA1U,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIygB,GACHD,IACAngB,CACF,KACC,KAAIogB,GAAU,GAEf,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACLrgB,EACD,GACC,OAAO8f,EAAQ,SACf,SAEA,OAAAtU,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIygB,GACHC,IACArgB,CACF,KACC,KAAIogB,GAAU,EAGjB,CACD,KACC,QAAA5U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI2gB,GAAUP,IAAa/f,CAC5B,KACC,KAAIsgB,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAIxpB,EAAK,OAAS,OAAW,CAC5B,IAAIypB,EAAUzpB,EAAK,KACnB,MAAM0pB,EAAWxgB,EACjB,GACC,OAAOugB,GAAY,SAEnB,OAAA/U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAEC4gB,IADA,0BAGA,OAAA/U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,yBACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI2gB,GACHE,IAAaxgB,CACf,KACC,KAAIsgB,GAAU,GAEf,GAAIA,GACH,GACCxpB,EAAK,UAAY,OAChB,CACD,IAAI2pB,EAAU3pB,EAAK,QACnB,MAAM4pB,EAAW1gB,EAEjB,GAAIA,IADaA,EAEhB,GACCygB,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CAChB,EACgB,CACD,MAAME,EACL3gB,EACD,UAAW4gB,KAASH,EACnB,GACC,EACCG,IACC,iBACDA,IACC,iBAGF,OAAApV,EAAW,OACV,CACC,CACC,aACC7L,EACA,WACD,WACC,kEACD,QACC,uBACD,OAAQ,CACP,mBACCihB,CACtB,EACoB,QACC,qCACrB,CACA,EACwB,GAIT,GACCD,IACA3gB,EACC,CACD,GACCygB,EAAQ,gBACR,OACC,CACD,MAAMI,EACL7gB,EACD,GACC,OAAOygB,EAAQ,eACf,SAEA,OAAAjV,EAAW,OACV,CACC,CACC,aACC7L,EACA,yBACD,WACC,2EACD,QACC,OACD,OAAQ,CACP,KAAM,QAC5B,EACqB,QACC,gBACtB,CACA,EACyB,GAER,IAAImhB,GACHD,IACA7gB,CACF,KACC,KAAI8gB,GAAU,GAEf,GAAIA,GACH,GACCL,EAAQ,gBACR,OACC,CACD,MAAMM,EACL/gB,EACD,GACC,OAAOygB,EAAQ,eACf,SAEA,OAAAjV,EAAW,OACV,CACC,CACC,aACC7L,EACA,yBACD,WACC,2EACD,QACC,OACD,OAAQ,CACP,KAAM,QAC7B,EACsB,QACC,gBACvB,CACA,EAC0B,GAER,IAAImhB,GACHC,IACA/gB,CACF,KACC,KAAI8gB,GAAU,EAGjB,CACD,KACC,QAAAtV,EAAW,OACV,CACC,CACC,aACC7L,EACA,WACD,WACC,kDACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAGT,IAAI2gB,GACHI,IAAa1gB,CACf,KACC,KAAIsgB,GAAU,EAGjB,CACD,CACD,CACD,KACC,QAAA9U,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,UAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIkqB,EACJ,GACElqB,EAAK,MAAQ,SACZkqB,EAAY,QACblqB,EAAK,OAAS,SACbkqB,EAAY,QAEd,OAAAxV,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBqhB,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWjhB,EACjB,UAAWkhB,KAASpqB,EACnB,GACC,EACCoqB,IAAU,YACVA,IAAU,QACVA,IAAU,OAGX,OAAA1V,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCuhB,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAajhB,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIqqB,EAAUrqB,EAAK,SACnB,MAAMsqB,EAAWphB,EACjB,GAAIA,IAAWohB,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWrhB,EACjB,UAAWshB,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA9V,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC2hB,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAarhB,EAAQ,CACxB,GACCmhB,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACLxhB,EACD,GACC,EACC,OAAOuhB,GACN,UACD,SACCA,CAClB,GAGgB,OAAA/V,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI8hB,GACHD,IACAxhB,CACF,KACC,KAAIyhB,GAAU,GAEf,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACL1hB,EACD,GACC,OAAOmhB,EAAQ,SACf,SAEA,OAAA3V,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI8hB,GACHC,IACA1hB,CACF,KACC,KAAIyhB,GAAU,EAGjB,CACD,KACC,QAAAjW,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAIgiB,GAAUP,IAAaphB,CAC5B,KACC,KAAI2hB,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAI7qB,EAAK,OAAS,OAAW,CAC5B,IAAI8qB,EAAU9qB,EAAK,KACnB,MAAM+qB,EAAW7hB,EACjB,GACC,OAAO4hB,GAAY,SAEnB,OAAApW,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAiBiiB,IAAb,SACH,OAAApW,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,QACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAIgiB,GACHE,IAAa7hB,CACf,KACC,KAAI2hB,GAAU,GAEf,GAAIA,GACH,GAAI7qB,EAAK,MAAQ,OAAW,CAC3B,MAAMgrB,EAAW9hB,EAEfiB,EAAWnK,EAAK,IAAK,CACrB,aACC6I,EACA,OACD,WAAY7I,EACZ,mBACC,MACD,SAAAgJ,CACf,CAAe,IAEDC,EACCA,IAAY,KACTkB,EAAW,OACXlB,EAAQ,OACRkB,EAAW,MAC7B,EACcjB,EAASD,EAAQ,QAElB,IAAI4hB,GACHG,IAAa9hB,CACf,KACC,KAAI2hB,GAAU,EAGjB,CACD,CACD,CACD,KACC,QAAAnW,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,kBAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIirB,EACJ,GACEjrB,EAAK,UAAY,SAChBirB,EAAY,YACbjrB,EAAK,OAAS,SACbirB,EAAY,QAEd,OAAAvW,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBoiB,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWhiB,EACjB,UAAWiiB,KAASnrB,EACnB,GACC,EACCmrB,IAAU,YACVA,IAAU,QACVA,IAAU,WAGX,OAAAzW,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCsiB,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAahiB,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIorB,EAAUprB,EAAK,SACnB,MAAMqrB,EAAWniB,EACjB,GAAIA,IAAWmiB,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWpiB,EACjB,UAAWqiB,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA7W,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC0iB,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAapiB,EAAQ,CACxB,GACCkiB,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACLviB,EACD,GACC,EACC,OAAOsiB,GACN,UACD,SACCA,CAClB,GAGgB,OAAA9W,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI6iB,GACHD,IACAviB,CACF,KACC,KAAIwiB,GAAU,GAEf,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACLziB,EACD,GACC,OAAOkiB,EAAQ,SACf,SAEA,OAAA1W,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI6iB,GACHC,IACAziB,CACF,KACC,KAAIwiB,GAAU,EAGjB,CACD,KACC,QAAAhX,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI+iB,GAAUP,IAAaniB,CAC5B,KACC,KAAI0iB,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAI5rB,EAAK,OAAS,OAAW,CAC5B,IAAI6rB,EAAU7rB,EAAK,KACnB,MAAM8rB,EAAW5iB,EACjB,GACC,OAAO2iB,GAAY,SAEnB,OAAAnX,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GACsBgjB,IAArB,iBAEA,OAAAnX,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,gBACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI+iB,GACHE,IAAa5iB,CACf,KACC,KAAI0iB,GAAU,GAEf,GAAIA,GACH,GACC5rB,EAAK,UAAY,OAChB,CACD,IAAI+rB,EAAU/rB,EAAK,QACnB,MAAMgsB,EAAW9iB,EACjB,GAAIA,IAAW8iB,GAEb,EAAAD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CAChB,GAae,OAAArX,EAAW,OACV,CACC,CACC,aACC7L,EACA,WACD,WACC,qCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAGT,IAAI+iB,GACHI,IAAa9iB,CACf,KACC,KAAI0iB,GAAU,EAGjB,CACD,CACD,CACD,KACC,QAAAlX,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,SAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIisB,EACJ,GACEjsB,EAAK,gBAAkB,SACtBisB,EAAY,kBACbjsB,EAAK,OAAS,SACbisB,EAAY,QAEd,OAAAvX,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBojB,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWhjB,EACjB,UAAWijB,KAASnsB,EACnB,GACC,EACCmsB,IAAU,YACVA,IAAU,QACVA,IAAU,WACVA,IAAU,WACVA,IAAU,iBAGX,OAAAzX,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCsjB,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAahjB,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIosB,EAAUpsB,EAAK,SACnB,MAAMqsB,EAAWnjB,EACjB,GAAIA,IAAWmjB,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWpjB,EACjB,UAAWqjB,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA7X,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC0jB,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAapjB,EAAQ,CACxB,GACCkjB,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACLvjB,EACD,GACC,EACC,OAAOsjB,GACN,UACD,SACCA,CAClB,GAGgB,OAAA9X,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI6jB,GACHD,IACAvjB,CACF,KACC,KAAIwjB,GAAU,GAEf,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACLzjB,EACD,GACC,OAAOkjB,EAAQ,SACf,SAEA,OAAA1X,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI6jB,GACHC,IACAzjB,CACF,KACC,KAAIwjB,GAAU,EAGjB,CACD,KACC,QAAAhY,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI+jB,GAAUP,IAAanjB,CAC5B,KACC,KAAI0jB,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAI5sB,EAAK,OAAS,OAAW,CAC5B,IAAI6sB,EAAU7sB,EAAK,KACnB,MAAM8sB,EAAW5jB,EACjB,GACC,OAAO2jB,GAAY,SAEnB,OAAAnY,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAgBgkB,IAAZ,QACH,OAAAnY,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,OACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI+jB,GACHE,IAAa5jB,CACf,KACC,KAAI0jB,GAAU,GAEf,GAAIA,GAAS,CACZ,GACC5sB,EAAK,UAAY,OAChB,CACD,MAAM+sB,EAAW7jB,EAEfiB,EACAnK,EAAK,QACL,CACC,aACC6I,EACA,WACD,WACC7I,EACD,mBACC,UACD,SAAAgJ,CAChB,CACA,IAEcC,EACCA,IAAY,KACTkB,EAAW,OACXlB,EAAQ,OACRkB,EAAW,MAC7B,EACcjB,EAASD,EAAQ,QAElB,IAAI2jB,GACHG,IAAa7jB,CACf,KACC,KAAI0jB,GAAU,GAEf,GAAIA,GAAS,CACZ,GACC5sB,EAAK,UACL,OACC,CACD,MAAMgtB,EAAW9jB,EACjB,GACC,OAAOlJ,EAAK,SACZ,SAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,WACD,WACC,qCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAER,IAAI+jB,GACHI,IAAa9jB,CACf,KACC,KAAI0jB,GAAU,GAEf,GAAIA,GACH,GACC5sB,EAAK,gBACL,OACC,CACD,MAAMitB,EACL/jB,EACD,GACC,OAAOlJ,EAAK,eACZ,SAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,iBACD,WACC,2CACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI+jB,GACHK,IACA/jB,CACF,KACC,KAAI0jB,GAAU,EAGjB,CACD,CACD,CACD,CACD,CACD,KACC,QAAAlY,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,kBAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIktB,EACJ,GACEltB,EAAK,OAAS,SACbktB,EAAY,SACbltB,EAAK,OAAS,SACbktB,EAAY,SACbltB,EAAK,SAAW,SACfktB,EAAY,UAEd,OAAAxY,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBqkB,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWjkB,EACjB,UAAWkkB,KAASptB,EACnB,GACC,EACCotB,IAAU,YACVA,IAAU,QACVA,IAAU,QACVA,IAAU,UAGX,OAAA1Y,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCukB,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAajkB,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIqtB,EAAUrtB,EAAK,SACnB,MAAMstB,EAAWpkB,EACjB,GAAIA,IAAWokB,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWrkB,EACjB,UAAWskB,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA9Y,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC2kB,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAarkB,EAAQ,CACxB,GACCmkB,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACLxkB,EACD,GACC,EACC,OAAOukB,GACN,UACD,SACCA,CAClB,GAGgB,OAAA/Y,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI8kB,GACHD,IACAxkB,CACF,KACC,KAAIykB,GAAU,GAEf,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACL1kB,EACD,GACC,OAAOmkB,EAAQ,SACf,SAEA,OAAA3Y,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI8kB,GACHC,IACA1kB,CACF,KACC,KAAIykB,GAAU,EAGjB,CACD,KACC,QAAAjZ,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAIglB,GAAUP,IAAapkB,CAC5B,KACC,KAAI2kB,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAI7tB,EAAK,OAAS,OAAW,CAC5B,IAAI8tB,EAAU9tB,EAAK,KACnB,MAAM+tB,EAAW7kB,EACjB,GACC,OAAO4kB,GAAY,SAEnB,OAAApZ,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GACsBilB,IAArB,iBAEA,OAAApZ,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,gBACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAIglB,GACHE,IAAa7kB,CACf,KACC,KAAI2kB,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAI7tB,EAAK,OAAS,OAAW,CAC5B,IAAIguB,EAAUhuB,EAAK,KACnB,MAAMiuB,EAAW/kB,EACjB,GAAIA,IAAW+kB,GAEb,EAAAD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CAChB,GAae,OAAAtZ,EAAW,OACV,CACC,CACC,aACC7L,EACA,QACD,WACC,kCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAGT,IAAIglB,GACHI,IAAa/kB,CACf,KACC,KAAI2kB,GAAU,GAEf,GAAIA,GACH,GACC7tB,EAAK,SACL,OACC,CACD,IAAIkuB,EACHluB,EAAK,OACN,MAAMmuB,EAAWjlB,EACjB,GACC,EACC,OAAOglB,GACN,UACD,SACCA,CACjB,GAGe,OAAAxZ,EAAW,OACV,CACC,CACC,aACC7L,EACA,UACD,WACC,oCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAER,IAAIglB,GACHM,IAAajlB,CACf,KACC,KAAI2kB,GAAU,EAGjB,CACD,CACD,CACD,CACD,KACC,QAAAnZ,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,aAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIouB,EACJ,GACEpuB,EAAK,OAAS,SACbouB,EAAY,SACbpuB,EAAK,OAAS,SACbouB,EAAY,SACbpuB,EAAK,OAAS,SACbouB,EAAY,QAEd,OAAA1Z,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBulB,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWnlB,EACjB,UAAWolB,KAAStuB,EACnB,GACC,EACCsuB,IAAU,YACVA,IAAU,QACVA,IAAU,QACVA,IAAU,QAGX,OAAA5Z,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCylB,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAanlB,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAIuuB,EAAUvuB,EAAK,SACnB,MAAMwuB,EAAWtlB,EACjB,GAAIA,IAAWslB,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWvlB,EACjB,UAAWwlB,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAAha,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACC6lB,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAavlB,EAAQ,CACxB,GACCqlB,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACL1lB,EACD,GACC,EACC,OAAOylB,GACN,UACD,SACCA,CAClB,GAGgB,OAAAja,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIgmB,GACHD,IACA1lB,CACF,KACC,KAAI2lB,GAAU,GAEf,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACL5lB,EACD,GACC,OAAOqlB,EAAQ,SACf,SAEA,OAAA7Z,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIgmB,GACHC,IACA5lB,CACF,KACC,KAAI2lB,GAAU,EAGjB,CACD,KACC,QAAAna,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAIkmB,GAAUP,IAAatlB,CAC5B,KACC,KAAI6lB,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAI/uB,EAAK,OAAS,OAAW,CAC5B,IAAIgvB,EAAUhvB,EAAK,KACnB,MAAMivB,EAAW/lB,EACjB,GACC,OAAO8lB,GAAY,SAEnB,OAAAta,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAoBmmB,IAAhB,YACH,OAAAta,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,WACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAIkmB,GACHE,IAAa/lB,CACf,KACC,KAAI6lB,GAAU,GAEf,GAAIA,GAAS,CACZ,GAAI/uB,EAAK,OAAS,OAAW,CAC5B,MAAMkvB,EAAWhmB,EACjB,GACC,OAAOlJ,EAAK,MACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAIkmB,GACHG,IAAahmB,CACf,KACC,KAAI6lB,GAAU,GAEf,GAAIA,GACH,GACC/uB,EAAK,OAAS,OACb,CACD,IAAImvB,EAAUnvB,EAAK,KACnB,MAAMovB,EAAWlmB,EACXmmB,EAAWnmB,EACjB,IAAIomB,EAAU,GACd,MAAMC,EAAWrmB,EAEfiB,EACAglB,EACA,CACC,aACCtmB,EACA,QACD,WACC7I,EACD,mBACC,OACD,SAAAgJ,CACjB,CACA,IAEeC,EACCA,IAAY,KACTkB,EAAW,OACXlB,EAAQ,OACRkB,EAAW,MAC9B,EACejB,EACCD,EAAQ,QAEV,IAAIumB,GACHD,IAAarmB,EAGd,GAFAomB,EACCA,GAAWE,GACR,CAACF,EAAS,CACb,MAAMG,EACLvmB,EACD,GACC,OAAOimB,GACP,SACC,CACD,MAAMnjB,GAAO,CACZ,aACCnD,EACA,QACD,WACC,0CACD,QACC,OACD,OAAQ,CACP,KAAM,QACxB,EACiB,QACC,gBAClB,EAEiBI,IACA,KAEAA,EAAU,CACT+C,EAClB,EAEiB/C,EAAQ,KACP+C,EAClB,EAEgB9C,GACD,CACA,IAAIsmB,GACHC,IACAvmB,EAID,GAHAomB,EACCA,GACAE,GACG,CAACF,EAAS,CACb,MAAMI,GACLxmB,EACD,GACCA,IACAwmB,GAEA,GACCP,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACnB,EACmB,CACD,IAAIQ,GACJ,GACER,EAAQ,oBACR,SACCQ,GACA,sBACDR,EAAQ,SACR,SACCQ,GACA,WACDR,EAAQ,aACR,SACCQ,GACA,eACDR,EAAQ,aACR,SACCQ,GACA,eACDR,EAAQ,SACR,SACCQ,GACA,UACD,CACD,MAAMxjB,GACL,CACC,aACCtD,EACA,QACD,WACC,8CACD,QACC,WACD,OAAQ,CACP,gBACC8mB,EACvB,EACqB,QACC,gCACAA,GACA,GACtB,EAEoB1mB,IACA,KAEAA,EACC,CACCkD,EACtB,EAEoBlD,EAAQ,KACPkD,EACrB,EAEmBjD,GACD,KAAO,CACN,MAAM0mB,GACL1mB,EACD,UAAW2mB,KAASV,EACnB,GACC,EACCU,IACC,qBACDA,IACC,UACDA,IACC,cACDA,IACC,cACDA,IACC,UAED,CACD,IAAIC,GACHX,EACCU,CACvB,EACqB,MAAME,GACL7mB,EACD,GACC,EACC,OAAO4mB,IACN,UACD,SACCA,EACxB,GAEuB,CACD,MAAMrjB,GACL,CACC,aACC5D,EACA,SACAgnB,EACE,QACA,KACA,IAC3B,EAC2B,QACA,MACA,IAC3B,EACwB,WACC,+DACD,QACC,OACD,OAAQ,CACP,KAAM,QAC/B,EACwB,QACC,gBACzB,EAEuB5mB,IACA,KAEAA,EACC,CACCwD,EACzB,EAEuBxD,EAAQ,KACPwD,EACxB,EAEsBvD,GACD,CACA,IAAI8mB,GACHD,KACA7mB,EACD,GACC,CAAC8mB,GAED,KAEF,CAED,GACCJ,KACA1mB,EACC,CACD,GACCimB,EAAQ,oBACR,OACC,CACD,IAAIc,EACHd,EAAQ,kBACT,MAAMe,GACLhnB,EACD,GACC,EACC,OAAO+mB,GACN,UACD,SACCA,CACxB,GAEuB,CACD,MAAMpjB,GACL,CACC,aACChE,EACA,0BACD,WACC,uEACD,QACC,OACD,OAAQ,CACP,KAAM,QAC/B,EACwB,QACC,gBACzB,EAEuBI,IACA,KAEAA,EACC,CACC4D,EACzB,EAEuB5D,EAAQ,KACP4D,EACxB,EAEsB3D,GACD,CACA,IAAIinB,GACHD,KACAhnB,CACF,KACC,KAAIinB,GAAU,GAEf,GACCA,GACC,CACD,GACChB,EAAQ,SACR,OACC,CACD,IAAIiB,EACHjB,EAAQ,OACT,MAAMkB,GACLnnB,EACD,GACCA,IACAmnB,GAEA,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CACzB,EACyB,CACD,IAAIE,GACJ,GACCF,EAAQ,aACP,SACAE,GACA,cACA,CACD,MAAMpjB,GACL,CACC,aACCrE,EACA,eACD,WACC,gEACD,QACC,WACD,OAAQ,CACP,gBACCynB,EAC7B,EAC2B,QACC,gCACAA,GACA,GAC5B,EAE0BrnB,IACA,KAEAA,EACC,CACCiE,EAC5B,EAE0BjE,EAAQ,KACPiE,EAC3B,EAEyBhE,GACD,KAAO,CACN,MAAMqnB,GACLrnB,EACD,UAAWsnB,MAASJ,EACnB,GAEEI,KACA,aAEA,CACD,MAAMljB,GACL,CACC,aACCzE,EACA,eACD,WACC,4EACD,QACC,uBACD,OAAQ,CACP,mBACC2nB,EAC/B,EAC6B,QACC,qCAC9B,EAE4BvnB,IACA,KAEAA,EACC,CACCqE,EAC9B,EAE4BrE,EAAQ,KACPqE,EAC7B,EAE2BpE,IACA,KACD,CAED,GACCqnB,KACArnB,GAGCknB,EAAQ,aACR,OACC,CACD,IAAIK,GACHL,EAAQ,WACT,GACC,EACC,OAAOK,IACN,UACD,SACCA,EAC9B,GAE6B,CACD,MAAM9iB,GACL,CACC,aACC9E,EACA,0BACD,WACC,kFACD,QACC,OACD,OAAQ,CACP,KAAM,QACrC,EAC8B,QACC,gBAC/B,EAE6BI,IACA,KAEAA,EACC,CACC0E,EAC/B,EAE6B1E,EAAQ,KACP0E,EAC9B,EAE4BzE,GACD,CACD,CAEF,CACD,KAAO,CACN,MAAM4E,GACL,CACC,aACCjF,EACA,eACD,WACC,4DACD,QACC,OACD,OAAQ,CACP,KAAM,QACjC,EAC0B,QACC,gBAC3B,EAEyBI,IACA,KAEAA,EACC,CACC6E,EAC3B,EAEyB7E,EAAQ,KACP6E,EAC1B,EAEwB5E,GACD,CAED,IAAIinB,GACHE,KACAnnB,CACF,KACC,KAAIinB,GAAU,GAEf,GACCA,GACC,CACD,GACChB,EAAQ,aACR,OACC,CACD,IAAIuB,EACHvB,EAAQ,WACT,MAAMwB,GACLznB,EACD,GACC,EACC,OAAOwnB,GACN,UACD,SACCA,CAC1B,GAEyB,CACD,MAAM1iB,GACL,CACC,aACCnF,EACA,mBACD,WACC,gEACD,QACC,OACD,OAAQ,CACP,KAAM,QACjC,EAC0B,QACC,gBAC3B,EAEyBI,IACA,KAEAA,EACC,CACC+E,EAC3B,EAEyB/E,EAAQ,KACP+E,EAC1B,EAEwB9E,GACD,CACA,IAAIinB,GACHQ,KACAznB,CACF,KACC,KAAIinB,GAAU,GAEf,GACCA,GACC,CACD,GACChB,EAAQ,aACR,OACC,CACD,IAAIyB,EACHzB,EAAQ,WACT,MAAM0B,GACL3nB,EACD,GACC,EACC,OAAO0nB,GACN,UACD,SACCA,CAC3B,GAE0B,CACD,MAAM3iB,GACL,CACC,aACCpF,EACA,mBACD,WACC,gEACD,QACC,OACD,OAAQ,CACP,KAAM,QAClC,EAC2B,QACC,gBAC5B,EAE0BI,IACA,KAEAA,EACC,CACCgF,EAC5B,EAE0BhF,EAAQ,KACPgF,EAC3B,EAEyB/E,GACD,CACA,IAAIinB,GACHU,KACA3nB,CACF,KACC,KAAIinB,GAAU,GAEf,GACCA,GAEA,GACChB,EAAQ,SACR,OACC,CACD,IAAI2B,EACH3B,EAAQ,OACT,MAAM4B,GACL7nB,EACD,GACC,EACC,OAAO4nB,GACN,UACD,SACCA,CAC5B,GAE2B,CACD,MAAM1iB,GACL,CACC,aACCvF,EACA,eACD,WACC,4DACD,QACC,OACD,OAAQ,CACP,KAAM,QACnC,EAC4B,QACC,gBAC7B,EAE2BI,IACA,KAEAA,EACC,CACCmF,EAC7B,EAE2BnF,EAAQ,KACPmF,EAC5B,EAE0BlF,GACD,CACA,IAAIinB,GACHY,KACA7nB,CACF,KACC,KAAIinB,GAAU,EAGjB,CACD,CACD,CACD,CACD,CACD,KAAO,CACN,MAAM5hB,GACL,CACC,aACC1F,EACA,QACD,WACC,0CACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,EAEmBI,IACA,KAEAA,EACC,CACCsF,EACrB,EAEmBtF,EAAQ,KACPsF,EACpB,EAEkBrF,GACD,CAED,IAAIsmB,GACHE,KACAxmB,EACDomB,EACCA,GACAE,EACF,CACD,CACA,GAAKF,EA6BJpmB,EAASmmB,EAERpmB,IAAY,OAERomB,EACHpmB,EAAQ,OACPomB,EAEDpmB,EACC,UAtCU,CACb,MAAMyF,EAAQ,CACb,aACC7F,EACA,QACD,WACC,mCACD,QACC,QACD,OAAQ,CAAA,EACR,QACC,8BACjB,EACe,OACCI,IAAY,KAEZA,EAAU,CACTyF,CACjB,EAEgBzF,EAAQ,KACPyF,CACjB,EAEexF,IACAwL,EAAW,OACVzL,EACM,EACR,CAcA,IAAI8lB,GACHK,IAAalmB,CACf,KACC,KAAI6lB,GAAU,EAGjB,CACD,CACD,CACD,CACD,KACC,QAAAra,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,cAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIgxB,EACJ,GACEhxB,EAAK,YAAc,SAClBgxB,EAAY,cACbhxB,EAAK,OAAS,SACbgxB,EAAY,SACbhxB,EAAK,cAAgB,SACpBgxB,EAAY,eAEd,OAAAtc,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBmoB,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAW/nB,EACjB,UAAWgoB,KAASlxB,EACnB,GACC,EACCkxB,IAAU,YACVA,IAAU,QACVA,IAAU,eACVA,IAAU,aAGX,OAAAxc,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCqoB,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAa/nB,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAImxB,EAAUnxB,EAAK,SACnB,MAAMoxB,EAAWloB,EACjB,GAAIA,IAAWkoB,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWnoB,EACjB,UAAWooB,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA5c,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACCyoB,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAanoB,EAAQ,CACxB,GACCioB,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACLtoB,EACD,GACC,EACC,OAAOqoB,GACN,UACD,SACCA,CAClB,GAGgB,OAAA7c,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI4oB,GACHD,IACAtoB,CACF,KACC,KAAIuoB,GAAW,GAEhB,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACLxoB,EACD,GACC,OAAOioB,EAAQ,SACf,SAEA,OAAAzc,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI4oB,GACHC,IACAxoB,CACF,KACC,KAAIuoB,GAAW,EAGlB,CACD,KACC,QAAA/c,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI8oB,GAAWP,IAAaloB,CAC7B,KACC,KAAIyoB,GAAW,GAEhB,GAAIA,GAAU,CACb,GAAI3xB,EAAK,OAAS,OAAW,CAC5B,IAAI4xB,EAAU5xB,EAAK,KACnB,MAAM6xB,EAAW3oB,EACjB,GACC,OAAO0oB,GAAY,SAEnB,OAAAld,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAqB+oB,IAAjB,aACH,OAAAld,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,YACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI8oB,GACHE,IAAa3oB,CACf,KACC,KAAIyoB,GAAW,GAEhB,GAAIA,GAAU,CACb,GACC3xB,EAAK,cACL,OACC,CACD,MAAM8xB,EAAW5oB,EACjB,GACC,OAAOlJ,EAAK,aACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,eACD,WACC,yCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAI8oB,GACHG,IAAa5oB,CACf,KACC,KAAIyoB,GAAW,GAEhB,GAAIA,GACH,GACC3xB,EAAK,YACL,OACC,CACD,MAAM+xB,EAAW7oB,EAEfmC,GACArL,EAAK,UACL,CACC,aACC6I,EACA,aACD,WACC7I,EACD,mBACC,YACD,SAAAgJ,CACjB,CACA,IAEeC,EACCA,IAAY,KACToC,GAAW,OACXpC,EAAQ,OACRoC,GAAW,MAC9B,EACenC,EACCD,EAAQ,QAEV,IAAI0oB,GACHI,IAAa7oB,CACf,KACC,KAAIyoB,GAAW,EAGlB,CACD,CACD,CACD,CACD,KACC,QAAAjd,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,UAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAIgyB,EACJ,GACEhyB,EAAK,UAAY,SAChBgyB,EAAY,YACbhyB,EAAK,OAAS,SACbgyB,EAAY,QAEd,OAAAtd,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiBmpB,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAW/oB,EACjB,UAAWgpB,KAASlyB,EACnB,GACC,EACCkyB,IAAU,YACVA,IAAU,QACVA,IAAU,WACVA,IAAU,aAGX,OAAAxd,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACCqpB,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAa/oB,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAImyB,EAAUnyB,EAAK,SACnB,MAAMoyB,EAAWlpB,EACjB,GAAIA,IAAWkpB,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAWnpB,EACjB,UAAWopB,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAA5d,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACCypB,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAanpB,EAAQ,CACxB,GACCipB,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACLtpB,EACD,GACC,EACC,OAAOqpB,GACN,UACD,SACCA,CAClB,GAGgB,OAAA7d,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAI4pB,GACHD,IACAtpB,CACF,KACC,KAAIupB,GAAW,GAEhB,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACLxpB,EACD,GACC,OAAOipB,EAAQ,SACf,SAEA,OAAAzd,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAI4pB,GACHC,IACAxpB,CACF,KACC,KAAIupB,GAAW,EAGlB,CACD,KACC,QAAA/d,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAI8pB,GAAWP,IAAalpB,CAC7B,KACC,KAAIypB,GAAW,GAEhB,GAAIA,GAAU,CACb,GAAI3yB,EAAK,OAAS,OAAW,CAC5B,IAAI4yB,EAAU5yB,EAAK,KACnB,MAAM6yB,EAAW3pB,EACjB,GACC,OAAO0pB,GAAY,SAEnB,OAAAle,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAAiB+pB,IAAb,SACH,OAAAle,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,QACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAI8pB,GACHE,IAAa3pB,CACf,KACC,KAAIypB,GAAW,GAEhB,GAAIA,GAAU,CACb,GACC3yB,EAAK,UAAY,OAChB,CACD,IAAI8yB,EAAU9yB,EAAK,QACnB,MAAM+yB,EAAW7pB,EACX8pB,EAAW9pB,EACjB,IAAI+pB,EAAW,GACf,MAAMC,EAAWhqB,EACjB,GACC,OAAO4pB,GACP,SACC,CACD,MAAMnkB,EAAQ,CACb,aACC9F,EACA,WACD,WACC,6CACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,EACkBI,IAAY,KACfA,EAAU,CAAC0F,CAAK,EAEhB1F,EAAQ,KAAK0F,CAAK,EAEnBzF,GACD,CACA,IAAIiqB,GACHD,IAAahqB,EAGd,GAFA+pB,EACCA,GAAYE,GACT,CAACF,EAAU,CACd,MAAMG,EAAWlqB,EACjB,GACCA,IAAWkqB,EAEX,GACC,MAAM,QACLN,CACjB,EACiB,CACD,IAAIO,GAAW,GACf,MAAMC,GACLR,EAAQ,OACT,QACKS,GAAK,EACTA,GAAKD,GACLC,KACC,CACD,MAAMC,GACLtqB,EACD,GACC,OAAO4pB,EACNS,EACnB,GACkB,SACC,CACD,MAAM3kB,EACL,CACC,aACC/F,EACA,YACA0qB,GACD,WACC,mDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,EAEmBtqB,IACA,KAEAA,EACC,CACC2F,CACrB,EAEmB3F,EAAQ,KACP2F,CACpB,EAEkB1F,GACD,CACA,IAAImqB,GACHG,KACAtqB,EACD,GACC,CAACmqB,GAED,KAEF,CACD,KAAO,CACN,MAAMxkB,GAAQ,CACb,aACChG,EACA,WACD,WACC,6CACD,QACC,OACD,OAAQ,CACP,KAAM,OACxB,EACiB,QACC,eAClB,EAEiBI,IACA,KAEAA,EAAU,CACT4F,EAClB,EAEiB5F,EAAQ,KACP4F,EAClB,EAEgB3F,GACD,CAED,IAAIiqB,GACHC,IAAalqB,EACd+pB,EACCA,GAAYE,EACd,CACA,GAAKF,EAsBJ/pB,EAAS8pB,EACL/pB,IAAY,OACX+pB,EACH/pB,EAAQ,OACP+pB,EAED/pB,EAAU,UA5BE,CACd,MAAM+F,EAAQ,CACb,aACCnG,EACA,WACD,WACC,sCACD,QAAS,QACT,OAAQ,CAAA,EACR,QACC,8BAChB,EACc,OAAII,IAAY,KACfA,EAAU,CAAC+F,CAAK,EAEhB/F,EAAQ,KAAK+F,CAAK,EAEnB9F,IACAwL,EAAW,OACVzL,EACM,EACR,CAWA,IAAI0pB,GACHI,IAAa7pB,CACf,KACC,KAAIypB,GAAW,GAEhB,GAAIA,GACH,GACC3yB,EAAK,YACL,OACC,CACD,MAAMyzB,EAAWvqB,EACjB,GACC,OAAOlJ,EAAK,WACZ,SAEA,OAAA0U,EAAW,OACV,CACC,CACC,aACC7L,EACA,aACD,WACC,uCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAER,IAAI8pB,GACHc,IAAavqB,CACf,KACC,KAAIypB,GAAW,EAGlB,CACD,CACD,CACD,CACD,KACC,QAAAje,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,WAGC8L,KAAS,mBAEnB,GAAIzL,IADaA,EAEhB,GACClJ,GACA,OAAOA,GAAQ,UACf,CAAC,MAAM,QAAQA,CAAI,EAClB,CACD,IAAI0zB,EACJ,GACE1zB,EAAK,WAAa,SACjB0zB,EAAY,aACb1zB,EAAK,OAAS,SACb0zB,EAAY,QAEd,OAAAhf,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,sBACZ,QAAS,WACT,OAAQ,CACP,gBAAiB6qB,CAC7B,EACW,QACC,gCACAA,EACA,GACZ,CACA,EACgB,GACD,CACN,MAAMC,EAAWzqB,EACjB,UAAW0qB,KAAS5zB,EACnB,GACC,EACC4zB,IAAU,YACVA,IAAU,QACVA,IAAU,YAGX,OAAAlf,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WACC,kCACD,QACC,uBACD,OAAQ,CACP,mBACC+qB,CACf,EACa,QACC,qCACd,CACA,EACkB,GAIT,GAAID,IAAazqB,EAAQ,CACxB,GAAIlJ,EAAK,WAAa,OAAW,CAChC,IAAI6zB,EAAU7zB,EAAK,SACnB,MAAM8zB,EAAW5qB,EACjB,GAAIA,IAAW4qB,EACd,GACCD,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QAAQA,CAAO,EACrB,CACD,MAAME,EAAW7qB,EACjB,UAAW8qB,KAASH,EACnB,GACC,EACCG,IACC,UACDA,IACC,WAGF,OAAAtf,EAAW,OACV,CACC,CACC,aACC7L,EACA,YACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACCmrB,CACpB,EACkB,QACC,qCACnB,CACA,EACsB,GAIT,GAAID,IAAa7qB,EAAQ,CACxB,GACC2qB,EAAQ,SACR,OACC,CACD,IAAII,EACHJ,EAAQ,OACT,MAAMK,EACLhrB,EACD,GACC,EACC,OAAO+qB,GACN,UACD,SACCA,CAClB,GAGgB,OAAAvf,EAAW,OACV,CACC,CACC,aACC7L,EACA,mBACD,WACC,wDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,CACA,EACuB,GAER,IAAIsrB,GACHD,IACAhrB,CACF,KACC,KAAIirB,GAAW,GAEhB,GAAIA,GACH,GACCN,EAAQ,UACR,OACC,CACD,MAAMO,EACLlrB,EACD,GACC,OAAO2qB,EAAQ,SACf,SAEA,OAAAnf,EAAW,OACV,CACC,CACC,aACC7L,EACA,oBACD,WACC,yDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIsrB,GACHC,IACAlrB,CACF,KACC,KAAIirB,GAAW,EAGlB,CACD,KACC,QAAAzf,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAIwrB,GAAWP,IAAa5qB,CAC7B,KACC,KAAImrB,GAAW,GAEhB,GAAIA,GAAU,CACb,GAAIr0B,EAAK,OAAS,OAAW,CAC5B,IAAIs0B,EAAUt0B,EAAK,KACnB,MAAMu0B,EAAWrrB,EACjB,GACC,OAAOorB,GAAY,SAEnB,OAAA5f,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,GAECyrB,IADA,kBAGA,OAAA5f,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,QACD,WACC,mCACD,QAAS,QACT,OAAQ,CACP,aACC,iBACjB,EACe,QACC,2BAChB,CACA,EACoB,GAER,IAAIwrB,GACHE,IAAarrB,CACf,KACC,KAAImrB,GAAW,GAEhB,GAAIA,GACH,GACCr0B,EAAK,WAAa,OACjB,CACD,MAAMw0B,EAAWtrB,EACjB,GACC,OAAOlJ,EAAK,UACZ,SAEA,OAAA0U,EAAW,OAAS,CACnB,CACC,aACC7L,EACA,YACD,WACC,sCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAIwrB,GACHG,IAAatrB,CACf,KACC,KAAImrB,GAAW,EAGlB,CACD,CACD,CACD,KACC,QAAA3f,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACnB,CACA,EACe,OAIT,QAAA6L,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,gBACT,OAAQ,CACP,MAAO,UACP,IAAK,OACL,SAAU8L,EACnB,EACQ,QAAS,sCACjB,CACA,EACa,OAGR,QAAAD,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,kBACZ,QAAS,gBACT,OAAQ,CACP,MAAO,MACP,IAAK,OACL,SAAU8L,EAClB,EACO,QAAS,2BAChB,CACA,EACY,EAET,CACD,KACC,QAAAD,EAAW,OAAS,CACnB,CACC,aAAA7L,EACA,WAAY,SACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACd,CACA,EACU,GAGT,OAAA6L,EAAW,OAASzL,EACbC,IAAW,CACnB,CACA,SAASurB,EACRz0B,EACA,CAAE,aAAA6I,EAAe,GAAI,WAAAC,EAAY,mBAAAC,EAAoB,SAAAC,EAAWhJ,GAAS,CAAA,EACxE,CACD,IAAIiJ,EAAU,KACVC,EAAS,EACb,GAAIA,IAAW,EACd,GAAIlJ,GAAQ,OAAOA,GAAQ,UAAY,CAAC,MAAM,QAAQA,CAAI,EAAG,CAC5D,MAAMqJ,EAASH,EACf,UAAWqB,KAAQvK,EAClB,GAAI,CAACyI,GAAM,KAAKF,GAAS,WAAYgC,CAAI,EACxC,OAAAkqB,EAAW,OAAS,CACnB,CACC,aAAA5rB,EACA,WAAY,yBACZ,QAAS,uBACT,OAAQ,CAAE,mBAAoB0B,CAAI,EAClC,QAAS,qCAChB,CACA,EACY,GAIT,GAAIlB,IAAWH,EAAQ,CACtB,GAAIlJ,EAAK,cAAgB,OAAW,CACnC,MAAMiK,EAASf,EACf,GAAI,OAAOlJ,EAAK,aAAgB,SAC/B,OAAAy0B,EAAW,OAAS,CACnB,CACC,aAAc5rB,EAAe,eAC7B,WAAY,gCACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACjB,CACA,EACa,GAER,IAAIO,EAASa,IAAWf,CACzB,KACC,KAAIE,EAAS,GAEd,GAAIA,EAAQ,CACX,GAAIpJ,EAAK,cAAgB,OAAW,CACnC,MAAMyJ,EAASP,EACf,GAAI,OAAOlJ,EAAK,aAAgB,SAC/B,OAAAy0B,EAAW,OAAS,CACnB,CACC,aAAc5rB,EAAe,eAC7B,WAAY,gCACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBAClB,CACA,EACc,GAER,IAAIO,EAASK,IAAWP,CACzB,KACC,KAAIE,EAAS,GAEd,GAAIA,EAAQ,CACX,GAAIpJ,EAAK,OAAS,OAAW,CAC5B,IAAI8L,EAAQ9L,EAAK,KACjB,MAAMyK,EAASvB,EACf,GAAIA,IAAWuB,EACd,GACCqB,GACA,OAAOA,GAAS,UAChB,CAAC,MAAM,QAAQA,CAAK,EACnB,CACD,IAAIxB,EACJ,GACEwB,EAAM,QAAU,SACfxB,EAAW,UACZwB,EAAM,SAAW,SAChBxB,EAAW,UAEb,OAAAmqB,EAAW,OAAS,CACnB,CACC,aACC5rB,EAAe,QAChB,WACC,6BACD,QAAS,WACT,OAAQ,CACP,gBAAiByB,CAC9B,EACY,QACC,gCACAA,EACA,GACb,CACA,EACiB,GACD,CACN,MAAMK,EAASzB,EACf,UAAW0C,KAAQE,EAClB,GACC,EACCF,IAAS,SACTA,IAAS,eACTA,IAAS,UACTA,IAAS,cAGV,OAAA6oB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,QACD,WACC,yCACD,QACC,uBACD,OAAQ,CACP,mBACC+C,CAChB,EACc,QACC,qCACf,CACA,EACmB,GAIT,GAAIjB,IAAWzB,EAAQ,CACtB,GAAI4C,EAAM,QAAU,OAAW,CAC9B,MAAML,EAASvC,EACf,GACC,OAAO4C,EAAM,OACb,SAEA,OAAA2oB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,cACD,WACC,0CACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAER,IAAIqC,EAASO,IAAWvC,CACzB,KACC,KAAIgC,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCY,EAAM,cACN,OACC,CACD,MAAMlB,EAAU1B,EAChB,GACC,OAAO4C,EAAM,aACb,SAEA,OAAA2oB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,oBACD,WACC,gDACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,IAAIqC,EACHN,IAAY1B,CACd,KACC,KAAIgC,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCY,EAAM,SACN,OACC,CACD,MAAMjB,EAAU3B,EAChB,GACC,OAAO4C,EAAM,QACb,SAEA,OAAA2oB,EAAW,OACV,CACC,CACC,aACC5rB,EACA,eACD,WACC,2CACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAER,IAAIqC,EACHL,IAAY3B,CACd,KACC,KAAIgC,EAAS,GAEd,GAAIA,EACH,GACCY,EAAM,aACN,OACC,CACD,IAAIsB,EACHtB,EAAM,WACP,MAAMI,EACLhD,EACD,GACCA,IACAgD,EAEA,GACC,MAAM,QACLkB,CAClB,EACkB,CACD,IAAI5B,EAAS,GACb,MAAM0X,EACL9V,EAAM,OACP,QACK+V,EAAK,EACTA,EACAD,EACAC,IACC,CACD,MAAM9W,EACLnD,EACD,GACC,OAAOkE,EACN+V,CACpB,GACmB,SAEA,OAAAsR,EAAW,OACV,CACC,CACC,aACC5rB,EACA,oBACAsa,EACD,WACC,qDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC7B,EACsB,QACC,gBACvB,CACA,EAC0B,GAER,IAAI3X,EACHa,IACAnD,EACD,GACC,CAACsC,EAED,KAEF,CACD,KACC,QAAAipB,EAAW,OACV,CACC,CACC,aACC5rB,EACA,mBACD,WACC,+CACD,QACC,OACD,OAAQ,CACP,KAAM,OAC3B,EACoB,QACC,eACrB,CACA,EACwB,GAGT,IAAIqC,EACHgB,IACAhD,CACF,KACC,KAAIgC,EAAS,EAGhB,CACD,CACD,CACD,CACD,KACC,QAAAupB,EAAW,OAAS,CACnB,CACC,aACC5rB,EAAe,QAChB,WACC,yBACD,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACpB,CACA,EACgB,GAGT,IAAIO,EAASqB,IAAWvB,CACzB,KACC,KAAIE,EAAS,GAEd,GAAIA,EAAQ,CACX,GAAIpJ,EAAK,oBAAsB,OAAW,CACzC,IAAI+N,EAAQ/N,EAAK,kBACjB,MAAMwM,EAAUtD,EAChB,GAAIA,IAAWsD,EACd,GACCuB,GACA,OAAOA,GAAS,UAChB,CAAC,MAAM,QAAQA,CAAK,EACnB,CACD,IAAIrC,EACJ,GACEqC,EAAM,MAAQ,SACbrC,EAAW,QACZqC,EAAM,KAAO,SACZrC,EAAW,MAEb,OAAA+oB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,qBACD,WACC,0CACD,QAAS,WACT,OAAQ,CACP,gBACC6C,CACf,EACa,QACC,gCACAA,EACA,GACd,CACA,EACkB,GACD,CACN,MAAMiB,EAAUzD,EAChB,UAAW6D,KAAQgB,EAClB,GACC,EACChB,IAAS,OACTA,IAAS,MAGV,OAAA0nB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,qBACD,WACC,sDACD,QACC,uBACD,OAAQ,CACP,mBACCkE,CACjB,EACe,QACC,qCAChB,CACA,EACoB,GAIT,GAAIJ,IAAYzD,EAAQ,CACvB,GAAI6E,EAAM,MAAQ,OAAW,CAC5B,IAAIG,EAAQH,EAAM,IAClB,MAAMmF,EAAUhK,EACV4D,EAAU5D,EAChB,IAAI+C,EAAS,GACb,MAAMgB,EAAU/D,EAEdc,GAAWkE,EAAO,CAClB,aACCrF,EACA,yBACD,WAAYkF,EACZ,mBACC,MACD,SAAA/E,CACf,CAAe,IAEDC,EACCA,IAAY,KACTe,GAAW,OACXf,EAAQ,OACRe,GAAW,MAC7B,EACcd,EAASD,EAAQ,QAElB,IAAIO,EACHyD,IAAY/D,EAEb,GADA+C,EAASA,GAAUzC,EACf,CAACyC,EAAQ,CACZ,MAAMyoB,EAAUxrB,EAChB,GACC,OAAOgF,GACP,SACC,CACD,MAAM5E,EAAO,CACZ,aACCT,EACA,yBACD,WACC,6DACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,EAEgBI,IAAY,KAEZA,EAAU,CACTK,CACjB,EAEgBL,EAAQ,KACPK,CACjB,EAEeJ,GACD,CACA,GACcgF,IAAb,SACC,CACD,MAAM3E,EAAO,CACZ,aACCV,EACA,yBACD,WACC,8DACD,QACC,QACD,OAAQ,CACP,aACC,QAClB,EACgB,QACC,2BACjB,EAEgBI,IAAY,KAEZA,EAAU,CACTM,CACjB,EAEgBN,EAAQ,KACPM,CACjB,EAEeL,GACD,CACA,IAAIM,EACHkrB,IAAYxrB,EACb+C,EACCA,GAAUzC,CACZ,CACA,GAAKyC,EAsBJ/C,EAAS4D,EACL7D,IAAY,OACX6D,EACH7D,EAAQ,OACP6D,EAED7D,EAAU,UA5BA,CACZ,MAAMS,EAAO,CACZ,aACCb,EACA,yBACD,WACC,sDACD,QAAS,QACT,OAAQ,CAAA,EACR,QACC,8BAChB,EACc,OAAII,IAAY,KACfA,EAAU,CAACS,CAAI,EAEfT,EAAQ,KAAKS,CAAI,EAElBR,IACAurB,EAAW,OACVxrB,EACM,EACR,CAWA,IAAI8J,EACHG,IAAYhK,CACd,KACC,KAAI6J,EAAS,GAEd,GAAIA,EACH,GACChF,EAAM,KAAO,OACZ,CACD,IAAIM,EAASN,EAAM,GACnB,MAAM4mB,EAAUzrB,EACVuE,EAAUvE,EAChB,IAAIqD,EAAS,GACb,MAAM4G,EAAUjK,EAChB,GACC,OAAOmF,GACP,SACC,CACD,MAAM1E,EAAO,CACZ,aACCd,EACA,wBACD,WACC,4DACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,EAEgBI,IAAY,KAEZA,EAAU,CACTU,CACjB,EAEgBV,EAAQ,KACPU,CACjB,EAEeT,GACD,CACA,IAAIwD,EACHyG,IAAYjK,EAGb,GAFAqD,EACCA,GAAUG,EACP,CAACH,EAAQ,CACZ,MAAM6G,EACLlK,EACD,GACC,OAAOmF,GACP,SACC,CACD,MAAMxE,EAAO,CACZ,aACChB,EACA,wBACD,WACC,4DACD,QACC,OACD,OAAQ,CACP,KAAM,QACxB,EACiB,QACC,gBAClB,EAEiBI,IACA,KAEAA,EAAU,CACTY,CAClB,EAEiBZ,EAAQ,KACPY,CAClB,EAEgBX,GACD,CACA,GAECmF,IADA,SAEC,CACD,MAAMvE,EAAO,CACZ,aACCjB,EACA,wBACD,WACC,6DACD,QACC,QACD,OAAQ,CACP,aACC,QACnB,EACiB,QACC,2BAClB,EAEiBI,IACA,KAEAA,EAAU,CACTa,CAClB,EAEiBb,EAAQ,KACPa,CAClB,EAEgBZ,GACD,CACA,IAAIwD,EACH0G,IACAlK,EAID,GAHAqD,EACCA,GACAG,EACG,CAACH,EAAQ,CACZ,MAAM4B,EACLjF,EACD,GACC,OAAOmF,GACP,UACC,CACD,MAAMtE,EACL,CACC,aACClB,EACA,wBACD,WACC,4DACD,QACC,OACD,OAAQ,CACP,KAAM,SAC1B,EACmB,QACC,iBACpB,EAEkBI,IACA,KAEAA,EACC,CACCc,CACpB,EAEkBd,EAAQ,KACPc,CACnB,EAEiBb,GACD,CACA,GAECmF,IADA,GAEC,CACD,MAAMxC,EACL,CACC,aACChD,EACA,wBACD,WACC,6DACD,QACC,QACD,OAAQ,CACP,aAAc,EAClC,EACmB,QACC,2BACpB,EAEkBI,IACA,KAEAA,EACC,CACC4C,CACpB,EAEkB5C,EAAQ,KACP4C,CACnB,EAEiB3C,GACD,CACA,IAAIwD,EACHyB,IACAjF,EACDqD,EACCA,GACAG,CACF,CACD,CACA,GAAKH,EA6BJrD,EAASuE,EAERxE,IAAY,OAERwE,EACHxE,EAAQ,OACPwE,EAEDxE,EACC,UAtCS,CACZ,MAAM8C,EAAO,CACZ,aACClD,EACA,wBACD,WACC,qDACD,QACC,QACD,OAAQ,CAAA,EACR,QACC,8BACjB,EACe,OACCI,IAAY,KAEZA,EAAU,CACT8C,CACjB,EAEgB9C,EAAQ,KACP8C,CACjB,EAEe7C,IACAurB,EAAW,OACVxrB,EACM,EACR,CAcA,IAAI8J,EACH4hB,IAAYzrB,CACd,KACC,KAAI6J,EAAS,EAGhB,CACD,CACD,KACC,QAAA0hB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,qBACD,WACC,sCACD,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACrB,CACA,EACiB,GAGT,IAAIO,EAASoD,IAAYtD,CAC1B,KACC,KAAIE,EAAS,GAEd,GAAIA,EAAQ,CACX,GAAIpJ,EAAK,WAAa,OAAW,CAChC,IAAIwO,EAASxO,EAAK,SAClB,MAAMsO,EAAUpF,EAChB,GAAIA,IAAWoF,EACd,GACCE,GACA,OAAOA,GAAU,UACjB,CAAC,MAAM,QAAQA,CAAM,EACpB,CACD,MAAMC,EAAUvF,EAChB,UAAW2E,KAAQW,EAClB,GACC,EACCX,IAAS,QACTA,IAAS,cAGV,OAAA4mB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,YACD,WACC,6CACD,QACC,uBACD,OAAQ,CACP,mBACCgF,CACjB,EACe,QACC,qCAChB,CACA,EACoB,GAIT,GAAIY,IAAYvF,EAAQ,CACvB,GAAIsF,EAAO,OAAS,OAAW,CAC9B,MAAM6E,EAAUnK,EAChB,GACC,OAAOsF,EAAO,MACd,UAEA,OAAAimB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,iBACD,WACC,6CACD,QAAS,OACT,OAAQ,CACP,KAAM,SACvB,EACgB,QACC,iBACjB,CACA,EACqB,GAER,IAAIsE,EACHkG,IAAYnK,CACd,KACC,KAAIiE,EAAS,GAEd,GAAIA,EACH,GACCqB,EAAO,aACP,OACC,CACD,MAAM+E,EAAUrK,EAChB,GACC,OAAOsF,EAAO,YACd,UAEA,OAAAimB,EAAW,OACV,CACC,CACC,aACC5rB,EACA,uBACD,WACC,mDACD,QACC,OACD,OAAQ,CACP,KAAM,SACzB,EACkB,QACC,iBACnB,CACA,EACsB,GAER,IAAIsE,EACHoG,IAAYrK,CACd,KACC,KAAIiE,EAAS,EAGhB,CACD,KACC,QAAAsnB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,YACD,WACC,6BACD,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACtB,CACA,EACkB,GAGT,IAAIO,EAASkF,IAAYpF,CAC1B,KACC,KAAIE,EAAS,GAEd,GAAIA,EAAQ,CACX,GAAIpJ,EAAK,iBAAmB,OAAW,CACtC,IAAIkQ,EAASlQ,EAAK,eAClB,MAAMiP,EAAU/F,EAChB,GAAIA,IAAW+F,EACd,GAAI,MAAM,QAAQiB,CAAM,EAAG,CAC1B,IAAI3C,EAAS,GACb,MAAM+lB,EAAOpjB,EAAO,OACpB,QACKqjB,EAAK,EACTA,EAAKD,EACLC,IACC,CACD,IAAI5f,EAASzD,EAAOqjB,CAAE,EACtB,MAAM/f,EAAUtK,EAChB,GACC,OAAOyK,GACP,SAEA,OAAA8gB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,mBACA0qB,EACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACvB,EACgB,QACC,gBACjB,CACA,EACqB,GAER,GAAiB5f,IAAb,SACH,OAAA8gB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,mBACA0qB,EACD,WACC,mCACD,QACC,QACD,OAAQ,CACP,aACC,QAClB,EACgB,QACC,2BACjB,CACA,EACqB,GAER,IAAIhmB,EACHiG,IAAYtK,EACb,GAAI,CAACqE,EACJ,KAEF,CACD,KACC,QAAAknB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,kBACD,WACC,mCACD,QAAS,OACT,OAAQ,CACP,KAAM,OACrB,EACc,QACC,eACf,CACA,EACmB,GAGT,IAAIO,EAAS6F,IAAY/F,CAC1B,KACC,KAAIE,EAAS,GAEd,GAAIA,EAAQ,CACX,GAAIpJ,EAAK,YAAc,OAAW,CACjC,IAAIgR,EAAShR,EAAK,UAClB,MAAM4P,EAAU1G,EAEhB,GAAIA,IADYA,EAEf,GACC8H,GACA,OAAOA,GAAU,UACjB,CAAC,MAAM,QAAQA,CAAM,EAErB,UAAW9B,KAAQ8B,EAAQ,CAC1B,IAAI6C,EACH7C,EAAO9B,CAAI,EACZ,MAAMiB,EAAUjH,EAChB,GACC,OAAO2K,GACN,UACD,OAAOA,GACN,WACD,EACC,OAAOA,GACN,UACD,SAASA,CAAM,GAGhB,OAAA4gB,EAAW,OACV,CACC,CACC,aACC5rB,EACA,cACAqG,EACE,QACA,KACA,IACrB,EACqB,QACA,MACA,IACrB,EACkB,WACC,uDACD,QACC,OACD,OAAQ,CACP,KAAM1G,GACJ,qBACA,IACrB,EACkB,QACC,+BACnB,CACA,EACsB,GAER,IAAIgH,EACHW,IAAYjH,EACb,GAAI,CAACsG,EACJ,KAEF,KAEA,QAAAilB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,aACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,QACtB,EACe,QACC,gBAChB,CACA,EACoB,GAGT,IAAIO,EAASwG,IAAY1G,CAC1B,KACC,KAAIE,EAAS,GAEd,GAAIA,EAAQ,CACX,GAAIpJ,EAAK,UAAY,OAAW,CAC/B,IAAI+T,EAAS/T,EAAK,QAClB,MAAMuQ,EAAUrH,EAChB,GAAIA,IAAWqH,EACd,GAAI,MAAM,QAAQwD,CAAM,EAAG,CAC1B,IAAIL,EAAU,GACd,MAAMkhB,EACL7gB,EAAO,OACR,QACK8gB,EAAK,EACTA,EAAKD,EACLC,IACC,CACD,IAAI7iB,EACH+B,EAAO8gB,CAAE,EACV,MAAMnkB,EACLxH,EACK8K,EACL9K,EACD,IAAIoH,EAAU,GACd,MAAMwkB,EACL5rB,EACD,GACC,OAAO8I,GACP,SACC,CACD,MAAMhG,EAAO,CACZ,aACCnD,EACA,YACAgsB,EACD,WACC,0CACD,QACC,OACD,OAAQ,CACP,KAAM,QACxB,EACiB,QACC,gBAClB,EAEiB5rB,IACA,KAEAA,EAAU,CACT+C,CAClB,EAEiB/C,EAAQ,KACP+C,CAClB,EAEgB9C,GACD,CACA,IAAIoe,EACHwN,IACA5rB,EAID,GAHAoH,EACCA,GACAgX,EACG,CAAChX,EAAS,CACb,MAAMW,EACL/H,EAECiB,EACA6H,EACA,CACC,aACCnJ,EACA,YACAgsB,EACD,WACC9gB,EACD,mBACC8gB,EACD,SAAA7rB,CACnB,CACA,IAEiBC,EACCA,IACA,KACGkB,EAAW,OACXlB,EAAQ,OACRkB,EAAW,MAChC,EACiBjB,EACCD,EAAQ,QAEV,IAAIqe,EACHrW,IACA/H,EACDoH,EACCA,GACAgX,CACF,CACA,GAAKhX,EA+BJpH,EACC8K,EAEA/K,IACA,OAGC+K,EAEA/K,EAAQ,OACP+K,EAED/K,EACC,UA5CU,CACb,MAAMkD,EAAQ,CACb,aACCtD,EACA,YACAgsB,EACD,WACC,mCACD,QACC,QACD,OAAQ,CAAA,EACR,QACC,8BAClB,EACgB,OACC5rB,IACA,KAEAA,EAAU,CACTkD,CAClB,EAEiBlD,EAAQ,KACPkD,CAClB,EAEgBjD,IACAurB,EAAW,OACVxrB,EACM,EACR,CAkBA,IAAIyK,EACHhD,IACAxH,EACD,GAAI,CAACwK,EACJ,KAEF,CACD,KACC,QAAA+gB,EAAW,OAAS,CACnB,CACC,aACC5rB,EACA,WACD,WACC,4BACD,QAAS,OACT,OAAQ,CACP,KAAM,OACvB,EACgB,QACC,eACjB,CACA,EACqB,GAGT,IAAIO,EAASmH,IAAYrH,CAC1B,KACC,KAAIE,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCpJ,EAAK,cACL,OACC,CACD,IAAImU,EACHnU,EAAK,YACN,MAAMiU,EAAU/K,EAChB,GAAIA,IAAW+K,EACd,GACCE,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CAChB,EACgB,CACD,MAAMD,EACLhL,EACD,UAAW8G,KAAQmE,EAClB,GAEEnE,IACA,WAEA,CACD,MAAMuB,EACLrI,EACD,GACC,OAAOiL,EACNnE,CACnB,GACkB,SAEA,OAAAykB,EAAW,OACV,CACC,CACC,aACC5rB,EACA,gBACAmH,EACE,QACA,KACA,IACxB,EACwB,QACA,MACA,IACxB,EACqB,WACC,qDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC5B,EACqB,QACC,gBACtB,CACA,EACyB,GAER,IAAIoE,GACH7C,IACArI,EACD,GACC,CAACkL,GAED,KAEF,CAED,GACCF,IACAhL,GAGCiL,EAAO,WACP,QAGC,OAAOA,EAAO,UACd,SAEA,OAAAsgB,EAAW,OACV,CACC,CACC,aACC5rB,EACA,wBACD,WACC,oDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC5B,EACqB,QACC,gBACtB,CACA,EACyB,EAIX,KACC,QAAA4rB,EAAW,OACV,CACC,CACC,aACC5rB,EACA,eACD,WACC,gCACD,QACC,OACD,OAAQ,CACP,KAAM,QACzB,EACkB,QACC,gBACnB,CACA,EACsB,GAGT,IAAIO,EACH6K,IAAY/K,CACd,KACC,KAAIE,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCpJ,EAAK,QAAU,OACd,CACD,IAAIiV,EAASjV,EAAK,MAClB,MAAMsU,EAAUpL,EACV2I,EAAU3I,EAChB,IAAIyM,EAAU,GACd,MAAM1D,EAAU/I,EAChB,GACC,OAAO+L,GACP,UACC,CACD,MAAMxI,EAAQ,CACb,aACC5D,EACA,SACD,WACC,kCACD,QAAS,OACT,OAAQ,CACP,KAAM,SACvB,EACgB,QACC,iBACjB,EAEgBI,IAAY,KAEZA,EAAU,CACTwD,CACjB,EAEgBxD,EAAQ,KACPwD,CACjB,EAEevD,GACD,CACA,IAAIsmB,EACHvd,IAAY/I,EAGb,GAFAyM,EACCA,GAAW6Z,EACR,CAAC7Z,EAAS,CACb,MAAMtD,EACLnJ,EACD,GACCA,IACAmJ,EAEA,GACC4C,GACA,OAAOA,GACN,UACD,CAAC,MAAM,QACNA,CAClB,EACkB,CACD,IAAIrI,EACJ,GACEqI,EAAO,WACP,SACCrI,EACA,aACDqI,EAAO,WACP,SACCrI,EACA,YACD,CACD,MAAMC,EACL,CACC,aACChE,EACA,SACD,WACC,sCACD,QACC,WACD,OAAQ,CACP,gBACC+D,CACtB,EACoB,QACC,gCACAA,EACA,GACrB,EAEmB3D,IACA,KAEAA,EACC,CACC4D,CACrB,EAEmB5D,EAAQ,KACP4D,CACpB,EAEkB3D,GACD,KAAO,CACN,MAAMsJ,EACLtJ,EACD,UAAW4H,KAAQmE,EAClB,GACC,EACCnE,IACC,YACDA,IACC,YAED,CACD,MAAM5D,EACL,CACC,aACCrE,EACA,SACD,WACC,kDACD,QACC,uBACD,OAAQ,CACP,mBACCiI,CACxB,EACsB,QACC,qCACvB,EAEqB7H,IACA,KAEAA,EACC,CACCiE,CACvB,EAEqBjE,EAAQ,KACPiE,CACtB,EAEoBhE,IACA,KACD,CAED,GACCsJ,IACAtJ,EACC,CACD,GACC+L,EAAO,WACP,OACC,CACD,MAAMQ,EACLvM,EACD,GACC,OAAO+L,EAAO,UACd,SACC,CACD,MAAM3H,EACL,CACC,aACCzE,EACA,kBACD,WACC,sDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC9B,EACuB,QACC,gBACxB,EAEsBI,IACA,KAEAA,EACC,CACCqE,CACxB,EAEsBrE,EAAQ,KACPqE,CACvB,EAEqBpE,GACD,CACA,IAAIkJ,EACHqD,IACAvM,CACF,KACC,KAAIkJ,EAAU,GAEf,GACCA,EAEA,GACC6C,EAAO,WACP,OACC,CACD,MAAMS,EACLxM,EACD,GACC,OAAO+L,EAAO,UACd,SACC,CACD,MAAMtH,EACL,CACC,aACC9E,EACA,kBACD,WACC,sDACD,QACC,OACD,OAAQ,CACP,KAAM,QAC/B,EACwB,QACC,gBACzB,EAEuBI,IACA,KAEAA,EACC,CACC0E,CACzB,EAEuB1E,EAAQ,KACP0E,CACxB,EAEsBzE,GACD,CACA,IAAIkJ,EACHsD,IACAxM,CACF,KACC,KAAIkJ,EAAU,EAGjB,CACD,CACD,KAAO,CACN,MAAMtE,EACL,CACC,aACCjF,EACA,SACD,WACC,kCACD,QACC,OACD,OAAQ,CACP,KAAM,QAC1B,EACmB,QACC,gBACpB,EAEkBI,IACA,KAEAA,EACC,CACC6E,CACpB,EAEkB7E,EAAQ,KACP6E,CACnB,EAEiB5E,GACD,CAED,IAAIsmB,EACHnd,IACAnJ,EACDyM,EACCA,GACA6Z,CACF,CACA,GAAK7Z,EA6BJzM,EAAS2I,EAER5I,IAAY,OAER4I,EACH5I,EAAQ,OACP4I,EAED5I,EACC,UAtCU,CACb,MAAM+E,EAAQ,CACb,aACCnF,EACA,SACD,WACC,2BACD,QACC,QACD,OAAQ,CAAA,EACR,QACC,8BACjB,EACe,OACCI,IAAY,KAEZA,EAAU,CACT+E,CACjB,EAEgB/E,EAAQ,KACP+E,CACjB,EAEe9E,IACAurB,EAAW,OACVxrB,EACM,EACR,CAcA,IAAIG,EACHkL,IAAYpL,CACd,KACC,KAAIE,EAAS,GAEd,GAAIA,EAAQ,CACX,GACCpJ,EAAK,QACL,OACC,CACD,IAAIwV,EACHxV,EAAK,MACN,MAAM6V,EACL3M,EACD,GACCA,IACA2M,EAEA,GACC,MAAM,QACLL,CAClB,EACkB,CACD,IAAIuf,EAAU,GACd,MAAMC,EACLxf,EAAO,OACR,QACKyf,EAAK,EACTA,EACAD,EACAC,IACC,CACD,IAAIC,EACH1f,EACCyf,CACpB,EACkB,MAAMnf,EACL5M,EACKisB,EACLjsB,EACD,IAAIuN,EAAU,GACd,MAAM2e,EACLlsB,EAECwL,EACAwgB,EACA,CACC,aACCrsB,EACA,UACAosB,EACD,WACCzf,EACD,mBACCyf,EACD,SAAAjsB,CACrB,CACA,IAEmBC,EACCA,IACA,KACGyL,EAAW,OACXzL,EAAQ,OACRyL,EAAW,MAClC,EACmBxL,EACCD,EAAQ,QAEV,IAAIkqB,GACHiC,IACAlsB,EAID,GAHAuN,EACCA,GACA0c,GAEA,CAAC1c,EACA,CACD,MAAM4e,EACLnsB,EACD,GACC,OAAOgsB,GACP,SACC,CACD,MAAMjnB,EACL,CACC,aACCpF,EACA,UACAosB,EACD,WACC,wCACD,QACC,OACD,OAAQ,CACP,KAAM,QAC7B,EACsB,QACC,gBACvB,EAEqBhsB,IACA,KAEAA,EACC,CACCgF,CACvB,EAEqBhF,EAAQ,KACPgF,CACtB,EAEoB/E,GACD,CACA,IAAIiqB,GACHkC,IACAnsB,EAID,GAHAuN,EACCA,GACA0c,GAEA,CAAC1c,EACA,CACD,MAAMP,EACLhN,EACKkF,GACL,CACC,aACCvF,EACA,UACAosB,EACD,WACC,uCACD,QACC,MACD,OAAQ,CAAA,EACR,QACC,mBACvB,EAEqBhsB,IACA,KAEAA,EACC,CACCmF,EACvB,EAEqBnF,EAAQ,KACPmF,EACtB,EAEoBlF,IACA,IAAIiqB,GACHjd,IACAhN,EAID,GAHAuN,EACCA,GACA0c,GAEA,CAAC1c,EACA,CACD,MAAMN,EACLjN,EACD,GACC,OAAOgsB,GACP,UACC,CACD,MAAM3mB,EACL,CACC,aACC1F,EACA,UACAosB,EACD,WACC,wCACD,QACC,OACD,OAAQ,CACP,KAAM,SAC/B,EACwB,QACC,iBACzB,EAEuBhsB,IACA,KAEAA,EACC,CACCsF,CACzB,EAEuBtF,EAAQ,KACPsF,CACxB,EAEsBrF,GACD,CACA,GAECgsB,IADA,GAEC,CACD,MAAMxmB,EACL,CACC,aACC7F,EACA,UACAosB,EACD,WACC,yCACD,QACC,QACD,OAAQ,CACP,aAAc,EACvC,EACwB,QACC,2BACzB,EAEuBhsB,IACA,KAEAA,EACC,CACCyF,CACzB,EAEuBzF,EAAQ,KACPyF,CACxB,EAEsBxF,GACD,CACA,IAAIiqB,GACHhd,IACAjN,EAID,GAHAuN,EACCA,GACA0c,GAEA,CAAC1c,EACA,CACD,MAAM6e,EACLpsB,EACD,GACCgsB,IACA,KACC,CACD,MAAMvmB,GACL,CACC,aACC9F,EACA,UACAosB,EACD,WACC,wCACD,QACC,OACD,OAAQ,CACP,KAAM,MAChC,EACyB,QACC,cAC1B,EAEwBhsB,IACA,KAEAA,EACC,CACC0F,EAC1B,EAEwB1F,EAAQ,KACP0F,EACzB,EAEuBzF,GACD,CACA,IAAIiqB,GACHmC,IACApsB,EACDuN,EACCA,GACA0c,EACF,CACD,CACD,CACD,CACA,GACE1c,EAkCDvN,EACCisB,EAEAlsB,IACA,OAGCksB,EAEAlsB,EAAQ,OACPksB,EAEDlsB,EACC,UA9CF,CACD,MAAM2F,EACL,CACC,aACC/F,EACA,UACAosB,EACD,WACC,iCACD,QACC,QACD,OAAQ,CAAA,EACR,QACC,8BACtB,EACmB,OACChsB,IACA,KAEAA,EACC,CACC2F,CACtB,EAEoB3F,EAAQ,KACP2F,CACrB,EAEmB1F,IACAurB,EAAW,OACVxrB,EACM,EACR,CAkBA,IAAI8rB,EACHjf,IACA5M,EACD,GACC,CAAC6rB,EAED,KAEF,CACD,KACC,QAAAN,EAAW,OACV,CACC,CACC,aACC5rB,EACA,SACD,WACC,0BACD,QACC,OACD,OAAQ,CACP,KAAM,OAC3B,EACoB,QACC,eACrB,CACA,EACwB,GAGT,IAAIO,EACHyM,IACA3M,CACF,KACC,KAAIE,EAAS,GAEd,GAAIA,EACH,GACCpJ,EAAK,UACL,OACC,CACD,MAAMu1B,EACLrsB,EACD,GACC,OAAOlJ,EAAK,SACZ,SAEA,OAAAy0B,EAAW,OACV,CACC,CACC,aACC5rB,EACA,WACD,WACC,8BACD,QACC,OACD,OAAQ,CACP,KAAM,QAC3B,EACoB,QACC,gBACrB,CACA,EACwB,GAER,IAAIO,EACHmsB,IACArsB,CACF,KACC,KAAIE,EAAS,EAGhB,CACD,CACD,CACD,CACD,CACD,CACD,CACD,CACD,CACD,CACD,CACD,KACC,QAAAqrB,EAAW,OAAS,CACnB,CACC,aAAA5rB,EACA,WAAY,SACZ,QAAS,OACT,OAAQ,CAAE,KAAM,QAAQ,EACxB,QAAS,gBACd,CACA,EACU,GAGT,OAAA4rB,EAAW,OAASxrB,EACbC,IA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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA0OnBM,GAAmB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAiFnB4B,GAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;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"}