diff --git a/components/ApiReference/ApiReference.tsx b/components/ApiReference/ApiReference.tsx new file mode 100644 index 000000000..920031585 --- /dev/null +++ b/components/ApiReference/ApiReference.tsx @@ -0,0 +1,133 @@ +import Link from "next/link"; +import { ApiReferenceProvider } from "../../components/ApiReference/ApiReferenceContext"; +import { ApiReferenceSection } from "../../components/ApiReference"; +import MinimalHeader from "../../components/Header/MinimalHeader"; +import Sidebar from "../../components/Sidebar"; +import { Page } from "../../layouts/Page"; +import { useEffect, useLayoutEffect } from "react"; +import { useRouter } from "next/router"; +import { StainlessConfig } from "../../lib/openApiSpec"; +import { OpenAPIV3 } from "@scalar/openapi-types"; +import { getSidebarContent } from "./helpers"; +import { SidebarSection } from "../../data/types"; + +type Props = { + name: string; + openApiSpec: OpenAPIV3.Document; + stainlessSpec: StainlessConfig; + preContent?: React.ReactNode; + preSidebarContent?: SidebarSection[]; + resourceOrder: string[]; +}; + +function ApiReference({ + name, + openApiSpec, + stainlessSpec, + preContent, + preSidebarContent, + resourceOrder = [], +}: Props) { + const router = useRouter(); + const basePath = router.pathname.split("/")[1]; + + useEffect(() => { + const path = router.asPath; + + const resourcePath = path.replace(`/${basePath}`, ""); + const element = document.querySelector( + `[data-resource-path="${resourcePath}"]`, + ); + + if (element) { + setTimeout(() => { + element.scrollIntoView(); + }, 200); + } + }, [router.asPath, basePath]); + + useLayoutEffect(() => { + const observer = new IntersectionObserver( + (entries) => { + entries.forEach((entry) => { + if (entry.isIntersecting) { + const resourcePath = + entry.target.getAttribute("data-resource-path"); + if (resourcePath) { + window.history.replaceState( + null, + "", + `/${basePath}${resourcePath}`, + ); + } + } + }); + }, + { + threshold: 0.1, + rootMargin: "-64px 0px -80% 0px", + }, + ); + + // Observe all elements with data-resource-path + document.querySelectorAll("[data-resource-path]").forEach((element) => { + observer.observe(element); + }); + + // Cleanup observer on unmount + return () => observer.disconnect(); + }, [basePath]); + + return ( + +
+ } + sidebar={ + + + ← Back to docs + + + } + metaProps={{ + title: `Knock ${name} Reference | Knock`, + description: `Complete reference documentation for the Knock ${name}.`, + }} + > +
+
+
+ {preContent} + {resourceOrder.map((resourceName) => ( + + ))} +
+
+
+
+
+
+ ); +} + +export default ApiReference; diff --git a/components/ApiReference/ApiReferenceContext.tsx b/components/ApiReference/ApiReferenceContext.tsx new file mode 100644 index 000000000..df1ddbfd7 --- /dev/null +++ b/components/ApiReference/ApiReferenceContext.tsx @@ -0,0 +1,47 @@ +import { createContext, useContext, ReactNode } from "react"; +import { OpenAPIV3 } from "@scalar/openapi-types"; +import { StainlessConfig } from "../../lib/openApiSpec"; + +interface ApiReferenceContextType { + openApiSpec: OpenAPIV3.Document; + stainlessConfig: StainlessConfig; + baseUrl: string; +} + +const ApiReferenceContext = createContext( + undefined, +); + +interface ApiReferenceProviderProps { + children: ReactNode; + openApiSpec: OpenAPIV3.Document; + stainlessConfig: StainlessConfig; +} + +export function ApiReferenceProvider({ + children, + openApiSpec, + stainlessConfig, +}: ApiReferenceProviderProps) { + const baseUrl = stainlessConfig.environments.production; + + return ( + + {children} + + ); +} + +export function useApiReference() { + const context = useContext(ApiReferenceContext); + if (context === undefined) { + throw new Error( + "useApiReference must be used within an ApiReferenceProvider", + ); + } + return context; +} + +export default ApiReferenceContext; diff --git a/components/ApiReference/ApiReferenceMethod/ApiReferenceMethod.tsx b/components/ApiReference/ApiReferenceMethod/ApiReferenceMethod.tsx new file mode 100644 index 000000000..4b4850997 --- /dev/null +++ b/components/ApiReference/ApiReferenceMethod/ApiReferenceMethod.tsx @@ -0,0 +1,135 @@ +import type { OpenAPIV3 } from "@scalar/openapi-types"; +import { useState } from "react"; +import Markdown from "react-markdown"; + +import { Endpoint } from "../../Endpoints"; +import { ContentColumn, ExampleColumn, Section } from "../../ApiSections"; +import { CodeBlock } from "../../CodeBlock"; +import { useApiReference } from "../ApiReferenceContext"; +import { SchemaProperties } from "../SchemaProperties"; +import OperationParameters from "../OperationParameters/OperationParameters"; +import { PropertyRow } from "../SchemaProperties/PropertyRow"; +import MultiLangExample from "../MultiLangExample"; +import { augmentSnippetsWithCurlRequest } from "../helpers"; + +type Props = { + methodName: string; + methodType: "get" | "post" | "put" | "delete"; + endpoint: string; +}; + +function ApiReferenceMethod({ methodName, methodType, endpoint }: Props) { + const { openApiSpec, baseUrl } = useApiReference(); + const [isResponseExpanded, setIsResponseExpanded] = useState(false); + const method = openApiSpec.paths?.[endpoint]?.[methodType]; + + if (!method) { + return null; + } + + const parameters = method.parameters || []; + const responses = method.responses || {}; + const response = responses[Object.keys(responses)[0]]; + + const pathParameters = parameters.filter( + (p) => p.in === "path", + ) as OpenAPIV3.ParameterObject[]; + const queryParameters = parameters.filter( + (p) => p.in === "query", + ) as OpenAPIV3.ParameterObject[]; + + const responseSchema: OpenAPIV3.SchemaObject | undefined = + response?.content?.["application/json"]?.schema; + const requestBody: OpenAPIV3.SchemaObject | undefined = + method.requestBody?.content?.["application/json"]?.schema; + + return ( +
+ + {method.description ?? ""} + +

Endpoint

+ + + + {pathParameters.length > 0 && ( + <> +

Path parameters

+ + + )} + + {queryParameters.length > 0 && ( + <> +

Query parameters

+ + + )} + + {requestBody && ( + <> +

Request body

+ + + )} + +

Returns

+ + {responseSchema && ( + + + + {responseSchema.title} + + + {responseSchema.description ?? ""} + + + {responseSchema.properties && ( + <> + setIsResponseExpanded(!isResponseExpanded)} + > + {isResponseExpanded ? "Hide properties" : "Show properties"} + + + {isResponseExpanded && ( + + + + )} + + )} + + + )} +
+ + + {responseSchema?.example && ( + + {JSON.stringify(responseSchema?.example, null, 2)} + + )} + +
+ ); +} + +export default ApiReferenceMethod; diff --git a/components/ApiReference/ApiReferenceMethod/index.ts b/components/ApiReference/ApiReferenceMethod/index.ts new file mode 100644 index 000000000..473812564 --- /dev/null +++ b/components/ApiReference/ApiReferenceMethod/index.ts @@ -0,0 +1 @@ +export { default } from "./ApiReferenceMethod"; diff --git a/components/ApiReference/ApiReferenceSection/ApiReferenceSection.tsx b/components/ApiReference/ApiReferenceSection/ApiReferenceSection.tsx new file mode 100644 index 000000000..3e925302f --- /dev/null +++ b/components/ApiReference/ApiReferenceSection/ApiReferenceSection.tsx @@ -0,0 +1,133 @@ +import React from "react"; +import type { OpenAPIV3 } from "@scalar/openapi-types"; +import ApiReferenceMethod from "../ApiReferenceMethod"; +import { ContentColumn, ExampleColumn, Section } from "../../ApiSections"; +import Markdown from "react-markdown"; +import { Endpoint, Endpoints } from "../../Endpoints"; +import JSONPointer from "jsonpointer"; +import { CodeBlock } from "../../CodeBlock"; +import { StainlessResource } from "../../../lib/openApiSpec"; +import { useApiReference } from "../ApiReferenceContext"; +import { resolveEndpointFromMethod } from "../helpers"; +import { SchemaProperties } from "../SchemaProperties"; + +type Props = { + resourceName: string; + resource: StainlessResource; + path?: string; +}; + +function ApiReferenceSection({ resourceName, resource, path }: Props) { + const { openApiSpec } = useApiReference(); + const methods = resource.methods || {}; + const models = resource.models || {}; + const basePath = path ?? `/${resourceName}`; + + return ( + <> +
+
+ + {resource.description && ( + {resource.description} + )} + + + {Object.entries(methods).length > 0 && ( + + {Object.entries(methods).map( + ([methodName, endpointOrMethodConfig]) => { + const [methodType, endpoint] = resolveEndpointFromMethod( + endpointOrMethodConfig, + ); + + return ( + + ); + }, + )} + + )} + +
+
+ + {Object.entries(methods).map(([methodName, endpointOrMethodConfig]) => { + const [methodType, endpoint] = resolveEndpointFromMethod( + endpointOrMethodConfig, + ); + + return ( +
+ +
+ ); + })} + + {Object.entries(models).map(([modelName, modelReference]) => { + const schema: OpenAPIV3.SchemaObject | undefined = JSONPointer.get( + openApiSpec, + modelReference.replace("#", ""), + ); + + if (!schema) { + return null; + } + + return ( +
+
+ + {schema.description && ( + {schema.description} + )} + +

Attributes

+ +
+ + + {JSON.stringify(schema.example, null, 2)} + + +
+
+ ); + })} + + {Object.entries(resource.subresources ?? {}).map( + ([subresourceName, subresource]) => { + return ( + + ); + }, + )} + + ); +} + +export default ApiReferenceSection; diff --git a/components/ApiReference/ApiReferenceSection/index.ts b/components/ApiReference/ApiReferenceSection/index.ts new file mode 100644 index 000000000..d95346484 --- /dev/null +++ b/components/ApiReference/ApiReferenceSection/index.ts @@ -0,0 +1 @@ +export { default } from "./ApiReferenceSection"; diff --git a/components/ApiReference/MultiLangExample/MultiLangExample.tsx b/components/ApiReference/MultiLangExample/MultiLangExample.tsx new file mode 100644 index 000000000..98e972f35 --- /dev/null +++ b/components/ApiReference/MultiLangExample/MultiLangExample.tsx @@ -0,0 +1,86 @@ +import { useEventEmitter } from "@byteclaw/use-event-emitter"; +import { useEffect, useMemo } from "react"; + +import { useIsMounted } from "../../../hooks/useIsMounted"; +import useLocalStorage from "../../../hooks/useLocalStorage"; +import { CodeBlock, SupportedLanguage } from "../../CodeBlock"; +import { EVENT_NAME, LOCAL_STORAGE_KEY } from "../../MultiLangCodeBlock"; + +type Props = { + examples: Record; + title: string; +}; + +function resolveLanguageToSnippet(language: string) { + switch (language) { + case "node": + return "typescript"; + default: + return language; + } +} + +function resolveSnippetLanguages(language: string) { + switch (language) { + case "typescript": + return "node"; + default: + return language; + } +} + +const MultiLangExample = ({ examples, title }: Props) => { + const isMounted = useIsMounted(); + const eventEmitter = useEventEmitter(); + + const languages = useMemo( + () => Object.keys(examples).map(resolveSnippetLanguages), + [examples], + ); + + const [language, setLanguage] = useLocalStorage( + LOCAL_STORAGE_KEY, + "node", + ); + + const resolvedLanguage = resolveLanguageToSnippet(language); + + useEffect(() => { + // When the language changes, set the new language + const unsubscribe = eventEmitter.on(EVENT_NAME, setLanguage); + return () => unsubscribe(); + }, []); + + useEffect(() => { + // When the language changes, notify any other components currently rendered + eventEmitter.emit(EVENT_NAME, language); + }, [language, eventEmitter]); + + const exampleContent = useMemo(() => { + const exampleInSelectedLanguage = examples[resolvedLanguage]; + + // When a given block does not include any example code for the language that is currently stored in localstorage, we want to display the code that matches the first listed language in its switcher (which is what will be "selected" and displayed on the switcher by default) + const listedLanguage = languages && languages[0]; + + if (!exampleInSelectedLanguage) { + return examples[listedLanguage]; + } + + return exampleInSelectedLanguage; + }, [resolvedLanguage, languages]); + + if (!isMounted) return null; + + return ( + + {exampleContent} + + ); +}; + +export default MultiLangExample; diff --git a/components/ApiReference/MultiLangExample/index.ts b/components/ApiReference/MultiLangExample/index.ts new file mode 100644 index 000000000..6dabb0bc6 --- /dev/null +++ b/components/ApiReference/MultiLangExample/index.ts @@ -0,0 +1 @@ +export { default } from "./MultiLangExample"; diff --git a/components/ApiReference/OperationParameters/OperationParameters.tsx b/components/ApiReference/OperationParameters/OperationParameters.tsx new file mode 100644 index 000000000..6f5e68c54 --- /dev/null +++ b/components/ApiReference/OperationParameters/OperationParameters.tsx @@ -0,0 +1,31 @@ +import { OpenAPIV3 } from "@scalar/openapi-types"; +import { PropertyRow } from "../SchemaProperties/PropertyRow"; +import SchemaProperty from "../SchemaProperties/SchemaProperty"; + +type Props = { + parameters: OpenAPIV3.ParameterObject[]; +}; + +const OperationParameters = ({ parameters }: Props) => { + return ( + + {parameters.map((parameter) => { + const schema = parameter.schema as OpenAPIV3.SchemaObject; + const mergedSchema = { + ...schema, + description: parameter.description, + }; + + return ( + + ); + })} + + ); +}; + +export default OperationParameters; diff --git a/components/ApiReference/OperationParameters/index.ts b/components/ApiReference/OperationParameters/index.ts new file mode 100644 index 000000000..e69de29bb diff --git a/components/ApiReference/SchemaProperties/PropertyRow.tsx b/components/ApiReference/SchemaProperties/PropertyRow.tsx new file mode 100644 index 000000000..ddb57b0c8 --- /dev/null +++ b/components/ApiReference/SchemaProperties/PropertyRow.tsx @@ -0,0 +1,86 @@ +import classNames from "classnames"; +import { IoChevronDown } from "react-icons/io5"; + +const Header = ({ children }) => ( +
{children}
+); + +const Wrapper = ({ children }) => ( +
+ {children} +
+); + +const Container = ({ children }) => { + return ( +
+ {children} +
+ ); +}; + +const Name = ({ children }) => ( + {children} +); + +const Types = ({ children }) => ( +
+ {children} +
+); + +const Type = ({ children }) => ( + + {children} + +); + +const Description = ({ children }) => ( +
+ {children} +
+); + +const Required = () => ( + Required +); + +const ExpandableButton = ({ children, isOpen, onClick }) => ( + +); + +const ChildProperties = ({ children }) => ( +
+ {children} +
+); + +const PropertyTag = ({ children }) => ( + + {children} + +); + +const PropertyRow = Object.assign({ + Wrapper, + Container, + Header, + Name, + Types, + Type, + Required, + Description, + ExpandableButton, + ChildProperties, + PropertyTag, +}); + +export { PropertyRow }; diff --git a/components/ApiReference/SchemaProperties/SchemaProperties.tsx b/components/ApiReference/SchemaProperties/SchemaProperties.tsx new file mode 100644 index 000000000..a0e58517e --- /dev/null +++ b/components/ApiReference/SchemaProperties/SchemaProperties.tsx @@ -0,0 +1,48 @@ +import { OpenAPIV3 } from "@scalar/openapi-types"; +import SchemaProperty from "./SchemaProperty"; +import { PropertyRow } from "./PropertyRow"; + +type Props = { + schema: OpenAPIV3.SchemaObject; + hideRequired?: boolean; +}; + +const SchemaProperties = ({ schema, hideRequired = false }: Props) => { + const unionSchema = schema.oneOf || schema.anyOf || schema.allOf; + const onlyUnion = + unionSchema && !schema.properties && !schema.additionalProperties; + + return ( + + {Object.entries(schema.properties || {}).map( + ([propertyName, property]) => ( + + ), + )} + {schema.additionalProperties && ( + + )} + + {/* If the schema is a union, we want to show the schema as a whole */} + {onlyUnion && } + + ); +}; + +export default SchemaProperties; diff --git a/components/ApiReference/SchemaProperties/SchemaProperty.tsx b/components/ApiReference/SchemaProperties/SchemaProperty.tsx new file mode 100644 index 000000000..b106bd598 --- /dev/null +++ b/components/ApiReference/SchemaProperties/SchemaProperty.tsx @@ -0,0 +1,120 @@ +import { OpenAPIV3 } from "@scalar/openapi-types"; +import { PropertyRow } from "./PropertyRow"; +import { useState } from "react"; +import Markdown from "react-markdown"; +import { + getTypesForDisplay, + innerEnumSchema, + innerUnionSchema, + maybeFlattenUnionSchema, + resolveChildProperties, +} from "./helpers"; + +type Props = { + name?: string; + schema: OpenAPIV3.SchemaObject; +}; + +const MAX_TYPES_TO_DISPLAY = 2; + +const SchemaProperty = ({ name, schema }: Props) => { + const [isPossibleTypesOpen, setIsPossibleTypesOpen] = useState(false); + const [isChildPropertiesOpen, setIsChildPropertiesOpen] = useState(false); + // If the schema is an array, then we want to show the possible types that the array can contain. + // Otherwise, we want to show the possible types that the schema can be + const maybeUnion = innerUnionSchema(schema); + const maybeEnum = innerEnumSchema(schema); + const maybeChildProperties = resolveChildProperties(schema); + + const typesForDisplay = getTypesForDisplay(schema); + const hasAdditionalTypes = typesForDisplay.length > MAX_TYPES_TO_DISPLAY; + + return ( + + + {name && {name}} + + {typesForDisplay.slice(0, MAX_TYPES_TO_DISPLAY).map((type) => ( + {type} + ))} + {hasAdditionalTypes && ( + + +{typesForDisplay.length - MAX_TYPES_TO_DISPLAY} more + + )} + + {schema.required && ( + Required + )} + + + {schema.description && ( + + {schema.description} + + )} + + {maybeEnum && ( + <> + setIsChildPropertiesOpen(!isChildPropertiesOpen)} + > + {isChildPropertiesOpen ? "Hide values" : "Show values"} + + + {isChildPropertiesOpen && ( +
+ {maybeEnum.map((item) => ( + + {item} + + ))} +
+ )} + + )} + + {maybeChildProperties && ( + <> + setIsChildPropertiesOpen(!isChildPropertiesOpen)} + > + {isChildPropertiesOpen ? "Hide properties" : "Show properties"} + + + {isChildPropertiesOpen && ( + + {Object.entries(maybeChildProperties).map(([name, property]) => ( + + ))} + + )} + + )} + + {maybeUnion && ( + <> + setIsPossibleTypesOpen(!isPossibleTypesOpen)} + > + {isPossibleTypesOpen + ? "Hide possible types" + : "Show possible types"} + + {isPossibleTypesOpen && ( + + {maybeFlattenUnionSchema(maybeUnion).map((item) => ( + + ))} + + )} + + )} +
+ ); +}; + +export default SchemaProperty; diff --git a/components/ApiReference/SchemaProperties/helpers.ts b/components/ApiReference/SchemaProperties/helpers.ts new file mode 100644 index 000000000..8d879e522 --- /dev/null +++ b/components/ApiReference/SchemaProperties/helpers.ts @@ -0,0 +1,116 @@ +import { OpenAPIV3 } from "@scalar/openapi-types"; + +function isRequired(schema: OpenAPIV3.SchemaObject) {} + +function getTypeForDisplay(schema: OpenAPIV3.SchemaObject): string { + if (schema.type === "array" && schema.items) { + // Get the inner type of the array + const innerType = getTypeForDisplay(schema.items); + return `${innerType}[]`; + } + + if (schema.title) return schema.title; + if (schema.type === "object" && schema.additionalProperties) + return "object(any)"; + + if (schema.type === "string" && schema.format) { + return `string(${schema.format})`; + } + + if (schema.type === "string" && schema.enum) { + return "enum(string)"; + } + + if (schema.type) return schema.type; + if (schema.nullable) return "null"; + + return "unknown"; +} + +function getTypesForDisplay(schema: OpenAPIV3.SchemaObject): string[] { + const union = schema.anyOf || schema.oneOf || schema.allOf; + + if (union) { + return union.map((item) => getTypeForDisplay(item)); + } + + return [getTypeForDisplay(schema)]; +} + +function innerEnumSchema(schema: OpenAPIV3.SchemaObject): string[] | undefined { + if (schema.type === "array") { + return innerEnumSchema(schema.items as OpenAPIV3.SchemaObject); + } + + if (schema.type === "string" && schema.enum) { + return schema.enum; + } + + return undefined; +} + +function innerUnionSchema( + schema: OpenAPIV3.SchemaObject, +): OpenAPIV3.SchemaObject[] | undefined { + if (schema.type === "array") { + return innerUnionSchema(schema.items as OpenAPIV3.SchemaObject); + } + + if (schema.anyOf) return schema.anyOf; + if (schema.oneOf) return schema.oneOf; + if (schema.allOf) return schema.allOf; + + return undefined; +} + +function maybeFlattenUnionSchema( + schemas: OpenAPIV3.SchemaObject[], +): OpenAPIV3.SchemaObject[] { + const nonNullableSchemas = schemas.filter( + (schema) => schema.nullable !== true, + ); + + const nonNullableInnerSchemas = nonNullableSchemas + .map((schema) => innerUnionSchema(schema)) + .flat() + .filter((schema) => schema !== undefined); + + if (nonNullableInnerSchemas && nonNullableInnerSchemas.length > 0) { + return nonNullableInnerSchemas as OpenAPIV3.SchemaObject[]; + } + + return nonNullableSchemas; +} + +function resolveChildProperties( + schema: OpenAPIV3.SchemaObject, +): Record | undefined { + if (schema.type === "array") { + return resolveChildProperties(schema.items as OpenAPIV3.SchemaObject); + } + + if (schema.type === "object" && schema.properties) { + return schema.properties; + } + + if ( + schema.type === "object" && + schema.additionalProperties && + typeof schema.additionalProperties === "object" + ) { + return { + string: schema.additionalProperties, + }; + } + + return undefined; +} + +export { + getTypeForDisplay, + getTypesForDisplay, + innerUnionSchema, + innerEnumSchema, + maybeFlattenUnionSchema, + resolveChildProperties, +}; diff --git a/components/ApiReference/SchemaProperties/index.ts b/components/ApiReference/SchemaProperties/index.ts new file mode 100644 index 000000000..57d9cd889 --- /dev/null +++ b/components/ApiReference/SchemaProperties/index.ts @@ -0,0 +1 @@ +export { default as SchemaProperties } from "./SchemaProperties"; diff --git a/components/ApiReference/helpers.ts b/components/ApiReference/helpers.ts new file mode 100644 index 000000000..02e17b104 --- /dev/null +++ b/components/ApiReference/helpers.ts @@ -0,0 +1,130 @@ +import { OpenAPIV3 } from "@scalar/openapi-types"; +import { StainlessConfig, StainlessResource } from "../../lib/openApiSpec"; +import JSONPointer from "jsonpointer"; +import { SidebarSection, SidebarSubsection } from "../../data/types"; + +function resolveEndpointFromMethod( + endpointOrMethodConfig: string | { endpoint: string }, +) { + const endpointReference = + typeof endpointOrMethodConfig === "string" + ? endpointOrMethodConfig + : endpointOrMethodConfig.endpoint; + + const [methodType, endpoint] = endpointReference.split(" "); + return [methodType, endpoint]; +} + +function getSidebarContent( + openApiSpec: OpenAPIV3.Document, + stainlessSpec: StainlessConfig, + resourceOrder: string[], + basePath: string, + preSidebarContent?: SidebarSection[], +): SidebarSection[] { + return (preSidebarContent || []).concat( + resourceOrder.map((resourceName) => { + const resource = stainlessSpec.resources[resourceName]; + + return { + title: resource.name || resourceName, + slug: `/${basePath}/${resourceName}`, + pages: buildSidebarPages(resource, openApiSpec), + }; + }), + ); +} + +function buildSidebarPages( + resource: StainlessResource, + openApiSpec: OpenAPIV3.Document, +) { + let pages: SidebarSubsection[] = [ + { + title: "Overview", + slug: `/`, + }, + ]; + + if (resource.methods) { + pages.push( + ...Object.entries(resource.methods).map(([methodName, method]) => { + const [methodType, endpoint] = resolveEndpointFromMethod(method); + const openApiOperation = openApiSpec.paths?.[endpoint]?.[methodType]; + + return { + title: openApiOperation.summary, + slug: `/${methodName}`, + }; + }), + ); + } + + if (resource.models) { + pages.push({ + title: "Object definitions", + slug: `/schemas`, + pages: Object.entries(resource.models).map(([modelName, modelRef]) => { + const schema: OpenAPIV3.SchemaObject | undefined = JSONPointer.get( + openApiSpec, + modelRef.replace("#", ""), + ); + + return { + title: schema?.title ?? modelName, + slug: `/${modelName}`, + }; + }), + }); + } + + if (resource.subresources) { + pages.push( + ...Object.entries(resource.subresources).map( + ([subresourceName, subresource]) => { + return { + title: subresource.name || subresourceName, + slug: `/${subresourceName}`, + pages: buildSidebarPages(subresource, openApiSpec), + }; + }, + ), + ); + } + + return pages; +} + +function augmentSnippetsWithCurlRequest( + snippets: Record, + { + baseUrl, + methodType, + endpoint, + body, + }: { + baseUrl: string; + methodType: string; + endpoint: string; + body?: Record; + }, +) { + const maybeBodyString = body ? `-d '${JSON.stringify(body)}'` : ""; + + return { + curl: ` + curl -X ${methodType.toUpperCase()} ${baseUrl}${endpoint} \\ + -H "Content-Type: application/json" \\ + -H "Authorization: Bearer sk_test_12345" \\ + ${maybeBodyString} + `, + ...snippets, + }; +} + +export { + getSidebarContent, + resolveEndpointFromMethod, + buildSidebarPages, + augmentSnippetsWithCurlRequest, +}; diff --git a/components/ApiReference/index.ts b/components/ApiReference/index.ts new file mode 100644 index 000000000..5827332b2 --- /dev/null +++ b/components/ApiReference/index.ts @@ -0,0 +1,2 @@ +export { default as ApiReferenceMethod } from "./ApiReferenceMethod"; +export { default as ApiReferenceSection } from "./ApiReferenceSection"; diff --git a/components/ApiSections.tsx b/components/ApiSections.tsx index 8b967089a..aa556144d 100644 --- a/components/ApiSections.tsx +++ b/components/ApiSections.tsx @@ -8,8 +8,12 @@ export const Section = ({ headingClassName = "", isIdempotent = false, isRetentionSubject = false, + path = undefined, }) => ( -
+
{title && ( ( ); +type Props = { + name: string; + type: string; + description: string; + typeSlug?: string; + nameSlug?: string; + isRequired?: boolean; +}; + const Attribute = ({ name, type, @@ -11,7 +20,7 @@ const Attribute = ({ typeSlug, nameSlug, isRequired, -}) => ( +}: Props) => (
diff --git a/components/CodeBlock.tsx b/components/CodeBlock.tsx index eab2278c5..28513988b 100644 --- a/components/CodeBlock.tsx +++ b/components/CodeBlock.tsx @@ -112,7 +112,7 @@ const getParams = ( export const CodeBlock: React.FC = ({ children, - className = children.props ? children.props.className : "", + className = children?.props ? children.props.className : "", language, languages, setLanguage, diff --git a/components/Endpoints.tsx b/components/Endpoints.tsx index aedc6036c..efcac0a50 100644 --- a/components/Endpoints.tsx +++ b/components/Endpoints.tsx @@ -15,10 +15,10 @@ const Endpoints = ({ children, title = "Endpoints" }) => ( ); const EndpointText = ({ method, path }) => ( - <> +
( > {method} - + {path} - +
); const Endpoint = ({ method, path, name, withLink = false }) => ( diff --git a/components/Header/MinimalHeader.tsx b/components/Header/MinimalHeader.tsx index 10ef1b5ac..304e88359 100644 --- a/components/Header/MinimalHeader.tsx +++ b/components/Header/MinimalHeader.tsx @@ -23,7 +23,10 @@ const MinimalHeader = ({ pageType, toggleSidebar, sidebarShown }: Props) => { useEffect(() => setMounted(true), []); return ( -
+
+ +
+ + + + Note: the Knock management API only provides access to + the resources managed in the Knock dashboard, such as + workflows, templates, translations and commits. +
+
+ All other concepts within the Knock notification engine are accessed through + the Knock API, which you use to trigger workflows, + identify users, and manage preferences. + + } +/> + +The Knock management API provides you with a programmatic way to interact with the resources you create and manage in your Knock dashboard, including workflows, templates, layouts, translations and commits. It's separate from the [Knock API](/reference) and only provides access to a limited subset of resources. + +You can use the Knock management API to: + +- Create, update, and manage your Knock workflows and the notification templates within those workflows. +- Create, update and manage your [email layouts](/integrations/email/layouts). +- Create and manage the [translations](/concepts/translations) used by your notification templates. +- Create, update, and manage your [partials](/designing-workflows/partials). +- Commit and promote changes between your Knock environments. + +
+ + +```bash title="Base URL" +https://control.knock.app/v1 +``` + + +
+ +
+ + +The management API authenticates with a Bearer authentication mechanism using a [service token](/developer-tools/service-tokens) generated on your account. + +Note: [environment-level API keys](/developer-tools/api-keys) should never be used to authenticate with the management API. To authenticate with the management API, generate a [service token](/developer-tools/service-tokens). + + + + +``` +Authorization: Bearer knock_st_12345 +``` + + +
+ +
+ + +Knock uses standard [HTTP response codes](https://developer.mozilla.org/en-US/Web/HTTP/Status) to indicate the success or failure of your API requests. + +- `2xx` success status codes confirm that your request worked as expected. +- `4xx` error status codes indicate an error caused by incorrect or missing request information (e.g. providing an incorrect API key). +- `5xx` error status codes indicate a Knock server error. + + +
+ +
+ + +You can use our [Management API Postman collection](https://www.postman.com/knock-labs/workspace/knock-public-workspace/collection/15616728-9ed6000c-13bc-43f5-a2cf-db6daea256bd?action=share&creator=15616728&active-environment=15616728-6df39335-c6f9-4c9d-99d5-73e3c7ffe524) to quickly get started testing our Management API. + + +
diff --git a/data/specs/mapi/customizations.yml b/data/specs/mapi/customizations.yml new file mode 100644 index 000000000..600b71d53 --- /dev/null +++ b/data/specs/mapi/customizations.yml @@ -0,0 +1,62 @@ +resources: + workflows: + name: Workflows + description: |- + To define a logical flow of your notifications, you create a workflow consisting of workflow steps. Workflow steps can be functions or channels, and can have conditional logic that determines whether to execute that step when the workflow is triggered. + + You can retrieve, update, or create a workflow as well as list all workflows in a given environment. Workflows are identified by their unique workflow key. + subresources: + steps: + name: Steps + description: |- + Methods that operate on the individual steps within a workflow. Steps are referenced by their `ref`, which is unique within a workflow. + templates: + name: Templates + description: |- + Templates represent the templated contents of a message sent to an individual recipient on a specific channel. + + There are no endpoints for working directly with templates, instead you must do so through [modifying a workflow](/mapi-reference/workflows). + email_layouts: + name: Email Layouts + description: |- + Email layouts wrap email message templates to share consistent design components between the email notifications that your recipients receive. + + You can retrieve, update, and create email layouts as well as listing all in a given environment. Email layouts are identified by their unique key. + environments: + name: Environments + description: |- + Environments are used to group workflows, email layouts, and translations. + translations: + name: Translations + description: |- + Translations support localization in Knock. They hold the translated content for a given locale, which you can reference in your message templates with the t Liquid function filter. + + You can retrieve, update, and create translations as well as list all translations in a given environment. Translations are identified by their locale code + an optional namespace. + channels: + name: Channels + description: |- + Channels are the delivery mechanisms for your notifications. + partials: + name: Partials + description: |- + Partials are reusable pieces of content you can use across your channel templates. + + You can retrieve, update, and create partials as well as list all partials in a given environment. Partials are identified by their unique partial key. + channel_groups: + name: Channel Groups + description: |- + Channel groups are used to group channels together. + commits: + name: Commits + description: |- + To version the changes you make in your environments, Knock uses a commit model. When you make changes to a workflow, a layout, or a translation, you will need to commit them in your development environment, then promote to subsequent environments before those changes will appear in the respective environments. + + You can retrieve all commits in a given environment, or show the details of one single commit based on the target commit id. + message_types: + name: Message Types + description: |- + Message types are used to categorize messages. + variables: + name: Variables + description: |- + Variables are used to store shared attributes for your workflows and templates at the environment level. diff --git a/data/specs/mapi/openapi.yml b/data/specs/mapi/openapi.yml new file mode 100644 index 000000000..06ca6f60c --- /dev/null +++ b/data/specs/mapi/openapi.yml @@ -0,0 +1,7075 @@ +components: + responses: {} + schemas: + SmsChannelSettings: + description: SMS channel settings. + example: + link_tracking: true + properties: + link_tracking: + description: Whether to track link clicks on SMS notifications. + example: true + type: boolean + title: SmsChannelSettings + type: object + WrappedEmailLayoutRequestRequest: + description: Wraps the EmailLayoutRequest request under the email_layout key. + example: + email_layout: + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + name: Transactional + text_layout: Hello, world! + properties: + email_layout: + $ref: "#/components/schemas/EmailLayoutRequest" + required: + - email_layout + title: WrappedEmailLayoutRequestRequest + type: object + WorkflowStep: + anyOf: + - $ref: "#/components/schemas/WorkflowChannelStep" + - $ref: "#/components/schemas/WorkflowDelayStep" + - $ref: "#/components/schemas/WorkflowBatchStep" + - $ref: "#/components/schemas/WorkflowFetchStep" + - $ref: "#/components/schemas/WorkflowThrottleStep" + - $ref: "#/components/schemas/WorkflowBranchStep" + - $ref: "#/components/schemas/WorkflowTriggerWorkflowStep" + description: >- + A step within a workflow. All workflow steps, regardless of its type, share a common set of core + attributes (`type`, `ref`, `name`, `description`, `conditions`). + example: + channel_group_key: null + channel_key: postmark + channel_overrides: null + conditions: null + description: This is a description of the channel step + name: Email channel step + ref: channel_step + send_windows: null + template: + html_body:

Hello, world!

+ settings: + layout_key: default + subject: Hello, world! + text_body: Hello, world! + type: channel + title: WorkflowStep + type: object + PaginatedVariableResponse: + description: A paginated list of Variable. Contains a list of entries and page information. + example: + entries: + - description: This is a description of my variable. + inserted_at: "2021-01-01T00:00:00Z" + key: my_variable + type: public + updated_at: "2021-01-01T00:00:00Z" + value: my_value + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Variable" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedVariableResponse + type: object + PreviewWorkflowTemplateResponse: + description: A response to a preview workflow template request. + example: + content_type: email + result: success + template: + html_body:

Hello, world!

+ settings: + layout_key: default + subject: Hello, world! + text_body: Hello, world! + properties: + content_type: + description: The content type of the preview. + enum: + - email + - in_app_feed + - push + - chat + - sms + - http + type: string + result: + description: The result of the preview. + enum: + - success + - error + type: string + template: + anyOf: + - $ref: "#/components/schemas/EmailTemplate" + - $ref: "#/components/schemas/InAppFeedTemplate" + - $ref: "#/components/schemas/PushTemplate" + - $ref: "#/components/schemas/ChatTemplate" + - $ref: "#/components/schemas/SmsTemplate" + - $ref: "#/components/schemas/RequestTemplate" + description: The rendered template, ready to be previewed. + type: object + required: + - result + - content_type + - template + title: PreviewWorkflowTemplateResponse + type: object + WorkflowDelayStep: + description: A delay step within a workflow. + example: + conditions: {} + description: Delay for 10 seconds + name: Delay + ref: delay_step + settings: + delay_for: + unit: seconds + value: 10 + type: delay + properties: + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: A set of conditions to be evaluated for this delay step. + type: object + description: + description: >- + An arbitrary string attached to a workflow step. Useful for adding notes about the workflow for + internal purposes. + example: Delay for 10 seconds + nullable: true + type: string + name: + description: A name for the workflow step. + example: Delay + type: string + ref: + description: The reference key of the workflow step. Must be unique per workflow. + example: delay_step + type: string + settings: + description: >- + The settings for the delay step. Both fields can be set to compute a delay where `delay_for` is an + offset from the `delay_until_field_path`. + properties: + delay_for: + anyOf: + - $ref: "#/components/schemas/Duration" + - nullable: true + description: A duration object that describes how long to wait before proceeding to the next step. + type: object + delay_until_field_path: + description: When set will use the path to resolve the delay into a timestamp from the property referenced + example: recipient.delay_until + type: string + type: object + type: + description: The type of the workflow step. + enum: + - delay + example: delay + type: string + required: + - type + - ref + - name + - description + - conditions + - settings + title: WorkflowDelayStep + type: object + RequestTemplate: + description: A request template. + example: + body: null + headers: + - key: X-API-Key + value: "1234567890" + method: get + query_params: + - key: key + value: value + url: https://example.com + properties: + body: + description: A body of the request. Only used for POST or PUT requests. + example: '{"key": "value"}' + nullable: true + type: string + headers: + description: >- + A list of key-value pairs for the request headers. Each object should contain key and value fields + with string values. + items: + properties: + key: + description: The key of the header. + example: X-API-Key + type: string + value: + description: The value of the header. + example: "1234567890" + type: string + required: + - key + - value + type: object + type: array + method: + description: The HTTP method of the request. + enum: + - get + - post + - put + - delete + - patch + example: post + type: string + query_params: + description: >- + A list of key-value pairs for the request query params. Each object should contain key and value + fields with string values. + items: + properties: + key: + description: The key of the query param. + example: key + type: string + value: + description: The value of the query param. + example: value + type: string + required: + - key + - value + type: object + type: array + url: + description: The URL of the request. + example: https://example.com + type: string + required: + - url + - method + title: RequestTemplate + type: object + WrappedPartialResponse: + description: Wraps the Partial response under the `partial` key. + example: + partial: + content:

Hello, world!

+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + properties: + partial: + $ref: "#/components/schemas/Partial" + required: + - partial + title: WrappedPartialResponse + type: object + WrappedPartialRequestRequest: + description: Wraps the PartialRequest request under the partial key. + example: + partial: + content:

Hello, world!

+ name: My Partial + type: html + properties: + partial: + $ref: "#/components/schemas/PartialRequest" + required: + - partial + title: WrappedPartialRequestRequest + type: object + MessageTypeMultiSelectField: + description: A multi-select field used in a message type. + example: + key: multi_select_field + label: Multi-Select Field + settings: + default: + - option1 + - option3 + description: A description of the multi-select field + options: + - label: Option 1 + value: option1 + - label: Option 2 + value: option2 + - label: Option 3 + value: option3 + required: true + type: multi_select + value: + - option1 + - option3 + properties: + key: + description: The unique key of the field. + example: key + type: string + label: + description: The label of the field. + example: Label + nullable: true + type: string + settings: + description: Settings for the multi_select field. + properties: + default: + description: The default values for the multi-select field. + example: + - option1 + - option3 + items: + type: string + nullable: true + type: array + description: + example: A description of the field, used in the UI + type: string + options: + description: The available options for the multi-select field. + items: + properties: + label: + description: The display label for the option. + example: Option 1 + type: string + value: + description: The value for the option. + example: option1 + type: string + required: + - value + type: object + type: array + required: + description: Whether the field is required. + example: true + type: boolean + type: object + type: + description: The type of the field. + enum: + - multi_select + example: multi_select + type: string + value: + description: The selected values. + example: + - option1 + - option3 + items: + type: string + nullable: true + type: array + required: + - type + - key + - settings + title: MessageTypeMultiSelectField + type: object + MessageTypeBooleanField: + description: A boolean field used in a message type. + example: + key: boolean_field + label: Boolean Field + settings: + default: false + description: A description of the boolean field + required: true + type: boolean + value: true + properties: + key: + description: The unique key of the field. + example: key + type: string + label: + description: The label of the field. + example: Label + nullable: true + type: string + settings: + description: Settings for the boolean field. + properties: + default: + description: The default value of the boolean field. + example: true + type: boolean + description: + example: A description of the field, used in the UI + type: string + required: + description: Whether the field is required. + example: true + type: boolean + type: object + type: + description: The type of the field. + enum: + - boolean + example: boolean + type: string + value: + description: The value of the boolean field. + example: true + type: boolean + required: + - type + - key + - value + title: MessageTypeBooleanField + type: object + Translation: + description: A translation object. + example: + content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + properties: + content: + description: >- + A JSON encoded string containing the key-value pairs of translation references and translation + strings. + type: string + format: + description: Indicates whether content is a JSON encoded object string or a string in the PO format. + enum: + - json + - po + type: string + inserted_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + locale_code: + description: The locale code for the translation object. + type: string + namespace: + description: An optional namespace for the translation to help categorize your translations. + type: string + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + required: + - locale_code + - namespace + - content + - format + - inserted_at + - updated_at + title: Translation + type: object + Commit: + description: A commit is a change to a resource within an environment, made by an author. + example: + commit_author: + email: john.doe@example.com + name: John Doe + commit_message: This is a commit message + created_at: "2021-01-01T00:00:00Z" + environment: development + id: 123e4567-e89b-12d3-a456-426614174000 + resource: + identifier: my-email-layout + type: email_layout + updated_at: "2021-01-01T00:00:00Z" + properties: + commit_author: + description: The author of the commit. + example: + email: john.doe@example.com + name: John Doe + properties: + email: + description: The email address of the commit author. + type: string + name: + description: The name of the commit author. + nullable: true + type: string + required: + - email + title: CommitAuthor + type: object + commit_message: + description: The optional message about the commit. + type: string + created_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + environment: + description: The environment of the commit. + example: development + type: string + id: + description: The unique identifier for the commit. + format: uuid + type: string + resource: + description: The resource object associated with the commit. + example: + identifier: my-email-layout + type: email_layout + properties: + identifier: + description: The unique identifier for the resource. + type: string + type: + description: The type of the resource object. + enum: + - email_layout + - workflow + - translation + - partial + - message_type + example: workflow + type: string + required: + - identifier + - type + title: CommitResource + type: object + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + required: + - id + - resource + - commit_author + - environment + - commit_message + - created_at + - updated_at + title: Commit + type: object + MessageTypeRequest: + description: A request to create a message type. + example: + description: This is a message type + name: My Message Type + preview:
Hello, world!
+ variants: + - fields: + - key: text_field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + key: default + name: Default + properties: + description: + description: >- + An arbitrary string attached to a message type object. Useful for adding notes about the message + type for internal purposes. Maximum of 280 characters allowed. + nullable: true + type: string + icon_name: + description: The icon name of the message type. + type: string + name: + description: A name for the message type. Must be at maximum 255 characters in length. + type: string + preview: + description: An HTML/liquid template for the message type preview. + type: string + semver: + description: The semantic version of the message type. + example: 1.0.0 + type: string + variants: + description: The variants of the message type. + items: + $ref: "#/components/schemas/MessageTypeVariant" + type: array + required: + - name + - description + - preview + title: MessageTypeRequest + type: object + MessageTypeButtonField: + description: A button field used in a message type. + example: + action: + key: button_action + label: Button Action + settings: + description: A description of the text field in the button action + required: true + type: text + value: submit + key: button_field + label: Button Field + settings: + description: A description of the button field + required: true + text: + key: button_text + label: Button Text + settings: + description: A description of the text field in the button + required: true + type: text + value: Click me + type: button + properties: + action: + $ref: "#/components/schemas/MessageTypeTextField" + key: + description: The unique key of the field. + example: key + type: string + label: + description: The label of the field. + example: Label + nullable: true + type: string + settings: + description: Settings for the button field. + properties: + description: + example: A description of the field, used in the UI + type: string + required: + description: Whether the field is required. + example: true + type: boolean + type: object + text: + $ref: "#/components/schemas/MessageTypeTextField" + type: + description: The type of the field. + enum: + - button + example: button + type: string + required: + - type + - key + - text + - action + title: MessageTypeButtonField + type: object + EmailButtonSetBlock: + description: A button set block in an email template. + example: + buttons: + - action: https://example.com/button1 + label: Button 1 + size_attrs: + is_fullwidth: false + size: sm + style_attrs: + background_color: "#000000" + border_color: "#000000" + border_radius: 6 + border_width: 1 + text_color: "#FFFFFF" + variant: primary + id: 123e4567-e89b-12d3-a456-426614174000 + layout_attrs: + column_gap: 8 + horizontal_align: left + padding_bottom: 8 + padding_left: 4 + padding_right: 4 + padding_top: 8 + type: button_set + version: 1 + properties: + buttons: + description: A list of buttons in the button set. + items: + $ref: "#/components/schemas/EmailButtonSetBlockButton" + type: array + id: + description: The ID of the block. + example: 123e4567-e89b-12d3-a456-426614174000 + format: uuid + type: string + layout_attrs: + description: The layout attributes of the block. + properties: + column_gap: + description: The column_gap layout attribute of the block. + type: integer + horizontal_align: + description: The horizontal alignment of the block. + enum: + - left + - center + - right + type: string + padding_bottom: + description: The padding_bottom layout attribute of the block. + type: integer + padding_left: + description: The padding_left layout attribute of the block. + type: integer + padding_right: + description: The padding_right layout attribute of the block. + type: integer + padding_top: + description: The padding_top layout attribute of the block. + type: integer + required: + - padding_top + - padding_right + - padding_bottom + - padding_left + - horizontal_align + - column_gap + type: object + type: + description: The type of the block. + type: string + version: + description: The version of the block. + example: 1 + type: integer + required: + - id + - type + - version + - buttons + title: EmailButtonSetBlock + type: object + InAppFeedTemplate: + description: An in-app feed template. + example: + action_buttons: + - action: https://example.com + label: Button 1 + action_url: https://example.com + markdown_body: Hello, world! + properties: + action_buttons: + description: The action buttons of the in-app feed. + items: + description: A single-action button to be rendered in an in-app feed cell. + properties: + action: + description: The action of the action button. + example: https://example.com + type: string + label: + description: The label of the action button. + example: Button 1 + type: string + required: + - label + - action + type: object + type: array + action_url: + description: >- + The URL to navigate to when the in-app feed is tapped. Can be omitted for multi-action templates, + where the action buttons will be used instead. + example: https://example.com + nullable: true + type: string + markdown_body: + description: The markdown body of the in-app feed. + example: Hello, world! + type: string + required: + - markdown_body + title: InAppFeedTemplate + type: object + MessageTypeVariant: + description: A variant of a message type. + example: + fields: + - key: text_field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + key: default + name: Default + properties: + fields: + description: The field types available for the variant. + items: + anyOf: + - $ref: "#/components/schemas/MessageTypeBooleanField" + - $ref: "#/components/schemas/MessageTypeButtonField" + - $ref: "#/components/schemas/MessageTypeMarkdownField" + - $ref: "#/components/schemas/MessageTypeMultiSelectField" + - $ref: "#/components/schemas/MessageTypeSelectField" + - $ref: "#/components/schemas/MessageTypeTextField" + - $ref: "#/components/schemas/MessageTypeTextareaField" + type: object + type: array + key: + description: >- + The unique key string for the variant. Must be at minimum 3 characters and at maximum 255 + characters in length. Must be in the format of ^[a-z0-9_-]+$. + type: string + name: + description: A name for the variant. Must be at maximum 255 characters in length. + type: string + required: + - key + - name + - fields + title: MessageTypeVariant + type: object + EmailLayoutRequest: + description: A request to update or create an email layout. + example: + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + name: Transactional + text_layout: Hello, world! + properties: + footer_links: + description: A list of one or more items to show in the footer of the email layout. + items: + properties: + text: + description: The text to display as the link. + nullable: false + type: string + url: + description: The URL to link to. + nullable: false + type: string + required: + - text + - url + type: object + type: array + html_layout: + description: The complete HTML content of the email layout. + nullable: false + type: string + name: + description: The friendly name of this email layout. + nullable: false + type: string + text_layout: + description: The complete plain text content of the email layout. + nullable: false + type: string + required: + - name + - html_layout + - text_layout + title: EmailLayoutRequest + type: object + PartialRequest: + description: A partial object with attributes to update or create a partial. + example: + content:

Hello, world!

+ name: My Partial + type: html + properties: + content: + description: The content of the partial. + type: string + description: + description: The description of the partial. + nullable: true + type: string + icon_name: + description: >- + The name of the icon to be used in the visual editor. Only relevant when `visual_block_enabled` is + `true`. + nullable: true + type: string + name: + description: The name of the partial. + type: string + type: + description: The type of the partial. + enum: + - html + - text + - json + - markdown + type: string + visual_block_enabled: + description: Indicates whether the partial can be used in the visual editor. Only applies to HTML partials. + example: false + nullable: true + type: boolean + required: + - type + - name + - content + title: PartialRequest + type: object + ConditionGroup: + anyOf: + - $ref: "#/components/schemas/ConditionGroupAllMatch" + - $ref: "#/components/schemas/ConditionGroupAnyMatch" + description: A group of conditions to be evaluated. + example: + all: + - argument: some_property + operator: equal_to + variable: recipient.property + title: ConditionGroup + type: object + WorkflowRequest: + description: A workflow request for upserting a workflow. + example: + name: My Workflow + steps: + - channel_key: in-app-feed + name: Channel 1 + ref: channel_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + properties: + categories: + description: A list of categories that the workflow belongs to. + items: + type: string + type: array + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: >- + A conditions object that describes one or more conditions to be met for the workflow to be + executed. (optional). + type: object + description: + description: >- + An arbitrary string attached to a workflow object. Useful for adding notes about the workflow for + internal purposes. Maximum of 280 characters allowed. + type: string + name: + description: A name for the workflow. Must be at maximum 255 characters in length. + type: string + settings: + description: A map of workflow settings. + properties: + is_commercial: + description: Whether the workflow is commercial. Defaults to false. + example: false + type: boolean + override_preferences: + description: >- + Whether to ignore recipient preferences for a given type of notification. If true, will send + for every channel in the workflow even if the recipient has opted out of a certain kind. + Defaults to false. + example: false + type: boolean + type: object + steps: + description: >- + A list of workflow step objects in the workflow, which may contain any of: channel step, delay + step, batch step, fetch step. + items: + $ref: "#/components/schemas/WorkflowStep" + type: array + trigger_data_json_schema: + additionalProperties: true + description: >- + A JSON schema for the expected structure of the workflow trigger's data payload. Used to validate + trigger requests. (optional). + type: object + trigger_frequency: + description: >- + The frequency at which the workflow should be triggered. One of: `once_per_recipient`, + `once_per_recipient_per_tenant`, `every_trigger`. Defaults to `every_trigger`. + enum: + - every_trigger + - once_per_recipient + - once_per_recipient_per_tenant + example: every_trigger + type: string + required: + - name + - steps + title: WorkflowRequest + type: object + EmailPartialBlock: + description: A partial block in an email template, used to render a reusable partial component. + example: + attrs: + foo: bar + id: 123e4567-e89b-12d3-a456-426614174000 + key: my_partial + layout_attrs: + padding_bottom: 8 + padding_left: 4 + padding_right: 4 + padding_top: 8 + name: my_partial + type: partial + version: 1 + properties: + attrs: + additionalProperties: true + description: The attributes to pass to the partial block. + type: object + id: + description: The ID of the block. + example: 123e4567-e89b-12d3-a456-426614174000 + format: uuid + type: string + key: + description: The key of the partial block to invoke. + type: string + layout_attrs: + description: The layout attributes of the block. + properties: + padding_bottom: + description: The padding_bottom layout attribute of the block. + type: integer + padding_left: + description: The padding_left layout attribute of the block. + type: integer + padding_right: + description: The padding_right layout attribute of the block. + type: integer + padding_top: + description: The padding_top layout attribute of the block. + type: integer + required: + - padding_top + - padding_right + - padding_bottom + - padding_left + type: object + name: + description: The name of the partial block. + type: string + type: + description: The type of the block. + type: string + version: + description: The version of the block. + example: 1 + type: integer + required: + - id + - type + - version + - name + - key + - attrs + title: EmailPartialBlock + type: object + RecipientReference: + description: >- + A recipient reference, used when referencing a recipient by either their ID (for a user), or by a + reference for an object. + example: + collection: projects + id: project_1 + oneOf: + - description: A user ID. + nullable: false + type: string + - description: An object reference. + properties: + collection: + type: string + id: + type: string + required: + - id + - collection + type: object + title: RecipientReference + type: object + ConditionGroupAnyMatch: + description: A group of conditions that any must be met. Can contain nested alls. + example: + any: + - all: + - argument: some_property + operator: equal_to + variable: recipient.property + properties: + any: + description: An array of conditions or nested condition groups to evaluate. + items: + anyOf: + - $ref: "#/components/schemas/Condition" + - $ref: "#/components/schemas/ConditionGroupAllMatch" + type: object + type: array + required: + - any + title: ConditionGroupAnyMatch + type: object + MessageTypeTextField: + description: A text field used in a message type. + example: + key: text_field + label: Text Field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + properties: + key: + description: The unique key of the field. + example: key + type: string + label: + description: The label of the field. + example: Label + nullable: true + type: string + settings: + description: Settings for the text field. + properties: + default: + description: The default value of the text field. + example: A placeholder + nullable: true + type: string + description: + example: A description of the field, used in the UI + type: string + max_length: + example: 100 + type: integer + min_length: + example: 10 + type: integer + required: + description: Whether the field is required. + example: true + type: boolean + type: object + type: + description: The type of the field. + enum: + - text + example: text + type: string + value: + description: The value of the text field. + example: Hello, world! + nullable: true + type: string + required: + - type + - key + title: MessageTypeTextField + type: object + EmailTemplate: + description: An email message template. + example: + html_body:

Hello, world!

+ settings: + layout_key: default + subject: Hello, world! + text_body: Hello, world! + properties: + html_body: + description: An HTML template for the email body. Either `html_body` or `visual_blocks` must be provided. + example:

Hello, world!

+ type: string + settings: + anyOf: + - properties: + attachment_key: + description: The object path in the data payload (of the workflow trigger call) to resolve attachments. + example: attachments + nullable: true + type: string + layout_key: + description: The key of the email layout which the step is using. + example: default + nullable: true + type: string + pre_content: + description: >- + A liquid template that will be injected into the layout above the message template + content. + nullable: true + type: string + - nullable: true + description: The settings for the email template. Can be omitted. + type: object + subject: + description: The subject of the email. + example: Hello, world! + type: string + text_body: + description: >- + A text template for the email body. Only present if opted out from autogenerating it from the HTML + template. + example: Hello, world! + nullable: true + type: string + visual_blocks: + description: The visual blocks of the email. Either `html_body` or `visual_blocks` must be provided. + items: + anyOf: + - $ref: "#/components/schemas/EmailButtonSetBlock" + - $ref: "#/components/schemas/EmailDividerBlock" + - $ref: "#/components/schemas/EmailHtmlBlock" + - $ref: "#/components/schemas/EmailMarkdownBlock" + - $ref: "#/components/schemas/EmailPartialBlock" + type: object + type: array + required: + - subject + title: EmailTemplate + type: object + WorkflowChannelStep: + description: A channel step within a workflow. + example: + channel_group_key: null + channel_key: postmark + channel_overrides: null + conditions: null + description: This is a description of the channel step + name: Email channel step + ref: channel_step + send_windows: null + template: + html_body:

Hello, world!

+ settings: + layout_key: default + subject: Hello, world! + text_body: Hello, world! + type: channel + properties: + channel_group_key: + description: >- + The key of the channel group to which the channel step will be sending a notification. A channel + step can have either a channel key or a channel group key, but not both. + example: email + nullable: true + type: string + channel_key: + description: >- + The key of the channel to which the channel step will be sending a notification. A channel step + can have either a channel key or a channel group key, but not both. + example: postmark + nullable: true + type: string + channel_overrides: + anyOf: + - $ref: "#/components/schemas/EmailChannelSettings" + - $ref: "#/components/schemas/InAppFeedChannelSettings" + - $ref: "#/components/schemas/SmsChannelSettings" + - $ref: "#/components/schemas/PushChannelSettings" + - $ref: "#/components/schemas/ChatChannelSettings" + - nullable: true + description: A map of channel overrides for the channel step. + type: object + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: A set of conditions to be evaluated for this channel step. + type: object + description: + description: >- + An arbitrary string attached to a workflow step. Useful for adding notes about the workflow for + internal purposes. + example: Delay for 10 seconds + nullable: true + type: string + name: + description: A name for the workflow step. + example: Delay + type: string + ref: + description: The reference key of the workflow step. Must be unique per workflow. + example: delay_step + type: string + send_windows: + description: A list of send window objects. Must include one send window object per day of the week. + items: + $ref: "#/components/schemas/SendWindow" + nullable: true + type: array + template: + anyOf: + - $ref: "#/components/schemas/EmailTemplate" + - $ref: "#/components/schemas/InAppFeedTemplate" + - $ref: "#/components/schemas/SmsTemplate" + - $ref: "#/components/schemas/PushTemplate" + - $ref: "#/components/schemas/ChatTemplate" + - $ref: "#/components/schemas/WebhookTemplate" + description: >- + The message template set up with the channel step. The shape of the template depends on the type + of the channel you'll be sending to. See below for definitions of each channel type template: + email, in-app, SMS, push, chat, and webhook. + type: object + type: + description: The type of the workflow step. + enum: + - channel + example: channel + type: string + required: + - type + - ref + - name + - template + title: WorkflowChannelStep + type: object + WrappedMessageTypeResponse: + description: Wraps the MessageType response under the `message_type` key. + example: + message_type: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + deleted_at: "2021-01-01T00:00:00Z" + description: Email message type + environment: development + icon_name: email + key: email + name: Email + owner: user + preview:
Hello, world!
+ semver: 1.0.0 + sha: "1234567890" + updated_at: "2021-01-01T00:00:00Z" + valid: true + variants: + - fields: + - key: text_field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + key: default + name: Default + properties: + message_type: + $ref: "#/components/schemas/MessageType" + required: + - message_type + title: WrappedMessageTypeResponse + type: object + EmailDividerBlock: + description: A divider block in an email template. + example: + id: 123e4567-e89b-12d3-a456-426614174000 + layout_attrs: + padding_bottom: 8 + padding_left: 4 + padding_right: 4 + padding_top: 8 + type: divider + version: 1 + properties: + id: + description: The ID of the block. + example: 123e4567-e89b-12d3-a456-426614174000 + format: uuid + type: string + layout_attrs: + description: The layout attributes of the block. + properties: + padding_bottom: + description: The padding_bottom layout attribute of the block. + type: integer + padding_left: + description: The padding_left layout attribute of the block. + type: integer + padding_right: + description: The padding_right layout attribute of the block. + type: integer + padding_top: + description: The padding_top layout attribute of the block. + type: integer + required: + - padding_top + - padding_right + - padding_bottom + - padding_left + type: object + type: + description: The type of the block. + type: string + version: + description: The version of the block. + example: 1 + type: integer + required: + - id + - type + - version + title: EmailDividerBlock + type: object + PaginatedWorkflowResponse: + description: A paginated list of Workflow. Contains a list of entries and page information. + example: + entries: + - active: false + categories: + - marketing + - black-friday + conditions: + all: + - argument: admin + operator: equal_to + variable: recipient.role + created_at: "2022-12-16T19:07:50.027113Z" + description: This is a dummy workflow for demo purposes. + environment: development + key: december-16-demo + name: december-16-demo + settings: + override_preferences: true + sha: f7e9d3b2a1c8e6m4k5j7h9g0i2l3n4p6q8r0t1u3v5w7x9y + steps: + - channel_key: in-app-feed + description: Main in-app feed + name: In-app step + ref: in_app_feed_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + trigger_data_json_schema: + properties: + name: + type: string + required: + - name + type: object + trigger_frequency: every_trigger + updated_at: "2023-02-08T22:15:19.846681Z" + valid: true + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Workflow" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedWorkflowResponse + type: object + WorkflowThrottleStep: + description: A workflow throttle step. + example: + name: Throttle step + ref: throttle_step + settings: + throttle_key: data.project_id + throttle_limit: 1 + throttle_window: + unit: minutes + value: 10 + type: throttle + properties: + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: >- + A conditions object that describes one or more conditions to be met in order for the step to be + executed. + type: object + description: + description: >- + An arbitrary string attached to a workflow step. Useful for adding notes about the workflow for + internal purposes. + example: Throttle step description + nullable: true + type: string + name: + description: A name for the workflow step. + example: Throttle step + type: string + ref: + description: The reference key of the workflow step. Must be unique per workflow. + example: throttle_step + type: string + settings: + description: The settings for the throttle step. + properties: + throttle_key: + description: The data property to use to throttle notifications per recipient. + example: data.project_id + nullable: true + type: string + throttle_limit: + description: The maximum number of workflows to allow within the duration window. Defaults to 1. + example: 1 + nullable: true + type: integer + throttle_window: + anyOf: + - $ref: "#/components/schemas/Duration" + - nullable: true + description: The duration object of the throttle window. + nullable: true + type: object + throttle_window_field_path: + description: >- + The data path to resolve the throttle window. The resolved value must be an ISO-8601 + timestamp. + example: recipient.throttle_window + nullable: true + type: string + type: object + type: + description: The type of the workflow step. + enum: + - throttle + example: throttle + type: string + required: + - type + - ref + - name + - settings + title: WorkflowThrottleStep + type: object + WorkflowBatchStep: + description: A workflow batch step. + example: + description: Batch step description + name: Batch step + ref: batch_step + settings: + batch_key: data.project_id + batch_window: + unit: minutes + value: 10 + type: batch + properties: + description: + description: >- + An arbitrary string attached to a workflow step. Useful for adding notes about the workflow for + internal purposes. + example: Batch step description + nullable: true + type: string + name: + description: A name for the workflow step. + example: Batch step + type: string + ref: + description: The reference key of the workflow step. Must be unique per workflow. + example: batch_step + type: string + settings: + description: The settings for the batch step. + properties: + batch_execution_mode: + description: >- + The execution mode of the batch step. One of: `accumulate` or `flush_leading`. When set to + `flush_leading`, the first item in the batch will be executed immediately, and the rest will + be batched. + enum: + - accumulate + - flush_leading + example: accumulate + nullable: true + type: string + batch_items_max_limit: + description: "The maximum number of batch items allowed in a batch. Between: 2 and 1000." + example: 1000 + nullable: true + type: integer + batch_items_render_limit: + description: >- + The maximum number of batch items allowed to be rendered into a template. Between: 1 and 100. + Defaults to 10. + example: 10 + nullable: true + type: integer + batch_key: + description: The data property to use to batch notifications per recipient. + example: data.project_id + nullable: true + type: string + batch_order: + description: >- + The order describing whether to return the first or last ten batch items in the activities + variable. One of: `asc` or `desc`. + enum: + - asc + - desc + example: asc + nullable: true + type: string + batch_until_field_path: + description: The data path to resolve the batch window. The resolved value must be an ISO-8601 timestamp. + example: recipient.batch_until + nullable: true + type: string + batch_window: + anyOf: + - $ref: "#/components/schemas/Duration" + - nullable: true + description: The window of time to send the batch. + type: object + batch_window_extension_limit: + anyOf: + - $ref: "#/components/schemas/Duration" + - nullable: true + description: >- + A duration object that describes the maximum duration a batch window can be extended to from + opening when using a sliding batch window. + type: object + batch_window_type: + description: "The type of the batch window used. One of: `fixed` or `sliding`." + enum: + - fixed + - sliding + example: fixed + nullable: true + type: string + type: object + type: + description: The type of the workflow step. + enum: + - batch + example: batch + type: string + required: + - type + - ref + - name + - description + - settings + title: WorkflowBatchStep + type: object + Environment: + description: An environment object. + example: + created_at: "2022-10-31T19:59:03Z" + deleted_at: null + hide_pii_data: false + label_color: "#000000" + last_commit_at: "2022-10-31T19:59:03Z" + name: Production + order: 0 + owner: system + slug: production + updated_at: "2022-10-31T19:59:03Z" + properties: + created_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + deleted_at: + description: The timestamp of when the resource was deleted. + format: date-time + nullable: true + type: string + hide_pii_data: + default: false + description: Whether PII data is hidden from the environment. + type: boolean + label_color: + description: The color of the environment label to display in the dashboard. + nullable: true + type: string + last_commit_at: + description: The last time the environment was committed to. + format: date-time + nullable: true + type: string + name: + description: A friendly name for the environment. Cannot exceed 255 characters. + type: string + order: + description: The order of the environment. 0 is the first environment, 1 is the second, etc. + type: integer + owner: + description: The owner of the environment. + enum: + - system + - user + example: user + type: string + slug: + description: A unique slug for the environment. Cannot exceed 255 characters. + type: string + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + required: + - name + - slug + - order + - created_at + - updated_at + - owner + title: Environment + type: object + PushChannelSettings: + description: Push channel settings. + example: + token_deregistration: true + properties: + token_deregistration: + description: >- + Whether to deregister a push-token when a push send hard bounces. This is to prevent the same + token from being used for future pushes. + example: true + type: boolean + title: PushChannelSettings + type: object + WrappedCommitResponse: + description: Wraps the Commit response under the `commit` key. + example: + commit: + commit_author: + email: john.doe@example.com + name: John Doe + commit_message: This is a commit message + created_at: "2021-01-01T00:00:00Z" + environment: development + id: 123e4567-e89b-12d3-a456-426614174000 + resource: + identifier: my-email-layout + type: email_layout + updated_at: "2021-01-01T00:00:00Z" + properties: + commit: + $ref: "#/components/schemas/Commit" + required: + - commit + title: WrappedCommitResponse + type: object + WrappedEmailLayoutResponse: + description: Wraps the EmailLayout response under the `email_layout` key. + example: + email_layout: + created_at: "2021-01-01T00:00:00Z" + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + key: transactional + name: Transactional + sha: "1234567890" + text_layout: Hello, world! + updated_at: "2021-01-01T00:00:00Z" + properties: + email_layout: + $ref: "#/components/schemas/EmailLayout" + required: + - email_layout + title: WrappedEmailLayoutResponse + type: object + WrappedTranslationRequestRequest: + description: Wraps the TranslationRequest request under the translation key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + properties: + translation: + $ref: "#/components/schemas/TranslationRequest" + required: + - translation + title: WrappedTranslationRequestRequest + type: object + InAppFeedChannelSettings: + description: In-app feed channel settings. + example: + link_tracking: true + properties: + link_tracking: + description: Whether to track link clicks on in-app feed notifications. + example: true + type: boolean + title: InAppFeedChannelSettings + type: object + Duration: + description: A duration of time, represented as a unit and a value. + example: + unit: minutes + value: 10 + properties: + unit: + description: The unit of time. + enum: + - minutes + - hours + - days + - weeks + - months + example: minutes + type: string + value: + description: The value of the duration. + example: 10 + type: integer + required: + - unit + - value + title: Duration + type: object + Channel: + description: A configured channel, which is a way to route messages to a provider. + example: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + custom_icon_url: https://example.com/icon.png + key: email_channel + name: My Email Channel + provider: sendgrid + type: email + updated_at: "2021-01-01T00:00:00Z" + visibility: user + properties: + archived_at: + description: The timestamp of when the resource was deleted. + format: date-time + nullable: true + type: string + created_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + custom_icon_url: + description: Optional URL to a custom icon for the channel. + nullable: true + type: string + description: + description: Optional description of the channel's purpose or usage. + nullable: true + type: string + key: + description: Unique identifier for the channel within a project (immutable once created). + type: string + name: + description: The human-readable name of the channel. + type: string + provider: + description: The ID of the provider that this channel uses to deliver messages. + type: string + type: + description: The type of channel, determining what kind of messages it can send. + enum: + - email + - in_app + - in_app_feed + - in_app_guide + - sms + - push + - chat + - http + type: string + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + visibility: + description: Controls whether the channel is visible as system-level or user-level. + enum: + - system + - user + example: user + type: string + required: + - name + - key + - type + - provider + - visibility + - created_at + - updated_at + title: Channel + type: object + RunWorkflowRequest: + description: A request to run (test) a workflow. + example: + data: + park_id: 1 + recipients: + - dnedry + properties: + actor: + anyOf: + - $ref: "#/components/schemas/RecipientReference" + - nullable: true + description: The actor to reference in the the workflow run. + type: object + cancellation_key: + description: A key to cancel the workflow run. + nullable: true + type: string + data: + additionalProperties: true + description: A map of data to be used in the workflow run. + type: object + recipients: + description: A list of recipients to run the workflow for. + items: + $ref: "#/components/schemas/RecipientReference" + type: array + tenant: + description: The tenant to associate the workflow run with. + type: string + required: + - recipients + title: RunWorkflowRequest + type: object + PaginatedChannelGroupResponse: + description: A paginated list of ChannelGroup. Contains a list of entries and page information. + example: + entries: + - channel_rules: + - channel: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + custom_icon_url: https://example.com/icon.png + key: email_channel + name: My Email Channel + provider: sendgrid + type: email + updated_at: "2021-01-01T00:00:00Z" + visibility: user + created_at: "2021-01-01T00:00:00Z" + index: 0 + rule_type: always + updated_at: "2021-01-01T00:00:00Z" + channel_type: push + created_at: "2021-01-01T00:00:00Z" + key: push-group + name: Push Notification Group + operator: any + source: user + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/ChannelGroup" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedChannelGroupResponse + type: object + PageInfo: + description: The information about a paginated result. + example: + after: null + before: null + page_size: 25 + properties: + after: + description: The cursor to fetch entries after. Will only be present if there are more entries to fetch. + nullable: true + type: string + before: + description: >- + The cursor to fetch entries before. Will only be present if there are more entries to fetch before + the current page. + nullable: true + type: string + page_size: + description: The number of entries to fetch per-page. + type: integer + required: + - page_size + title: PageInfo + type: object + Variable: + description: An environment variable object. + example: + description: This is a description of my variable. + inserted_at: "2021-01-01T00:00:00Z" + key: my_variable + type: public + updated_at: "2021-01-01T00:00:00Z" + value: my_value + properties: + description: + description: The description of the variable. + nullable: true + type: string + inserted_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + key: + description: The key of the variable. + type: string + type: + default: public + description: The type of the variable. + enum: + - public + - secret + type: string + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + value: + description: The value of the variable. + type: string + required: + - key + - value + - type + - inserted_at + - updated_at + title: Variable + type: object + PaginatedTranslationResponse: + description: A paginated list of Translation. Contains a list of entries and page information. + example: + entries: + - content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Translation" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedTranslationResponse + type: object + PaginatedCommitResponse: + description: A paginated list of Commit. Contains a list of entries and page information. + example: + entries: + - commit_author: + email: john.doe@example.com + name: John Doe + commit_message: This is a commit message + created_at: "2021-01-01T00:00:00Z" + environment: development + id: 123e4567-e89b-12d3-a456-426614174000 + resource: + identifier: my-email-layout + type: email_layout + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Commit" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedCommitResponse + type: object + Workflow: + description: A workflow object. + example: + active: false + categories: + - marketing + - black-friday + conditions: + all: + - argument: admin + operator: equal_to + variable: recipient.role + created_at: "2022-12-16T19:07:50.027113Z" + description: This is a dummy workflow for demo purposes. + environment: development + key: december-16-demo + name: december-16-demo + settings: + override_preferences: true + sha: f7e9d3b2a1c8e6m4k5j7h9g0i2l3n4p6q8r0t1u3v5w7x9y + steps: + - channel_key: in-app-feed + description: Main in-app feed + name: In-app step + ref: in_app_feed_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + trigger_data_json_schema: + properties: + name: + type: string + required: + - name + type: object + trigger_frequency: every_trigger + updated_at: "2023-02-08T22:15:19.846681Z" + valid: true + properties: + active: + description: Whether the workflow is active in the current environment. (read-only). + type: boolean + categories: + description: A list of categories that the workflow belongs to. + items: + type: string + type: array + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: >- + A conditions object that describes one or more conditions to be met for the workflow to be + executed. (optional). + type: object + created_at: + description: The timestamp of when the resource was created. (read-only). + format: date-time + type: string + deleted_at: + description: The timestamp of when the resource was deleted. (read-only). + format: date-time + type: string + description: + description: >- + An arbitrary string attached to a workflow object. Useful for adding notes about the workflow for + internal purposes. Maximum of 280 characters allowed. + type: string + environment: + description: The slug of the environment in which the workflow exists. (read-only). + type: string + key: + description: >- + The unique key string for the workflow object. Must be at minimum 3 characters and at maximum 255 + characters in length. Must be in the format of ^[a-z0-9_-]+$. + type: string + name: + description: A name for the workflow. Must be at maximum 255 characters in length. + type: string + settings: + description: A map of workflow settings. + properties: + is_commercial: + description: Whether the workflow is commercial. Defaults to false. + example: false + type: boolean + override_preferences: + description: >- + Whether to ignore recipient preferences for a given type of notification. If true, will send + for every channel in the workflow even if the recipient has opted out of a certain kind. + Defaults to false. + example: false + type: boolean + type: object + sha: + description: The SHA hash of the workflow data. (read-only). + type: string + steps: + description: >- + A list of workflow step objects in the workflow, which may contain any of: channel step, delay + step, batch step, fetch step. + items: + $ref: "#/components/schemas/WorkflowStep" + type: array + trigger_data_json_schema: + additionalProperties: true + description: >- + A JSON schema for the expected structure of the workflow trigger's data payload. Used to validate + trigger requests. (optional). + type: object + trigger_frequency: + description: >- + The frequency at which the workflow should be triggered. One of: `once_per_recipient`, + `once_per_recipient_per_tenant`, `every_trigger`. Defaults to `every_trigger`. + enum: + - every_trigger + - once_per_recipient + - once_per_recipient_per_tenant + example: every_trigger + type: string + updated_at: + description: The timestamp of when the resource was last updated. (read-only). + format: date-time + type: string + valid: + description: Whether the workflow and its steps are in a valid state. (read-only). + type: boolean + required: + - key + - name + - steps + - active + - valid + - environment + - created_at + - updated_at + - sha + title: Workflow + type: object + ChannelGroup: + description: A group of channels with rules for when they are applicable. + example: + channel_rules: + - channel: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + custom_icon_url: https://example.com/icon.png + key: email_channel + name: My Email Channel + provider: sendgrid + type: email + updated_at: "2021-01-01T00:00:00Z" + visibility: user + created_at: "2021-01-01T00:00:00Z" + index: 0 + rule_type: always + updated_at: "2021-01-01T00:00:00Z" + channel_type: push + created_at: "2021-01-01T00:00:00Z" + key: push-group + name: Push Notification Group + operator: any + source: user + updated_at: "2021-01-01T00:00:00Z" + properties: + channel_rules: + description: Rules for determining which channels should be used. + items: + $ref: "#/components/schemas/ChannelGroupRule" + type: array + channel_type: + description: The type of channels contained in this group. + enum: + - email + - in_app + - in_app_feed + - in_app_guide + - sms + - push + - chat + - http + type: string + created_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + key: + description: Unique identifier for the channel group within a project. + type: string + name: + description: The human-readable name of the channel group. + type: string + operator: + description: >- + Determines how the channel rules are applied ('any' means any rule can match, 'all' means all + rules must match). + enum: + - any + - all + type: string + source: + description: Whether this channel group was created by the system or a user. + enum: + - system + - user + type: string + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + required: + - name + - key + - channel_type + - operator + - source + - channel_rules + - created_at + - updated_at + title: ChannelGroup + type: object + ChannelGroupRule: + description: A rule that determines if a channel should be executed as part of a channel group. + example: + channel: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + custom_icon_url: https://example.com/icon.png + key: email_channel + name: My Email Channel + provider: sendgrid + type: email + updated_at: "2021-01-01T00:00:00Z" + visibility: user + created_at: "2021-01-01T00:00:00Z" + index: 0 + rule_type: always + updated_at: "2021-01-01T00:00:00Z" + properties: + argument: + description: For conditional rules, the argument to compare against. + nullable: true + type: string + channel: + $ref: "#/components/schemas/Channel" + created_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + index: + description: The order index of this rule within the channel group. + type: integer + operator: + description: For conditional rules, the operator to apply. + enum: + - equal_to + - not_equal_to + - greater_than + - less_than + - greater_than_or_equal_to + - less_than_or_equal_to + - contains + - not_contains + - contains_all + - empty + - not_empty + - is_audience_member + - is_not_audience_member + example: equal_to + nullable: true + type: string + rule_type: + description: The type of rule (if = conditional, unless = negative conditional, always = always apply). + enum: + - if + - unless + - always + type: string + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + variable: + description: For conditional rules, the variable to evaluate. + nullable: true + type: string + required: + - index + - rule_type + - channel + - created_at + - updated_at + title: ChannelGroupRule + type: object + WrappedWorkflowResponse: + description: Wraps the Workflow response under the `workflow` key. + example: + workflow: + active: false + categories: + - marketing + - black-friday + conditions: + all: + - argument: admin + operator: equal_to + variable: recipient.role + created_at: "2022-12-16T19:07:50.027113Z" + description: This is a dummy workflow for demo purposes. + environment: development + key: december-16-demo + name: december-16-demo + settings: + override_preferences: true + sha: f7e9d3b2a1c8e6m4k5j7h9g0i2l3n4p6q8r0t1u3v5w7x9y + steps: + - channel_key: in-app-feed + description: Main in-app feed + name: In-app step + ref: in_app_feed_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + trigger_data_json_schema: + properties: + name: + type: string + required: + - name + type: object + trigger_frequency: every_trigger + updated_at: "2023-02-08T22:15:19.846681Z" + valid: true + properties: + workflow: + $ref: "#/components/schemas/Workflow" + required: + - workflow + title: WrappedWorkflowResponse + type: object + WrappedWorkflowRequestRequest: + description: Wraps the WorkflowRequest request under the workflow key. + example: + workflow: + name: My Workflow + steps: + - channel_key: in-app-feed + name: Channel 1 + ref: channel_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + properties: + workflow: + $ref: "#/components/schemas/WorkflowRequest" + required: + - workflow + title: WrappedWorkflowRequestRequest + type: object + EmailLayout: + description: A versioned email layout used within an environment. + example: + created_at: "2021-01-01T00:00:00Z" + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + key: transactional + name: Transactional + sha: "1234567890" + text_layout: Hello, world! + updated_at: "2021-01-01T00:00:00Z" + properties: + created_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + environment: + description: The environment of the email layout. + type: string + footer_links: + description: A list of one or more items to show in the footer of the email layout. + items: + properties: + text: + description: The text to display as the link. + type: string + url: + description: The URL to link to. + type: string + required: + - text + - url + type: object + type: array + html_layout: + description: The complete HTML content of the email layout. + type: string + key: + description: The unique key for this email layout. + type: string + name: + description: The friendly name of this email layout. + type: string + sha: + description: The SHA of the email layout. + type: string + text_layout: + description: The complete plain text content of the email layout. + type: string + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + required: + - key + - name + - html_layout + - text_layout + - sha + - created_at + title: EmailLayout + type: object + ChatChannelSettings: + description: Chat channel settings. + example: + email_based_user_id_resolution: true + link_tracking: true + properties: + email_based_user_id_resolution: + description: >- + Whether to resolve chat provider user IDs using a Knock user's email address. Only relevant for + Slack channels for the time being. + example: true + type: boolean + link_tracking: + description: Whether to track link clicks on chat notifications. + example: true + type: boolean + title: ChatChannelSettings + type: object + EmailButtonSetBlockButton: + description: A button in a button set block. + example: + action: https://example.com/button1 + label: Button 1 + size_attrs: + is_fullwidth: false + size: sm + style_attrs: + background_color: "#000000" + border_color: "#000000" + border_radius: 6 + border_width: 1 + text_color: "#FFFFFF" + variant: primary + properties: + action: + description: The action of the button. + type: string + label: + description: The label of the button. + type: string + size_attrs: + description: The size attributes of the button. + properties: + is_fullwidth: + description: Whether the button is full width. + type: boolean + size: + description: The size of the button. + enum: + - sm + - md + - lg + type: string + type: object + style_attrs: + description: The style attributes of the button. + properties: + background_color: + description: The background color of the button. + type: string + border_color: + description: The border color of the button. + type: string + border_radius: + description: The border radius of the button. + type: integer + border_width: + description: The border width of the button. + type: integer + text_color: + description: The text color of the button. + type: string + type: object + variant: + description: The variant of the button. + type: string + required: + - label + - action + - variant + title: EmailButtonSetBlockButton + type: object + ChatTemplate: + description: A chat template. + example: + json_body: null + markdown_body: "**Hello**, world!" + summary: Hello, world! + properties: + json_body: + description: >- + A JSON template for the chat notification message payload. Only present if not using the markdown + body. + example: '{"type": "text", "text": "Hello, world!"}' + nullable: true + type: string + markdown_body: + description: The markdown body of the chat template. + example: Hello, world! + type: string + summary: + description: The summary of the chat template. + example: Hello, world! + type: string + required: + - markdown_body + title: ChatTemplate + type: object + WrappedMessageTypeRequestRequest: + description: Wraps the MessageTypeRequest request under the message_type key. + example: + message_type: + description: This is a message type + name: My Message Type + preview:
Hello, world!
+ variants: + - fields: + - key: text_field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + key: default + name: Default + properties: + message_type: + $ref: "#/components/schemas/MessageTypeRequest" + required: + - message_type + title: WrappedMessageTypeRequestRequest + type: object + WorkflowBranchStep: + description: A branch step within a workflow. + example: + branches: + - conditions: + all: + - argument: pro + operator: equal_to + variable: recipient.plan_type + name: Pro plan + steps: [] + terminates: false + - conditions: null + name: Default + steps: [] + terminates: false + description: Branch description + name: Branch 1 + ref: branch_1 + type: branch + properties: + branches: + description: A list of workflow branches to be evaluated. + items: + properties: + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: A set of conditions to be evaluated for this branch. + type: object + name: + description: The name of the branch. + example: The name of the branch. + type: string + steps: + description: A list of steps that will be executed if the branch is chosen. + items: + $ref: "#/components/schemas/WorkflowStep" + type: array + terminates: + description: If the workflow should halt at the end of the branch. + example: true + type: boolean + type: object + type: array + description: + description: >- + An arbitrary string attached to a workflow step. Useful for adding notes about the workflow for + internal purposes. + example: Branch description + type: string + name: + description: A name for the workflow step. + example: Branch + type: string + ref: + description: The reference key of the workflow step. Must be unique per workflow. + example: branch_step + type: string + type: + description: The type of step. + enum: + - branch + example: branch + type: string + required: + - type + - ref + - name + - description + - branches + title: WorkflowBranchStep + type: object + WebhookTemplate: + description: >- + A webhook template. By default, a webhook step will use the request settings you configured in your + webhook channel. You can override this as you see fit on a per-step basis. + example: + body: null + headers: + - key: X-API-Key + value: "1234567890" + method: get + query_params: + - key: key + value: value + url: https://example.com + properties: + body: + description: A body of the request. Only used for POST or PUT requests. + example: '{"key": "value"}' + nullable: true + type: string + headers: + description: >- + A list of key-value pairs for the request headers. Each object should contain key and value fields + with string values. + items: + properties: + key: + description: The key of the header. + example: X-API-Key + type: string + value: + description: The value of the header. + example: "1234567890" + type: string + required: + - key + - value + type: object + type: array + method: + description: The HTTP method of the webhook. + enum: + - get + - post + - put + - delete + - patch + example: post + type: string + query_params: + description: >- + A list of key-value pairs for the request query params. Each object should contain key and value + fields with string values. + items: + properties: + key: + description: The key of the query param. + example: key + type: string + value: + description: The value of the query param. + example: value + type: string + required: + - key + - value + type: object + type: array + url: + description: The URL of the webhook. + example: https://example.com + type: string + required: + - url + - method + title: WebhookTemplate + type: object + PaginatedChannelResponse: + description: A paginated list of Channel. Contains a list of entries and page information. + example: + entries: + - archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + custom_icon_url: https://example.com/icon.png + key: email_channel + name: My Email Channel + provider: sendgrid + type: email + updated_at: "2021-01-01T00:00:00Z" + visibility: user + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Channel" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedChannelResponse + type: object + EmailMarkdownBlock: + description: A markdown block in an email template. + example: + content: "# Hello, world!" + id: 123e4567-e89b-12d3-a456-426614174000 + layout_attrs: + padding_bottom: 8 + padding_left: 4 + padding_right: 4 + padding_top: 8 + type: markdown + variant: default + version: 1 + properties: + content: + description: The markdown content of the block. + type: string + id: + description: The ID of the block. + example: 123e4567-e89b-12d3-a456-426614174000 + format: uuid + type: string + layout_attrs: + description: The layout attributes of the block. + properties: + padding_bottom: + description: The padding_bottom layout attribute of the block. + type: integer + padding_left: + description: The padding_left layout attribute of the block. + type: integer + padding_right: + description: The padding_right layout attribute of the block. + type: integer + padding_top: + description: The padding_top layout attribute of the block. + type: integer + required: + - padding_top + - padding_right + - padding_bottom + - padding_left + type: object + type: + description: The type of the block. + type: string + variant: + description: The flavor of markdown to use for the block. + example: default + type: string + version: + description: The version of the block. + example: 1 + type: integer + required: + - id + - type + - version + - content + - variant + title: EmailMarkdownBlock + type: object + ConditionGroupAllMatch: + description: A group of conditions that must all be met. + example: + all: + - argument: some_property + operator: equal_to + variable: recipient.property + properties: + all: + description: A list of conditions. + items: + $ref: "#/components/schemas/Condition" + type: array + required: + - all + title: ConditionGroupAllMatch + type: object + ExchangeForApiKeyResponse: + description: Returns an API key that can be used to make requests to the public API. + example: + api_key: sk_1234567890 + properties: + api_key: + description: The secret API key exchanged from the service token. + type: string + required: + - api_key + title: ExchangeForApiKeyResponse + type: object + MessageTypeMarkdownField: + description: A markdown field used in a message type. + example: + key: markdown_field + label: Markdown Field + settings: + default: |- + # Heading + + This is **bold** and this is *italic*. + description: A description of the markdown field + required: true + type: markdown + value: |- + # Heading + + This is **bold** and this is *italic*. + properties: + key: + description: The unique key of the field. + example: key + type: string + label: + description: The label of the field. + example: Label + nullable: true + type: string + settings: + description: Settings for the markdown field. + properties: + default: + description: The default value of the markdown field. + example: |- + # Heading + + This is **bold** and this is *italic*. + type: string + description: + example: A description of the field, used in the UI + type: string + required: + description: Whether the field is required. + example: true + type: boolean + type: object + type: + description: The type of the field. + enum: + - markdown + example: markdown + type: string + value: + description: The value of the markdown field. + example: |- + # Heading + + This is **bold** and this is *italic*. + type: string + required: + - type + - key + - value + title: MessageTypeMarkdownField + type: object + MessageTypeTextareaField: + description: A textarea field used in a message type. + example: + key: textarea_field + label: Textarea Field + settings: + description: A description of the textarea field + max_length: 1000 + min_length: 10 + required: true + type: textarea + value: This is a longer text that can span multiple lines. + properties: + key: + description: The unique key of the field. + example: key + type: string + label: + description: The label of the field. + example: Label + nullable: true + type: string + settings: + description: Settings for the textarea field. + properties: + default: + description: The default value of the textarea field. + example: A placeholder + nullable: true + type: string + description: + example: A description of the field, used in the UI + type: string + max_length: + example: 1000 + type: integer + min_length: + example: 10 + type: integer + required: + description: Whether the field is required. + example: true + type: boolean + type: object + type: + description: The type of the field. + enum: + - textarea + example: textarea + type: string + value: + description: The value of the textarea field. + example: This is a longer text that can span multiple lines. + nullable: true + type: string + required: + - type + - key + title: MessageTypeTextareaField + type: object + TranslationRequest: + description: A translation object with a content attribute used to update or create a translation. + example: + content: '{"hello":"Hello, world!"}' + format: json + properties: + content: + description: >- + A JSON encoded string containing the key-value pairs of translation references and translation + strings. + type: string + format: + description: Indicates whether content is a JSON encoded object string or a string in the PO format. + enum: + - json + - po + example: json + type: string + required: + - content + - format + title: TranslationRequest + type: object + PaginatedMessageTypeResponse: + description: A paginated list of MessageType. Contains a list of entries and page information. + example: + entries: + - archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + deleted_at: "2021-01-01T00:00:00Z" + description: Email message type + environment: development + icon_name: email + key: email + name: Email + owner: user + preview:
Hello, world!
+ semver: 1.0.0 + sha: "1234567890" + updated_at: "2021-01-01T00:00:00Z" + valid: true + variants: + - fields: + - key: text_field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + key: default + name: Default + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/MessageType" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedMessageTypeResponse + type: object + SmsTemplate: + description: An SMS template. + example: + settings: + payload_overrides: '{"name": "John"}' + to_number: "+1234567890" + text_body: Hello, world! + properties: + settings: + anyOf: + - description: The settings for the SMS template. + properties: + payload_overrides: + description: A JSON object overrides the payload sent to the SMS provider. + example: '{"name": "John"}' + nullable: true + type: string + to_number: + description: >- + An override for the phone number to send the SMS to. When not set, defaults to + `recipient.phone_number`. + example: "+1234567890" + nullable: true + type: string + type: object + - nullable: true + description: The settings for the SMS template. Can be omitted. + type: object + text_body: + description: The message of the SMS. + example: Hello, world! + type: string + required: + - text_body + title: SmsTemplate + type: object + EmailChannelSettings: + description: Email channel settings. + example: + bcc_address: bcc@example.com + cc_address: cc@example.com + from_email: hello@example.com + from_name: John Doe + json_overrides: '{"subject": "Hello, world!"}' + link_tracking: true + open_tracking: true + reply_to_address: reply@example.com + to_address: hello@example.com + properties: + bcc_address: + description: The BCC address on email notifications. Supports liquid. Defaults to `from_address`. + example: hello@example.com + nullable: true + type: string + cc_address: + description: The CC address on email notifications. Supports liquid. Defaults to `from_address`. + example: hello@example.com + nullable: true + type: string + from_email: + description: The email address from which this channel will send. Supports liquid. + example: hello@example.com + nullable: true + type: string + from_name: + description: The name from which this channel will send. Supports liquid. + example: John Doe + nullable: true + type: string + json_overrides: + description: >- + A JSON template for any custom overrides to merge into the API payload that is sent to the email + provider. Supports liquid. + example: '{"subject": "Hello, world!"}' + nullable: true + type: string + link_tracking: + description: Whether to track link clicks on email notifications. + example: true + type: boolean + open_tracking: + description: Whether to track opens on email notifications. + example: true + type: boolean + reply_to_address: + description: The Reply-to address on email notifications. Supports liquid. Defaults to `from_address`. + example: hello@example.com + nullable: true + type: string + to_address: + description: The email address to which this channel will send. Defaults to `recipient.email`. Supports liquid. + example: hello@example.com + type: string + title: EmailChannelSettings + type: object + SendWindow: + description: A send window time for a notification. Describes a single day. + example: + day: monday + from: "09:00" + type: send + until: "17:00" + properties: + day: + description: The day of the week. + enum: + - monday + - tuesday + - wednesday + - thursday + - friday + - saturday + - sunday + type: string + from: + description: The start time of the send window. + example: "09:00" + format: time + nullable: true + type: string + type: + description: The type of send window. + enum: + - send + - do_not_send + example: send + type: string + until: + description: The end time of the send window. + example: "17:00" + format: time + nullable: true + type: string + required: + - day + - type + title: SendWindow + type: object + PaginatedEnvironmentResponse: + description: A paginated list of Environment. Contains a list of entries and page information. + example: + entries: + - created_at: "2022-10-31T19:59:03Z" + deleted_at: null + hide_pii_data: false + label_color: "#000000" + last_commit_at: "2022-10-31T19:59:03Z" + name: Production + order: 0 + owner: system + slug: production + updated_at: "2022-10-31T19:59:03Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Environment" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedEnvironmentResponse + type: object + PreviewWorkflowTemplateRequest: + description: A request to preview a workflow template. + example: + actor: dnedry + data: + park_id: 1 + recipient: dnedry + tenant: acme-corp + properties: + actor: + anyOf: + - $ref: "#/components/schemas/RecipientReference" + - nullable: true + description: The actor to reference in the the workflow run. + type: object + data: + additionalProperties: true + description: The data to pass to the workflow template for rendering. + type: object + recipient: + $ref: "#/components/schemas/RecipientReference" + tenant: + description: The tenant to associate the workflow with. + nullable: true + type: string + required: + - recipient + title: PreviewWorkflowTemplateRequest + type: object + EmailHtmlBlock: + description: An HTML block in an email template. + example: + content:

Hello, world!

+ id: 123e4567-e89b-12d3-a456-426614174000 + type: html + version: 1 + properties: + content: + description: The HTML content of the block. + type: string + id: + description: The ID of the block. + example: 123e4567-e89b-12d3-a456-426614174000 + format: uuid + type: string + type: + description: The type of the block. + type: string + version: + description: The version of the block. + example: 1 + type: integer + required: + - id + - type + - version + - content + title: EmailHtmlBlock + type: object + PaginatedEmailLayoutResponse: + description: A paginated list of EmailLayout. Contains a list of entries and page information. + example: + entries: + - created_at: "2021-01-01T00:00:00Z" + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + key: transactional + name: Transactional + sha: "1234567890" + text_layout: Hello, world! + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/EmailLayout" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedEmailLayoutResponse + type: object + RunWorkflowResponse: + description: A response to a run workflow request. + example: + workflow_run_id: 123e4567-e89b-12d3-a456-426614174000 + properties: + workflow_run_id: + description: The ID of the workflow run. + format: uuid + type: string + required: + - workflow_run_id + title: RunWorkflowResponse + type: object + Partial: + description: A partial is a reusable piece of content that can be used in a template. + example: + content:

Hello, world!

+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + properties: + content: + description: The partial content. + type: string + description: + description: >- + An arbitrary string attached to a partial object. Useful for adding notes about the partial for + internal purposes. Maximum of 280 characters allowed. + type: string + environment: + description: The slug of the environment in which the partial exists. + type: string + icon_name: + description: The name of the icon to be used in the visual editor. + type: string + inserted_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + key: + description: >- + The unique key string for the partial object. Must be at minimum 3 characters and at maximum 255 + characters in length. Must be in the format of ^[a-z0-9_-]+$. + type: string + name: + description: A name for the partial. Must be at maximum 255 characters in length. + type: string + type: + description: The partial type. One of 'html', 'json', 'markdown', 'text'. + enum: + - html + - text + - json + - markdown + type: string + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + valid: + description: Whether the partial and its content are in a valid state. + type: boolean + visual_block_enabled: + description: Indicates whether the partial can be used in the visual editor. Only applies to HTML partials. + type: boolean + required: + - key + - type + - name + - content + - inserted_at + - updated_at + - valid + title: Partial + type: object + MessageType: + description: A message type object. + example: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + deleted_at: "2021-01-01T00:00:00Z" + description: Email message type + environment: development + icon_name: email + key: email + name: Email + owner: user + preview:
Hello, world!
+ semver: 1.0.0 + sha: "1234567890" + updated_at: "2021-01-01T00:00:00Z" + valid: true + variants: + - fields: + - key: text_field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + key: default + name: Default + properties: + archived_at: + description: The timestamp of when the resource was deleted. + format: date-time + type: string + created_at: + description: The timestamp of when the resource was created. + format: date-time + type: string + deleted_at: + description: The timestamp of when the resource was deleted. + format: date-time + nullable: true + type: string + description: + description: >- + An arbitrary string attached to a message type object. Useful for adding notes about the message + type for internal purposes. Maximum of 280 characters allowed. + nullable: true + type: string + environment: + description: The environment of the message type. + type: string + icon_name: + description: The icon name of the message type. + type: string + key: + description: >- + The unique key string for the message type object. Must be at minimum 3 characters and at maximum + 255 characters in length. Must be in the format of ^[a-z0-9_-]+$. + type: string + name: + description: A name for the message type. Must be at maximum 255 characters in length. + type: string + owner: + description: The owner of the message type. + enum: + - system + - user + type: string + preview: + description: An HTML/liquid template for the message type preview. + type: string + semver: + description: The semantic version of the message type. + example: 1.0.0 + type: string + sha: + description: The SHA hash of the message type. + type: string + updated_at: + description: The timestamp of when the resource was last updated. + format: date-time + type: string + valid: + description: Whether the message type is valid. + type: boolean + variants: + description: The variants of the message type. + items: + $ref: "#/components/schemas/MessageTypeVariant" + type: array + required: + - key + - valid + - owner + - environment + - created_at + - name + - variants + - preview + - semver + - updated_at + - sha + title: MessageType + type: object + WorkflowFetchStep: + description: A workflow fetch step. + example: + name: Fetch step + ref: fetch_1 + settings: + body: null + headers: + - key: X-API-Key + value: "1234567890" + method: get + query_params: + - key: key + value: value + url: https://example.com + type: fetch + properties: + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: >- + A conditions object that describes one or more conditions to be met in order for the step to be + executed. + type: object + description: + description: >- + An arbitrary string attached to a workflow step. Useful for adding notes about the workflow for + internal purposes. + example: Fetch step description + nullable: true + type: string + name: + description: A name for the workflow step. + example: Fetch step + type: string + ref: + description: The reference key of the workflow step. Must be unique per workflow. + example: fetch_step + type: string + settings: + $ref: "#/components/schemas/RequestTemplate" + type: + description: The type of the workflow step. + enum: + - fetch + example: fetch + type: string + required: + - type + - ref + - name + - settings + title: WorkflowFetchStep + type: object + PaginatedPartialResponse: + description: A paginated list of Partial. Contains a list of entries and page information. + example: + entries: + - content:

Hello, world!

+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Partial" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedPartialResponse + type: object + WrappedTranslationResponse: + description: Wraps the Translation response under the `translation` key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + properties: + translation: + $ref: "#/components/schemas/Translation" + required: + - translation + title: WrappedTranslationResponse + type: object + MessageTypeSelectField: + description: A select field used in a message type. + example: + key: select_field + label: Select Field + settings: + default: option1 + description: A description of the select field + options: + - label: Option 1 + value: option1 + - label: Option 2 + value: option2 + - label: Option 3 + value: option3 + required: true + type: select + value: option1 + properties: + key: + description: The unique key of the field. + example: key + type: string + label: + description: The label of the field. + example: Label + nullable: true + type: string + settings: + description: Settings for the select field. + properties: + default: + description: The default value for the select field. + example: option1 + nullable: true + type: string + description: + example: A description of the field, used in the UI + type: string + options: + description: The available options for the select field. + items: + properties: + label: + description: The display label for the option. + example: Option 1 + type: string + value: + description: The value for the option. + example: option1 + type: string + required: + - value + type: object + type: array + required: + description: Whether the field is required. + example: true + type: boolean + type: object + type: + description: The type of the field. + enum: + - select + example: select + type: string + value: + description: The selected value. + example: option1 + nullable: true + type: string + required: + - type + - key + - settings + title: MessageTypeSelectField + type: object + WorkflowTriggerWorkflowStep: + description: A workflow trigger workflow step. + example: + name: Trigger workflow step + ref: trigger_workflow_step + settings: + actor: "{{ actor.id }}" + cancellation_key: "{{ workflow.cancellation_key }}" + data: "{{ data | json }}" + recipients: "{{ recipient.id }}" + tenant: "{{ tenant.id }}" + workflow_key: dinosaurs-loose + type: trigger_workflow + properties: + conditions: + anyOf: + - $ref: "#/components/schemas/ConditionGroup" + - nullable: true + description: A set of conditions to be evaluated for this trigger workflow step. + type: object + description: + description: A description for the workflow step. + example: Trigger workflow step description + type: string + name: + description: A name for the workflow step. + example: Trigger workflow step + type: string + ref: + description: The reference key of the workflow step. Must be unique per workflow. + example: trigger_workflow_step + type: string + settings: + description: The settings for the workflow trigger workflow step. + properties: + actor: + description: The actor to trigger the workflow with. Supports liquid. + example: "{{ actor.id }}" + type: string + cancellation_key: + description: The cancellation key to trigger the workflow with. Supports liquid. + example: "{{ workflow.cancellation_key }}" + type: string + data: + description: The data to be supplied to the workflow. Supports liquid. + example: "{{ data | json }}" + type: string + recipients: + description: The recipients or recipient to trigger the workflow for. Supports liquid. + example: "{{ recipient.id }}" + type: string + tenant: + description: The tenant to trigger the workflow with. Supports liquid. + example: "{{ tenant.id }}" + type: string + workflow_key: + description: The key of the workflow to trigger. Supports liquid. + example: dinosaurs-loose + type: string + type: object + type: + description: The type of the workflow step. + enum: + - trigger_workflow + example: trigger_workflow + type: string + required: + - type + - ref + - name + - settings + title: WorkflowTriggerWorkflowStep + type: object + Condition: + description: A condition to be evaluated. + example: + argument: some_property + operator: equal_to + variable: recipient.property + properties: + argument: + description: >- + The argument to be evaluated. Arguments can be either static values or dynamic properties. Static + values will always be JSON decoded so will support strings, lists, objects, numbers, and booleans. + Dynamic values should be path expressions. + example: some_property + nullable: true + type: string + operator: + description: The operator to use in the evaluation of the condition. + enum: + - equal_to + - not_equal_to + - greater_than + - less_than + - greater_than_or_equal_to + - less_than_or_equal_to + - contains + - not_contains + - contains_all + - empty + - not_empty + - is_audience_member + - is_not_audience_member + example: equal_to + type: string + variable: + description: >- + The variable to be evaluated. Variables can be either static values or dynamic properties. Static + values will always be JSON decoded so will support strings, lists, objects, numbers, and booleans. + Dynamic values should be path expressions. + example: recipient.property + type: string + required: + - variable + - operator + title: Condition + type: object + PushTemplate: + description: A push notification template. + example: + settings: + payload_overrides: '{"name": "John"}' + text_body: Hello, world! + title: Hello, world! + properties: + settings: + anyOf: + - properties: + delivery_type: + description: >- + The delivery type of the push notification. Defaults to `content`. Set as silent to send a + data-only notification. When set to `data`, no body will be sent. + enum: + - silent + - content + example: content + type: string + payload_overrides: + description: A JSON object overrides the payload sent to the push provider. + example: '{"name": "John"}' + type: string + type: object + - nullable: true + description: The settings for the push template. Can be omitted. + type: object + text_body: + description: The body of the push notification. + example: Hello, world! + type: string + title: + description: The title of the push notification. + example: Hello, world! + type: string + required: + - title + - text_body + title: PushTemplate + type: object + CommitAuthor: + description: The author of the commit. + example: + email: john.doe@example.com + name: John Doe + properties: + email: + description: The email address of the commit author. + type: string + name: + description: The name of the commit author. + nullable: true + type: string + required: + - email + title: CommitAuthor + type: object + CommitResource: + description: The resource object associated with the commit. + example: + identifier: my-email-layout + type: email_layout + properties: + identifier: + description: The unique identifier for the resource. + type: string + type: + description: The type of the resource object. + enum: + - email_layout + - workflow + - translation + - partial + - message_type + example: workflow + type: string + required: + - identifier + - type + title: CommitResource + type: object + securitySchemes: + BearerAuth: + bearerFormat: JWT + scheme: bearer + type: http +info: + title: Knock Management API (mAPI) + version: "1.0" +openapi: 3.0.0 +paths: + /v1/api_keys/exchange: + post: + callbacks: {} + description: >- + Given an authenticated service token and an environment, will exchange the service token for a secret + API key that can be used to make requests to the public API. + operationId: exchangeForApiKey + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + responses: + "200": + content: + application/json: + schema: + description: Returns an API key that can be used to make requests to the public API. + example: + api_key: sk_1234567890 + properties: + api_key: + description: The secret API key exchanged from the service token. + type: string + required: + - api_key + title: ExchangeForApiKeyResponse + type: object + description: OK + summary: Exchange for API key + tags: + - API keys + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.apiKeys.exchange(); + + console.log(response.api_key); + } + + main(); + /v1/channel_groups: + get: + callbacks: {} + description: >- + Returns a paginated list of channel groups. Note: the list of channel groups is across the entire + account, not scoped to an environment. + operationId: listChannelGroups + parameters: + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of ChannelGroup. Contains a list of entries and page information. + example: + entries: + - channel_rules: + - channel: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + custom_icon_url: https://example.com/icon.png + key: email_channel + name: My Email Channel + provider: sendgrid + type: email + updated_at: "2021-01-01T00:00:00Z" + visibility: user + created_at: "2021-01-01T00:00:00Z" + index: 0 + rule_type: always + updated_at: "2021-01-01T00:00:00Z" + channel_type: push + created_at: "2021-01-01T00:00:00Z" + key: push-group + name: Push Notification Group + operator: any + source: user + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/ChannelGroup" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedChannelGroupResponse + type: object + description: OK + summary: List channel groups + tags: + - Channel Groups + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const channelGroup of client.channelGroups.list()) { + console.log(channelGroup.channel_rules); + } + } + + main(); + /v1/channels: + get: + callbacks: {} + description: >- + Returns a paginated list of channels. Note: the list of channels is across the entire account, not + scoped to an environment. + operationId: listChannels + parameters: + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Channel. Contains a list of entries and page information. + example: + entries: + - archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + custom_icon_url: https://example.com/icon.png + key: email_channel + name: My Email Channel + provider: sendgrid + type: email + updated_at: "2021-01-01T00:00:00Z" + visibility: user + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Channel" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedChannelResponse + type: object + description: OK + summary: List channels + tags: + - Channels + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const channel of client.channels.list()) { + console.log(channel.provider); + } + } + + main(); + /v1/commits: + get: + callbacks: {} + description: >- + Returns a paginated list of commits in a given environment. The commits are ordered from most recent + first. + operationId: listCommits + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: >- + Whether to show only promoted or unpromoted changes between the given environment and the + subsequent environment. + in: query + name: promoted + required: false + schema: + type: boolean + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Commit. Contains a list of entries and page information. + example: + entries: + - commit_author: + email: john.doe@example.com + name: John Doe + commit_message: This is a commit message + created_at: "2021-01-01T00:00:00Z" + environment: development + id: 123e4567-e89b-12d3-a456-426614174000 + resource: + identifier: my-email-layout + type: email_layout + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Commit" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedCommitResponse + type: object + description: OK + summary: List commits + tags: + - Commits + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const commit of client.commits.list()) { + console.log(commit.id); + } + } + + main(); + put: + callbacks: {} + description: Commit all changes across all resources in the development environment. + operationId: commitAllChanges + parameters: + - description: A slug of the environment in which to commit all changes. + in: query + name: environment + required: false + schema: + example: development + type: string + - description: An optional message to include in a commit. + in: query + name: commit_message + required: false + schema: + type: string + responses: + "200": + content: + application/json: + schema: + description: The result of the commit operation. + properties: + result: + example: success + type: string + required: + - result + type: object + description: OK + summary: Commit all changes + tags: + - Commits + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.commits.commitAll(); + + console.log(response.result); + } + + main(); + /v1/commits/promote: + put: + callbacks: {} + description: Promote all changes across all resources to the target environment from its preceding environment. + operationId: promoteAllCommits + parameters: + - description: > + A slug of the target environment to which you want to promote all changes from its directly + preceding environment. + + + For example, if you have three environments “development”, “staging”, and “production” (in that + order), setting this param to “production” will promote all commits not currently in production + from staging. + + + Note: This must be a non-development environment. + in: query + name: to_environment + required: true + schema: + type: string + responses: + "200": + content: + application/json: + schema: + description: The result of the commit operation. + properties: + result: + example: success + type: string + required: + - result + type: object + description: OK + summary: Promote all changes + tags: + - Commits + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.commits.promoteAll({ to_environment: 'to_environment' }); + + console.log(response.result); + } + + main(); + /v1/commits/{id}: + get: + callbacks: {} + description: Retrieve a single commit by its ID. + operationId: getCommit + parameters: + - description: The id of the commit to retrieve. + in: path + name: id + required: true + schema: + format: uuid + type: string + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/Commit" + description: OK + summary: Get a commit + tags: + - Commits + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const commit = await client.commits.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e'); + + console.log(commit.id); + } + + main(); + /v1/commits/{id}/promote: + put: + callbacks: {} + description: Promotes one change to the subsequent environment. + operationId: promoteOneCommit + parameters: + - description: The target commit ID to promote to the subsequent environment. + in: path + name: id + required: true + schema: + type: string + responses: + "200": + content: + application/json: + schema: + description: Wraps the Commit response under the `commit` key. + example: + commit: + commit_author: + email: john.doe@example.com + name: John Doe + commit_message: This is a commit message + created_at: "2021-01-01T00:00:00Z" + environment: development + id: 123e4567-e89b-12d3-a456-426614174000 + resource: + identifier: my-email-layout + type: email_layout + updated_at: "2021-01-01T00:00:00Z" + properties: + commit: + $ref: "#/components/schemas/Commit" + required: + - commit + title: WrappedCommitResponse + type: object + description: OK + summary: Promote one commit + tags: + - Commits + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.commits.promoteOne('id'); + + console.log(response.commit); + } + + main(); + /v1/email_layouts: + get: + callbacks: {} + description: Returns a paginated list of email layouts available in a given environment. + operationId: listEmailLayouts + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of EmailLayout. Contains a list of entries and page information. + example: + entries: + - created_at: "2021-01-01T00:00:00Z" + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + key: transactional + name: Transactional + sha: "1234567890" + text_layout: Hello, world! + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/EmailLayout" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedEmailLayoutResponse + type: object + description: OK + summary: List email layouts + tags: + - Email layouts + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const emailLayout of client.emailLayouts.list()) { + console.log(emailLayout.created_at); + } + } + + main(); + /v1/email_layouts/{email_layout_key}: + get: + callbacks: {} + description: Retrieve an email layout by its key, in a given environment. + operationId: getEmailLayout + parameters: + - description: The key of the email layout to show. + in: path + name: email_layout_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/EmailLayout" + description: OK + summary: Get email layout + tags: + - Email layouts + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const emailLayout = await client.emailLayouts.retrieve('email_layout_key'); + + console.log(emailLayout.created_at); + } + + main(); + put: + callbacks: {} + description: | + Updates an email layout, or creates a new one if it does not yet exist. + + Note: this endpoint only operates in the "development" environment. + operationId: upsertEmailLayout + parameters: + - description: The key of the email layout to upsert. + in: path + name: email_layout_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to commit the resource at the same time as modifying it. + in: query + name: commit + required: false + schema: + type: boolean + - description: The message to commit the resource with, only used if `commit` is `true`. + in: query + name: commit_message + required: false + schema: + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + requestBody: + content: + application/json: + schema: + description: Wraps the EmailLayoutRequest request under the email_layout key. + example: + email_layout: + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + name: Transactional + text_layout: Hello, world! + properties: + email_layout: + $ref: "#/components/schemas/EmailLayoutRequest" + required: + - email_layout + title: WrappedEmailLayoutRequestRequest + type: object + description: Email layout + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the EmailLayout response under the `email_layout` key. + example: + email_layout: + created_at: "2021-01-01T00:00:00Z" + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + key: transactional + name: Transactional + sha: "1234567890" + text_layout: Hello, world! + updated_at: "2021-01-01T00:00:00Z" + properties: + email_layout: + $ref: "#/components/schemas/EmailLayout" + required: + - email_layout + title: WrappedEmailLayoutResponse + type: object + description: OK + summary: Upsert email layout + tags: + - Email layouts + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.emailLayouts.upsert('email_layout_key', { + email_layout: { + html_layout: 'Hello, world!', + name: 'Transactional', + text_layout: 'Hello, world!', + }, + }); + + console.log(response.email_layout); + } + + main(); + /v1/email_layouts/{email_layout_key}/validate: + put: + callbacks: {} + description: | + Validates an email layout payload without persisting it. + + Note: this endpoint only operates in the "development" environment. + operationId: validateEmailLayout + parameters: + - description: The key of the email layout to validate. + in: path + name: email_layout_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + requestBody: + content: + application/json: + schema: + description: Wraps the EmailLayoutRequest request under the email_layout key. + example: + email_layout: + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + name: Transactional + text_layout: Hello, world! + properties: + email_layout: + $ref: "#/components/schemas/EmailLayoutRequest" + required: + - email_layout + title: WrappedEmailLayoutRequestRequest + type: object + description: Email layout + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the EmailLayout response under the `email_layout` key. + example: + email_layout: + created_at: "2021-01-01T00:00:00Z" + footer_links: + - text: Example + url: http://example.com + html_layout: Hello, world! + key: transactional + name: Transactional + sha: "1234567890" + text_layout: Hello, world! + updated_at: "2021-01-01T00:00:00Z" + properties: + email_layout: + $ref: "#/components/schemas/EmailLayout" + required: + - email_layout + title: WrappedEmailLayoutResponse + type: object + description: OK + summary: Validate email layout + tags: + - Email layouts + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.emailLayouts.validate('email_layout_key', { + email_layout: { + html_layout: 'Hello, world!', + name: 'Transactional', + text_layout: 'Hello, world!', + }, + }); + + console.log(response.email_layout); + } + + main(); + /v1/environments: + get: + callbacks: {} + description: >- + Returns a paginated list of environments. The environments will be returned in order of their index, + with the `development` environment first. + operationId: listEnvironments + parameters: + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Environment. Contains a list of entries and page information. + example: + entries: + - created_at: "2022-10-31T19:59:03Z" + deleted_at: null + hide_pii_data: false + label_color: "#000000" + last_commit_at: "2022-10-31T19:59:03Z" + name: Production + order: 0 + owner: system + slug: production + updated_at: "2022-10-31T19:59:03Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Environment" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedEnvironmentResponse + type: object + description: OK + summary: List environments + tags: + - Environments + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const environment of client.environments.list()) { + console.log(environment.hide_pii_data); + } + } + + main(); + /v1/environments/{environment_slug}: + get: + callbacks: {} + description: Returns a single environment by its slug. + operationId: getEnvironment + parameters: + - description: The slug of the environment to retrieve. + in: path + name: environment_slug + required: true + schema: + example: development + type: string + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/Environment" + description: OK + summary: Get an environment + tags: + - Environments + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const environment = await client.environments.retrieve('development'); + + console.log(environment.hide_pii_data); + } + + main(); + /v1/message_types: + get: + callbacks: {} + description: Returns a paginated list of message types available in a given environment. + operationId: listMessageTypes + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of MessageType. Contains a list of entries and page information. + example: + entries: + - archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + deleted_at: "2021-01-01T00:00:00Z" + description: Email message type + environment: development + icon_name: email + key: email + name: Email + owner: user + preview:
Hello, world!
+ semver: 1.0.0 + sha: "1234567890" + updated_at: "2021-01-01T00:00:00Z" + valid: true + variants: + - fields: + - key: text_field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + key: default + name: Default + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/MessageType" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedMessageTypeResponse + type: object + description: OK + summary: List message types + tags: + - Message types + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const messageType of client.messageTypes.list()) { + console.log(messageType.valid); + } + } + + main(); + /v1/message_types/{message_type_key}: + get: + callbacks: {} + description: Retrieve a message type by its key, in a given environment. + operationId: getMessageType + parameters: + - description: The key of the message type to retrieve. + in: path + name: message_type_key + required: true + schema: + example: email + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/MessageType" + description: OK + summary: Get message type + tags: + - Message types + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const messageType = await client.messageTypes.retrieve('email'); + + console.log(messageType.valid); + } + + main(); + put: + callbacks: {} + description: | + Updates a message type, or creates a new one if it does not yet exist. + + Note: this endpoint only operates in the `development` environment. + operationId: upsertMessageType + parameters: + - description: The key of the message type to upsert. + in: path + name: message_type_key + required: true + schema: + example: email + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + - description: Whether to commit the resource at the same time as modifying it. + in: query + name: commit + required: false + schema: + type: boolean + - description: The message to commit the resource with, only used if `commit` is `true`. + in: query + name: commit_message + required: false + schema: + type: string + requestBody: + content: + application/json: + schema: + description: Wraps the MessageTypeRequest request under the message_type key. + example: + message_type: + description: This is a message type + name: My Message Type + preview:
Hello, world!
+ variants: + - fields: + - key: text_field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + key: default + name: Default + properties: + message_type: + $ref: "#/components/schemas/MessageTypeRequest" + required: + - message_type + title: WrappedMessageTypeRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the MessageType response under the `message_type` key. + example: + message_type: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + deleted_at: "2021-01-01T00:00:00Z" + description: Email message type + environment: development + icon_name: email + key: email + name: Email + owner: user + preview:
Hello, world!
+ semver: 1.0.0 + sha: "1234567890" + updated_at: "2021-01-01T00:00:00Z" + valid: true + variants: + - fields: + - key: text_field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + key: default + name: Default + properties: + message_type: + $ref: "#/components/schemas/MessageType" + required: + - message_type + title: WrappedMessageTypeResponse + type: object + description: OK + summary: Upsert message type + tags: + - Message types + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.messageTypes.upsert('email', { + message_type: { + description: 'This is a message type', + name: 'My Message Type', + preview: '
Hello, world!
', + }, + }); + + console.log(response.message_type); + } + + main(); + /v1/message_types/{message_type_key}/validate: + put: + callbacks: {} + description: | + Validates a message type payload without persisting it. + + Note: this endpoint only operates on message types in the `development` environment. + operationId: validateMessageType + parameters: + - description: The key of the message type to validate. + in: path + name: message_type_key + required: true + schema: + example: email + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + requestBody: + content: + application/json: + schema: + description: Wraps the MessageTypeRequest request under the message_type key. + example: + message_type: + description: This is a message type + name: My Message Type + preview:
Hello, world!
+ variants: + - fields: + - key: text_field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + key: default + name: Default + properties: + message_type: + $ref: "#/components/schemas/MessageTypeRequest" + required: + - message_type + title: WrappedMessageTypeRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the MessageType response under the `message_type` key. + example: + message_type: + archived_at: "2021-01-01T00:00:00Z" + created_at: "2021-01-01T00:00:00Z" + deleted_at: "2021-01-01T00:00:00Z" + description: Email message type + environment: development + icon_name: email + key: email + name: Email + owner: user + preview:
Hello, world!
+ semver: 1.0.0 + sha: "1234567890" + updated_at: "2021-01-01T00:00:00Z" + valid: true + variants: + - fields: + - key: text_field + settings: + description: A description of the text field + max_length: 100 + min_length: 10 + required: true + type: text + value: Hello, world! + key: default + name: Default + properties: + message_type: + $ref: "#/components/schemas/MessageType" + required: + - message_type + title: WrappedMessageTypeResponse + type: object + description: OK + summary: Validate message type + tags: + - Message types + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.messageTypes.validate('email', { + message_type: { + description: 'This is a message type', + name: 'My Message Type', + preview: '
Hello, world!
', + }, + }); + + console.log(response.message_type); + } + + main(); + /v1/partials: + get: + callbacks: {} + description: List all partials for a given environment. + operationId: listPartials + parameters: + - description: A slug of the environment from which to query partials. + in: query + name: environment + required: true + schema: + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Partial. Contains a list of entries and page information. + example: + entries: + - content:

Hello, world!

+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Partial" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedPartialResponse + type: object + description: OK + summary: List partials + tags: + - Partials + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const partial of client.partials.list({ environment: 'environment' })) { + console.log(partial.valid); + } + } + + main(); + /v1/partials/{partial_key}: + get: + callbacks: {} + description: Get a partial by its key. + operationId: getPartial + parameters: + - description: A slug of the environment from which to query the partial. + in: query + name: environment + required: true + schema: + type: string + - description: The key of the partial to retrieve. + in: path + name: partial_key + required: true + schema: + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/Partial" + description: OK + summary: Get a partial + tags: + - Partials + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const partial = await client.partials.retrieve('partial_key', { environment: 'environment' }); + + console.log(partial.valid); + } + + main(); + put: + callbacks: {} + description: | + Updates a partial of a given key, or creates a new one if it does not yet exist. + + Note: this endpoint only operates on partials in the “development” environment. + operationId: upsertPartial + parameters: + - description: A slug of the environment in which to upsert the partial. + in: query + name: environment + required: true + schema: + type: string + - description: The key of the partial to upsert. + in: path + name: partial_key + required: true + schema: + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + - description: Whether to commit the resource at the same time as modifying it. + in: query + name: commit + required: false + schema: + type: boolean + - description: The message to commit the resource with, only used if `commit` is `true`. + in: query + name: commit_message + required: false + schema: + type: string + requestBody: + content: + application/json: + schema: + description: Wraps the PartialRequest request under the partial key. + example: + partial: + content:

Hello, world!

+ name: My Partial + type: html + properties: + partial: + $ref: "#/components/schemas/PartialRequest" + required: + - partial + title: WrappedPartialRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Partial response under the `partial` key. + example: + partial: + content:

Hello, world!

+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + properties: + partial: + $ref: "#/components/schemas/Partial" + required: + - partial + title: WrappedPartialResponse + type: object + description: OK + summary: Upsert a partial + tags: + - Partials + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.partials.upsert('partial_key', { + environment: 'environment', + partial: { content: '

Hello, world!

', name: 'My Partial', type: 'html' }, + }); + + console.log(response.partial); + } + + main(); + /v1/partials/{partial_key}/validate: + put: + callbacks: {} + description: | + Validates a partial payload without persisting it. + + Note: this endpoint only operates on partials in the “development” environment. + operationId: validatePartial + parameters: + - description: A slug of the environment in which to validate the partial. + in: query + name: environment + required: true + schema: + type: string + - description: The key of the partial to validate. + in: path + name: partial_key + required: true + schema: + type: string + requestBody: + content: + application/json: + schema: + description: Wraps the PartialRequest request under the partial key. + example: + partial: + content:

Hello, world!

+ name: My Partial + type: html + properties: + partial: + $ref: "#/components/schemas/PartialRequest" + required: + - partial + title: WrappedPartialRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Partial response under the `partial` key. + example: + partial: + content:

Hello, world!

+ description: This is a test partial + environment: development + icon_name: icon-name + inserted_at: "2021-01-01T00:00:00Z" + key: my-partial + name: My Partial + type: html + updated_at: "2021-01-01T00:00:00Z" + valid: true + visual_block_enabled: true + properties: + partial: + $ref: "#/components/schemas/Partial" + required: + - partial + title: WrappedPartialResponse + type: object + description: OK + summary: Validate a partial + tags: + - Partials + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.partials.validate('partial_key', { + environment: 'environment', + partial: { content: '

Hello, world!

', name: 'My Partial', type: 'html' }, + }); + + console.log(response.partial); + } + + main(); + /v1/translations: + get: + callbacks: {} + description: > + Returns a paginated list of translations available in a given environment. The translations are + returned in alpha-sorted order by locale code. + operationId: listTranslations + parameters: + - description: A specific locale code to filter translations for. + in: query + name: locale_code + required: false + schema: + type: string + - description: A specific namespace to filter translations for. + in: query + name: namespace + required: false + schema: + type: string + - description: Optionally specify the returned content format. Supports 'json' and 'po'. Defaults to 'json'. + in: query + name: format + required: false + schema: + enum: + - json + - po + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Translation. Contains a list of entries and page information. + example: + entries: + - content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Translation" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedTranslationResponse + type: object + description: OK + summary: List translations + tags: + - Translations + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const translation of client.translations.list()) { + console.log(translation.content); + } + } + + main(); + /v1/translations/{locale_code}: + get: + callbacks: {} + description: Retrieve a translation by its locale and namespace, in a given environment. + operationId: getTranslation + parameters: + - description: A specific locale code to filter translations for. + in: path + name: locale_code + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Optionally specify the returned content format. Supports 'json' and 'po'. Defaults to 'json'. + in: query + name: format + required: false + schema: + enum: + - json + - po + type: string + - description: A specific namespace to filter translations for. + in: query + name: namespace + required: false + schema: + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + responses: + "200": + content: + application/json: + schema: + description: Wraps the Translation response under the `translation` key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + properties: + translation: + $ref: "#/components/schemas/Translation" + required: + - translation + title: WrappedTranslationResponse + type: object + description: OK + summary: Get translation + tags: + - Translations + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const translation = await client.translations.retrieve('locale_code'); + + console.log(translation.translation); + } + + main(); + put: + callbacks: {} + description: > + Updates a translation of a given locale code + namespace, or creates a new one if it does not yet + exist. + + + Note: this endpoint only operates on translations in the "development" environment. + operationId: upsertTranslation + parameters: + - description: A locale code of the translation. + in: path + name: locale_code + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: An optional namespace that identifies the translation. + in: query + name: namespace + required: true + schema: + type: string + - description: Optionally specify the returned content format. Supports 'json' and 'po'. Defaults to 'json'. + in: query + name: format + required: false + schema: + enum: + - json + - po + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + requestBody: + content: + application/json: + schema: + description: Wraps the TranslationRequest request under the translation key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + properties: + translation: + $ref: "#/components/schemas/TranslationRequest" + required: + - translation + title: WrappedTranslationRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Translation response under the `translation` key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + properties: + translation: + $ref: "#/components/schemas/Translation" + required: + - translation + title: WrappedTranslationResponse + type: object + description: OK + summary: Upsert translation + tags: + - Translations + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.translations.upsert('locale_code', { + namespace: 'namespace', + translation: { content: '{"hello":"Hello, world!"}', format: 'json' }, + }); + + console.log(response.translation); + } + + main(); + /v1/translations/{locale_code}/validate: + put: + callbacks: {} + description: | + Validates a translation payload without persisting it. + + Note: this endpoint only operates on translations in the "development" environment. + operationId: validateTranslation + parameters: + - description: A locale code of the translation. + in: path + name: locale_code + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: false + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + requestBody: + content: + application/json: + schema: + description: Wraps the TranslationRequest request under the translation key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + properties: + translation: + $ref: "#/components/schemas/TranslationRequest" + required: + - translation + title: WrappedTranslationRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Translation response under the `translation` key. + example: + translation: + content: '{"hello":"Hello, world!"}' + format: json + inserted_at: "2021-01-01T00:00:00Z" + locale_code: en + namespace: my_app + updated_at: "2021-01-01T00:00:00Z" + properties: + translation: + $ref: "#/components/schemas/Translation" + required: + - translation + title: WrappedTranslationResponse + type: object + description: OK + summary: Validate translation + tags: + - Translations + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.translations.validate('locale_code', { + translation: { content: '{"hello":"Hello, world!"}', format: 'json' }, + }); + + console.log(response.translation); + } + + main(); + /v1/variables: + get: + callbacks: {} + description: Returns a paginated list of variables for a given environment. + operationId: listVariables + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Variable. Contains a list of entries and page information. + example: + entries: + - description: This is a description of my variable. + inserted_at: "2021-01-01T00:00:00Z" + key: my_variable + type: public + updated_at: "2021-01-01T00:00:00Z" + value: my_value + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Variable" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedVariableResponse + type: object + description: OK + summary: List variables + tags: + - Variables + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const variable of client.variables.list({ environment: 'development' })) { + console.log(variable.inserted_at); + } + } + + main(); + /v1/whoami: + get: + callbacks: {} + description: Return information about the current service token. + operationId: getWhoami + parameters: [] + responses: + "200": + content: + application/json: + schema: + description: Information about the current service token. + example: + account_name: Acme, Inc. + account_slug: acme + service_token_name: My Service Token + properties: + account_name: + type: string + account_slug: + type: string + service_token_name: + type: string + required: + - account_name + - account_slug + - service_token_name + type: object + description: OK + summary: Verify scope + tags: + - Accounts + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.auth.verify(); + + console.log(response.account_name); + } + + main(); + /v1/workflows: + get: + callbacks: {} + description: >- + Returns a paginated list of workflows available in a given environment. The workflows are returned in + alpha sorted order by its key. + operationId: listWorkflows + parameters: + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + - description: The cursor to fetch entries after. + in: query + name: after + required: false + schema: + type: string + - description: The cursor to fetch entries before. + in: query + name: before + required: false + schema: + type: string + - description: The number of entries to fetch per-page. + in: query + name: limit + required: false + schema: + type: integer + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + responses: + "200": + content: + application/json: + schema: + description: A paginated list of Workflow. Contains a list of entries and page information. + example: + entries: + - active: false + categories: + - marketing + - black-friday + conditions: + all: + - argument: admin + operator: equal_to + variable: recipient.role + created_at: "2022-12-16T19:07:50.027113Z" + description: This is a dummy workflow for demo purposes. + environment: development + key: december-16-demo + name: december-16-demo + settings: + override_preferences: true + sha: f7e9d3b2a1c8e6m4k5j7h9g0i2l3n4p6q8r0t1u3v5w7x9y + steps: + - channel_key: in-app-feed + description: Main in-app feed + name: In-app step + ref: in_app_feed_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + trigger_data_json_schema: + properties: + name: + type: string + required: + - name + type: object + trigger_frequency: every_trigger + updated_at: "2023-02-08T22:15:19.846681Z" + valid: true + page_info: + after: null + before: null + page_size: 25 + properties: + entries: + description: A list of entries. + items: + $ref: "#/components/schemas/Workflow" + nullable: false + type: array + page_info: + $ref: "#/components/schemas/PageInfo" + required: + - entries + - page_info + title: PaginatedWorkflowResponse + type: object + description: OK + summary: List workflows + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + // Automatically fetches more pages as needed. + for await (const workflow of client.workflows.list({ environment: 'development' })) { + console.log(workflow.valid); + } + } + + main(); + /v1/workflows/{workflow_key}: + get: + callbacks: {} + description: Retrieve a workflow by its key and namespace, in a given environment. + operationId: getWorkflow + parameters: + - description: The key of the workflow to retrieve. + in: path + name: workflow_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + - description: Whether to annotate the resource. + in: query + name: annotate + required: false + schema: + type: boolean + - description: Whether to hide uncommitted changes. + in: query + name: hide_uncommitted_changes + required: false + schema: + type: boolean + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/Workflow" + description: OK + summary: Get a workflow + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const workflow = await client.workflows.retrieve('workflow_key', { environment: 'development' }); + + console.log(workflow.valid); + } + + main(); + put: + callbacks: {} + description: | + Updates a workflow of a given key, or creates a new one if it does not yet exist. + + Note: this endpoint only operates on workflows in the `development` environment. + operationId: upsertWorkflow + parameters: + - description: The key of the workflow. + in: path + name: workflow_key + required: true + schema: + type: string + - description: A slug of the environment in which to upsert the workflow. + in: query + name: environment + required: true + schema: + type: string + - description: Whether to commit the resource at the same time as modifying it. + in: query + name: commit + required: false + schema: + type: boolean + - description: The message to commit the resource with, only used if `commit` is `true`. + in: query + name: commit_message + required: false + schema: + type: string + requestBody: + content: + application/json: + schema: + description: Wraps the WorkflowRequest request under the workflow key. + example: + workflow: + name: My Workflow + steps: + - channel_key: in-app-feed + name: Channel 1 + ref: channel_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + properties: + workflow: + $ref: "#/components/schemas/WorkflowRequest" + required: + - workflow + title: WrappedWorkflowRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Workflow response under the `workflow` key. + example: + workflow: + active: false + categories: + - marketing + - black-friday + conditions: + all: + - argument: admin + operator: equal_to + variable: recipient.role + created_at: "2022-12-16T19:07:50.027113Z" + description: This is a dummy workflow for demo purposes. + environment: development + key: december-16-demo + name: december-16-demo + settings: + override_preferences: true + sha: f7e9d3b2a1c8e6m4k5j7h9g0i2l3n4p6q8r0t1u3v5w7x9y + steps: + - channel_key: in-app-feed + description: Main in-app feed + name: In-app step + ref: in_app_feed_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + trigger_data_json_schema: + properties: + name: + type: string + required: + - name + type: object + trigger_frequency: every_trigger + updated_at: "2023-02-08T22:15:19.846681Z" + valid: true + properties: + workflow: + $ref: "#/components/schemas/Workflow" + required: + - workflow + title: WrappedWorkflowResponse + type: object + description: OK + summary: Upsert a workflow + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.workflows.upsert('workflow_key', { + environment: 'environment', + workflow: { + name: 'My Workflow', + steps: [ + { + name: 'Channel 1', + ref: 'channel_1', + template: { markdown_body: 'Hello **{{ recipient.name }}**' }, + type: 'channel', + }, + ], + }, + }); + + console.log(response.workflow); + } + + main(); + /v1/workflows/{workflow_key}/activate: + put: + callbacks: {} + description: > + Activates (or deactivates) a workflow in a given environment. + + + Note: This immediately enables or disables a workflow in a given environment without needing to go + through environment promotion. + operationId: activateWorkflow + parameters: + - description: The key of the workflow. + in: path + name: workflow_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + requestBody: + content: + application/json: + schema: + example: + status: true + properties: + status: + description: >- + Whether to activate or deactivate the workflow. Set to `true` by default, which will + activate the workflow. + example: true + type: boolean + required: + - status + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Workflow response under the `workflow` key. + example: + workflow: + active: false + categories: + - marketing + - black-friday + conditions: + all: + - argument: admin + operator: equal_to + variable: recipient.role + created_at: "2022-12-16T19:07:50.027113Z" + description: This is a dummy workflow for demo purposes. + environment: development + key: december-16-demo + name: december-16-demo + settings: + override_preferences: true + sha: f7e9d3b2a1c8e6m4k5j7h9g0i2l3n4p6q8r0t1u3v5w7x9y + steps: + - channel_key: in-app-feed + description: Main in-app feed + name: In-app step + ref: in_app_feed_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + trigger_data_json_schema: + properties: + name: + type: string + required: + - name + type: object + trigger_frequency: every_trigger + updated_at: "2023-02-08T22:15:19.846681Z" + valid: true + properties: + workflow: + $ref: "#/components/schemas/Workflow" + required: + - workflow + title: WrappedWorkflowResponse + type: object + description: OK + summary: Activate a workflow + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.workflows.activate('workflow_key', { + environment: 'development', + status: true, + }); + + console.log(response.workflow); + } + + main(); + /v1/workflows/{workflow_key}/run: + put: + callbacks: {} + description: Runs the latest version of a committed workflow in a given environment using the params provided. + operationId: runWorkflow + parameters: + - description: The key of the workflow. + in: path + name: workflow_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/RunWorkflowRequest" + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/RunWorkflowResponse" + description: OK + summary: Run a workflow + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.workflows.run('workflow_key', { + environment: 'development', + recipients: ['dnedry'], + }); + + console.log(response.workflow_run_id); + } + + main(); + /v1/workflows/{workflow_key}/steps/{step_ref}/preview_template: + post: + callbacks: {} + description: Generates a rendered template for a given channel step in a workflow. + operationId: previewWorkflowTemplate + parameters: + - description: The key of the workflow. + in: path + name: workflow_key + required: true + schema: + type: string + - description: The reference key of the channel step in the workflow to preview. + in: path + name: step_ref + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/PreviewWorkflowTemplateRequest" + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/PreviewWorkflowTemplateResponse" + description: OK + summary: Preview a workflow template + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.workflows.steps.previewTemplate('step_ref', { + workflow_key: 'workflow_key', + environment: 'development', + recipient: 'dnedry', + }); + + console.log(response.content_type); + } + + main(); + /v1/workflows/{workflow_key}/validate: + put: + callbacks: {} + description: > + Validates a workflow payload without persisting it. Some read-only fields will be empty as they are + generated by the system when persisted. + + + Note: Validating a workflow is only done in the development environment context. + operationId: validateWorkflow + parameters: + - description: The key of the workflow. + in: path + name: workflow_key + required: true + schema: + type: string + - description: The environment slug. (Defaults to `development`.). + in: query + name: environment + required: true + schema: + example: development + type: string + requestBody: + content: + application/json: + schema: + description: Wraps the WorkflowRequest request under the workflow key. + example: + workflow: + name: My Workflow + steps: + - channel_key: in-app-feed + name: Channel 1 + ref: channel_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + properties: + workflow: + $ref: "#/components/schemas/WorkflowRequest" + required: + - workflow + title: WrappedWorkflowRequestRequest + type: object + description: Params + required: false + responses: + "200": + content: + application/json: + schema: + description: Wraps the Workflow response under the `workflow` key. + example: + workflow: + active: false + categories: + - marketing + - black-friday + conditions: + all: + - argument: admin + operator: equal_to + variable: recipient.role + created_at: "2022-12-16T19:07:50.027113Z" + description: This is a dummy workflow for demo purposes. + environment: development + key: december-16-demo + name: december-16-demo + settings: + override_preferences: true + sha: f7e9d3b2a1c8e6m4k5j7h9g0i2l3n4p6q8r0t1u3v5w7x9y + steps: + - channel_key: in-app-feed + description: Main in-app feed + name: In-app step + ref: in_app_feed_1 + template: + action_url: "{{ vars.app_url }}" + markdown_body: Hello **{{ recipient.name }}** + type: channel + trigger_data_json_schema: + properties: + name: + type: string + required: + - name + type: object + trigger_frequency: every_trigger + updated_at: "2023-02-08T22:15:19.846681Z" + valid: true + properties: + workflow: + $ref: "#/components/schemas/Workflow" + required: + - workflow + title: WrappedWorkflowResponse + type: object + description: OK + summary: Validate a workflow + tags: + - Workflows + x-stainless-snippets: + typescript: |- + import Knock from '@knocklabs/mgmt'; + + const client = new Knock({ + serviceToken: process.env['KNOCK_SERVICE_TOKEN'], // This is the default and can be omitted + }); + + async function main() { + const response = await client.workflows.validate('workflow_key', { + environment: 'development', + workflow: { + name: 'My Workflow', + steps: [ + { + name: 'Channel 1', + ref: 'channel_1', + template: { markdown_body: 'Hello **{{ recipient.name }}**' }, + type: 'channel', + }, + ], + }, + }); + + console.log(response.workflow); + } + + main(); +security: + - BearerAuth: [] +servers: + - url: https://control.knock.app + variables: {} +tags: + - description: Resources for managing your Knock account. + name: Accounts + - description: Workflows let you express your cross-channel notification logic. + name: Workflows + - description: Partials allow you to reuse content across templates. + name: Partials + - description: Commits are versioned changes to resources. + name: Commits + - description: Environments are isolated instances of your account that map to your infrastructure. + name: Environments + - description: Translations are per-locale string files that can be used in your templates. + name: Translations + - description: Email layouts wrap your email templates and provide a consistent look and feel. + name: Email layouts + - description: >- + A message type allows you to specify an in-app schema that defines the fields available for your in-app + notifications. + name: Message types diff --git a/data/specs/mapi/stainless.yml b/data/specs/mapi/stainless.yml new file mode 100644 index 000000000..2cf0bdf3b --- /dev/null +++ b/data/specs/mapi/stainless.yml @@ -0,0 +1,186 @@ +# yaml-language-server: $schema=https://app.stainless.com/config.schema.json + +organization: + name: knock + docs: https://docs.knock.app/mapi + contact: support@knock.app +targets: + typescript: + package_name: "@knocklabs/mgmt" + production_repo: null + publish: + npm: false +environments: + production: https://control.knock.app +resources: + $shared: + models: + page_info: "#/components/schemas/PageInfo" + templates: + models: + chat_template: "#/components/schemas/ChatTemplate" + email_template: "#/components/schemas/EmailTemplate" + push_template: "#/components/schemas/PushTemplate" + sms_template: "#/components/schemas/SmsTemplate" + in_app_feed_template: "#/components/schemas/InAppFeedTemplate" + request_template: "#/components/schemas/RequestTemplate" + webhook_template: "#/components/schemas/WebhookTemplate" + email_layouts: + models: + email_layout: "#/components/schemas/EmailLayout" + methods: + list: get /v1/email_layouts + retrieve: get /v1/email_layouts/{email_layout_key} + upsert: put /v1/email_layouts/{email_layout_key} + validate: put /v1/email_layouts/{email_layout_key}/validate + commits: + models: + commit: "#/components/schemas/Commit" + methods: + list: get /v1/commits + commit_all: put /v1/commits + retrieve: get /v1/commits/{id} + promote_all: put /v1/commits/promote + promote_one: put /v1/commits/{id}/promote + partials: + models: + partial: "#/components/schemas/Partial" + methods: + list: get /v1/partials + retrieve: get /v1/partials/{partial_key} + upsert: put /v1/partials/{partial_key} + validate: put /v1/partials/{partial_key}/validate + translations: + models: + translation: "#/components/schemas/Translation" + methods: + list: get /v1/translations + retrieve: get /v1/translations/{locale_code} + upsert: put /v1/translations/{locale_code} + validate: put /v1/translations/{locale_code}/validate + workflows: + models: + condition: "#/components/schemas/Condition" + condition_group: "#/components/schemas/ConditionGroup" + duration: "#/components/schemas/Duration" + send_window: "#/components/schemas/SendWindow" + workflow: "#/components/schemas/Workflow" + workflow_step: "#/components/schemas/WorkflowStep" + workflow_batch_step: "#/components/schemas/WorkflowBatchStep" + workflow_branch_step: "#/components/schemas/WorkflowBranchStep" + workflow_channel_step: "#/components/schemas/WorkflowChannelStep" + workflow_delay_step: "#/components/schemas/WorkflowDelayStep" + workflow_fetch_step: "#/components/schemas/WorkflowFetchStep" + workflow_throttle_step: "#/components/schemas/WorkflowThrottleStep" + workflow_trigger_workflow_step: "#/components/schemas/WorkflowTriggerWorkflowStep" + methods: + list: get /v1/workflows + retrieve: get /v1/workflows/{workflow_key} + upsert: put /v1/workflows/{workflow_key} + activate: put /v1/workflows/{workflow_key}/activate + run: put /v1/workflows/{workflow_key}/run + validate: put /v1/workflows/{workflow_key}/validate + subresources: + steps: + methods: + preview_template: post /v1/workflows/{workflow_key}/steps/{step_ref}/preview_template + message_types: + models: + message_type: "#/components/schemas/MessageType" + message_type_variant: "#/components/schemas/MessageTypeVariant" + message_type_text_field: "#/components/schemas/MessageTypeTextField" + methods: + list: get /v1/message_types + retrieve: get /v1/message_types/{message_type_key} + upsert: put /v1/message_types/{message_type_key} + validate: put /v1/message_types/{message_type_key}/validate + auth: + methods: + verify: get /v1/whoami + api_keys: + methods: + exchange: post /v1/api_keys/exchange + channel_groups: + models: + channel_group: "#/components/schemas/ChannelGroup" + channel_group_rule: "#/components/schemas/ChannelGroupRule" + methods: + list: get /v1/channel_groups + channels: + models: + channel: "#/components/schemas/Channel" + chat_channel_settings: "#/components/schemas/ChatChannelSettings" + email_channel_settings: "#/components/schemas/EmailChannelSettings" + push_channel_settings: "#/components/schemas/PushChannelSettings" + sms_channel_settings: "#/components/schemas/SmsChannelSettings" + in_app_feed_channel_settings: "#/components/schemas/InAppFeedChannelSettings" + methods: + list: get /v1/channels + environments: + models: + environment: "#/components/schemas/Environment" + methods: + list: get /v1/environments + retrieve: get /v1/environments/{environment_slug} + variables: + models: + variable: "#/components/schemas/Variable" + methods: + list: get /v1/variables +settings: + disable_mock_tests: true + license: Apache-2.0 +pagination: + - name: entries_cursor + type: cursor + request: + after: + type: string + x-stainless-pagination-property: + purpose: next_cursor_param + before: + type: string + x-stainless-pagination-property: + purpose: previous_cursor_param + limit: + type: integer + response: + entries: + type: array + items: + type: object + page_info: + type: object + properties: + after: + type: string + x-stainless-pagination-property: + purpose: next_cursor_field +client_settings: + opts: + service_token: + type: string + nullable: false + auth: + security_scheme: BearerAuth + read_env: KNOCK_SERVICE_TOKEN +openapi: + code_samples: + stainless: true +readme: + example_requests: + default: + type: request + endpoint: get /v1/workflows + params: + environment: development + headline: + type: request + endpoint: get /v1/workflows + params: + environment: development + pagination: + type: request + endpoint: get /v1/workflows + params: + environment: development diff --git a/lib/openApiSpec.ts b/lib/openApiSpec.ts new file mode 100644 index 000000000..2df957c84 --- /dev/null +++ b/lib/openApiSpec.ts @@ -0,0 +1,70 @@ +import { dereference } from "@scalar/openapi-parser"; +import deepmerge from "deepmerge"; +import { readFile } from "fs/promises"; +import safeStringify from "safe-stringify"; +import { parse } from "yaml"; + +type StainlessResourceMethod = + | string + | { + type: "http"; + endpoint: string; + positional_params?: string[]; + }; + +type StainlessResource = { + name?: string; + description?: string; + models?: Record; + methods?: Record; + subresources?: Record< + string, + { + name?: string; + description?: string; + models?: Record; + methods?: Record; + } + >; +}; + +interface StainlessConfig { + resources: { + [key: string]: StainlessResource; + }; + environments: Record; +} + +function yamlToJson(yaml: string) { + const json = parse(yaml); + return json; +} + +async function readOpenApiSpec(specName: string) { + const spec = await readFile(`./data/specs/${specName}/openapi.yml`, "utf8"); + const jsonSpec = yamlToJson(spec); + const { schema } = await dereference(jsonSpec); + + return JSON.parse(safeStringify(schema)); +} + +async function readStainlessSpec(specName: string): Promise { + const customizations = await readSpecCustomizations(specName); + const spec = await readFile(`./data/specs/${specName}/stainless.yml`, "utf8"); + const stainlessSpec = parse(spec); + + return deepmerge(stainlessSpec, customizations); +} + +async function readSpecCustomizations(specName: string) { + const spec = await readFile( + `./data/specs/${specName}/customizations.yml`, + "utf8", + ); + const customizations = parse(spec); + + return customizations; +} + +export type { StainlessResource, StainlessConfig }; +export { readOpenApiSpec, readStainlessSpec, readSpecCustomizations }; diff --git a/package.json b/package.json index 779b16fae..270cadeb6 100644 --- a/package.json +++ b/package.json @@ -26,15 +26,20 @@ "@radix-ui/react-dialog": "1.0.0", "@radix-ui/react-popover": "^1.0.0", "@radix-ui/react-radio-group": "^1.0.0", + "@scalar/openapi-parser": "^0.10.9", + "@scalar/openapi-types": "^0.1.9", "@segment/snippet": "^5.2.1", "@tailwindcss/typography": "^0.5.4", "@vercel/og": "^0.5.20", "algoliasearch": "^4.13.0", "classnames": "^2.2.6", + "deepmerge": "^4.3.1", "eslint-config-next": "^13.5.6", "is-hotkey": "0.2.0", "isomorphic-unfetch": "3.1.0", + "jsonpointer": "^5.0.1", "locale-codes": "^1.3.1", + "lodash": "^4.17.21", "next": "^13.5.11", "next-mdx-remote": "^4.4.1", "next-seo": "^5.4.0", @@ -43,12 +48,14 @@ "react-dom": "^18.2.0", "react-hotkeys-hook": "^3.4.6", "react-icons": "5.2.0", + "react-markdown": "^10.1.0", "react-syntax-highlighter": "^15.4.3", "react-use-clipboard": "1.0.7", "rehype-mdx-code-props": "^2.0.0", "remark-frontmatter": "^5.0.0", "remark-gfm": "3.0.1", "remark-parse": "^11.0.0", + "safe-stringify": "^1.1.1", "tailwindcss-radix": "^2.5.0", "unified": "^11.0.5", "yaml": "^2.7.0" diff --git a/pages/[...slug].tsx b/pages/[...slug].tsx index d4ded4d0e..8a7e2a220 100644 --- a/pages/[...slug].tsx +++ b/pages/[...slug].tsx @@ -43,7 +43,7 @@ import { import RateLimit from "../components/RateLimit"; import { FrontMatter } from "../types"; -const components = { +export const MDX_COMPONENTS = { pre: CodeBlock, h2: (props) => , h3: (props) => , @@ -79,7 +79,7 @@ export default function ContentPage({ source, sourcePath }) { } + resourceOrder={RESOURCE_ORDER} + preSidebarContent={PRE_SIDEBAR_CONTENT} + /> + ); +} + +export async function getStaticPaths() { + const openApiSpec = await readOpenApiSpec("mapi"); + const stainlessSpec = await readStainlessSpec("mapi"); + + const paths: { params: { slug: string[] } }[] = []; + const pages = getSidebarContent( + openApiSpec as OpenAPIV3.Document, + stainlessSpec, + RESOURCE_ORDER, + "/mapi-reference", + PRE_SIDEBAR_CONTENT, + ); + + for (const page of pages) { + const slug = page.slug.split("/").pop() as string; + paths.push({ params: { slug: [slug] } }); + + for (const subPage of page.pages) { + paths.push({ + params: { slug: [slug, subPage.slug.replace("/", "")] }, + }); + + for (const subSubPage of (subPage as SidebarSubsection).pages ?? []) { + paths.push({ + params: { + slug: [ + slug, + subPage.slug.replace("/", ""), + subSubPage.slug.replace("/", ""), + ], + }, + }); + } + } + } + + return { + paths, + fallback: false, + }; +} + +export async function getStaticProps() { + const openApiSpec = await readOpenApiSpec("mapi"); + const stainlessSpec = await readStainlessSpec("mapi"); + + const preContent = fs.readFileSync( + `${CONTENT_DIR}/__mapi-reference/content.mdx`, + ); + + const preContentMdx = await serialize(preContent, { + parseFrontmatter: true, + mdxOptions: { + remarkPlugins: [remarkGfm], + rehypePlugins: [rehypeMdxCodeProps] as any, + }, + }); + + return { props: { openApiSpec, stainlessSpec, preContentMdx } }; +} + +export default ManagementApiReferencePage; diff --git a/pages/mapi-reference/index.tsx b/pages/mapi-reference/index.tsx new file mode 100644 index 000000000..e73183f36 --- /dev/null +++ b/pages/mapi-reference/index.tsx @@ -0,0 +1,88 @@ +import fs from "fs"; +import { MDXRemote } from "next-mdx-remote"; +import rehypeMdxCodeProps from "rehype-mdx-code-props"; +import { serialize } from "next-mdx-remote/serialize"; +import remarkGfm from "remark-gfm"; + +import { readOpenApiSpec, readStainlessSpec } from "../../lib/openApiSpec"; +import ApiReference from "../../components/ApiReference/ApiReference"; +import { CONTENT_DIR } from "../../lib/content.server"; +import { MDX_COMPONENTS } from "../[...slug]"; +import { SidebarSection } from "../../data/types"; + +export const RESOURCE_ORDER = [ + "environments", + "channels", + "channel_groups", + "workflows", + "email_layouts", + "translations", + "partials", + "commits", + "variables", + "templates", + "message_types", +]; + +export const PRE_SIDEBAR_CONTENT: SidebarSection[] = [ + { + title: "API Reference", + slug: `/mapi-reference/overview`, + pages: [ + { + title: "Overview", + slug: `/overview`, + }, + { + title: "Authentication", + slug: `/authentication`, + }, + { + title: "Errors", + slug: `/errors`, + }, + { + title: "Postman", + slug: `/postman`, + }, + ], + }, +]; + +function ManagementApiReferenceNew({ + openApiSpec, + stainlessSpec, + preContentMdx, +}) { + return ( + } + resourceOrder={RESOURCE_ORDER} + preSidebarContent={PRE_SIDEBAR_CONTENT} + /> + ); +} + +export async function getStaticProps() { + const openApiSpec = await readOpenApiSpec("mapi"); + const stainlessSpec = await readStainlessSpec("mapi"); + + const preContent = fs.readFileSync( + `${CONTENT_DIR}/__mapi-reference/content.mdx`, + ); + + const preContentMdx = await serialize(preContent, { + parseFrontmatter: true, + mdxOptions: { + remarkPlugins: [remarkGfm], + rehypePlugins: [rehypeMdxCodeProps] as any, + }, + }); + + return { props: { openApiSpec, stainlessSpec, preContentMdx } }; +} + +export default ManagementApiReferenceNew; diff --git a/styles/index.css b/styles/index.css index 2b067ccd4..7e6920e11 100644 --- a/styles/index.css +++ b/styles/index.css @@ -159,3 +159,15 @@ body { .prose-sm ul { list-style-type: disc; } + +.schema-property-description p { + margin-top: 0 !important; +} + +.schema-property-description p:last-child { + margin-bottom: 0 !important; +} + +.schema-property-description code { + font-size: 11px; +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index ec780e560..684a365af 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,7 +15,7 @@ "noEmit": true, "esModuleInterop": true, "module": "esnext", - "moduleResolution": "node", + "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", @@ -33,6 +33,5 @@ ".next/types/**/*.ts" ], "exclude": [ - "node_modules" ] } diff --git a/tsconfig.tsbuildinfo b/tsconfig.tsbuildinfo index 17eafe9b3..d0823882c 100644 --- a/tsconfig.tsbuildinfo +++ b/tsconfig.tsbuildinfo @@ -1 +1 @@ -{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.es2022.d.ts","./node_modules/typescript/lib/lib.es2023.d.ts","./node_modules/typescript/lib/lib.esnext.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.es2022.array.d.ts","./node_modules/typescript/lib/lib.es2022.error.d.ts","./node_modules/typescript/lib/lib.es2022.intl.d.ts","./node_modules/typescript/lib/lib.es2022.object.d.ts","./node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2022.string.d.ts","./node_modules/typescript/lib/lib.es2022.regexp.d.ts","./node_modules/typescript/lib/lib.es2023.array.d.ts","./node_modules/typescript/lib/lib.es2023.collection.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/typescript/lib/lib.esnext.disposable.d.ts","./node_modules/typescript/lib/lib.esnext.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/next/dist/styled-jsx/types/css.d.ts","./node_modules/@types/react/global.d.ts","./node_modules/csstype/index.d.ts","./node_modules/@types/react/node_modules/@types/prop-types/index.d.ts","./node_modules/@types/scheduler/tracing.d.ts","./node_modules/@types/react/index.d.ts","./node_modules/next/dist/styled-jsx/types/index.d.ts","./node_modules/next/dist/styled-jsx/types/macro.d.ts","./node_modules/next/dist/styled-jsx/types/style.d.ts","./node_modules/next/dist/styled-jsx/types/global.d.ts","./node_modules/next/dist/shared/lib/amp.d.ts","./node_modules/next/amp.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/next/dist/server/get-page-files.d.ts","./node_modules/next/dist/compiled/webpack/webpack.d.ts","./node_modules/next/dist/server/config.d.ts","./node_modules/next/dist/lib/load-custom-routes.d.ts","./node_modules/next/dist/shared/lib/image-config.d.ts","./node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","./node_modules/next/dist/server/body-streams.d.ts","./node_modules/next/dist/server/future/route-kind.d.ts","./node_modules/next/dist/server/future/route-definitions/route-definition.d.ts","./node_modules/next/dist/server/future/route-matches/route-match.d.ts","./node_modules/next/dist/client/components/app-router-headers.d.ts","./node_modules/next/dist/server/request-meta.d.ts","./node_modules/next/dist/server/config-shared.d.ts","./node_modules/next/dist/server/base-http/index.d.ts","./node_modules/next/dist/server/api-utils/index.d.ts","./node_modules/next/dist/server/node-environment.d.ts","./node_modules/next/dist/server/require-hook.d.ts","./node_modules/next/dist/server/node-polyfill-fetch.d.ts","./node_modules/next/dist/server/node-polyfill-form.d.ts","./node_modules/next/dist/server/node-polyfill-web-streams.d.ts","./node_modules/next/dist/server/node-polyfill-crypto.d.ts","./node_modules/next/dist/lib/polyfill-promise-with-resolvers.d.ts","./node_modules/next/dist/build/analysis/get-page-static-info.d.ts","./node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","./node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","./node_modules/next/dist/server/lib/revalidate.d.ts","./node_modules/next/dist/lib/setup-exception-listeners.d.ts","./node_modules/next/dist/build/index.d.ts","./node_modules/next/dist/server/response-cache/types.d.ts","./node_modules/next/dist/server/response-cache/index.d.ts","./node_modules/next/dist/server/lib/incremental-cache/index.d.ts","./node_modules/next/dist/client/components/hooks-server-context.d.ts","./node_modules/next/dist/client/components/static-generation-async-storage.external.d.ts","./node_modules/next/dist/server/pipe-readable.d.ts","./node_modules/next/dist/server/render-result.d.ts","./node_modules/next/dist/server/future/helpers/i18n-provider.d.ts","./node_modules/next/dist/server/web/next-url.d.ts","./node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","./node_modules/next/dist/server/web/spec-extension/cookies.d.ts","./node_modules/next/dist/server/web/spec-extension/request.d.ts","./node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","./node_modules/next/dist/server/web/spec-extension/response.d.ts","./node_modules/next/dist/server/web/types.d.ts","./node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","./node_modules/next/dist/server/send-payload/revalidate-headers.d.ts","./node_modules/next/dist/server/send-payload/index.d.ts","./node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","./node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","./node_modules/next/dist/server/base-http/node.d.ts","./node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","./node_modules/next/dist/server/font-utils.d.ts","./node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","./node_modules/next/dist/server/future/route-modules/route-module.d.ts","./node_modules/next/dist/server/load-components.d.ts","./node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","./node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","./node_modules/next/dist/server/future/route-definitions/locale-route-definition.d.ts","./node_modules/next/dist/server/future/route-definitions/pages-route-definition.d.ts","./node_modules/next/dist/shared/lib/mitt.d.ts","./node_modules/next/dist/client/with-router.d.ts","./node_modules/next/dist/client/router.d.ts","./node_modules/next/dist/client/route-loader.d.ts","./node_modules/next/dist/client/page-loader.d.ts","./node_modules/next/dist/shared/lib/bloom-filter.d.ts","./node_modules/next/dist/shared/lib/router/router.d.ts","./node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","./node_modules/next/dist/server/future/route-definitions/app-page-route-definition.d.ts","./node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","./node_modules/next/dist/shared/lib/constants.d.ts","./node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","./node_modules/next/dist/build/webpack/loaders/next-app-loader.d.ts","./node_modules/next/dist/server/lib/app-dir-module.d.ts","./node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","./node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","./node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","./node_modules/next/dist/client/components/request-async-storage.external.d.ts","./node_modules/next/dist/server/app-render/create-error-handler.d.ts","./node_modules/next/dist/server/app-render/app-render.d.ts","./node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/amp-context.shared-runtime.d.ts","./node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints.d.ts","./node_modules/next/dist/server/future/route-modules/app-page/module.compiled.d.ts","./node_modules/next/dist/client/components/error-boundary.d.ts","./node_modules/next/dist/client/components/router-reducer/create-initial-router-state.d.ts","./node_modules/next/dist/client/components/app-router.d.ts","./node_modules/next/dist/client/components/layout-router.d.ts","./node_modules/next/dist/client/components/render-from-template-context.d.ts","./node_modules/next/dist/client/components/action-async-storage.external.d.ts","./node_modules/next/dist/client/components/static-generation-bailout.d.ts","./node_modules/next/dist/client/components/static-generation-searchparams-bailout-provider.d.ts","./node_modules/next/dist/client/components/searchparams-bailout-proxy.d.ts","./node_modules/next/dist/server/app-render/rsc/preloads.d.ts","./node_modules/next/dist/client/components/not-found-boundary.d.ts","./node_modules/next/dist/server/app-render/entry-base.d.ts","./node_modules/next/dist/build/templates/app-page.d.ts","./node_modules/next/dist/server/future/route-modules/app-page/module.d.ts","./node_modules/next/dist/server/app-render/types.d.ts","./node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","./node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","./node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","./node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints.d.ts","./node_modules/next/dist/server/future/route-modules/pages/module.compiled.d.ts","./node_modules/next/dist/build/templates/pages.d.ts","./node_modules/next/dist/server/future/route-modules/pages/module.d.ts","./node_modules/next/dist/server/render.d.ts","./node_modules/next/dist/server/future/route-definitions/pages-api-route-definition.d.ts","./node_modules/next/dist/server/future/route-matches/pages-api-route-match.d.ts","./node_modules/next/dist/server/future/route-matchers/route-matcher.d.ts","./node_modules/next/dist/server/future/route-matcher-providers/route-matcher-provider.d.ts","./node_modules/next/dist/server/future/route-matcher-managers/route-matcher-manager.d.ts","./node_modules/next/dist/server/future/normalizers/normalizer.d.ts","./node_modules/next/dist/server/future/normalizers/locale-route-normalizer.d.ts","./node_modules/next/dist/server/base-server.d.ts","./node_modules/next/dist/server/image-optimizer.d.ts","./node_modules/next/dist/server/next-server.d.ts","./node_modules/next/dist/lib/coalesced-function.d.ts","./node_modules/next/dist/trace/shared.d.ts","./node_modules/next/dist/trace/trace.d.ts","./node_modules/next/dist/trace/index.d.ts","./node_modules/next/dist/build/webpack-config.d.ts","./node_modules/next/dist/build/webpack/plugins/define-env-plugin.d.ts","./node_modules/next/dist/build/swc/index.d.ts","./node_modules/next/dist/server/dev/parse-version-info.d.ts","./node_modules/next/dist/server/dev/hot-reloader-types.d.ts","./node_modules/next/dist/telemetry/storage.d.ts","./node_modules/next/dist/server/lib/types.d.ts","./node_modules/next/dist/server/lib/router-utils/types.d.ts","./node_modules/next/dist/server/lib/render-server.d.ts","./node_modules/next/dist/server/lib/router-server.d.ts","./node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","./node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","./node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","./node_modules/next/dist/server/lib/dev-bundler-service.d.ts","./node_modules/next/dist/server/dev/static-paths-worker.d.ts","./node_modules/next/dist/server/dev/next-dev-server.d.ts","./node_modules/next/dist/server/next.d.ts","./node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","./node_modules/next/dist/lib/metadata/types/extra-types.d.ts","./node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","./node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","./node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","./node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","./node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","./node_modules/next/types/index.d.ts","./node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","./node_modules/@next/env/dist/index.d.ts","./node_modules/next/dist/shared/lib/utils.d.ts","./node_modules/next/dist/pages/_app.d.ts","./node_modules/next/app.d.ts","./node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","./node_modules/next/dist/server/web/spec-extension/revalidate-path.d.ts","./node_modules/next/dist/server/web/spec-extension/revalidate-tag.d.ts","./node_modules/next/cache.d.ts","./node_modules/next/dist/shared/lib/runtime-config.external.d.ts","./node_modules/next/config.d.ts","./node_modules/next/dist/pages/_document.d.ts","./node_modules/next/document.d.ts","./node_modules/next/dist/shared/lib/dynamic.d.ts","./node_modules/next/dynamic.d.ts","./node_modules/next/dist/pages/_error.d.ts","./node_modules/next/error.d.ts","./node_modules/next/dist/shared/lib/head.d.ts","./node_modules/next/head.d.ts","./node_modules/next/dist/shared/lib/get-img-props.d.ts","./node_modules/next/dist/client/image-component.d.ts","./node_modules/next/dist/shared/lib/image-external.d.ts","./node_modules/next/image.d.ts","./node_modules/next/dist/client/link.d.ts","./node_modules/next/link.d.ts","./node_modules/next/dist/client/components/redirect.d.ts","./node_modules/next/dist/client/components/not-found.d.ts","./node_modules/next/dist/client/components/navigation.d.ts","./node_modules/next/navigation.d.ts","./node_modules/next/router.d.ts","./node_modules/next/dist/client/script.d.ts","./node_modules/next/script.d.ts","./node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","./node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","./node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","./node_modules/next/dist/compiled/@vercel/og/emoji/index.d.ts","./node_modules/next/dist/compiled/@vercel/og/types.d.ts","./node_modules/next/dist/compiled/@vercel/og/index.node.d.ts","./node_modules/next/dist/server/web/spec-extension/image-response.d.ts","./node_modules/next/server.d.ts","./node_modules/next/types/global.d.ts","./node_modules/next/types/compiled.d.ts","./node_modules/next/index.d.ts","./node_modules/next/image-types/global.d.ts","./node_modules/next/navigation-types/compat/navigation.d.ts","./next-env.d.ts","./types.ts","./lib/constants.ts","./app/robots.ts","./node_modules/@algolia/cache-common/dist/cache-common.d.ts","./node_modules/@algolia/logger-common/dist/logger-common.d.ts","./node_modules/@algolia/requester-common/dist/requester-common.d.ts","./node_modules/@algolia/transporter/dist/transporter.d.ts","./node_modules/@algolia/client-common/dist/client-common.d.ts","./node_modules/@algolia/client-search/dist/client-search.d.ts","./node_modules/@algolia/client-analytics/dist/client-analytics.d.ts","./node_modules/@algolia/client-personalization/dist/client-personalization.d.ts","./node_modules/algoliasearch/dist/algoliasearch.d.ts","./node_modules/algoliasearch/index.d.ts","./lib/content.server.ts","./app/sitemap.ts","./data/types.ts","./components/Sidebar/helpers.ts","./data/apiReferenceSidebar.ts","./data/integrationsSidebar.ts","./data/sidebar.ts","./data/code/api/idempotency.ts","./data/code/messages/get-activities.ts","./data/code/messages/get-content.ts","./data/code/messages/get-events.ts","./data/code/messages/get.ts","./data/code/messages/list.ts","./data/code/objects/bulk-delete.ts","./data/code/objects/bulk-set.ts","./data/code/objects/delete.ts","./data/code/objects/get-channel-data.ts","./data/code/objects/get-preferences.ts","./data/code/objects/get.ts","./data/code/objects/list-preferences.ts","./data/code/objects/list.ts","./data/code/objects/messages.ts","./data/code/objects/set-channel-data-discord-bot.ts","./data/code/objects/set-channel-data-discord-webhook.ts","./data/code/objects/set-channel-data-ms-teams.ts","./data/code/objects/set-channel-data-slack.ts","./data/code/objects/set-preferences.ts","./data/code/objects/set.ts","./data/code/objects/unset-channel-data.ts","./data/code/sdks/install.ts","./data/code/sources/eventPayload.ts","./data/code/tenants/delete.ts","./data/code/tenants/get.ts","./data/code/tenants/list.ts","./data/code/tenants/set.ts","./data/code/users/bulk-delete.ts","./data/code/users/bulk-identify.ts","./data/code/users/bulk-set-preferences.ts","./data/code/users/delete.ts","./data/code/users/get-channel-data.ts","./data/code/users/get-preferences.ts","./data/code/users/get.ts","./data/code/users/identify-channel-data.ts","./data/code/users/identify.ts","./data/code/users/list-preferences.ts","./data/code/users/merge.ts","./data/code/users/messages.ts","./data/code/users/set-channel-data-one-signal.ts","./data/code/users/set-channel-data-push.ts","./data/code/users/set-channel-data.ts","./data/code/users/set-preferences-per-tenant.ts","./data/code/users/set-preferences-with-conditions.ts","./data/code/users/set-preferences.ts","./data/code/users/unset-channel-data.ts","./data/code/workflows/cancel-with-recipients.ts","./data/code/workflows/cancel.ts","./data/code/workflows/playground.ts","./data/code/workflows/trigger-with-actor.ts","./data/code/workflows/trigger-with-attachment.ts","./data/code/workflows/trigger-with-branding-tenant.ts","./data/code/workflows/trigger-with-identification.ts","./data/code/workflows/trigger-with-object-as-actor.ts","./data/code/workflows/trigger-with-object-as-recipient.ts","./data/code/workflows/trigger-with-object-identification.ts","./data/code/workflows/trigger-with-tenant.ts","./data/code/workflows/trigger-with-user-channel-data.ts","./data/code/workflows/trigger-with-user-identification.ts","./data/code/workflows/trigger-with-user-preferences.ts","./data/code/workflows/trigger.ts","./node_modules/@ts-morph/common/lib/typescript.d.ts","./node_modules/@ts-morph/common/lib/ts-morph-common.d.ts","./node_modules/ts-morph/lib/ts-morph.d.ts","./node_modules/typescript/lib/typescript.d.ts","./node_modules/ts-evaluator/dist/esm/index.d.ts","./node_modules/@pandacss/extractor/dist/index.d.ts","./node_modules/mlly/dist/index.d.ts","./node_modules/pkg-types/dist/index.d.ts","./node_modules/@pandacss/types/dist/csstype.d.ts","./node_modules/@pandacss/types/dist/selectors.d.ts","./node_modules/@pandacss/types/dist/conditions.d.ts","./node_modules/hookable/dist/index.d.ts","./node_modules/@pandacss/types/dist/parser.d.ts","./node_modules/@pandacss/types/dist/hooks.d.ts","./node_modules/@pandacss/types/dist/prop-type.d.ts","./node_modules/@pandacss/types/dist/style-props.d.ts","./node_modules/@pandacss/types/dist/system-types.d.ts","./node_modules/@pandacss/types/dist/shared.d.ts","./node_modules/@pandacss/types/dist/tokens.d.ts","./node_modules/@pandacss/types/dist/pattern.d.ts","./node_modules/@pandacss/types/dist/static-css.d.ts","./node_modules/@pandacss/types/dist/composition.d.ts","./node_modules/@pandacss/types/dist/recipe.d.ts","./node_modules/@pandacss/types/dist/theme.d.ts","./node_modules/@pandacss/types/dist/utility.d.ts","./node_modules/@pandacss/types/dist/config.d.ts","./node_modules/@pandacss/types/dist/analyze-report.d.ts","./node_modules/@pandacss/types/dist/artifact.d.ts","./node_modules/@pandacss/types/dist/parts.d.ts","./node_modules/@pandacss/types/dist/runtime.d.ts","./node_modules/@pandacss/types/dist/index.d.ts","./node_modules/@pandacss/dev/dist/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/static-css.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/csstype.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/selectors.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/conditions.d.ts","./node_modules/@inkeep/styled-system/styled-system/tokens/tokens.d.ts","./node_modules/@inkeep/styled-system/styled-system/tokens/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/prop-type.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/style-props.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/system-types.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/recipe.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/parts.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/pattern.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/composition.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/global.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/jsx.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/css/css.d.ts","./node_modules/@inkeep/styled-system/styled-system/css/cx.d.ts","./node_modules/@inkeep/styled-system/styled-system/css/cva.d.ts","./node_modules/@inkeep/styled-system/styled-system/css/sva.d.ts","./node_modules/@inkeep/styled-system/styled-system/css/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/factory.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/is-valid-prop.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/box.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/box.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/flex.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/flex.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/stack.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/stack.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/vstack.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/vstack.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/hstack.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/hstack.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/spacer.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/spacer.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/square.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/square.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/circle.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/circle.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/center.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/center.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/link-box.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/link-box.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/link-overlay.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/link-overlay.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/aspect-ratio.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/aspect-ratio.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/grid.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/grid.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/grid-item.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/grid-item.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/wrap.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/wrap.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/container.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/container.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/divider.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/divider.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/float.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/float.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/bleed.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/bleed.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/visually-hidden.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/visually-hidden.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/alert.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/avatar.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/card.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/checkbox.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/close-button.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/code.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/badge.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/form-control.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/input.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/link.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/popover.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/select.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/skeleton.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/table.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/tag.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/textarea.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/ai-chat-page-wrapper.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/button.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/content-parser.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/heading.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/icon.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/kbd.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/modal.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/preview-content-header.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/search-bar-trigger.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/switch-recipe.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/switch-to-chat-button.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/tabs.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/tooltip.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/index.d.ts","./node_modules/@inkeep/styled-system/system.d.ts","./node_modules/@types/prismjs/index.d.ts","./node_modules/prism-react-renderer/dist/index.d.ts","./node_modules/@inkeep/widgets/dist/components/InkeepThemeTypes.d.ts","./node_modules/graphql/version.d.ts","./node_modules/graphql/jsutils/Maybe.d.ts","./node_modules/graphql/language/source.d.ts","./node_modules/graphql/jsutils/ObjMap.d.ts","./node_modules/graphql/jsutils/Path.d.ts","./node_modules/graphql/jsutils/PromiseOrValue.d.ts","./node_modules/graphql/language/kinds.d.ts","./node_modules/graphql/language/tokenKind.d.ts","./node_modules/graphql/language/ast.d.ts","./node_modules/graphql/language/location.d.ts","./node_modules/graphql/error/GraphQLError.d.ts","./node_modules/graphql/language/directiveLocation.d.ts","./node_modules/graphql/type/directives.d.ts","./node_modules/graphql/type/schema.d.ts","./node_modules/graphql/type/definition.d.ts","./node_modules/graphql/execution/execute.d.ts","./node_modules/graphql/graphql.d.ts","./node_modules/graphql/type/scalars.d.ts","./node_modules/graphql/type/introspection.d.ts","./node_modules/graphql/type/validate.d.ts","./node_modules/graphql/type/assertName.d.ts","./node_modules/graphql/type/index.d.ts","./node_modules/graphql/language/printLocation.d.ts","./node_modules/graphql/language/lexer.d.ts","./node_modules/graphql/language/parser.d.ts","./node_modules/graphql/language/printer.d.ts","./node_modules/graphql/language/visitor.d.ts","./node_modules/graphql/language/predicates.d.ts","./node_modules/graphql/language/index.d.ts","./node_modules/graphql/execution/subscribe.d.ts","./node_modules/graphql/execution/values.d.ts","./node_modules/graphql/execution/index.d.ts","./node_modules/graphql/subscription/index.d.ts","./node_modules/graphql/utilities/TypeInfo.d.ts","./node_modules/graphql/validation/ValidationContext.d.ts","./node_modules/graphql/validation/validate.d.ts","./node_modules/graphql/validation/specifiedRules.d.ts","./node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts","./node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts","./node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts","./node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts","./node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts","./node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts","./node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts","./node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts","./node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts","./node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts","./node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts","./node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts","./node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts","./node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts","./node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts","./node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts","./node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts","./node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts","./node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts","./node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts","./node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts","./node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts","./node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts","./node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts","./node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts","./node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts","./node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts","./node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts","./node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts","./node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts","./node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts","./node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.d.ts","./node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts","./node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts","./node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts","./node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts","./node_modules/graphql/validation/index.d.ts","./node_modules/graphql/error/syntaxError.d.ts","./node_modules/graphql/error/locatedError.d.ts","./node_modules/graphql/error/index.d.ts","./node_modules/graphql/utilities/getIntrospectionQuery.d.ts","./node_modules/graphql/utilities/getOperationAST.d.ts","./node_modules/graphql/utilities/getOperationRootType.d.ts","./node_modules/graphql/utilities/introspectionFromSchema.d.ts","./node_modules/graphql/utilities/buildClientSchema.d.ts","./node_modules/graphql/utilities/buildASTSchema.d.ts","./node_modules/graphql/utilities/extendSchema.d.ts","./node_modules/graphql/utilities/lexicographicSortSchema.d.ts","./node_modules/graphql/utilities/printSchema.d.ts","./node_modules/graphql/utilities/typeFromAST.d.ts","./node_modules/graphql/utilities/valueFromAST.d.ts","./node_modules/graphql/utilities/valueFromASTUntyped.d.ts","./node_modules/graphql/utilities/astFromValue.d.ts","./node_modules/graphql/utilities/coerceInputValue.d.ts","./node_modules/graphql/utilities/concatAST.d.ts","./node_modules/graphql/utilities/separateOperations.d.ts","./node_modules/graphql/utilities/stripIgnoredCharacters.d.ts","./node_modules/graphql/utilities/typeComparators.d.ts","./node_modules/graphql/utilities/assertValidName.d.ts","./node_modules/graphql/utilities/findBreakingChanges.d.ts","./node_modules/graphql/utilities/typedQueryDocumentNode.d.ts","./node_modules/graphql/utilities/index.d.ts","./node_modules/graphql/index.d.ts","./node_modules/@graphql-typed-document-node/core/typings/index.d.ts","./node_modules/@inkeep/widgets/dist/__generated__/graphql.d.ts","./node_modules/@types/react/jsx-runtime.d.ts","./node_modules/@inkeep/widgets/dist/InkeepShadow.d.ts","./node_modules/@inkeep/widgets/dist/hocs/withStyles.d.ts","./node_modules/@inkeep/widgets/dist/components/SearchResults/SearchResultsBySource.d.ts","./node_modules/@inkeep/widgets/dist/components/SearchResults/SearchResults.d.ts","./node_modules/@inkeep/widgets/dist/components/Icons/BuiltInIcons.d.ts","./node_modules/@inkeep/widgets/dist/components/Icons/BuiltInIconRenderer.d.ts","./node_modules/@inkeep/widgets/dist/components/SearchResults/TabConfiguration.d.ts","./node_modules/@inkeep/widgets/dist/utils/processStringReplacement.d.ts","./node_modules/@inkeep/widgets/dist/hooks/useBreadcrumbs.d.ts","./node_modules/react-hook-form/dist/constants.d.ts","./node_modules/react-hook-form/dist/utils/createSubject.d.ts","./node_modules/react-hook-form/dist/types/events.d.ts","./node_modules/react-hook-form/dist/types/path/common.d.ts","./node_modules/react-hook-form/dist/types/path/eager.d.ts","./node_modules/react-hook-form/dist/types/path/index.d.ts","./node_modules/react-hook-form/dist/types/fieldArray.d.ts","./node_modules/react-hook-form/dist/types/resolvers.d.ts","./node_modules/react-hook-form/dist/types/form.d.ts","./node_modules/react-hook-form/dist/types/utils.d.ts","./node_modules/react-hook-form/dist/types/fields.d.ts","./node_modules/react-hook-form/dist/types/errors.d.ts","./node_modules/react-hook-form/dist/types/validator.d.ts","./node_modules/react-hook-form/dist/types/controller.d.ts","./node_modules/react-hook-form/dist/types/index.d.ts","./node_modules/react-hook-form/dist/controller.d.ts","./node_modules/react-hook-form/dist/form.d.ts","./node_modules/react-hook-form/dist/logic/appendErrors.d.ts","./node_modules/react-hook-form/dist/logic/index.d.ts","./node_modules/react-hook-form/dist/useController.d.ts","./node_modules/react-hook-form/dist/useFieldArray.d.ts","./node_modules/react-hook-form/dist/useForm.d.ts","./node_modules/react-hook-form/dist/useFormContext.d.ts","./node_modules/react-hook-form/dist/useFormState.d.ts","./node_modules/react-hook-form/dist/useWatch.d.ts","./node_modules/react-hook-form/dist/utils/get.d.ts","./node_modules/react-hook-form/dist/utils/set.d.ts","./node_modules/react-hook-form/dist/utils/index.d.ts","./node_modules/react-hook-form/dist/index.d.ts","./node_modules/@inkeep/widgets/dist/components/Form/types.d.ts","./node_modules/@inkeep/widgets/dist/components/InkeepCustomIconTypes.d.ts","./node_modules/@inkeep/widgets/dist/components/AIChat/AIChatPage/AIChatPage.d.ts","./node_modules/@inkeep/widgets/dist/hooks/useMessageFeedback.d.ts","./node_modules/@inkeep/widgets/dist/components/AIChat/AIChatPage/Feedback/ChatMessageFeedbackForm.d.ts","./node_modules/@inkeep/widgets/dist/components/InkeepEventTypes.d.ts","./node_modules/@inkeep/widgets/dist/components/Workflows/InkeepWorkflowTypes.d.ts","./node_modules/@inkeep/widgets/dist/components/InkeepWidgetProps.d.ts","./node_modules/@inkeep/widgets/dist/InkeepShadowContext.d.ts","./node_modules/@inkeep/widgets/dist/widgets/InkeepChatButton.d.ts","./node_modules/@inkeep/widgets/dist/widgets/InkeepCustomTrigger.d.ts","./node_modules/@inkeep/widgets/dist/widgets/InkeepEmbeddedChat.d.ts","./node_modules/@inkeep/widgets/dist/widgets/InkeepSearchBar.d.ts","./node_modules/@inkeep/widgets/dist/index.d.ts","./node_modules/next-themes/dist/types.d.ts","./node_modules/next-themes/dist/index.d.ts","./hooks/useInKeepSettings.ts","./hooks/useIsMounted.ts","./hooks/useLocalStorage.ts","./lib/clearbit.ts","./lib/content.ts","./lib/gtag.ts","./lib/normalizeCode.ts","./node_modules/isomorphic-unfetch/index.d.ts","./pages/api/feedbacks.ts","./styles/codeThemes.ts","./node_modules/classnames/index.d.ts","./node_modules/react-icons/lib/iconsManifest.d.ts","./node_modules/react-icons/lib/iconBase.d.ts","./node_modules/react-icons/lib/iconContext.d.ts","./node_modules/react-icons/lib/index.d.ts","./node_modules/react-icons/io5/index.d.ts","./components/Accordion.tsx","./components/AiChatButton.tsx","./components/Sidebar/SidebarLink.tsx","./components/Sidebar/SidebarSubsection.tsx","./components/Sidebar/SidebarSectionList.tsx","./components/Sidebar.tsx","./components/ApiReferenceSidebar.tsx","./node_modules/@radix-ui/react-primitive/dist/index.d.ts","./node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-dismissable-layer/dist/index.d.ts","./node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-focus-scope/dist/index.d.ts","./node_modules/@radix-ui/react-arrow/dist/index.d.ts","./node_modules/@radix-ui/rect/dist/index.d.ts","./node_modules/@radix-ui/react-context/dist/index.d.ts","./node_modules/@radix-ui/react-popper/dist/index.d.ts","./node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-portal/dist/index.d.ts","./node_modules/@radix-ui/react-popover/dist/index.d.ts","./components/ApiSdkMenu.tsx","./node_modules/react-use-clipboard/dist/index.d.ts","./components/SectionHeading.tsx","./components/ApiSections.tsx","./components/Attributes.tsx","./node_modules/@algolia/autocomplete-shared/dist/esm/MaybePromise.d.ts","./node_modules/algoliasearch/dist/algoliasearch-lite.d.ts","./node_modules/algoliasearch/lite.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/preset-algolia/algoliasearch.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/SearchResponse.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/UserAgent.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/preset-algolia/createRequester.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompleteEnvironment.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompleteReshape.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompletePlugin.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompleteOptions.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompleteSource.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompleteCollection.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompleteContext.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompleteState.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompleteNavigator.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompletePropGetters.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompleteSetters.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/AutocompleteApi.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/index.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/createCancelablePromise.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/createCancelablePromiseList.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/createRef.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/debounce.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/decycle.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/flatten.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/generateAutocompleteId.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/getAttributeValueByPath.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/getItemsCount.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/invariant.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/isEqual.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/noop.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/safelyRunOnBrowser.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/userAgents.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/version.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/warn.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/AutocompleteClassNames.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/HighlightHitParams.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/AutocompleteComponents.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/AutocompleteRenderer.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/AutocompleteState.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/AutocompleteSource.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/AutocompleteCollection.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/AutocompletePlugin.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/AutocompletePropGetters.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/AutocompleteRender.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/AutocompleteTranslations.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/AutocompleteOptions.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/index.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/index.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/createConcurrentSafePromise.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/getNextActiveItemId.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/getNormalizedSources.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/getActiveItem.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/getAutocompleteElementId.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/isOrContainsNode.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/isSamsung.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/mapToAlgoliaResponse.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/index.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/types/AutocompleteStore.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/types/AutocompleteSubscribers.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/types/AlgoliaInsightsHit.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/createSearchInsightsApi.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/types/AutocompleteInsightsApi.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/types/EventParams.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/types/InsightsClient.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/types/index.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/createAlgoliaInsightsPlugin.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/index.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/types/index.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/createAutocomplete.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/getDefaultProps.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/index.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/types/index.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/HighlightedHit.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/ParseAlgoliaHitParams.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/ParsedAttribute.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/parseAlgoliaHitHighlight.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/parseAlgoliaHitReverseHighlight.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/SnippetedHit.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/parseAlgoliaHitReverseSnippet.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/parseAlgoliaHitSnippet.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/index.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/requester/createRequester.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/requester/getAlgoliaFacets.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/requester/getAlgoliaResults.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/requester/index.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/search/fetchAlgoliaResults.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/search/index.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/index.d.ts","./node_modules/react-hotkeys-hook/dist/useIsHotkeyPressed.d.ts","./node_modules/hotkeys-js/index.d.ts","./node_modules/react-hotkeys-hook/dist/useHotkeys.d.ts","./node_modules/react-hotkeys-hook/dist/index.d.ts","./node_modules/react-icons/io/index.d.ts","./components/Autocomplete.tsx","./components/Breadcrumbs.tsx","./components/Callout.tsx","./components/Card.tsx","./components/CodeBlock.tsx","./components/CopyableText.tsx","./components/DocsSidebar.tsx","./components/Endpoints.tsx","./node_modules/@radix-ui/react-roving-focus/dist/index.d.ts","./node_modules/@radix-ui/react-radio-group/dist/index.d.ts","./node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-primitive/dist/index.d.ts","./node_modules/@radix-ui/react-dismissable-layer/dist/index.d.ts","./node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-primitive/dist/index.d.ts","./node_modules/@radix-ui/react-focus-scope/dist/index.d.ts","./node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-primitive/dist/index.d.ts","./node_modules/@radix-ui/react-portal/dist/index.d.ts","./node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-primitive/dist/index.d.ts","./node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-context/dist/index.d.ts","./node_modules/@radix-ui/react-dialog/dist/index.d.ts","./components/SupportModal.tsx","./components/HelpMenu.tsx","./components/IntegrationsSidebar.tsx","./node_modules/locale-codes/index.d.ts","./components/Table.tsx","./components/LocaleTable.tsx","./node_modules/next-seo/lib/types.d.ts","./node_modules/next-seo/lib/meta/defaultSEO.d.ts","./node_modules/next-seo/lib/meta/nextSEO.d.ts","./node_modules/next-seo/lib/jsonld/jsonld.d.ts","./node_modules/next-seo/lib/jsonld/carousel.d.ts","./node_modules/next-seo/lib/jsonld/newsarticle.d.ts","./node_modules/next-seo/lib/jsonld/jobPosting.d.ts","./node_modules/next-seo/lib/jsonld/localBusiness.d.ts","./node_modules/next-seo/lib/jsonld/qaPage.d.ts","./node_modules/next-seo/lib/jsonld/profilePage.d.ts","./node_modules/next-seo/lib/jsonld/siteLinksSearchBox.d.ts","./node_modules/next-seo/lib/jsonld/recipe.d.ts","./node_modules/next-seo/lib/jsonld/event.d.ts","./node_modules/next-seo/lib/jsonld/corporateContact.d.ts","./node_modules/next-seo/lib/jsonld/collectionPage.d.ts","./node_modules/next-seo/lib/jsonld/product.d.ts","./node_modules/next-seo/lib/jsonld/softwareApp.d.ts","./node_modules/next-seo/lib/jsonld/video.d.ts","./node_modules/next-seo/lib/jsonld/videoGame.d.ts","./node_modules/next-seo/lib/jsonld/organization.d.ts","./node_modules/next-seo/lib/jsonld/faqPage.d.ts","./node_modules/next-seo/lib/jsonld/logo.d.ts","./node_modules/next-seo/lib/jsonld/dataset.d.ts","./node_modules/next-seo/lib/jsonld/course.d.ts","./node_modules/next-seo/lib/jsonld/breadcrumb.d.ts","./node_modules/next-seo/lib/jsonld/brand.d.ts","./node_modules/next-seo/lib/jsonld/article.d.ts","./node_modules/next-seo/lib/jsonld/webPage.d.ts","./node_modules/next-seo/lib/jsonld/socialProfile.d.ts","./node_modules/next-seo/lib/jsonld/howTo.d.ts","./node_modules/next-seo/lib/jsonld/image.d.ts","./node_modules/next-seo/lib/index.d.ts","./components/Meta.tsx","./node_modules/@byteclaw/use-event-emitter/dist/index.d.ts","./components/MultiLangCodeBlock.tsx","./components/PageNav.tsx","./components/RateLimit.tsx","./node_modules/react-icons/ri/index.d.ts","./node_modules/react-icons/fa/index.d.ts","./node_modules/react-icons/di/index.d.ts","./node_modules/react-icons/fa6/index.d.ts","./node_modules/react-icons/si/index.d.ts","./node_modules/react-icons/tb/index.d.ts","./components/SdkCard.tsx","./components/Step.tsx","./components/Header/MinimalHeader.tsx","./layouts/Page.tsx","./layouts/ApiReferenceLayout.tsx","./layouts/CliReferenceLayout.tsx","./layouts/DocsLayout.tsx","./layouts/IntegrationsLayout.tsx","./layouts/MapiReferenceLayout.tsx","./layouts/MDXLayout.tsx","./node_modules/@types/unist/index.d.ts","./node_modules/vfile-message/lib/index.d.ts","./node_modules/vfile-message/index.d.ts","./node_modules/vfile/lib/minurl.shared.d.ts","./node_modules/vfile/lib/index.d.ts","./node_modules/vfile/index.d.ts","./node_modules/@types/hast/index.d.ts","./node_modules/@types/mdast/index.d.ts","./node_modules/mdast-util-to-hast/lib/state.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/blockquote.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/break.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/code.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/delete.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/emphasis.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/footnote.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/heading.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/html.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/image-reference.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/image.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/inline-code.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/link-reference.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/link.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/list-item.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/list.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/paragraph.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/root.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/strong.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/table.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/table-cell.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/table-row.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/text.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/thematic-break.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/index.d.ts","./node_modules/mdast-util-to-hast/lib/index.d.ts","./node_modules/mdast-util-to-hast/index.d.ts","./node_modules/unified/index.d.ts","./node_modules/remark-rehype/lib/index.d.ts","./node_modules/remark-rehype/index.d.ts","./node_modules/@types/estree/index.d.ts","./node_modules/@types/estree-jsx/index.d.ts","./node_modules/@mdx-js/mdx/lib/plugin/rehype-recma.d.ts","./node_modules/@mdx-js/mdx/lib/plugin/recma-document.d.ts","./node_modules/source-map/source-map.d.ts","./node_modules/@mdx-js/mdx/lib/plugin/recma-stringify.d.ts","./node_modules/periscopic/types/index.d.ts","./node_modules/@mdx-js/mdx/lib/plugin/recma-jsx-rewrite.d.ts","./node_modules/@mdx-js/mdx/lib/core.d.ts","./node_modules/@mdx-js/mdx/lib/node-types.d.ts","./node_modules/@mdx-js/mdx/lib/compile.d.ts","./node_modules/@types/mdx/types.d.ts","./node_modules/@mdx-js/mdx/lib/util/resolve-evaluate-options.d.ts","./node_modules/@mdx-js/mdx/lib/evaluate.d.ts","./node_modules/@mdx-js/mdx/lib/run.d.ts","./node_modules/@mdx-js/mdx/index.d.ts","./node_modules/next-mdx-remote/dist/types.d.ts","./node_modules/next-mdx-remote/dist/serialize.d.ts","./node_modules/next-mdx-remote/serialize.d.ts","./node_modules/@mdx-js/react/node_modules/@types/react/global.d.ts","./node_modules/@mdx-js/react/node_modules/@types/prop-types/index.d.ts","./node_modules/@mdx-js/react/node_modules/@types/react/index.d.ts","./node_modules/@mdx-js/react/lib/index.d.ts","./node_modules/@mdx-js/react/index.d.ts","./node_modules/next-mdx-remote/dist/index.d.ts","./node_modules/next-mdx-remote/index.d.ts","./node_modules/rehype-autolink-headings/node_modules/@types/unist/index.d.ts","./node_modules/rehype-autolink-headings/node_modules/@types/hast/index.d.ts","./node_modules/hast-util-is-element/node_modules/@types/hast/index.d.ts","./node_modules/hast-util-is-element/lib/index.d.ts","./node_modules/hast-util-is-element/index.d.ts","./node_modules/rehype-autolink-headings/lib/index.d.ts","./node_modules/rehype-autolink-headings/index.d.ts","./node_modules/micromark-util-types/index.d.ts","./node_modules/micromark-extension-gfm-footnote/lib/syntax.d.ts","./node_modules/micromark-extension-gfm-footnote/lib/html.d.ts","./node_modules/micromark-extension-gfm-footnote/index.d.ts","./node_modules/micromark-extension-gfm-strikethrough/lib/html.d.ts","./node_modules/micromark-extension-gfm-strikethrough/lib/syntax.d.ts","./node_modules/micromark-extension-gfm-strikethrough/index.d.ts","./node_modules/micromark-extension-gfm/index.d.ts","./node_modules/mdast-util-from-markdown/lib/index.d.ts","./node_modules/mdast-util-from-markdown/index.d.ts","./node_modules/mdast-util-to-markdown/lib/types.d.ts","./node_modules/mdast-util-to-markdown/lib/index.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/blockquote.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/break.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/code.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/definition.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/emphasis.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/heading.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/html.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/image.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/image-reference.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/inline-code.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/link.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/link-reference.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/list.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/list-item.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/paragraph.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/root.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/strong.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/text.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/thematic-break.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/index.d.ts","./node_modules/mdast-util-to-markdown/index.d.ts","./node_modules/markdown-table/index.d.ts","./node_modules/mdast-util-gfm-table/lib/index.d.ts","./node_modules/mdast-util-gfm-table/index.d.ts","./node_modules/mdast-util-gfm/lib/index.d.ts","./node_modules/mdast-util-gfm/index.d.ts","./node_modules/remark-gfm/index.d.ts","./node_modules/remark-slug/types/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/@types/hast/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/@types/unist/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/vfile-message/lib/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/vfile-message/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/vfile/lib/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/vfile/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/unified/lib/callable-instance.d.ts","./node_modules/trough/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/unified/lib/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/unified/index.d.ts","./node_modules/rehype-mdx-code-props/index.d.ts","./content/integrations/extensions/datadog_dashboard.json","./content/integrations/extensions/new_relic_dashboard.json","./pages/[...slug].tsx","./node_modules/next/dist/compiled/@next/font/dist/types.d.ts","./node_modules/next/dist/compiled/@next/font/dist/google/index.d.ts","./node_modules/next/font/google/index.d.ts","./node_modules/@segment/snippet/types.d.ts","./lib/analytics.js","./node_modules/next-remote-refresh/hook.d.ts","./pages/_app.tsx","./pages/_document.tsx","./pages/index.tsx","./node_modules/yoga-wasm-web/dist/generated/YGEnums.d.ts","./node_modules/yoga-wasm-web/dist/wrapAsm.d.ts","./node_modules/yoga-wasm-web/dist/index.d.ts","./node_modules/satori/dist/index.d.ts","./node_modules/@vercel/og/dist/emoji/index.d.ts","./node_modules/@vercel/og/dist/types.d.ts","./node_modules/@vercel/og/dist/index.node.d.ts","./pages/api/og.tsx","./node_modules/@types/acorn/index.d.ts","./node_modules/@types/ms/index.d.ts","./node_modules/@types/debug/index.d.ts","./node_modules/@types/gtag.js/index.d.ts","./node_modules/@types/js-yaml/index.d.ts","./node_modules/@types/json5/index.d.ts","./node_modules/@types/lodash/common/common.d.ts","./node_modules/@types/lodash/common/array.d.ts","./node_modules/@types/lodash/common/collection.d.ts","./node_modules/@types/lodash/common/date.d.ts","./node_modules/@types/lodash/common/function.d.ts","./node_modules/@types/lodash/common/lang.d.ts","./node_modules/@types/lodash/common/math.d.ts","./node_modules/@types/lodash/common/number.d.ts","./node_modules/@types/lodash/common/object.d.ts","./node_modules/@types/lodash/common/seq.d.ts","./node_modules/@types/lodash/common/string.d.ts","./node_modules/@types/lodash/common/util.d.ts","./node_modules/@types/lodash/index.d.ts","./node_modules/@types/lodash.isequal/index.d.ts","./node_modules/@types/mdx/index.d.ts","./node_modules/@types/parse5/lib/tree-adapters/default.d.ts","./node_modules/@types/parse5/index.d.ts","./node_modules/@types/prop-types/index.d.ts","./node_modules/@types/scheduler/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"bc496ef4377553e461efcf7cc5a5a57cf59f9962aea06b5e722d54a36bf66ea1","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"65be38e881453e16f128a12a8d36f8b012aa279381bf3d4dc4332a4905ceec83","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"e1913f656c156a9e4245aa111fbb436d357d9e1fe0379b9a802da7fe3f03d736","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"0990a7576222f248f0a3b888adcb7389f957928ce2afb1cd5128169086ff4d29",{"version":"3b75495c77f85fef76a898491b2eff2e4eb80a37d798a8ad8b39a578c2303859","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","8c6aac56e9dddb1f02d8e75478b79da0d25a1d0e38e75d5b8947534f61f3785e","5f8f00356f6a82e21493b2d57b2178f11b00cf8960df00bd37bdcae24c9333ca",{"version":"7577b9629b5506a5455712bcdaf427a46aecee09adf72fb8bfec5b6f10a2a724","affectsGlobalScope":true},"cc69795d9954ee4ad57545b10c7bf1a7260d990231b1685c147ea71a6faa265c","8bc6c94ff4f2af1f4023b7bb2379b08d3d7dd80c698c9f0b07431ea16101f05f","1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","57194e1f007f3f2cbef26fa299d4c6b21f4623a2eddc63dfeef79e38e187a36e","0f6666b58e9276ac3a38fdc80993d19208442d6027ab885580d93aec76b4ef00","05fd364b8ef02fb1e174fbac8b825bdb1e5a36a016997c8e421f5fab0a6da0a0","f5331cb9cc00970e4831e7f0de9688e04986bcde808cac10caa3e7005e203907",{"version":"d20bbe9029b614c171212c50c842fa7ddfc61a6bbc697710ac70e4f7f0c77d15","affectsGlobalScope":true},"a9d67f9ae6bb38f732c51d1081af6a0ac6cae5e122472cacc2d54db178013699","1296a364908ba9c646372edc18ee0e140d9a388956b0e9510eec906b19fa5b36","1c863a53fb796e962c4b3e54bc7b77fd04a518444263d307290ff04f619c275e","ff98afc32b01e580077faf85b60232b65c40df0c3ecaa765fabc347a639b4225",{"version":"30133f9ceaa46c9a20092c382fed7b8d09393cf1934392149ea8202991edb3ea","affectsGlobalScope":true},"30c05e45ec7e1247ba9b87ad2acfae4fda401737f0e8a59f78beda8a4e22b110","2da83cc57a94f7aee832f2a71e1a294d857492761c1f5db717ea42c1a22467bc","aa5cc73a5f548f5bc1b4279a730c03294dfa6e98bed228d4ed6322a4183b26ad","b3f1ac9fe3d18d6cd04ab1e67a5da8c33ceb47f26b47e67896a5b2f8293c8a32",{"version":"ca88e8b07c8186ef3180bf9b6b4456311ae41bf3fe5652c27a2a3feba04136b0","affectsGlobalScope":true},{"version":"592d937b7df1b74af7fa81656503fc268fee50f0e882178e851b667def34414b","affectsGlobalScope":true},"fdfdf2eab2bded61ee321ec88b8e083fe8d9fedad25a16ae040740869bc64e48","e8067fc8b0247f8b5ad781bd22f5dd19f6a39961ba60fa6fc13cfe9e624ca92f","842ef57ce3043fba0b0fb7eece785140af9d2381e4bed4f2744d3060352f2fd5","9095b6f13d9e48704b919d9b4162c48b04236a4ce664dc07549a435d8f4e612e","111b4c048fe89d25bb4d2a0646623ff4c456a313ed5bfb647b2262dda69a4ff8","f70f62f5f87ff8900090069554f79d9757f8e385322d0e26268463e27c098204","0932ed41e23d22fa5359f74805c687314e4b707b3428e52419d0fbefc0d66661","af07f4baaca7e5cf70cb8887e7d4f23d6bb0c0dd6ca1329c3d959ea749b7a14d","c80402af7b0420f57372ac99885f1ab058121db72418e43d25f440abda7bbe23","71aba6ce66e76ccfd3ba92b8b5c6658bad293f1313f012821c4bff1dd64ca278","17d944cab17bc9e32975250e8abe8073702f9493582d847805e446641bd7798f",{"version":"c6bfc70bbdee282436ee11e887cceaa5988ac4eec60d5eb9b3711748c811831a","affectsGlobalScope":true},"f9ca5159f56c1fe99cdfc5f942585de20695a2a343db8543383b239c050f6aa4","84634ac706042ac8ee3a1e141bcdee03621725ab55455dba878a5503c6c7e037","d796c62c3c91c22c331b7465be89d009459eb1eb689304c476275f48676eaf9e","51cbf03ad34c3e84d1998bd57d1fd8da333d66dd65904625d22dc01b751d99c7","c31bbdc27ef936061eaa9d423c5da7c5b439a4ff6b5f1b18f89b30cf119d5a56","2a4ae2a8f834858602089792c9e8bab00075f5c4b1708bd49c298a3e6c95a30c","71e29ae391229f876d8628987640c3c51c89a1c2fd980d1a72d69aeee4239f80","51c74d73649a4d788ed97b38bd55ebac57d85b35cbf4a0357e3382324e10bbe9","c8641524781fa803006a144fd3024d5273ab0c531d8a13bbeaa8c81d8241529f","73e218d8914afc428a24b7d1de42a2cb37f0be7ac1f5c32c4a66379572700b52",{"version":"56ff5262d76c01b3637ca82f9749d3ec0d70cf57d87964bf3e9ba4204241849e","affectsGlobalScope":true},"9e3a18040e5a95f61556e09c932393b49c3b21ce42abe0f4ed74b97173f320db","344922fac39b5732179b606e16781b354c160f0e9bd7f5921a0fdc9fe4ede1fb","c1449f51f9496bb23f33ee48ff590b815393ef560a9e80493614869fe50915da","87a49241df2b37e59f86619091dec2beb9ad8126d7649f0b0edb8fc99eca2499","07efd1f649e91967fada88d53ad64b61c1b2853d212f3eaffc946e7e13d03d67","6d79a0938f4b89c1c1fee2c3426754929173c8888fdfaab6b6d645269945f7bf",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5","8caa5c86be1b793cd5f599e27ecb34252c41e011980f7d61ae4989a149ff6ccc","db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","cfe4ef4710c3786b6e23dae7c086c70b4f4835a2e4d77b75d39f9046106e83d3","cbea99888785d49bb630dcbb1613c73727f2b5a2cf02e1abcaab7bcf8d6bf3c5","a3f1220f5331589384d77ed650001719baac21fcbed91e36b9abc5485b06335a","a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","2dad084c67e649f0f354739ec7df7c7df0779a28a4f55c97c6b6883ae850d1ce","fa5bbc7ab4130dd8cdc55ea294ec39f76f2bc507a0f75f4f873e38631a836ca7","df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","cf86de1054b843e484a3c9300d62fbc8c97e77f168bbffb131d560ca0474d4a8","37f7b8e560025858aae5195ca74a3e95ecd55591e2babc0acd57bc1dab4ea8ea","070238cb0786b4de6d35a2073ca30b0c9c1c2876f0cbe21a5ff3fdc6a439f6a4","0c03316480fa99646aa8b2d661787f93f57bb30f27ba0d90f4fe72b23ec73d4d","26cfe6b47626b7aae0b8f728b34793ff49a0a64e346a7194d2bb3760c54fb3bf","b7b3258e8d47333721f9d4c287361d773f8fa88e52d1148812485d9fc06d2577","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","49e567e0aa388ab416eeb7a7de9bce5045a7b628bad18d1f6fa9d3eacee7bc3f","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","8a8bf772f83e9546b61720cf3b9add9aa4c2058479ad0d8db0d7c9fd948c4eaf","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","6dc943e70c31f08ffc00d3417bc4ca4562c9f0f14095a93d44f0f8cf4972e71c","47e5af2a841356a961f815e7c55d72554db0c11b4cba4d0caab91f8717846a94","4c91cc1ab59b55d880877ccf1999ded0bb2ebc8e3a597c622962d65bf0e76be8","79059bbb6fa2835baf665068fe863b7b10e86617b0fb3e28a709337bf8786aa9","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","309816cd6e597f4d4b080bc5e36215c6b78196f744d578adf61589bee5fd7eea","7567e37d6087e622dd891bf13b74c7b16d1c077770ab49a7082337adcb747688","edaa0bbf2891b17f904a67aef7f9d53371c993fe3ff6dec708c2aff6083b01af","89aece12f9cd6d736ae7c350800f257a2363f6322ae8f998da73153fb405d8af","d23518a5f155f1a3e07214baf0295687507122ae2e6e9bd5e772551ebd4b3157","a10a30ba2af182e5aa8853f8ce8be340ae39b2ceb838870cbaec823e370130b6","3ed9d1af009869ce794e56dca77ac5241594f94c84b22075568e61e605310651","55a619cffb166c29466eb9e895101cb85e9ed2bded2e39e18b2091be85308f92","e8da637cbd6ed1cf6c36e9424f6bcee4515ca2c677534d4006cbd9a05f930f0c","ca1b882a105a1972f82cc58e3be491e7d750a1eb074ffd13b198269f57ed9e1b","c9d71f340f1a4576cd2a572f73a54dc7212161fa172dfe3dea64ac627c8fcb50","3867ca0e9757cc41e04248574f4f07b8f9e3c0c2a796a5eb091c65bfd2fc8bdb","6c66f6f7d9ff019a644ff50dd013e6bf59be4bf389092948437efa6b77dc8f9a","4e10622f89fea7b05dd9b52fb65e1e2b5cbd96d4cca3d9e1a60bb7f8a9cb86a1","ef2d1bd01d144d426b72db3744e7a6b6bb518a639d5c9c8d86438fb75a3b1934","b9750fe7235da7d8bf75cb171bf067b7350380c74271d3f80f49aea7466b55b5","ac60bbee0d4235643cc52b57768b22de8c257c12bd8c2039860540cab1fa1d82","17937316a2f7f362dd6375251a9ce9e4960cfdc0aa7ba6cbd00656f7ab92334b","7bf0ce75f57298faf35186d1f697f4f3ecec9e2c0ff958b57088cfdd1e8d050a","973b59a17aaa817eb205baf6c132b83475a5c0a44e8294a472af7793b1817e89","ada39cbb2748ab2873b7835c90c8d4620723aedf323550e8489f08220e477c7f","51ec8e855fa8d0a56af48b83542eaef6409b90dc57b8df869941da53e7f01416","6e5f5cee603d67ee1ba6120815497909b73399842254fc1e77a0d5cdc51d8c9c","99ace27cc2c78ef0fe3f92f11164eca7494b9f98a49ee0a19ede0a4c82a6a800","f891055df9a420e0cf6c49cd3c28106030b2577b6588479736c8a33b2c8150b4","ef61792acbfa8c27c9bd113f02731e66229f7d3a169e3c1993b508134f1a58e0","9e462c65e3eca686e8a7576cea0b6debad99291503daf5027229e235c4f7aa88","f6404e7837b96da3ea4d38c4f1a3812c96c9dcdf264e93d5bdb199f983a3ef4b","c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","1dc574e42493e8bf9bb37be44d9e38c5bd7bbc04f884e5e58b4d69636cb192b3",{"version":"f14c2bb33b3272bbdfeb0371eb1e337c9677cb726274cf3c4c6ea19b9447a666","affectsGlobalScope":true},{"version":"db01d18853469bcb5601b9fc9826931cc84cc1a1944b33cad76fd6f1e3d8c544","affectsGlobalScope":true},"6b8e8c0331a0c2e9fb53b8b0d346e44a8db8c788dae727a2c52f4cf3bd857f0d",{"version":"903e299a28282fa7b714586e28409ed73c3b63f5365519776bf78e8cf173db36","affectsGlobalScope":true},"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b",{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","affectsGlobalScope":true},"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","dd3900b24a6a8745efeb7ad27629c0f8a626470ac229c1d73f1fe29d67e44dca","ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","ec29be0737d39268696edcec4f5e97ce26f449fa9b7afc2f0f99a86def34a418","8945919709e0c6069c32ca26a675a0de90fd2ad70d5bc3ba281c628729a0c39d","ec6cba1c02c675e4dd173251b156792e8d3b0c816af6d6ad93f1a55d674591aa","763ee3998716d599321e34b7f7e93a8e57bef751206325226ebf088bf75ea460","e15d3c84d5077bb4a3adee4c791022967b764dc41cb8fa3cfa44d4379b2c95f5","3556cfbab7b43da96d15a442ddbb970e1f2fc97876d055b6555d86d7ac57dae5","437751e0352c6e924ddf30e90849f1d9eb00ca78c94d58d6a37202ec84eb8393","48e8af7fdb2677a44522fd185d8c87deff4d36ee701ea003c6c780b1407a1397","606e6f841ba9667de5d83ca458449f0ed8c511ba635f753eaa731e532dea98c7","58a5a5ae92f1141f7ba97f9f9e7737c22760b3dbc38149ac146b791e9a0e7b3f","a35a8ba85ce088606fbcc9bd226a28cadf99d59f8035c7f518f39bb8cf4d356a","2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","13283350547389802aa35d9f2188effaeac805499169a06ef5cd77ce2a0bd63f","680793958f6a70a44c8d9ae7d46b7a385361c69ac29dcab3ed761edce1c14ab8","6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","9a0aa45956ab19ec882cf8d7329c96062855540e2caef2c3a67d65764e775b98","39da0a8478aede3a55308089e231c5966b2196e7201494280b1e19f8ec8e24d4","90be1a7f573bad71331ff10deeadce25b09034d3d27011c2155bcb9cb9800b7f","db977e281ced06393a840651bdacc300955404b258e65e1dd51913720770049b","438c7513b1df91dcef49b13cd7a1c4720f91a36e88c1df731661608b7c055f10","ad444a874f011d3a797f1a41579dbfcc6b246623f49c20009f60e211dbd5315e","1124613ba0669e7ea5fb785ede1c3f254ed1968335468b048b8fc35c172393de","5fa139523e35fd907f3dd6c2e38ef2066687b27ed88e2680783e05662355ac04","9c250db4bab4f78fad08be7f4e43e962cc143e0f78763831653549ceb477344a","9385cdc09850950bc9b59cca445a3ceb6fcca32b54e7b626e746912e489e535e","db7c948e2e69559324be7628cb63296ec8986d60f26173f9e324aeb8a2fe23d8","fb4b3e0399fd1f20cbe44093dccf0caabfbbbc8b4ff74cf503ba6071d6015c1a","63a8e96f65a22604eae82737e409d1536e69a467bb738bec505f4f97cce9d878","3fd78152a7031315478f159c6a5872c712ece6f01212c78ea82aef21cb0726e2","cd92c27a2ff6319a306b9b25531d8b0c201902fdeb515097615d853a8d8dd491","9693affd94a0d128dba810427dddff5bd4f326998176f52cc1211db7780529fc","703733dde084b7e856f5940f9c3c12007ca62858accb9482c2b65e030877702d","413cb597cc5933562ec064bfb1c3a9164ef5d2f09e5f6b7bd19f483d5352449e","fd933f824347f9edd919618a76cdb6a0c0085c538115d9a287fa0c7f59957ab3","6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","6a1aa3e55bdc50503956c5cd09ae4cd72e3072692d742816f65c66ca14f4dfdd","ab75cfd9c4f93ffd601f7ca1753d6a9d953bbedfbd7a5b3f0436ac8a1de60dfa","6cc79183c88040697e1552ba81c5245b0c701b965623774587c4b9d1e7497278","b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","1364f64d2fb03bbb514edc42224abd576c064f89be6a990136774ecdd881a1da","c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","950fb67a59be4c2dbe69a5786292e60a5cb0e8612e0e223537784c731af55db1","e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","07ca44e8d8288e69afdec7a31fa408ce6ab90d4f3d620006701d5544646da6aa","33f7c948459c30e43067f3c5e05b1d26f04243c32e281daecad0dc8403deb726","b33ac7d8d7d1bfc8cc06c75d1ee186d21577ab2026f482e29babe32b10b26512","c53bad2ea57445270eb21c1f3f385469548ecf7e6593dc8883c9be905dc36d75","6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","03d4a10c21ac451b682246f3261b769247baf774c4878551c02256ae98299b1c","2d9b710fee8c3d7eabee626af8fd6ec2cf6f71e6b7429b307b8f67d70b1707c5","652a4bbefba6aa309bfc3063f59ed1a2e739c1d802273b0e6e0aa7082659f3b3","7f06827f1994d44ffb3249cf9d57b91766450f3c261b4a447b4a4a78ced33dff","37d9be34a7eaf4592f1351f0e2b0ab8297f385255919836eb0aec6798a1486f2","becdbcb82b172495cfff224927b059dc1722dc87fb40f5cd84a164a7d4a71345","f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","9c762745981d4bd844e31289947054003ffc6adc1ff4251a875785eb756efcfb","94404c4a878fe291e7578a2a80264c6f18e9f1933fbb57e48f0eb368672e389c","5c1b7f03aa88be854bc15810bfd5bd5a1943c5a7620e1c53eddd2a013996343e","f416c9c3eee9d47ff49132c34f96b9180e50485d435d5748f0e8b72521d28d2e","9558d365d0e72b6d9bd8c1742fe1185f983965c6d2eff88a117a59b9f51d3c5f","792053eaa48721835cc1b55e46d27f049773480c4382a08fc59a9fd4309f2c3f","01aa917531e116485beca44a14970834687b857757159769c16b228eb1e49c5f","a2e1f7010ae5f746b937621840cb87dee9eeb69188d32880bd9752029084212c","dd30eb34b5c4597a568de0efb8b34e328c224648c258759ac541beb16256ffb6","6129bd7098131a0e346352901bc8d461a76d0568686bb0e1f8499df91fde8a1f","d84584539dd55c80f6311e4d70ee861adc71a1533d909f79d5c8650fbf1359a2","82200d39d66c91f502f74c85db8c7a8d56cfc361c20d7da6d7b68a4eeaaefbf4","842f86fa1ffaa9f247ef2c419af3f87133b861e7f05260c9dfbdd58235d6b89c","a1c8542ed1189091dd39e732e4390882a9bcd15c0ca093f6e9483eba4e37573f","a805c88b28da817123a9e4c45ceb642ef0154c8ea41ea3dde0e64a70dde7ac5f","3a17f09634c50cce884721f54fd9e7b98e03ac505889c560876291fcf8a09e90","32531dfbb0cdc4525296648f53b2b5c39b64282791e2a8c765712e49e6461046","0ce1b2237c1c3df49748d61568160d780d7b26693bd9feb3acb0744a152cd86d","e489985388e2c71d3542612685b4a7db326922b57ac880f299da7026a4e8a117","9b91b07f679cbfa02dd63866f2767ce58188b446ee5aa78ec7b238ce5ab4c56a",{"version":"663eddcbad503d8e40a4fa09941e5fad254f3a8427f056a9e7d8048bd4cad956","affectsGlobalScope":true},"fd1b9d883b9446f1e1da1e1033a6a98995c25fbf3c10818a78960e2f2917d10c","19252079538942a69be1645e153f7dbbc1ef56b4f983c633bf31fe26aeac32cd","4dd4f6e28afc1ee30ce76ffc659d19e14dff29cb19b7747610ada3535b7409af","1640728521f6ab040fc4a85edd2557193839d0cd0e41c02004fc8d415363d4e2","65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","ec9fd890d681789cb0aa9efbc50b1e0afe76fbf3c49c3ac50ff80e90e29c6bcb","5fbd292aa08208ae99bf06d5da63321fdc768ee43a7a104980963100a3841752","9eac5a6beea91cfb119688bf44a5688b129b804ede186e5e2413572a534c21bb","6c292de17d4e8763406421cb91f545d1634c81486d8e14fceae65955c119584e","b7fff2d004c5879cae335db8f954eb1d61242d9f2d28515e67902032723caeab","5f3dc10ae646f375776b4e028d2bed039a93eebbba105694d8b910feebbe8b9c","7f6c48cacd08c1b1e29737b8221b7661e6b855767f8778f9a181fa2f74c09d21","4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","15959543f93f27e8e2b1a012fe28e14b682034757e2d7a6c1f02f87107fc731e","a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","4e828bf688597c32905215785730cbdb603b54e284d472a23fc0195c6d4aeee8","a3f41ed1b4f2fc3049394b945a68ae4fdefd49fa1739c32f149d32c0545d67f5","4da80db9ed5a1a20fd5bfce863dd178b8928bcaf4a3d75e8657bcae32e572ede","47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","7c8ee03d9ac384b0669c5438e5f3bf6216e8f71afe9a78a5ed4639a62961cb62","898b714aad9cfd0e546d1ad2c031571de7622bd0f9606a499bee193cf5e7cf0c","d707fb7ca32930495019a4c85500385f6850c785ee0987a1b6bcad6ade95235e","fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","5d26aae738fa3efc87c24f6e5ec07c54694e6bcf431cc38d3da7576d6bb35bd6","cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","e0aa1079d58134e55ad2f73508ad1be565a975f2247245d76c64c1ca9e5e5b26","cd0c5af42811a4a56a0f77856cfa6c170278e9522888db715b11f176df3ff1f2","68f81dad9e8d7b7aa15f35607a70c8b68798cf579ac44bd85325b8e2f1fb3600","1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","94fd3ce628bd94a2caf431e8d85901dbe3a64ab52c0bd1dbe498f63ca18789f7","5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","c0eeaaa67c85c3bb6c52b629ebbfd3b2292dc67e8c0ffda2fc6cd2f78dc471e6","4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","2470a2412a59c6177cd4408dd7edb099ca7ace68c0187f54187dfee56dc9c5aa","c2008605e78208cfa9cd70bd29856b72dda7ad89df5dc895920f8e10bcb9cd0a","ec61ebac4d71c4698318673efbb5c481a6c4d374da8d285f6557541a5bd318d0","33ee52978ab913f5ebbc5ccd922ed9a11e76d5c6cee96ac39ce1336aad27e7c5","40d8b22be2580a18ad37c175080af0724ecbdf364e4cb433d7110f5b71d5f771",{"version":"16fd66ae997b2f01c972531239da90fbf8ab4022bb145b9587ef746f6cecde5a","affectsGlobalScope":true},{"version":"fc8fbee8f73bf5ffd6ba08ba1c554d6f714c49cae5b5e984afd545ab1b7abe06","affectsGlobalScope":true},"3586f5ea3cc27083a17bd5c9059ede9421d587286d5a47f4341a4c2d00e4fa91","521fc35a732f1a19f5d52024c2c22e257aa63258554968f7806a823be2f82b03","b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","6e30376ef7c346187eca38622479abaf3483b78175ce55528eafb648202493d2","5794108d70c4cca0f46ffd2ac24b14dcd610fccde1e057b7eccb7f2bd7555fd0",{"version":"c54c22a3158863080ad1eba39510c2333aa991fdfc430c4b4071f9a08ca932a1","affectsGlobalScope":true},"8b265150e114e69f61a3b60892f7f03e4ca12b0fcd73cb4bf8993a76eb0ce93d","c6ed900acde682e344a32d307989e1cd76c5f9c734a11b4e68ed05b1e823012a","514b2e984ebd8ad953a002680b2af4ca741c34636ba37fe2b1078025781c2686","41ff50a89a0cf96c888bc5213d2f36deeef60f210eb89dd402cc1ae3f554ed0a","084909f3e93773cc95623cde49446b78d6632cdd3ef01ba2cd386a61a1b77fcb","1d5331eb07ede1bb58985ba312e026ebbcd3ecbd0075c7643cc669b5b9d49960","3fc2741a7b5fadd3d811b49efeabd1a931feb1427cc233811a5c02ad76399b43","c9a2f87e4b4808dd0fb4fa376b2c27b28320016e536fde61d2af6d77eb1105a0","7c1008c9f2d92ac691ed3bd251b2ca1e1a6bc57a7fbeb1d2c60659d501b28934","4a65bd0d86eb8ca3d230793eb504b97da8d00c16deaa75ebe45beae60756af0a","2bb6280e6e0be3c860c9b3052d1774ec949ac7182c81523466bebe7905cfbf3b","0e4609fa4248dafecf5cf00d0cf0c62d72d3c8e4d7b087887f0936b66c46e7dd","2938a2ce27fc70c29811385b43e9e0663aafceac2eb7e94cb15b5dff3f2b5afc","919de25238cdeaa8b1b20c958ff6622c039c65a880f6de0c7a889dee0fc047b5","ec6d1cacd0d102a0c952a8fd021eb5e5598b240c13f704d725898679626cc55e","37ef766956aec873f315d2d9e514262a9b5f2292bee2562ab6a6a7fc3f415139","d89b7c213679d4b208beeb2be102c007dc12d7bf4b4a2056b8f0c26321b3443b","f2bb6e051f9a8ea0355c4fa8c51dd03a944e73f00f8afd0d3e0112469881236c","9c60fef95ae97fff24a363ab00235152592413b70a8acdef49c831028f97a34b","de27fdd909c898113177968a4d1a305cecf4f8a58af2a1fb806f3bad1c7cd525","62a376c3f3d0c5f916075a10ffe6de4713da96063d9b425d2ca98288972571a9","8f3eb7886d53bdbd13c204c8dc5977b6a24e24b603a4f9e1192d922e91eb8458","2433e42ff5de8719ddbb6f4a0d0721a4cf39a50ddc22c121bb1008610766667f","73c3f00a86841624f1e720b6c09edd6f1d90ef9c1800e784e1d348b84fd8634e","c014250a41f812c81b7e11f830299db0fc2b66ab159ef4734c135ed9d1561141","66563bddfcd768347fc62e43778c98abbe9e298629d92380c6e09764fed688f4","242d568795faaf61a344fdc07225f11ae2b146893e03f26023b0e72e39d99d4b","f3e8ed9b095d1e3feb45a7b254c254f902d6e9b9f4ce3f306037c9f38604182c","a1a5d3ae895dd047be6575ba6549eedd7932e3b489978769fff171ad724ed112","bfc29f801cc29dd173db4e8a8f150973d054156112582e0659c8ddb60859a23a","9c51de7bd752b761b249c7174ab512432e295046c2a86f6f2d44f6b3ebac012c","891013c3938efbab96ae6bd8677d6101e368e6e21d2d6db277ff24b37c8f21f4","a6b6cdcfec6ce34bfea6a9b6f8d57f9ac02da10947ca58c2d2619d47fc8766cf","a45a9b5649695a14a499dfa2ea8f46cc3b9c5c4ed5012c586f746a3e0ca8073a","b8cc8f6816247cc1301297678d4dfd15dbd509c264c4e6dc72aac8ec8479b320","e6894b20ada1566038032d936c6cdc4fbf3fa57683054ae2da9f89dbf7dc3bfe","8f4279729688585150282e57916d881ac4bc9bd180f672a6c2a2e75be622063a","38d13702e7fa327efba11f833127624455e966a6ab2ec9af8d8cd96adb4fb263","8f9dca42f19b88ad9b46ec60049828c2704784dc9c1c899be377a2c1c7443ee5","113ace9a000a5774eb050c95152dcc5c6e79aaf4c140b343a33ffa4abc234647","b301797bbd9b431b1ff374d8b37e7d71b133144a9b17d6f78a7bd3a247585316","bede942f32a759417832a346f62101e4035f9e119017221998db8ad62cca4834","c8a30ff744812695b968363fe10fad019a938dadafed496fee63e73692a0778f","72c04ffca3ed52d551b444f9099d33bd728a3ebb1e41070725a346298df63e8d","4ccfeb6cda212ca5d0ecc6bad3a709378c29c7c336e6360581a539778017ea7f","1bace83510408cdcf92bb1cb1f3bf986299a32c408f93546196a8780146fb37a","de66e16f6e90721ae336ee9dbf5ffbf7cb0878a421d89587c6c8dc16d409ff0e","812f70b363a223c3b21b9cb48ea9be61555f84cbf20c45eb06dac9f49ef42feb","305927ed183955b7d770b63f6ce819fb862710211bd41b69015f9f809e472fb2","a448ff0c71379218eb1e78bf6a415dfbbbfc2654acc84a13b09122721929bf4a","ceeb9b0ad4831b0e823102950eb31c4a9f281fca22e20db3f99db6d41d99027a","9c0be6126afff644396fb59da557ca8e82bd4870b8a4e427855df40617547475","0a74906763be9315a1612bd0eccdf132055448e718b4da0b78be1444d2931dc0","68cc2521d00e8cc4ed0cd77cac25e7e27add7899b0758adae3ce93ce82d820d0","c49094c058cbb537e6aa19c08505a4c2c8d44c438526cc40a5a6646250ca2ddc","2fe3f34feeb40a46b634973bd53405354b621a79ad8711f28839065d70ff05ad","060b52b92bcb3206da6aeb2df7577b71c5ac9cc12e2e844ebe7ee36c06367e7d","6d4f859c29cbd88c32a08e02ceef3b3c15a5f14356fcbdf713ab43f5cbe9f3ef","61b89df31272973a98698257444e4e0ceff691afc1f94f8ba4652f5130422f1b","df05a1f02c022cf326c7d2d3090fc0b86ef4dfdc62208fe10c0189e756e3b81f","6db27333e154a1b335df2f47e5fad391adeb869579d627c298a1472862814232","f2172b0a310a7b627452bed851eae3c97f811a5a0e435d3b29d2b78851c0dae9","210d7799b759f9ef9761a3da61e367ca7a085e67361d649b31100c23f0e5b914","70f5c4d3c41691e852d001fc4113d9151d4fec8d465b83a729c2678bce8e78ec","05c136d5688c7edd2176a785208932192622ec9d5f68579cb3e02d9718a71700","330256d9f3febd57e8c521e92c4896be0ae18a26261ddcb380737a6ec204ab81","0372ad90f123f1c2ada2bd9677b75be80a5d50c659732c8160901bcf801910b6","9ce91263c9586eac78be14130ea944af488323c8f2ae31bb9fb5606a03c93781","e2d362ae80f73709a6b8dc1d9d65f7f321beb1ef819be924a62f3984cce8a760","b20748f13a2d6b118fd8055e4aeb03a5f0e04e21ed9401ee9ba236aef5e310fd","329f76137e59e4d9cbf66744b9aa98905f725a9af0aa9491bf9330ad296d9c09","fdaed16aac4feb093044214ef8ec603a75fc55f3711941a412d286cada44e9a5","dcf58e617a956c7af0a79b647833bbe0bd49bc7042add8b35dddcd7c6edb26a7","e2b096d4a0c9294f7a7a4b77430e22d3eb9eff17f68e8f271e932035a5600bcb","ddbbeea27791ea67dceb7a9764acf33614f573472860ee07c3321024134c5a51","9df48aad325b06cb921cd319ff0695537b66a605f37da036c64926cb6f72a467","63757bf76f488e327b1480ed1f53f5544e2fe8e519a69dbe67e33198024d8cf0","7123e6ebd7e37b8099d6cb4e8c4d8cc2ec705d0a12464bde2ed0eeb73bac03e5","ae67eb7e02858bbe6e324b49bff10d9b14467a5c285cf7ea4127612a2a0c9023","b2998a01990374dee86216d324598079a3336eebe836b8cba30c15315a8d2e8f","6ca458c720fbf4723c289d1d5d2757763bd6d619fa44a488ceb299f5a86f53f6","c0ef3a2095db1fe351951e70af98bd83ebf85188226babd7c1c20c023854b3dd","7001f9a69a5ca9c05afad9a45a2af1d4718e8a15571516f9c572340a544e830a","9243d62cff09c761f3b19b88de0d95a8a39fe8dc69dd4cb7e44d1fe0e36a4395","375387db607fc72d59f4e65e3cfd86cbfa636aecf33d9d4c6015fd7d95ca42af","3ae8dd5663704463b336ce8e43dab2a53fc7f085841602f90f07d3edf675ce65","565ee5c125bda0cf0bbab3fa71d46134fc8573605781c6b09ddbe5779d2276c7","8697faa527dd799c5bbe64723aa2593fdd47c609864aa4c49689997cd06cebac","1235f6acae8da14ce25d9f75df290c4e4f7d53d024b4e91c6121ff44ea13c801","8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","51997bdd3b56bd6931f3e1d5facd0aeda6745e2288f379085bc384090d676a6c","ab76aa5246e8a9a5962042528bc61180f445a9604ab40e6996674d866450260d","34ee177ae1ed59981d82ee459acf0407d6a679f47fe698c201b49a44e3011f87","b66e2fb26a26e1d9ca918f9609d5fcfd6f0638b7d1e92830d118e8e36919403c","67b6ca0657d39e79c80ac21e9514ff055bdaf4b966ce9beaaf3173511d3923b4","c3d956c1238738eebfe25538ba2a744c82c51ebb286aabf3c6d2de88e9edfba3","03c0c949e86c44a98165752c31d9edea61b853a237254806b5a452c16b6f709f","5c73afddde75f185c8dd4203c4eebe2b44cd3ef7a5764da06526490d0f4b4719","3f4fa97e44177240b6467434e8da68c707111cf0eb4bfad8486afe80de09658d","f236a75d322b605abba6ab48008891ebe903d575b7eb011e1acf168eb8cba6d2","ee6b4dc0bcf09356744f793699467f41f0ac85f5f9117f62e9515daa584296b6","3c5cbb0f630a19a4c977fd36479ad4eb4da97e5c70da643d0f57728f7dd5e204","44875d1f5092bd0551efbd0a230680c71a647862ba7f52b1f691af418c99cc7c","4e9b7fdb40273dbd41f1b49b0b42c4f9848f68312b50a87c46aee516342c502c","88dc595c54a9e2478a1fa6eef99786734a31f8fa84fab3a8c44a304dccad2cef","b86bb855f247f7105946393cca1b8199bd6d4c3d53fd7d0e81701bae7d2cf3e3","3cfee09b28e57a914deb231e794980f34f73551457a8fec018c4ee332e89ac26","910519cd38f4cc2601e06a6e06c9d141d1e33b2cef156c4d5f55b801abf848ef","3ea26af8de8e8d5e9daff3a2c7bf783d6dd58b3fea2adfd14d1b6b5a4f8ebad2","729d731c01903375efde3fbee81d8bdb2f189bd42f5af97de33c8dde4a948011","e266df426b9bb8c9f8be46a0aee6e221f767d55ed2064359b3dedaa7f7251632","f3502fbe6e4231042fa7d0b291b6268de2dea729c83ab873dcf843b0bdebdcfc","dde2a0a755228173bec690872c3e2b287af6ff7133072250cf1b58a5150d6783","a0f72264fb841bf157588a46005dc30511179b06f9e26e53fd097f54a1b7811a","1e852a81f8ab8017a2ec279e822641c9a6d856717696da38d7e01b78c7725775","39500b521d79e424f9b06f83fcc90a2feb76e748b92fe4ceed45613959240510","e54937f191d88bc1ad0c3f3527044fc47450788b5132c9d820d4661259b32056","7f1fe0c4bea070198cf55ef41f43105bde1c8b560fb2aeadc452552312cb5ea3","695932cb32b555db096ee4072a818b774aeec9cd0c6864d4af5180c0e58f83dd","5388767e740e2e43cb5cb67dfa4f0357a76a690d6ce3631c99ec0c687a63ab19","a7ae350bf3fa704a9372bab4aa6764ab643ca1a84feb3133acab8ac82015e2fb","c55a7bc77153f09c34fd71c0f002fd5895a05c846bb62d9723cc7c8b27f27979","1d4befe71a219e63005fb76049232efad67ccb7b69512da65499a6437ed7c2eb","f6b0d3cfad6acbe42c53a53ec86cd8e8c65881668a1fc627940376eca9beb1fa","2c4f607bbc2aa6bd72697dfcdea489e2480c6da3b00c5c71d65eb35ebc020b74","0d1f6685be6ae56ad6069806bcb9963432fcc4c022e514652f348e34b50a73bd","951ea5f4424d919bf78c95291e66d0c0f36b26d01b70db627e5f19dca3fe1778","c5ef2494b5373365acf2f05a8a6a3f04413b14584a399afe9ee346feef9d0c34","8f02d2818f3d06dd5e162f9ac034b997376f77134186825ea157ee991113c263","6ab03ab355ed5763f6a54c59e1b7ce97bd250eba734dd8522a5bc7aaba828378","a803b31b8a4ecf5f782da5c6254b1a327a9f55fc90c0d09e4a8770db53d70e30","bf617138a44374fbdaddc84d4aa7d41363dd8de96b39beff895b7e066d72ed3d","4e979330517c1527ed78e19bb70619e5b276b80a89103f8fed7f63b2f27d52cb","044aae1e62523280d3679eed49ffa288bb793d87b98ab4aaa37a7024838929f3","af809d65e484ecc9923ad2050484bc5bad35a92fb393e3c8e2d0b4d21314e855","c71310175221dafb3fcc8902520d067df8af248c5d77bbf7382d1ff57abba102","0f848a18562fc5bce043a6f59a7802987158412d6bd6f11a64850c78c3827c0e","b8d56058129d8adfeff905070f963564c10afcb028d53cd13caaa393588c09cb","2b0f16d1540ef0bcf85fc9f7bc61b2a3bbc1b0bf8f7ed6392bfb2025c670bace","753cf5ed3c9203ed5b88f852193b7537011b593517a705b45b6c28058773411c","ce681ee864a3f83e7386ac6e7a5b6bb6afe6d473f31b6f1d01c678829b17fbb2","6cf1e0a10c62d9689899e44739553a1e70bac9fc70dbc3df4bad670bf4051772","0364b5e7a68a14255602c3c35aee61c77124f10ec29f591f6b21ea0676327160","c9d7892703b4ac59131af706d5a4c94448ffa83a2a72ee228cb398695ddce100","95c9ce4e6671814a5bfe3db20ac5443b6898a4049944c1336732146d41fc2dbd","5d8f239955604a68ea80756c84a7fff62970afe8fcc60cab7b535b65d9b5fb1c","ae893722e67eaefba4ad2227550f3a7acbac37031b25a82eeec76c48df73ec8b","1d5ab1cdf8d0af719f907a2b325b2f2d0c97abf95c01adef954aa67b46033cf1","ebf6c9f07975e9be3f5b00c2206072f88386e245eba0e7eb63da6f5b7df64a1b","c08c05a207498377420f04aca581de8752846bb69cad23c144f7aa947f4e12b0","86de8796c8e3ad6afab4d25078db66133842c2dbcdb007d6b5ce8acae647e5ff","2b1f2291550846f7a4fddcab254033e13c6cba7d84acf36a7da34f10429dfa72","124532e49183aca79f0326a79550fcb6a204f756ecbaaba6bd396f9541733b5c","197aa2f9fb896fa05449c5ae02d018b1ee27b8cfbf7b54c0bf4649d800d2cbaa","aad561583558f325a261591e6e0aeab992a4f1a587de1bf169bb0846165d1db3","f6d559b0bb5de1754d240acaef514769712efb5ff72a0383221126bb8548347b","538724dffe395b60f329c8480b5bdc48cdfd4100ff3be2aa78607a9fa0f90ded","b08c6a66c8bd00d3290e61bb0c10b35f7a5f78a06dd9b665abc7e1cc7aff5d55","4ed1815e82cbf7e3b92523568c84383531056a8e4c1394ad1a7e5b787ef1db0d","8d412a6df216fd9978d77d99a6de6af0c0b912cf4c5ca44efa007de7ffb840a4","d146aafc4df1436645a0b32942321afbe5ed20a3fbe6d23fa20ed32f6a212fcb","6d2e29f8a771094ebfaee7060a13d9f56065eeb58e4b1dd31ae91b4b8b2bb606","8dafda7148a2c489132810ef3e4c3425d69108e2e9f0f2631fc797bd096951d1","9218c473fd6a81fb3cf9d0f09b9858f83e26f4f9d1d124e5048df374cb3fee9a","cb1495fee07c94a5bbd316aaf3a432e57175b4def923a56cdb6603001df5f635","5a0bb385526378f2f93af1fc53481daa60289eb83d95746094245567c6d234d2","167bd99b225703a31770b593180e670fccc8436bf2b07e3989c3a9a9107f1831","65b385fd91803cd1663d272765b770dd3a6302960ae5318c503b13e59f71a0d8","c425bac2ab85283c7c4bdafd3ce8ff92106d249b580904b2af4cbd0ef0abba6b","23da5e47370df62d21dac61cd353819de29a50cc921001ea8754f1535065d400","5b8572401035a391442dfd6b616a2b45fa00c562432039ffc2b826328a6d77c6","3371d4ff56c6556031dae8a98ab658a32ee57f23361958d4f173d8ccb1a9a4f1","d5ae3788b612d8a133c26efb1841b73ce96ebe7a605f10a65ce9fce5726eb59e","ab34e527e268c084a7d28ec41c4072d56cfd048fd4fb7a9b8deee20c0aa543aa","87741b1d6e03a39709506c94976653e6fe42542a8ce09f42bea3c39263e4dc75","3af5b8241ce3b63ddcbe08ec24133b0f562881f9267bcffb4dd4d447cdcfaaab","b527e5cf7795aacaba184ed7bee77d4fc82f627d11774a22ce9121214a692e84","a5fdb34e51d1004ff9aab4234ed774216318d49c98a2e7f2330dc596f2d5ef36","b02f5f84f7f2f8efb06010f18cc69b8a1148f36102d253ec79d03705e4411d7d","0c9818495506b8e25967d32bbcaf766aa8814e4f2be35bb4f8e868713066da70","f378eb4b086cf4f9fdc23b8adbbe16402d545f5bbd9023142e490c370f6f42ec","6ff21f1bafb979ed7e1b3880dd9d483a237c9eba903ffc6a5705943297daca8e","92f97bf24f5ebd35bb9cc3e46e6a9141db3be63435f1fa05854adeb3488a5e59","35094003326457a0a86560a76143809c4c107145315764538f15b66314ed9a87","e169dfdf43a9dec67c753e16f30b8b8fbd8a116bb9fe2ee0c9337e81dfc3febd","75455accc2d1a0a18a7918c4abe307b5b0561e3f0c00bf30f8933b55d4611f0b","d9e1df6bca6c3a1fa0a0eb22bf70df6b36f580ce9f120557de868601b08dd0f9","2916cafb9094c571abe26dd3d8ddd4e454baeb837bc83864a09db57495a6b843","737065310ab48acccad94981a1c2a9889a7cfd28603ef1e92b897b00ff5c31fa","29a1e0b57b048bbe1fc3b7acf93231900acbc6d35ab22a194462b4d4b39bb369","befa6f9ea5b4565810760c41971d788255ead58bd1565a356684faaae726e9b7","c14b3198f3733d9dd3c222bbe2a6b95200a345e6b5106e0f0a9048422f6936f3","b45c0e242839bc03b1f000c38962d768b2ba7d011d9c93dea4a0902d139e720c","ce6251952de1d726b733d2a40878ef6b59076e95acf0a911ce5e08e9516bc344","a336cd8d09cfd802eb5ab35531ad2174fda403c518dfa55dd80dbe59ea0c383c","be0ead4aa8d61222aa2b61c7f24d06f075d6cd75261e345f06cab6267b79a741","fe74a67aa16f4af9b9dbbd86385ee3e244b14df76f68e5614a3589e5f9bcab63","fdf386b33e215be909c94696f55934567caa53fca2ba4520f7095f966719153c","c2e7ca687591aa326eabd66e25c08849d063597f9ff67b479b98f02b59be926e","afa8ed9f7a96b1f81c75ef9254be81ea496224c5b356280c235ea815d5333f1e","4af0a75a45466e3a776fd861cd3cbc084044e62d7f98ac8d9954a69247c56f9f","31709d887b897c8c7f20a8958c002081160eb01ca1cdd16131c1ecbec57930ee","feb034de611dde713f04f7a105a2613e09fb91131f830e1b21075ad956cac6c2","8a5ee49e00c0762b9dbffc6040366bde1f9c602f96b276603a0d3c5ee8f83c47","b44d67b48e70dfc607da3d422646b8506c65826f80441c1574230cfb294598cf","dd5779bff9dfeb151d1342ffddc47f699bb71dd584a2771abc668850baa5ae2c","41932baac70bf7e87447eb0db774385f98cb5e3db6f9a559409d4ff7965f5bba","28fdd514ac5dc512e948cba5325a5d8f83b566f7ec353bbb08f02d9187216888","2cacad9d2f400e8c238225f535872244754d418d856504a5f8012ac659b74042","c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","6c788dba2e1d20130c5067722cfdcb8547b66d8b924d98d477fc7eb20d36a54b","1ea59cfe14e93ca90ed5e334b846ebd9430529587f1339b300cfebf612874b0d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","83b5f5f5bdbf7f37b8ffc003abf6afee35a318871c990ad4d69d822f38d77840","0342f7271c3c01921ca1360153d008372d028a96b8946306432f642b316ba2bf","f64d2799e8e386051b37eb7957adca5cb1f5f625143cf92bed3bff9524923af8","08992873ab5bb49a1652a7962e1718511eaef5b2b020650af23e0293e9ff36b8","78f82ba8fc1a8b828998264b91579b7589f9dbc57b739fecb13cbc72e455bbad","f3af26eda4b2679c4293f0d916c67e294e04b49131a08d425404b88f3da2c062","4c6606d1a3e1d355850cd09d4b375ae7ab462774f7c28c018e469e98ff4def34","aa0d6903041103a548f9bcd2c11cd701210609426ef98ba01ad59a17a0076c45","f89ee1761cff510ef93ca9ba263d9d9863d56ef9d86a5d7a8fc6dbe75c5ad0c0","0e458580ca1a787a3468cbbad98729c084652872acf622479d19b85058132958","5ce41fb2305667c534da624dbf36e8ba00e9ac7e15c5bf07b761902d3d1a01e5","7f3ebc353af0215b13ca04ad4ed65596ac0c1edf28a12350e9715d69d888c5b3","91b4ce96f6ad631a0a6920eb0ab928159ff01a439ae0e266ecdc9ea83126a195","e3448881d526bfca052d5f9224cc772f61d9fc84d0c52eb7154b13bd4db9d8b2","e348f128032c4807ad9359a1fff29fcbc5f551c81be807bfa86db5a45649b7ba","0fba40d7d3d779a84c39aed52884def98a8cd032242c7eb86bd6dc0989759c3a","ad4d2c881a46db2a93346d760aa4e5e9f7d79a87e4b443055f5416b10dbe748c","c2fc483dea0580d1266c1500f17e49a739ca6cfe408691da638ddc211dfffad0","7c31a2b77ae042fb1f057c21367e730f364849ae8fa1d72f5a9936cef963a8b2","650d4007870fee41b86182e7965c6fb80283388d0ba8882ce664cc311a2840b5","1371cc469a4a618042f5230e95e6476dd6dc33ad75a65cf407c079fe4fcc619e","c16c3b97930e8fbf05022024f049d51c998dd5eb6509047e1f841777968e85c1","b512c143a2d01012a851fdf2d739f29a313e398b88ac363526fb2adddbabcf95","535b2fc8c89091c20124fe144699bb4a96d5db4418a1594a9a0a6a863b2195ae","13409a75ad9472934934afaff70eeeb16e84a3667522d1e6794f15a0db648829","3068cf3437f485ccac6ddc86c475e61bc487452852510d95c83f6bad6dab9a66","21575cdeaca6a2c2a0beb8c2ecbc981d9deb95f879f82dc7d6e325fe8737b5ba","832c2f78ec29728aca9c84998182993b8b27fff904e7622e73194d6d34154a0c","faba53dda443d501f30e2d92ed33a8d11f88b420b0e2f03c5d7d62ebe9e7c389","3eb7d541136cd8b66020417086e4f481fb1ae0e2b916846d43cbf0b540371954","9ff4b9f562c6b70f750ca1c7a88d460442f55007843531f233ab827c102ac855","4f4cbbada4295ab9497999bec19bd2eea1ede9212eb5b4d0d6e529df533c5a4b","cf81fae6e5447acb74958bc8353b0d50b6700d4b3a220c9e483f42ca7a7041aa","92f6f02b25b107a282f27fde90a78cbd46e21f38c0d7fc1b67aea3fff35f083e","479eec32bca85c1ff313f799b894c6bb304fdab394b50296e6efe4304d9f00aa","27c37f4535447fb3191a4c1bd9a5fcab1922bec4e730f13bace2cfa25f8d7367","3e9b3266a6b9e5b3e9a293c27fd670871753ab46314ce3eca898d2bcf58eb604","e52d722c69692f64401aa2dacea731cf600086b1878ed59e476d68dae094d9aa","e91e51fff687b8298cc417e946cbf5a771c2d02a6b5b7fe154593926cf3d1a8e","039bd8d1e0d151570b66e75ee152877fb0e2f42eca43718632ac195e6884be34","89fb1e22c3c98cbb86dc3e5949012bdae217f2b5d768a2cc74e1c4b413c25ad2","8fa001c2643391219635104f05d74a6ec81c1901427112e3504ecc6d26f73ba3","79ef71406c8bf1bae97854b49b59c2ff9cee1845a798290ffec4424f3e5a6787","d2a0e2c9e1324f4943fa7b1c9aaa6cb979e7c43d4f8525cfb14795ced26516b4","e3b5dff2c0c3dc3e6d955a141245a934fcee0d226b36e10e2a26861bbab5879b","76873c84045f3f806e8b92b6118f607921c3a614261b30e2a3f1f85994279ed7","26ce83c160c83e290ead6542b9b113fc363ae8b176ecda927b409ce51657a312","06dc02ba36c4a7219bcb19598a6a94d4ee879a1acb37a8c9ba19e1cb81a31a85","45550bba7e72b42f6758193c445d9a15006d7799d9cc41ec85618f2760792bf3","5f863b5bc2ff97be00b7e95e388d8f18aa221cb9e0afcfbbae7da875e71b9eb6","dcf2edf9a4ae6467dd6b6423a7ae9b7213b2cb000ce2f993f0c677d09eedc489","5828d8f3dd09bab17d39301cfa06f29e3c0775b4788e67efcd337a8f5c5bff3e","28fb298f1a0f9f3a2e41d37b2ae6717a1e25286076fb89180f858cfde370eaf6","b6a4e5caf587fe70605b9ed2be29258e663403c99f562ec73e63a73e98e2992b","6b00e44c1dfa13424c0ee67e07ffa2429aaaa032698ca35376fb68e9e5afc69d","ae0d70b4f8a3a43cb0a5a89859aca3611f2789a3bca6a387f9deab912b7605b0","966b0f7789547bb149ad553f5a8c0d7b4406eceac50991aaad8a12643f3aec71","f5b39e5ce0d7d83011f32976dab5ec49abadbf6ae24c4bb76d73acadc9bfa4ff","66fdd28201c34cc7d67f80ec630dbcb8d989273a8db17774d19fa5503251296f","e9418150e37bc876e7eb22f33116a87fffd4a29f7fedc1e512e62d9c5ef7a37a","02747baa5f305417a5c6ec02996de9c5b0743ae7c6161d57c42f9862c304f930","eb33f1a1ca9d6c0590d2fd3c77cff1852ff1db4503566f82fc09f0816b5fce67","91692a3d26cabffd260c5c76e55a11a50b7e9088cd811800b8b391ce61db3b3b","44c6037de26219d85ad5d7d4aab7c923750e8b3be6eee55f4ae9e2cfd42880d9","e75aea34fc8ed19027ad9e082ebe562594a21d14d520289adc416f846a606ca6","5d47587dfc88a442c9d48961e2495429e0463c4698e224db810294467af88111","c9e1c177daeee1aa61be3946ad77e7f8a3127512da88f8b7d2a8aa577067d8cd","2bcb1acd536e696b5e4405ab92e847eb7b7eaa121c8e80c96394c130f141919f","d04f947114fa00a20ee3c3182bb2863c30869df93293cc673f200defadbd69d9","7d3bc9393e3c86761b6149510712d654bf7bcfdfa4e46139ccce1f13e472cfa2","785926dee839d0b3f5e479615d5653d77f6a9ef8aa4eea5bbdce2703c860b254","66d5c68894bb2975727cd550b53cd6f9d99f7cb77cb0cbecdd4af1c9332b01dd","96f9f9e8ed808d9cd6dfa9db058259c8243ea803546c47ebb8eb4d5ece5a02b8","671324b7429d0d01246c337e0b5f69f5bf3e140fd82e57f45ccc4b08e7332468","7836f256a8df7d0e6ad676b0da9d77ebc51a2d23740fe97b77f579dc53a01490","165cec353ba2f322f1246f2d2ef5e47a662eff23c38b235495dd8ae48e35fafa","f09912ab237f16fab73a12c1b82d76e64a16b95a5896098a1db7826df7b72be9","7f173eb9809782b3322466712d50b564c90b7b8d1648c197e3d11643946c06e3","9a0e1b46db13f5a66f6997088a2555aa8a47038821922412994f54b60292dee4","a82a9346982f55d4f8a724d458b4378f322f1329e54f160ced01e1ed52d0ff26","6b98bd8d87f15c2ec66a98f66bb2f3f676e2811873612100aca6c66d4ee0651e","5dc4b28d92018055827cdacc57c002cba55ad2dd55dc95098f7684e9fbd016ec","6552460efe3df85dc656654231b75161e5072fc8ae0d5d3fd72d184f1d1f9487","47d6b5c9eef90150db146110fceafe993d57c06c8ecf772e1aed80c408e64d4a","065fc307c0c446e6c34ade1964e4831446e97bf5a2205852a2f0a715e6245790","e68cefe327be0e10ee06cf6b7a8c0f11271640333d1582c2176741896aade369","14f9bfe168ad8322e5e2c3e616278a8c13142dce7cb413e4dfe8272e7efa3b09","fcbed278dcc536e0762684323d7fd4fb19b58aae6bc370a825d0872b4cfbd810","4745a6a46b0a6aece039617723b668cd7c6f34db136df3a9af365443ea935898","a1dc70e2051dd4c9a5d7e55ea99938d21e5ee625d6d4118a82de056b8b1f8416","68c24c2f8745ce53f89703a643dbbb9071137f47a06cd6b1a5af6fff3e88d5ff","a2b2b90d7621e1dbc2cf72193b8d84359bd23e62012139b942b61fef8b0f7dcc","8eff883181eb26351812d8c518276b1eb7f026485523262d618f2b870133bb6d","0e20ff227f3ab0069f9f1fa3afff55fc59dea65dba8f2b81f4994f34ab830c1d","3dbb82e6d1939fd00d094294131318197172ddcf73ba7f522566e53ef48cac1a","a5c6f522bb0ccf5c1b4e38e133b76873696ac28681467e0f4283379d2844f852","75292cd2d7ce67ee3d24d31516ad58dc8403b51d2c7b58e7d3a78435d6b78f52","17ca095fae2dbebe03cb35053a016351843c3d535e4c9a9b8f4bc1f72d7f126b","2ca4540aabce6800f2217b6e2a282eb0a3bfebfe53561e58c9b9693d16bf1429","0ca29fde337113b172465f521f068014dd251fb0c9f02ffdd30a0732f4431ab1","c0a55e1da70b67be002877b3847b0b50b79b5e21fd440aec385ab68240d6a5c6","c3c441d8456d1bc31fe0bb10e320bfea6817c72a970cd9e40b8e8fcda10cbd51","130597be9ee0b264de06d5dae8c771bcfb9e81c9eb4134eb1d8016951e69c870","f306facbcd46afbdfadad41794a42d1a09eab13c0810dee92a28b9886ed8758e","942223030670aa3aac2247a53cc9d4455ddc5fd544dae8a5fb3d32778ab28b51","5e5bd456dbd9e4d766c2f620d7c17c79af6166cbbd6a8792b40b1fb391d2afb3","2983b451c80bbabe54f042b9d6f34547d098e40e00b6865f9cb297cc2f058849","98874d4bc3e2af71a70696e4938d2c0b947bf3d8315e0ef23db184433c9934f3","6bbeb959bc6c6442d90ae14b19b903ae193c5481c9d83b4e743539d6a816675c","d769c515846066942e5a8b0218686fb095a1750f602dfdef4a417042d1a35d58","b9152750a001c327f318df69456e73417b7a5266036f523b222bfe1392b08b6c","c83df839216d7e3ef970934fcc331151b81abf2647cf5e6a3ad9642bad74d4f0","294bd17c185ad968753804a101ccc603844b59f30a795895313d200555e5debd","20e76a9367ae710ca103ff1f3cb951f2628c66c18ef4a7c48bc46eca7ff6b086","403f527dad17f9eded7043230a1a5a5ccfdf11fe928f9f3f5b1369f4ce882f60","be0337c6a6f8b56dffcbb4590c8c72cc0c7a8f6fa47f4fa62d57507518b9c817","abeaa9cbff1c48b5cbdf78b8ed5e33610febb7ccc16bc38c9e2a1a16fdac1971","aaa136ac0f40f4f0a6fc7d14a90dc900126ef9ffcc496d4518247be5d7d78360","bc7b0556d2f2f9f165b6da77ef8a75f138331efe892d422d5156a450f39d3f41","3874da82aeb3439bb276c5f3fe20be2a9894b49126377fcb66b3bd0802e1ecec","40b21c32d6093f70ddb6749d8d99327de738bfa8eaeb2a5057b8fc2740551de0","5f69fcb9616417e98623405db8f16c5f4172ef5d3715312f16cbfec301f12f3e","4132c088cd466d5895e66a689733121acacf10452d801417938beceb100c975a","6b09a6d9b795845c16a5bef92160442e61320ca55ceef9f852409ae27e1cf49a","c6debb6cef57d1d3020160759e3ff94df73ad12cfb63d2e95164f67510b130be","311f919487e8c40f67cba3784a9af8c2adfb79eb01bd8bc821cc07a565c0b148","2f0ad5ea2e7e530ff91ccc2414f67f843a68beb38fb21b020e0a1725df29c7c0","529cf338bc74beb95a0778f2f17178ad78409ef6523840f9ede2079de3ecdc2b","c70fc2a6908798b18009155b91dcf4ca48442f087ccde9756be6ab0b847c6a04","3f81a9cdd412c1048d9c25535b9df0b463997d6cd88df0a0a91d4f42efd7af72","6211b2ad05f47d231a3e18235225d7894002dba541500dd1021033e919e14e84","d49b4ea7c220c8dab4b679dd099e643b83ddac9026cfa335802f21a3f82a7994","c5d9c29ff7302573a8ddd3a3923ef017c683a915d1e626ed39fe20c0f25858e9","b058355d326fa2c98f7340824a77bf5e9b61354609bd97fa62f6337a40e5443a","8abb5a1a747b3fafb0513c5f595ae41f7608203ec85c289af9a8499bee0cdd0d","b162314103b89e05cab5f0c65c1c6cc88cdf38b4618db69ff0736667e3e19a85","a92ac8af7861b950098ceb4d3b9b63656f012f5a96738af5ea0255c536083108","abe90b39bdb2f076232dfaeb9064eb659aaab4bd0f5f9c0712f4eadc1ddc312c","dd8df82fff2c1bedd09155629867c336d235f65e9f6c235aad38ec53d25dac30","f216a024fb59c9a9864deaa618eb49b19482f699de5f1ac2aa60435fdba30074","904904a41ea0779a7e6e6ba1acef006202355631fead0f63c20ea6a972c0ed5d","e466cd2ac6e5591231b5d7f1a46372dd5acc7f756a9010e4312d54ee7af13589","5be7e85256dbf685d4cc2a6c5a68b60b5209f794768f8d15d2e8dc8f7b4366b6","563efdc90627de30c505901cdb1ac55012419486fb7ac3c351eeddf80cd7cd16","09887fa64ef252278983c7215aafde9a83aace65e129b5ca98fe1e1cb1427a4e","98bab473d4dac9cc8661d27766f3b434448502525c39b87d765ededea19b0b54","46c51930e69ccd9c3a069e6afe22ad8f057e4052ad9dbcea8554a13e25f3a8f0","53b48efb03c058deb8fff1231547afac2cab5eac75512bd2b88029258520044e","c7008e25445194a33bae86ea59eb0697723ab026b3f752e4dae069b3308fe41d","4cbc005058899e5feed65b3d2d6957b4e909bc6ffec2a8f3918e023d285affdf","74a97040d1ee1aee275b556af4220b58cdf991bd2d51f762951a4226964632b9","b911a7c2e86018036e762b1382210cb667b2d7ae89051a6037571c1d9911462a","b32ae1333fe016bbdb299e54b65965a1e25bc68d2639e2d54f8fdc4656e35072","776fc60a39a707fab820ade179a919f182704e6f39050deaf2e36d53f0e97179","39b7522fdc2159d684b0e23b5b1b2ad6b8eb9a6cce1226bda21c2c29bebd2515","cfc3340169107891b727617c2f3ed8ec456b57f5a13cff6a940933e302d9b781","27a833d9719c5df674d4f55d2d92399ead599bf7892aa2240f787ef4c87373a5","5157cf1fa372cdc6576a229b269ca05e299df0f92139c99885cd8cec87862758","36e7b8c4d43415dd1dd2b350fdd47ba36fa971a533cb6fd436e6c8235d0770fc","9a9061bffadccbed4c58361cb5f3ad41313102b85955b673f86a853d0f3e1cb0","74135589d8b3f5f738353e2f49b726eb32f6837ec4d4adb4b6dbf881d5c2448e","de78b4a61e71c795ad76f18054521884c0361ad951576b653b6271b37e786d00","694940bbed3e6128b2117c87f0579fac2aab8069c86a875cf046719ce1843eb5","9920945a21dca849596b03a57c94627d34e47728374ebabb1881d0780daeae98","ea7fe47073f4d3f850f20df8b68ccafe1094cf69889105f7473f6aac71c6bd28","436e26b5eb594a43624302863e715d04997bdcc672ba69cf201be7a8fba1be48","e80b73b8cdd9ee251a5e001487d4b569193683fd3c490ebf57a031ac52f332a0","583c6257ad1e8e1167ce5375ae60034d1b74a2fefa294c3aa6d62efb92170147","e429ca18585f6cf04b794caefb5063411824498f7c35f2038a09215dfb6178ba","f2f8bd0eaf042958627dc59a672f190da32ad82c17b49124beea0d1f7b6cb9ac","2dcad576f12410daeed9147a4b6be186fc387a820a7e907742177f1e5b1c4e66","3191886aa67ce5cc05e1757f0616d9aa6b650fdead37f90c9b91be82e6c5ec55","868e649af0421b2275f446f139e3bd0dd01feb49a23136366d857bbba1c92c9e","262066dab5f49191b9d35fdb64a4ae2cd135daf3b40b39113c7139f1a534afc3","c1fb97a5ce10f44c67426df8124d0901f9d8bdb2800d6f4afe70e72ce89997c4","1b565ba9efec6de24ca587f76480799be61ae7c514998ee8e0daa98e2400aaa2","e4e93945cd0291dca32a056ff4a4d3b2958b57836dd389f32e990307569bd5f3","a3195eb6b6f4e94fc405ab406377b9d2a62171a032f697ab510d533fd2b18c97","87460619cb805327ec5ed256d38332f1dcbeaa273baec1789a60bc342cf8b93c","17cff7e35937c2c442aa63e6c9ecd6fb7ea036c6e48226e3dcc413654fb68582","2aa88cee3d2a49a359d6ae7386bd72d46306d56ff84b5eb6f9c026c69ab7578e","529c5b8e99cde93515516e6265f9619cde1e2e43cdc3d1212470fb9907aa069f","1aa91606d571bbfd556dadb5eb9a6da8da03b9ad9e00ee4301b54d25e41c73c2","f511825b80e8993ee666123c7a3bca597d30ca990836ced8db797d1cc6e1bd35","152ebbeba243bd02a65553d9a7072f5985b394ec7ea31be11f1ba5d5b3d72820","9ab4e2632a414f5f10efbf75f4e8c541ef489458a2bd25b604a07566ffb53cc4","4c60872f31e0a4bff15c9dcc52c6554497c61bc499c8dcbb5e58687e4cb2c568","f35584e9b6124229b23f0c44d75aedde2b9fb3b0117e292863a80f256de3eaa1","e29766206e22168da8f8a763208a4b052df17fe569c89492cf185efc11cea703","808f0d90cd974d9fb1716f8b6ee78b952363e8b1fb3b36a91873f32004d509ad","93b917f6a66afeb38d2f2344a1e9518fcf0359dc751d50db71f2037a6f7d4b0e","37f28dbfb940ea6aa4179ef7f7f9aa17442585317fbf1d0cf34619b41c0aff56","c2eb4761b37f7e959a208accb66700ecb1564ebb2e048d916db0ab53a791c852","436d5ac80f5db7fdffa6ba2f332f1024b7a0c96de503515b2b8ef7dac850d5c8","2276d5832d354b0b2e8e091628ec1d7e314685a943a93dbcb8d12c8d90b1acd4","c17886987792d1bc119b6988dc5d804032c65e0a8ad4bd89d8a25bff28db21b9","42bfb56fd5f29878e9e4519da80b2ee44bea9be23c0b15aba1510b0d11053287","003862fb7f01e4885cba058a0c023c3dd3b72617869c278f36dc4ada58cd49ed","750f5b433e00907ecf601953912253c42be493ae41f9d3faf02c0c53918d7a5e","2774e76e5e7c5c6bab42b16e33c2f389effd06acdf4e3d604f009eb6bbac7b31","5dc4b28d92018055827cdacc57c002cba55ad2dd55dc95098f7684e9fbd016ec","2774e76e5e7c5c6bab42b16e33c2f389effd06acdf4e3d604f009eb6bbac7b31","6552460efe3df85dc656654231b75161e5072fc8ae0d5d3fd72d184f1d1f9487","2774e76e5e7c5c6bab42b16e33c2f389effd06acdf4e3d604f009eb6bbac7b31","6d7b298b1726d4e15233bbd68c2b433f88c43628ae8f652009a005391606640b","2774e76e5e7c5c6bab42b16e33c2f389effd06acdf4e3d604f009eb6bbac7b31","e68cefe327be0e10ee06cf6b7a8c0f11271640333d1582c2176741896aade369","dda956418b200c98c9aea9a56ed1d4664e5969b90652d85cf64756235d61f861","c24c9262e875cf754ea9430c526e066969b7b58a6d294a31e5b85a42315bdd2e","9ec4e112f598fbed0ea543be208fa7c941b89c20e9d154355867300258260ce9","1762a65c54e447d68316b83b0e7ad7462d4552a091a1b86a470c3b9a6d81b6f6","953ce34ff67f5dd458ea15181112101cf140e1378473b081fc38ca608c42543b","74eb63ce6f121af02749d9e286f550bf97edfb27ed842c39c4e1d59df3bd2902","131284e437ac80e10c5e71c6f8cb3b08c03dbb2606ea6a725769e8865df35d3a","d234c69fe57c6f3b35745b5b7244302b95c33995d4c2cd9f41d28d1da2dbbde5","2ba22e2151ff013b0da83208b96cd773268665585f4807f1e110a151905e2698","8d0f71340689db96fe79e55411a7d49071a366a12a7651d2e404e6d0702165d5","e6a49470f14c7493fd82d2a40fa92cb5d7a2abc38cb0d7b0b2752a60c6c8bc36","c4322ecdbd0e7d4f4e39413b8308c6fd7351af5ef41f96f1d30bbf4e9daf5c5c","93e54b8d2ae8015c4ac95c33a1a24ba698e59cd8d7593724a41ae4898447722a","7cb41d43d4ceaeea768acd1de59aff77a2373838e78fed52842172c60144cda1","ed8d3b389d3500d61e6fac12c9f83d6d487a3b9f29a4aa226972398fc23cd5f0","0e5ea557701934e571d392ec95cd7ae9821a0e3aae67db3ac8216c4444b5cfae","7b9319e2e05710aa14432b8dbba69bfe6904ed6e3b4db2b81682756590714ed9","2fee503c22b1a7bf4048956e1b3af4cee6fd5c56942d4f6c8b1f84cffa89c126","f64f37bd41270f7d7415e3d31aa28c8d09d42e2427d72ad7150691be03a129f9","236d0b37bbdb7f94608457a9fe5bab9035a24c71d68c2a985ddd20ed464869ad","717fb5b019507b1d2774b8df8961427e066347ef71e31c80b4d9c278ed6a4d4e","5b90ac3938f9617f5b7f32d538617cdd3b09cacb732da8a9ea98fe627e6b30df","f768cf84d46dcf04d7194d4aea0e5f9d8a1b980884a2c14aa062dec130406734","31842e64e4604c1f0571a5170fed1bcaca2beeff2ea2d13b52cf4cbc9fe75a93","600d3dc0266b6c64a9438e58d83fbff2560ff8f86de654b3d2cf200ac8c28e04","966ed72659d5d787ecad49a81840fb004705e5e28cb9a352dd5c996409a0fca6","9005705d48bcb1c66197702d1d1c37d14387295a7964fee1d917042cb8c6308e","daec156f58f4b8ea600869f2915aa10d2c3fef926bf6758c9c1ffe4f8a9ff74b","7252646da37dfc937c8e5b4e6f9cf43f866c52d21af2d6c312c6e5dc13e6d761","b4c84a47d9be6df1f932e6c58f17caae4ae8d7d4d4bdc7b6059a05929c06b0a4","12345e103ce22702d56b75a3c89d739f5bece4a99c7d501ea0cf7a970e01c868","fbb3002929a2b9525cc95ac88c223473f088041addebaa1cb759ba3b87d42a1c","dc820d0e3c1e7f895a09fdef69b0ffda686b97b20849d15195cfdf6d729963fc","d90817798eab29a89430d4d08647325dfc10b2f344b67087df6ebbb0879dbf5a","3cdd7a858ec43be574783cbec4a430ae8810ca115e85aa610fd660a32b8d48c6","313f88cd39c1793a9cd20e1338a5f5622d920cde127878354db3b0fda414b448","391ef1a1ae53137203660270bcea6ddb3254ba9bd52a213a6601a95bad57d97d","02caef4ebdaf50afe062b25e94bfbdf63914605b550eb58ce326daf6b9e716ee","aaf3dbbee0b073c14dab96a76cf907f7842aac98e97f1b2279b4907dd698f31b","bc3c92d65ce913ef27e597a22796af97775680cdb8792aa25dc4a16cb79c74cf","e7b91fb6368fc8c602492a8384931d94d493840a95d06ca6e4918bfa573982ca","b19187be56dde541f8fd865b461771094101f8256555e2529f70a3e5fe7e26a9","c3aaf4e5c662d3755b8131aa2b980fd84d512cf2e0c206b919e376fc17e4c685","a39f4d90dcfaafd066b9c106d505ea24d0699b4067aa38ba4a49681fc8acf2b0","d4caa659b225cb2cd805fba462cea03c79059f0e91d71f27c0473f0391383ed8","6e2669a02572bf29c6f5cea36a411c406fff3688318aee48d18cc837f4a4f19c","3c5a1cfac773a5b8a0e114d810faa8468237e05634b503d14906de50191deebf","85214057183f8872d99653f56c4bd489b6e3b822cda4c899df922dd58678e0d4","6bc37dcc791563d5f2e516b8e171eae9384b576cbe3660b7da5edee60e5b84cf","54cd064e2ea729caa323f3e7b98344a8799c2c3b8cd71342fc5ceb5196ee6577","ad9894b2dc8f84adb7299a3b376e7f5018878b10353c4a26672faf8c03c8da53","97c4083413383b660dd5b8f660d271257fd4923a6b320dbc6de6600635df9599","c01c9f83e35d3791a18000287beb7d57e2801d7babcb32b5740f3651203b4f4c","38a5108e64af9bcc1d5938097dfab85af2dab8db371f367421e44a0acee4c65d","da01e025c0591b2aacc1d0cca53a002eca6e9d62ef82bed7b8626e1157959f2c","5899869138a5311a0535b38ff60e294689c83d20d54dbd267e3205b2537f8fa9","8fdcaffacfdc002767a5ef1c562ac69962f9093b419a1a757ea57f7613faf4ed","96e1c4c95f34ff5fa380fe682347e3d5fe8d2957df11741003956026a1a40197","c8d54c013a7e7de619366678af038eebdaa47b161e85fbab3bea5e300443d1c5","16e8b7dbf6cc3018ba691d471487428acafe8d5af610cfbffda81c81fd438ab6","6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","e0c7d85789b8811c90a8d21e25021349e8a756a256ae42d9e816ecd392f00f71","bb8aba28c9589792407d6ae0c1a6568f3ddc40be20da25bc1939e2c9d76436bb","8fa1868ab5af3818ff4746f383ea84206596e284f7dc5ffd40a0fac08ed093f9","8d4537ea6fcdde620af5bfb4e19f88db40d44073f76f567283aa043b81ef8a3e","0bb848976eff244e33741d63372cbfb4d15153a92c171d0a374a3c0ef327a175","68ca20e199b40a7ad73a1cc3b7f53123ab2dbc6c36d15413b2cce8c0212edd4c","202f8582ee3cd89e06c4a17d8aabb925ff8550370559c771d1cc3ec3934071c2","8b0a2400ba7522569871331988f820ba4cfc386f845b01058c63a62ad9db8d03","d3e29566a694a4068d450a58f59e3a3662fc12f74345343d441ef4d954984503","f7b3e68f7972250809e5b0cbd8f0e1f9da8c1dbf70244f289b204f1b49c2d398","4c7c99f7787c5c2ea6cbd911a7b5c7c2a4ee1cb9d7f538805ee2550cf1f1fb99","1557bf37fc8d5f129436caa0212f25d6cbeaf9d20e2e3a60b13306ff62a1d7a0","9a1e77270d63875c9a38630f9a7a9126f9a8df0245d5eb220832a65d408079eb","e48d0036e626bb40f236e236670722445ffff854908c2d9515b2b5b7f677794f","30f9018873d6d80256298011161a664a14b927f719f8a7605ceb8b49bc8808da","f543ea0fe820064a2cdbb39d2b2846c507467c4771eafcda2091da43b05c077b","9066d02264a67aae05410c340c8fa41a79bb076c33d1c6ae3ec29a05828f4c05","00435c177c3da6998c2f95b9e71239f00cfabd3461401cc4d8606ee3afb732b1","d432a2956d1efa172e1c60a8186a81657f2f9f4ba449c6abdfa9d057d484c45d","bc6679207eccaa45e49b930ad45ec8e7903bd8b0868e086d8bad91f79c914ca0","4dd35e71d52007465787dd2f374cc756a29e6c9b96dc237d0465d0294170c529","7ebf1f440efe6efebeb58a44000820cbe959da9d9496621fa6dcbc02666e3002","08a9e70641597e23d00be62e3a94b69ad93c5cf5541ec7bfdeb5e9f69c845507","ded59c554118589a8729fb70429318e41e7e8155b2aff5f3d7a77933e49dbc10","3af507089e65c1472a87e5f7345ec18838d7e923c2c06fdad3d31543278af762","c867e6d7de78f96eb55b534b3aca1da4e029a6ab0e4ea9d0610acf11d737f8a0","2df075b38e2135201202640fe92bce8d03fb319fece410b088a22ab4e1be7702","b9f07153f8e881c4cca036abccaa134df30cf09a3381772d089d1eeabe45770d","88213e972b5989f217627bdcb79a697f66821e8ff135265712346d532243084f","bf6122555f34582e6d5424a88676d90f2333e0e920764895c15d39b6c856053c","bf04a1c9ccfeabf521b7b97f388d05bc5f628422253399eb157fec0d9cd213ce","3c6ecfcc6ac82b5866368d1efbddeeb3bfae03962747bf6928d8faa092e5b369","06d19317f4c8474255b3ceab7102763faf7ff0aa4cc305384b13ccb6d27b2e50","ebe1694b3a7a0265b9cf8fb3bfed6575907247b61add671ea9771fd6715d1b29","bdf4a7242e5cce621b5ba689351af780b0b665d97ea88c71f50801aa80560236","af79b166f5d41ec2ebae57e9b67df564452b90ae3f0af4cb3c2d8ad5adbfd2db","6bd6ae32288500128ae355de57d6bc3b5884f37e1e5d5ac597b142f63b3c8121","a6634dbc56e3d75efac697e59fef032aa15cc537acf7f6ad3a045001f48483f8","6b1f9c7839370502ac5b10013ed905da932e7612548a0f7ee57d340f5a9ec86b","446b5dbbcbd8b9b1676f0ed77cb6bcd0d3adec82feddfd2f9d99ce9174126bd3","16504c568924627fcf340804a3a1d3845490194df479983147007d83ba347a18","7253cdf6610e2d0b08b7f368bee406b28572f0764de87c1c68309ac713a4d6f5","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","32e1fb333973369500d670e1a6adfbb3314d6b582b58062a46dc108789c183eb","e040fa1afb9b8d5bc1fde03bbf3cf82a42f35f7b03a088819011a87d5dab6e74","5156efecb13dffb9aefc31569a4e5a5c51c81a2063099a13e6f6780a283f94fd","585a7fca7507dd0d5fa46a5ec10b7b70c0cea245b72fc3d796286f04dacf96e4","7bc925c163a15f97148704174744d032f28ad153ff9d7485e109a22b5de643dc","c3dc433c0306a75261a665a4d8fd6d73d7274625e9665befd1c8d7641faeddd7","45b6a651b5e502cdfa93dc2f23779752def4ada323ebcfc34e4a4d22e9589971","9fc9575d1a0e89596012c6f5876b5c9654e1392fbd5d6d3d436bc9198ead87a0","f158579f034415f0bad9f6f41ed3ac0768dfe57dc36776d52e09c96a901c5e45","8e6a2d23d02da219dc17ca819efce29e1099883425f56e6c803c19d913b11173","bb2f509fedbf353c2dbb5626f25751308dda2cd304be0c1dfb7cf77f47fc56b3","f059bbc54f789b3da972dcc0f8b8fad77afc465be94ee766ad2a947cbed91c46","98d4546adbeca7ae6efe2938738d50388f952e52926df1e41f69d5bd943da90b","4e7fabbb3afb902d2095cd4796c37933c30674e3145433b07aace16ff6ba166a",{"version":"0bd5e7096c7bc02bf70b2cc017fc45ef489cb19bd2f32a71af39ff5787f1b56a","affectsGlobalScope":true},"8c6aac56e9dddb1f02d8e75478b79da0d25a1d0e38e75d5b8947534f61f3785e",{"version":"adf5711946f359c8a720091bee3aa3065c64d411568fcdf07e0ec480ee4a1337","affectsGlobalScope":true},"a6e59cf99535a6853e64662f20c7701f2c95c0eecb7e4be7307ef207253f73e9","482ff635ea42cc671ba1e5729f57dd784759acd60fc26d31d676ae522cf3e2f5",{"version":"5a7dccb227c05332ba3fa8d747442a646251846f0004f0180f6e050fd39ecefb","affectsGlobalScope":true},"13c76042dd1f4d8eb88cd21abd2e6ca73639ecc36130e15a97fc20b25fbd07ce","89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","49766a3e83c44708ea1357fa410c309837f4420826a5e265e3fb81e0087c7025","9f9fba2db9bb11058b153cdede4ec4e3ceed37d51a18a2edfaf7dfbef0a2b241","264ed569351932c557bf299080dcdf1fa3f86deafd12a3b4195a3bdc6e9d6229","006ffd4a92ea7050298f50e44dcc03155b943454bb874c0a5a3ad7c8ae92a50b","4cef6b76f45c58ff3044e1851afecd32be09fa6def7a626115b555b063e3e9ef","8510f56ab8598d18ec11cb2535112e2aace53e06da7d2d4fbb046e5c6cfb743e","1f85065e4d231eeb843a8485847ca66855a82984db1788ead57db359c6a52128","f10c018418c8621e4ab10596aed7202c49c36df8fda7f3c8a6ceba18724f4f85","26c304c279c0faf6ac61854c67373342e002a3d6c7ff0d8fcc7cee94f0ad323a","cc4ad1e0de78e65fbf1603669017fb939355e7bb4d38e48e78af619a390e4e23","f7598141e8c7143330f1cbfecb221b6f2beb95dc853ad6c20842891442944d0b","7ccd7b1d3c72e8ee639f48aaf190a4d2c9bf4c6650a22501d0fa98b8e3fc2fe1","31c74be259150eec1e3f8f4113f99cd10d5f1a278a5a7ef6fa29478d71766618","171a8d5b10a71ab01c4f43c110565a6a81d975eef7c46be20fc8162e21b2f188","ac052259a6eec4dc9e73e2309a64fa0fc4f7edba776418355b25e67cf24d3318","e83857dd6e1c80bacacdaee3eaf2bd71d8331880fd4705489e5e1383e0ac78a8","dceb21129b0ae66beddafba41b8765f27bf95669a8f7fbe3e94025e01c9351a8","859ea22746d11ed8386ec8d9b63b998462510705d527b83494f6a2fcaa7a5de4","825b79a00bb5650472780a23f75ee17cffe4d0eae235da96e50d3b8cd9456ea5","5b6ba1af9d52d4a47eb6908d1aebd2fe348d8212205b203d25ae528b46822eff","92ae8af22ba9f4d3728ee0075a23f5a9f2e071bb677e7db01ec2f44cc01ed473","a3f55be7fa724c524698e82466c2a651f352e673f63428d953923de161b1095c","f34def9623f89b02ac2568eeee0cfa655411e56b79f1198143053709d1987110","bc0d6e115f78a602be8f82c6977c3a3b4f84fa144e06706bd768797cd683f2b5","fb4b80d4f7140829a10b48ea77584e191098d20fbe77039e171fce8de1b257ac","871b7a0478e9b76721ca4f596acd219b2ff60f58fbf95198117ce4c1bf8eb52a","38a6564c83f8e5c76f0cbbd823c5ed16c9ea9e55f25629ca4a1384d3447b27f9","2faea076f501719cba9eb56cdf431e5efc09bc81b12a4329a825fedce77c6503","46f0d38a72546ad31308f6730267f835bea40803b9117c42a29ad009706cda9f","3a2cad3fdc52e8407c3c9a044c10a4db897bba4c1e30a96461f2e7b2be9955c0","a8e0ac700a94d9a42add85453d32842101fb1f08c1a296a02eb27105e78917e1","70cb02181c04656d711bca5c332549beae390bed0107bd97c419a3466bb39306","afe412b89ebed32a7eb2e44fe185cb24027d36f8543023e57ca36ead6e59193c","5a0012861a95843c567475a90362f686019af229a8946779ccc44c7efb5b1f44","586c4ef6496185cdbc08391fdc5f49dd80b14cdb2d01ace355b2b150f3fe71eb","148e197eb64a4c80531e4c959012755ce7fbfdbcb8d17721eac0c8a983c3e51c","edb06b0fc903fc619a7f2a3aeb6579e5b787eb624c349da738b574720558a596","d6fdaeb6f1e4e29d7827e30d743dfef5cb6c8bca4bc546001a3b3e751a2de06c","92f92e2b21f14f7ad07b15902ba806b89f37d8a83a7d127f7e638f92f241ddf8","74f4c396d57693d72e769ccc21b83542a78a6f3825ee0fe69cfefd7713f5e6cf","03a3957f7ccf2ceb0940c64e35734ed50c0d090c161924c44e79cfb7c9c437f1","010bb5235c40300fe81fd4af2dc7d48b573ef626e65d529242035274121f4c83","801bcd63fc346570aa633c166bc5869da8cb9ad252e113c4fe46800296f54147","2d231827320e0d5eab1dd0f01d95d70def0afdef83087303f03833c2a237d922","79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","5c5d901a999dfe64746ef4244618ae0628ac8afdb07975e3d5ed66e33c767ed0","85d08536e6cd9787f82261674e7d566421a84d286679db1503432a6ccf9e9625","113976386a1fd6065bb91eb0ec5958245c42548019f6da49f85bcbd50324cb8a","a1e9b1740facf44f7331b0f80223320656fce7a0781fee36fbd82e8fe73dcfec","17d3f26684a88e7651e52ecce18b292bab01a9241670fadd6bb76910022fb492","b487d434cbc327e78a667d31b34ac001433ecd482e487557bc9c737d6f5a24fa","46e8d2193f476a7a7de3cdd24743a2eafd009175159fe8494f0e3001a0e681be","e924774b42ff4558194d6531a3c368aef7b257e52cf001f01f7eda4655d1a125","6aaf8fe9da44f69b9402fb3d284ff4e4ce3af4e0528b796378f6fe63d7fa0fe9","ef8c201af35c32130313ca43e3b859b1657ec3082839116070122039eed6b895","f7c9374ba76859737e8bba66365d7e89eeca08dc8ee9ca8eaa693d5f9fe8210d","b5e90e03bf5f608bc525d9334e90cc1f7c94a6e13f0e6ce59dc099f5234694b5","fe93c474ab38ac02e30e3af073412b4f92b740152cf3a751fdaee8cbea982341","685ac382e8abff1fb8b8e9379be780a39608bda4909c5153e6ee46fce4dd5abd","1e00b8bf9e3766c958218cd6144ffe08418286f89ff44ba5a2cc830c03dd22c7","8e0158a34fc0d6d12113e093c709bd0930d300ab2f011d8b5efb7492c98831f2","55652c1ab8a2a1b10ccd9baba0aa31b0b749149c9bb03194bd4d71dab421d8f4","24254ce2f8d214d484a40bcdf7e4d03a9ba4c3772f117b578d767ca31df91c1a","30ee089a4316e0e56111b85337ad835d1dda9e07d7bb9de1f86ae115c544f70e","3f127bce3ca6a110dff19320ebe9c72bfbed841a402ccfc95ec59c2002c150d5","6643b095d69114cd0fd28ae8dc81126704b2c75e20732afa0181c6abf71955ab","904dffef24bc8aa35de6c31f5ed0fd0774eafc970991539091dc3185c875a48e","da5edb48832bb95f0a4c2d88e17289043431f27b20c15478deaf6bbe40a5a541","8f9f36755162f72c86eddc2b4bac64fd08779d36c6b89e3fb1d4ff3c5bd08e73","b2b9b8923932806aa27762be5cd75bcdd333285917cdd5dd57aefc0a89f1bbfc","c2008605e78208cfa9cd70bd29856b72dda7ad89df5dc895920f8e10bcb9cd0a","3922319fa0264c1002652074c35ee5d49358066dae9757e82a5b5606f5622cce","33ee52978ab913f5ebbc5ccd922ed9a11e76d5c6cee96ac39ce1336aad27e7c5","3901edd6fc729a1b1301721d74bcb09efdbcf4a9d3c2bd93a3302879d65400c2","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","68cc8d6fcc2f270d7108f02f3ebc59480a54615be3e09a47e14527f349e9d53e","3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1",{"version":"19554495e422e163d91662fb665f01515a5a137e6082c528e49f80ce0604ab18","affectsGlobalScope":true},"7a1dd1e9c8bf5e23129495b10718b280340c7500570e0cfe5cffcdee51e13e48","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","b8442e9db28157344d1bc5d8a5a256f1692de213f0c0ddeb84359834015a008c","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","4f6baaf93d43c3772ca8bd8bdb7cccfc710e614135ac8491fff3f6f120497488","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","5c50a61c09fa0ddd49c51d7d5dbb8b538f6afec86572ec8cb31c3d176f073f13","54f1d17f9f484650cd49b53d9a6ba75593955a9ead093628888a37407b6ecd51","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","247a952efd811d780e5630f8cfd76f495196f5fa74f6f0fee39ac8ba4a3c9800","0c681cfae79b859ed0c5ddc1160c0ea0a529f5d81b3488fb0641105bd8757200"],"root":[[316,319],[330,398],[687,693],695,696,[703,709],719,[721,723],[819,826],[838,840],842,843,876,[878,880],[887,896],1022,[1029,1031],1039],"options":{"downlevelIteration":true,"esModuleInterop":true,"jsx":1,"module":99,"noImplicitAny":false,"skipLibCheck":true,"strict":true,"target":1},"fileIdsList":[[313,318],[313,318,330],[71,697,702],[285,684,687],[295,334,708],[71,295,300,702,718],[697,721],[71,285,295,300,684,687,726,796,813,817,818],[71,295,332],[71],[71,697],[71,686,688,693,696,702,720],[71,702,720],[295,336,702,708],[295,697],[71,295,686,702,719,819,839],[71,702,718,838],[295,335,708],[841,842],[71,289,300,875],[71,688,689,823,877],[71,295,697],[697],[702,822,881,882,883,884,885,886],[71,299,315,697,720],[71,300,332,697,707],[71,300,332,333,705,706],[71,300,332,333,697,702,705],[300,332],[71,702,828,837],[332],[684,686],[71,709,889,890],[71,295,708,889,890],[71,295,300,336,691,820,825,876,879,889,890],[71,295,300,335,691,820,840,876,879,889,890],[71,317,891,892,893,894,895],[71,300,876],[302,1026],[91,100,317,329],[313,314,315],[793],[793,794,795],[782,793],[743,783,784,792],[782],[773],[735,793],[744,745,774,775,776,777,778,779,780,781],[325,773],[773,790],[790],[790,791],[785,786],[773,787,790],[785,787,788,789],[797],[798,801,802,803,804,805],[798,799,800],[799,800,803],[797,806,810,812],[730,797],[807,808,809],[773,797],[811],[727,730],[325],[739,740,741],[735,742],[738,742],[724,731,732,733,735,738,739,742],[732,734,735,742],[734,735,742],[735,738,742],[736,738,742],[325,724,727,728,730,734,738,742],[736,737,742],[731,732,733,734,735,736,737,738,740,741,742],[724,728,729,746,747,748,749,750,751,752,753,754,755,756,757,758,759,772],[743,765],[71,761],[724,743,760,762,763,764,765,767,768,769,770],[733,743,771],[743,764],[743,762,763,764],[743,766],[760,761,762,763,764,765,766,767,768,769,770,771],[325,726],[727,728,729],[320],[323,324,325],[323],[323,324],[320,321,322],[629],[446],[440],[447,448,449,450],[71,439,445,476],[71,439,445,490],[71,439,445,454],[71,439,445,470],[71,439,445,468],[71,439,445,484],[71,439,445,486],[445],[71,439,445,456],[71,439,445,488],[71,439,445,480],[71,439,445,478],[71,439,445,462],[445,452,453,455,457,459,461,463,465,467,469,471,473,475,477,479,481,483,485,487,489,491,493],[71,439,445,472],[71,439,445,474],[71,439,445,464],[71,439,445,466],[71,439,445,458],[71,439,445,492],[71,439,445,460],[71,439,445,482],[432,436,437,439,446],[454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492],[439,446],[496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524],[435],[439],[433],[430,439,440,441,442,443,444],[434,438,439,440,442,444,445],[71,439,440],[436,439],[434,436,439],[431,439],[432],[434,436,437],[432,434,438],[436,446,451,494,495,525],[71,632],[630],[71,631,671,678],[632,673,674],[638,670],[526,632,637],[638],[631,673,675,678],[526,528],[71,528,529,631,634,638,639,640,641,671,672,676,677],[631,632,635,678],[632,636,678],[636,638,641],[71,638],[71,632,633],[632,636,639,640],[526,529,633,678,679,680,681,682,683],[71,632,634,678],[71,678],[944,945,946,949,950],[902,944],[933,935,938,939,941,943],[902,947,948],[933,936,937],[933,936,937,942],[933,936,937,940],[903,932,933,936,937],[944],[958],[947,957],[68,69,70,955],[429],[401,403],[404,424],[416],[415],[408],[406,409,412,415,416,418,419,422,423],[410,411,424],[409,411,412,415,416,417,418,419,420,421,422,423,424,425,426,427,428],[404],[415,417],[409,415],[415,419],[407],[407,409,413],[407,409,414],[415,417,420,421],[415,416,417],[71,710],[71,829,830,832,834,836],[71,829],[71,710,711,712,715,716,717],[71,710,713,714,715],[71,710,715,827],[71,710,715],[399],[936,937],[1041],[897],[1058],[1046,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058],[1046,1047,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058],[1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058],[1046,1047,1048,1050,1051,1052,1053,1054,1055,1056,1057,1058],[1046,1047,1048,1049,1051,1052,1053,1054,1055,1056,1057,1058],[1046,1047,1048,1049,1050,1052,1053,1054,1055,1056,1057,1058],[1046,1047,1048,1049,1050,1051,1053,1054,1055,1056,1057,1058],[1046,1047,1048,1049,1050,1051,1052,1054,1055,1056,1057,1058],[1046,1047,1048,1049,1050,1051,1052,1053,1055,1056,1057,1058],[1046,1047,1048,1049,1050,1051,1052,1053,1054,1056,1057,1058],[1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1057,1058],[1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1058],[1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057],[947,1060],[78],[80],[81,86],[82,90,91,98,107],[82,83,90,98],[84,114],[85,86,91,99],[86,107],[87,88,90,98],[88],[89,90],[90],[90,91,92,107,113],[91,92],[90,93,98,107,113],[90,91,93,94,98,107,110,113],[93,95,107,110,113],[78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120],[90,96],[97,113],[88,90,98,107],[99],[100],[80,101],[102,112],[103],[104],[90,105],[105,106,114,116],[90,107],[108],[109],[98,107,110],[111],[98,112],[93,104,113],[114],[107,115],[116],[117],[90,92,107,113,116,118],[107,119],[1061],[1062],[67,68,69,70],[71,107,121,1037],[71,75,93,121,270,307,1035,1036],[322,323,324,325,326,327],[328],[725],[531,532,538,539],[540,604,605],[531,538,540],[532,540],[531,533,534,535,538,540,543,544],[534,545,559,560],[531,538,543,544,545],[531,533,538,540,542,543,544],[531,532,543,544,545],[530,546,551,558,561,562,603,606,628],[531],[532,536,537],[532,536,537,538,539,541,552,553,554,555,556,557],[532,537,538],[532],[531,532,537,538,540,553],[538],[532,538,539],[536,538],[545,559],[531,533,534,535,538,543],[531,538,541,544],[534,542,543,544,547,548,549,550],[544],[531,533,538,540,542,544],[540,543],[531,538,542,543,544,556],[540],[531,538,544],[532,538,543,554],[543,607],[540,544],[538,543],[543],[531,541],[531,538],[538,543,544],[563,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627],[543,544],[533,538],[531,533,538,544],[531,533,538],[531,538,540,542,543,544,556,563],[564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602],[556,564],[564],[531,538,540,543,563,564],[965],[963],[962],[969,972,975,977],[897,904,969,972,975,978,1004],[978,1001,1003],[904,978,1001,1002,1004],[1005],[978,1001,1004],[903,905,930,931,932],[903,904,905,932],[906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929],[903,904,932],[979,980,1000],[904,979],[904],[981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999],[979],[897,904,1001,1004],[969,970,971,975,978],[969,972,975,978],[969,972,973,974,978],[71,952,959],[902,952],[951],[960],[953],[844,845,846,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874],[71,847],[71,844,847],[71,844],[71,685],[76],[274],[276,277,278],[280],[125,134,145,270],[125,132,136,147],[134,247],[198,208,220,312],[228],[125,134,144,185,195,245,312],[144,312],[134,195,196,312],[134,144,185,312],[312],[144,145,312],[80,121],[71,209,210,225],[71,209,223],[205,226,296,297],[160],[80,121,160,199,200,201],[71,223,226],[223,225],[71,223,224,226],[80,121,135,152,153],[71,126,290],[71,113,121],[71,144,183],[71,144],[181,186],[71,182,273],[1023],[71,107,121,307],[71,75,93,121,270,305,306,1037],[124],[263,264,265,266,267,268],[265],[71,271,273],[71,273],[93,121,135,273],[93,121,133,154,156,173,202,203,222,223],[153,154,202,211,212,213,214,215,216,217,218,219,312],[71,104,121,134,152,173,175,177,222,270,312],[93,121,135,136,160,161,199],[93,121,134,136],[93,107,121,133,135,136,270],[93,104,113,121,124,126,133,134,135,136,144,149,151,152,156,157,165,167,169,172,173,175,176,177,223,231,233,236,238,270],[93,107,121],[125,126,127,133,270,273,312],[134],[93,107,113,121,130,246,248,249,312],[104,113,121,130,133,135,152,164,165,169,170,171,175,236,239,241,259,260],[134,138,152],[133,134],[157,237],[129,130],[129,178],[129],[131,157,235],[234],[130,131],[131,232],[130],[222],[93,121,133,156,174,193,198,204,207,221,223],[187,188,189,190,191,192,205,206,226,271],[230],[93,121,133,156,174,179,227,229,231,270,273],[93,113,121,126,133,134,151],[197],[93,121,252,258],[149,151,273],[253,259,262],[93,138,252,254],[125,134,149,176,256],[93,121,134,144,176,242,250,251,255,256,257],[122,173,174,270,273],[93,104,113,121,131,133,135,138,146,149,151,152,156,164,165,167,169,170,171,172,175,233,239,240,273],[93,121,133,134,138,241,261],[147,154,155],[71,93,104,121,124,126,133,136,156,172,173,175,177,230,270,273],[93,104,113,121,128,131,132,135],[150],[93,121,147,156],[93,121,156,166],[93,121,135,167],[93,121,134,157],[93,121],[159],[161],[308],[134,158,160,164],[134,158,160],[93,121,128,134,135,161,162,163],[71,223,224,225],[194],[71,126],[71,169],[71,122,172,177,270,273],[126,290,291],[71,186],[71,104,113,121,124,180,182,184,185,273],[135,144,169],[104,121],[168],[71,91,93,104,121,124,186,195,270,271,272],[66,71,72,73,74,270,307,1037],[86],[243,244],[243],[282],[284],[286],[1024],[288],[292],[75,77,270,275,279,281,283,285,287,289,293,295,299,300,302,310,311,312],[294],[299,315],[298],[182],[301],[80,161,162,163,164,303,304,307,309],[121],[71,75,93,95,104,121,124,136,262,269,273,307,1037],[402,405],[71,527],[71,656],[656,657,658,660,661,662,663,664,665,666,669],[656],[659],[71,654,656],[651,652,654],[647,650,652,654],[651,654],[71,642,643,644,647,648,649,651,652,653,654],[644,647,648,649,650,651,652,653,654,655],[651],[645,651,652],[645,646],[650,652,653],[650],[642,647,652,653],[667,668],[814,816],[71,815],[701],[698,699,700],[967],[963,966],[963,1018],[1014,1017],[962,1014,1015,1016,1018],[1011],[1013],[962,1012,1014],[904,933,976,1006],[932,934],[903,904,931,932,933],[933],[71,1034],[402],[400],[897,902],[898],[901],[897,899,900,902],[1032,1033],[1032],[91,100,293,317,330,360,703,704,721,722,723,821,822,823,824,826,842,843,878,880,887,888,896,954,961,968,1007,1008,1019,1020,1021],[71,300,686,690,692,877,1025,1027,1028],[283,692],[694],[310,1038],[295,336,704,825,889,890]],"referencedMap":[[319,1],[331,2],[703,3],[704,4],[709,5],[719,6],[722,7],[819,8],[820,9],[821,10],[822,11],[823,12],[824,13],[825,14],[826,15],[889,16],[839,17],[840,18],[843,19],[876,20],[878,21],[879,22],[880,23],[887,24],[721,25],[708,26],[705,22],[707,27],[706,28],[333,29],[888,10],[838,30],[842,10],[334,31],[335,31],[336,31],[687,32],[688,10],[689,10],[891,33],[892,34],[893,35],[894,36],[896,37],[895,34],[890,38],[1027,39],[330,40],[691,31],[316,41],[794,42],[795,42],[796,43],[783,44],[784,42],[793,45],[745,46],[774,47],[777,48],[778,42],[776,42],[782,49],[781,50],[791,51],[786,52],[792,53],[787,54],[788,55],[790,56],[798,57],[803,57],[806,58],[801,59],[802,59],[804,60],[805,60],[813,61],[807,57],[808,62],[809,62],[810,63],[811,64],[812,65],[797,66],[728,67],[742,68],[736,69],[739,70],[734,71],[733,72],[740,73],[732,74],[741,75],[735,76],[738,77],[743,78],[773,79],[766,80],[762,81],[771,82],[767,83],[768,84],[769,85],[763,10],[765,85],[764,86],[772,87],[727,88],[730,89],[320,90],[326,91],[324,92],[327,93],[325,93],[323,94],[877,10],[630,95],[447,96],[449,97],[451,98],[450,97],[477,99],[491,100],[455,101],[471,102],[469,103],[485,104],[487,105],[452,106],[457,107],[489,108],[481,109],[479,110],[463,111],[494,112],[473,113],[475,114],[465,115],[467,116],[459,117],[493,118],[461,119],[483,120],[476,121],[490,121],[454,121],[470,121],[468,121],[484,121],[486,121],[456,121],[488,121],[480,121],[478,121],[462,121],[495,122],[472,121],[474,121],[464,121],[466,121],[458,121],[492,121],[460,121],[482,121],[512,123],[496,123],[497,123],[502,123],[513,123],[498,123],[499,123],[500,123],[501,123],[514,123],[503,123],[515,123],[516,123],[525,124],[504,123],[517,123],[505,123],[518,123],[506,123],[519,123],[520,123],[507,123],[508,123],[521,123],[522,123],[509,123],[523,123],[510,123],[511,123],[524,123],[436,125],[443,126],[434,127],[444,128],[446,129],[445,130],[442,131],[437,132],[440,133],[433,134],[438,135],[439,136],[526,137],[633,138],[679,10],[631,139],[673,140],[675,141],[671,142],[638,143],[672,144],[676,145],[529,146],[678,147],[636,148],[635,149],[639,150],[677,151],[634,152],[641,153],[684,154],[680,155],[681,155],[682,156],[683,155],[951,157],[946,158],[944,159],[949,160],[939,161],[943,162],[941,163],[938,164],[948,165],[959,166],[958,167],[957,168],[430,169],[404,170],[425,171],[426,172],[420,173],[409,174],[424,175],[412,176],[429,177],[411,178],[418,179],[413,180],[421,181],[408,182],[414,183],[415,184],[422,185],[417,172],[423,186],[713,187],[715,10],[837,188],[836,10],[835,10],[830,189],[829,10],[832,189],[831,10],[718,190],[711,187],[712,187],[717,187],[716,191],[834,189],[833,10],[710,10],[828,192],[827,193],[400,194],[1040,195],[1042,196],[937,195],[903,197],[1059,198],[1047,199],[1048,200],[1046,201],[1049,202],[1050,203],[1051,204],[1052,205],[1053,206],[1054,207],[1055,208],[1056,209],[1057,210],[1058,211],[904,197],[1060,212],[78,213],[80,214],[81,215],[82,216],[83,217],[84,218],[85,219],[86,220],[87,221],[88,222],[89,223],[90,224],[91,225],[92,226],[93,227],[94,228],[95,229],[121,230],[96,231],[97,232],[98,233],[99,234],[100,235],[101,236],[102,237],[103,238],[104,239],[105,240],[106,241],[107,242],[108,243],[109,244],[110,245],[111,246],[112,247],[113,248],[114,249],[115,250],[116,251],[117,252],[118,253],[119,254],[1062,255],[1061,256],[71,257],[632,10],[1038,258],[1037,259],[725,91],[328,260],[329,261],[726,262],[540,263],[606,264],[605,265],[604,266],[545,267],[561,268],[559,269],[560,270],[546,271],[629,272],[534,273],[538,274],[558,275],[553,276],[539,277],[554,278],[557,279],[552,280],[555,279],[556,281],[562,282],[544,283],[542,284],[551,285],[548,286],[547,286],[543,287],[549,288],[563,289],[625,290],[619,291],[612,292],[611,293],[620,294],[621,279],[613,295],[626,296],[607,297],[608,298],[609,299],[628,300],[610,293],[614,296],[615,301],[622,302],[623,277],[624,301],[616,299],[627,279],[617,303],[618,304],[564,305],[603,306],[567,307],[568,307],[569,307],[570,307],[571,307],[572,307],[573,307],[574,307],[593,307],[575,307],[576,307],[577,307],[578,307],[579,307],[580,307],[600,307],[581,307],[582,307],[583,307],[598,307],[584,307],[599,307],[585,307],[596,307],[597,307],[586,307],[587,307],[588,307],[594,307],[595,307],[589,307],[590,307],[591,307],[592,307],[601,307],[602,307],[566,308],[565,309],[966,310],[965,311],[964,312],[978,313],[977,314],[1004,315],[1003,316],[1006,317],[1005,318],[932,319],[906,320],[907,320],[908,320],[909,320],[910,320],[911,320],[912,320],[913,320],[914,320],[915,320],[916,320],[930,321],[917,320],[918,320],[919,320],[920,320],[921,320],[922,320],[923,320],[924,320],[926,320],[927,320],[925,320],[928,320],[929,320],[931,320],[905,322],[1001,323],[981,324],[982,324],[983,324],[984,324],[985,324],[986,324],[987,325],[989,324],[988,324],[1000,326],[990,324],[992,324],[991,324],[994,324],[993,324],[995,324],[996,324],[997,324],[998,324],[999,324],[980,327],[979,328],[972,329],[971,330],[970,330],[975,331],[973,330],[974,330],[976,330],[960,332],[953,333],[952,334],[961,335],[954,336],[875,337],[870,338],[869,338],[868,338],[848,338],[858,338],[857,338],[867,338],[866,338],[856,338],[864,338],[873,338],[874,338],[850,338],[847,10],[851,338],[865,338],[849,339],[863,338],[859,338],[853,338],[852,338],[855,338],[854,338],[872,338],[860,338],[861,338],[862,338],[871,338],[845,340],[846,340],[686,341],[685,10],[77,342],[275,343],[279,344],[281,345],[144,346],[149,347],[248,348],[221,349],[229,350],[246,351],[145,352],[197,353],[247,354],[173,355],[146,356],[177,355],[165,355],[127,355],[214,357],[211,358],[209,10],[212,359],[298,360],[219,10],[296,361],[213,10],[202,362],[210,363],[224,364],[225,365],[154,366],[216,10],[291,367],[294,368],[184,369],[183,370],[182,371],[301,10],[181,372],[1024,373],[308,374],[305,10],[307,375],[125,376],[269,377],[267,378],[268,378],[274,372],[282,379],[286,380],[136,381],[204,382],[220,383],[223,384],[200,385],[135,386],[170,387],[239,388],[128,389],[134,390],[124,391],[250,392],[261,393],[260,394],[157,395],[238,396],[193,397],[178,397],[232,398],[179,398],[130,399],[236,400],[235,401],[234,402],[233,403],[131,404],[208,405],[222,406],[207,407],[228,408],[230,409],[227,407],[174,404],[240,410],[198,411],[259,412],[152,413],[254,414],[255,415],[257,416],[258,417],[252,389],[175,418],[241,419],[262,420],[156,421],[231,422],[133,423],[151,424],[150,425],[167,426],[166,427],[158,428],[201,429],[199,361],[160,430],[162,431],[309,432],[161,433],[163,434],[164,435],[206,10],[226,436],[195,437],[284,10],[290,438],[192,10],[288,10],[191,439],[271,440],[190,438],[292,441],[188,10],[189,10],[187,442],[186,443],[176,444],[171,445],[169,446],[205,10],[273,447],[75,448],[72,10],[251,449],[245,450],[244,451],[283,452],[285,453],[287,454],[1025,455],[289,456],[314,457],[293,457],[313,458],[295,459],[315,460],[299,461],[300,462],[302,463],[310,464],[311,465],[270,466],[942,195],[406,467],[528,468],[657,469],[658,469],[670,470],[659,471],[660,472],[655,473],[653,474],[648,475],[652,476],[650,477],[656,478],[645,479],[646,480],[647,481],[649,482],[651,483],[654,484],[661,471],[662,471],[663,471],[664,469],[665,471],[666,471],[643,471],[669,485],[668,471],[817,486],[816,487],[883,488],[882,488],[884,488],[818,488],[702,488],[699,10],[700,10],[701,489],[881,488],[885,488],[886,488],[968,490],[967,491],[963,312],[1019,492],[1009,312],[1018,493],[1017,494],[1012,495],[1011,312],[1014,496],[1013,497],[1007,498],[935,499],[934,500],[1008,501],[1035,502],[403,503],[401,504],[933,505],[899,506],[898,197],[902,507],[901,508],[1034,509],[1033,510],[1022,511],[1029,512],[1030,513],[695,514],[1039,515],[1031,516]],"exportedModulesMap":[[319,1],[331,2],[703,3],[704,4],[709,5],[719,6],[722,7],[819,8],[820,9],[821,10],[822,11],[823,12],[824,13],[825,14],[826,15],[889,16],[839,17],[840,18],[843,19],[876,20],[878,21],[879,22],[880,23],[887,24],[721,25],[708,26],[705,22],[707,27],[706,28],[333,29],[888,10],[838,30],[842,10],[334,31],[335,31],[336,31],[687,32],[688,10],[689,10],[891,33],[892,34],[893,35],[894,36],[896,37],[895,34],[890,38],[1027,39],[330,40],[691,31],[316,41],[794,42],[795,42],[796,43],[783,44],[784,42],[793,45],[745,46],[774,47],[777,48],[778,42],[776,42],[782,49],[781,50],[791,51],[786,52],[792,53],[787,54],[788,55],[790,56],[798,57],[803,57],[806,58],[801,59],[802,59],[804,60],[805,60],[813,61],[807,57],[808,62],[809,62],[810,63],[811,64],[812,65],[797,66],[728,67],[742,68],[736,69],[739,70],[734,71],[733,72],[740,73],[732,74],[741,75],[735,76],[738,77],[743,78],[773,79],[766,80],[762,81],[771,82],[767,83],[768,84],[769,85],[763,10],[765,85],[764,86],[772,87],[727,88],[730,89],[320,90],[326,91],[324,92],[327,93],[325,93],[323,94],[877,10],[630,95],[447,96],[449,97],[451,98],[450,97],[477,99],[491,100],[455,101],[471,102],[469,103],[485,104],[487,105],[452,106],[457,107],[489,108],[481,109],[479,110],[463,111],[494,112],[473,113],[475,114],[465,115],[467,116],[459,117],[493,118],[461,119],[483,120],[476,121],[490,121],[454,121],[470,121],[468,121],[484,121],[486,121],[456,121],[488,121],[480,121],[478,121],[462,121],[495,122],[472,121],[474,121],[464,121],[466,121],[458,121],[492,121],[460,121],[482,121],[512,123],[496,123],[497,123],[502,123],[513,123],[498,123],[499,123],[500,123],[501,123],[514,123],[503,123],[515,123],[516,123],[525,124],[504,123],[517,123],[505,123],[518,123],[506,123],[519,123],[520,123],[507,123],[508,123],[521,123],[522,123],[509,123],[523,123],[510,123],[511,123],[524,123],[436,125],[443,126],[434,127],[444,128],[446,129],[445,130],[442,131],[437,132],[440,133],[433,134],[438,135],[439,136],[526,137],[633,138],[679,10],[631,139],[673,140],[675,141],[671,142],[638,143],[672,144],[676,145],[529,146],[678,147],[636,148],[635,149],[639,150],[677,151],[634,152],[641,153],[684,154],[680,155],[681,155],[682,156],[683,155],[951,157],[946,158],[944,159],[949,160],[939,161],[943,162],[941,163],[938,164],[948,165],[959,166],[958,167],[957,168],[430,169],[404,170],[425,171],[426,172],[420,173],[409,174],[424,175],[412,176],[429,177],[411,178],[418,179],[413,180],[421,181],[408,182],[414,183],[415,184],[422,185],[417,172],[423,186],[713,187],[715,10],[837,188],[836,10],[835,10],[830,189],[829,10],[832,189],[831,10],[718,190],[711,187],[712,187],[717,187],[716,191],[834,189],[833,10],[710,10],[828,192],[827,193],[400,194],[1040,195],[1042,196],[937,195],[903,197],[1059,198],[1047,199],[1048,200],[1046,201],[1049,202],[1050,203],[1051,204],[1052,205],[1053,206],[1054,207],[1055,208],[1056,209],[1057,210],[1058,211],[904,197],[1060,212],[78,213],[80,214],[81,215],[82,216],[83,217],[84,218],[85,219],[86,220],[87,221],[88,222],[89,223],[90,224],[91,225],[92,226],[93,227],[94,228],[95,229],[121,230],[96,231],[97,232],[98,233],[99,234],[100,235],[101,236],[102,237],[103,238],[104,239],[105,240],[106,241],[107,242],[108,243],[109,244],[110,245],[111,246],[112,247],[113,248],[114,249],[115,250],[116,251],[117,252],[118,253],[119,254],[1062,255],[1061,256],[71,257],[632,10],[1038,258],[1037,259],[725,91],[328,260],[329,261],[726,262],[540,263],[606,264],[605,265],[604,266],[545,267],[561,268],[559,269],[560,270],[546,271],[629,272],[534,273],[538,274],[558,275],[553,276],[539,277],[554,278],[557,279],[552,280],[555,279],[556,281],[562,282],[544,283],[542,284],[551,285],[548,286],[547,286],[543,287],[549,288],[563,289],[625,290],[619,291],[612,292],[611,293],[620,294],[621,279],[613,295],[626,296],[607,297],[608,298],[609,299],[628,300],[610,293],[614,296],[615,301],[622,302],[623,277],[624,301],[616,299],[627,279],[617,303],[618,304],[564,305],[603,306],[567,307],[568,307],[569,307],[570,307],[571,307],[572,307],[573,307],[574,307],[593,307],[575,307],[576,307],[577,307],[578,307],[579,307],[580,307],[600,307],[581,307],[582,307],[583,307],[598,307],[584,307],[599,307],[585,307],[596,307],[597,307],[586,307],[587,307],[588,307],[594,307],[595,307],[589,307],[590,307],[591,307],[592,307],[601,307],[602,307],[566,308],[565,309],[966,310],[965,311],[964,312],[978,313],[977,314],[1004,315],[1003,316],[1006,317],[1005,318],[932,319],[906,320],[907,320],[908,320],[909,320],[910,320],[911,320],[912,320],[913,320],[914,320],[915,320],[916,320],[930,321],[917,320],[918,320],[919,320],[920,320],[921,320],[922,320],[923,320],[924,320],[926,320],[927,320],[925,320],[928,320],[929,320],[931,320],[905,322],[1001,323],[981,324],[982,324],[983,324],[984,324],[985,324],[986,324],[987,325],[989,324],[988,324],[1000,326],[990,324],[992,324],[991,324],[994,324],[993,324],[995,324],[996,324],[997,324],[998,324],[999,324],[980,327],[979,328],[972,329],[971,330],[970,330],[975,331],[973,330],[974,330],[976,330],[960,332],[953,333],[952,334],[961,335],[954,336],[875,337],[870,338],[869,338],[868,338],[848,338],[858,338],[857,338],[867,338],[866,338],[856,338],[864,338],[873,338],[874,338],[850,338],[847,10],[851,338],[865,338],[849,339],[863,338],[859,338],[853,338],[852,338],[855,338],[854,338],[872,338],[860,338],[861,338],[862,338],[871,338],[845,340],[846,340],[686,341],[685,10],[77,342],[275,343],[279,344],[281,345],[144,346],[149,347],[248,348],[221,349],[229,350],[246,351],[145,352],[197,353],[247,354],[173,355],[146,356],[177,355],[165,355],[127,355],[214,357],[211,358],[209,10],[212,359],[298,360],[219,10],[296,361],[213,10],[202,362],[210,363],[224,364],[225,365],[154,366],[216,10],[291,367],[294,368],[184,369],[183,370],[182,371],[301,10],[181,372],[1024,373],[308,374],[305,10],[307,375],[125,376],[269,377],[267,378],[268,378],[274,372],[282,379],[286,380],[136,381],[204,382],[220,383],[223,384],[200,385],[135,386],[170,387],[239,388],[128,389],[134,390],[124,391],[250,392],[261,393],[260,394],[157,395],[238,396],[193,397],[178,397],[232,398],[179,398],[130,399],[236,400],[235,401],[234,402],[233,403],[131,404],[208,405],[222,406],[207,407],[228,408],[230,409],[227,407],[174,404],[240,410],[198,411],[259,412],[152,413],[254,414],[255,415],[257,416],[258,417],[252,389],[175,418],[241,419],[262,420],[156,421],[231,422],[133,423],[151,424],[150,425],[167,426],[166,427],[158,428],[201,429],[199,361],[160,430],[162,431],[309,432],[161,433],[163,434],[164,435],[206,10],[226,436],[195,437],[284,10],[290,438],[192,10],[288,10],[191,439],[271,440],[190,438],[292,441],[188,10],[189,10],[187,442],[186,443],[176,444],[171,445],[169,446],[205,10],[273,447],[75,448],[72,10],[251,449],[245,450],[244,451],[283,452],[285,453],[287,454],[1025,455],[289,456],[314,457],[293,457],[313,458],[295,459],[315,460],[299,461],[300,462],[302,463],[310,464],[311,465],[270,466],[942,195],[406,467],[528,468],[657,469],[658,469],[670,470],[659,471],[660,472],[655,473],[653,474],[648,475],[652,476],[650,477],[656,478],[645,479],[646,480],[647,481],[649,482],[651,483],[654,484],[661,471],[662,471],[663,471],[664,469],[665,471],[666,471],[643,471],[669,485],[668,471],[817,486],[816,487],[883,488],[882,488],[884,488],[818,488],[702,488],[699,10],[700,10],[701,489],[881,488],[885,488],[886,488],[968,490],[967,491],[963,312],[1019,492],[1009,312],[1018,493],[1017,494],[1012,495],[1011,312],[1014,496],[1013,497],[1007,498],[935,499],[934,500],[1008,501],[1035,502],[403,503],[401,504],[933,505],[899,506],[898,197],[902,507],[901,508],[1034,509],[1033,510],[1022,511],[1029,512],[1030,513],[695,514],[1039,515],[1031,516]],"semanticDiagnosticsPerFile":[319,331,703,704,709,719,722,723,819,820,821,822,823,824,825,826,889,839,840,843,876,878,879,880,887,721,708,705,707,706,333,888,838,842,1020,1021,334,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,335,336,332,687,688,689,891,892,893,894,896,895,890,1027,690,318,330,691,692,693,316,794,795,796,783,784,793,744,745,774,777,778,775,776,782,779,780,781,791,786,792,785,787,788,789,790,798,799,800,803,806,801,802,804,805,813,807,808,809,810,811,812,797,724,728,729,742,736,737,731,739,734,733,740,732,741,735,738,743,746,747,748,749,750,751,752,773,753,754,760,766,762,771,767,768,769,763,765,764,770,761,772,755,727,730,756,757,758,759,320,326,324,327,325,321,322,323,877,630,447,449,448,451,450,477,491,455,471,469,485,487,452,457,489,481,479,463,494,453,473,475,465,467,459,493,461,483,476,490,454,470,468,484,486,456,488,480,478,462,495,472,474,464,466,458,492,460,482,512,496,497,502,513,498,499,500,501,514,503,515,516,525,504,517,505,518,506,519,520,507,508,521,522,509,523,510,511,524,436,435,443,434,432,444,446,445,441,442,437,440,433,431,438,439,526,633,679,631,673,675,671,638,637,672,676,529,678,636,635,639,677,634,641,674,684,640,680,681,682,683,951,946,944,949,945,939,943,941,938,950,948,959,958,956,955,957,272,430,404,425,426,420,409,424,407,412,429,411,427,418,413,421,428,408,416,419,414,415,422,417,423,713,715,837,836,835,830,829,832,831,718,711,712,717,716,834,833,710,828,827,714,1026,400,399,1040,1042,937,936,1043,903,1044,1045,1059,1047,1048,1046,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,904,1060,947,1041,78,80,81,82,83,84,85,86,87,88,89,90,91,92,79,120,93,94,95,121,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,1062,1061,527,1063,67,71,632,69,1064,70,897,1036,1038,1037,725,328,329,726,697,68,540,606,605,604,545,561,559,560,546,629,531,533,534,535,538,541,558,536,553,539,554,557,552,555,532,537,556,562,550,544,542,551,548,547,543,549,563,625,619,612,611,620,621,613,626,607,608,609,628,610,614,615,622,623,624,616,627,617,618,564,603,567,568,569,570,571,572,573,574,593,575,576,577,578,579,580,600,581,582,583,598,584,599,585,596,597,586,587,588,594,595,589,590,591,592,601,602,566,565,530,966,965,964,410,815,694,841,1002,978,977,1004,1003,1006,1005,932,906,907,908,909,910,911,912,913,914,915,916,930,917,918,919,920,921,922,923,924,926,927,925,928,929,931,905,1001,981,982,983,984,985,986,987,989,988,1000,990,992,991,994,993,995,996,997,998,999,980,979,972,971,970,975,973,974,976,969,405,960,953,952,961,954,1028,875,870,869,868,848,858,857,867,866,856,864,873,874,850,847,851,865,849,863,859,853,852,855,854,872,860,861,862,871,845,846,844,686,685,77,275,279,281,144,149,248,221,229,246,145,196,197,247,173,146,177,165,127,214,132,211,209,153,212,298,219,297,296,213,202,210,224,225,217,154,215,216,291,294,184,183,182,301,181,159,304,1024,1023,306,308,305,307,123,242,125,263,264,266,269,265,267,268,143,148,274,282,286,136,204,203,220,218,223,200,135,170,239,128,134,124,250,261,249,260,172,157,238,237,193,178,232,179,130,129,236,235,234,233,131,208,222,207,228,230,227,174,122,240,198,259,152,254,147,255,257,258,253,252,175,241,262,137,142,139,140,141,155,156,231,133,138,151,150,167,166,158,201,199,160,162,309,161,163,277,278,276,303,164,206,76,226,185,195,284,290,192,288,191,271,190,126,292,188,189,180,194,187,186,176,171,256,169,168,280,205,273,66,75,72,73,74,251,245,243,244,283,285,287,1025,289,314,293,313,295,315,299,300,302,310,312,311,270,942,406,528,642,657,658,670,659,660,655,653,644,648,652,650,656,645,646,647,649,651,654,661,662,663,664,665,666,643,667,669,668,817,816,814,883,882,884,818,702,699,700,698,701,881,885,886,720,968,967,963,962,1019,1009,1010,1018,1015,1017,1012,1011,1014,1013,1007,935,934,1008,1035,940,1016,403,401,64,65,12,13,15,14,2,16,17,18,19,20,21,22,23,3,4,24,28,25,26,27,29,30,31,5,32,33,34,35,6,39,36,37,38,40,7,41,46,47,42,43,44,45,8,51,48,49,50,52,9,53,54,55,58,56,57,59,60,10,1,11,63,62,61,402,933,899,898,902,901,900,1032,1034,1033,1022,1029,1030,695,1039,1031,696,317],"affectedFilesPendingEmit":[319,331,703,704,709,719,722,723,819,820,821,822,823,824,825,826,889,839,840,843,876,878,879,880,887,721,708,705,707,706,333,888,838,842,1020,1021,334,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,335,336,332,687,688,689,891,892,893,894,896,895,890,1027,690,318,330,691,692,693,1022,1029,1030,695,1039,1031,696,317]},"version":"5.2.2"} \ No newline at end of file +{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.es2022.d.ts","./node_modules/typescript/lib/lib.es2023.d.ts","./node_modules/typescript/lib/lib.esnext.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.es2022.array.d.ts","./node_modules/typescript/lib/lib.es2022.error.d.ts","./node_modules/typescript/lib/lib.es2022.intl.d.ts","./node_modules/typescript/lib/lib.es2022.object.d.ts","./node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2022.string.d.ts","./node_modules/typescript/lib/lib.es2022.regexp.d.ts","./node_modules/typescript/lib/lib.es2023.array.d.ts","./node_modules/typescript/lib/lib.es2023.collection.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/typescript/lib/lib.esnext.disposable.d.ts","./node_modules/typescript/lib/lib.esnext.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/next/dist/styled-jsx/types/css.d.ts","./node_modules/@types/react/global.d.ts","./node_modules/csstype/index.d.ts","./node_modules/@types/react/node_modules/@types/prop-types/index.d.ts","./node_modules/@types/scheduler/tracing.d.ts","./node_modules/@types/react/index.d.ts","./node_modules/next/dist/styled-jsx/types/index.d.ts","./node_modules/next/dist/styled-jsx/types/macro.d.ts","./node_modules/next/dist/styled-jsx/types/style.d.ts","./node_modules/next/dist/styled-jsx/types/global.d.ts","./node_modules/next/dist/shared/lib/amp.d.ts","./node_modules/next/amp.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/next/dist/server/get-page-files.d.ts","./node_modules/next/dist/compiled/webpack/webpack.d.ts","./node_modules/next/dist/server/config.d.ts","./node_modules/next/dist/lib/load-custom-routes.d.ts","./node_modules/next/dist/shared/lib/image-config.d.ts","./node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","./node_modules/next/dist/server/body-streams.d.ts","./node_modules/next/dist/server/future/route-kind.d.ts","./node_modules/next/dist/server/future/route-definitions/route-definition.d.ts","./node_modules/next/dist/server/future/route-matches/route-match.d.ts","./node_modules/next/dist/client/components/app-router-headers.d.ts","./node_modules/next/dist/server/request-meta.d.ts","./node_modules/next/dist/server/config-shared.d.ts","./node_modules/next/dist/server/base-http/index.d.ts","./node_modules/next/dist/server/api-utils/index.d.ts","./node_modules/next/dist/server/node-environment.d.ts","./node_modules/next/dist/server/require-hook.d.ts","./node_modules/next/dist/server/node-polyfill-fetch.d.ts","./node_modules/next/dist/server/node-polyfill-form.d.ts","./node_modules/next/dist/server/node-polyfill-web-streams.d.ts","./node_modules/next/dist/server/node-polyfill-crypto.d.ts","./node_modules/next/dist/lib/polyfill-promise-with-resolvers.d.ts","./node_modules/next/dist/build/analysis/get-page-static-info.d.ts","./node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","./node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","./node_modules/next/dist/server/lib/revalidate.d.ts","./node_modules/next/dist/lib/setup-exception-listeners.d.ts","./node_modules/next/dist/build/index.d.ts","./node_modules/next/dist/server/response-cache/types.d.ts","./node_modules/next/dist/server/response-cache/index.d.ts","./node_modules/next/dist/server/lib/incremental-cache/index.d.ts","./node_modules/next/dist/client/components/hooks-server-context.d.ts","./node_modules/next/dist/client/components/static-generation-async-storage.external.d.ts","./node_modules/next/dist/server/pipe-readable.d.ts","./node_modules/next/dist/server/render-result.d.ts","./node_modules/next/dist/server/future/helpers/i18n-provider.d.ts","./node_modules/next/dist/server/web/next-url.d.ts","./node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","./node_modules/next/dist/server/web/spec-extension/cookies.d.ts","./node_modules/next/dist/server/web/spec-extension/request.d.ts","./node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","./node_modules/next/dist/server/web/spec-extension/response.d.ts","./node_modules/next/dist/server/web/types.d.ts","./node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","./node_modules/next/dist/server/send-payload/revalidate-headers.d.ts","./node_modules/next/dist/server/send-payload/index.d.ts","./node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","./node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","./node_modules/next/dist/server/base-http/node.d.ts","./node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","./node_modules/next/dist/server/font-utils.d.ts","./node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","./node_modules/next/dist/server/future/route-modules/route-module.d.ts","./node_modules/next/dist/server/load-components.d.ts","./node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","./node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","./node_modules/next/dist/server/future/route-definitions/locale-route-definition.d.ts","./node_modules/next/dist/server/future/route-definitions/pages-route-definition.d.ts","./node_modules/next/dist/shared/lib/mitt.d.ts","./node_modules/next/dist/client/with-router.d.ts","./node_modules/next/dist/client/router.d.ts","./node_modules/next/dist/client/route-loader.d.ts","./node_modules/next/dist/client/page-loader.d.ts","./node_modules/next/dist/shared/lib/bloom-filter.d.ts","./node_modules/next/dist/shared/lib/router/router.d.ts","./node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","./node_modules/next/dist/server/future/route-definitions/app-page-route-definition.d.ts","./node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","./node_modules/next/dist/shared/lib/constants.d.ts","./node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","./node_modules/next/dist/build/webpack/loaders/next-app-loader.d.ts","./node_modules/next/dist/server/lib/app-dir-module.d.ts","./node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","./node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","./node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","./node_modules/next/dist/client/components/request-async-storage.external.d.ts","./node_modules/next/dist/server/app-render/create-error-handler.d.ts","./node_modules/next/dist/server/app-render/app-render.d.ts","./node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","./node_modules/next/dist/shared/lib/amp-context.shared-runtime.d.ts","./node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints.d.ts","./node_modules/next/dist/server/future/route-modules/app-page/module.compiled.d.ts","./node_modules/next/dist/client/components/error-boundary.d.ts","./node_modules/next/dist/client/components/router-reducer/create-initial-router-state.d.ts","./node_modules/next/dist/client/components/app-router.d.ts","./node_modules/next/dist/client/components/layout-router.d.ts","./node_modules/next/dist/client/components/render-from-template-context.d.ts","./node_modules/next/dist/client/components/action-async-storage.external.d.ts","./node_modules/next/dist/client/components/static-generation-bailout.d.ts","./node_modules/next/dist/client/components/static-generation-searchparams-bailout-provider.d.ts","./node_modules/next/dist/client/components/searchparams-bailout-proxy.d.ts","./node_modules/next/dist/server/app-render/rsc/preloads.d.ts","./node_modules/next/dist/client/components/not-found-boundary.d.ts","./node_modules/next/dist/server/app-render/entry-base.d.ts","./node_modules/next/dist/build/templates/app-page.d.ts","./node_modules/next/dist/server/future/route-modules/app-page/module.d.ts","./node_modules/next/dist/server/app-render/types.d.ts","./node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","./node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","./node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","./node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints.d.ts","./node_modules/next/dist/server/future/route-modules/pages/module.compiled.d.ts","./node_modules/next/dist/build/templates/pages.d.ts","./node_modules/next/dist/server/future/route-modules/pages/module.d.ts","./node_modules/next/dist/server/render.d.ts","./node_modules/next/dist/server/future/route-definitions/pages-api-route-definition.d.ts","./node_modules/next/dist/server/future/route-matches/pages-api-route-match.d.ts","./node_modules/next/dist/server/future/route-matchers/route-matcher.d.ts","./node_modules/next/dist/server/future/route-matcher-providers/route-matcher-provider.d.ts","./node_modules/next/dist/server/future/route-matcher-managers/route-matcher-manager.d.ts","./node_modules/next/dist/server/future/normalizers/normalizer.d.ts","./node_modules/next/dist/server/future/normalizers/locale-route-normalizer.d.ts","./node_modules/next/dist/server/base-server.d.ts","./node_modules/next/dist/server/image-optimizer.d.ts","./node_modules/next/dist/server/next-server.d.ts","./node_modules/next/dist/lib/coalesced-function.d.ts","./node_modules/next/dist/trace/shared.d.ts","./node_modules/next/dist/trace/trace.d.ts","./node_modules/next/dist/trace/index.d.ts","./node_modules/next/dist/build/webpack-config.d.ts","./node_modules/next/dist/build/webpack/plugins/define-env-plugin.d.ts","./node_modules/next/dist/build/swc/index.d.ts","./node_modules/next/dist/server/dev/parse-version-info.d.ts","./node_modules/next/dist/server/dev/hot-reloader-types.d.ts","./node_modules/next/dist/telemetry/storage.d.ts","./node_modules/next/dist/server/lib/types.d.ts","./node_modules/next/dist/server/lib/router-utils/types.d.ts","./node_modules/next/dist/server/lib/render-server.d.ts","./node_modules/next/dist/server/lib/router-server.d.ts","./node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","./node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","./node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","./node_modules/next/dist/server/lib/dev-bundler-service.d.ts","./node_modules/next/dist/server/dev/static-paths-worker.d.ts","./node_modules/next/dist/server/dev/next-dev-server.d.ts","./node_modules/next/dist/server/next.d.ts","./node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","./node_modules/next/dist/lib/metadata/types/extra-types.d.ts","./node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","./node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","./node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","./node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","./node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","./node_modules/next/types/index.d.ts","./node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","./node_modules/@next/env/dist/index.d.ts","./node_modules/next/dist/shared/lib/utils.d.ts","./node_modules/next/dist/pages/_app.d.ts","./node_modules/next/app.d.ts","./node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","./node_modules/next/dist/server/web/spec-extension/revalidate-path.d.ts","./node_modules/next/dist/server/web/spec-extension/revalidate-tag.d.ts","./node_modules/next/cache.d.ts","./node_modules/next/dist/shared/lib/runtime-config.external.d.ts","./node_modules/next/config.d.ts","./node_modules/next/dist/pages/_document.d.ts","./node_modules/next/document.d.ts","./node_modules/next/dist/shared/lib/dynamic.d.ts","./node_modules/next/dynamic.d.ts","./node_modules/next/dist/pages/_error.d.ts","./node_modules/next/error.d.ts","./node_modules/next/dist/shared/lib/head.d.ts","./node_modules/next/head.d.ts","./node_modules/next/dist/shared/lib/get-img-props.d.ts","./node_modules/next/dist/client/image-component.d.ts","./node_modules/next/dist/shared/lib/image-external.d.ts","./node_modules/next/image.d.ts","./node_modules/next/dist/client/link.d.ts","./node_modules/next/link.d.ts","./node_modules/next/dist/client/components/redirect.d.ts","./node_modules/next/dist/client/components/not-found.d.ts","./node_modules/next/dist/client/components/navigation.d.ts","./node_modules/next/navigation.d.ts","./node_modules/next/router.d.ts","./node_modules/next/dist/client/script.d.ts","./node_modules/next/script.d.ts","./node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","./node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","./node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","./node_modules/next/dist/compiled/@vercel/og/emoji/index.d.ts","./node_modules/next/dist/compiled/@vercel/og/types.d.ts","./node_modules/next/dist/compiled/@vercel/og/index.node.d.ts","./node_modules/next/dist/server/web/spec-extension/image-response.d.ts","./node_modules/next/server.d.ts","./node_modules/next/types/global.d.ts","./node_modules/next/types/compiled.d.ts","./node_modules/next/index.d.ts","./node_modules/next/image-types/global.d.ts","./node_modules/next/navigation-types/compat/navigation.d.ts","./next-env.d.ts","./types.ts","./lib/constants.ts","./app/robots.ts","./node_modules/@algolia/cache-common/dist/cache-common.d.ts","./node_modules/@algolia/logger-common/dist/logger-common.d.ts","./node_modules/@algolia/requester-common/dist/requester-common.d.ts","./node_modules/@algolia/transporter/dist/transporter.d.ts","./node_modules/@algolia/client-common/dist/client-common.d.ts","./node_modules/@algolia/client-search/dist/client-search.d.ts","./node_modules/@algolia/client-analytics/dist/client-analytics.d.ts","./node_modules/@algolia/client-personalization/dist/client-personalization.d.ts","./node_modules/algoliasearch/dist/algoliasearch.d.ts","./node_modules/algoliasearch/index.d.ts","./lib/content.server.ts","./app/sitemap.ts","./node_modules/@scalar/openapi-types/dist/openapi-types.d.ts","./node_modules/@scalar/openapi-types/dist/index.d.ts","./node_modules/@scalar/openapi-parser/dist/configuration/index.d.ts","./node_modules/fast-uri/types/index.d.ts","./node_modules/ajv/dist/compile/codegen/code.d.ts","./node_modules/ajv/dist/compile/codegen/scope.d.ts","./node_modules/ajv/dist/compile/codegen/index.d.ts","./node_modules/ajv/dist/compile/rules.d.ts","./node_modules/ajv/dist/compile/util.d.ts","./node_modules/ajv/dist/compile/validate/subschema.d.ts","./node_modules/ajv/dist/compile/errors.d.ts","./node_modules/ajv/dist/compile/validate/index.d.ts","./node_modules/ajv/dist/compile/validate/datatype.d.ts","./node_modules/ajv/dist/vocabularies/applicator/additionalitems.d.ts","./node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts","./node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","./node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","./node_modules/ajv/dist/vocabularies/applicator/propertynames.d.ts","./node_modules/ajv/dist/vocabularies/applicator/additionalproperties.d.ts","./node_modules/ajv/dist/vocabularies/applicator/not.d.ts","./node_modules/ajv/dist/vocabularies/applicator/anyof.d.ts","./node_modules/ajv/dist/vocabularies/applicator/oneof.d.ts","./node_modules/ajv/dist/vocabularies/applicator/if.d.ts","./node_modules/ajv/dist/vocabularies/applicator/index.d.ts","./node_modules/ajv/dist/vocabularies/validation/limitnumber.d.ts","./node_modules/ajv/dist/vocabularies/validation/multipleof.d.ts","./node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","./node_modules/ajv/dist/vocabularies/validation/required.d.ts","./node_modules/ajv/dist/vocabularies/validation/uniqueitems.d.ts","./node_modules/ajv/dist/vocabularies/validation/const.d.ts","./node_modules/ajv/dist/vocabularies/validation/enum.d.ts","./node_modules/ajv/dist/vocabularies/validation/index.d.ts","./node_modules/ajv/dist/vocabularies/format/format.d.ts","./node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedproperties.d.ts","./node_modules/ajv/dist/vocabularies/unevaluated/unevaluateditems.d.ts","./node_modules/ajv/dist/vocabularies/validation/dependentrequired.d.ts","./node_modules/ajv/dist/vocabularies/discriminator/types.d.ts","./node_modules/ajv/dist/vocabularies/discriminator/index.d.ts","./node_modules/ajv/dist/vocabularies/errors.d.ts","./node_modules/ajv/dist/types/json-schema.d.ts","./node_modules/ajv/dist/runtime/validation_error.d.ts","./node_modules/ajv/dist/compile/ref_error.d.ts","./node_modules/ajv/dist/ajv.d.ts","./node_modules/ajv/dist/compile/resolve.d.ts","./node_modules/ajv/dist/compile/index.d.ts","./node_modules/ajv/dist/types/index.d.ts","./node_modules/ajv/dist/types/jtd-schema.d.ts","./node_modules/ajv/dist/core.d.ts","./node_modules/ajv-draft-04/dist/index.d.ts","./node_modules/ajv/dist/2020.d.ts","./node_modules/@scalar/openapi-parser/dist/types/index.d.ts","./node_modules/@scalar/openapi-parser/dist/lib/validator/validator.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/resolvereferences.d.ts","./node_modules/@scalar/openapi-parser/dist/lib/validator/index.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/dereference.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/details.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/escapejsonpointer.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/filter.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/getentrypoint.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/getlistofreferences.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/getsegmentsfrompath.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/isfilesystem.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/isjson.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/isobject.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/isyaml.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/load/load.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/load/index.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/normalize.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/validate.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/openapi/openapi.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/openapi/index.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/tojson.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/toyaml.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/transformerrors.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/traverse.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/unescapejsonpointer.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/upgrade.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/upgradefromthreetothreeone.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/upgradefromtwotothree.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/transform/utils/addlatestopenapiversion.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/transform/utils/addinfoobject.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/transform/sanitize.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/transform/index.d.ts","./node_modules/@scalar/openapi-parser/dist/utils/index.d.ts","./node_modules/@scalar/openapi-parser/dist/index.d.ts","./node_modules/deepmerge/index.d.ts","./node_modules/yaml/dist/parse/line-counter.d.ts","./node_modules/yaml/dist/errors.d.ts","./node_modules/yaml/dist/doc/applyreviver.d.ts","./node_modules/yaml/dist/log.d.ts","./node_modules/yaml/dist/nodes/tojs.d.ts","./node_modules/yaml/dist/nodes/scalar.d.ts","./node_modules/yaml/dist/stringify/stringify.d.ts","./node_modules/yaml/dist/nodes/collection.d.ts","./node_modules/yaml/dist/nodes/yamlseq.d.ts","./node_modules/yaml/dist/schema/types.d.ts","./node_modules/yaml/dist/schema/common/map.d.ts","./node_modules/yaml/dist/schema/common/seq.d.ts","./node_modules/yaml/dist/schema/common/string.d.ts","./node_modules/yaml/dist/stringify/foldflowlines.d.ts","./node_modules/yaml/dist/stringify/stringifynumber.d.ts","./node_modules/yaml/dist/stringify/stringifystring.d.ts","./node_modules/yaml/dist/util.d.ts","./node_modules/yaml/dist/nodes/yamlmap.d.ts","./node_modules/yaml/dist/nodes/identity.d.ts","./node_modules/yaml/dist/schema/schema.d.ts","./node_modules/yaml/dist/doc/createnode.d.ts","./node_modules/yaml/dist/nodes/addpairtojsmap.d.ts","./node_modules/yaml/dist/nodes/pair.d.ts","./node_modules/yaml/dist/schema/tags.d.ts","./node_modules/yaml/dist/options.d.ts","./node_modules/yaml/dist/nodes/node.d.ts","./node_modules/yaml/dist/parse/cst-scalar.d.ts","./node_modules/yaml/dist/parse/cst-stringify.d.ts","./node_modules/yaml/dist/parse/cst-visit.d.ts","./node_modules/yaml/dist/parse/cst.d.ts","./node_modules/yaml/dist/nodes/alias.d.ts","./node_modules/yaml/dist/doc/document.d.ts","./node_modules/yaml/dist/doc/directives.d.ts","./node_modules/yaml/dist/compose/composer.d.ts","./node_modules/yaml/dist/parse/lexer.d.ts","./node_modules/yaml/dist/parse/parser.d.ts","./node_modules/yaml/dist/public-api.d.ts","./node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts","./node_modules/yaml/dist/schema/yaml-1.1/set.d.ts","./node_modules/yaml/dist/visit.d.ts","./node_modules/yaml/dist/index.d.ts","./lib/openapispec.ts","./node_modules/jsonpointer/jsonpointer.d.ts","./data/types.ts","./components/apireference/helpers.ts","./components/attributes.tsx","./node_modules/classnames/index.d.ts","./components/endpoints.tsx","./node_modules/react-use-clipboard/dist/index.d.ts","./components/sectionheading.tsx","./components/apisections.tsx","./node_modules/next-themes/dist/types.d.ts","./node_modules/next-themes/dist/index.d.ts","./node_modules/react-icons/lib/iconsmanifest.d.ts","./node_modules/react-icons/lib/iconbase.d.ts","./node_modules/react-icons/lib/iconcontext.d.ts","./node_modules/react-icons/lib/index.d.ts","./node_modules/react-icons/io5/index.d.ts","./styles/codethemes.ts","./lib/normalizecode.ts","./hooks/useismounted.ts","./components/codeblock.tsx","./components/apireference/apireferencecontext.tsx","./components/apireference/schemaproperties/propertyrow.tsx","./components/apireference/schemaproperties/helpers.ts","./components/apireference/schemaproperties/schemaproperty.tsx","./components/apireference/schemaproperties/schemaproperties.tsx","./components/apireference/schemaproperties/index.ts","./components/apireference/operationparameters/operationparameters.tsx","./components/apireference/apireferencemethod/apireferencemethod.tsx","./components/apireference/apireferencemethod/index.ts","./node_modules/react-markdown/node_modules/@types/unist/index.d.ts","./node_modules/react-markdown/node_modules/@types/hast/index.d.ts","./node_modules/react-markdown/node_modules/vfile-message/lib/index.d.ts","./node_modules/react-markdown/node_modules/vfile-message/index.d.ts","./node_modules/react-markdown/node_modules/vfile/lib/index.d.ts","./node_modules/react-markdown/node_modules/vfile/index.d.ts","./node_modules/react-markdown/node_modules/unified/lib/callable-instance.d.ts","./node_modules/trough/index.d.ts","./node_modules/react-markdown/node_modules/unified/lib/index.d.ts","./node_modules/react-markdown/node_modules/unified/index.d.ts","./node_modules/mdast-util-to-hast/node_modules/@types/hast/index.d.ts","./node_modules/mdast-util-to-hast/node_modules/@types/unist/index.d.ts","./node_modules/mdast-util-to-hast/node_modules/@types/mdast/index.d.ts","./node_modules/mdast-util-to-hast/node_modules/vfile/index.d.ts","./node_modules/mdast-util-to-hast/lib/state.d.ts","./node_modules/mdast-util-to-hast/lib/footer.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/blockquote.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/break.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/code.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/delete.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/emphasis.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/heading.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/html.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/image-reference.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/image.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/inline-code.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/link-reference.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/link.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/list-item.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/list.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/paragraph.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/root.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/strong.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/table.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/table-cell.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/table-row.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/text.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/thematic-break.d.ts","./node_modules/mdast-util-to-hast/lib/handlers/index.d.ts","./node_modules/mdast-util-to-hast/lib/index.d.ts","./node_modules/mdast-util-to-hast/index.d.ts","./node_modules/react-markdown/node_modules/@types/mdast/index.d.ts","./node_modules/react-markdown/node_modules/remark-rehype/lib/index.d.ts","./node_modules/react-markdown/node_modules/remark-rehype/index.d.ts","./node_modules/react-markdown/lib/index.d.ts","./node_modules/react-markdown/index.d.ts","./components/apireference/apireferencesection/apireferencesection.tsx","./components/apireference/apireferencesection/index.ts","./components/apireference/index.ts","./components/apireference/operationparameters/index.ts","./components/sidebar/helpers.ts","./data/apireferencesidebar.ts","./data/integrationssidebar.ts","./data/sidebar.ts","./data/code/api/idempotency.ts","./data/code/messages/get-activities.ts","./data/code/messages/get-content.ts","./data/code/messages/get-events.ts","./data/code/messages/get.ts","./data/code/messages/list.ts","./data/code/objects/bulk-delete.ts","./data/code/objects/bulk-set.ts","./data/code/objects/delete.ts","./data/code/objects/get-channel-data.ts","./data/code/objects/get-preferences.ts","./data/code/objects/get.ts","./data/code/objects/list-preferences.ts","./data/code/objects/list.ts","./data/code/objects/messages.ts","./data/code/objects/set-channel-data-discord-bot.ts","./data/code/objects/set-channel-data-discord-webhook.ts","./data/code/objects/set-channel-data-ms-teams.ts","./data/code/objects/set-channel-data-slack.ts","./data/code/objects/set-preferences.ts","./data/code/objects/set.ts","./data/code/objects/unset-channel-data.ts","./data/code/sdks/install.ts","./data/code/sources/eventpayload.ts","./data/code/tenants/delete.ts","./data/code/tenants/get.ts","./data/code/tenants/list.ts","./data/code/tenants/set.ts","./data/code/users/bulk-delete.ts","./data/code/users/bulk-identify.ts","./data/code/users/bulk-set-preferences.ts","./data/code/users/delete.ts","./data/code/users/get-channel-data.ts","./data/code/users/get-preferences.ts","./data/code/users/get.ts","./data/code/users/identify-channel-data.ts","./data/code/users/identify.ts","./data/code/users/list-preferences.ts","./data/code/users/merge.ts","./data/code/users/messages.ts","./data/code/users/set-channel-data-one-signal.ts","./data/code/users/set-channel-data-push.ts","./data/code/users/set-channel-data.ts","./data/code/users/set-preferences-per-tenant.ts","./data/code/users/set-preferences-with-conditions.ts","./data/code/users/set-preferences.ts","./data/code/users/unset-channel-data.ts","./data/code/workflows/cancel-with-recipients.ts","./data/code/workflows/cancel.ts","./data/code/workflows/playground.ts","./data/code/workflows/trigger-with-actor.ts","./data/code/workflows/trigger-with-attachment.ts","./data/code/workflows/trigger-with-branding-tenant.ts","./data/code/workflows/trigger-with-identification.ts","./data/code/workflows/trigger-with-object-as-actor.ts","./data/code/workflows/trigger-with-object-as-recipient.ts","./data/code/workflows/trigger-with-object-identification.ts","./data/code/workflows/trigger-with-tenant.ts","./data/code/workflows/trigger-with-user-channel-data.ts","./data/code/workflows/trigger-with-user-identification.ts","./data/code/workflows/trigger-with-user-preferences.ts","./data/code/workflows/trigger.ts","./node_modules/@ts-morph/common/lib/typescript.d.ts","./node_modules/@ts-morph/common/lib/ts-morph-common.d.ts","./node_modules/ts-morph/lib/ts-morph.d.ts","./node_modules/typescript/lib/typescript.d.ts","./node_modules/ts-evaluator/dist/esm/index.d.ts","./node_modules/@pandacss/extractor/dist/index.d.ts","./node_modules/mlly/dist/index.d.ts","./node_modules/pkg-types/dist/index.d.ts","./node_modules/@pandacss/types/dist/csstype.d.ts","./node_modules/@pandacss/types/dist/selectors.d.ts","./node_modules/@pandacss/types/dist/conditions.d.ts","./node_modules/hookable/dist/index.d.ts","./node_modules/@pandacss/types/dist/parser.d.ts","./node_modules/@pandacss/types/dist/hooks.d.ts","./node_modules/@pandacss/types/dist/prop-type.d.ts","./node_modules/@pandacss/types/dist/style-props.d.ts","./node_modules/@pandacss/types/dist/system-types.d.ts","./node_modules/@pandacss/types/dist/shared.d.ts","./node_modules/@pandacss/types/dist/tokens.d.ts","./node_modules/@pandacss/types/dist/pattern.d.ts","./node_modules/@pandacss/types/dist/static-css.d.ts","./node_modules/@pandacss/types/dist/composition.d.ts","./node_modules/@pandacss/types/dist/recipe.d.ts","./node_modules/@pandacss/types/dist/theme.d.ts","./node_modules/@pandacss/types/dist/utility.d.ts","./node_modules/@pandacss/types/dist/config.d.ts","./node_modules/@pandacss/types/dist/analyze-report.d.ts","./node_modules/@pandacss/types/dist/artifact.d.ts","./node_modules/@pandacss/types/dist/parts.d.ts","./node_modules/@pandacss/types/dist/runtime.d.ts","./node_modules/@pandacss/types/dist/index.d.ts","./node_modules/@pandacss/dev/dist/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/static-css.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/csstype.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/selectors.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/conditions.d.ts","./node_modules/@inkeep/styled-system/styled-system/tokens/tokens.d.ts","./node_modules/@inkeep/styled-system/styled-system/tokens/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/prop-type.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/style-props.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/system-types.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/recipe.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/parts.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/pattern.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/composition.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/global.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/jsx.d.ts","./node_modules/@inkeep/styled-system/styled-system/types/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/css/css.d.ts","./node_modules/@inkeep/styled-system/styled-system/css/cx.d.ts","./node_modules/@inkeep/styled-system/styled-system/css/cva.d.ts","./node_modules/@inkeep/styled-system/styled-system/css/sva.d.ts","./node_modules/@inkeep/styled-system/styled-system/css/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/factory.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/is-valid-prop.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/box.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/box.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/flex.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/flex.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/stack.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/stack.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/vstack.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/vstack.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/hstack.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/hstack.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/spacer.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/spacer.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/square.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/square.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/circle.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/circle.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/center.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/center.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/link-box.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/link-box.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/link-overlay.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/link-overlay.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/aspect-ratio.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/aspect-ratio.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/grid.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/grid.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/grid-item.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/grid-item.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/wrap.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/wrap.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/container.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/container.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/divider.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/divider.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/float.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/float.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/bleed.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/bleed.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/visually-hidden.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/visually-hidden.d.ts","./node_modules/@inkeep/styled-system/styled-system/jsx/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/patterns/index.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/alert.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/avatar.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/card.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/checkbox.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/close-button.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/code.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/badge.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/form-control.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/input.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/link.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/popover.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/select.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/skeleton.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/table.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/tag.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/textarea.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/ai-chat-page-wrapper.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/button.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/content-parser.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/heading.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/icon.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/kbd.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/modal.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/preview-content-header.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/search-bar-trigger.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/switch-recipe.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/switch-to-chat-button.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/tabs.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/tooltip.d.ts","./node_modules/@inkeep/styled-system/styled-system/recipes/index.d.ts","./node_modules/@inkeep/styled-system/system.d.ts","./node_modules/@types/prismjs/index.d.ts","./node_modules/prism-react-renderer/dist/index.d.ts","./node_modules/@types/react/jsx-runtime.d.ts","./node_modules/@inkeep/color-mode/dist/color-mode.d.ts","./node_modules/colorjs.io/types/src/adapt.d.ts","./node_modules/colorjs.io/types/src/defaults.d.ts","./node_modules/colorjs.io/types/src/hooks.d.ts","./node_modules/colorjs.io/types/src/multiply-matrices.d.ts","./node_modules/colorjs.io/types/src/util.d.ts","./node_modules/colorjs.io/types/src/space.d.ts","./node_modules/colorjs.io/types/src/rgbspace.d.ts","./node_modules/colorjs.io/types/src/getcolor.d.ts","./node_modules/colorjs.io/types/src/get.d.ts","./node_modules/colorjs.io/types/src/getall.d.ts","./node_modules/colorjs.io/types/src/set.d.ts","./node_modules/colorjs.io/types/src/setall.d.ts","./node_modules/colorjs.io/types/src/parse.d.ts","./node_modules/colorjs.io/types/src/to.d.ts","./node_modules/colorjs.io/types/src/serialize.d.ts","./node_modules/colorjs.io/types/src/display.d.ts","./node_modules/colorjs.io/types/src/ingamut.d.ts","./node_modules/colorjs.io/types/src/togamut.d.ts","./node_modules/colorjs.io/types/src/distance.d.ts","./node_modules/colorjs.io/types/src/equals.d.ts","./node_modules/colorjs.io/types/src/contrast/wcag21.d.ts","./node_modules/colorjs.io/types/src/contrast/apca.d.ts","./node_modules/colorjs.io/types/src/contrast/michelson.d.ts","./node_modules/colorjs.io/types/src/contrast/weber.d.ts","./node_modules/colorjs.io/types/src/contrast/lstar.d.ts","./node_modules/colorjs.io/types/src/contrast/deltaphi.d.ts","./node_modules/colorjs.io/types/src/contrast/index.d.ts","./node_modules/colorjs.io/types/src/contrast.d.ts","./node_modules/colorjs.io/types/src/clone.d.ts","./node_modules/colorjs.io/types/src/luminance.d.ts","./node_modules/colorjs.io/types/src/deltae/deltae76.d.ts","./node_modules/colorjs.io/types/src/deltae/deltaecmc.d.ts","./node_modules/colorjs.io/types/src/deltae/deltae2000.d.ts","./node_modules/colorjs.io/types/src/deltae/deltaejz.d.ts","./node_modules/colorjs.io/types/src/deltae/deltaeitp.d.ts","./node_modules/colorjs.io/types/src/deltae/deltaeok.d.ts","./node_modules/colorjs.io/types/src/deltae/index.d.ts","./node_modules/colorjs.io/types/src/deltae.d.ts","./node_modules/colorjs.io/types/src/interpolation.d.ts","./node_modules/colorjs.io/types/src/variations.d.ts","./node_modules/colorjs.io/types/src/spaces/xyz-d65.d.ts","./node_modules/colorjs.io/types/src/spaces/xyz-d50.d.ts","./node_modules/colorjs.io/types/src/spaces/xyz-abs-d65.d.ts","./node_modules/colorjs.io/types/src/spaces/lab.d.ts","./node_modules/colorjs.io/types/src/spaces/lab-d65.d.ts","./node_modules/colorjs.io/types/src/spaces/lch.d.ts","./node_modules/colorjs.io/types/src/spaces/srgb-linear.d.ts","./node_modules/colorjs.io/types/src/spaces/srgb.d.ts","./node_modules/colorjs.io/types/src/spaces/hsl.d.ts","./node_modules/colorjs.io/types/src/spaces/hwb.d.ts","./node_modules/colorjs.io/types/src/spaces/hsv.d.ts","./node_modules/colorjs.io/types/src/spaces/p3-linear.d.ts","./node_modules/colorjs.io/types/src/spaces/p3.d.ts","./node_modules/colorjs.io/types/src/spaces/a98rgb-linear.d.ts","./node_modules/colorjs.io/types/src/spaces/a98rgb.d.ts","./node_modules/colorjs.io/types/src/spaces/prophoto-linear.d.ts","./node_modules/colorjs.io/types/src/spaces/prophoto.d.ts","./node_modules/colorjs.io/types/src/spaces/rec2020-linear.d.ts","./node_modules/colorjs.io/types/src/spaces/rec2020.d.ts","./node_modules/colorjs.io/types/src/spaces/oklab.d.ts","./node_modules/colorjs.io/types/src/spaces/oklch.d.ts","./node_modules/colorjs.io/types/src/spaces/jzazbz.d.ts","./node_modules/colorjs.io/types/src/spaces/jzczhz.d.ts","./node_modules/colorjs.io/types/src/spaces/ictcp.d.ts","./node_modules/colorjs.io/types/src/spaces/rec2100-pq.d.ts","./node_modules/colorjs.io/types/src/spaces/rec2100-hlg.d.ts","./node_modules/colorjs.io/types/src/spaces/acescg.d.ts","./node_modules/colorjs.io/types/src/spaces/acescc.d.ts","./node_modules/colorjs.io/types/src/spaces/index-fn-hdr.d.ts","./node_modules/colorjs.io/types/src/spaces/index-fn.d.ts","./node_modules/colorjs.io/types/src/index-fn.d.ts","./node_modules/colorjs.io/types/src/color.d.ts","./node_modules/colorjs.io/types/src/chromaticity.d.ts","./node_modules/colorjs.io/types/src/index.d.ts","./node_modules/colorjs.io/types/dist/color.d.ts","./node_modules/colorjs.io/types/index.d.ts","./node_modules/@inkeep/preset/dist/color-scheme.d.ts","./node_modules/@inkeep/widgets/dist/components/inkeepthemetypes.d.ts","./node_modules/graphql/version.d.ts","./node_modules/graphql/jsutils/maybe.d.ts","./node_modules/graphql/language/source.d.ts","./node_modules/graphql/jsutils/objmap.d.ts","./node_modules/graphql/jsutils/path.d.ts","./node_modules/graphql/jsutils/promiseorvalue.d.ts","./node_modules/graphql/language/kinds.d.ts","./node_modules/graphql/language/tokenkind.d.ts","./node_modules/graphql/language/ast.d.ts","./node_modules/graphql/language/location.d.ts","./node_modules/graphql/error/graphqlerror.d.ts","./node_modules/graphql/language/directivelocation.d.ts","./node_modules/graphql/type/directives.d.ts","./node_modules/graphql/type/schema.d.ts","./node_modules/graphql/type/definition.d.ts","./node_modules/graphql/execution/execute.d.ts","./node_modules/graphql/graphql.d.ts","./node_modules/graphql/type/scalars.d.ts","./node_modules/graphql/type/introspection.d.ts","./node_modules/graphql/type/validate.d.ts","./node_modules/graphql/type/assertname.d.ts","./node_modules/graphql/type/index.d.ts","./node_modules/graphql/language/printlocation.d.ts","./node_modules/graphql/language/lexer.d.ts","./node_modules/graphql/language/parser.d.ts","./node_modules/graphql/language/printer.d.ts","./node_modules/graphql/language/visitor.d.ts","./node_modules/graphql/language/predicates.d.ts","./node_modules/graphql/language/index.d.ts","./node_modules/graphql/execution/subscribe.d.ts","./node_modules/graphql/execution/values.d.ts","./node_modules/graphql/execution/index.d.ts","./node_modules/graphql/subscription/index.d.ts","./node_modules/graphql/utilities/typeinfo.d.ts","./node_modules/graphql/validation/validationcontext.d.ts","./node_modules/graphql/validation/validate.d.ts","./node_modules/graphql/validation/specifiedrules.d.ts","./node_modules/graphql/validation/rules/executabledefinitionsrule.d.ts","./node_modules/graphql/validation/rules/fieldsoncorrecttyperule.d.ts","./node_modules/graphql/validation/rules/fragmentsoncompositetypesrule.d.ts","./node_modules/graphql/validation/rules/knownargumentnamesrule.d.ts","./node_modules/graphql/validation/rules/knowndirectivesrule.d.ts","./node_modules/graphql/validation/rules/knownfragmentnamesrule.d.ts","./node_modules/graphql/validation/rules/knowntypenamesrule.d.ts","./node_modules/graphql/validation/rules/loneanonymousoperationrule.d.ts","./node_modules/graphql/validation/rules/nofragmentcyclesrule.d.ts","./node_modules/graphql/validation/rules/noundefinedvariablesrule.d.ts","./node_modules/graphql/validation/rules/nounusedfragmentsrule.d.ts","./node_modules/graphql/validation/rules/nounusedvariablesrule.d.ts","./node_modules/graphql/validation/rules/overlappingfieldscanbemergedrule.d.ts","./node_modules/graphql/validation/rules/possiblefragmentspreadsrule.d.ts","./node_modules/graphql/validation/rules/providedrequiredargumentsrule.d.ts","./node_modules/graphql/validation/rules/scalarleafsrule.d.ts","./node_modules/graphql/validation/rules/singlefieldsubscriptionsrule.d.ts","./node_modules/graphql/validation/rules/uniqueargumentnamesrule.d.ts","./node_modules/graphql/validation/rules/uniquedirectivesperlocationrule.d.ts","./node_modules/graphql/validation/rules/uniquefragmentnamesrule.d.ts","./node_modules/graphql/validation/rules/uniqueinputfieldnamesrule.d.ts","./node_modules/graphql/validation/rules/uniqueoperationnamesrule.d.ts","./node_modules/graphql/validation/rules/uniquevariablenamesrule.d.ts","./node_modules/graphql/validation/rules/valuesofcorrecttyperule.d.ts","./node_modules/graphql/validation/rules/variablesareinputtypesrule.d.ts","./node_modules/graphql/validation/rules/variablesinallowedpositionrule.d.ts","./node_modules/graphql/validation/rules/loneschemadefinitionrule.d.ts","./node_modules/graphql/validation/rules/uniqueoperationtypesrule.d.ts","./node_modules/graphql/validation/rules/uniquetypenamesrule.d.ts","./node_modules/graphql/validation/rules/uniqueenumvaluenamesrule.d.ts","./node_modules/graphql/validation/rules/uniquefielddefinitionnamesrule.d.ts","./node_modules/graphql/validation/rules/uniqueargumentdefinitionnamesrule.d.ts","./node_modules/graphql/validation/rules/uniquedirectivenamesrule.d.ts","./node_modules/graphql/validation/rules/possibletypeextensionsrule.d.ts","./node_modules/graphql/validation/rules/custom/nodeprecatedcustomrule.d.ts","./node_modules/graphql/validation/rules/custom/noschemaintrospectioncustomrule.d.ts","./node_modules/graphql/validation/index.d.ts","./node_modules/graphql/error/syntaxerror.d.ts","./node_modules/graphql/error/locatederror.d.ts","./node_modules/graphql/error/index.d.ts","./node_modules/graphql/utilities/getintrospectionquery.d.ts","./node_modules/graphql/utilities/getoperationast.d.ts","./node_modules/graphql/utilities/getoperationroottype.d.ts","./node_modules/graphql/utilities/introspectionfromschema.d.ts","./node_modules/graphql/utilities/buildclientschema.d.ts","./node_modules/graphql/utilities/buildastschema.d.ts","./node_modules/graphql/utilities/extendschema.d.ts","./node_modules/graphql/utilities/lexicographicsortschema.d.ts","./node_modules/graphql/utilities/printschema.d.ts","./node_modules/graphql/utilities/typefromast.d.ts","./node_modules/graphql/utilities/valuefromast.d.ts","./node_modules/graphql/utilities/valuefromastuntyped.d.ts","./node_modules/graphql/utilities/astfromvalue.d.ts","./node_modules/graphql/utilities/coerceinputvalue.d.ts","./node_modules/graphql/utilities/concatast.d.ts","./node_modules/graphql/utilities/separateoperations.d.ts","./node_modules/graphql/utilities/stripignoredcharacters.d.ts","./node_modules/graphql/utilities/typecomparators.d.ts","./node_modules/graphql/utilities/assertvalidname.d.ts","./node_modules/graphql/utilities/findbreakingchanges.d.ts","./node_modules/graphql/utilities/typedquerydocumentnode.d.ts","./node_modules/graphql/utilities/index.d.ts","./node_modules/graphql/index.d.ts","./node_modules/@graphql-typed-document-node/core/typings/index.d.ts","./node_modules/@inkeep/widgets/dist/__generated__/graphql.d.ts","./node_modules/@inkeep/widgets/dist/inkeepshadow.d.ts","./node_modules/@inkeep/widgets/dist/hocs/withstyles.d.ts","./node_modules/@inkeep/widgets/dist/components/searchresults/searchresultsbysource.d.ts","./node_modules/@inkeep/widgets/dist/components/searchresults/searchresults.d.ts","./node_modules/@inkeep/widgets/dist/components/icons/builtinicons.d.ts","./node_modules/@inkeep/widgets/dist/components/icons/builtiniconrenderer.d.ts","./node_modules/@inkeep/widgets/dist/components/searchresults/tabconfiguration.d.ts","./node_modules/@inkeep/widgets/dist/utils/processstringreplacement.d.ts","./node_modules/@inkeep/widgets/dist/hooks/usebreadcrumbs.d.ts","./node_modules/react-hook-form/dist/constants.d.ts","./node_modules/react-hook-form/dist/utils/createsubject.d.ts","./node_modules/react-hook-form/dist/types/events.d.ts","./node_modules/react-hook-form/dist/types/path/common.d.ts","./node_modules/react-hook-form/dist/types/path/eager.d.ts","./node_modules/react-hook-form/dist/types/path/index.d.ts","./node_modules/react-hook-form/dist/types/fieldarray.d.ts","./node_modules/react-hook-form/dist/types/resolvers.d.ts","./node_modules/react-hook-form/dist/types/form.d.ts","./node_modules/react-hook-form/dist/types/utils.d.ts","./node_modules/react-hook-form/dist/types/fields.d.ts","./node_modules/react-hook-form/dist/types/errors.d.ts","./node_modules/react-hook-form/dist/types/validator.d.ts","./node_modules/react-hook-form/dist/types/controller.d.ts","./node_modules/react-hook-form/dist/types/index.d.ts","./node_modules/react-hook-form/dist/controller.d.ts","./node_modules/react-hook-form/dist/form.d.ts","./node_modules/react-hook-form/dist/logic/appenderrors.d.ts","./node_modules/react-hook-form/dist/logic/index.d.ts","./node_modules/react-hook-form/dist/usecontroller.d.ts","./node_modules/react-hook-form/dist/usefieldarray.d.ts","./node_modules/react-hook-form/dist/useform.d.ts","./node_modules/react-hook-form/dist/useformcontext.d.ts","./node_modules/react-hook-form/dist/useformstate.d.ts","./node_modules/react-hook-form/dist/usewatch.d.ts","./node_modules/react-hook-form/dist/utils/get.d.ts","./node_modules/react-hook-form/dist/utils/set.d.ts","./node_modules/react-hook-form/dist/utils/index.d.ts","./node_modules/react-hook-form/dist/index.d.ts","./node_modules/@inkeep/widgets/dist/components/form/types.d.ts","./node_modules/@inkeep/widgets/dist/components/inkeepcustomicontypes.d.ts","./node_modules/@inkeep/widgets/dist/components/aichat/aichatpage/aichatpage.d.ts","./node_modules/@inkeep/widgets/dist/hooks/usemessagefeedback.d.ts","./node_modules/@inkeep/widgets/dist/components/aichat/aichatpage/feedback/chatmessagefeedbackform.d.ts","./node_modules/@inkeep/widgets/dist/components/inkeepeventtypes.d.ts","./node_modules/@inkeep/widgets/dist/components/workflows/inkeepworkflowtypes.d.ts","./node_modules/@inkeep/widgets/dist/components/inkeepwidgetprops.d.ts","./node_modules/@inkeep/widgets/dist/inkeepshadowcontext.d.ts","./node_modules/@inkeep/widgets/dist/widgets/inkeepchatbutton.d.ts","./node_modules/@inkeep/widgets/dist/widgets/inkeepcustomtrigger.d.ts","./node_modules/@inkeep/widgets/dist/widgets/inkeepembeddedchat.d.ts","./node_modules/@inkeep/widgets/dist/widgets/inkeepsearchbar.d.ts","./node_modules/@inkeep/widgets/dist/index.d.ts","./hooks/useinkeepsettings.ts","./hooks/uselocalstorage.ts","./lib/clearbit.ts","./lib/content.ts","./lib/gtag.ts","./node_modules/isomorphic-unfetch/index.d.ts","./pages/api/feedbacks.ts","./components/accordion.tsx","./components/aichatbutton.tsx","./components/sidebar/sidebarlink.tsx","./components/sidebar/sidebarsubsection.tsx","./components/sidebar/sidebarsectionlist.tsx","./components/sidebar.tsx","./components/apireferencesidebar.tsx","./node_modules/@radix-ui/react-primitive/dist/index.d.mts","./node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-dismissable-layer/dist/index.d.mts","./node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-focus-scope/dist/index.d.mts","./node_modules/@radix-ui/react-arrow/dist/index.d.mts","./node_modules/@radix-ui/rect/dist/index.d.mts","./node_modules/@radix-ui/react-context/dist/index.d.mts","./node_modules/@radix-ui/react-popper/dist/index.d.mts","./node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-portal/dist/index.d.mts","./node_modules/@radix-ui/react-popover/dist/index.d.mts","./components/apisdkmenu.tsx","./node_modules/@algolia/autocomplete-shared/dist/esm/maybepromise.d.ts","./node_modules/algoliasearch/dist/algoliasearch-lite.d.ts","./node_modules/algoliasearch/lite.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/preset-algolia/algoliasearch.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/searchresponse.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/useragent.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/preset-algolia/createrequester.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompleteenvironment.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompletereshape.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompleteplugin.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompleteoptions.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompletesource.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompletecollection.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompletecontext.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompletestate.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompletenavigator.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompletepropgetters.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompletesetters.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/autocompleteapi.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/core/index.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/createcancelablepromise.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/createcancelablepromiselist.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/createref.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/debounce.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/decycle.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/flatten.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/generateautocompleteid.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/getattributevaluebypath.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/getitemscount.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/invariant.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/isequal.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/noop.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/safelyrunonbrowser.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/useragents.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/version.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/warn.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/autocompleteclassnames.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/highlighthitparams.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/autocompletecomponents.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/autocompleterenderer.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/autocompletestate.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/autocompletesource.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/autocompletecollection.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/autocompleteplugin.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/autocompletepropgetters.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/autocompleterender.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/autocompletetranslations.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/autocompleteoptions.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/js/index.d.ts","./node_modules/@algolia/autocomplete-shared/dist/esm/index.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/createconcurrentsafepromise.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/getnextactiveitemid.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/getnormalizedsources.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/getactiveitem.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/getautocompleteelementid.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/isorcontainsnode.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/issamsung.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/maptoalgoliaresponse.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/utils/index.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/types/autocompletestore.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/types/autocompletesubscribers.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/types/algoliainsightshit.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/createsearchinsightsapi.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/types/autocompleteinsightsapi.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/types/eventparams.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/types/insightsclient.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/types/index.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/createalgoliainsightsplugin.d.ts","./node_modules/@algolia/autocomplete-plugin-algolia-insights/dist/esm/index.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/types/index.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/createautocomplete.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/getdefaultprops.d.ts","./node_modules/@algolia/autocomplete-core/dist/esm/index.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/types/index.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/highlightedhit.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/parsealgoliahitparams.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/parsedattribute.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/parsealgoliahithighlight.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/parsealgoliahitreversehighlight.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/snippetedhit.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/parsealgoliahitreversesnippet.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/parsealgoliahitsnippet.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/highlight/index.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/requester/createrequester.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/requester/getalgoliafacets.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/requester/getalgoliaresults.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/requester/index.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/search/fetchalgoliaresults.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/search/index.d.ts","./node_modules/@algolia/autocomplete-preset-algolia/dist/esm/index.d.ts","./node_modules/react-hotkeys-hook/dist/useishotkeypressed.d.ts","./node_modules/hotkeys-js/index.d.ts","./node_modules/react-hotkeys-hook/dist/usehotkeys.d.ts","./node_modules/react-hotkeys-hook/dist/index.d.ts","./node_modules/react-icons/io/index.d.ts","./components/autocomplete.tsx","./components/breadcrumbs.tsx","./components/callout.tsx","./components/card.tsx","./components/copyabletext.tsx","./components/docssidebar.tsx","./node_modules/@radix-ui/react-roving-focus/dist/index.d.mts","./node_modules/@radix-ui/react-radio-group/dist/index.d.mts","./node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-primitive/dist/index.d.ts","./node_modules/@radix-ui/react-dismissable-layer/dist/index.d.ts","./node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-primitive/dist/index.d.ts","./node_modules/@radix-ui/react-focus-scope/dist/index.d.ts","./node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-primitive/dist/index.d.ts","./node_modules/@radix-ui/react-portal/dist/index.d.ts","./node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-primitive/dist/index.d.ts","./node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-context/dist/index.d.ts","./node_modules/@radix-ui/react-dialog/dist/index.d.ts","./components/supportmodal.tsx","./components/helpmenu.tsx","./components/integrationssidebar.tsx","./node_modules/locale-codes/index.d.ts","./components/table.tsx","./components/localetable.tsx","./node_modules/next-seo/lib/types.d.ts","./node_modules/next-seo/lib/meta/defaultseo.d.ts","./node_modules/next-seo/lib/meta/nextseo.d.ts","./node_modules/next-seo/lib/jsonld/jsonld.d.ts","./node_modules/next-seo/lib/jsonld/carousel.d.ts","./node_modules/next-seo/lib/jsonld/newsarticle.d.ts","./node_modules/next-seo/lib/jsonld/jobposting.d.ts","./node_modules/next-seo/lib/jsonld/localbusiness.d.ts","./node_modules/next-seo/lib/jsonld/qapage.d.ts","./node_modules/next-seo/lib/jsonld/profilepage.d.ts","./node_modules/next-seo/lib/jsonld/sitelinkssearchbox.d.ts","./node_modules/next-seo/lib/jsonld/recipe.d.ts","./node_modules/next-seo/lib/jsonld/event.d.ts","./node_modules/next-seo/lib/jsonld/corporatecontact.d.ts","./node_modules/next-seo/lib/jsonld/collectionpage.d.ts","./node_modules/next-seo/lib/jsonld/product.d.ts","./node_modules/next-seo/lib/jsonld/softwareapp.d.ts","./node_modules/next-seo/lib/jsonld/video.d.ts","./node_modules/next-seo/lib/jsonld/videogame.d.ts","./node_modules/next-seo/lib/jsonld/organization.d.ts","./node_modules/next-seo/lib/jsonld/faqpage.d.ts","./node_modules/next-seo/lib/jsonld/logo.d.ts","./node_modules/next-seo/lib/jsonld/dataset.d.ts","./node_modules/next-seo/lib/jsonld/course.d.ts","./node_modules/next-seo/lib/jsonld/breadcrumb.d.ts","./node_modules/next-seo/lib/jsonld/brand.d.ts","./node_modules/next-seo/lib/jsonld/article.d.ts","./node_modules/next-seo/lib/jsonld/webpage.d.ts","./node_modules/next-seo/lib/jsonld/socialprofile.d.ts","./node_modules/next-seo/lib/jsonld/howto.d.ts","./node_modules/next-seo/lib/jsonld/image.d.ts","./node_modules/next-seo/lib/index.d.ts","./components/meta.tsx","./node_modules/@byteclaw/use-event-emitter/dist/index.d.ts","./components/multilangcodeblock.tsx","./components/pagenav.tsx","./components/ratelimit.tsx","./node_modules/react-icons/ri/index.d.ts","./node_modules/react-icons/fa/index.d.ts","./node_modules/react-icons/di/index.d.ts","./node_modules/react-icons/fa6/index.d.ts","./node_modules/react-icons/si/index.d.ts","./node_modules/react-icons/tb/index.d.ts","./components/sdkcard.tsx","./components/step.tsx","./components/header/minimalheader.tsx","./layouts/page.tsx","./components/apireference/apireference.tsx","./layouts/apireferencelayout.tsx","./layouts/clireferencelayout.tsx","./layouts/docslayout.tsx","./layouts/integrationslayout.tsx","./layouts/mapireferencelayout.tsx","./layouts/mdxlayout.tsx","./node_modules/@types/unist/index.d.ts","./node_modules/vfile-message/lib/index.d.ts","./node_modules/vfile-message/index.d.ts","./node_modules/vfile/lib/minurl.shared.d.ts","./node_modules/vfile/lib/index.d.ts","./node_modules/vfile/index.d.ts","./node_modules/@types/hast/index.d.ts","./node_modules/@types/mdast/index.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/state.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/blockquote.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/break.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/code.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/delete.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/emphasis.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/footnote.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/heading.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/html.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/image-reference.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/image.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/inline-code.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/link-reference.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/link.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/list-item.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/list.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/paragraph.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/root.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/strong.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/table.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/table-cell.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/table-row.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/text.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/handlers/index.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/lib/index.d.ts","./node_modules/remark-rehype/node_modules/mdast-util-to-hast/index.d.ts","./node_modules/unified/index.d.ts","./node_modules/remark-rehype/lib/index.d.ts","./node_modules/remark-rehype/index.d.ts","./node_modules/@types/estree/index.d.ts","./node_modules/@types/estree-jsx/index.d.ts","./node_modules/@mdx-js/mdx/lib/plugin/rehype-recma.d.ts","./node_modules/@mdx-js/mdx/lib/plugin/recma-document.d.ts","./node_modules/source-map/source-map.d.ts","./node_modules/@mdx-js/mdx/lib/plugin/recma-stringify.d.ts","./node_modules/periscopic/types/index.d.ts","./node_modules/@mdx-js/mdx/lib/plugin/recma-jsx-rewrite.d.ts","./node_modules/@mdx-js/mdx/lib/core.d.ts","./node_modules/@mdx-js/mdx/lib/node-types.d.ts","./node_modules/@mdx-js/mdx/lib/compile.d.ts","./node_modules/@types/mdx/types.d.ts","./node_modules/@mdx-js/mdx/lib/util/resolve-evaluate-options.d.ts","./node_modules/@mdx-js/mdx/lib/evaluate.d.ts","./node_modules/@mdx-js/mdx/lib/run.d.ts","./node_modules/@mdx-js/mdx/index.d.ts","./node_modules/next-mdx-remote/dist/types.d.ts","./node_modules/next-mdx-remote/dist/serialize.d.ts","./node_modules/next-mdx-remote/serialize.d.ts","./node_modules/@mdx-js/react/node_modules/@types/react/global.d.ts","./node_modules/@mdx-js/react/node_modules/@types/prop-types/index.d.ts","./node_modules/@mdx-js/react/node_modules/@types/react/index.d.ts","./node_modules/@mdx-js/react/lib/index.d.ts","./node_modules/@mdx-js/react/index.d.ts","./node_modules/next-mdx-remote/dist/index.d.ts","./node_modules/next-mdx-remote/index.d.ts","./node_modules/rehype-autolink-headings/node_modules/@types/hast/index.d.ts","./node_modules/hast-util-is-element/node_modules/@types/hast/index.d.ts","./node_modules/hast-util-is-element/lib/index.d.ts","./node_modules/hast-util-is-element/index.d.ts","./node_modules/rehype-autolink-headings/lib/index.d.ts","./node_modules/rehype-autolink-headings/index.d.ts","./node_modules/micromark-util-types/index.d.ts","./node_modules/micromark-extension-gfm-footnote/lib/syntax.d.ts","./node_modules/micromark-extension-gfm-footnote/lib/html.d.ts","./node_modules/micromark-extension-gfm-footnote/index.d.ts","./node_modules/micromark-extension-gfm-strikethrough/lib/html.d.ts","./node_modules/micromark-extension-gfm-strikethrough/lib/syntax.d.ts","./node_modules/micromark-extension-gfm-strikethrough/index.d.ts","./node_modules/micromark-extension-gfm/index.d.ts","./node_modules/mdast-util-from-markdown/lib/index.d.ts","./node_modules/mdast-util-from-markdown/index.d.ts","./node_modules/mdast-util-to-markdown/lib/types.d.ts","./node_modules/mdast-util-to-markdown/lib/index.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/blockquote.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/break.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/code.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/definition.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/emphasis.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/heading.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/html.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/image.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/image-reference.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/inline-code.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/link.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/link-reference.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/list.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/list-item.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/paragraph.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/root.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/strong.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/text.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/thematic-break.d.ts","./node_modules/mdast-util-to-markdown/lib/handle/index.d.ts","./node_modules/mdast-util-to-markdown/index.d.ts","./node_modules/markdown-table/index.d.ts","./node_modules/mdast-util-gfm-table/lib/index.d.ts","./node_modules/mdast-util-gfm-table/index.d.ts","./node_modules/mdast-util-gfm/lib/index.d.ts","./node_modules/mdast-util-gfm/index.d.ts","./node_modules/remark-gfm/index.d.ts","./node_modules/remark-slug/types/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/@types/hast/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/unified/index.d.ts","./node_modules/rehype-mdx-code-props/index.d.ts","./content/integrations/extensions/datadog_dashboard.json","./content/integrations/extensions/new_relic_dashboard.json","./pages/[...slug].tsx","./node_modules/next/dist/compiled/@next/font/dist/types.d.ts","./node_modules/next/dist/compiled/@next/font/dist/google/index.d.ts","./node_modules/next/font/google/index.d.ts","./node_modules/@segment/snippet/types.d.ts","./lib/analytics.js","./node_modules/next-remote-refresh/hook.d.ts","./pages/_app.tsx","./pages/_document.tsx","./pages/index.tsx","./node_modules/yoga-wasm-web/dist/generated/ygenums.d.ts","./node_modules/yoga-wasm-web/dist/wrapasm.d.ts","./node_modules/yoga-wasm-web/dist/index.d.ts","./node_modules/satori/dist/index.d.ts","./node_modules/@vercel/og/dist/emoji/index.d.ts","./node_modules/@vercel/og/dist/types.d.ts","./node_modules/@vercel/og/dist/index.node.d.ts","./pages/api/og.tsx","./pages/api-reference/[...slug].tsx","./pages/api-reference/index.tsx","./node_modules/@types/acorn/index.d.ts","./node_modules/@types/ms/index.d.ts","./node_modules/@types/debug/index.d.ts","./node_modules/@types/gtag.js/index.d.ts","./node_modules/@types/js-yaml/index.d.ts","./node_modules/@types/json5/index.d.ts","./node_modules/@types/lodash/common/common.d.ts","./node_modules/@types/lodash/common/array.d.ts","./node_modules/@types/lodash/common/collection.d.ts","./node_modules/@types/lodash/common/date.d.ts","./node_modules/@types/lodash/common/function.d.ts","./node_modules/@types/lodash/common/lang.d.ts","./node_modules/@types/lodash/common/math.d.ts","./node_modules/@types/lodash/common/number.d.ts","./node_modules/@types/lodash/common/object.d.ts","./node_modules/@types/lodash/common/seq.d.ts","./node_modules/@types/lodash/common/string.d.ts","./node_modules/@types/lodash/common/util.d.ts","./node_modules/@types/lodash/index.d.ts","./node_modules/@types/lodash.isequal/index.d.ts","./node_modules/@types/mdx/index.d.ts","./node_modules/@types/parse5/lib/tree-adapters/default.d.ts","./node_modules/@types/parse5/index.d.ts","./node_modules/@types/prop-types/index.d.ts","./node_modules/@types/scheduler/index.d.ts","./node_modules/rehype-autolink-headings/node_modules/@types/unist/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/vfile/index.d.ts","./node_modules/rehype-mdx-code-props/node_modules/unified/lib/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"bc496ef4377553e461efcf7cc5a5a57cf59f9962aea06b5e722d54a36bf66ea1","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"65be38e881453e16f128a12a8d36f8b012aa279381bf3d4dc4332a4905ceec83","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"e1913f656c156a9e4245aa111fbb436d357d9e1fe0379b9a802da7fe3f03d736","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"0990a7576222f248f0a3b888adcb7389f957928ce2afb1cd5128169086ff4d29",{"version":"3b75495c77f85fef76a898491b2eff2e4eb80a37d798a8ad8b39a578c2303859","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","8c6aac56e9dddb1f02d8e75478b79da0d25a1d0e38e75d5b8947534f61f3785e","5f8f00356f6a82e21493b2d57b2178f11b00cf8960df00bd37bdcae24c9333ca",{"version":"7577b9629b5506a5455712bcdaf427a46aecee09adf72fb8bfec5b6f10a2a724","affectsGlobalScope":true},"cc69795d9954ee4ad57545b10c7bf1a7260d990231b1685c147ea71a6faa265c","8bc6c94ff4f2af1f4023b7bb2379b08d3d7dd80c698c9f0b07431ea16101f05f","1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","57194e1f007f3f2cbef26fa299d4c6b21f4623a2eddc63dfeef79e38e187a36e","0f6666b58e9276ac3a38fdc80993d19208442d6027ab885580d93aec76b4ef00","05fd364b8ef02fb1e174fbac8b825bdb1e5a36a016997c8e421f5fab0a6da0a0","f5331cb9cc00970e4831e7f0de9688e04986bcde808cac10caa3e7005e203907",{"version":"d20bbe9029b614c171212c50c842fa7ddfc61a6bbc697710ac70e4f7f0c77d15","affectsGlobalScope":true},"a9d67f9ae6bb38f732c51d1081af6a0ac6cae5e122472cacc2d54db178013699","1296a364908ba9c646372edc18ee0e140d9a388956b0e9510eec906b19fa5b36","1c863a53fb796e962c4b3e54bc7b77fd04a518444263d307290ff04f619c275e","ff98afc32b01e580077faf85b60232b65c40df0c3ecaa765fabc347a639b4225",{"version":"30133f9ceaa46c9a20092c382fed7b8d09393cf1934392149ea8202991edb3ea","affectsGlobalScope":true},"30c05e45ec7e1247ba9b87ad2acfae4fda401737f0e8a59f78beda8a4e22b110","2da83cc57a94f7aee832f2a71e1a294d857492761c1f5db717ea42c1a22467bc","aa5cc73a5f548f5bc1b4279a730c03294dfa6e98bed228d4ed6322a4183b26ad","b3f1ac9fe3d18d6cd04ab1e67a5da8c33ceb47f26b47e67896a5b2f8293c8a32",{"version":"ca88e8b07c8186ef3180bf9b6b4456311ae41bf3fe5652c27a2a3feba04136b0","affectsGlobalScope":true},{"version":"592d937b7df1b74af7fa81656503fc268fee50f0e882178e851b667def34414b","affectsGlobalScope":true},"fdfdf2eab2bded61ee321ec88b8e083fe8d9fedad25a16ae040740869bc64e48","e8067fc8b0247f8b5ad781bd22f5dd19f6a39961ba60fa6fc13cfe9e624ca92f","842ef57ce3043fba0b0fb7eece785140af9d2381e4bed4f2744d3060352f2fd5","9095b6f13d9e48704b919d9b4162c48b04236a4ce664dc07549a435d8f4e612e","111b4c048fe89d25bb4d2a0646623ff4c456a313ed5bfb647b2262dda69a4ff8","f70f62f5f87ff8900090069554f79d9757f8e385322d0e26268463e27c098204","0932ed41e23d22fa5359f74805c687314e4b707b3428e52419d0fbefc0d66661","af07f4baaca7e5cf70cb8887e7d4f23d6bb0c0dd6ca1329c3d959ea749b7a14d","c80402af7b0420f57372ac99885f1ab058121db72418e43d25f440abda7bbe23","71aba6ce66e76ccfd3ba92b8b5c6658bad293f1313f012821c4bff1dd64ca278","17d944cab17bc9e32975250e8abe8073702f9493582d847805e446641bd7798f",{"version":"c6bfc70bbdee282436ee11e887cceaa5988ac4eec60d5eb9b3711748c811831a","affectsGlobalScope":true},"f9ca5159f56c1fe99cdfc5f942585de20695a2a343db8543383b239c050f6aa4","84634ac706042ac8ee3a1e141bcdee03621725ab55455dba878a5503c6c7e037","d796c62c3c91c22c331b7465be89d009459eb1eb689304c476275f48676eaf9e","51cbf03ad34c3e84d1998bd57d1fd8da333d66dd65904625d22dc01b751d99c7","c31bbdc27ef936061eaa9d423c5da7c5b439a4ff6b5f1b18f89b30cf119d5a56","2a4ae2a8f834858602089792c9e8bab00075f5c4b1708bd49c298a3e6c95a30c","71e29ae391229f876d8628987640c3c51c89a1c2fd980d1a72d69aeee4239f80","51c74d73649a4d788ed97b38bd55ebac57d85b35cbf4a0357e3382324e10bbe9","c8641524781fa803006a144fd3024d5273ab0c531d8a13bbeaa8c81d8241529f","73e218d8914afc428a24b7d1de42a2cb37f0be7ac1f5c32c4a66379572700b52",{"version":"56ff5262d76c01b3637ca82f9749d3ec0d70cf57d87964bf3e9ba4204241849e","affectsGlobalScope":true},"9e3a18040e5a95f61556e09c932393b49c3b21ce42abe0f4ed74b97173f320db","344922fac39b5732179b606e16781b354c160f0e9bd7f5921a0fdc9fe4ede1fb","c1449f51f9496bb23f33ee48ff590b815393ef560a9e80493614869fe50915da","87a49241df2b37e59f86619091dec2beb9ad8126d7649f0b0edb8fc99eca2499","07efd1f649e91967fada88d53ad64b61c1b2853d212f3eaffc946e7e13d03d67","6d79a0938f4b89c1c1fee2c3426754929173c8888fdfaab6b6d645269945f7bf",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5","8caa5c86be1b793cd5f599e27ecb34252c41e011980f7d61ae4989a149ff6ccc","db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","cfe4ef4710c3786b6e23dae7c086c70b4f4835a2e4d77b75d39f9046106e83d3","cbea99888785d49bb630dcbb1613c73727f2b5a2cf02e1abcaab7bcf8d6bf3c5","a3f1220f5331589384d77ed650001719baac21fcbed91e36b9abc5485b06335a","a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","2dad084c67e649f0f354739ec7df7c7df0779a28a4f55c97c6b6883ae850d1ce","fa5bbc7ab4130dd8cdc55ea294ec39f76f2bc507a0f75f4f873e38631a836ca7","df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","cf86de1054b843e484a3c9300d62fbc8c97e77f168bbffb131d560ca0474d4a8","37f7b8e560025858aae5195ca74a3e95ecd55591e2babc0acd57bc1dab4ea8ea","070238cb0786b4de6d35a2073ca30b0c9c1c2876f0cbe21a5ff3fdc6a439f6a4","0c03316480fa99646aa8b2d661787f93f57bb30f27ba0d90f4fe72b23ec73d4d","26cfe6b47626b7aae0b8f728b34793ff49a0a64e346a7194d2bb3760c54fb3bf","b7b3258e8d47333721f9d4c287361d773f8fa88e52d1148812485d9fc06d2577","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","49e567e0aa388ab416eeb7a7de9bce5045a7b628bad18d1f6fa9d3eacee7bc3f","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","8a8bf772f83e9546b61720cf3b9add9aa4c2058479ad0d8db0d7c9fd948c4eaf","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","6dc943e70c31f08ffc00d3417bc4ca4562c9f0f14095a93d44f0f8cf4972e71c","47e5af2a841356a961f815e7c55d72554db0c11b4cba4d0caab91f8717846a94","4c91cc1ab59b55d880877ccf1999ded0bb2ebc8e3a597c622962d65bf0e76be8","79059bbb6fa2835baf665068fe863b7b10e86617b0fb3e28a709337bf8786aa9","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","309816cd6e597f4d4b080bc5e36215c6b78196f744d578adf61589bee5fd7eea","7567e37d6087e622dd891bf13b74c7b16d1c077770ab49a7082337adcb747688","edaa0bbf2891b17f904a67aef7f9d53371c993fe3ff6dec708c2aff6083b01af","89aece12f9cd6d736ae7c350800f257a2363f6322ae8f998da73153fb405d8af","d23518a5f155f1a3e07214baf0295687507122ae2e6e9bd5e772551ebd4b3157","a10a30ba2af182e5aa8853f8ce8be340ae39b2ceb838870cbaec823e370130b6","3ed9d1af009869ce794e56dca77ac5241594f94c84b22075568e61e605310651","55a619cffb166c29466eb9e895101cb85e9ed2bded2e39e18b2091be85308f92","e8da637cbd6ed1cf6c36e9424f6bcee4515ca2c677534d4006cbd9a05f930f0c","ca1b882a105a1972f82cc58e3be491e7d750a1eb074ffd13b198269f57ed9e1b","c9d71f340f1a4576cd2a572f73a54dc7212161fa172dfe3dea64ac627c8fcb50","3867ca0e9757cc41e04248574f4f07b8f9e3c0c2a796a5eb091c65bfd2fc8bdb","6c66f6f7d9ff019a644ff50dd013e6bf59be4bf389092948437efa6b77dc8f9a","4e10622f89fea7b05dd9b52fb65e1e2b5cbd96d4cca3d9e1a60bb7f8a9cb86a1","ef2d1bd01d144d426b72db3744e7a6b6bb518a639d5c9c8d86438fb75a3b1934","b9750fe7235da7d8bf75cb171bf067b7350380c74271d3f80f49aea7466b55b5","ac60bbee0d4235643cc52b57768b22de8c257c12bd8c2039860540cab1fa1d82","17937316a2f7f362dd6375251a9ce9e4960cfdc0aa7ba6cbd00656f7ab92334b","7bf0ce75f57298faf35186d1f697f4f3ecec9e2c0ff958b57088cfdd1e8d050a","973b59a17aaa817eb205baf6c132b83475a5c0a44e8294a472af7793b1817e89","ada39cbb2748ab2873b7835c90c8d4620723aedf323550e8489f08220e477c7f","51ec8e855fa8d0a56af48b83542eaef6409b90dc57b8df869941da53e7f01416","6e5f5cee603d67ee1ba6120815497909b73399842254fc1e77a0d5cdc51d8c9c","99ace27cc2c78ef0fe3f92f11164eca7494b9f98a49ee0a19ede0a4c82a6a800","f891055df9a420e0cf6c49cd3c28106030b2577b6588479736c8a33b2c8150b4","ef61792acbfa8c27c9bd113f02731e66229f7d3a169e3c1993b508134f1a58e0","9e462c65e3eca686e8a7576cea0b6debad99291503daf5027229e235c4f7aa88","f6404e7837b96da3ea4d38c4f1a3812c96c9dcdf264e93d5bdb199f983a3ef4b","c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","1dc574e42493e8bf9bb37be44d9e38c5bd7bbc04f884e5e58b4d69636cb192b3",{"version":"f14c2bb33b3272bbdfeb0371eb1e337c9677cb726274cf3c4c6ea19b9447a666","affectsGlobalScope":true},{"version":"db01d18853469bcb5601b9fc9826931cc84cc1a1944b33cad76fd6f1e3d8c544","affectsGlobalScope":true},"6b8e8c0331a0c2e9fb53b8b0d346e44a8db8c788dae727a2c52f4cf3bd857f0d",{"version":"903e299a28282fa7b714586e28409ed73c3b63f5365519776bf78e8cf173db36","affectsGlobalScope":true},"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b",{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","affectsGlobalScope":true},"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","dd3900b24a6a8745efeb7ad27629c0f8a626470ac229c1d73f1fe29d67e44dca","ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","ec29be0737d39268696edcec4f5e97ce26f449fa9b7afc2f0f99a86def34a418","8945919709e0c6069c32ca26a675a0de90fd2ad70d5bc3ba281c628729a0c39d","ec6cba1c02c675e4dd173251b156792e8d3b0c816af6d6ad93f1a55d674591aa","763ee3998716d599321e34b7f7e93a8e57bef751206325226ebf088bf75ea460","e15d3c84d5077bb4a3adee4c791022967b764dc41cb8fa3cfa44d4379b2c95f5","3556cfbab7b43da96d15a442ddbb970e1f2fc97876d055b6555d86d7ac57dae5","437751e0352c6e924ddf30e90849f1d9eb00ca78c94d58d6a37202ec84eb8393","48e8af7fdb2677a44522fd185d8c87deff4d36ee701ea003c6c780b1407a1397","606e6f841ba9667de5d83ca458449f0ed8c511ba635f753eaa731e532dea98c7","58a5a5ae92f1141f7ba97f9f9e7737c22760b3dbc38149ac146b791e9a0e7b3f","a35a8ba85ce088606fbcc9bd226a28cadf99d59f8035c7f518f39bb8cf4d356a","2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","13283350547389802aa35d9f2188effaeac805499169a06ef5cd77ce2a0bd63f","680793958f6a70a44c8d9ae7d46b7a385361c69ac29dcab3ed761edce1c14ab8","6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","9a0aa45956ab19ec882cf8d7329c96062855540e2caef2c3a67d65764e775b98","39da0a8478aede3a55308089e231c5966b2196e7201494280b1e19f8ec8e24d4","90be1a7f573bad71331ff10deeadce25b09034d3d27011c2155bcb9cb9800b7f","db977e281ced06393a840651bdacc300955404b258e65e1dd51913720770049b","438c7513b1df91dcef49b13cd7a1c4720f91a36e88c1df731661608b7c055f10","ad444a874f011d3a797f1a41579dbfcc6b246623f49c20009f60e211dbd5315e","1124613ba0669e7ea5fb785ede1c3f254ed1968335468b048b8fc35c172393de","5fa139523e35fd907f3dd6c2e38ef2066687b27ed88e2680783e05662355ac04","9c250db4bab4f78fad08be7f4e43e962cc143e0f78763831653549ceb477344a","9385cdc09850950bc9b59cca445a3ceb6fcca32b54e7b626e746912e489e535e","db7c948e2e69559324be7628cb63296ec8986d60f26173f9e324aeb8a2fe23d8","fb4b3e0399fd1f20cbe44093dccf0caabfbbbc8b4ff74cf503ba6071d6015c1a","63a8e96f65a22604eae82737e409d1536e69a467bb738bec505f4f97cce9d878","3fd78152a7031315478f159c6a5872c712ece6f01212c78ea82aef21cb0726e2","cd92c27a2ff6319a306b9b25531d8b0c201902fdeb515097615d853a8d8dd491","9693affd94a0d128dba810427dddff5bd4f326998176f52cc1211db7780529fc","703733dde084b7e856f5940f9c3c12007ca62858accb9482c2b65e030877702d","413cb597cc5933562ec064bfb1c3a9164ef5d2f09e5f6b7bd19f483d5352449e","fd933f824347f9edd919618a76cdb6a0c0085c538115d9a287fa0c7f59957ab3","6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","6a1aa3e55bdc50503956c5cd09ae4cd72e3072692d742816f65c66ca14f4dfdd","ab75cfd9c4f93ffd601f7ca1753d6a9d953bbedfbd7a5b3f0436ac8a1de60dfa","6cc79183c88040697e1552ba81c5245b0c701b965623774587c4b9d1e7497278","b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","1364f64d2fb03bbb514edc42224abd576c064f89be6a990136774ecdd881a1da","c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","950fb67a59be4c2dbe69a5786292e60a5cb0e8612e0e223537784c731af55db1","e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","07ca44e8d8288e69afdec7a31fa408ce6ab90d4f3d620006701d5544646da6aa","33f7c948459c30e43067f3c5e05b1d26f04243c32e281daecad0dc8403deb726","b33ac7d8d7d1bfc8cc06c75d1ee186d21577ab2026f482e29babe32b10b26512","c53bad2ea57445270eb21c1f3f385469548ecf7e6593dc8883c9be905dc36d75","6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","03d4a10c21ac451b682246f3261b769247baf774c4878551c02256ae98299b1c","2d9b710fee8c3d7eabee626af8fd6ec2cf6f71e6b7429b307b8f67d70b1707c5","652a4bbefba6aa309bfc3063f59ed1a2e739c1d802273b0e6e0aa7082659f3b3","7f06827f1994d44ffb3249cf9d57b91766450f3c261b4a447b4a4a78ced33dff","37d9be34a7eaf4592f1351f0e2b0ab8297f385255919836eb0aec6798a1486f2","becdbcb82b172495cfff224927b059dc1722dc87fb40f5cd84a164a7d4a71345","f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","9c762745981d4bd844e31289947054003ffc6adc1ff4251a875785eb756efcfb","94404c4a878fe291e7578a2a80264c6f18e9f1933fbb57e48f0eb368672e389c","5c1b7f03aa88be854bc15810bfd5bd5a1943c5a7620e1c53eddd2a013996343e","f416c9c3eee9d47ff49132c34f96b9180e50485d435d5748f0e8b72521d28d2e","9558d365d0e72b6d9bd8c1742fe1185f983965c6d2eff88a117a59b9f51d3c5f","792053eaa48721835cc1b55e46d27f049773480c4382a08fc59a9fd4309f2c3f","01aa917531e116485beca44a14970834687b857757159769c16b228eb1e49c5f","a2e1f7010ae5f746b937621840cb87dee9eeb69188d32880bd9752029084212c","dd30eb34b5c4597a568de0efb8b34e328c224648c258759ac541beb16256ffb6","6129bd7098131a0e346352901bc8d461a76d0568686bb0e1f8499df91fde8a1f","d84584539dd55c80f6311e4d70ee861adc71a1533d909f79d5c8650fbf1359a2","82200d39d66c91f502f74c85db8c7a8d56cfc361c20d7da6d7b68a4eeaaefbf4","842f86fa1ffaa9f247ef2c419af3f87133b861e7f05260c9dfbdd58235d6b89c","a1c8542ed1189091dd39e732e4390882a9bcd15c0ca093f6e9483eba4e37573f","a805c88b28da817123a9e4c45ceb642ef0154c8ea41ea3dde0e64a70dde7ac5f","3a17f09634c50cce884721f54fd9e7b98e03ac505889c560876291fcf8a09e90","32531dfbb0cdc4525296648f53b2b5c39b64282791e2a8c765712e49e6461046","0ce1b2237c1c3df49748d61568160d780d7b26693bd9feb3acb0744a152cd86d","e489985388e2c71d3542612685b4a7db326922b57ac880f299da7026a4e8a117","9b91b07f679cbfa02dd63866f2767ce58188b446ee5aa78ec7b238ce5ab4c56a",{"version":"663eddcbad503d8e40a4fa09941e5fad254f3a8427f056a9e7d8048bd4cad956","affectsGlobalScope":true},"fd1b9d883b9446f1e1da1e1033a6a98995c25fbf3c10818a78960e2f2917d10c","19252079538942a69be1645e153f7dbbc1ef56b4f983c633bf31fe26aeac32cd","4dd4f6e28afc1ee30ce76ffc659d19e14dff29cb19b7747610ada3535b7409af","1640728521f6ab040fc4a85edd2557193839d0cd0e41c02004fc8d415363d4e2","65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","ec9fd890d681789cb0aa9efbc50b1e0afe76fbf3c49c3ac50ff80e90e29c6bcb","5fbd292aa08208ae99bf06d5da63321fdc768ee43a7a104980963100a3841752","9eac5a6beea91cfb119688bf44a5688b129b804ede186e5e2413572a534c21bb","6c292de17d4e8763406421cb91f545d1634c81486d8e14fceae65955c119584e","b7fff2d004c5879cae335db8f954eb1d61242d9f2d28515e67902032723caeab","5f3dc10ae646f375776b4e028d2bed039a93eebbba105694d8b910feebbe8b9c","7f6c48cacd08c1b1e29737b8221b7661e6b855767f8778f9a181fa2f74c09d21","4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","15959543f93f27e8e2b1a012fe28e14b682034757e2d7a6c1f02f87107fc731e","a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","4e828bf688597c32905215785730cbdb603b54e284d472a23fc0195c6d4aeee8","a3f41ed1b4f2fc3049394b945a68ae4fdefd49fa1739c32f149d32c0545d67f5","4da80db9ed5a1a20fd5bfce863dd178b8928bcaf4a3d75e8657bcae32e572ede","47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","7c8ee03d9ac384b0669c5438e5f3bf6216e8f71afe9a78a5ed4639a62961cb62","898b714aad9cfd0e546d1ad2c031571de7622bd0f9606a499bee193cf5e7cf0c","d707fb7ca32930495019a4c85500385f6850c785ee0987a1b6bcad6ade95235e","fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","5d26aae738fa3efc87c24f6e5ec07c54694e6bcf431cc38d3da7576d6bb35bd6","cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","e0aa1079d58134e55ad2f73508ad1be565a975f2247245d76c64c1ca9e5e5b26","cd0c5af42811a4a56a0f77856cfa6c170278e9522888db715b11f176df3ff1f2","68f81dad9e8d7b7aa15f35607a70c8b68798cf579ac44bd85325b8e2f1fb3600","1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","94fd3ce628bd94a2caf431e8d85901dbe3a64ab52c0bd1dbe498f63ca18789f7","5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","c0eeaaa67c85c3bb6c52b629ebbfd3b2292dc67e8c0ffda2fc6cd2f78dc471e6","4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","2470a2412a59c6177cd4408dd7edb099ca7ace68c0187f54187dfee56dc9c5aa","c2008605e78208cfa9cd70bd29856b72dda7ad89df5dc895920f8e10bcb9cd0a","ec61ebac4d71c4698318673efbb5c481a6c4d374da8d285f6557541a5bd318d0","33ee52978ab913f5ebbc5ccd922ed9a11e76d5c6cee96ac39ce1336aad27e7c5","40d8b22be2580a18ad37c175080af0724ecbdf364e4cb433d7110f5b71d5f771",{"version":"16fd66ae997b2f01c972531239da90fbf8ab4022bb145b9587ef746f6cecde5a","affectsGlobalScope":true},{"version":"fc8fbee8f73bf5ffd6ba08ba1c554d6f714c49cae5b5e984afd545ab1b7abe06","affectsGlobalScope":true},"3586f5ea3cc27083a17bd5c9059ede9421d587286d5a47f4341a4c2d00e4fa91","521fc35a732f1a19f5d52024c2c22e257aa63258554968f7806a823be2f82b03","b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","6e30376ef7c346187eca38622479abaf3483b78175ce55528eafb648202493d2","5794108d70c4cca0f46ffd2ac24b14dcd610fccde1e057b7eccb7f2bd7555fd0",{"version":"c54c22a3158863080ad1eba39510c2333aa991fdfc430c4b4071f9a08ca932a1","affectsGlobalScope":true},"8b265150e114e69f61a3b60892f7f03e4ca12b0fcd73cb4bf8993a76eb0ce93d","c6ed900acde682e344a32d307989e1cd76c5f9c734a11b4e68ed05b1e823012a","514b2e984ebd8ad953a002680b2af4ca741c34636ba37fe2b1078025781c2686","41ff50a89a0cf96c888bc5213d2f36deeef60f210eb89dd402cc1ae3f554ed0a","084909f3e93773cc95623cde49446b78d6632cdd3ef01ba2cd386a61a1b77fcb","1d5331eb07ede1bb58985ba312e026ebbcd3ecbd0075c7643cc669b5b9d49960","3fc2741a7b5fadd3d811b49efeabd1a931feb1427cc233811a5c02ad76399b43","c9a2f87e4b4808dd0fb4fa376b2c27b28320016e536fde61d2af6d77eb1105a0","7c1008c9f2d92ac691ed3bd251b2ca1e1a6bc57a7fbeb1d2c60659d501b28934","4a65bd0d86eb8ca3d230793eb504b97da8d00c16deaa75ebe45beae60756af0a","2bb6280e6e0be3c860c9b3052d1774ec949ac7182c81523466bebe7905cfbf3b","0e4609fa4248dafecf5cf00d0cf0c62d72d3c8e4d7b087887f0936b66c46e7dd","2938a2ce27fc70c29811385b43e9e0663aafceac2eb7e94cb15b5dff3f2b5afc","919de25238cdeaa8b1b20c958ff6622c039c65a880f6de0c7a889dee0fc047b5","4454feda195e7ec5c4ead994b192b58138fb7ca8873432e86b46d26de6ae8c34","775024159878d7c12458e7bb6be8237e480af873e6fcc70b09efe513e4691656","a02b7bf8bd796decb97c3ceb336de2a80d1b332a0edfb30663d3cab629526925","c68eb17ea7b2ff7f8bcfe1a9e82b8210c3112820d9e74b56b0fbecaab5ce8866","2d225e7bda2871c066a7079c88174340950fb604f624f2586d3ea27bb9e5f4ff","6a785f84e63234035e511817dd48ada756d984dd8f9344e56eb8b2bdcd8fd001","c1422d016f7df2ccd3594c06f2923199acd09898f2c42f50ea8159f1f856f618","2973b1b7857ca144251375b97f98474e9847a890331e27132d5a8b3aea9350a8","0eb6152d37c84d6119295493dfcc20c331c6fda1304a513d159cdaa599dcb78b","237df26f8c326ca00cd9d2deb40214a079749062156386b6d75bdcecc6988a6b","cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e","7557d4d7f19f94341f4413575a3453ba7f6039c9591015bcf4282a8e75414043","a3b2cc16f3ce2d882eca44e1066f57a24751545f2a5e4a153d4de31b4cac9bb5","ac2b3b377d3068bfb6e1cb8889c99098f2c875955e2325315991882a74d92cc8","8deb39d89095469957f73bd194d11f01d9894b8c1f1e27fbf3f6e8122576b336","a38a9c41f433b608a0d37e645a31eecf7233ef3d3fffeb626988d3219f80e32f","8e1428dcba6a984489863935049893631170a37f9584c0479f06e1a5b1f04332","1fce9ecb87a2d3898941c60df617e52e50fb0c03c9b7b2ba8381972448327285","5ef0597b8238443908b2c4bf69149ed3894ac0ddd0515ac583d38c7595b151f1","ac52b775a80badff5f4ac329c5725a26bd5aaadd57afa7ad9e98b4844767312a","6ae5b4a63010c82bf2522b4ecfc29ffe6a8b0c5eea6b2b35120077e9ac54d7a1","dd7109c49f416f218915921d44f0f28975df78e04e437c62e1e1eb3be5e18a35","eee181112e420b345fc78422a6cc32385ede3d27e2eaf8b8c4ad8b2c29e3e52e","25fbe57c8ee3079e2201fe580578fab4f3a78881c98865b7c96233af00bf9624","62cc8477858487b4c4de7d7ae5e745a8ce0015c1592f398b63ee05d6e64ca295","cc2a9ec3cb10e4c0b8738b02c31798fad312d21ef20b6a2f5be1d077e9f5409d","4b4fadcda7d34034737598c07e2dca5d7e1e633cb3ba8dd4d2e6a7782b30b296","360fdc8829a51c5428636f1f83e7db36fef6c5a15ed4411b582d00a1c2bd6e97","1cf0d15e6ab1ecabbf329b906ae8543e6b8955133b7f6655f04d433e3a0597ab","7c9f98fe812643141502b30fb2b5ec56d16aaf94f98580276ae37b7924dd44a4","b3547893f24f59d0a644c52f55901b15a3fa1a115bc5ea9a582911469b9348b7","596e5b88b6ca8399076afcc22af6e6e0c4700c7cd1f420a78d637c3fb44a885e","adddf736e08132c7059ee572b128fdacb1c2650ace80d0f582e93d097ed4fbaf","d4cad9dc13e9c5348637170ddd5d95f7ed5fdfc856ddca40234fa55518bc99a6","d70675ba7ba7d02e52b7070a369957a70827e4b2bca2c1680c38a832e87b61fd","3be71f4ce8988a01e2f5368bdd58e1d60236baf511e4510ee9291c7b3729a27e","423d2ccc38e369a7527988d682fafc40267bcd6688a7473e59c5eea20a29b64f","2f9fde0868ed030277c678b435f63fcf03d27c04301299580a4017963cc04ce6","feeb73d48cc41c6dd23d17473521b0af877751504c30c18dc84267c8eeea429a","cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","3d7f9eb12aface876f7b535cc89dcd416daf77f0b3573333f16ec0a70bcf902a","41b8775befd7ded7245a627e9f4de6110236688ce4c124d2d40c37bc1a3bfe05","e0205f04611bea8b5b82168065b8ef1476a8e96236201494eb8c785331c43118","62d26d8ba4fa15ab425c1b57a050ed76c5b0ecbffaa53f182110aa3a02405a07","9941cbf7ca695e95d588f5f1692ab040b078d44a95d231fa9a8f828186b7b77d","25f1159094dc0bf3a71313a74e0885426af21c5d6564a254004f2cadf9c5b052","b83139ae818dd20f365118f9999335ca4cd84ae518348619adc5728e7e0372d5","706fddf475c77bd45be0aa3537b913951c527be3f9f483f4dcdb13e7315f8955","66a5ace456d19768103c1da9df2abafa9cb2e78ff61c938746527ec2524e5d11",{"version":"b769ec165df81b42ceacf7f83f8de16232121f891933956d3b05e806f5af2ac9","affectsGlobalScope":true},"8a772660b8513598fde2d74ff5cd860a33ab3a3ac1bb353ceaf8ad316b0678da","ee6ec3fa04aa0af22b450ffc699f03146ac17303a6f0b697b8338dfc9d2fe53d","3ad11885585125fd2953d2e1680abc130036e2d94ad67199a56fd4f47bca783b","9cc7cca10b97f97429ca68e30bd410264ce4ed37135f1507b7d075928adc8c31","f3e32a280c12c56297fbea8f3c3a4b2b99d3aacc1f41ff8e2814993b2b322f6a","4c259bd2c34c5cd88c74484297a395d3deda93d31d833b839bb2a4024d76ffcb","414259069fabf7c4c9f31630ba5eb2113e1cfc48158e27cf0e2a510dd52a4053","a8e846d692c92b17f153753b4fb384c1c56be4a155b7e0b12520446b7d45a781","69fcd8fc780138acaec608a7e1124bb0908260d6b93c6e160f9bfabf2d85c7ad","f4cfe6ee5a8920f86432b79cd87a03f5f6188a5cd6bdabc96e64d650a90cef0b","e1626fcfe55dd458933391911b9af9a33fae01d308a1f075036f94d3f884d5ae","7ee6c5e82e333cb97acb44a6679e886e5a72b5249d7c4ed9697d9721a92469d4","84c2960f37d57cd119405d21d4984abfc2cdbffc36fff2a2015fb761ca103311","8008df553e1ac6d74912108aefb7d411493b5f8887d30cf7aecc49770e2104d8","75dcc0d50aba7120a8dcd25976259ca3549b5d9bdbe85dfbc7f8826d674ac28e","893ca8722778f3f2708133f2ec594f5faa1c07c7fe0eb8287bb135a15bb42b82","934e1cf64d1790770fa3e56c0baf27d46e3c8007bb6c7365a76098ef3fc6f64a","0286768b993afa99d5299f20a30f7cb1ea2779ea16bc8d3476c1d04f708dba36","b2c96f58f57a4ece13072165605120547ae9cc3a244b2d8716f934053c68087b","9498af1104cdff15db2b95336d2312374ddc46fe89a71755dd337c428fce5769","285c155bbda690be0416d2b97fd7adc9f9a5f559f69922494e711db5e11f2181","9f0195f267848562d16f3728931770cf32c01e8688aa671302141bed87c03f00","02f878ab9261b77f16d86313b97305e892ae69296f1aa073e44b174d9550dc3e","b895ec1bb8218c181fc8de20bf39a3863ea28deb8b27dd6c64dc3ab51fee3272","e0759ab5886e2613dfb547ade1f98c3d1ffd4bef981d9113255f2903373e1b7a","00f71b1b486125e0ecb755dda090cafaf051c7052576ce83d2bd90185d20be28","e8c8e8929eee724be5d4a21512aa4dfbe4cf652214a9b9fff5c1dfa670398a6d","7e88648aa018e35a5efa92171d3251fa5cb690696f87d831723d047b24a4c1fa","38188c4e0e7823e3f9e698c6f8d9cf4619b657b3805fb62cec7a463e36c51097","7200c966c8cc16ce52e25a789f8ac4e7d2faa5b7b7b7dae81cf8b7f5a20598d8","52d3db3674851fa1858fbf7d15529f792845f55c8db7166db032c4159862ca64","160f22916cef070d9f4f33dae9c894d618bc7bccf18b2042b96f6c21cbebad5a","7da2ee84baf6e2cab7ef00363a739b16b76b61bba5d03a4b10569bfe566c9ed5","6770838f5bfa635d962843d4dcf06d7babaf7b3b702916c9716c81458956b731","146ba4b99c5feb82663e17a671bf9f53bb39c704cd76345d6c5a801c26372f44","3dfcd0a3bfa70b53135db3cf2e4ddcb7eccc3e4418ce833ae24eecd06928328f","33e12c9940a7f23d50742e5925a193bb4af9b23ee159251e6bc50bb9070618a1","bc41a8e33caf4d193b0c49ec70d1e8db5ce3312eafe5447c6c1d5a2084fece12","7c33f11a56ba4e79efc4ddae85f8a4a888e216d2bf66c863f344d403437ffc74","eb94ad891a8d531b54bb0ab712476ce5b4af655108aedd2477f984f9386dbd29","9249603c91a859973e8f481b67f50d8d0b3fa43e37878f9dfc4c70313ad63065","0132f67b7f128d4a47324f48d0918ec73cf4220a5e9ea8bd92b115397911254f","06b37153d512000a91cad6fcbae75ca795ecec00469effaa8916101a00d5b9e2","8a641e3402f2988bf993007bd814faba348b813fc4058fce5b06de3e81ed511a","281744305ba2dcb2d80e2021fae211b1b07e5d85cfc8e36f4520325fcf698dbb","e1b042779d17b69719d34f31822ddba8aa6f5eb15f221b02105785f4447e7f5b","6858337936b90bd31f1674c43bedda2edbab2a488d04adc02512aef47c792fd0","15cb3deecc635efb26133990f521f7f1cc95665d5db8d87e5056beaea564b0ce","e27605c8932e75b14e742558a4c3101d9f4fdd32e7e9a056b2ca83f37f973945","f0443725119ecde74b0d75c82555b1f95ee1c3cd371558e5528a83d1de8109de","7794810c4b3f03d2faa81189504b953a73eb80e5662a90e9030ea9a9a359a66f","b074516a691a30279f0fe6dff33cd76359c1daacf4ae024659e44a68756de602","57cbeb55ec95326d068a2ce33403e1b795f2113487f07c1f53b1eaf9c21ff2ce","a00362ee43d422bcd8239110b8b5da39f1122651a1809be83a518b1298fa6af8","a820499a28a5fcdbf4baec05cc069362041d735520ab5a94c38cc44db7df614c","33a6d7b07c85ac0cef9a021b78b52e2d901d2ebfd5458db68f229ca482c1910c","8f648847b52020c1c0cdfcc40d7bcab72ea470201a631004fde4d85ccbc0c4c7","7821d3b702e0c672329c4d036c7037ecf2e5e758eceb5e740dde1355606dc9f2","213e4f26ee5853e8ba314ecad3a73cd06ab244a0809749bb777cbc1619aa07d8","cafd6ef91d96228a618436c03d60fe5078f43d32df4c39ebd9f3f7d013dbe337","961fa18e1658f3f8e38c23e1a9bc3f4d7be75b056a94700291d5f82f57524ff0","079c02dc397960da2786db71d7c9e716475377bcedd81dede034f8a9f94c71b8","a7595cbb1b354b54dff14a6bb87d471e6d53b63de101a1b4d9d82d3d3f6eddec","1f49a85a97e01a26245fd74232b3b301ebe408fb4e969e72e537aa6ffbd3fe14","9c38563e4eabfffa597c4d6b9aa16e11e7f9a636f0dd80dd0a8bce1f6f0b2108","4036d953c2769ef8a61046d003ad29ec2ca7386716d7a6f47e6c829f3c601589","df9b266bceb94167c2e8ae25db37d31a28de02ae89ff58e8174708afdec26738","9e5b8137b7ee679d31b35221503282561e764116d8b007c5419b6f9d60765683","3e7ae921a43416e155d7bbe5b4229b7686cfa6a20af0a3ae5a79dfe127355c21","c7200ae85e414d5ed1d3c9507ae38c097050161f57eb1a70bef021d796af87a7","4edb4ff36b17b2cf19014b2c901a6bdcdd0d8f732bcf3a11aa6fd0a111198e27","810f0d14ce416a343dcdd0d3074c38c094505e664c90636b113d048471c292e2","9c37dc73c97cd17686edc94cc534486509e479a1b8809ef783067b7dde5c6713","5fe2ef29b33889d3279d5bc92f8e554ffd32145a02f48d272d30fc1eea8b4c89","e39090ffe9c45c59082c3746e2aa2546dc53e3c5eeb4ad83f8210be7e2e58022","9f85a1810d42f75e1abb4fc94be585aae1fdac8ae752c76b912d95aef61bf5de",{"version":"f6cdeb71847ed2efe508717d360fb69248b909f14bb704098840d96c616eccb9","signature":"a8b7fdb0d5fccef013479663cd79864380ed18816a7e2a6bdc5046ff1220064f"},"de34db5191530ba991bda92326932682a62626275f4d47a08c5377130a9b25a3","ec6d1cacd0d102a0c952a8fd021eb5e5598b240c13f704d725898679626cc55e",{"version":"74a94d9a46db7a1366fb553681c28446d072f705d75d3f5889b718cad579134f","signature":"91328f779d83afa9aeb46d4d95eb97f492ebb80355c9586969e0cb9b3a6df1df"},{"version":"590865fbca788d31194a00bae4dfd8fbab9e935deb31fbebda7dbf117c45efa6","signature":"dd25d4c8e6a49926e248a49b6b01beb03a94996bf9bf0690e1e92f8e0cffb1b0"},"2bcb1acd536e696b5e4405ab92e847eb7b7eaa121c8e80c96394c130f141919f","42bfb56fd5f29878e9e4519da80b2ee44bea9be23c0b15aba1510b0d11053287","68c24c2f8745ce53f89703a643dbbb9071137f47a06cd6b1a5af6fff3e88d5ff","a2b2b90d7621e1dbc2cf72193b8d84359bd23e62012139b942b61fef8b0f7dcc","8eff883181eb26351812d8c518276b1eb7f026485523262d618f2b870133bb6d","ae0d70b4f8a3a43cb0a5a89859aca3611f2789a3bca6a387f9deab912b7605b0","966b0f7789547bb149ad553f5a8c0d7b4406eceac50991aaad8a12643f3aec71","d04f947114fa00a20ee3c3182bb2863c30869df93293cc673f200defadbd69d9","7d3bc9393e3c86761b6149510712d654bf7bcfdfa4e46139ccce1f13e472cfa2","785926dee839d0b3f5e479615d5653d77f6a9ef8aa4eea5bbdce2703c860b254","66d5c68894bb2975727cd550b53cd6f9d99f7cb77cb0cbecdd4af1c9332b01dd","96f9f9e8ed808d9cd6dfa9db058259c8243ea803546c47ebb8eb4d5ece5a02b8","c9e1c177daeee1aa61be3946ad77e7f8a3127512da88f8b7d2a8aa577067d8cd","44c6037de26219d85ad5d7d4aab7c923750e8b3be6eee55f4ae9e2cfd42880d9","66fdd28201c34cc7d67f80ec630dbcb8d989273a8db17774d19fa5503251296f","436d5ac80f5db7fdffa6ba2f332f1024b7a0c96de503515b2b8ef7dac850d5c8",{"version":"0eaac2538599e752e6c427d13f41083bee8c0e5538b68bf01ab16f6fc3e0a45b","signature":"f6500290e7db62c9b87deee86667d80e50a04bd80d03209932a2a65936b8d936"},{"version":"11de832a9f18ff8428636ab3d2875569633d1f128cf165f1cc89a8a4be41a8d7","signature":"dc4873b05e3d420b16ed7a29789da839eff9a153057e14711ec63371f977c35f"},{"version":"bc77cdf6e92d15ee1a46049f4dce4d55ca4a5fc818b88f892af00b6b53bd2eb5","signature":"7b412c20399fa9a150b98d2fe19147c767cc0988e50d79b6e4ada5d5c4bc166d"},{"version":"4d701d5e38b8d73754d92c03b929e309ed203d2379b79db5934a261a554eb67c","signature":"5c4ee259b8e41db2a4c6b22b657cbf27f1763c236fc3f2804905c67f83227d98"},{"version":"4adc82c959e167bbc02a6aabe1a3e845084d8c59a2d0f72f52b781aa67b90aa1","signature":"caf25dc5e7175674c1beb264fc844b1b79ce06f7cbe5d85d024c9ff5cbfe7ae8"},"b78a32be6dab129127b3eaf51fb1200d23e1966c682f733646da52d5c19d8ca1",{"version":"b2065fc038cce5065d35e527fda830fca4002ed92b650784d8adc8e4070fdc84","signature":"e55763ca5a5e7cdcef43c4defd0ca4c66a67a572d58014b6d9b2c869c20d8531"},{"version":"33b063174b193f4c5c613b8ccb5791a3ee6f4a71157e93ded2328faf2cdcd75f","signature":"65e7848445bdac0625e3a62e59b5d923c5028eb11b1e061537d1ea3c8d7eb030"},"9890041495034a7315017520a5a9d86f73947c5f64a9283ac20b97b7303281d8","89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","5c5d901a999dfe64746ef4244618ae0628ac8afdb07975e3d5ed66e33c767ed0","85d08536e6cd9787f82261674e7d566421a84d286679db1503432a6ccf9e9625","113976386a1fd6065bb91eb0ec5958245c42548019f6da49f85bcbd50324cb8a","a1e9b1740facf44f7331b0f80223320656fce7a0781fee36fbd82e8fe73dcfec","17d3f26684a88e7651e52ecce18b292bab01a9241670fadd6bb76910022fb492","b487d434cbc327e78a667d31b34ac001433ecd482e487557bc9c737d6f5a24fa","46e8d2193f476a7a7de3cdd24743a2eafd009175159fe8494f0e3001a0e681be","e924774b42ff4558194d6531a3c368aef7b257e52cf001f01f7eda4655d1a125","79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","1af1f2c02132bafa25c4c4b7c415e0a59ba959d6db6bd1800a43fb5d943e3f77","a1e9b1740facf44f7331b0f80223320656fce7a0781fee36fbd82e8fe73dcfec","a510938c29a2e04183c801a340f0bbb5a0ae091651bd659214a8587d710ddfbb","07bcf85b52f652572fc2a7ec58e6de5dd4fcaf9bbc6f4706b124378cedcbb95c","4368a800522ca3dd131d3bbc05f2c46a8b7d612eefca41d5c2e5ac0428a45582","720e56f06175c21512bcaeed59a4d4173cd635ea7b4df3739901791b83f835b9","349949a8894257122f278f418f4ee2d39752c67b1f06162bb59747d8d06bbc51","364832fbef8fb60e1fee868343c0b64647ab8a4e6b0421ca6dafb10dff9979ba","dfe4d1087854351e45109f87e322a4fb9d3d28d8bd92aa0460f3578320f024e9","886051ae2ccc4c5545bedb4f9af372d69c7c3844ae68833ed1fba8cae8d90ef8","3f4e5997cb760b0ef04a7110b4dd18407718e7502e4bf6cd8dd8aa97af8456ff","381b5f28b29f104bbdd130704f0a0df347f2fc6cb7bab89cfdc2ec637e613f78","a52baccd4bf285e633816caffe74e7928870ce064ebc2a702e54d5e908228777","c6120582914acd667ce268849283702a625fee9893e9cad5cd27baada5f89f50","da1c22fbbf43de3065d227f8acbc10b132dfa2f3c725db415adbe392f6d1359f","858880acbe7e15f7e4f06ac82fd8f394dfe2362687271d5860900d584856c205","8dfb1bf0a03e4db2371bafe9ac3c5fb2a4481c77e904d2a210f3fed7d2ad243a","bc840f0c5e7274e66f61212bb517fb4348d3e25ed57a27e7783fed58301591e0","26438d4d1fc8c9923aea60424369c6e9e13f7ce2672e31137aa3d89b7e1ba9af","1ace7207aa2566178c72693b145a566f1209677a2d5e9fb948c8be56a1a61ca9","a776df294180c0fdb62ba1c56a959b0bb1d2967d25b372abefdb13d6eba14caf","6c88ea4c3b86430dd03de268fd178803d22dc6aa85f954f41b1a27c6bb6227f2","11e17a3addf249ae2d884b35543d2b40fabf55ddcbc04f8ee3dcdae8a0ce61eb","4fd8aac8f684ee9b1a61807c65ee48f217bf12c77eb169a84a3ba8ddf7335a86","1d0736a4bfcb9f32de29d6b15ac2fa0049fd447980cf1159d219543aa5266426","11083c0a8f45d2ec174df1cb565c7ba9770878d6820bf01d76d4fedb86052a77","d8e37104ef452b01cefe43990821adc3c6987423a73a1252aa55fb1d9ebc7e6d","f5622423ee5642dcf2b92d71b37967b458e8df3cf90b468675ff9fddaa532a0f","21a942886d6b3e372db0504c5ee277285cbe4f517a27fc4763cf8c48bd0f4310","41a4b2454b2d3a13b4fc4ec57d6a0a639127369f87da8f28037943019705d619","1af1f2c02132bafa25c4c4b7c415e0a59ba959d6db6bd1800a43fb5d943e3f77","98bed72180140fdf2c9d031d64c9ac9237b2208cbdb7ba172dc6f2d73329f3fd","eed9b5f5a6998abe0b408db4b8847a46eb401c9924ddc5b24b1cede3ebf4ee8c","af85fde8986fdad68e96e871ae2d5278adaf2922d9879043b9313b18fae920b1","8a1f5d2f7cf4bf851cc9baae82056c3316d3c6d29561df28aff525556095554b",{"version":"41b6ce55353f3d107017b1d214abc0d59047ff3eba15f5eea1a77c4257bda81b","signature":"fc7535c517c8f0fc09918d011762b783167573f1d2c12b638ceaaea1b9a42a6e"},"97b132b36a223165284182fd02d72e655d193bef3b32aded9147f7ae16547e9b","d86da92680000dcd926fc6d785d8866e2c7f06d753539469108b44256cedb782","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","37ef766956aec873f315d2d9e514262a9b5f2292bee2562ab6a6a7fc3f415139",{"version":"573a5f66097a3c9fa0447106321087724925fb4c9307c7defc088fcccae828e5","signature":"6f264f19e7663c9121f792fa669c82a15cc480b32ac9cb683e855e63a0a9ec59"},"f2bb6e051f9a8ea0355c4fa8c51dd03a944e73f00f8afd0d3e0112469881236c",{"version":"4710e5f9228804a37472f4611981cee26e43c15516bd4dff76108428c44c36a4","signature":"6f264f19e7663c9121f792fa669c82a15cc480b32ac9cb683e855e63a0a9ec59"},"de27fdd909c898113177968a4d1a305cecf4f8a58af2a1fb806f3bad1c7cd525","62a376c3f3d0c5f916075a10ffe6de4713da96063d9b425d2ca98288972571a9","8f3eb7886d53bdbd13c204c8dc5977b6a24e24b603a4f9e1192d922e91eb8458","2433e42ff5de8719ddbb6f4a0d0721a4cf39a50ddc22c121bb1008610766667f","73c3f00a86841624f1e720b6c09edd6f1d90ef9c1800e784e1d348b84fd8634e","c014250a41f812c81b7e11f830299db0fc2b66ab159ef4734c135ed9d1561141","66563bddfcd768347fc62e43778c98abbe9e298629d92380c6e09764fed688f4","242d568795faaf61a344fdc07225f11ae2b146893e03f26023b0e72e39d99d4b","f3e8ed9b095d1e3feb45a7b254c254f902d6e9b9f4ce3f306037c9f38604182c","a1a5d3ae895dd047be6575ba6549eedd7932e3b489978769fff171ad724ed112","bfc29f801cc29dd173db4e8a8f150973d054156112582e0659c8ddb60859a23a","9c51de7bd752b761b249c7174ab512432e295046c2a86f6f2d44f6b3ebac012c","891013c3938efbab96ae6bd8677d6101e368e6e21d2d6db277ff24b37c8f21f4","a6b6cdcfec6ce34bfea6a9b6f8d57f9ac02da10947ca58c2d2619d47fc8766cf","a45a9b5649695a14a499dfa2ea8f46cc3b9c5c4ed5012c586f746a3e0ca8073a","b8cc8f6816247cc1301297678d4dfd15dbd509c264c4e6dc72aac8ec8479b320","e6894b20ada1566038032d936c6cdc4fbf3fa57683054ae2da9f89dbf7dc3bfe","8f4279729688585150282e57916d881ac4bc9bd180f672a6c2a2e75be622063a","38d13702e7fa327efba11f833127624455e966a6ab2ec9af8d8cd96adb4fb263","8f9dca42f19b88ad9b46ec60049828c2704784dc9c1c899be377a2c1c7443ee5","113ace9a000a5774eb050c95152dcc5c6e79aaf4c140b343a33ffa4abc234647","b301797bbd9b431b1ff374d8b37e7d71b133144a9b17d6f78a7bd3a247585316","bede942f32a759417832a346f62101e4035f9e119017221998db8ad62cca4834","c8a30ff744812695b968363fe10fad019a938dadafed496fee63e73692a0778f","72c04ffca3ed52d551b444f9099d33bd728a3ebb1e41070725a346298df63e8d","4ccfeb6cda212ca5d0ecc6bad3a709378c29c7c336e6360581a539778017ea7f","1bace83510408cdcf92bb1cb1f3bf986299a32c408f93546196a8780146fb37a","de66e16f6e90721ae336ee9dbf5ffbf7cb0878a421d89587c6c8dc16d409ff0e","812f70b363a223c3b21b9cb48ea9be61555f84cbf20c45eb06dac9f49ef42feb","305927ed183955b7d770b63f6ce819fb862710211bd41b69015f9f809e472fb2","a448ff0c71379218eb1e78bf6a415dfbbbfc2654acc84a13b09122721929bf4a","ceeb9b0ad4831b0e823102950eb31c4a9f281fca22e20db3f99db6d41d99027a","9c0be6126afff644396fb59da557ca8e82bd4870b8a4e427855df40617547475","0a74906763be9315a1612bd0eccdf132055448e718b4da0b78be1444d2931dc0","68cc2521d00e8cc4ed0cd77cac25e7e27add7899b0758adae3ce93ce82d820d0","c49094c058cbb537e6aa19c08505a4c2c8d44c438526cc40a5a6646250ca2ddc","2fe3f34feeb40a46b634973bd53405354b621a79ad8711f28839065d70ff05ad","060b52b92bcb3206da6aeb2df7577b71c5ac9cc12e2e844ebe7ee36c06367e7d","6d4f859c29cbd88c32a08e02ceef3b3c15a5f14356fcbdf713ab43f5cbe9f3ef","61b89df31272973a98698257444e4e0ceff691afc1f94f8ba4652f5130422f1b","df05a1f02c022cf326c7d2d3090fc0b86ef4dfdc62208fe10c0189e756e3b81f","6db27333e154a1b335df2f47e5fad391adeb869579d627c298a1472862814232","f2172b0a310a7b627452bed851eae3c97f811a5a0e435d3b29d2b78851c0dae9","210d7799b759f9ef9761a3da61e367ca7a085e67361d649b31100c23f0e5b914","70f5c4d3c41691e852d001fc4113d9151d4fec8d465b83a729c2678bce8e78ec","05c136d5688c7edd2176a785208932192622ec9d5f68579cb3e02d9718a71700","330256d9f3febd57e8c521e92c4896be0ae18a26261ddcb380737a6ec204ab81","0372ad90f123f1c2ada2bd9677b75be80a5d50c659732c8160901bcf801910b6","9ce91263c9586eac78be14130ea944af488323c8f2ae31bb9fb5606a03c93781","e2d362ae80f73709a6b8dc1d9d65f7f321beb1ef819be924a62f3984cce8a760","b20748f13a2d6b118fd8055e4aeb03a5f0e04e21ed9401ee9ba236aef5e310fd","329f76137e59e4d9cbf66744b9aa98905f725a9af0aa9491bf9330ad296d9c09","fdaed16aac4feb093044214ef8ec603a75fc55f3711941a412d286cada44e9a5","dcf58e617a956c7af0a79b647833bbe0bd49bc7042add8b35dddcd7c6edb26a7","e2b096d4a0c9294f7a7a4b77430e22d3eb9eff17f68e8f271e932035a5600bcb","ddbbeea27791ea67dceb7a9764acf33614f573472860ee07c3321024134c5a51","9df48aad325b06cb921cd319ff0695537b66a605f37da036c64926cb6f72a467","63757bf76f488e327b1480ed1f53f5544e2fe8e519a69dbe67e33198024d8cf0","7123e6ebd7e37b8099d6cb4e8c4d8cc2ec705d0a12464bde2ed0eeb73bac03e5","ae67eb7e02858bbe6e324b49bff10d9b14467a5c285cf7ea4127612a2a0c9023","b2998a01990374dee86216d324598079a3336eebe836b8cba30c15315a8d2e8f","6ca458c720fbf4723c289d1d5d2757763bd6d619fa44a488ceb299f5a86f53f6","c0ef3a2095db1fe351951e70af98bd83ebf85188226babd7c1c20c023854b3dd","7001f9a69a5ca9c05afad9a45a2af1d4718e8a15571516f9c572340a544e830a","9243d62cff09c761f3b19b88de0d95a8a39fe8dc69dd4cb7e44d1fe0e36a4395","375387db607fc72d59f4e65e3cfd86cbfa636aecf33d9d4c6015fd7d95ca42af","3ae8dd5663704463b336ce8e43dab2a53fc7f085841602f90f07d3edf675ce65","565ee5c125bda0cf0bbab3fa71d46134fc8573605781c6b09ddbe5779d2276c7","8697faa527dd799c5bbe64723aa2593fdd47c609864aa4c49689997cd06cebac","1235f6acae8da14ce25d9f75df290c4e4f7d53d024b4e91c6121ff44ea13c801","8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","51997bdd3b56bd6931f3e1d5facd0aeda6745e2288f379085bc384090d676a6c","ab76aa5246e8a9a5962042528bc61180f445a9604ab40e6996674d866450260d","34ee177ae1ed59981d82ee459acf0407d6a679f47fe698c201b49a44e3011f87","b66e2fb26a26e1d9ca918f9609d5fcfd6f0638b7d1e92830d118e8e36919403c","67b6ca0657d39e79c80ac21e9514ff055bdaf4b966ce9beaaf3173511d3923b4","c3d956c1238738eebfe25538ba2a744c82c51ebb286aabf3c6d2de88e9edfba3","03c0c949e86c44a98165752c31d9edea61b853a237254806b5a452c16b6f709f","5c73afddde75f185c8dd4203c4eebe2b44cd3ef7a5764da06526490d0f4b4719","3f4fa97e44177240b6467434e8da68c707111cf0eb4bfad8486afe80de09658d","f236a75d322b605abba6ab48008891ebe903d575b7eb011e1acf168eb8cba6d2","ee6b4dc0bcf09356744f793699467f41f0ac85f5f9117f62e9515daa584296b6","3c5cbb0f630a19a4c977fd36479ad4eb4da97e5c70da643d0f57728f7dd5e204","44875d1f5092bd0551efbd0a230680c71a647862ba7f52b1f691af418c99cc7c","4e9b7fdb40273dbd41f1b49b0b42c4f9848f68312b50a87c46aee516342c502c","88dc595c54a9e2478a1fa6eef99786734a31f8fa84fab3a8c44a304dccad2cef","b86bb855f247f7105946393cca1b8199bd6d4c3d53fd7d0e81701bae7d2cf3e3","3cfee09b28e57a914deb231e794980f34f73551457a8fec018c4ee332e89ac26","910519cd38f4cc2601e06a6e06c9d141d1e33b2cef156c4d5f55b801abf848ef","3ea26af8de8e8d5e9daff3a2c7bf783d6dd58b3fea2adfd14d1b6b5a4f8ebad2","729d731c01903375efde3fbee81d8bdb2f189bd42f5af97de33c8dde4a948011","e266df426b9bb8c9f8be46a0aee6e221f767d55ed2064359b3dedaa7f7251632","f3502fbe6e4231042fa7d0b291b6268de2dea729c83ab873dcf843b0bdebdcfc","dde2a0a755228173bec690872c3e2b287af6ff7133072250cf1b58a5150d6783","a0f72264fb841bf157588a46005dc30511179b06f9e26e53fd097f54a1b7811a","1e852a81f8ab8017a2ec279e822641c9a6d856717696da38d7e01b78c7725775","39500b521d79e424f9b06f83fcc90a2feb76e748b92fe4ceed45613959240510","e54937f191d88bc1ad0c3f3527044fc47450788b5132c9d820d4661259b32056","7f1fe0c4bea070198cf55ef41f43105bde1c8b560fb2aeadc452552312cb5ea3","695932cb32b555db096ee4072a818b774aeec9cd0c6864d4af5180c0e58f83dd","5388767e740e2e43cb5cb67dfa4f0357a76a690d6ce3631c99ec0c687a63ab19","a7ae350bf3fa704a9372bab4aa6764ab643ca1a84feb3133acab8ac82015e2fb","c55a7bc77153f09c34fd71c0f002fd5895a05c846bb62d9723cc7c8b27f27979","1d4befe71a219e63005fb76049232efad67ccb7b69512da65499a6437ed7c2eb","f6b0d3cfad6acbe42c53a53ec86cd8e8c65881668a1fc627940376eca9beb1fa","2c4f607bbc2aa6bd72697dfcdea489e2480c6da3b00c5c71d65eb35ebc020b74","0d1f6685be6ae56ad6069806bcb9963432fcc4c022e514652f348e34b50a73bd","951ea5f4424d919bf78c95291e66d0c0f36b26d01b70db627e5f19dca3fe1778","c5ef2494b5373365acf2f05a8a6a3f04413b14584a399afe9ee346feef9d0c34","8f02d2818f3d06dd5e162f9ac034b997376f77134186825ea157ee991113c263","6ab03ab355ed5763f6a54c59e1b7ce97bd250eba734dd8522a5bc7aaba828378","a803b31b8a4ecf5f782da5c6254b1a327a9f55fc90c0d09e4a8770db53d70e30","bf617138a44374fbdaddc84d4aa7d41363dd8de96b39beff895b7e066d72ed3d","4e979330517c1527ed78e19bb70619e5b276b80a89103f8fed7f63b2f27d52cb","044aae1e62523280d3679eed49ffa288bb793d87b98ab4aaa37a7024838929f3","af809d65e484ecc9923ad2050484bc5bad35a92fb393e3c8e2d0b4d21314e855","c71310175221dafb3fcc8902520d067df8af248c5d77bbf7382d1ff57abba102","0f848a18562fc5bce043a6f59a7802987158412d6bd6f11a64850c78c3827c0e","b8d56058129d8adfeff905070f963564c10afcb028d53cd13caaa393588c09cb","2b0f16d1540ef0bcf85fc9f7bc61b2a3bbc1b0bf8f7ed6392bfb2025c670bace","753cf5ed3c9203ed5b88f852193b7537011b593517a705b45b6c28058773411c","ce681ee864a3f83e7386ac6e7a5b6bb6afe6d473f31b6f1d01c678829b17fbb2","6cf1e0a10c62d9689899e44739553a1e70bac9fc70dbc3df4bad670bf4051772","0364b5e7a68a14255602c3c35aee61c77124f10ec29f591f6b21ea0676327160","c9d7892703b4ac59131af706d5a4c94448ffa83a2a72ee228cb398695ddce100","95c9ce4e6671814a5bfe3db20ac5443b6898a4049944c1336732146d41fc2dbd","5d8f239955604a68ea80756c84a7fff62970afe8fcc60cab7b535b65d9b5fb1c","ae893722e67eaefba4ad2227550f3a7acbac37031b25a82eeec76c48df73ec8b","1d5ab1cdf8d0af719f907a2b325b2f2d0c97abf95c01adef954aa67b46033cf1","ebf6c9f07975e9be3f5b00c2206072f88386e245eba0e7eb63da6f5b7df64a1b","c08c05a207498377420f04aca581de8752846bb69cad23c144f7aa947f4e12b0","86de8796c8e3ad6afab4d25078db66133842c2dbcdb007d6b5ce8acae647e5ff","2b1f2291550846f7a4fddcab254033e13c6cba7d84acf36a7da34f10429dfa72","124532e49183aca79f0326a79550fcb6a204f756ecbaaba6bd396f9541733b5c","197aa2f9fb896fa05449c5ae02d018b1ee27b8cfbf7b54c0bf4649d800d2cbaa","aad561583558f325a261591e6e0aeab992a4f1a587de1bf169bb0846165d1db3","f6d559b0bb5de1754d240acaef514769712efb5ff72a0383221126bb8548347b","538724dffe395b60f329c8480b5bdc48cdfd4100ff3be2aa78607a9fa0f90ded","b08c6a66c8bd00d3290e61bb0c10b35f7a5f78a06dd9b665abc7e1cc7aff5d55","4ed1815e82cbf7e3b92523568c84383531056a8e4c1394ad1a7e5b787ef1db0d","8d412a6df216fd9978d77d99a6de6af0c0b912cf4c5ca44efa007de7ffb840a4","d146aafc4df1436645a0b32942321afbe5ed20a3fbe6d23fa20ed32f6a212fcb","6d2e29f8a771094ebfaee7060a13d9f56065eeb58e4b1dd31ae91b4b8b2bb606","8dafda7148a2c489132810ef3e4c3425d69108e2e9f0f2631fc797bd096951d1","9218c473fd6a81fb3cf9d0f09b9858f83e26f4f9d1d124e5048df374cb3fee9a","cb1495fee07c94a5bbd316aaf3a432e57175b4def923a56cdb6603001df5f635","5a0bb385526378f2f93af1fc53481daa60289eb83d95746094245567c6d234d2","167bd99b225703a31770b593180e670fccc8436bf2b07e3989c3a9a9107f1831","65b385fd91803cd1663d272765b770dd3a6302960ae5318c503b13e59f71a0d8","c425bac2ab85283c7c4bdafd3ce8ff92106d249b580904b2af4cbd0ef0abba6b","23da5e47370df62d21dac61cd353819de29a50cc921001ea8754f1535065d400","5b8572401035a391442dfd6b616a2b45fa00c562432039ffc2b826328a6d77c6","3371d4ff56c6556031dae8a98ab658a32ee57f23361958d4f173d8ccb1a9a4f1","d5ae3788b612d8a133c26efb1841b73ce96ebe7a605f10a65ce9fce5726eb59e","ab34e527e268c084a7d28ec41c4072d56cfd048fd4fb7a9b8deee20c0aa543aa","87741b1d6e03a39709506c94976653e6fe42542a8ce09f42bea3c39263e4dc75","3af5b8241ce3b63ddcbe08ec24133b0f562881f9267bcffb4dd4d447cdcfaaab","b527e5cf7795aacaba184ed7bee77d4fc82f627d11774a22ce9121214a692e84","a5fdb34e51d1004ff9aab4234ed774216318d49c98a2e7f2330dc596f2d5ef36","b02f5f84f7f2f8efb06010f18cc69b8a1148f36102d253ec79d03705e4411d7d","0c9818495506b8e25967d32bbcaf766aa8814e4f2be35bb4f8e868713066da70","f378eb4b086cf4f9fdc23b8adbbe16402d545f5bbd9023142e490c370f6f42ec","6ff21f1bafb979ed7e1b3880dd9d483a237c9eba903ffc6a5705943297daca8e","92f97bf24f5ebd35bb9cc3e46e6a9141db3be63435f1fa05854adeb3488a5e59","35094003326457a0a86560a76143809c4c107145315764538f15b66314ed9a87","e169dfdf43a9dec67c753e16f30b8b8fbd8a116bb9fe2ee0c9337e81dfc3febd","75455accc2d1a0a18a7918c4abe307b5b0561e3f0c00bf30f8933b55d4611f0b","d9e1df6bca6c3a1fa0a0eb22bf70df6b36f580ce9f120557de868601b08dd0f9","2916cafb9094c571abe26dd3d8ddd4e454baeb837bc83864a09db57495a6b843","737065310ab48acccad94981a1c2a9889a7cfd28603ef1e92b897b00ff5c31fa","29a1e0b57b048bbe1fc3b7acf93231900acbc6d35ab22a194462b4d4b39bb369","befa6f9ea5b4565810760c41971d788255ead58bd1565a356684faaae726e9b7","c14b3198f3733d9dd3c222bbe2a6b95200a345e6b5106e0f0a9048422f6936f3","b45c0e242839bc03b1f000c38962d768b2ba7d011d9c93dea4a0902d139e720c","ce6251952de1d726b733d2a40878ef6b59076e95acf0a911ce5e08e9516bc344","a336cd8d09cfd802eb5ab35531ad2174fda403c518dfa55dd80dbe59ea0c383c","be0ead4aa8d61222aa2b61c7f24d06f075d6cd75261e345f06cab6267b79a741","fe74a67aa16f4af9b9dbbd86385ee3e244b14df76f68e5614a3589e5f9bcab63","fdf386b33e215be909c94696f55934567caa53fca2ba4520f7095f966719153c","c2e7ca687591aa326eabd66e25c08849d063597f9ff67b479b98f02b59be926e","afa8ed9f7a96b1f81c75ef9254be81ea496224c5b356280c235ea815d5333f1e","4af0a75a45466e3a776fd861cd3cbc084044e62d7f98ac8d9954a69247c56f9f","31709d887b897c8c7f20a8958c002081160eb01ca1cdd16131c1ecbec57930ee","feb034de611dde713f04f7a105a2613e09fb91131f830e1b21075ad956cac6c2","8a5ee49e00c0762b9dbffc6040366bde1f9c602f96b276603a0d3c5ee8f83c47","b44d67b48e70dfc607da3d422646b8506c65826f80441c1574230cfb294598cf","dd5779bff9dfeb151d1342ffddc47f699bb71dd584a2771abc668850baa5ae2c","41932baac70bf7e87447eb0db774385f98cb5e3db6f9a559409d4ff7965f5bba","28fdd514ac5dc512e948cba5325a5d8f83b566f7ec353bbb08f02d9187216888","2cacad9d2f400e8c238225f535872244754d418d856504a5f8012ac659b74042","c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","6c788dba2e1d20130c5067722cfdcb8547b66d8b924d98d477fc7eb20d36a54b","f64d2799e8e386051b37eb7957adca5cb1f5f625143cf92bed3bff9524923af8","6cdf74a1f33704627b00161f94d714adddcca9859ec9a184dc02110b72e97aac","61a39814064f8ff61b22d132248bee0b46cfff419fdee27cded987c00c3aecac","23537d67ee753fa58ea74ee1786ee0d20405faee772b8515eee07a42f744bd55","2ee275e5b2609aa975128749f6382369ac127ed50fff248ad9671f7b8b411e11","0d72cdb85631f6025a857028bd67c6a13644918979e9b9422a7f98ba0e1268d9","f5d678875e6b28baf67a723bfd92fb0dc85cdbdc44d3adbfba9c852d85884b45","9dce0ab773b845c6c0acf2f9693381b870656b19bced4c3e8c693893bdcd5d07","10f6e0c17c74052ee3f4993ea7b4d02fba1d79098f0df268439025dca430c333","6d1454cf48cedf6ff06e12e048de3411ffc2bb2f7617e608c7b734b0b8650516","5cc2df386aa4ac6cffa1ef953d88c8152213f05d93b828a3c654be71c72cbdef","bd3030ec98a2fb8c28d69e48ffdd8a473f7728dd0a05bf709c010ad49a334053","93ec935281383231527409814c6122058ff9d0046f87866093f474cc45f5d736","f8d655496ee3cdf068215e64e37efcaa17463fb9e60b8403009f332a605366a4","55d45eda5cb77ae405138a9bf676b3cbfba363fa65219f89e21f907033ed5436","78038da454371ac8e8ae94030c2fa929b8459f85557db7ddd01c49b66f4717a3","5b64c90b03615b7c15bd0b048c0b5c0c3811ff22745877939fefe02d85b6ba88","85cabdf05dd7851c1746bc6a705d6edaebb30f7f4a7f585fcd05ff811b6f80b0","250bcb2382eecfb8d39252ea03f1946efa855cc0f9674925cef7473d6ec859e2","700dc5cbce6fad339cd811fb18b3ba05d6597948f329de4fc7ed0276cd28746f","fef2a71dbab4e504a4fce09938b5c871a9d1ab9ea875fe6d2bfac961eaf5fa33","c7e4bac02f85313db183c782a09fc91a3ac49b2253f0ee153ebd02b5b63b50ea","019434adc9424f8a2abefc85b74afb76ff660b2c75c530473ec386fe0a7f89d1","019434adc9424f8a2abefc85b74afb76ff660b2c75c530473ec386fe0a7f89d1","019434adc9424f8a2abefc85b74afb76ff660b2c75c530473ec386fe0a7f89d1","019434adc9424f8a2abefc85b74afb76ff660b2c75c530473ec386fe0a7f89d1","019434adc9424f8a2abefc85b74afb76ff660b2c75c530473ec386fe0a7f89d1","019434adc9424f8a2abefc85b74afb76ff660b2c75c530473ec386fe0a7f89d1","dacfc1e6f823c7417aa7611832c0ad2296fb146f7706f55abdade86c219ddb04","8525a0cd01badb9c084d978190b2d5a841640b6a152af7c80953b3c8841ca1dd","c92fc04c8d436275840d4927819d674882377a1bc755560e9432ef137fd9fb37","63855c6db31006dce2125d1dd1a73991d8b4bdc1361935eea3611071b279504c","521a154106744447a95b03797bfabcffa4fcb65cb7449288bd79f192e824f198","f063833007aae11174aec3047784cc10def122785ebb61f452657148dbb1eebf","91a285cf1c4f8966a94b236bed62a5134b8a7cafefdd7796da23ffa84598c722","521a154106744447a95b03797bfabcffa4fcb65cb7449288bd79f192e824f198","521a154106744447a95b03797bfabcffa4fcb65cb7449288bd79f192e824f198","521a154106744447a95b03797bfabcffa4fcb65cb7449288bd79f192e824f198","6b0188c764ae5cd37ae539e500b3f52c987869f51a27ce4bc2dcafc54f95ac82","a3c4e8a29a600884cccaf524d123e2b3c8553414765062a171cfba386ebc6761","c2ef8835014eb5555132b417223abffdac3b1be0b2fe8636b4f41a5e3318642b","2fd9edbda2bbfe9e75734fbcb045c08e114ab6b4a7d8fb4529765fcd16a2ddb2","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","8ebd47c1bb2c22903f157761735677b9ef86a51e36daed8cdaf8837fbd337542","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","cd66cd36d2781a82fa52af48da90649880508aa55c9c31484f481057e377f09e","7977750928b091f045c314c7d51bb09de6a62c0c6b8575c4b5100260d663139a","012ca25f44f18afc71cc53e64b3b108604c562044e86cda178c1ac1c333e0778","7fc49956c08ada9be9543cb0a1a165e126c44312081608e97f77a1bcb1e59df0","2475b4ac1a8c8cd0d203284359e1144058f1ae26eaf9fbb84a0bcdaea473a8ed","9267044ca4c7dfc280acc0ca24e57cd80b5946958307231ab3bdc097dd6fee4c","13705f6a2221d21c94690087ae04f429f073a5f46d2e0cd40458a732a2a2afd2","4db50d088fec65e172914dfbb7164bc175916e3e172179fc31b61e98b7922247","afd326fcc30ac381b79c554102dc3b353083f6e799554b6865c537288299c429","be62e7ed973f261295f8b2e10e8f955607e1e385eeee713799214914e45be5c4","1ea59cfe14e93ca90ed5e334b846ebd9430529587f1339b300cfebf612874b0d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","83b5f5f5bdbf7f37b8ffc003abf6afee35a318871c990ad4d69d822f38d77840","0342f7271c3c01921ca1360153d008372d028a96b8946306432f642b316ba2bf","08992873ab5bb49a1652a7962e1718511eaef5b2b020650af23e0293e9ff36b8","78f82ba8fc1a8b828998264b91579b7589f9dbc57b739fecb13cbc72e455bbad","f3af26eda4b2679c4293f0d916c67e294e04b49131a08d425404b88f3da2c062","4c6606d1a3e1d355850cd09d4b375ae7ab462774f7c28c018e469e98ff4def34","aa0d6903041103a548f9bcd2c11cd701210609426ef98ba01ad59a17a0076c45","f89ee1761cff510ef93ca9ba263d9d9863d56ef9d86a5d7a8fc6dbe75c5ad0c0","0e458580ca1a787a3468cbbad98729c084652872acf622479d19b85058132958","5ce41fb2305667c534da624dbf36e8ba00e9ac7e15c5bf07b761902d3d1a01e5","7f3ebc353af0215b13ca04ad4ed65596ac0c1edf28a12350e9715d69d888c5b3","91b4ce96f6ad631a0a6920eb0ab928159ff01a439ae0e266ecdc9ea83126a195","e3448881d526bfca052d5f9224cc772f61d9fc84d0c52eb7154b13bd4db9d8b2","e348f128032c4807ad9359a1fff29fcbc5f551c81be807bfa86db5a45649b7ba","0fba40d7d3d779a84c39aed52884def98a8cd032242c7eb86bd6dc0989759c3a","ad4d2c881a46db2a93346d760aa4e5e9f7d79a87e4b443055f5416b10dbe748c","c2fc483dea0580d1266c1500f17e49a739ca6cfe408691da638ddc211dfffad0","7c31a2b77ae042fb1f057c21367e730f364849ae8fa1d72f5a9936cef963a8b2","650d4007870fee41b86182e7965c6fb80283388d0ba8882ce664cc311a2840b5","1371cc469a4a618042f5230e95e6476dd6dc33ad75a65cf407c079fe4fcc619e","c16c3b97930e8fbf05022024f049d51c998dd5eb6509047e1f841777968e85c1","b512c143a2d01012a851fdf2d739f29a313e398b88ac363526fb2adddbabcf95","535b2fc8c89091c20124fe144699bb4a96d5db4418a1594a9a0a6a863b2195ae","13409a75ad9472934934afaff70eeeb16e84a3667522d1e6794f15a0db648829","3068cf3437f485ccac6ddc86c475e61bc487452852510d95c83f6bad6dab9a66","21575cdeaca6a2c2a0beb8c2ecbc981d9deb95f879f82dc7d6e325fe8737b5ba","832c2f78ec29728aca9c84998182993b8b27fff904e7622e73194d6d34154a0c","faba53dda443d501f30e2d92ed33a8d11f88b420b0e2f03c5d7d62ebe9e7c389","3eb7d541136cd8b66020417086e4f481fb1ae0e2b916846d43cbf0b540371954","9ff4b9f562c6b70f750ca1c7a88d460442f55007843531f233ab827c102ac855","4f4cbbada4295ab9497999bec19bd2eea1ede9212eb5b4d0d6e529df533c5a4b","cf81fae6e5447acb74958bc8353b0d50b6700d4b3a220c9e483f42ca7a7041aa","92f6f02b25b107a282f27fde90a78cbd46e21f38c0d7fc1b67aea3fff35f083e","479eec32bca85c1ff313f799b894c6bb304fdab394b50296e6efe4304d9f00aa","27c37f4535447fb3191a4c1bd9a5fcab1922bec4e730f13bace2cfa25f8d7367","3e9b3266a6b9e5b3e9a293c27fd670871753ab46314ce3eca898d2bcf58eb604","e52d722c69692f64401aa2dacea731cf600086b1878ed59e476d68dae094d9aa","e91e51fff687b8298cc417e946cbf5a771c2d02a6b5b7fe154593926cf3d1a8e","039bd8d1e0d151570b66e75ee152877fb0e2f42eca43718632ac195e6884be34","89fb1e22c3c98cbb86dc3e5949012bdae217f2b5d768a2cc74e1c4b413c25ad2","8fa001c2643391219635104f05d74a6ec81c1901427112e3504ecc6d26f73ba3","79ef71406c8bf1bae97854b49b59c2ff9cee1845a798290ffec4424f3e5a6787","d2a0e2c9e1324f4943fa7b1c9aaa6cb979e7c43d4f8525cfb14795ced26516b4","e3b5dff2c0c3dc3e6d955a141245a934fcee0d226b36e10e2a26861bbab5879b","76873c84045f3f806e8b92b6118f607921c3a614261b30e2a3f1f85994279ed7","26ce83c160c83e290ead6542b9b113fc363ae8b176ecda927b409ce51657a312","06dc02ba36c4a7219bcb19598a6a94d4ee879a1acb37a8c9ba19e1cb81a31a85","45550bba7e72b42f6758193c445d9a15006d7799d9cc41ec85618f2760792bf3","5f863b5bc2ff97be00b7e95e388d8f18aa221cb9e0afcfbbae7da875e71b9eb6","dcf2edf9a4ae6467dd6b6423a7ae9b7213b2cb000ce2f993f0c677d09eedc489","5828d8f3dd09bab17d39301cfa06f29e3c0775b4788e67efcd337a8f5c5bff3e","28fb298f1a0f9f3a2e41d37b2ae6717a1e25286076fb89180f858cfde370eaf6","b6a4e5caf587fe70605b9ed2be29258e663403c99f562ec73e63a73e98e2992b","6b00e44c1dfa13424c0ee67e07ffa2429aaaa032698ca35376fb68e9e5afc69d","f5b39e5ce0d7d83011f32976dab5ec49abadbf6ae24c4bb76d73acadc9bfa4ff","e9418150e37bc876e7eb22f33116a87fffd4a29f7fedc1e512e62d9c5ef7a37a","02747baa5f305417a5c6ec02996de9c5b0743ae7c6161d57c42f9862c304f930","eb33f1a1ca9d6c0590d2fd3c77cff1852ff1db4503566f82fc09f0816b5fce67","91692a3d26cabffd260c5c76e55a11a50b7e9088cd811800b8b391ce61db3b3b","e75aea34fc8ed19027ad9e082ebe562594a21d14d520289adc416f846a606ca6","5d47587dfc88a442c9d48961e2495429e0463c4698e224db810294467af88111","671324b7429d0d01246c337e0b5f69f5bf3e140fd82e57f45ccc4b08e7332468","7836f256a8df7d0e6ad676b0da9d77ebc51a2d23740fe97b77f579dc53a01490","165cec353ba2f322f1246f2d2ef5e47a662eff23c38b235495dd8ae48e35fafa","f09912ab237f16fab73a12c1b82d76e64a16b95a5896098a1db7826df7b72be9","7f173eb9809782b3322466712d50b564c90b7b8d1648c197e3d11643946c06e3","9a0e1b46db13f5a66f6997088a2555aa8a47038821922412994f54b60292dee4","a82a9346982f55d4f8a724d458b4378f322f1329e54f160ced01e1ed52d0ff26","6b98bd8d87f15c2ec66a98f66bb2f3f676e2811873612100aca6c66d4ee0651e","5dc4b28d92018055827cdacc57c002cba55ad2dd55dc95098f7684e9fbd016ec","6552460efe3df85dc656654231b75161e5072fc8ae0d5d3fd72d184f1d1f9487","47d6b5c9eef90150db146110fceafe993d57c06c8ecf772e1aed80c408e64d4a","065fc307c0c446e6c34ade1964e4831446e97bf5a2205852a2f0a715e6245790","e68cefe327be0e10ee06cf6b7a8c0f11271640333d1582c2176741896aade369","14f9bfe168ad8322e5e2c3e616278a8c13142dce7cb413e4dfe8272e7efa3b09","fcbed278dcc536e0762684323d7fd4fb19b58aae6bc370a825d0872b4cfbd810","4745a6a46b0a6aece039617723b668cd7c6f34db136df3a9af365443ea935898",{"version":"a1dc70e2051dd4c9a5d7e55ea99938d21e5ee625d6d4118a82de056b8b1f8416","signature":"733e3f0af7ba7950cc35b8ec8bd273c4dd8f1c7188144da8d14a6c2c91d64478"},"3dbb82e6d1939fd00d094294131318197172ddcf73ba7f522566e53ef48cac1a","a5c6f522bb0ccf5c1b4e38e133b76873696ac28681467e0f4283379d2844f852","75292cd2d7ce67ee3d24d31516ad58dc8403b51d2c7b58e7d3a78435d6b78f52","17ca095fae2dbebe03cb35053a016351843c3d535e4c9a9b8f4bc1f72d7f126b","2ca4540aabce6800f2217b6e2a282eb0a3bfebfe53561e58c9b9693d16bf1429","0ca29fde337113b172465f521f068014dd251fb0c9f02ffdd30a0732f4431ab1","c0a55e1da70b67be002877b3847b0b50b79b5e21fd440aec385ab68240d6a5c6","c3c441d8456d1bc31fe0bb10e320bfea6817c72a970cd9e40b8e8fcda10cbd51","130597be9ee0b264de06d5dae8c771bcfb9e81c9eb4134eb1d8016951e69c870","f306facbcd46afbdfadad41794a42d1a09eab13c0810dee92a28b9886ed8758e","942223030670aa3aac2247a53cc9d4455ddc5fd544dae8a5fb3d32778ab28b51","5e5bd456dbd9e4d766c2f620d7c17c79af6166cbbd6a8792b40b1fb391d2afb3","2983b451c80bbabe54f042b9d6f34547d098e40e00b6865f9cb297cc2f058849","98874d4bc3e2af71a70696e4938d2c0b947bf3d8315e0ef23db184433c9934f3","6bbeb959bc6c6442d90ae14b19b903ae193c5481c9d83b4e743539d6a816675c","d769c515846066942e5a8b0218686fb095a1750f602dfdef4a417042d1a35d58","b9152750a001c327f318df69456e73417b7a5266036f523b222bfe1392b08b6c","c83df839216d7e3ef970934fcc331151b81abf2647cf5e6a3ad9642bad74d4f0","294bd17c185ad968753804a101ccc603844b59f30a795895313d200555e5debd","20e76a9367ae710ca103ff1f3cb951f2628c66c18ef4a7c48bc46eca7ff6b086","403f527dad17f9eded7043230a1a5a5ccfdf11fe928f9f3f5b1369f4ce882f60","be0337c6a6f8b56dffcbb4590c8c72cc0c7a8f6fa47f4fa62d57507518b9c817","abeaa9cbff1c48b5cbdf78b8ed5e33610febb7ccc16bc38c9e2a1a16fdac1971","aaa136ac0f40f4f0a6fc7d14a90dc900126ef9ffcc496d4518247be5d7d78360","bc7b0556d2f2f9f165b6da77ef8a75f138331efe892d422d5156a450f39d3f41","3874da82aeb3439bb276c5f3fe20be2a9894b49126377fcb66b3bd0802e1ecec","40b21c32d6093f70ddb6749d8d99327de738bfa8eaeb2a5057b8fc2740551de0","5f69fcb9616417e98623405db8f16c5f4172ef5d3715312f16cbfec301f12f3e","4132c088cd466d5895e66a689733121acacf10452d801417938beceb100c975a","6b09a6d9b795845c16a5bef92160442e61320ca55ceef9f852409ae27e1cf49a","c6debb6cef57d1d3020160759e3ff94df73ad12cfb63d2e95164f67510b130be","311f919487e8c40f67cba3784a9af8c2adfb79eb01bd8bc821cc07a565c0b148","2f0ad5ea2e7e530ff91ccc2414f67f843a68beb38fb21b020e0a1725df29c7c0","529cf338bc74beb95a0778f2f17178ad78409ef6523840f9ede2079de3ecdc2b","c70fc2a6908798b18009155b91dcf4ca48442f087ccde9756be6ab0b847c6a04","3f81a9cdd412c1048d9c25535b9df0b463997d6cd88df0a0a91d4f42efd7af72","6211b2ad05f47d231a3e18235225d7894002dba541500dd1021033e919e14e84","d49b4ea7c220c8dab4b679dd099e643b83ddac9026cfa335802f21a3f82a7994","c5d9c29ff7302573a8ddd3a3923ef017c683a915d1e626ed39fe20c0f25858e9","b058355d326fa2c98f7340824a77bf5e9b61354609bd97fa62f6337a40e5443a","8abb5a1a747b3fafb0513c5f595ae41f7608203ec85c289af9a8499bee0cdd0d","b162314103b89e05cab5f0c65c1c6cc88cdf38b4618db69ff0736667e3e19a85","a92ac8af7861b950098ceb4d3b9b63656f012f5a96738af5ea0255c536083108","abe90b39bdb2f076232dfaeb9064eb659aaab4bd0f5f9c0712f4eadc1ddc312c","dd8df82fff2c1bedd09155629867c336d235f65e9f6c235aad38ec53d25dac30","f216a024fb59c9a9864deaa618eb49b19482f699de5f1ac2aa60435fdba30074","904904a41ea0779a7e6e6ba1acef006202355631fead0f63c20ea6a972c0ed5d","e466cd2ac6e5591231b5d7f1a46372dd5acc7f756a9010e4312d54ee7af13589","5be7e85256dbf685d4cc2a6c5a68b60b5209f794768f8d15d2e8dc8f7b4366b6","563efdc90627de30c505901cdb1ac55012419486fb7ac3c351eeddf80cd7cd16","09887fa64ef252278983c7215aafde9a83aace65e129b5ca98fe1e1cb1427a4e","98bab473d4dac9cc8661d27766f3b434448502525c39b87d765ededea19b0b54","46c51930e69ccd9c3a069e6afe22ad8f057e4052ad9dbcea8554a13e25f3a8f0","53b48efb03c058deb8fff1231547afac2cab5eac75512bd2b88029258520044e","c7008e25445194a33bae86ea59eb0697723ab026b3f752e4dae069b3308fe41d","4cbc005058899e5feed65b3d2d6957b4e909bc6ffec2a8f3918e023d285affdf","74a97040d1ee1aee275b556af4220b58cdf991bd2d51f762951a4226964632b9","b911a7c2e86018036e762b1382210cb667b2d7ae89051a6037571c1d9911462a","b32ae1333fe016bbdb299e54b65965a1e25bc68d2639e2d54f8fdc4656e35072","776fc60a39a707fab820ade179a919f182704e6f39050deaf2e36d53f0e97179","39b7522fdc2159d684b0e23b5b1b2ad6b8eb9a6cce1226bda21c2c29bebd2515","cfc3340169107891b727617c2f3ed8ec456b57f5a13cff6a940933e302d9b781","27a833d9719c5df674d4f55d2d92399ead599bf7892aa2240f787ef4c87373a5","5157cf1fa372cdc6576a229b269ca05e299df0f92139c99885cd8cec87862758","36e7b8c4d43415dd1dd2b350fdd47ba36fa971a533cb6fd436e6c8235d0770fc","9a9061bffadccbed4c58361cb5f3ad41313102b85955b673f86a853d0f3e1cb0","74135589d8b3f5f738353e2f49b726eb32f6837ec4d4adb4b6dbf881d5c2448e","de78b4a61e71c795ad76f18054521884c0361ad951576b653b6271b37e786d00","694940bbed3e6128b2117c87f0579fac2aab8069c86a875cf046719ce1843eb5","9920945a21dca849596b03a57c94627d34e47728374ebabb1881d0780daeae98","ea7fe47073f4d3f850f20df8b68ccafe1094cf69889105f7473f6aac71c6bd28","436e26b5eb594a43624302863e715d04997bdcc672ba69cf201be7a8fba1be48","e80b73b8cdd9ee251a5e001487d4b569193683fd3c490ebf57a031ac52f332a0","583c6257ad1e8e1167ce5375ae60034d1b74a2fefa294c3aa6d62efb92170147","e429ca18585f6cf04b794caefb5063411824498f7c35f2038a09215dfb6178ba","f2f8bd0eaf042958627dc59a672f190da32ad82c17b49124beea0d1f7b6cb9ac","2dcad576f12410daeed9147a4b6be186fc387a820a7e907742177f1e5b1c4e66","3191886aa67ce5cc05e1757f0616d9aa6b650fdead37f90c9b91be82e6c5ec55","868e649af0421b2275f446f139e3bd0dd01feb49a23136366d857bbba1c92c9e","262066dab5f49191b9d35fdb64a4ae2cd135daf3b40b39113c7139f1a534afc3","c1fb97a5ce10f44c67426df8124d0901f9d8bdb2800d6f4afe70e72ce89997c4","1b565ba9efec6de24ca587f76480799be61ae7c514998ee8e0daa98e2400aaa2","e4e93945cd0291dca32a056ff4a4d3b2958b57836dd389f32e990307569bd5f3","a3195eb6b6f4e94fc405ab406377b9d2a62171a032f697ab510d533fd2b18c97","87460619cb805327ec5ed256d38332f1dcbeaa273baec1789a60bc342cf8b93c","17cff7e35937c2c442aa63e6c9ecd6fb7ea036c6e48226e3dcc413654fb68582","2aa88cee3d2a49a359d6ae7386bd72d46306d56ff84b5eb6f9c026c69ab7578e","529c5b8e99cde93515516e6265f9619cde1e2e43cdc3d1212470fb9907aa069f","1aa91606d571bbfd556dadb5eb9a6da8da03b9ad9e00ee4301b54d25e41c73c2","f511825b80e8993ee666123c7a3bca597d30ca990836ced8db797d1cc6e1bd35","152ebbeba243bd02a65553d9a7072f5985b394ec7ea31be11f1ba5d5b3d72820","9ab4e2632a414f5f10efbf75f4e8c541ef489458a2bd25b604a07566ffb53cc4","4c60872f31e0a4bff15c9dcc52c6554497c61bc499c8dcbb5e58687e4cb2c568","f35584e9b6124229b23f0c44d75aedde2b9fb3b0117e292863a80f256de3eaa1","e29766206e22168da8f8a763208a4b052df17fe569c89492cf185efc11cea703","808f0d90cd974d9fb1716f8b6ee78b952363e8b1fb3b36a91873f32004d509ad","93b917f6a66afeb38d2f2344a1e9518fcf0359dc751d50db71f2037a6f7d4b0e","37f28dbfb940ea6aa4179ef7f7f9aa17442585317fbf1d0cf34619b41c0aff56","c2eb4761b37f7e959a208accb66700ecb1564ebb2e048d916db0ab53a791c852","2276d5832d354b0b2e8e091628ec1d7e314685a943a93dbcb8d12c8d90b1acd4","c17886987792d1bc119b6988dc5d804032c65e0a8ad4bd89d8a25bff28db21b9","003862fb7f01e4885cba058a0c023c3dd3b72617869c278f36dc4ada58cd49ed","750f5b433e00907ecf601953912253c42be493ae41f9d3faf02c0c53918d7a5e","2774e76e5e7c5c6bab42b16e33c2f389effd06acdf4e3d604f009eb6bbac7b31","5dc4b28d92018055827cdacc57c002cba55ad2dd55dc95098f7684e9fbd016ec","2774e76e5e7c5c6bab42b16e33c2f389effd06acdf4e3d604f009eb6bbac7b31","6552460efe3df85dc656654231b75161e5072fc8ae0d5d3fd72d184f1d1f9487","2774e76e5e7c5c6bab42b16e33c2f389effd06acdf4e3d604f009eb6bbac7b31","6d7b298b1726d4e15233bbd68c2b433f88c43628ae8f652009a005391606640b","2774e76e5e7c5c6bab42b16e33c2f389effd06acdf4e3d604f009eb6bbac7b31","e68cefe327be0e10ee06cf6b7a8c0f11271640333d1582c2176741896aade369","dda956418b200c98c9aea9a56ed1d4664e5969b90652d85cf64756235d61f861",{"version":"c24c9262e875cf754ea9430c526e066969b7b58a6d294a31e5b85a42315bdd2e","signature":"511da88dc224f672927a0f77d49243d241e6967847adab4a75592b51b2a93212"},{"version":"9ec4e112f598fbed0ea543be208fa7c941b89c20e9d154355867300258260ce9","signature":"88c508c5934a8ac14818127cb699642784d3602c10834ef60de2e54634809958"},"1762a65c54e447d68316b83b0e7ad7462d4552a091a1b86a470c3b9a6d81b6f6","953ce34ff67f5dd458ea15181112101cf140e1378473b081fc38ca608c42543b","74eb63ce6f121af02749d9e286f550bf97edfb27ed842c39c4e1d59df3bd2902","131284e437ac80e10c5e71c6f8cb3b08c03dbb2606ea6a725769e8865df35d3a","d234c69fe57c6f3b35745b5b7244302b95c33995d4c2cd9f41d28d1da2dbbde5","2ba22e2151ff013b0da83208b96cd773268665585f4807f1e110a151905e2698","8d0f71340689db96fe79e55411a7d49071a366a12a7651d2e404e6d0702165d5","e6a49470f14c7493fd82d2a40fa92cb5d7a2abc38cb0d7b0b2752a60c6c8bc36","c4322ecdbd0e7d4f4e39413b8308c6fd7351af5ef41f96f1d30bbf4e9daf5c5c","93e54b8d2ae8015c4ac95c33a1a24ba698e59cd8d7593724a41ae4898447722a","7cb41d43d4ceaeea768acd1de59aff77a2373838e78fed52842172c60144cda1","ed8d3b389d3500d61e6fac12c9f83d6d487a3b9f29a4aa226972398fc23cd5f0","0e5ea557701934e571d392ec95cd7ae9821a0e3aae67db3ac8216c4444b5cfae","7b9319e2e05710aa14432b8dbba69bfe6904ed6e3b4db2b81682756590714ed9","2fee503c22b1a7bf4048956e1b3af4cee6fd5c56942d4f6c8b1f84cffa89c126","f64f37bd41270f7d7415e3d31aa28c8d09d42e2427d72ad7150691be03a129f9","236d0b37bbdb7f94608457a9fe5bab9035a24c71d68c2a985ddd20ed464869ad","717fb5b019507b1d2774b8df8961427e066347ef71e31c80b4d9c278ed6a4d4e","5b90ac3938f9617f5b7f32d538617cdd3b09cacb732da8a9ea98fe627e6b30df","f768cf84d46dcf04d7194d4aea0e5f9d8a1b980884a2c14aa062dec130406734","31842e64e4604c1f0571a5170fed1bcaca2beeff2ea2d13b52cf4cbc9fe75a93","600d3dc0266b6c64a9438e58d83fbff2560ff8f86de654b3d2cf200ac8c28e04","966ed72659d5d787ecad49a81840fb004705e5e28cb9a352dd5c996409a0fca6","9005705d48bcb1c66197702d1d1c37d14387295a7964fee1d917042cb8c6308e","daec156f58f4b8ea600869f2915aa10d2c3fef926bf6758c9c1ffe4f8a9ff74b","7252646da37dfc937c8e5b4e6f9cf43f866c52d21af2d6c312c6e5dc13e6d761","b4c84a47d9be6df1f932e6c58f17caae4ae8d7d4d4bdc7b6059a05929c06b0a4","12345e103ce22702d56b75a3c89d739f5bece4a99c7d501ea0cf7a970e01c868","fbb3002929a2b9525cc95ac88c223473f088041addebaa1cb759ba3b87d42a1c","dc820d0e3c1e7f895a09fdef69b0ffda686b97b20849d15195cfdf6d729963fc","d90817798eab29a89430d4d08647325dfc10b2f344b67087df6ebbb0879dbf5a","3cdd7a858ec43be574783cbec4a430ae8810ca115e85aa610fd660a32b8d48c6","313f88cd39c1793a9cd20e1338a5f5622d920cde127878354db3b0fda414b448","391ef1a1ae53137203660270bcea6ddb3254ba9bd52a213a6601a95bad57d97d","02caef4ebdaf50afe062b25e94bfbdf63914605b550eb58ce326daf6b9e716ee","aaf3dbbee0b073c14dab96a76cf907f7842aac98e97f1b2279b4907dd698f31b","bc3c92d65ce913ef27e597a22796af97775680cdb8792aa25dc4a16cb79c74cf","e7b91fb6368fc8c602492a8384931d94d493840a95d06ca6e4918bfa573982ca","b19187be56dde541f8fd865b461771094101f8256555e2529f70a3e5fe7e26a9","c3aaf4e5c662d3755b8131aa2b980fd84d512cf2e0c206b919e376fc17e4c685","a39f4d90dcfaafd066b9c106d505ea24d0699b4067aa38ba4a49681fc8acf2b0","d4caa659b225cb2cd805fba462cea03c79059f0e91d71f27c0473f0391383ed8","6e2669a02572bf29c6f5cea36a411c406fff3688318aee48d18cc837f4a4f19c","3c5a1cfac773a5b8a0e114d810faa8468237e05634b503d14906de50191deebf","85214057183f8872d99653f56c4bd489b6e3b822cda4c899df922dd58678e0d4","6bc37dcc791563d5f2e516b8e171eae9384b576cbe3660b7da5edee60e5b84cf","54cd064e2ea729caa323f3e7b98344a8799c2c3b8cd71342fc5ceb5196ee6577","ad9894b2dc8f84adb7299a3b376e7f5018878b10353c4a26672faf8c03c8da53","97c4083413383b660dd5b8f660d271257fd4923a6b320dbc6de6600635df9599",{"version":"03a84260f230fd84d650058ce1bf9adad6e116c27b7a9f944c85dffacd452c63","signature":"ba08b3e37fd1af31498237370d0de37e3468f140c668f046aa55819aa7421747"},"38a5108e64af9bcc1d5938097dfab85af2dab8db371f367421e44a0acee4c65d",{"version":"6953bc3995b6a1cbecae63a3d1b818878ed5204d372f0125131b5026cc72e26a","signature":"a3277aeced07dce09a8c6fdfbe5fd332772aee906b8206b7b7b3c5c05ef9e22f"},"da01e025c0591b2aacc1d0cca53a002eca6e9d62ef82bed7b8626e1157959f2c","5899869138a5311a0535b38ff60e294689c83d20d54dbd267e3205b2537f8fa9","8fdcaffacfdc002767a5ef1c562ac69962f9093b419a1a757ea57f7613faf4ed","96e1c4c95f34ff5fa380fe682347e3d5fe8d2957df11741003956026a1a40197",{"version":"486562dd43f80748b54e11220c0fed75442c4332ddefa36bbfde6e86def0c112","signature":"e55ac241f9d4fb7dc338be3d85b683c22c2ec6cd95a0c964abfc61e2d61166b3"},"16e8b7dbf6cc3018ba691d471487428acafe8d5af610cfbffda81c81fd438ab6","6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","e0c7d85789b8811c90a8d21e25021349e8a756a256ae42d9e816ecd392f00f71","bb8aba28c9589792407d6ae0c1a6568f3ddc40be20da25bc1939e2c9d76436bb","8fa1868ab5af3818ff4746f383ea84206596e284f7dc5ffd40a0fac08ed093f9","8d4537ea6fcdde620af5bfb4e19f88db40d44073f76f567283aa043b81ef8a3e","0bb848976eff244e33741d63372cbfb4d15153a92c171d0a374a3c0ef327a175","68ca20e199b40a7ad73a1cc3b7f53123ab2dbc6c36d15413b2cce8c0212edd4c","202f8582ee3cd89e06c4a17d8aabb925ff8550370559c771d1cc3ec3934071c2","8b0a2400ba7522569871331988f820ba4cfc386f845b01058c63a62ad9db8d03","d3e29566a694a4068d450a58f59e3a3662fc12f74345343d441ef4d954984503","f7b3e68f7972250809e5b0cbd8f0e1f9da8c1dbf70244f289b204f1b49c2d398","4c7c99f7787c5c2ea6cbd911a7b5c7c2a4ee1cb9d7f538805ee2550cf1f1fb99","1557bf37fc8d5f129436caa0212f25d6cbeaf9d20e2e3a60b13306ff62a1d7a0","9a1e77270d63875c9a38630f9a7a9126f9a8df0245d5eb220832a65d408079eb","e48d0036e626bb40f236e236670722445ffff854908c2d9515b2b5b7f677794f","30f9018873d6d80256298011161a664a14b927f719f8a7605ceb8b49bc8808da","f543ea0fe820064a2cdbb39d2b2846c507467c4771eafcda2091da43b05c077b","9066d02264a67aae05410c340c8fa41a79bb076c33d1c6ae3ec29a05828f4c05","00435c177c3da6998c2f95b9e71239f00cfabd3461401cc4d8606ee3afb732b1","d432a2956d1efa172e1c60a8186a81657f2f9f4ba449c6abdfa9d057d484c45d","bc6679207eccaa45e49b930ad45ec8e7903bd8b0868e086d8bad91f79c914ca0","4dd35e71d52007465787dd2f374cc756a29e6c9b96dc237d0465d0294170c529","7ebf1f440efe6efebeb58a44000820cbe959da9d9496621fa6dcbc02666e3002","08a9e70641597e23d00be62e3a94b69ad93c5cf5541ec7bfdeb5e9f69c845507","ded59c554118589a8729fb70429318e41e7e8155b2aff5f3d7a77933e49dbc10","3af507089e65c1472a87e5f7345ec18838d7e923c2c06fdad3d31543278af762","c867e6d7de78f96eb55b534b3aca1da4e029a6ab0e4ea9d0610acf11d737f8a0","2df075b38e2135201202640fe92bce8d03fb319fece410b088a22ab4e1be7702","b9f07153f8e881c4cca036abccaa134df30cf09a3381772d089d1eeabe45770d","88213e972b5989f217627bdcb79a697f66821e8ff135265712346d532243084f","bf6122555f34582e6d5424a88676d90f2333e0e920764895c15d39b6c856053c","bf04a1c9ccfeabf521b7b97f388d05bc5f628422253399eb157fec0d9cd213ce","3c6ecfcc6ac82b5866368d1efbddeeb3bfae03962747bf6928d8faa092e5b369","06d19317f4c8474255b3ceab7102763faf7ff0aa4cc305384b13ccb6d27b2e50","ebe1694b3a7a0265b9cf8fb3bfed6575907247b61add671ea9771fd6715d1b29","bdf4a7242e5cce621b5ba689351af780b0b665d97ea88c71f50801aa80560236","af79b166f5d41ec2ebae57e9b67df564452b90ae3f0af4cb3c2d8ad5adbfd2db","6bd6ae32288500128ae355de57d6bc3b5884f37e1e5d5ac597b142f63b3c8121","a6634dbc56e3d75efac697e59fef032aa15cc537acf7f6ad3a045001f48483f8","6b1f9c7839370502ac5b10013ed905da932e7612548a0f7ee57d340f5a9ec86b","446b5dbbcbd8b9b1676f0ed77cb6bcd0d3adec82feddfd2f9d99ce9174126bd3","16504c568924627fcf340804a3a1d3845490194df479983147007d83ba347a18","7253cdf6610e2d0b08b7f368bee406b28572f0764de87c1c68309ac713a4d6f5","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","32e1fb333973369500d670e1a6adfbb3314d6b582b58062a46dc108789c183eb","e040fa1afb9b8d5bc1fde03bbf3cf82a42f35f7b03a088819011a87d5dab6e74","5156efecb13dffb9aefc31569a4e5a5c51c81a2063099a13e6f6780a283f94fd","585a7fca7507dd0d5fa46a5ec10b7b70c0cea245b72fc3d796286f04dacf96e4","7bc925c163a15f97148704174744d032f28ad153ff9d7485e109a22b5de643dc","c3dc433c0306a75261a665a4d8fd6d73d7274625e9665befd1c8d7641faeddd7","45b6a651b5e502cdfa93dc2f23779752def4ada323ebcfc34e4a4d22e9589971","9fc9575d1a0e89596012c6f5876b5c9654e1392fbd5d6d3d436bc9198ead87a0","f158579f034415f0bad9f6f41ed3ac0768dfe57dc36776d52e09c96a901c5e45","8e6a2d23d02da219dc17ca819efce29e1099883425f56e6c803c19d913b11173","bb2f509fedbf353c2dbb5626f25751308dda2cd304be0c1dfb7cf77f47fc56b3","f059bbc54f789b3da972dcc0f8b8fad77afc465be94ee766ad2a947cbed91c46","98d4546adbeca7ae6efe2938738d50388f952e52926df1e41f69d5bd943da90b","4e7fabbb3afb902d2095cd4796c37933c30674e3145433b07aace16ff6ba166a",{"version":"0bd5e7096c7bc02bf70b2cc017fc45ef489cb19bd2f32a71af39ff5787f1b56a","affectsGlobalScope":true},"8c6aac56e9dddb1f02d8e75478b79da0d25a1d0e38e75d5b8947534f61f3785e",{"version":"adf5711946f359c8a720091bee3aa3065c64d411568fcdf07e0ec480ee4a1337","affectsGlobalScope":true},"a6e59cf99535a6853e64662f20c7701f2c95c0eecb7e4be7307ef207253f73e9","482ff635ea42cc671ba1e5729f57dd784759acd60fc26d31d676ae522cf3e2f5",{"version":"5a7dccb227c05332ba3fa8d747442a646251846f0004f0180f6e050fd39ecefb","affectsGlobalScope":true},"13c76042dd1f4d8eb88cd21abd2e6ca73639ecc36130e15a97fc20b25fbd07ce","79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","49766a3e83c44708ea1357fa410c309837f4420826a5e265e3fb81e0087c7025","9f9fba2db9bb11058b153cdede4ec4e3ceed37d51a18a2edfaf7dfbef0a2b241","264ed569351932c557bf299080dcdf1fa3f86deafd12a3b4195a3bdc6e9d6229","006ffd4a92ea7050298f50e44dcc03155b943454bb874c0a5a3ad7c8ae92a50b","4cef6b76f45c58ff3044e1851afecd32be09fa6def7a626115b555b063e3e9ef","8510f56ab8598d18ec11cb2535112e2aace53e06da7d2d4fbb046e5c6cfb743e","1f85065e4d231eeb843a8485847ca66855a82984db1788ead57db359c6a52128","f10c018418c8621e4ab10596aed7202c49c36df8fda7f3c8a6ceba18724f4f85","26c304c279c0faf6ac61854c67373342e002a3d6c7ff0d8fcc7cee94f0ad323a","cc4ad1e0de78e65fbf1603669017fb939355e7bb4d38e48e78af619a390e4e23","f7598141e8c7143330f1cbfecb221b6f2beb95dc853ad6c20842891442944d0b","7ccd7b1d3c72e8ee639f48aaf190a4d2c9bf4c6650a22501d0fa98b8e3fc2fe1","31c74be259150eec1e3f8f4113f99cd10d5f1a278a5a7ef6fa29478d71766618","171a8d5b10a71ab01c4f43c110565a6a81d975eef7c46be20fc8162e21b2f188","ac052259a6eec4dc9e73e2309a64fa0fc4f7edba776418355b25e67cf24d3318","e83857dd6e1c80bacacdaee3eaf2bd71d8331880fd4705489e5e1383e0ac78a8","dceb21129b0ae66beddafba41b8765f27bf95669a8f7fbe3e94025e01c9351a8","859ea22746d11ed8386ec8d9b63b998462510705d527b83494f6a2fcaa7a5de4","825b79a00bb5650472780a23f75ee17cffe4d0eae235da96e50d3b8cd9456ea5","5b6ba1af9d52d4a47eb6908d1aebd2fe348d8212205b203d25ae528b46822eff","92ae8af22ba9f4d3728ee0075a23f5a9f2e071bb677e7db01ec2f44cc01ed473","a3f55be7fa724c524698e82466c2a651f352e673f63428d953923de161b1095c","f34def9623f89b02ac2568eeee0cfa655411e56b79f1198143053709d1987110","bc0d6e115f78a602be8f82c6977c3a3b4f84fa144e06706bd768797cd683f2b5","fb4b80d4f7140829a10b48ea77584e191098d20fbe77039e171fce8de1b257ac","871b7a0478e9b76721ca4f596acd219b2ff60f58fbf95198117ce4c1bf8eb52a","38a6564c83f8e5c76f0cbbd823c5ed16c9ea9e55f25629ca4a1384d3447b27f9","2faea076f501719cba9eb56cdf431e5efc09bc81b12a4329a825fedce77c6503","46f0d38a72546ad31308f6730267f835bea40803b9117c42a29ad009706cda9f","3a2cad3fdc52e8407c3c9a044c10a4db897bba4c1e30a96461f2e7b2be9955c0","a8e0ac700a94d9a42add85453d32842101fb1f08c1a296a02eb27105e78917e1","70cb02181c04656d711bca5c332549beae390bed0107bd97c419a3466bb39306","afe412b89ebed32a7eb2e44fe185cb24027d36f8543023e57ca36ead6e59193c","5a0012861a95843c567475a90362f686019af229a8946779ccc44c7efb5b1f44","586c4ef6496185cdbc08391fdc5f49dd80b14cdb2d01ace355b2b150f3fe71eb","148e197eb64a4c80531e4c959012755ce7fbfdbcb8d17721eac0c8a983c3e51c","edb06b0fc903fc619a7f2a3aeb6579e5b787eb624c349da738b574720558a596","d6fdaeb6f1e4e29d7827e30d743dfef5cb6c8bca4bc546001a3b3e751a2de06c","92f92e2b21f14f7ad07b15902ba806b89f37d8a83a7d127f7e638f92f241ddf8","74f4c396d57693d72e769ccc21b83542a78a6f3825ee0fe69cfefd7713f5e6cf","03a3957f7ccf2ceb0940c64e35734ed50c0d090c161924c44e79cfb7c9c437f1","010bb5235c40300fe81fd4af2dc7d48b573ef626e65d529242035274121f4c83","801bcd63fc346570aa633c166bc5869da8cb9ad252e113c4fe46800296f54147","2d231827320e0d5eab1dd0f01d95d70def0afdef83087303f03833c2a237d922","79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","e924774b42ff4558194d6531a3c368aef7b257e52cf001f01f7eda4655d1a125","6aaf8fe9da44f69b9402fb3d284ff4e4ce3af4e0528b796378f6fe63d7fa0fe9","ef8c201af35c32130313ca43e3b859b1657ec3082839116070122039eed6b895","f7c9374ba76859737e8bba66365d7e89eeca08dc8ee9ca8eaa693d5f9fe8210d","b5e90e03bf5f608bc525d9334e90cc1f7c94a6e13f0e6ce59dc099f5234694b5","fe93c474ab38ac02e30e3af073412b4f92b740152cf3a751fdaee8cbea982341","685ac382e8abff1fb8b8e9379be780a39608bda4909c5153e6ee46fce4dd5abd","1e00b8bf9e3766c958218cd6144ffe08418286f89ff44ba5a2cc830c03dd22c7","8e0158a34fc0d6d12113e093c709bd0930d300ab2f011d8b5efb7492c98831f2","55652c1ab8a2a1b10ccd9baba0aa31b0b749149c9bb03194bd4d71dab421d8f4","24254ce2f8d214d484a40bcdf7e4d03a9ba4c3772f117b578d767ca31df91c1a","30ee089a4316e0e56111b85337ad835d1dda9e07d7bb9de1f86ae115c544f70e","3f127bce3ca6a110dff19320ebe9c72bfbed841a402ccfc95ec59c2002c150d5","6643b095d69114cd0fd28ae8dc81126704b2c75e20732afa0181c6abf71955ab","904dffef24bc8aa35de6c31f5ed0fd0774eafc970991539091dc3185c875a48e","da5edb48832bb95f0a4c2d88e17289043431f27b20c15478deaf6bbe40a5a541","8f9f36755162f72c86eddc2b4bac64fd08779d36c6b89e3fb1d4ff3c5bd08e73","b2b9b8923932806aa27762be5cd75bcdd333285917cdd5dd57aefc0a89f1bbfc","c2008605e78208cfa9cd70bd29856b72dda7ad89df5dc895920f8e10bcb9cd0a","3922319fa0264c1002652074c35ee5d49358066dae9757e82a5b5606f5622cce","33ee52978ab913f5ebbc5ccd922ed9a11e76d5c6cee96ac39ce1336aad27e7c5","3901edd6fc729a1b1301721d74bcb09efdbcf4a9d3c2bd93a3302879d65400c2",{"version":"f768d2d899c5c452f4f19e9d611c4e67de7085e38f61dcbe31106cff14966141","signature":"7cf1edcea82d4d0f700ebf1a73f30a6c6b4420de28554d078a309235872ec3df"},{"version":"ff7f9d7b111a2a3e4fe03471fe2212c1ea55cbaea9e710b459fdb16cd3278203","signature":"9a85991707ed7de0d9bf8bf390a9ff1e93790b87788800777e21a5a15c63726c"},"3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","68cc8d6fcc2f270d7108f02f3ebc59480a54615be3e09a47e14527f349e9d53e","3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1",{"version":"19554495e422e163d91662fb665f01515a5a137e6082c528e49f80ce0604ab18","affectsGlobalScope":true},"7a1dd1e9c8bf5e23129495b10718b280340c7500570e0cfe5cffcdee51e13e48","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","b8442e9db28157344d1bc5d8a5a256f1692de213f0c0ddeb84359834015a008c","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","4f6baaf93d43c3772ca8bd8bdb7cccfc710e614135ac8491fff3f6f120497488","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","5c50a61c09fa0ddd49c51d7d5dbb8b538f6afec86572ec8cb31c3d176f073f13","54f1d17f9f484650cd49b53d9a6ba75593955a9ead093628888a37407b6ecd51","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","247a952efd811d780e5630f8cfd76f495196f5fa74f6f0fee39ac8ba4a3c9800","0c681cfae79b859ed0c5ddc1160c0ea0a529f5d81b3488fb0641105bd8757200"],"root":[[316,319],330,331,459,[461,463],465,467,468,[476,488],[536,605],[970,974],[976,983],993,[1089,1094],[1106,1108],1110,1111,1144,[1146,1148],[1155,1165],1282,[1289,1291],[1299,1301]],"options":{"downlevelIteration":true,"esModuleInterop":true,"jsx":1,"module":99,"noImplicitAny":false,"skipLibCheck":true,"strict":true,"target":1},"fileIdsList":[[313,318],[313,318,330],[71,464,475],[285,969,970],[71,295,300,333,459,462,480,538,982,1157,1158],[71,333,459],[71,333,463,465,468,479,480,481,485,486],[487],[71,333,459,460,462,463,465,468,479,480,485,488,535],[536],[333,459,460,461],[488,537],[333,481,483],[333],[484],[464,475],[71,333,481,482],[295,541,982],[71,295,300,475,992],[464,467],[71,285,295,300,969,970,996,1066,1083,1087,1088],[71,295,461],[71],[71,464],[71,466,470,475,476,477,478],[71,466,475],[295,475,543,982],[295,464],[71,295,470,475,993,1089,1107],[71,475,992,1106],[295,542,982],[1109,1110],[71,289,300,1143],[71,478,479,971,1145],[71,295,464],[464],[475,1092,1149,1150,1151,1152,1153,1154],[71,299,315,464,466],[71,300,461,464,981],[300,461],[71,300,461,540,979,980],[71,300,461,464,475,540,979],[71,475,1096,1105],[461],[470,969],[71,983,1157,1158],[71,295,982,1157,1158],[71,295,300,543,973,1090,1094,1144,1147,1157,1158],[71,295,300,542,973,1090,1108,1144,1147,1157,1158],[71,317,1160,1161,1162,1163,1164],[71,300,1144],[302,1286],[91,100,317,329],[92,416,417,458],[313,314,315],[1063],[1063,1064,1065],[1052,1063],[1013,1053,1054,1062],[1052],[1043],[1005,1063],[1014,1015,1044,1045,1046,1047,1048,1049,1050,1051],[325,1043],[1043,1060],[1060],[1060,1061],[1055,1056],[1043,1057,1060],[1055,1057,1058,1059],[1067],[1068,1071,1072,1073,1074,1075],[1068,1069,1070],[1069,1070,1073],[1067,1076,1080,1082],[1000,1067],[1077,1078,1079],[1043,1067],[1081],[997,1000],[1009,1010,1011],[1005,1012],[1008,1012],[994,1001,1002,1003,1005,1008,1009,1012],[1002,1004,1005,1012],[1004,1005,1012],[1005,1008,1012],[1006,1008,1012],[325,994,997,998,1000,1004,1008,1012],[1006,1007,1012],[1001,1002,1003,1004,1005,1006,1007,1008,1010,1011,1012],[994,998,999,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1042],[1013,1035],[71,1031],[994,1013,1030,1032,1033,1034,1035,1037,1038,1039,1040],[1003,1013,1041],[1013,1034],[1013,1032,1033,1034],[1013,1036],[1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041],[325,996],[997,998,999],[325],[320],[323,324,325],[323],[323,324],[320,321,322],[915],[736],[813],[653],[647],[654,655,656,657],[71,646,652,683],[71,646,652,697],[71,646,652,661],[71,646,652,677],[71,646,652,675],[71,646,652,691],[71,646,652,693],[652],[71,646,652,663],[71,646,652,695],[71,646,652,687],[71,646,652,685],[71,646,652,669],[652,659,660,662,664,666,668,670,672,674,676,678,680,682,684,686,688,690,692,694,696,698,700],[71,646,652,679],[71,646,652,681],[71,646,652,671],[71,646,652,673],[71,646,652,665],[71,646,652,699],[71,646,652,667],[71,646,652,689],[639,643,644,646,653],[661,663,665,667,669,671,673,675,677,679,681,683,685,687,689,691,693,695,697,699],[646,653],[703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731],[642],[646],[640],[637,646,647,648,649,650,651],[641,645,646,647,649,651,652],[71,646,647],[643,646],[641,643,646],[638,646],[639],[641,643,644],[639,641,645],[643,653,658,701,702,732],[916],[71,917,956,963],[736,958,959],[923,955],[733,736,922],[923],[917,958,960,963],[733,735,737,814],[71,735,815,917,919,923,924,925,926,956,957,961,962],[736,917,920,963],[736,921,963],[921,923,926],[71,923],[71,736,918],[736,921,924,925],[733,815,918,963,964,965,966,967,968],[71,736],[71,736,919,963],[71,963],[1213,1214,1215,1218,1219],[1171,1213],[1202,1204,1207,1208,1210,1212],[1171,1216,1217],[1202,1205,1206],[1202,1205,1206,1211],[1202,1205,1206,1209],[1172,1201,1202,1205,1206],[1213],[1227],[1216,1226],[68,69,70,1224],[636],[608,610],[611,631],[623],[622],[615],[613,616,619,622,623,625,626,629,630],[617,618,631],[616,618,619,622,623,624,625,626,627,628,629,630,631,632,633,634,635],[611],[622,624],[616,622],[622,626],[614],[614,616,620],[614,616,621],[622,624,627,628],[622,623,624],[71,984],[71,1097,1098,1100,1102,1104],[71,1097],[71,984,985,986,989,990,991],[71,984,987,988,989],[71,984,989,1095],[71,984,989],[334,382,385,415],[383,384],[334,380,381,382],[333,334],[382,384],[382],[384,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,402,403,404,405,406,407,408,409,410,414],[397],[401],[382,386,397,400],[333,382],[413],[333,382,411,412],[332],[606],[1205,1206],[1303],[1166],[1320],[1308,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320],[1308,1309,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320],[1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320],[1308,1309,1310,1312,1313,1314,1315,1316,1317,1318,1319,1320],[1308,1309,1310,1311,1313,1314,1315,1316,1317,1318,1319,1320],[1308,1309,1310,1311,1312,1314,1315,1316,1317,1318,1319,1320],[1308,1309,1310,1311,1312,1313,1315,1316,1317,1318,1319,1320],[1308,1309,1310,1311,1312,1313,1314,1316,1317,1318,1319,1320],[1308,1309,1310,1311,1312,1313,1314,1315,1317,1318,1319,1320],[1308,1309,1310,1311,1312,1313,1314,1315,1316,1318,1319,1320],[1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1319,1320],[1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1320],[1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319],[1216,1322],[78],[80],[81,86],[82,90,91,98,107],[82,83,90,98],[84,114],[85,86,91,99],[86,107],[87,88,90,98],[88],[89,90],[90],[90,91,92,107,113],[91,92],[90,93,98,107,113],[90,91,93,94,98,107,110,113],[93,95,107,110,113],[78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120],[90,96],[97,113],[88,90,98,107],[99],[100],[80,101],[102,112],[103],[104],[90,105],[105,106,114,116],[90,107],[108],[109],[98,107,110],[111],[98,112],[93,104,113],[114],[107,115],[116],[117],[90,92,107,113,116,118],[107,119],[1323],[1324],[67,68,69,70],[71,107,121,1297],[71,75,93,121,270,307,1295,1296],[377,379],[338,339,343,370,371,372,373,376,377,379],[336,337],[336],[338,377],[338,339,375,377,379],[377],[335,374,377],[338,339,376,377],[338,339,341,342,376,377],[338,339,340,376,377],[338,339,343,370,371,372,373,376,377,378],[335,338,339,343,376,379],[343,377],[345,346,347,348,349,350,351,352,353,354,377],[368,377],[344,355,363,364,365,366,367,369],[348,377],[356,357,358,359,360,361,362,377],[322,323,324,325,326,327],[328],[995],[811],[812],[809,811],[738,739,740,742,743,808],[764,809,811],[758,759,760,761,762,763,764],[774,809,811],[768,769,770,771,772,773,774],[743,809,811],[739,740,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,764,765,766,767,774,775,776,777,807,810],[764,765,767,774,775,776,777,809,810,811],[743,774,809,811],[743],[738,809,811],[744],[799,800,801,802,803,804,805,806],[778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,806,807],[741],[817,818,824,825],[826,890,891],[817,824,826],[818,826],[817,819,820,821,824,826,829,830],[820,831,845,846],[817,824,829,830,831],[817,819,824,826,828,829,830],[817,818,829,830,831],[816,832,837,844,847,848,889,892,914],[817],[818,822,823],[818,822,823,824,825,827,838,839,840,841,842,843],[818,823,824],[818],[817,818,823,824,826,839],[824],[818,824,825],[822,824],[831,845],[817,819,820,821,824,829],[817,824,827,830],[820,828,829,830,833,834,835,836],[830],[817,819,824,826,828,830],[826,829],[826],[817,824,830],[818,824,829,840],[829,893],[826,830],[824,829],[829],[817,827],[817,824],[824,829,830],[849,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913],[829,830],[819,824],[817,824,828,829,830,842],[817,819,824,830],[817,819,824],[850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888],[842,850],[850],[817,824,826,829,849,850],[817,824,826,828,829,830,842,849],[1233],[490,530],[489],[1237,1240,1243,1245],[1166,1173,1237,1240,1243,1246,1272],[1246,1269,1271],[1173,1246,1269,1270,1272],[1273],[1246,1269,1272],[490,501,503,504,528,529,530],[490,503,530],[490,501,503,530],[505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527],[490,494,501,504,530],[493],[1247,1248,1268],[1173,1247],[1173],[1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267],[1247],[1166,1173,1269,1272],[1237,1238,1239,1243,1246],[1237,1240,1243,1246],[1237,1240,1241,1242,1246],[71,1221,1228],[1171,1221],[1220],[1229],[1222],[1112,1113,1114,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142],[71,1115],[71,1112,1115],[71,1112],[71,469],[76],[274],[276,277,278],[280],[125,134,145,270],[125,132,136,147],[134,247],[198,208,220,312],[228],[125,134,144,185,195,245,312],[144,312],[134,195,196,312],[134,144,185,312],[312],[144,145,312],[80,121],[71,209,210,225],[71,209,223],[205,226,296,297],[160],[80,121,160,199,200,201],[71,223,226],[223,225],[71,223,224,226],[80,121,135,152,153],[71,126,290],[71,113,121],[71,144,183],[71,144],[181,186],[71,182,273],[1283],[71,107,121,307],[71,75,93,121,270,305,306,1297],[124],[263,264,265,266,267,268],[265],[71,271,273],[71,273],[93,121,135,273],[93,121,133,154,156,173,202,203,222,223],[153,154,202,211,212,213,214,215,216,217,218,219,312],[71,104,121,134,152,173,175,177,222,270,312],[93,121,135,136,160,161,199],[93,121,134,136],[93,107,121,133,135,136,270],[93,104,113,121,124,126,133,134,135,136,144,149,151,152,156,157,165,167,169,172,173,175,176,177,223,231,233,236,238,270],[93,107,121],[125,126,127,133,270,273,312],[134],[93,107,113,121,130,246,248,249,312],[104,113,121,130,133,135,152,164,165,169,170,171,175,236,239,241,259,260],[134,138,152],[133,134],[157,237],[129,130],[129,178],[129],[131,157,235],[234],[130,131],[131,232],[130],[222],[93,121,133,156,174,193,198,204,207,221,223],[187,188,189,190,191,192,205,206,226,271],[230],[93,121,133,156,174,179,227,229,231,270,273],[93,113,121,126,133,134,151],[197],[93,121,252,258],[149,151,273],[253,259,262],[93,138,252,254],[125,134,149,176,256],[93,121,134,144,176,242,250,251,255,256,257],[122,173,174,270,273],[93,104,113,121,131,133,135,138,146,149,151,152,156,164,165,167,169,170,171,172,175,233,239,240,273],[93,121,133,134,138,241,261],[147,154,155],[71,93,104,121,124,126,133,136,156,172,173,175,177,230,270,273],[93,104,113,121,128,131,132,135],[150],[93,121,147,156],[93,121,156,166],[93,121,135,167],[93,121,134,157],[93,121],[159],[161],[308],[134,158,160,164],[134,158,160],[93,121,128,134,135,161,162,163],[71,223,224,225],[194],[71,126],[71,169],[71,122,172,177,270,273],[126,290,291],[71,186],[71,104,113,121,124,180,182,184,185,273],[135,144,169],[104,121],[168],[71,91,93,104,121,124,186,195,270,271,272],[66,71,72,73,74,270,307,1297],[86],[243,244],[243],[282],[284],[286],[1284],[288],[292],[75,77,270,275,279,281,283,285,287,289,293,295,299,300,302,310,311,312],[294],[299,315],[298],[182],[301],[80,161,162,163,164,303,304,307,309],[121],[71,75,93,95,104,121,124,136,262,269,273,307,1297],[609,612],[71,734],[71,941],[941,942,943,945,946,947,948,949,950,951,954],[941],[944],[71,939,941],[936,937,939],[932,935,937,939],[936,939],[71,927,928,929,932,933,934,936,937,938,939],[929,932,933,934,935,936,937,938,939,940],[936],[930,936,937],[930,931],[935,937,938],[935],[927,932,937,938],[952,953],[1084,1086],[71,1085],[474],[471,472,473],[534],[71,490,498,530,533],[530,532],[490,494,498,501,530],[494,497],[489,494,495,496,498],[491],[489,492,494],[1235],[490,530,1234],[490,498,530],[1173,1202,1244,1274],[1201,1203],[1172,1173,1200,1201,1202],[1172,1174,1199,1200,1201],[1172,1173,1174,1201],[1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198],[1172,1173,1201],[1202],[71,1294],[609],[607],[1166,1171],[1167],[1170],[1166,1168,1169,1171],[419,442,443,447,449,450],[427,437,443,449],[449],[419,423,426,435,436,437,440,442,443,448,450],[418],[418,419,423,426,427,435,436,437,440,441,442,443,447,448,449,451,452,453,454,455,456,457],[422,435,440],[422,423,424,426,435,443,447,449],[436,437,443],[423,426,435,440,443,448,449],[422,423,424,426,435,436,442,447,448,449],[422,424,436,437,438,439,443,447],[422,443,447],[443,449],[422,423,424,425,434,437,440,443,447],[422,423,424,425,437,438,440,443,447],[418,420,421,423,427,437,440,441,443,450],[419,423,443,447],[447],[444,445,446],[420,442,443,449,451],[427],[427,436,440,442],[427,442],[423,424,426,435,437,438,442,443],[422,426,427,434,435,437],[422,423,424,427,434,435,437,440],[442,448,449],[423],[423,424],[421,422,424,428,429,430,431,432,433,435,438,440],[1292,1293],[1292],[91,100,293,317,330,463,465,467,468,479,567,977,978,1091,1092,1093,1110,1111,1146,1148,1155,1156,1165,1223,1230,1236,1275,1276,1279,1280,1281],[71,300,470,972,974,1145,1285,1287,1288],[283,974],[333,459,461,462,1159],[459,1159],[975],[310,1298],[295,543,978,1094,1157,1158],[71,459],[333,459,461],[71,333],[733,735],[530,1172,1202,1205,1206],[1231],[1327],[1231,1234],[1231,1278],[1328,1329],[530,1203],[529,530,1172,1173,1202]],"referencedMap":[[319,1],[331,2],[977,3],[978,4],[1159,5],[480,6],[487,7],[488,8],[536,9],[537,10],[462,11],[538,12],[486,13],[482,14],[485,15],[481,16],[484,13],[483,17],[983,18],[993,19],[468,20],[1089,21],[1090,22],[1091,23],[1092,24],[479,25],[1093,26],[1094,27],[465,28],[1157,29],[1107,30],[1108,31],[1111,32],[1144,33],[1146,34],[1147,35],[1148,36],[1155,37],[467,38],[982,39],[540,40],[979,35],[981,41],[980,42],[1156,23],[1106,43],[1110,23],[541,44],[542,44],[543,44],[970,45],[478,23],[971,23],[1160,46],[1161,47],[1162,48],[1163,49],[1164,47],[1165,50],[1158,51],[1287,52],[330,53],[973,44],[459,54],[316,55],[1064,56],[1065,56],[1066,57],[1053,58],[1054,56],[1063,59],[1015,60],[1044,61],[1047,62],[1048,56],[1046,56],[1052,63],[1051,64],[1061,65],[1056,66],[1062,67],[1057,68],[1058,69],[1060,70],[1068,71],[1076,72],[1071,73],[1072,73],[1074,74],[1075,74],[1073,71],[1083,75],[1077,71],[1078,76],[1079,76],[1080,77],[1081,78],[1082,79],[1067,80],[1012,81],[1006,82],[1009,83],[1004,84],[1003,85],[1010,86],[1002,87],[1011,88],[1005,89],[1008,90],[1013,91],[1043,92],[1036,93],[1032,94],[1041,95],[1037,96],[1038,97],[1039,98],[1033,23],[1035,98],[1034,99],[1042,100],[997,101],[1000,102],[998,103],[320,104],[326,105],[324,106],[327,107],[325,107],[323,108],[1145,23],[916,109],[737,110],[814,111],[654,112],[656,113],[658,114],[657,113],[684,115],[698,116],[662,117],[678,118],[676,119],[692,120],[694,121],[659,122],[664,123],[696,124],[688,125],[686,126],[670,127],[701,128],[680,129],[682,130],[672,131],[674,132],[666,133],[700,134],[668,135],[690,136],[683,137],[697,137],[661,137],[677,137],[675,137],[691,137],[693,137],[663,137],[695,137],[687,137],[685,137],[669,137],[702,138],[679,137],[681,137],[671,137],[673,137],[665,137],[699,137],[667,137],[689,137],[719,139],[703,139],[704,139],[709,139],[720,139],[705,139],[706,139],[707,139],[708,139],[721,139],[710,139],[722,139],[723,139],[732,140],[711,139],[724,139],[712,139],[725,139],[713,139],[726,139],[727,139],[714,139],[715,139],[728,139],[729,139],[716,139],[730,139],[717,139],[718,139],[731,139],[643,141],[650,142],[641,143],[651,144],[653,145],[652,146],[649,147],[644,148],[647,149],[640,150],[645,151],[646,152],[733,153],[917,154],[958,155],[960,156],[956,157],[923,158],[957,159],[961,160],[815,161],[963,162],[921,163],[920,164],[924,165],[962,166],[919,167],[926,168],[969,169],[918,170],[964,23],[965,171],[966,171],[967,172],[968,171],[1220,173],[1215,174],[1213,175],[1218,176],[1208,177],[1212,178],[1210,179],[1207,180],[1217,181],[1228,182],[1227,183],[1226,184],[637,185],[611,186],[632,187],[633,188],[627,189],[616,190],[631,191],[619,192],[636,193],[618,194],[625,195],[620,196],[628,197],[615,198],[621,199],[622,200],[629,201],[624,188],[630,202],[987,203],[989,23],[1105,204],[1104,23],[1103,23],[1098,205],[1097,23],[1100,205],[1099,23],[992,206],[985,203],[986,203],[991,203],[990,207],[1102,205],[1101,23],[984,23],[1096,208],[1095,209],[416,210],[385,211],[383,212],[382,213],[386,214],[387,215],[389,215],[390,215],[391,215],[415,216],[398,217],[397,215],[399,215],[402,218],[401,219],[384,220],[403,215],[404,215],[414,221],[413,222],[412,215],[411,215],[405,215],[406,215],[408,220],[409,14],[410,14],[400,215],[333,223],[607,224],[1302,225],[1304,226],[1206,225],[1172,227],[1321,228],[1309,229],[1310,230],[1308,231],[1311,232],[1312,233],[1313,234],[1314,235],[1315,236],[1316,237],[1317,238],[1318,239],[1319,240],[1320,241],[1173,227],[1322,242],[78,243],[80,244],[81,245],[82,246],[83,247],[84,248],[85,249],[86,250],[87,251],[88,252],[89,253],[90,254],[91,255],[92,256],[93,257],[94,258],[95,259],[121,260],[96,261],[97,262],[98,263],[99,264],[100,265],[101,266],[102,267],[103,268],[104,269],[105,270],[106,271],[107,272],[108,273],[109,274],[110,275],[111,276],[112,277],[113,278],[114,279],[115,280],[116,281],[117,282],[118,283],[119,284],[1324,285],[1323,286],[71,287],[736,23],[1298,288],[1297,289],[380,290],[381,291],[374,291],[338,292],[337,293],[342,294],[376,295],[373,296],[375,297],[339,296],[340,298],[344,298],[343,299],[341,300],[379,301],[372,296],[377,302],[345,303],[350,296],[352,296],[347,296],[348,303],[354,296],[355,304],[346,296],[351,296],[353,296],[349,296],[369,305],[368,296],[370,306],[364,296],[366,296],[365,296],[361,296],[367,307],[362,296],[363,308],[356,296],[357,296],[358,296],[359,296],[360,296],[995,105],[328,309],[329,310],[996,311],[812,312],[813,313],[810,314],[766,314],[809,315],[765,316],[759,314],[763,314],[764,317],[762,314],[760,314],[758,314],[761,314],[775,318],[770,314],[768,314],[769,314],[772,314],[771,314],[773,314],[774,319],[753,320],[756,320],[757,314],[746,320],[747,320],[745,314],[808,321],[811,322],[754,320],[776,323],[767,314],[750,314],[744,324],[752,320],[748,320],[749,320],[743,325],[791,326],[792,326],[805,326],[804,326],[786,324],[788,324],[787,324],[801,324],[806,327],[807,328],[799,324],[800,324],[782,324],[781,324],[783,324],[797,324],[798,324],[789,326],[790,326],[793,326],[794,326],[795,326],[796,326],[803,326],[802,326],[784,326],[785,326],[780,324],[779,324],[778,324],[751,320],[755,320],[742,329],[777,314],[826,330],[892,331],[891,332],[890,333],[831,334],[847,335],[845,336],[846,337],[832,338],[915,339],[820,340],[824,341],[844,342],[839,343],[825,344],[840,345],[843,346],[841,346],[838,347],[842,348],[848,349],[830,350],[828,351],[837,352],[834,353],[833,353],[829,354],[835,355],[911,356],[905,357],[898,358],[897,359],[906,360],[907,346],[899,361],[912,362],[893,363],[894,364],[895,365],[914,366],[896,359],[900,362],[901,367],[908,368],[909,344],[910,367],[913,346],[902,365],[849,369],[903,370],[904,371],[889,372],[887,373],[888,373],[853,373],[854,373],[855,373],[856,373],[857,373],[858,373],[859,373],[860,373],[879,373],[861,373],[862,373],[863,373],[864,373],[865,373],[866,373],[886,373],[867,373],[868,373],[869,373],[884,373],[870,373],[885,373],[871,373],[882,373],[883,373],[872,373],[873,373],[874,373],[880,373],[881,373],[875,373],[876,373],[877,373],[878,373],[852,374],[851,375],[850,376],[1234,377],[1233,378],[1232,379],[1246,380],[1245,381],[1272,382],[1271,383],[1274,384],[1273,385],[530,386],[504,387],[505,388],[506,388],[507,388],[508,388],[509,388],[510,388],[511,388],[512,388],[513,388],[514,388],[528,389],[515,388],[516,388],[517,388],[518,388],[519,388],[520,388],[521,388],[522,388],[524,388],[525,388],[523,388],[526,388],[527,388],[529,388],[503,390],[499,379],[501,379],[502,391],[1269,392],[1249,393],[1250,393],[1251,393],[1252,393],[1253,393],[1254,393],[1255,394],[1257,393],[1256,393],[1268,395],[1258,393],[1260,393],[1259,393],[1262,393],[1261,393],[1263,393],[1264,393],[1265,393],[1266,393],[1267,393],[1248,396],[1247,397],[1240,398],[1239,399],[1238,399],[1243,400],[1241,399],[1242,399],[1244,399],[1229,401],[1222,402],[1221,403],[1230,404],[1223,405],[1143,406],[1138,407],[1137,407],[1136,407],[1116,407],[1126,407],[1125,407],[1135,407],[1134,407],[1124,407],[1132,407],[1141,407],[1142,407],[1118,407],[1115,23],[1119,407],[1133,407],[1117,408],[1131,407],[1127,407],[1121,407],[1120,407],[1123,407],[1122,407],[1140,407],[1128,407],[1129,407],[1130,407],[1139,407],[1113,409],[1114,409],[470,410],[469,23],[77,411],[275,412],[279,413],[281,414],[144,415],[149,416],[248,417],[221,418],[229,419],[246,420],[145,421],[197,422],[247,423],[173,424],[146,425],[177,424],[165,424],[127,424],[214,426],[211,427],[209,23],[212,428],[298,429],[219,23],[296,430],[213,23],[202,431],[210,432],[224,433],[225,434],[154,435],[216,23],[291,436],[294,437],[184,438],[183,439],[182,440],[301,23],[181,441],[1284,442],[308,443],[305,23],[307,444],[125,445],[269,446],[267,447],[268,447],[274,441],[282,448],[286,449],[136,450],[204,451],[220,452],[223,453],[200,454],[135,455],[170,456],[239,457],[128,458],[134,459],[124,460],[250,461],[261,462],[260,463],[157,464],[238,465],[193,466],[178,466],[232,467],[179,467],[130,468],[236,469],[235,470],[234,471],[233,472],[131,473],[208,474],[222,475],[207,476],[228,477],[230,478],[227,476],[174,473],[240,479],[198,480],[259,481],[152,482],[254,483],[255,484],[257,485],[258,486],[252,458],[175,487],[241,488],[262,489],[156,490],[231,491],[133,492],[151,493],[150,494],[167,495],[166,496],[158,497],[201,498],[199,430],[160,499],[162,500],[309,501],[161,502],[163,503],[164,504],[206,23],[226,505],[195,506],[284,23],[290,507],[192,23],[288,23],[191,508],[271,509],[190,507],[292,510],[188,23],[189,23],[187,511],[186,512],[176,513],[171,514],[169,515],[205,23],[273,516],[75,517],[72,23],[251,518],[245,519],[244,520],[283,521],[285,522],[287,523],[1285,524],[289,525],[314,526],[293,526],[313,527],[295,528],[315,529],[299,530],[300,531],[302,532],[310,533],[311,534],[270,535],[1211,225],[613,536],[735,537],[942,538],[943,538],[955,539],[944,540],[945,541],[940,542],[938,543],[933,544],[937,545],[935,546],[941,547],[930,548],[931,549],[932,550],[934,551],[936,552],[939,553],[946,540],[947,540],[948,540],[949,538],[950,540],[951,540],[928,540],[954,554],[953,540],[1087,555],[1086,556],[1151,557],[1150,557],[1152,557],[1088,557],[475,557],[472,23],[473,23],[474,558],[1149,557],[1153,557],[1154,557],[535,559],[534,560],[490,379],[531,379],[533,561],[532,562],[498,563],[497,564],[492,565],[491,379],[494,391],[493,566],[1236,567],[1235,568],[1231,379],[1279,569],[1277,379],[1278,563],[1275,570],[1204,571],[1203,572],[1201,573],[1175,574],[1176,574],[1177,574],[1178,574],[1179,574],[1180,574],[1181,574],[1182,574],[1183,574],[1184,574],[1185,574],[1199,575],[1186,574],[1187,574],[1188,574],[1189,574],[1190,574],[1191,574],[1192,574],[1193,574],[1195,574],[1196,574],[1194,574],[1197,574],[1198,574],[1200,574],[1174,576],[1276,577],[1295,578],[610,579],[608,580],[1202,581],[1168,582],[1167,227],[1171,583],[1170,584],[451,585],[438,586],[450,587],[449,588],[419,589],[458,590],[439,591],[448,592],[425,593],[436,594],[443,595],[440,596],[423,597],[422,598],[435,599],[426,600],[442,601],[444,602],[445,603],[446,603],[447,604],[453,603],[454,605],[428,606],[429,606],[430,606],[437,607],[441,608],[427,609],[455,610],[456,611],[424,612],[432,613],[433,614],[434,615],[457,594],[1294,616],[1293,617],[1282,618],[1289,619],[1290,620],[1300,621],[1301,622],[976,623],[1299,624],[1291,625]],"exportedModulesMap":[[319,1],[331,2],[977,3],[978,4],[1159,6],[480,6],[487,23],[488,8],[536,626],[537,10],[462,627],[538,12],[486,628],[482,14],[485,15],[484,628],[483,628],[983,18],[993,23],[468,20],[463,23],[1089,21],[1090,22],[1091,23],[1092,24],[479,25],[1093,26],[1094,27],[465,28],[1157,23],[1107,23],[1108,31],[1111,32],[1144,33],[1146,34],[1147,35],[1148,36],[1155,37],[467,38],[982,39],[540,40],[979,35],[981,41],[980,42],[1156,23],[1106,23],[1110,23],[541,44],[542,44],[543,44],[970,45],[478,23],[971,23],[1160,46],[1161,47],[1162,48],[1163,49],[1164,23],[1165,50],[1158,51],[1287,52],[330,53],[973,44],[459,14],[316,55],[1064,56],[1065,56],[1066,57],[1053,58],[1054,56],[1063,59],[1015,60],[1044,61],[1047,62],[1048,56],[1046,56],[1052,63],[1051,64],[1061,65],[1056,66],[1062,67],[1057,68],[1058,69],[1060,70],[1068,71],[1076,72],[1071,73],[1072,73],[1074,74],[1075,74],[1073,71],[1083,75],[1077,71],[1078,76],[1079,76],[1080,77],[1081,78],[1082,79],[1067,80],[1012,81],[1006,82],[1009,83],[1004,84],[1003,85],[1010,86],[1002,87],[1011,88],[1005,89],[1008,90],[1013,91],[1043,92],[1036,93],[1032,94],[1041,95],[1037,96],[1038,97],[1039,98],[1033,23],[1035,98],[1034,99],[1042,100],[997,101],[1000,102],[998,103],[320,104],[326,105],[324,106],[327,107],[325,107],[323,108],[1145,23],[916,109],[737,110],[814,111],[654,112],[656,113],[658,114],[657,113],[684,115],[698,116],[662,117],[678,118],[676,119],[692,120],[694,121],[659,122],[664,123],[696,124],[688,125],[686,126],[670,127],[701,128],[680,129],[682,130],[672,131],[674,132],[666,133],[700,134],[668,135],[690,136],[683,137],[697,137],[661,137],[677,137],[675,137],[691,137],[693,137],[663,137],[695,137],[687,137],[685,137],[669,137],[702,138],[679,137],[681,137],[671,137],[673,137],[665,137],[699,137],[667,137],[689,137],[719,139],[703,139],[704,139],[709,139],[720,139],[705,139],[706,139],[707,139],[708,139],[721,139],[710,139],[722,139],[723,139],[732,140],[711,139],[724,139],[712,139],[725,139],[713,139],[726,139],[727,139],[714,139],[715,139],[728,139],[729,139],[716,139],[730,139],[717,139],[718,139],[731,139],[643,141],[650,142],[641,143],[651,144],[653,145],[652,146],[649,147],[644,148],[647,149],[640,150],[645,151],[646,152],[733,153],[917,154],[958,155],[960,156],[956,157],[923,158],[957,159],[961,160],[815,629],[963,162],[921,163],[920,164],[924,165],[962,166],[919,167],[926,168],[969,169],[918,170],[964,23],[965,171],[966,171],[967,172],[968,171],[1220,173],[1215,174],[1213,175],[1218,176],[1208,177],[1212,178],[1210,179],[1207,630],[1217,181],[1228,182],[1227,183],[1226,184],[637,185],[611,186],[632,187],[633,188],[627,189],[616,190],[631,191],[619,192],[636,193],[618,194],[625,195],[620,196],[628,197],[615,198],[621,199],[622,200],[629,201],[624,188],[630,202],[987,203],[989,23],[1105,204],[1104,23],[1103,23],[1098,205],[1097,23],[1100,205],[1099,23],[992,206],[985,203],[986,203],[991,203],[990,207],[1102,205],[1101,23],[984,23],[1096,208],[1095,209],[416,210],[385,211],[383,212],[382,213],[386,214],[387,215],[389,215],[390,215],[391,215],[415,216],[398,217],[397,215],[399,215],[402,218],[401,219],[384,220],[403,215],[404,215],[414,221],[413,222],[412,215],[411,215],[405,215],[406,215],[408,220],[409,14],[410,14],[400,215],[333,223],[607,224],[1302,225],[1304,226],[1206,225],[1172,227],[1321,228],[1309,229],[1310,230],[1308,231],[1311,232],[1312,233],[1313,234],[1314,235],[1315,236],[1316,237],[1317,238],[1318,239],[1319,240],[1320,241],[1173,227],[1322,242],[78,243],[80,244],[81,245],[82,246],[83,247],[84,248],[85,249],[86,250],[87,251],[88,252],[89,253],[90,254],[91,255],[92,256],[93,257],[94,258],[95,259],[121,260],[96,261],[97,262],[98,263],[99,264],[100,265],[101,266],[102,267],[103,268],[104,269],[105,270],[106,271],[107,272],[108,273],[109,274],[110,275],[111,276],[112,277],[113,278],[114,279],[115,280],[116,281],[117,282],[118,283],[119,284],[1324,285],[1323,286],[71,287],[736,23],[1298,288],[1297,289],[380,290],[381,291],[374,291],[338,292],[337,293],[342,294],[376,295],[373,296],[375,297],[339,296],[340,298],[344,298],[343,299],[341,300],[379,301],[372,296],[377,302],[345,303],[350,296],[352,296],[347,296],[348,303],[354,296],[355,304],[346,296],[351,296],[353,296],[349,296],[369,305],[368,296],[370,306],[364,296],[366,296],[365,296],[361,296],[367,307],[362,296],[363,308],[356,296],[357,296],[358,296],[359,296],[360,296],[995,105],[328,309],[329,310],[996,311],[812,312],[813,313],[810,314],[766,314],[809,315],[765,316],[759,314],[763,314],[764,317],[762,314],[760,314],[758,314],[761,314],[775,318],[770,314],[768,314],[769,314],[772,314],[771,314],[773,314],[774,319],[753,320],[756,320],[757,314],[746,320],[747,320],[745,314],[808,321],[811,322],[754,320],[776,323],[767,314],[750,314],[744,324],[752,320],[748,320],[749,320],[743,325],[791,326],[792,326],[805,326],[804,326],[786,324],[788,324],[787,324],[801,324],[806,327],[807,328],[799,324],[800,324],[782,324],[781,324],[783,324],[797,324],[798,324],[789,326],[790,326],[793,326],[794,326],[795,326],[796,326],[803,326],[802,326],[784,326],[785,326],[780,324],[779,324],[778,324],[751,320],[755,320],[742,329],[777,314],[826,330],[892,331],[891,332],[890,333],[831,334],[847,335],[845,336],[846,337],[832,338],[915,339],[820,340],[824,341],[844,342],[839,343],[825,344],[840,345],[843,346],[841,346],[838,347],[842,348],[848,349],[830,350],[828,351],[837,352],[834,353],[833,353],[829,354],[835,355],[911,356],[905,357],[898,358],[897,359],[906,360],[907,346],[899,361],[912,362],[893,363],[894,364],[895,365],[914,366],[896,359],[900,362],[901,367],[908,368],[909,344],[910,367],[913,346],[902,365],[849,369],[903,370],[904,371],[889,372],[887,373],[888,373],[853,373],[854,373],[855,373],[856,373],[857,373],[858,373],[859,373],[860,373],[879,373],[861,373],[862,373],[863,373],[864,373],[865,373],[866,373],[886,373],[867,373],[868,373],[869,373],[884,373],[870,373],[885,373],[871,373],[882,373],[883,373],[872,373],[873,373],[874,373],[880,373],[881,373],[875,373],[876,373],[877,373],[878,373],[852,374],[851,375],[850,376],[1234,377],[1233,631],[1232,632],[1246,380],[1245,381],[1272,382],[1271,383],[1274,384],[1273,385],[530,386],[504,387],[505,388],[506,388],[507,388],[508,388],[509,388],[510,388],[511,388],[512,388],[513,388],[514,388],[528,389],[515,388],[516,388],[517,388],[518,388],[519,388],[520,388],[521,388],[522,388],[524,388],[525,388],[523,388],[526,388],[527,388],[529,388],[503,390],[499,379],[501,379],[502,391],[1269,392],[1249,393],[1250,393],[1251,393],[1252,393],[1253,393],[1254,393],[1255,394],[1257,393],[1256,393],[1268,395],[1258,393],[1260,393],[1259,393],[1262,393],[1261,393],[1263,393],[1264,393],[1265,393],[1266,393],[1267,393],[1248,396],[1247,397],[1240,398],[1239,399],[1238,399],[1243,400],[1241,399],[1242,399],[1244,399],[1229,401],[1222,402],[1221,403],[1230,404],[1223,405],[1143,406],[1138,407],[1137,407],[1136,407],[1116,407],[1126,407],[1125,407],[1135,407],[1134,407],[1124,407],[1132,407],[1141,407],[1142,407],[1118,407],[1115,23],[1119,407],[1133,407],[1117,408],[1131,407],[1127,407],[1121,407],[1120,407],[1123,407],[1122,407],[1140,407],[1128,407],[1129,407],[1130,407],[1139,407],[1113,409],[1114,409],[470,410],[469,23],[77,411],[275,412],[279,413],[281,414],[144,415],[149,416],[248,417],[221,418],[229,419],[246,420],[145,421],[197,422],[247,423],[173,424],[146,425],[177,424],[165,424],[127,424],[214,426],[211,427],[209,23],[212,428],[298,429],[219,23],[296,430],[213,23],[202,431],[210,432],[224,433],[225,434],[154,435],[216,23],[291,436],[294,437],[184,438],[183,439],[182,440],[301,23],[181,441],[1284,442],[308,443],[305,23],[307,444],[125,445],[269,446],[267,447],[268,447],[274,441],[282,448],[286,449],[136,450],[204,451],[220,452],[223,453],[200,454],[135,455],[170,456],[239,457],[128,458],[134,459],[124,460],[250,461],[261,462],[260,463],[157,464],[238,465],[193,466],[178,466],[232,467],[179,467],[130,468],[236,469],[235,470],[234,471],[233,472],[131,473],[208,474],[222,475],[207,476],[228,477],[230,478],[227,476],[174,473],[240,479],[198,480],[259,481],[152,482],[254,483],[255,484],[257,485],[258,486],[252,458],[175,487],[241,488],[262,489],[156,490],[231,491],[133,492],[151,493],[150,494],[167,495],[166,496],[158,497],[201,498],[199,430],[160,499],[162,500],[309,501],[161,502],[163,503],[164,504],[206,23],[226,505],[195,506],[284,23],[290,507],[192,23],[288,23],[191,508],[271,509],[190,507],[292,510],[188,23],[189,23],[187,511],[186,512],[176,513],[171,514],[169,515],[205,23],[273,516],[75,517],[72,23],[251,518],[245,519],[244,520],[283,521],[285,522],[287,523],[1285,524],[289,525],[314,526],[293,526],[313,527],[295,528],[315,529],[299,530],[300,531],[302,532],[310,533],[311,534],[270,535],[1211,225],[613,536],[735,537],[942,538],[943,538],[955,539],[944,540],[945,541],[940,542],[938,543],[933,544],[937,545],[935,546],[941,547],[930,548],[931,549],[932,550],[934,551],[936,552],[939,553],[946,540],[947,540],[948,540],[949,538],[950,540],[951,540],[928,540],[954,554],[953,540],[1087,555],[1086,556],[1151,557],[1150,557],[1152,557],[1088,557],[475,557],[472,23],[473,23],[474,558],[1149,557],[1153,557],[1154,557],[535,559],[534,560],[490,379],[531,379],[533,561],[532,562],[498,563],[497,564],[492,565],[491,379],[494,391],[493,566],[1236,567],[1235,633],[1231,632],[1279,634],[1277,632],[1278,635],[1275,570],[1204,636],[1203,637],[1201,573],[1175,574],[1176,574],[1177,574],[1178,574],[1179,574],[1180,574],[1181,574],[1182,574],[1183,574],[1184,574],[1185,574],[1199,575],[1186,574],[1187,574],[1188,574],[1189,574],[1190,574],[1191,574],[1192,574],[1193,574],[1195,574],[1196,574],[1194,574],[1197,574],[1198,574],[1200,574],[1174,576],[1276,577],[1295,578],[610,579],[608,580],[1202,581],[1168,582],[1167,227],[1171,583],[1170,584],[451,585],[438,586],[450,587],[449,588],[419,589],[458,590],[439,591],[448,592],[425,593],[436,594],[443,595],[440,596],[423,597],[422,598],[435,599],[426,600],[442,601],[444,602],[445,603],[446,603],[447,604],[453,603],[454,605],[428,606],[429,606],[430,606],[437,607],[441,608],[427,609],[455,610],[456,611],[424,612],[432,613],[433,614],[434,615],[457,594],[1294,616],[1293,617],[1282,618],[1289,619],[1290,620],[1300,6],[1301,6],[976,623],[1299,624],[1291,625]],"semanticDiagnosticsPerFile":[319,331,977,978,1159,480,487,488,536,537,462,538,539,486,482,485,481,484,483,983,993,468,463,1089,1090,1091,1092,479,1093,1094,465,1157,1107,1108,1111,1144,1146,1147,1148,1155,467,982,540,979,981,980,1156,1106,1110,1280,1281,541,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,542,543,461,970,478,971,1160,1161,1162,1163,1164,1165,1158,1287,972,318,330,973,974,477,459,316,1064,1065,1066,1053,1054,1063,1014,1015,1044,1047,1048,1045,1046,1052,1049,1050,1051,1061,1056,1062,1055,1057,1058,1060,1059,1068,1076,1071,1069,1072,1074,1075,1070,1073,1083,1077,1078,1079,1080,1081,1082,1067,1012,1006,1007,1001,1009,1004,1003,1010,1002,1011,1005,1008,1013,1016,1017,1018,1019,1020,1021,1022,1043,1023,1024,1030,1036,1032,1041,1037,1038,1039,1033,1035,1034,1040,1031,1042,994,1025,997,1000,1026,998,999,1027,1028,1029,320,326,324,327,325,321,322,323,1145,916,737,814,654,656,655,658,657,684,698,662,678,676,692,694,659,664,696,688,686,670,701,660,680,682,672,674,666,700,668,690,683,697,661,677,675,691,693,663,695,687,685,669,702,679,681,671,673,665,699,667,689,719,703,704,709,720,705,706,707,708,721,710,722,723,732,711,724,712,725,713,726,727,714,715,728,729,716,730,717,718,731,643,642,650,641,639,651,653,652,648,649,644,647,640,638,645,646,733,917,958,960,956,923,922,957,961,815,963,921,920,924,962,919,926,959,969,918,964,925,965,966,967,968,1220,1215,1213,1218,1214,1208,1212,1210,1207,1219,1217,1228,1227,1225,1224,1226,272,637,611,632,633,627,616,631,614,619,636,618,634,625,620,628,635,615,623,626,621,622,629,624,630,987,989,1105,1104,1103,1098,1097,1100,1099,992,985,986,991,990,1102,1101,984,1096,1095,988,334,416,385,383,382,386,387,388,389,390,391,392,415,393,394,395,396,398,397,399,402,401,384,403,404,414,413,412,411,405,406,407,408,409,410,400,333,332,1286,607,606,1302,1304,1206,1205,1305,1172,1306,1307,1321,1309,1310,1308,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1173,1322,1216,1303,78,80,81,82,83,84,85,86,87,88,89,90,91,92,79,120,93,94,95,121,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,1324,1323,734,1325,67,71,736,69,1326,70,1166,1296,1298,1297,380,381,374,336,338,337,342,376,373,375,339,340,344,343,341,379,372,377,371,378,345,350,352,347,348,354,355,346,351,353,349,369,368,370,364,366,365,361,367,362,363,356,357,358,359,360,995,328,329,996,464,812,813,738,810,766,809,765,759,763,764,762,760,758,761,739,775,770,768,769,772,771,773,774,753,756,757,746,747,745,740,808,811,754,776,767,741,750,744,752,748,749,743,791,792,805,804,786,788,787,801,806,807,799,800,782,781,783,797,798,789,790,793,794,795,796,803,802,784,785,780,779,778,751,755,742,777,68,417,335,826,892,891,890,831,847,845,846,832,915,817,819,820,821,824,827,844,822,839,825,840,843,841,838,818,823,842,848,836,830,828,837,834,833,829,835,911,905,898,897,906,907,899,912,893,894,895,914,896,900,901,908,909,910,913,902,849,903,904,889,887,888,853,854,855,856,857,858,859,860,879,861,862,863,864,865,866,886,867,868,869,884,870,885,871,882,883,872,873,874,880,881,875,876,877,878,852,851,850,816,1234,1233,1232,617,1085,975,460,1109,1270,1246,1245,1272,1271,1274,1273,530,504,505,506,507,508,509,510,511,512,513,514,528,515,516,517,518,519,520,521,522,524,525,523,526,527,529,503,499,501,500,502,1269,1249,1250,1251,1252,1253,1254,1255,1257,1256,1268,1258,1260,1259,1262,1261,1263,1264,1265,1266,1267,1248,1247,1240,1239,1238,1243,1241,1242,1244,1237,612,1229,1222,1221,1230,1223,1288,1143,1138,1137,1136,1116,1126,1125,1135,1134,1124,1132,1141,1142,1118,1115,1119,1133,1117,1131,1127,1121,1120,1123,1122,1140,1128,1129,1130,1139,1113,1114,1112,470,469,77,275,279,281,144,149,248,221,229,246,145,196,197,247,173,146,177,165,127,214,132,211,209,153,212,298,219,297,296,213,202,210,224,225,217,154,215,216,291,294,184,183,182,301,181,159,304,1284,1283,306,308,305,307,123,242,125,263,264,266,269,265,267,268,143,148,274,282,286,136,204,203,220,218,223,200,135,170,239,128,134,124,250,261,249,260,172,157,238,237,193,178,232,179,130,129,236,235,234,233,131,208,222,207,228,230,227,174,122,240,198,259,152,254,147,255,257,258,253,252,175,241,262,137,142,139,140,141,155,156,231,133,138,151,150,167,166,158,201,199,160,162,309,161,163,277,278,276,303,164,206,76,226,185,195,284,290,192,288,191,271,190,126,292,188,189,180,194,187,186,176,171,256,169,168,280,205,273,66,75,72,73,74,251,245,243,244,283,285,287,1285,289,314,293,313,295,315,299,300,302,310,312,311,270,1211,613,735,927,942,943,955,944,945,940,938,929,933,937,935,941,930,931,932,934,936,939,946,947,948,949,950,951,928,952,954,953,1087,1086,1084,1151,1150,1152,1088,475,472,473,471,474,1149,1153,1154,535,534,490,531,489,533,532,498,495,497,492,491,494,493,466,1236,1235,1231,1279,1277,1278,1275,1204,1203,1201,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1199,1186,1187,1188,1189,1190,1191,1192,1193,1195,1196,1194,1197,1198,1200,1174,1276,1295,1209,496,610,608,64,65,12,13,15,14,2,16,17,18,19,20,21,22,23,3,4,24,28,25,26,27,29,30,31,5,32,33,34,35,6,39,36,37,38,40,7,41,46,47,42,43,44,45,8,51,48,49,50,52,9,53,54,55,58,56,57,59,60,10,1,11,63,62,61,609,1202,1168,1167,1171,1170,1169,451,420,438,450,449,419,458,421,439,448,425,436,443,440,423,422,435,426,442,444,445,446,447,452,418,453,454,428,429,430,437,441,427,455,456,431,424,432,433,434,457,1292,1294,1293,1282,1289,1290,1300,1301,976,1299,1291,476,317],"affectedFilesPendingEmit":[319,331,977,978,1159,480,487,488,536,537,462,538,539,486,482,485,481,484,483,983,993,468,463,1089,1090,1091,1092,479,1093,1094,465,1157,1107,1108,1111,1144,1146,1147,1148,1155,467,982,540,979,981,980,1156,1106,1110,1280,1281,541,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,542,543,461,970,478,971,1160,1161,1162,1163,1164,1165,1158,1287,972,318,330,973,974,477,459,1282,1289,1290,1300,1301,976,1299,1291,476,317]},"version":"5.2.2"} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 4b0e8c76e..2376bd0b5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1480,6 +1480,23 @@ resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.5.1.tgz#5f1b518ec5fa54437c0b7c4a821546c64fed6922" integrity sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA== +"@scalar/openapi-parser@^0.10.9": + version "0.10.9" + resolved "https://registry.yarnpkg.com/@scalar/openapi-parser/-/openapi-parser-0.10.9.tgz#35d29bd6b9c00b7147a1cdf4f77c307de6bdca2b" + integrity sha512-wsKZtL4B3Fmbv24B1zzeWdsEr6F60fLmToOFLA1b9QGQ6TAtIvLgKQWQ65eh5Vfx93nQb/iekamfErqHRHtEhA== + dependencies: + ajv "^8.17.1" + ajv-draft-04 "^1.0.0" + ajv-formats "^3.0.1" + jsonpointer "^5.0.1" + leven "^4.0.0" + yaml "^2.4.5" + +"@scalar/openapi-types@^0.1.9": + version "0.1.9" + resolved "https://registry.yarnpkg.com/@scalar/openapi-types/-/openapi-types-0.1.9.tgz#e2c5144f7b31ab831f914b1daa0f34b50e47b106" + integrity sha512-HQQudOSQBU7ewzfnBW9LhDmBE2XOJgSfwrh5PlUB7zJup/kaRkBGNgV2wMjNz9Af/uztiU/xNrO179FysmUT+g== + "@segment/loosely-validate-event@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@segment/loosely-validate-event/-/loosely-validate-event-2.0.0.tgz#87dfc979e5b4e7b82c5f1d8b722dfd5d77644681" @@ -3061,6 +3078,18 @@ acorn@^8.11.3: resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== +ajv-draft-04@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz#3b64761b268ba0b9e668f0b41ba53fce0ad77fc8" + integrity sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw== + +ajv-formats@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz#3d5dc762bca17679c3c2ea7e90ad6b7532309578" + integrity sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ== + dependencies: + ajv "^8.0.0" + ajv@^6.10.0, ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" @@ -3071,6 +3100,16 @@ ajv@^6.10.0, ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" +ajv@^8.0.0, ajv@^8.17.1: + version "8.17.1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" + integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== + dependencies: + fast-deep-equal "^3.1.3" + fast-uri "^3.0.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + ajv@^8.0.1, ajv@^8.11.0: version "8.12.0" resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" @@ -3892,6 +3931,11 @@ deep-is@^0.1.3: resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== +deepmerge@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== + defaults@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" @@ -4572,6 +4616,11 @@ fast-levenshtein@^2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== +fast-uri@^3.0.1: + version "3.0.6" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz#88f130b77cfaea2378d56bf970dea21257a68748" + integrity sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw== + fastq@^1.6.0: version "1.15.0" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" @@ -5113,6 +5162,27 @@ hast-util-to-estree@^3.0.0: unist-util-position "^5.0.0" zwitch "^2.0.0" +hast-util-to-jsx-runtime@^2.0.0: + version "2.3.6" + resolved "https://registry.yarnpkg.com/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz#ff31897aae59f62232e21594eac7ef6b63333e98" + integrity sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg== + dependencies: + "@types/estree" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/unist" "^3.0.0" + comma-separated-tokens "^2.0.0" + devlop "^1.0.0" + estree-util-is-identifier-name "^3.0.0" + hast-util-whitespace "^3.0.0" + mdast-util-mdx-expression "^2.0.0" + mdast-util-mdx-jsx "^3.0.0" + mdast-util-mdxjs-esm "^2.0.0" + property-information "^7.0.0" + space-separated-tokens "^2.0.0" + style-to-js "^1.0.0" + unist-util-position "^5.0.0" + vfile-message "^4.0.0" + hast-util-to-parse5@^7.0.0: version "7.1.0" resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-7.1.0.tgz#c49391bf8f151973e0c9adcd116b561e8daf29f3" @@ -5216,6 +5286,11 @@ html-react-parser@^3.0.16: react-property "2.0.0" style-to-js "1.1.3" +html-url-attributes@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/html-url-attributes/-/html-url-attributes-3.0.1.tgz#83b052cd5e437071b756cd74ae70f708870c2d87" + integrity sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ== + html-void-elements@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-2.0.1.tgz#29459b8b05c200b6c5ee98743c41b979d577549f" @@ -5294,6 +5369,11 @@ inline-style-parser@0.1.1: resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1" integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== +inline-style-parser@0.2.4: + version "0.2.4" + resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.2.4.tgz#f4af5fe72e612839fcd453d989a586566d695f22" + integrity sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q== + inquirer@8.2.5: version "8.2.5" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8" @@ -5725,6 +5805,11 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" +jsonpointer@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559" + integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ== + "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: version "3.3.5" resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" @@ -5769,6 +5854,11 @@ language-tags@=1.0.5: dependencies: language-subtag-registry "~0.3.2" +leven@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-4.0.0.tgz#b9c39c803f835950fabef9e122a9b47b95708710" + integrity sha512-puehA3YKku3osqPlNuzGDUHq8WpwXupUg1V6NXdV38G+gr+gkBwFC8g1b/+YcIvp8gnqVIus+eJCH/eGsRmJNw== + levn@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" @@ -6213,6 +6303,21 @@ mdast-util-to-hast@^12.1.0: unist-util-position "^4.0.0" unist-util-visit "^4.0.0" +mdast-util-to-hast@^13.0.0: + version "13.2.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz#5ca58e5b921cc0a3ded1bc02eed79a4fe4fe41f4" + integrity sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + "@ungap/structured-clone" "^1.0.0" + devlop "^1.0.0" + micromark-util-sanitize-uri "^2.0.0" + trim-lines "^3.0.0" + unist-util-position "^5.0.0" + unist-util-visit "^5.0.0" + vfile "^6.0.0" + mdast-util-to-markdown@^1.0.0, mdast-util-to-markdown@^1.3.0: version "1.5.0" resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz#c13343cb3fc98621911d33b5cd42e7d0731171c6" @@ -7576,6 +7681,11 @@ property-information@^6.0.0: resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.3.0.tgz#ba4a06ec6b4e1e90577df9931286953cdf4282c3" integrity sha512-gVNZ74nqhRMiIUYWGQdosYetaKc83x8oT41a0LlV3AAFCAZwCpg4vmGkq8t34+cUhp3cnM4XDiU/7xlgK7HGrg== +property-information@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-7.0.0.tgz#3508a6d6b0b8eb3ca6eb2c6623b164d2ed2ab112" + integrity sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg== + proxy-compare@2.5.1: version "2.5.1" resolved "https://registry.yarnpkg.com/proxy-compare/-/proxy-compare-2.5.1.tgz#17818e33d1653fbac8c2ec31406bce8a2966f600" @@ -7643,6 +7753,23 @@ react-is@^18.0.0: resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== +react-markdown@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/react-markdown/-/react-markdown-10.1.0.tgz#e22bc20faddbc07605c15284255653c0f3bad5ca" + integrity sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + hast-util-to-jsx-runtime "^2.0.0" + html-url-attributes "^3.0.0" + mdast-util-to-hast "^13.0.0" + remark-parse "^11.0.0" + remark-rehype "^11.0.0" + unified "^11.0.0" + unist-util-visit "^5.0.0" + vfile "^6.0.0" + react-markdown@^8.0.7: version "8.0.7" resolved "https://registry.yarnpkg.com/react-markdown/-/react-markdown-8.0.7.tgz#c8dbd1b9ba5f1c5e7e5f2a44de465a3caafdf89b" @@ -7917,6 +8044,17 @@ remark-rehype@^10.0.0: mdast-util-to-hast "^12.1.0" unified "^10.0.0" +remark-rehype@^11.0.0: + version "11.1.1" + resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-11.1.1.tgz#f864dd2947889a11997c0a2667cd6b38f685bca7" + integrity sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + mdast-util-to-hast "^13.0.0" + unified "^11.0.0" + vfile "^6.0.0" + remark-slug@^6.0.0: version "6.1.0" resolved "https://registry.yarnpkg.com/remark-slug/-/remark-slug-6.1.0.tgz#0503268d5f0c4ecb1f33315c00465ccdd97923ce" @@ -8059,6 +8197,11 @@ safe-regex-test@^1.0.0: get-intrinsic "^1.1.3" is-regex "^1.1.4" +safe-stringify@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/safe-stringify/-/safe-stringify-1.1.1.tgz#f4240f506d041f58374d6106e2a5850f6b1ce576" + integrity sha512-YSzQLuwp06fuvJD1h6+vVNFYZoXmDs5UUNPUbTvQK7Ap+L0qD4Vp+sN434C+pdS3prVVlUfQdNeiEIgxox/kUQ== + "safer-buffer@>= 2.1.2 < 3": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" @@ -8298,6 +8441,13 @@ style-to-js@1.1.3: dependencies: style-to-object "0.4.1" +style-to-js@^1.0.0: + version "1.1.16" + resolved "https://registry.yarnpkg.com/style-to-js/-/style-to-js-1.1.16.tgz#e6bd6cd29e250bcf8fa5e6591d07ced7575dbe7a" + integrity sha512-/Q6ld50hKYPH3d/r6nr117TZkHR0w0kGGIVfpG9N6D8NymRPM9RqCUv4pRpJ62E5DqOYx2AFpbZMyCPnjQCnOw== + dependencies: + style-to-object "1.0.8" + style-to-object@0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.4.1.tgz#53cf856f7cf7f172d72939d9679556469ba5de37" @@ -8305,6 +8455,13 @@ style-to-object@0.4.1: dependencies: inline-style-parser "0.1.1" +style-to-object@1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-1.0.8.tgz#67a29bca47eaa587db18118d68f9d95955e81292" + integrity sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g== + dependencies: + inline-style-parser "0.2.4" + style-to-object@^0.4.0, style-to-object@^0.4.1: version "0.4.4" resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.4.4.tgz#266e3dfd56391a7eefb7770423612d043c3f33ec" @@ -9124,7 +9281,7 @@ yaml@^2.1.1: resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.3.tgz#01f6d18ef036446340007db8e016810e5d64aad9" integrity sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ== -yaml@^2.7.0: +yaml@^2.4.5, yaml@^2.7.0: version "2.7.0" resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.7.0.tgz#aef9bb617a64c937a9a748803786ad8d3ffe1e98" integrity sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==