diff --git a/.astro/types.d.ts b/.astro/types.d.ts new file mode 100644 index 0000000..963f220 --- /dev/null +++ b/.astro/types.d.ts @@ -0,0 +1,168 @@ +declare module 'astro:content' { + interface Render { + '.md': Promise<{ + Content: import('astro').MarkdownInstance<{}>['Content']; + headings: import('astro').MarkdownHeading[]; + remarkPluginFrontmatter: Record; + }>; + } +} + +declare module 'astro:content' { + type Flatten = T extends { [K: string]: infer U } ? U : never; + + export type CollectionKey = keyof AnyEntryMap; + export type CollectionEntry = Flatten; + + export type ContentCollectionKey = keyof ContentEntryMap; + export type DataCollectionKey = keyof DataEntryMap; + + type AllValuesOf = T extends any ? T[keyof T] : never; + type ValidContentEntrySlug = AllValuesOf< + ContentEntryMap[C] + >['slug']; + + export function getEntryBySlug< + C extends keyof ContentEntryMap, + E extends ValidContentEntrySlug | (string & {}), + >( + collection: C, + // Note that this has to accept a regular string too, for SSR + entrySlug: E + ): E extends ValidContentEntrySlug + ? Promise> + : Promise | undefined>; + + export function getDataEntryById( + collection: C, + entryId: E + ): Promise>; + + export function getCollection>( + collection: C, + filter?: (entry: CollectionEntry) => entry is E + ): Promise; + export function getCollection( + collection: C, + filter?: (entry: CollectionEntry) => unknown + ): Promise[]>; + + export function getEntry< + C extends keyof ContentEntryMap, + E extends ValidContentEntrySlug | (string & {}), + >(entry: { + collection: C; + slug: E; + }): E extends ValidContentEntrySlug + ? Promise> + : Promise | undefined>; + export function getEntry< + C extends keyof DataEntryMap, + E extends keyof DataEntryMap[C] | (string & {}), + >(entry: { + collection: C; + id: E; + }): E extends keyof DataEntryMap[C] + ? Promise + : Promise | undefined>; + export function getEntry< + C extends keyof ContentEntryMap, + E extends ValidContentEntrySlug | (string & {}), + >( + collection: C, + slug: E + ): E extends ValidContentEntrySlug + ? Promise> + : Promise | undefined>; + export function getEntry< + C extends keyof DataEntryMap, + E extends keyof DataEntryMap[C] | (string & {}), + >( + collection: C, + id: E + ): E extends keyof DataEntryMap[C] + ? Promise + : Promise | undefined>; + + /** Resolve an array of entry references from the same collection */ + export function getEntries( + entries: { + collection: C; + slug: ValidContentEntrySlug; + }[] + ): Promise[]>; + export function getEntries( + entries: { + collection: C; + id: keyof DataEntryMap[C]; + }[] + ): Promise[]>; + + export function reference( + collection: C + ): import('astro/zod').ZodEffects< + import('astro/zod').ZodString, + C extends keyof ContentEntryMap + ? { + collection: C; + slug: ValidContentEntrySlug; + } + : { + collection: C; + id: keyof DataEntryMap[C]; + } + >; + // Allow generic `string` to avoid excessive type errors in the config + // if `dev` is not running to update as you edit. + // Invalid collection names will be caught at build time. + export function reference( + collection: C + ): import('astro/zod').ZodEffects; + + type ReturnTypeOrOriginal = T extends (...args: any[]) => infer R ? R : T; + type InferEntrySchema = import('astro/zod').infer< + ReturnTypeOrOriginal['schema']> + >; + + type ContentEntryMap = { + "products": { +"product-1.md": { + id: "product-1.md"; + slug: "product-1"; + body: string; + collection: "products"; + data: any +} & { render(): Render[".md"] }; +"product-2.md": { + id: "product-2.md"; + slug: "product-2"; + body: string; + collection: "products"; + data: any +} & { render(): Render[".md"] }; +"product-3.md": { + id: "product-3.md"; + slug: "product-3"; + body: string; + collection: "products"; + data: any +} & { render(): Render[".md"] }; +"product-4.md": { + id: "product-4.md"; + slug: "product-4"; + body: string; + collection: "products"; + data: any +} & { render(): Render[".md"] }; +}; + + }; + + type DataEntryMap = { + + }; + + type AnyEntryMap = ContentEntryMap & DataEntryMap; + + export type ContentConfig = never; +} diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 0000000..832e35a --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,62 @@ +name: Deploy static content to Pages + +on: + push: + branches: ["master"] + + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + deploy: + environment: + name: github-pages + url: https://anewstyle.cz/ + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '18.x' + + - name: Install pnpm + run: npm i -g pnpm + + - name: Install dependencies + run: pnpm i + + - name: Build + run: pnpm build + if: success() + + - name: List directory contents + run: ls -la + + - name: Archive files + run: zip -r dist.zip ./ + + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: dist + path: ./dist.zip + if: success() + + - name: Deploy to GitHub Pages + id: deployment + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GH_PAGES_TOKEN }} + publish_dir: ./dist + if: success() \ No newline at end of file diff --git a/.gitignore b/.gitignore index 71f61b3..d9575ed 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,130 @@ -################################################################################ -# This .gitignore file was automatically created by Microsoft(R) Visual Studio. -################################################################################ - -node_modules -package-lock.json -wwwroot/CSS/style.css -wwwroot/CSS/style.css.map -wwwroot/CSS/style.min.css -wwwroot/CSS/style.min.css +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp +.cache + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* diff --git a/Resources/.stylelintrc.json b/.stylelintrc.json similarity index 98% rename from Resources/.stylelintrc.json rename to .stylelintrc.json index 97fc77a..6ea808f 100644 --- a/Resources/.stylelintrc.json +++ b/.stylelintrc.json @@ -10,7 +10,6 @@ ], "order/properties-order": [ [ - "@property", "@include", "all", "container-type", @@ -217,10 +216,7 @@ "visibility", "cursor", "user-select", - "direction", - "syntax", - "inherits", - "initial-value" + "direction" ], { "unspecified": "bottomAlphabetical" } ] diff --git "a/Luk\303\241\305\241_Chyl\303\255k_CV.pdf" "b/Luk\303\241\305\241_Chyl\303\255k_CV.pdf" deleted file mode 100644 index 2bf14ab..0000000 Binary files "a/Luk\303\241\305\241_Chyl\303\255k_CV.pdf" and /dev/null differ diff --git a/Resources/Scripts/Init.ts b/Resources/Scripts/Init.ts deleted file mode 100644 index bff5ec4..0000000 --- a/Resources/Scripts/Init.ts +++ /dev/null @@ -1,3 +0,0 @@ -document.addEventListener("DOMContentLoaded", function (e) { - -}); \ No newline at end of file diff --git a/Resources/Scripts/typings/globalize/globalize.d.ts b/Resources/Scripts/typings/globalize/globalize.d.ts deleted file mode 100644 index 2ab2b6c..0000000 --- a/Resources/Scripts/typings/globalize/globalize.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -interface GlobalizeStatic { - format(value: Date, format: string, cultureSelector?: string): string; - format(value: number, format: string, cultureSelector?: string): string; - parseDate(value: string, formats: string, cultureSelector?: string, previousValue?: Date): Date; - parseFloat(value: string, radix?: number, cultureSelector?: string): number; - parseInt(value: string, radix?: number, cultureSelector?: string): number; -} - -declare var dotvvm_Globalize: GlobalizeStatic; diff --git a/Resources/Scripts/typings/jquery/jquery.d.ts b/Resources/Scripts/typings/jquery/jquery.d.ts deleted file mode 100644 index e8b0489..0000000 --- a/Resources/Scripts/typings/jquery/jquery.d.ts +++ /dev/null @@ -1,3935 +0,0 @@ -// Type definitions for jQuery 1.10.x / 2.0.x -// Project: http://jquery.com/ -// Definitions by: Boris Yankov , Christian Hoffmeister , Steve Fenton , Diullei Gomes , Tass Iliopoulos , Jason Swearingen , Sean Hill , Guus Goossens , Kelly Summerlin , Basarat Ali Syed , Nicholas Wolverson , Derek Cicerone , Andrew Gaspar , James Harrison Fisher , Seikichi Kondo , Benjamin Jackman , Poul Sorensen , Josh Strobl , John Reilly , Dick van den Brink -// Definitions: https://github.com/borisyankov/DefinitelyTyped - -/* ***************************************************************************** -Copyright (c) Microsoft Corporation. All rights reserved. -Licensed under the Apache License, Version 2.0 (the "License"); you may not use -this file except in compliance with the License. You may obtain a copy of the -License at http://www.apache.org/licenses/LICENSE-2.0 - -THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED -WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, -MERCHANTABLITY OR NON-INFRINGEMENT. - -See the Apache Version 2.0 License for specific language governing permissions -and limitations under the License. -***************************************************************************** */ - - -/** - * Interface for the AJAX setting that will configure the AJAX request - */ -interface JQueryAjaxSettings { - /** - * The content type sent in the request header that tells the server what kind of response it will accept in return. If the accepts setting needs modification, it is recommended to do so once in the $.ajaxSetup() method. - */ - accepts?: any; - /** - * By default, all requests are sent asynchronously (i.e. this is set to true by default). If you need synchronous requests, set this option to false. Cross-domain requests and dataType: "jsonp" requests do not support synchronous operation. Note that synchronous requests may temporarily lock the browser, disabling any actions while the request is active. As of jQuery 1.8, the use of async: false with jqXHR ($.Deferred) is deprecated; you must use the success/error/complete callback options instead of the corresponding methods of the jqXHR object such as jqXHR.done() or the deprecated jqXHR.success(). - */ - async?: boolean; - /** - * A pre-request callback function that can be used to modify the jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object before it is sent. Use this to set custom headers, etc. The jqXHR and settings objects are passed as arguments. This is an Ajax Event. Returning false in the beforeSend function will cancel the request. As of jQuery 1.5, the beforeSend option will be called regardless of the type of request. - */ - beforeSend? (jqXHR: JQueryXHR, settings: JQueryAjaxSettings): any; - /** - * If set to false, it will force requested pages not to be cached by the browser. Note: Setting cache to false will only work correctly with HEAD and GET requests. It works by appending "_={timestamp}" to the GET parameters. The parameter is not needed for other types of requests, except in IE8 when a POST is made to a URL that has already been requested by a GET. - */ - cache?: boolean; - /** - * A function to be called when the request finishes (after success and error callbacks are executed). The function gets passed two arguments: The jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object and a string categorizing the status of the request ("success", "notmodified", "error", "timeout", "abort", or "parsererror"). As of jQuery 1.5, the complete setting can accept an array of functions. Each function will be called in turn. This is an Ajax Event. - */ - complete? (jqXHR: JQueryXHR, textStatus: string): any; - /** - * An object of string/regular-expression pairs that determine how jQuery will parse the response, given its content type. (version added: 1.5) - */ - contents?: { [key: string]: any; }; - //According to jQuery.ajax source code, ajax's option actually allows contentType to set to "false" - // https://github.com/borisyankov/DefinitelyTyped/issues/742 - /** - * When sending data to the server, use this content type. Default is "application/x-www-form-urlencoded; charset=UTF-8", which is fine for most cases. If you explicitly pass in a content-type to $.ajax(), then it is always sent to the server (even if no data is sent). The W3C XMLHttpRequest specification dictates that the charset is always UTF-8; specifying another charset will not force the browser to change the encoding. - */ - contentType?: any; - /** - * This object will be made the context of all Ajax-related callbacks. By default, the context is an object that represents the ajax settings used in the call ($.ajaxSettings merged with the settings passed to $.ajax). - */ - context?: any; - /** - * An object containing dataType-to-dataType converters. Each converter's value is a function that returns the transformed value of the response. (version added: 1.5) - */ - converters?: { [key: string]: any; }; - /** - * If you wish to force a crossDomain request (such as JSONP) on the same domain, set the value of crossDomain to true. This allows, for example, server-side redirection to another domain. (version added: 1.5) - */ - crossDomain?: boolean; - /** - * Data to be sent to the server. It is converted to a query string, if not already a string. It's appended to the url for GET-requests. See processData option to prevent this automatic processing. Object must be Key/Value pairs. If value is an Array, jQuery serializes multiple values with same key based on the value of the traditional setting (described below). - */ - data?: any; - /** - * A function to be used to handle the raw response data of XMLHttpRequest.This is a pre-filtering function to sanitize the response. You should return the sanitized data. The function accepts two arguments: The raw data returned from the server and the 'dataType' parameter. - */ - dataFilter? (data: any, ty: any): any; - /** - * The type of data that you're expecting back from the server. If none is specified, jQuery will try to infer it based on the MIME type of the response (an XML MIME type will yield XML, in 1.4 JSON will yield a JavaScript object, in 1.4 script will execute the script, and anything else will be returned as a string). - */ - dataType?: string; - /** - * A function to be called if the request fails. The function receives three arguments: The jqXHR (in jQuery 1.4.x, XMLHttpRequest) object, a string describing the type of error that occurred and an optional exception object, if one occurred. Possible values for the second argument (besides null) are "timeout", "error", "abort", and "parsererror". When an HTTP error occurs, errorThrown receives the textual portion of the HTTP status, such as "Not Found" or "Internal Server Error." As of jQuery 1.5, the error setting can accept an array of functions. Each function will be called in turn. Note: This handler is not called for cross-domain script and cross-domain JSONP requests. This is an Ajax Event. - */ - error? (jqXHR: JQueryXHR, textStatus: string, errorThrown: string): any; - /** - * Whether to trigger global Ajax event handlers for this request. The default is true. Set to false to prevent the global handlers like ajaxStart or ajaxStop from being triggered. This can be used to control various Ajax Events. - */ - global?: boolean; - /** - * An object of additional header key/value pairs to send along with requests using the XMLHttpRequest transport. The header X-Requested-With: XMLHttpRequest is always added, but its default XMLHttpRequest value can be changed here. Values in the headers setting can also be overwritten from within the beforeSend function. (version added: 1.5) - */ - headers?: { [key: string]: any; }; - /** - * Allow the request to be successful only if the response has changed since the last request. This is done by checking the Last-Modified header. Default value is false, ignoring the header. In jQuery 1.4 this technique also checks the 'etag' specified by the server to catch unmodified data. - */ - ifModified?: boolean; - /** - * Allow the current environment to be recognized as "local," (e.g. the filesystem), even if jQuery does not recognize it as such by default. The following protocols are currently recognized as local: file, *-extension, and widget. If the isLocal setting needs modification, it is recommended to do so once in the $.ajaxSetup() method. (version added: 1.5.1) - */ - isLocal?: boolean; - /** - * Override the callback function name in a jsonp request. This value will be used instead of 'callback' in the 'callback=?' part of the query string in the url. So {jsonp:'onJSONPLoad'} would result in 'onJSONPLoad=?' passed to the server. As of jQuery 1.5, setting the jsonp option to false prevents jQuery from adding the "?callback" string to the URL or attempting to use "=?" for transformation. In this case, you should also explicitly set the jsonpCallback setting. For example, { jsonp: false, jsonpCallback: "callbackName" } - */ - jsonp?: any; - /** - * Specify the callback function name for a JSONP request. This value will be used instead of the random name automatically generated by jQuery. It is preferable to let jQuery generate a unique name as it'll make it easier to manage the requests and provide callbacks and error handling. You may want to specify the callback when you want to enable better browser caching of GET requests. As of jQuery 1.5, you can also use a function for this setting, in which case the value of jsonpCallback is set to the return value of that function. - */ - jsonpCallback?: any; - /** - * A mime type to override the XHR mime type. (version added: 1.5.1) - */ - mimeType?: string; - /** - * A password to be used with XMLHttpRequest in response to an HTTP access authentication request. - */ - password?: string; - /** - * By default, data passed in to the data option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". If you want to send a DOMDocument, or other non-processed data, set this option to false. - */ - processData?: boolean; - /** - * Only applies when the "script" transport is used (e.g., cross-domain requests with "jsonp" or "script" dataType and "GET" type). Sets the charset attribute on the script tag used in the request. Used when the character set on the local page is not the same as the one on the remote script. - */ - scriptCharset?: string; - /** - * An object of numeric HTTP codes and functions to be called when the response has the corresponding code. f the request is successful, the status code functions take the same parameters as the success callback; if it results in an error (including 3xx redirect), they take the same parameters as the error callback. (version added: 1.5) - */ - statusCode?: { [key: string]: any; }; - /** - * A function to be called if the request succeeds. The function gets passed three arguments: The data returned from the server, formatted according to the dataType parameter; a string describing the status; and the jqXHR (in jQuery 1.4.x, XMLHttpRequest) object. As of jQuery 1.5, the success setting can accept an array of functions. Each function will be called in turn. This is an Ajax Event. - */ - success? (data: any, textStatus: string, jqXHR: JQueryXHR): any; - /** - * Set a timeout (in milliseconds) for the request. This will override any global timeout set with $.ajaxSetup(). The timeout period starts at the point the $.ajax call is made; if several other requests are in progress and the browser has no connections available, it is possible for a request to time out before it can be sent. In jQuery 1.4.x and below, the XMLHttpRequest object will be in an invalid state if the request times out; accessing any object members may throw an exception. In Firefox 3.0+ only, script and JSONP requests cannot be cancelled by a timeout; the script will run even if it arrives after the timeout period. - */ - timeout?: number; - /** - * Set this to true if you wish to use the traditional style of param serialization. - */ - traditional?: boolean; - /** - * The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers. - */ - type?: string; - /** - * A string containing the URL to which the request is sent. - */ - url?: string; - /** - * A username to be used with XMLHttpRequest in response to an HTTP access authentication request. - */ - username?: string; - /** - * Callback for creating the XMLHttpRequest object. Defaults to the ActiveXObject when available (IE), the XMLHttpRequest otherwise. Override to provide your own implementation for XMLHttpRequest or enhancements to the factory. - */ - xhr?: any; - /** - * An object of fieldName-fieldValue pairs to set on the native XHR object. For example, you can use it to set withCredentials to true for cross-domain requests if needed. In jQuery 1.5, the withCredentials property was not propagated to the native XHR and thus CORS requests requiring it would ignore this flag. For this reason, we recommend using jQuery 1.5.1+ should you require the use of it. (version added: 1.5.1) - */ - xhrFields?: { [key: string]: any; }; -} - -/** - * Interface for the jqXHR object - */ -interface JQueryXHR extends XMLHttpRequest, JQueryPromise { - /** - * The .overrideMimeType() method may be used in the beforeSend() callback function, for example, to modify the response content-type header. As of jQuery 1.5.1, the jqXHR object also contains the overrideMimeType() method (it was available in jQuery 1.4.x, as well, but was temporarily removed in jQuery 1.5). - */ - overrideMimeType(mimeType: string): any; - /** - * Cancel the request. - * - * @param statusText A string passed as the textStatus parameter for the done callback. Default value: "canceled" - */ - abort(statusText?: string): void; - /** - * Incorporates the functionality of the .done() and .fail() methods, allowing (as of jQuery 1.8) the underlying Promise to be manipulated. Refer to deferred.then() for implementation details. - */ - then(doneCallback: (data: any, textStatus: string, jqXHR: JQueryXHR) => void, failCallback?: (jqXHR: JQueryXHR, textStatus: string, errorThrown: any) => void): JQueryPromise; - /** - * Property containing the parsed response if the response Content-Type is json - */ - responseJSON?: any; -} - -/** - * Interface for the JQuery callback - */ -interface JQueryCallback { - /** - * Add a callback or a collection of callbacks to a callback list. - * - * @param callbacks A function, or array of functions, that are to be added to the callback list. - */ - add(callbacks: Function): JQueryCallback; - /** - * Add a callback or a collection of callbacks to a callback list. - * - * @param callbacks A function, or array of functions, that are to be added to the callback list. - */ - add(callbacks: Function[]): JQueryCallback; - - /** - * Disable a callback list from doing anything more. - */ - disable(): JQueryCallback; - - /** - * Determine if the callbacks list has been disabled. - */ - disabled(): boolean; - - /** - * Remove all of the callbacks from a list. - */ - empty(): JQueryCallback; - - /** - * Call all of the callbacks with the given arguments - * - * @param arguments The argument or list of arguments to pass back to the callback list. - */ - fire(...arguments: any[]): JQueryCallback; - - /** - * Determine if the callbacks have already been called at least once. - */ - fired(): boolean; - - /** - * Call all callbacks in a list with the given context and arguments. - * - * @param context A reference to the context in which the callbacks in the list should be fired. - * @param arguments An argument, or array of arguments, to pass to the callbacks in the list. - */ - fireWith(context?: any, ...args: any[]): JQueryCallback; - - /** - * Determine whether a supplied callback is in a list - * - * @param callback The callback to search for. - */ - has(callback: Function): boolean; - - /** - * Lock a callback list in its current state. - */ - lock(): JQueryCallback; - - /** - * Determine if the callbacks list has been locked. - */ - locked(): boolean; - - /** - * Remove a callback or a collection of callbacks from a callback list. - * - * @param callbacks A function, or array of functions, that are to be removed from the callback list. - */ - remove(callbacks: Function): JQueryCallback; - /** - * Remove a callback or a collection of callbacks from a callback list. - * - * @param callbacks A function, or array of functions, that are to be removed from the callback list. - */ - remove(callbacks: Function[]): JQueryCallback; -} - -/** - * Allows jQuery Promises to interop with non-jQuery promises - */ -interface JQueryGenericPromise { - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - */ - then(doneFilter: (value: T) => U, failFilter?: (reason: any) => U): JQueryGenericPromise; - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - */ - then(doneFilter: (value: T) => JQueryGenericPromise, failFilter?: (reason: any) => U): JQueryGenericPromise; - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - */ - then(doneFilter: (value: T) => U, failFilter?: (reason: any) => JQueryGenericPromise): JQueryGenericPromise; - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - */ - then(doneFilter: (value: T) => JQueryGenericPromise, failFilter?: (reason: any) => JQueryGenericPromise): JQueryGenericPromise; -} - -/** - * Interface for the JQuery promise/deferred callbacks - */ -interface JQueryPromiseCallback { - (value?: T, ...args: any[]): void; -} - -interface JQueryPromiseOperator { - (callback: JQueryPromiseCallback, ...callbacks: JQueryPromiseCallback[]): JQueryPromise; - (callback: JQueryPromiseCallback[], ...callbacks: JQueryPromiseCallback[]): JQueryPromise; -} - -/** - * Interface for the JQuery promise, part of callbacks - */ -interface JQueryPromise { - /** - * Add handlers to be called when the Deferred object is either resolved or rejected. - * - * @param alwaysCallbacks1 A function, or array of functions, that is called when the Deferred is resolved or rejected. - * @param alwaysCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is resolved or rejected. - */ - always: JQueryPromiseOperator; - /** - * Add handlers to be called when the Deferred object is resolved. - * - * @param doneCallbacks1 A function, or array of functions, that are called when the Deferred is resolved. - * @param doneCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is resolved. - */ - done: JQueryPromiseOperator; - /** - * Add handlers to be called when the Deferred object is rejected. - * - * @param failCallbacks1 A function, or array of functions, that are called when the Deferred is rejected. - * @param failCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is rejected. - */ - fail: JQueryPromiseOperator; - /** - * Add handlers to be called when the Deferred object generates progress notifications. - * - * @param progressCallbacks A function, or array of functions, to be called when the Deferred generates progress notifications. - */ - progress(progressCallback: JQueryPromiseCallback): JQueryPromise; - progress(progressCallbacks: JQueryPromiseCallback[]): JQueryPromise; - - /** - * Determine the current state of a Deferred object. - */ - state(): string; - - // Deprecated - given no typings - pipe(doneFilter?: (x: any) => any, failFilter?: (x: any) => any, progressFilter?: (x: any) => any): JQueryPromise; - - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. - */ - then(doneFilter: (value: T) => U, failFilter?: (...reasons: any[]) => U, progressFilter?: (...progression: any[]) => any): JQueryPromise; - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. - */ - then(doneFilter: (value: T) => JQueryGenericPromise, failFilter?: (...reasons: any[]) => U, progressFilter?: (...progression: any[]) => any): JQueryPromise; - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. - */ - then(doneFilter: (value: T) => U, failFilter?: (...reasons: any[]) => JQueryGenericPromise, progressFilter?: (...progression: any[]) => any): JQueryPromise; - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. - */ - then(doneFilter: (value: T) => JQueryGenericPromise, failFilter?: (...reasons: any[]) => JQueryGenericPromise, progressFilter?: (...progression: any[]) => any): JQueryPromise; - - // Because JQuery Promises Suck - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. - */ - then(doneFilter: (...values: any[]) => U, failFilter?: (...reasons: any[]) => U, progressFilter?: (...progression: any[]) => any): JQueryPromise; - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. - */ - then(doneFilter: (...values: any[]) => JQueryGenericPromise, failFilter?: (...reasons: any[]) => U, progressFilter?: (...progression: any[]) => any): JQueryPromise; - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. - */ - then(doneFilter: (...values: any[]) => U, failFilter?: (...reasons: any[]) => JQueryGenericPromise, progressFilter?: (...progression: any[]) => any): JQueryPromise; - /** - * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. - * - * @param doneFilter A function that is called when the Deferred is resolved. - * @param failFilter An optional function that is called when the Deferred is rejected. - * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. - */ - then(doneFilter: (...values: any[]) => JQueryGenericPromise, failFilter?: (...reasons: any[]) => JQueryGenericPromise, progressFilter?: (...progression: any[]) => any): JQueryPromise; -} - -/** - * Interface for the JQuery deferred, part of callbacks - */ -interface JQueryDeferred extends JQueryPromise { - /** - * Add handlers to be called when the Deferred object is either resolved or rejected. - * - * @param alwaysCallbacks1 A function, or array of functions, that is called when the Deferred is resolved or rejected. - * @param alwaysCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is resolved or rejected. - */ - always(alwaysCallbacks1?: JQueryPromiseCallback, ...alwaysCallbacks2: JQueryPromiseCallback[]): JQueryDeferred; - always(alwaysCallbacks1?: JQueryPromiseCallback[], ...alwaysCallbacks2: JQueryPromiseCallback[]): JQueryDeferred; - always(alwaysCallbacks1?: JQueryPromiseCallback, ...alwaysCallbacks2: any[]): JQueryDeferred; - always(alwaysCallbacks1?: JQueryPromiseCallback[], ...alwaysCallbacks2: any[]): JQueryDeferred; - /** - * Add handlers to be called when the Deferred object is resolved. - * - * @param doneCallbacks1 A function, or array of functions, that are called when the Deferred is resolved. - * @param doneCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is resolved. - */ - done(doneCallbacks1?: JQueryPromiseCallback, ...doneCallbacks2: JQueryPromiseCallback[]): JQueryDeferred; - done(doneCallbacks1?: JQueryPromiseCallback[], ...doneCallbacks2: JQueryPromiseCallback[]): JQueryDeferred; - done(doneCallbacks1?: JQueryPromiseCallback, ...doneCallbacks2: any[]): JQueryDeferred; - done(doneCallbacks1?: JQueryPromiseCallback[], ...doneCallbacks2: any[]): JQueryDeferred; - /** - * Add handlers to be called when the Deferred object is rejected. - * - * @param failCallbacks1 A function, or array of functions, that are called when the Deferred is rejected. - * @param failCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is rejected. - */ - fail(failCallbacks1?: JQueryPromiseCallback, ...failCallbacks2: JQueryPromiseCallback[]): JQueryDeferred; - fail(failCallbacks1?: JQueryPromiseCallback[], ...failCallbacks2: JQueryPromiseCallback[]): JQueryDeferred; - fail(failCallbacks1?: JQueryPromiseCallback, ...failCallbacks2: any[]): JQueryDeferred; - fail(failCallbacks1?: JQueryPromiseCallback[], ...failCallbacks2: any[]): JQueryDeferred; - /** - * Add handlers to be called when the Deferred object generates progress notifications. - * - * @param progressCallbacks A function, or array of functions, to be called when the Deferred generates progress notifications. - */ - progress(progressCallback: JQueryPromiseCallback): JQueryDeferred; - progress(progressCallbacks: JQueryPromiseCallback[]): JQueryDeferred; - - /** - * Call the progressCallbacks on a Deferred object with the given args. - * - * @param args Optional arguments that are passed to the progressCallbacks. - */ - notify(...args: any[]): JQueryDeferred; - - /** - * Call the progressCallbacks on a Deferred object with the given context and args. - * - * @param context Context passed to the progressCallbacks as the this object. - * @param args Optional arguments that are passed to the progressCallbacks. - */ - notifyWith(context: any, ...args: any[]): JQueryDeferred; - - /** - * Reject a Deferred object and call any failCallbacks with the given args. - * - * @param args Optional arguments that are passed to the failCallbacks. - */ - reject(...args: any[]): JQueryDeferred; - /** - * Reject a Deferred object and call any failCallbacks with the given context and args. - * - * @param context Context passed to the failCallbacks as the this object. - * @param args An optional array of arguments that are passed to the failCallbacks. - */ - rejectWith(context: any, ...args: any[]): JQueryDeferred; - - /** - * Resolve a Deferred object and call any doneCallbacks with the given args. - * - * @param value First argument passed to doneCallbacks. - * @param args Optional subsequent arguments that are passed to the doneCallbacks. - */ - resolve(value?: T, ...args: any[]): JQueryDeferred; - - /** - * Resolve a Deferred object and call any doneCallbacks with the given context and args. - * - * @param context Context passed to the doneCallbacks as the this object. - * @param args An optional array of arguments that are passed to the doneCallbacks. - */ - resolveWith(context: any, ...args: any[]): JQueryDeferred; - - /** - * Return a Deferred's Promise object. - * - * @param target Object onto which the promise methods have to be attached - */ - promise(target?: any): JQueryPromise; -} - -/** - * Interface of the JQuery extension of the W3C event object - */ -interface BaseJQueryEventObject extends Event { - data: any; - delegateTarget: Element; - isDefaultPrevented(): boolean; - isImmediatePropagationStopped(): boolean; - isPropagationStopped(): boolean; - namespace: string; - originalEvent: Event; - preventDefault(): any; - relatedTarget: Element; - result: any; - stopImmediatePropagation(): void; - stopPropagation(): void; - target: Element; - pageX: number; - pageY: number; - which: number; - metaKey: boolean; -} - -interface JQueryInputEventObject extends BaseJQueryEventObject { - altKey: boolean; - ctrlKey: boolean; - metaKey: boolean; - shiftKey: boolean; -} - -interface JQueryMouseEventObject extends JQueryInputEventObject { - button: number; - clientX: number; - clientY: number; - offsetX: number; - offsetY: number; - pageX: number; - pageY: number; - screenX: number; - screenY: number; -} - -interface JQueryKeyEventObject extends JQueryInputEventObject { - char: any; - charCode: number; - key: any; - keyCode: number; -} - -interface JQueryEventObject extends BaseJQueryEventObject, JQueryInputEventObject, JQueryMouseEventObject, JQueryKeyEventObject{ -} - -/* - Collection of properties of the current browser -*/ - -interface JQuerySupport { - ajax?: boolean; - boxModel?: boolean; - changeBubbles?: boolean; - checkClone?: boolean; - checkOn?: boolean; - cors?: boolean; - cssFloat?: boolean; - hrefNormalized?: boolean; - htmlSerialize?: boolean; - leadingWhitespace?: boolean; - noCloneChecked?: boolean; - noCloneEvent?: boolean; - opacity?: boolean; - optDisabled?: boolean; - optSelected?: boolean; - scriptEval? (): boolean; - style?: boolean; - submitBubbles?: boolean; - tbody?: boolean; -} - -interface JQueryParam { - /** - * Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request. - * - * @param obj An array or object to serialize. - */ - (obj: any): string; - - /** - * Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request. - * - * @param obj An array or object to serialize. - * @param traditional A Boolean indicating whether to perform a traditional "shallow" serialization. - */ - (obj: any, traditional: boolean): string; -} - -/** - * The interface used to construct jQuery events (with $.Event). It is - * defined separately instead of inline in JQueryStatic to allow - * overriding the construction function with specific strings - * returning specific event objects. - */ -interface JQueryEventConstructor { - (name: string, eventProperties?: any): JQueryEventObject; - new (name: string, eventProperties?: any): JQueryEventObject; -} - -/** - * The interface used to specify coordinates. - */ -interface JQueryCoordinates { - left: number; - top: number; -} - -/** - * Elements in the array returned by serializeArray() - */ -interface JQuerySerializeArrayElement { - name: string; - value: string; -} - -interface JQueryAnimationOptions { - /** - * A string or number determining how long the animation will run. - */ - duration?: any; - /** - * A string indicating which easing function to use for the transition. - */ - easing?: string; - /** - * A function to call once the animation is complete. - */ - complete?: Function; - /** - * A function to be called for each animated property of each animated element. This function provides an opportunity to modify the Tween object to change the value of the property before it is set. - */ - step?: (now: number, tween: any) => any; - /** - * A function to be called after each step of the animation, only once per animated element regardless of the number of animated properties. (version added: 1.8) - */ - progress?: (animation: JQueryPromise, progress: number, remainingMs: number) => any; - /** - * A function to call when the animation begins. (version added: 1.8) - */ - start?: (animation: JQueryPromise) => any; - /** - * A function to be called when the animation completes (its Promise object is resolved). (version added: 1.8) - */ - done?: (animation: JQueryPromise, jumpedToEnd: boolean) => any; - /** - * A function to be called when the animation fails to complete (its Promise object is rejected). (version added: 1.8) - */ - fail?: (animation: JQueryPromise, jumpedToEnd: boolean) => any; - /** - * A function to be called when the animation completes or stops without completing (its Promise object is either resolved or rejected). (version added: 1.8) - */ - always?: (animation: JQueryPromise, jumpedToEnd: boolean) => any; - /** - * A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. As of jQuery 1.7, the queue option can also accept a string, in which case the animation is added to the queue represented by that string. When a custom queue name is used the animation does not automatically start; you must call .dequeue("queuename") to start it. - */ - queue?: any; - /** - * A map of one or more of the CSS properties defined by the properties argument and their corresponding easing functions. (version added: 1.4) - */ - specialEasing?: Object; -} - -/** - * Static members of jQuery (those on $ and jQuery themselves) - */ -interface JQueryStatic { - - /** - * Perform an asynchronous HTTP (Ajax) request. - * - * @param settings A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup(). - */ - ajax(settings: JQueryAjaxSettings): JQueryXHR; - /** - * Perform an asynchronous HTTP (Ajax) request. - * - * @param url A string containing the URL to which the request is sent. - * @param settings A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup(). - */ - ajax(url: string, settings?: JQueryAjaxSettings): JQueryXHR; - - /** - * Handle custom Ajax options or modify existing options before each request is sent and before they are processed by $.ajax(). - * - * @param dataTypes An optional string containing one or more space-separated dataTypes - * @param handler A handler to set default values for future Ajax requests. - */ - ajaxPrefilter(dataTypes: string, handler: (opts: any, originalOpts: JQueryAjaxSettings, jqXHR: JQueryXHR) => any): void; - /** - * Handle custom Ajax options or modify existing options before each request is sent and before they are processed by $.ajax(). - * - * @param handler A handler to set default values for future Ajax requests. - */ - ajaxPrefilter(handler: (opts: any, originalOpts: JQueryAjaxSettings, jqXHR: JQueryXHR) => any): void; - - ajaxSettings: JQueryAjaxSettings; - - /** - * Set default values for future Ajax requests. Its use is not recommended. - * - * @param options A set of key/value pairs that configure the default Ajax request. All options are optional. - */ - ajaxSetup(options: JQueryAjaxSettings): void; - - /** - * Load data from the server using a HTTP GET request. - * - * @param url A string containing the URL to which the request is sent. - * @param success A callback function that is executed if the request succeeds. - * @param dataType The type of data expected from the server. Default: Intelligent Guess (xml, json, script, or html). - */ - get(url: string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any, dataType?: string): JQueryXHR; - /** - * Load data from the server using a HTTP GET request. - * - * @param url A string containing the URL to which the request is sent. - * @param data A plain object or string that is sent to the server with the request. - * @param success A callback function that is executed if the request succeeds. - * @param dataType The type of data expected from the server. Default: Intelligent Guess (xml, json, script, or html). - */ - get(url: string, data?: Object, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any, dataType?: string): JQueryXHR; - /** - * Load data from the server using a HTTP GET request. - * - * @param url A string containing the URL to which the request is sent. - * @param data A plain object or string that is sent to the server with the request. - * @param success A callback function that is executed if the request succeeds. - * @param dataType The type of data expected from the server. Default: Intelligent Guess (xml, json, script, or html). - */ - get(url: string, data?: string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any, dataType?: string): JQueryXHR; - /** - * Load JSON-encoded data from the server using a GET HTTP request. - * - * @param url A string containing the URL to which the request is sent. - * @param success A callback function that is executed if the request succeeds. - */ - getJSON(url: string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any): JQueryXHR; - /** - * Load JSON-encoded data from the server using a GET HTTP request. - * - * @param url A string containing the URL to which the request is sent. - * @param data A plain object or string that is sent to the server with the request. - * @param success A callback function that is executed if the request succeeds. - */ - getJSON(url: string, data?: Object, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any): JQueryXHR; - /** - * Load JSON-encoded data from the server using a GET HTTP request. - * - * @param url A string containing the URL to which the request is sent. - * @param data A plain object or string that is sent to the server with the request. - * @param success A callback function that is executed if the request succeeds. - */ - getJSON(url: string, data?: string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any): JQueryXHR; - /** - * Load a JavaScript file from the server using a GET HTTP request, then execute it. - * - * @param url A string containing the URL to which the request is sent. - * @param success A callback function that is executed if the request succeeds. - */ - getScript(url: string, success?: (script: string, textStatus: string, jqXHR: JQueryXHR) => any): JQueryXHR; - - /** - * Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request. - */ - param: JQueryParam; - - /** - * Load data from the server using a HTTP POST request. - * - * @param url A string containing the URL to which the request is sent. - * @param success A callback function that is executed if the request succeeds. Required if dataType is provided, but can be null in that case. - * @param dataType The type of data expected from the server. Default: Intelligent Guess (xml, json, script, text, html). - */ - post(url: string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any, dataType?: string): JQueryXHR; - /** - * Load data from the server using a HTTP POST request. - * - * @param url A string containing the URL to which the request is sent. - * @param data A plain object or string that is sent to the server with the request. - * @param success A callback function that is executed if the request succeeds. Required if dataType is provided, but can be null in that case. - * @param dataType The type of data expected from the server. Default: Intelligent Guess (xml, json, script, text, html). - */ - post(url: string, data?: Object, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any, dataType?: string): JQueryXHR; - /** - * Load data from the server using a HTTP POST request. - * - * @param url A string containing the URL to which the request is sent. - * @param data A plain object or string that is sent to the server with the request. - * @param success A callback function that is executed if the request succeeds. Required if dataType is provided, but can be null in that case. - * @param dataType The type of data expected from the server. Default: Intelligent Guess (xml, json, script, text, html). - */ - post(url: string, data?: string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any, dataType?: string): JQueryXHR; - - /** - * A multi-purpose callbacks list object that provides a powerful way to manage callback lists. - * - * @param flags An optional list of space-separated flags that change how the callback list behaves. - */ - Callbacks(flags?: string): JQueryCallback; - - /** - * Holds or releases the execution of jQuery's ready event. - * - * @param hold Indicates whether the ready hold is being requested or released - */ - holdReady(hold: boolean): void; - - /** - * Accepts a string containing a CSS selector which is then used to match a set of elements. - * - * @param selector A string containing a selector expression - * @param context A DOM Element, Document, or jQuery to use as context - */ - (selector: string, context?: Element): JQuery; - /** - * Accepts a string containing a CSS selector which is then used to match a set of elements. - * - * @param selector A string containing a selector expression - * @param context A DOM Element, Document, or jQuery to use as context - */ - (selector: string, context?: JQuery): JQuery; - /** - * Accepts a string containing a CSS selector which is then used to match a set of elements. - * - * @param element A DOM element to wrap in a jQuery object. - */ - (element: Element): JQuery; - /** - * Accepts a string containing a CSS selector which is then used to match a set of elements. - * - * @param elementArray An array containing a set of DOM elements to wrap in a jQuery object. - */ - (elementArray: Element[]): JQuery; - /** - * Accepts a string containing a CSS selector which is then used to match a set of elements. - * - * @param object A plain object to wrap in a jQuery object. - */ - (object: {}): JQuery; - /** - * Accepts a string containing a CSS selector which is then used to match a set of elements. - * - * @param object An existing jQuery object to clone. - */ - (object: JQuery): JQuery; - /** - * Specify a function to execute when the DOM is fully loaded. - */ - (): JQuery; - - /** - * Creates DOM elements on the fly from the provided string of raw HTML. - * - * @param html A string of HTML to create on the fly. Note that this parses HTML, not XML. - * @param ownerDocument A document in which the new elements will be created. - */ - (html: string, ownerDocument?: Document): JQuery; - /** - * Creates DOM elements on the fly from the provided string of raw HTML. - * - * @param html A string defining a single, standalone, HTML element (e.g.
or
). - * @param attributes An object of attributes, events, and methods to call on the newly-created element. - */ - (html: string, attributes: Object): JQuery; - - /** - * Binds a function to be executed when the DOM has finished loading. - * - * @param callback A function to execute after the DOM is ready. - */ - (callback: Function): JQuery; - - /** - * Relinquish jQuery's control of the $ variable. - * - * @param removeAll A Boolean indicating whether to remove all jQuery variables from the global scope (including jQuery itself). - */ - noConflict(removeAll?: boolean): Object; - - /** - * Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events. - * - * @param deferreds One or more Deferred objects, or plain JavaScript objects. - */ - when(...deferreds: JQueryGenericPromise[]): JQueryPromise; - /** - * Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events. - * - * @param deferreds One or more Deferred objects, or plain JavaScript objects. - */ - when(...deferreds: T[]): JQueryPromise; - /** - * Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events. - * - * @param deferreds One or more Deferred objects, or plain JavaScript objects. - */ - when(...deferreds: any[]): JQueryPromise; - - /** - * Hook directly into jQuery to override how particular CSS properties are retrieved or set, normalize CSS property naming, or create custom properties. - */ - cssHooks: { [key: string]: any; }; - cssNumber: any; - - /** - * Store arbitrary data associated with the specified element. Returns the value that was set. - * - * @param element The DOM element to associate with the data. - * @param key A string naming the piece of data to set. - * @param value The new data value. - */ - data(element: Element, key: string, value: T): T; - /** - * Returns value at named data store for the element, as set by jQuery.data(element, name, value), or the full data store for the element. - * - * @param element The DOM element to associate with the data. - * @param key A string naming the piece of data to set. - */ - data(element: Element, key: string): any; - /** - * Returns value at named data store for the element, as set by jQuery.data(element, name, value), or the full data store for the element. - * - * @param element The DOM element to associate with the data. - */ - data(element: Element): any; - - /** - * Execute the next function on the queue for the matched element. - * - * @param element A DOM element from which to remove and execute a queued function. - * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue. - */ - dequeue(element: Element, queueName?: string): void; - - /** - * Determine whether an element has any jQuery data associated with it. - * - * @param element A DOM element to be checked for data. - */ - hasData(element: Element): boolean; - - /** - * Show the queue of functions to be executed on the matched element. - * - * @param element A DOM element to inspect for an attached queue. - * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue. - */ - queue(element: Element, queueName?: string): any[]; - /** - * Manipulate the queue of functions to be executed on the matched element. - * - * @param element A DOM element where the array of queued functions is attached. - * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue. - * @param newQueue An array of functions to replace the current queue contents. - */ - queue(element: Element, queueName: string, newQueue: Function[]): JQuery; - /** - * Manipulate the queue of functions to be executed on the matched element. - * - * @param element A DOM element on which to add a queued function. - * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue. - * @param callback The new function to add to the queue. - */ - queue(element: Element, queueName: string, callback: Function): JQuery; - - /** - * Remove a previously-stored piece of data. - * - * @param element A DOM element from which to remove data. - * @param name A string naming the piece of data to remove. - */ - removeData(element: Element, name?: string): JQuery; - - /** - * A constructor function that returns a chainable utility object with methods to register multiple callbacks into callback queues, invoke callback queues, and relay the success or failure state of any synchronous or asynchronous function. - * - * @param beforeStart A function that is called just before the constructor returns. - */ - Deferred(beforeStart?: (deferred: JQueryDeferred) => any): JQueryDeferred; - - /** - * Effects - */ - fx: { - tick: () => void; - /** - * The rate (in milliseconds) at which animations fire. - */ - interval: number; - stop: () => void; - speeds: { slow: number; fast: number; }; - /** - * Globally disable all animations. - */ - off: boolean; - step: any; - }; - - /** - * Takes a function and returns a new one that will always have a particular context. - * - * @param fnction The function whose context will be changed. - * @param context The object to which the context (this) of the function should be set. - * @param additionalArguments Any number of arguments to be passed to the function referenced in the function argument. - */ - proxy(fnction: (...args: any[]) => any, context: Object, ...additionalArguments: any[]): any; - /** - * Takes a function and returns a new one that will always have a particular context. - * - * @param context The object to which the context (this) of the function should be set. - * @param name The name of the function whose context will be changed (should be a property of the context object). - * @param additionalArguments Any number of arguments to be passed to the function named in the name argument. - */ - proxy(context: Object, name: string, ...additionalArguments: any[]): any; - - Event: JQueryEventConstructor; - - /** - * Takes a string and throws an exception containing it. - * - * @param message The message to send out. - */ - error(message: any): JQuery; - - expr: any; - fn: any; //TODO: Decide how we want to type this - - isReady: boolean; - - // Properties - support: JQuerySupport; - - /** - * Check to see if a DOM element is a descendant of another DOM element. - * - * @param container The DOM element that may contain the other element. - * @param contained The DOM element that may be contained by (a descendant of) the other element. - */ - contains(container: Element, contained: Element): boolean; - - /** - * A generic iterator function, which can be used to seamlessly iterate over both objects and arrays. Arrays and array-like objects with a length property (such as a function's arguments object) are iterated by numeric index, from 0 to length-1. Other objects are iterated via their named properties. - * - * @param collection The object or array to iterate over. - * @param callback The function that will be executed on every object. - */ - each( - collection: T[], - callback: (indexInArray: number, valueOfElement: T) => any - ): any; - - /** - * A generic iterator function, which can be used to seamlessly iterate over both objects and arrays. Arrays and array-like objects with a length property (such as a function's arguments object) are iterated by numeric index, from 0 to length-1. Other objects are iterated via their named properties. - * - * @param collection The object or array to iterate over. - * @param callback The function that will be executed on every object. - */ - each( - collection: any, - callback: (indexInArray: any, valueOfElement: any) => any - ): any; - - /** - * Merge the contents of two or more objects together into the first object. - * - * @param target An object that will receive the new properties if additional objects are passed in or that will extend the jQuery namespace if it is the sole argument. - * @param object1 An object containing additional properties to merge in. - * @param objectN Additional objects containing properties to merge in. - */ - extend(target: any, object1?: any, ...objectN: any[]): any; - /** - * Merge the contents of two or more objects together into the first object. - * - * @param deep If true, the merge becomes recursive (aka. deep copy). - * @param target The object to extend. It will receive the new properties. - * @param object1 An object containing additional properties to merge in. - * @param objectN Additional objects containing properties to merge in. - */ - extend(deep: boolean, target: any, object1?: any, ...objectN: any[]): any; - - /** - * Execute some JavaScript code globally. - * - * @param code The JavaScript code to execute. - */ - globalEval(code: string): any; - - /** - * Finds the elements of an array which satisfy a filter function. The original array is not affected. - * - * @param array The array to search through. - * @param func The function to process each item against. The first argument to the function is the item, and the second argument is the index. The function should return a Boolean value. this will be the global window object. - * @param invert If "invert" is false, or not provided, then the function returns an array consisting of all elements for which "callback" returns true. If "invert" is true, then the function returns an array consisting of all elements for which "callback" returns false. - */ - grep(array: T[], func: (elementOfArray: T, indexInArray: number) => boolean, invert?: boolean): T[]; - - /** - * Search for a specified value within an array and return its index (or -1 if not found). - * - * @param value The value to search for. - * @param array An array through which to search. - * @param fromIndex he index of the array at which to begin the search. The default is 0, which will search the whole array. - */ - inArray(value: T, array: T[], fromIndex?: number): number; - - /** - * Determine whether the argument is an array. - * - * @param obj Object to test whether or not it is an array. - */ - isArray(obj: any): boolean; - /** - * Check to see if an object is empty (contains no enumerable properties). - * - * @param obj The object that will be checked to see if it's empty. - */ - isEmptyObject(obj: any): boolean; - /** - * Determine if the argument passed is a Javascript function object. - * - * @param obj Object to test whether or not it is a function. - */ - isFunction(obj: any): boolean; - /** - * Determines whether its argument is a number. - * - * @param obj The value to be tested. - */ - isNumeric(value: any): boolean; - /** - * Check to see if an object is a plain object (created using "{}" or "new Object"). - * - * @param obj The object that will be checked to see if it's a plain object. - */ - isPlainObject(obj: any): boolean; - /** - * Determine whether the argument is a window. - * - * @param obj Object to test whether or not it is a window. - */ - isWindow(obj: any): boolean; - /** - * Check to see if a DOM node is within an XML document (or is an XML document). - * - * @param node he DOM node that will be checked to see if it's in an XML document. - */ - isXMLDoc(node: Node): boolean; - - /** - * Convert an array-like object into a true JavaScript array. - * - * @param obj Any object to turn into a native Array. - */ - makeArray(obj: any): any[]; - - /** - * Translate all items in an array or object to new array of items. - * - * @param array The Array to translate. - * @param callback The function to process each item against. The first argument to the function is the array item, the second argument is the index in array The function can return any value. Within the function, this refers to the global (window) object. - */ - map(array: T[], callback: (elementOfArray: T, indexInArray: number) => U): U[]; - /** - * Translate all items in an array or object to new array of items. - * - * @param arrayOrObject The Array or Object to translate. - * @param callback The function to process each item against. The first argument to the function is the value; the second argument is the index or key of the array or object property. The function can return any value to add to the array. A returned array will be flattened into the resulting array. Within the function, this refers to the global (window) object. - */ - map(arrayOrObject: any, callback: (value: any, indexOrKey: any) => any): any; - - /** - * Merge the contents of two arrays together into the first array. - * - * @param first The first array to merge, the elements of second added. - * @param second The second array to merge into the first, unaltered. - */ - merge(first: T[], second: T[]): T[]; - - /** - * An empty function. - */ - noop(): any; - - /** - * Return a number representing the current time. - */ - now(): number; - - /** - * Takes a well-formed JSON string and returns the resulting JavaScript object. - * - * @param json The JSON string to parse. - */ - parseJSON(json: string): any; - - /** - * Parses a string into an XML document. - * - * @param data a well-formed XML string to be parsed - */ - parseXML(data: string): XMLDocument; - - /** - * Remove the whitespace from the beginning and end of a string. - * - * @param str Remove the whitespace from the beginning and end of a string. - */ - trim(str: string): string; - - /** - * Determine the internal JavaScript [[Class]] of an object. - * - * @param obj Object to get the internal JavaScript [[Class]] of. - */ - type(obj: any): string; - - /** - * Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers. - * - * @param array The Array of DOM elements. - */ - unique(array: Element[]): Element[]; - - /** - * Parses a string into an array of DOM nodes. - * - * @param data HTML string to be parsed - * @param context DOM element to serve as the context in which the HTML fragment will be created - * @param keepScripts A Boolean indicating whether to include scripts passed in the HTML string - */ - parseHTML(data: string, context?: HTMLElement, keepScripts?: boolean): any[]; - - /** - * Parses a string into an array of DOM nodes. - * - * @param data HTML string to be parsed - * @param context DOM element to serve as the context in which the HTML fragment will be created - * @param keepScripts A Boolean indicating whether to include scripts passed in the HTML string - */ - parseHTML(data: string, context?: Document, keepScripts?: boolean): any[]; -} - -/** - * The jQuery instance members - */ -interface JQuery { - /** - * Register a handler to be called when Ajax requests complete. This is an AjaxEvent. - * - * @param handler The function to be invoked. - */ - ajaxComplete(handler: (event: JQueryEventObject, XMLHttpRequest: XMLHttpRequest, ajaxOptions: any) => any): JQuery; - /** - * Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event. - * - * @param handler The function to be invoked. - */ - ajaxError(handler: (event: JQueryEventObject, jqXHR: JQueryXHR, ajaxSettings: JQueryAjaxSettings, thrownError: any) => any): JQuery; - /** - * Attach a function to be executed before an Ajax request is sent. This is an Ajax Event. - * - * @param handler The function to be invoked. - */ - ajaxSend(handler: (event: JQueryEventObject, jqXHR: JQueryXHR, ajaxOptions: JQueryAjaxSettings) => any): JQuery; - /** - * Register a handler to be called when the first Ajax request begins. This is an Ajax Event. - * - * @param handler The function to be invoked. - */ - ajaxStart(handler: () => any): JQuery; - /** - * Register a handler to be called when all Ajax requests have completed. This is an Ajax Event. - * - * @param handler The function to be invoked. - */ - ajaxStop(handler: () => any): JQuery; - /** - * Attach a function to be executed whenever an Ajax request completes successfully. This is an Ajax Event. - * - * @param handler The function to be invoked. - */ - ajaxSuccess(handler: (event: JQueryEventObject, XMLHttpRequest: XMLHttpRequest, ajaxOptions: JQueryAjaxSettings) => any): JQuery; - - /** - * Load data from the server and place the returned HTML into the matched element. - * - * @param url A string containing the URL to which the request is sent. - * @param data A plain object or string that is sent to the server with the request. - * @param complete A callback function that is executed when the request completes. - */ - load(url: string, data?: string, complete?: (responseText: string, textStatus: string, XMLHttpRequest: XMLHttpRequest) => any): JQuery; - /** - * Load data from the server and place the returned HTML into the matched element. - * - * @param url A string containing the URL to which the request is sent. - * @param data A plain object or string that is sent to the server with the request. - * @param complete A callback function that is executed when the request completes. - */ - load(url: string, data?: Object, complete?: (responseText: string, textStatus: string, XMLHttpRequest: XMLHttpRequest) => any): JQuery; - - /** - * Encode a set of form elements as a string for submission. - */ - serialize(): string; - /** - * Encode a set of form elements as an array of names and values. - */ - serializeArray(): JQuerySerializeArrayElement[]; - - /** - * Adds the specified class(es) to each of the set of matched elements. - * - * @param className One or more space-separated classes to be added to the class attribute of each matched element. - */ - addClass(className: string): JQuery; - /** - * Adds the specified class(es) to each of the set of matched elements. - * - * @param function A function returning one or more space-separated class names to be added to the existing class name(s). Receives the index position of the element in the set and the existing class name(s) as arguments. Within the function, this refers to the current element in the set. - */ - addClass(func: (index: number, className: string) => string): JQuery; - - /** - * Add the previous set of elements on the stack to the current set, optionally filtered by a selector. - */ - addBack(selector?: string): JQuery; - - /** - * Get the value of an attribute for the first element in the set of matched elements. - * - * @param attributeName The name of the attribute to get. - */ - attr(attributeName: string): string; - /** - * Set one or more attributes for the set of matched elements. - * - * @param attributeName The name of the attribute to set. - * @param value A value to set for the attribute. - */ - attr(attributeName: string, value: string): JQuery; - /** - * Set one or more attributes for the set of matched elements. - * - * @param attributeName The name of the attribute to set. - * @param value A value to set for the attribute. - */ - attr(attributeName: string, value: number): JQuery; - /** - * Set one or more attributes for the set of matched elements. - * - * @param attributeName The name of the attribute to set. - * @param func A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old attribute value as arguments. - */ - attr(attributeName: string, func: (index: number, attr: any) => any): JQuery; - /** - * Set one or more attributes for the set of matched elements. - * - * @param attributes An object of attribute-value pairs to set. - */ - attr(attributes: Object): JQuery; - - /** - * Determine whether any of the matched elements are assigned the given class. - * - * @param className The class name to search for. - */ - hasClass(className: string): boolean; - - /** - * Get the HTML contents of the first element in the set of matched elements. - */ - html(): string; - /** - * Set the HTML contents of each element in the set of matched elements. - * - * @param htmlString A string of HTML to set as the content of each matched element. - */ - html(htmlString: string): JQuery; - /** - * Set the HTML contents of each element in the set of matched elements. - * - * @param func A function returning the HTML content to set. Receives the index position of the element in the set and the old HTML value as arguments. jQuery empties the element before calling the function; use the oldhtml argument to reference the previous content. Within the function, this refers to the current element in the set. - */ - html(func: (index: number, oldhtml: string) => string): JQuery; - /** - * Set the HTML contents of each element in the set of matched elements. - * - * @param func A function returning the HTML content to set. Receives the index position of the element in the set and the old HTML value as arguments. jQuery empties the element before calling the function; use the oldhtml argument to reference the previous content. Within the function, this refers to the current element in the set. - */ - - /** - * Get the value of a property for the first element in the set of matched elements. - * - * @param propertyName The name of the property to get. - */ - prop(propertyName: string): any; - /** - * Set one or more properties for the set of matched elements. - * - * @param propertyName The name of the property to set. - * @param value A value to set for the property. - */ - prop(propertyName: string, value: string): JQuery; - /** - * Set one or more properties for the set of matched elements. - * - * @param propertyName The name of the property to set. - * @param value A value to set for the property. - */ - prop(propertyName: string, value: number): JQuery; - /** - * Set one or more properties for the set of matched elements. - * - * @param propertyName The name of the property to set. - * @param value A value to set for the property. - */ - prop(propertyName: string, value: boolean): JQuery; - /** - * Set one or more properties for the set of matched elements. - * - * @param properties An object of property-value pairs to set. - */ - prop(properties: Object): JQuery; - /** - * Set one or more properties for the set of matched elements. - * - * @param propertyName The name of the property to set. - * @param func A function returning the value to set. Receives the index position of the element in the set and the old property value as arguments. Within the function, the keyword this refers to the current element. - */ - prop(propertyName: string, func: (index: number, oldPropertyValue: any) => any): JQuery; - - /** - * Remove an attribute from each element in the set of matched elements. - * - * @param attributeName An attribute to remove; as of version 1.7, it can be a space-separated list of attributes. - */ - removeAttr(attributeName: string): JQuery; - - /** - * Remove a single class, multiple classes, or all classes from each element in the set of matched elements. - * - * @param className One or more space-separated classes to be removed from the class attribute of each matched element. - */ - removeClass(className?: string): JQuery; - /** - * Remove a single class, multiple classes, or all classes from each element in the set of matched elements. - * - * @param function A function returning one or more space-separated class names to be removed. Receives the index position of the element in the set and the old class value as arguments. - */ - removeClass(func: (index: number, className: string) => string): JQuery; - - /** - * Remove a property for the set of matched elements. - * - * @param propertyName The name of the property to remove. - */ - removeProp(propertyName: string): JQuery; - - /** - * Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument. - * - * @param className One or more class names (separated by spaces) to be toggled for each element in the matched set. - * @param swtch A Boolean (not just truthy/falsy) value to determine whether the class should be added or removed. - */ - toggleClass(className: string, swtch?: boolean): JQuery; - /** - * Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument. - * - * @param swtch A boolean value to determine whether the class should be added or removed. - */ - toggleClass(swtch?: boolean): JQuery; - /** - * Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument. - * - * @param func A function that returns class names to be toggled in the class attribute of each element in the matched set. Receives the index position of the element in the set, the old class value, and the switch as arguments. - * @param swtch A boolean value to determine whether the class should be added or removed. - */ - toggleClass(func: (index: number, className: string, swtch: boolean) => string, swtch?: boolean): JQuery; - - /** - * Get the current value of the first element in the set of matched elements. - */ - val(): any; - /** - * Set the value of each element in the set of matched elements. - * - * @param value A string of text or an array of strings corresponding to the value of each matched element to set as selected/checked. - */ - val(value: string): JQuery; - /** - * Set the value of each element in the set of matched elements. - * - * @param value A string of text or an array of strings corresponding to the value of each matched element to set as selected/checked. - */ - val(value: string[]): JQuery; - /** - * Set the value of each element in the set of matched elements. - * - * @param func A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments. - */ - val(func: (index: number, value: string) => string): JQuery; - /** - * Set the value of each element in the set of matched elements. - * - * @param func A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments. - */ - val(func: (index: number, value: string[]) => string): JQuery; - /** - * Set the value of each element in the set of matched elements. - * - * @param func A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments. - */ - val(func: (index: number, value: number) => string): JQuery; - /** - * Set the value of each element in the set of matched elements. - * - * @param func A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments. - */ - val(func: (index: number, value: string) => string[]): JQuery; - /** - * Set the value of each element in the set of matched elements. - * - * @param func A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments. - */ - val(func: (index: number, value: string[]) => string[]): JQuery; - /** - * Set the value of each element in the set of matched elements. - * - * @param func A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments. - */ - val(func: (index: number, value: number) => string[]): JQuery; - - /** - * Get the value of style properties for the first element in the set of matched elements. - * - * @param propertyName A CSS property. - */ - css(propertyName: string): string; - /** - * Set one or more CSS properties for the set of matched elements. - * - * @param propertyName A CSS property name. - * @param value A value to set for the property. - */ - css(propertyName: string, value: string): JQuery; - /** - * Set one or more CSS properties for the set of matched elements. - * - * @param propertyName A CSS property name. - * @param value A value to set for the property. - */ - css(propertyName: string, value: number): JQuery; - /** - * Set one or more CSS properties for the set of matched elements. - * - * @param propertyName A CSS property name. - * @param value A value to set for the property. - */ - css(propertyName: string, value: string[]): JQuery; - /** - * Set one or more CSS properties for the set of matched elements. - * - * @param propertyName A CSS property name. - * @param value A value to set for the property. - */ - css(propertyName: string, value: number[]): JQuery; - /** - * Set one or more CSS properties for the set of matched elements. - * - * @param propertyName A CSS property name. - * @param value A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments. - */ - css(propertyName: string, value: (index: number, value: string) => string): JQuery; - /** - * Set one or more CSS properties for the set of matched elements. - * - * @param propertyName A CSS property name. - * @param value A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments. - */ - css(propertyName: string, value: (index: number, value: number) => number): JQuery; - /** - * Set one or more CSS properties for the set of matched elements. - * - * @param properties An object of property-value pairs to set. - */ - css(properties: Object): JQuery; - - /** - * Get the current computed height for the first element in the set of matched elements. - */ - height(): number; - /** - * Set the CSS height of every matched element. - * - * @param value An integer representing the number of pixels, or an integer with an optional unit of measure appended (as a string). - */ - height(value: number): JQuery; - /** - * Set the CSS height of every matched element. - * - * @param value An integer representing the number of pixels, or an integer with an optional unit of measure appended (as a string). - */ - height(value: string): JQuery; - /** - * Set the CSS height of every matched element. - * - * @param func A function returning the height to set. Receives the index position of the element in the set and the old height as arguments. Within the function, this refers to the current element in the set. - */ - height(func: (index: number, height: number) => number): JQuery; - /** - * Set the CSS height of every matched element. - * - * @param func A function returning the height to set. Receives the index position of the element in the set and the old height as arguments. Within the function, this refers to the current element in the set. - */ - height(func: (index: number, height: string) => string): JQuery; - /** - * Set the CSS height of every matched element. - * - * @param func A function returning the height to set. Receives the index position of the element in the set and the old height as arguments. Within the function, this refers to the current element in the set. - */ - height(func: (index: number, height: string) => number): JQuery; - /** - * Set the CSS height of every matched element. - * - * @param func A function returning the height to set. Receives the index position of the element in the set and the old height as arguments. Within the function, this refers to the current element in the set. - */ - height(func: (index: number, height: number) => string): JQuery; - - /** - * Get the current computed height for the first element in the set of matched elements, including padding but not border. - */ - innerHeight(): number; - - /** - * Sets the inner height on elements in the set of matched elements, including padding but not border. - * - * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string). - */ - innerHeight(height: number): JQuery; - - /** - * Sets the inner height on elements in the set of matched elements, including padding but not border. - * - * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string). - */ - innerHeight(height: string): JQuery; - - /** - * Get the current computed width for the first element in the set of matched elements, including padding but not border. - */ - innerWidth(): number; - - /** - * Sets the inner width on elements in the set of matched elements, including padding but not border. - * - * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string). - */ - innerWidth(width: number): JQuery; - - /** - * Sets the inner width on elements in the set of matched elements, including padding but not border. - * - * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string). - */ - innerWidth(width: string): JQuery; - - /** - * Get the current coordinates of the first element in the set of matched elements, relative to the document. - */ - offset(): JQueryCoordinates; - /** - * An object containing the properties top and left, which are integers indicating the new top and left coordinates for the elements. - * - * @param coordinates An object containing the properties top and left, which are integers indicating the new top and left coordinates for the elements. - */ - offset(coordinates: JQueryCoordinates): JQuery; - /** - * An object containing the properties top and left, which are integers indicating the new top and left coordinates for the elements. - * - * @param func A function to return the coordinates to set. Receives the index of the element in the collection as the first argument and the current coordinates as the second argument. The function should return an object with the new top and left properties. - */ - offset(func: (index: number, coords: JQueryCoordinates) => JQueryCoordinates): JQuery; - - /** - * Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. Returns an integer (without "px") representation of the value or null if called on an empty set of elements. - * - * @param includeMargin A Boolean indicating whether to include the element's margin in the calculation. - */ - outerHeight(includeMargin?: boolean): number; - - /** - * Sets the outer height on elements in the set of matched elements, including padding and border. - * - * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string). - */ - outerHeight(height: number): JQuery; - - /** - * Sets the outer height on elements in the set of matched elements, including padding and border. - * - * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string). - */ - outerHeight(height: string): JQuery; - - /** - * Get the current computed width for the first element in the set of matched elements, including padding and border. - * - * @param includeMargin A Boolean indicating whether to include the element's margin in the calculation. - */ - outerWidth(includeMargin?: boolean): number; - - /** - * Sets the outer width on elements in the set of matched elements, including padding and border. - * - * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string). - */ - outerWidth(width: number): JQuery; - - /** - * Sets the outer width on elements in the set of matched elements, including padding and border. - * - * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string). - */ - outerWidth(width: string): JQuery; - - /** - * Get the current coordinates of the first element in the set of matched elements, relative to the offset parent. - */ - position(): JQueryCoordinates; - - /** - * Get the current horizontal position of the scroll bar for the first element in the set of matched elements or set the horizontal position of the scroll bar for every matched element. - */ - scrollLeft(): number; - /** - * Set the current horizontal position of the scroll bar for each of the set of matched elements. - * - * @param value An integer indicating the new position to set the scroll bar to. - */ - scrollLeft(value: number): JQuery; - - /** - * Get the current vertical position of the scroll bar for the first element in the set of matched elements or set the vertical position of the scroll bar for every matched element. - */ - scrollTop(): number; - /** - * Set the current vertical position of the scroll bar for each of the set of matched elements. - * - * @param value An integer indicating the new position to set the scroll bar to. - */ - scrollTop(value: number): JQuery; - - /** - * Get the current computed width for the first element in the set of matched elements. - */ - width(): number; - /** - * Set the CSS width of each element in the set of matched elements. - * - * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string). - */ - width(value: number): JQuery; - /** - * Set the CSS width of each element in the set of matched elements. - * - * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string). - */ - width(value: string): JQuery; - /** - * Set the CSS width of each element in the set of matched elements. - * - * @param func A function returning the width to set. Receives the index position of the element in the set and the old width as arguments. Within the function, this refers to the current element in the set. - */ - width(func: (index: number, width: number) => number): JQuery; - /** - * Set the CSS width of each element in the set of matched elements. - * - * @param func A function returning the width to set. Receives the index position of the element in the set and the old width as arguments. Within the function, this refers to the current element in the set. - */ - width(func: (index: number, width: string) => string): JQuery; - /** - * Set the CSS width of each element in the set of matched elements. - * - * @param func A function returning the width to set. Receives the index position of the element in the set and the old width as arguments. Within the function, this refers to the current element in the set. - */ - width(func: (index: number, width: string) => number): JQuery; - /** - * Set the CSS width of each element in the set of matched elements. - * - * @param func A function returning the width to set. Receives the index position of the element in the set and the old width as arguments. Within the function, this refers to the current element in the set. - */ - width(func: (index: number, width: number) => string): JQuery; - - /** - * Remove from the queue all items that have not yet been run. - * - * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue. - */ - clearQueue(queueName?: string): JQuery; - - /** - * Store arbitrary data associated with the matched elements. - * - * @param key A string naming the piece of data to set. - * @param value The new data value; it can be any Javascript type including Array or Object. - */ - data(key: string, value: any): JQuery; - /** - * Store arbitrary data associated with the matched elements. - * - * @param obj An object of key-value pairs of data to update. - */ - data(obj: { [key: string]: any; }): JQuery; - /** - * Return the value at the named data store for the first element in the jQuery collection, as set by data(name, value) or by an HTML5 data-* attribute. - * - * @param key Name of the data stored. - */ - data(key: string): any; - /** - * Return the value at the named data store for the first element in the jQuery collection, as set by data(name, value) or by an HTML5 data-* attribute. - */ - data(): any; - - /** - * Execute the next function on the queue for the matched elements. - * - * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue. - */ - dequeue(queueName?: string): JQuery; - - /** - * Remove a previously-stored piece of data. - * - * @param name A string naming the piece of data to delete or space-separated string naming the pieces of data to delete. - */ - removeData(name: string): JQuery; - /** - * Remove a previously-stored piece of data. - * - * @param list An array of strings naming the pieces of data to delete. - */ - removeData(list: string[]): JQuery; - - /** - * Return a Promise object to observe when all actions of a certain type bound to the collection, queued or not, have finished. - * - * @param type The type of queue that needs to be observed. (default: fx) - * @param target Object onto which the promise methods have to be attached - */ - promise(type?: string, target?: Object): JQueryPromise; - - /** - * Perform a custom animation of a set of CSS properties. - * - * @param properties An object of CSS properties and values that the animation will move toward. - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - animate(properties: Object, duration?: string, complete?: Function): JQuery; - /** - * Perform a custom animation of a set of CSS properties. - * - * @param properties An object of CSS properties and values that the animation will move toward. - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - animate(properties: Object, duration?: number, complete?: Function): JQuery; - /** - * Perform a custom animation of a set of CSS properties. - * - * @param properties An object of CSS properties and values that the animation will move toward. - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. (default: swing) - * @param complete A function to call once the animation is complete. - */ - animate(properties: Object, duration?: string, easing?: string, complete?: Function): JQuery; - /** - * Perform a custom animation of a set of CSS properties. - * - * @param properties An object of CSS properties and values that the animation will move toward. - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. (default: swing) - * @param complete A function to call once the animation is complete. - */ - animate(properties: Object, duration?: number, easing?: string, complete?: Function): JQuery; - /** - * Perform a custom animation of a set of CSS properties. - * - * @param properties An object of CSS properties and values that the animation will move toward. - * @param options A map of additional options to pass to the method. - */ - animate(properties: Object, options: JQueryAnimationOptions): JQuery; - - /** - * Set a timer to delay execution of subsequent items in the queue. - * - * @param duration An integer indicating the number of milliseconds to delay execution of the next item in the queue. - * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue. - */ - delay(duration: number, queueName?: string): JQuery; - - /** - * Display the matched elements by fading them to opaque. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - fadeIn(duration?: number, complete?: Function): JQuery; - /** - * Display the matched elements by fading them to opaque. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - fadeIn(duration?: string, complete?: Function): JQuery; - /** - * Display the matched elements by fading them to opaque. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - fadeIn(duration?: number, easing?: string, complete?: Function): JQuery; - /** - * Display the matched elements by fading them to opaque. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - fadeIn(duration?: string, easing?: string, complete?: Function): JQuery; - /** - * Display the matched elements by fading them to opaque. - * - * @param options A map of additional options to pass to the method. - */ - fadeIn(options: JQueryAnimationOptions): JQuery; - - /** - * Hide the matched elements by fading them to transparent. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - fadeOut(duration?: number, complete?: Function): JQuery; - /** - * Hide the matched elements by fading them to transparent. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - fadeOut(duration?: string, complete?: Function): JQuery; - /** - * Hide the matched elements by fading them to transparent. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - fadeOut(duration?: number, easing?: string, complete?: Function): JQuery; - /** - * Hide the matched elements by fading them to transparent. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - fadeOut(duration?: string, easing?: string, complete?: Function): JQuery; - /** - * Hide the matched elements by fading them to transparent. - * - * @param options A map of additional options to pass to the method. - */ - fadeOut(options: JQueryAnimationOptions): JQuery; - - /** - * Adjust the opacity of the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param opacity A number between 0 and 1 denoting the target opacity. - * @param complete A function to call once the animation is complete. - */ - fadeTo(duration: string, opacity: number, complete?: Function): JQuery; - /** - * Adjust the opacity of the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param opacity A number between 0 and 1 denoting the target opacity. - * @param complete A function to call once the animation is complete. - */ - fadeTo(duration: number, opacity: number, complete?: Function): JQuery; - /** - * Adjust the opacity of the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param opacity A number between 0 and 1 denoting the target opacity. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - fadeTo(duration: string, opacity: number, easing?: string, complete?: Function): JQuery; - /** - * Adjust the opacity of the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param opacity A number between 0 and 1 denoting the target opacity. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - fadeTo(duration: number, opacity: number, easing?: string, complete?: Function): JQuery; - - /** - * Display or hide the matched elements by animating their opacity. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - fadeToggle(duration?: number, complete?: Function): JQuery; - /** - * Display or hide the matched elements by animating their opacity. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - fadeToggle(duration?: string, complete?: Function): JQuery; - /** - * Display or hide the matched elements by animating their opacity. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - fadeToggle(duration?: number, easing?: string, complete?: Function): JQuery; - /** - * Display or hide the matched elements by animating their opacity. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - fadeToggle(duration?: string, easing?: string, complete?: Function): JQuery; - /** - * Display or hide the matched elements by animating their opacity. - * - * @param options A map of additional options to pass to the method. - */ - fadeToggle(options: JQueryAnimationOptions): JQuery; - - /** - * Stop the currently-running animation, remove all queued animations, and complete all animations for the matched elements. - * - * @param queue The name of the queue in which to stop animations. - */ - finish(queue?: string): JQuery; - - /** - * Hide the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - hide(duration?: number, complete?: Function): JQuery; - /** - * Hide the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - hide(duration?: string, complete?: Function): JQuery; - /** - * Hide the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - hide(duration?: number, easing?: string, complete?: Function): JQuery; - /** - * Hide the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - hide(duration?: string, easing?: string, complete?: Function): JQuery; - /** - * Hide the matched elements. - * - * @param options A map of additional options to pass to the method. - */ - hide(options: JQueryAnimationOptions): JQuery; - - /** - * Display the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - show(duration?: number, complete?: Function): JQuery; - /** - * Display the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - show(duration?: string, complete?: Function): JQuery; - /** - * Display the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - show(duration?: number, easing?: string, complete?: Function): JQuery; - /** - * Display the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - show(duration?: string, easing?: string, complete?: Function): JQuery; - /** - * Display the matched elements. - * - * @param options A map of additional options to pass to the method. - */ - show(options: JQueryAnimationOptions): JQuery; - - /** - * Display the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - slideDown(duration?: number, complete?: Function): JQuery; - /** - * Display the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - slideDown(duration?: string, complete?: Function): JQuery; - /** - * Display the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - slideDown(duration?: number, easing?: string, complete?: Function): JQuery; - /** - * Display the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - slideDown(duration?: string, easing?: string, complete?: Function): JQuery; - /** - * Display the matched elements with a sliding motion. - * - * @param options A map of additional options to pass to the method. - */ - slideDown(options: JQueryAnimationOptions): JQuery; - - /** - * Display or hide the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - slideToggle(duration?: number, complete?: Function): JQuery; - /** - * Display or hide the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - slideToggle(duration?: string, complete?: Function): JQuery; - /** - * Display or hide the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - slideToggle(duration?: number, easing?: string, complete?: Function): JQuery; - /** - * Display or hide the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - slideToggle(duration?: string, easing?: string, complete?: Function): JQuery; - /** - * Display or hide the matched elements with a sliding motion. - * - * @param options A map of additional options to pass to the method. - */ - slideToggle(options: JQueryAnimationOptions): JQuery; - - /** - * Hide the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - slideUp(duration?: number, complete?: Function): JQuery; - /** - * Hide the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - slideUp(duration?: string, complete?: Function): JQuery; - /** - * Hide the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - slideUp(duration?: number, easing?: string, complete?: Function): JQuery; - /** - * Hide the matched elements with a sliding motion. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - slideUp(duration?: string, easing?: string, complete?: Function): JQuery; - /** - * Hide the matched elements with a sliding motion. - * - * @param options A map of additional options to pass to the method. - */ - slideUp(options: JQueryAnimationOptions): JQuery; - - /** - * Stop the currently-running animation on the matched elements. - * - * @param clearQueue A Boolean indicating whether to remove queued animation as well. Defaults to false. - * @param jumpToEnd A Boolean indicating whether to complete the current animation immediately. Defaults to false. - */ - stop(clearQueue?: boolean, jumpToEnd?: boolean): JQuery; - /** - * Stop the currently-running animation on the matched elements. - * - * @param queue The name of the queue in which to stop animations. - * @param clearQueue A Boolean indicating whether to remove queued animation as well. Defaults to false. - * @param jumpToEnd A Boolean indicating whether to complete the current animation immediately. Defaults to false. - */ - stop(queue?: string, clearQueue?: boolean, jumpToEnd?: boolean): JQuery; - - /** - * Display or hide the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - toggle(duration?: number, complete?: Function): JQuery; - /** - * Display or hide the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param complete A function to call once the animation is complete. - */ - toggle(duration?: string, complete?: Function): JQuery; - /** - * Display or hide the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - toggle(duration?: number, easing?: string, complete?: Function): JQuery; - /** - * Display or hide the matched elements. - * - * @param duration A string or number determining how long the animation will run. - * @param easing A string indicating which easing function to use for the transition. - * @param complete A function to call once the animation is complete. - */ - toggle(duration?: string, easing?: string, complete?: Function): JQuery; - /** - * Display or hide the matched elements. - * - * @param options A map of additional options to pass to the method. - */ - toggle(options: JQueryAnimationOptions): JQuery; - /** - * Display or hide the matched elements. - * - * @param showOrHide A Boolean indicating whether to show or hide the elements. - */ - toggle(showOrHide: boolean): JQuery; - - /** - * Attach a handler to an event for the elements. - * - * @param eventType A string containing one or more DOM event types, such as "click" or "submit," or custom event names. - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - bind(eventType: string, eventData: any, handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Attach a handler to an event for the elements. - * - * @param eventType A string containing one or more DOM event types, such as "click" or "submit," or custom event names. - * @param handler A function to execute each time the event is triggered. - */ - bind(eventType: string, handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Attach a handler to an event for the elements. - * - * @param eventType A string containing one or more DOM event types, such as "click" or "submit," or custom event names. - * @param eventData An object containing data that will be passed to the event handler. - * @param preventBubble Setting the third argument to false will attach a function that prevents the default action from occurring and stops the event from bubbling. The default is true. - */ - bind(eventType: string, eventData: any, preventBubble: boolean): JQuery; - /** - * Attach a handler to an event for the elements. - * - * @param eventType A string containing one or more DOM event types, such as "click" or "submit," or custom event names. - * @param preventBubble Setting the third argument to false will attach a function that prevents the default action from occurring and stops the event from bubbling. The default is true. - */ - bind(eventType: string, preventBubble: boolean): JQuery; - /** - * Attach a handler to an event for the elements. - * - * @param events An object containing one or more DOM event types and functions to execute for them. - */ - bind(events: any): JQuery; - - /** - * Trigger the "blur" event on an element - */ - blur(): JQuery; - /** - * Bind an event handler to the "blur" JavaScript event - * - * @param handler A function to execute each time the event is triggered. - */ - blur(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "blur" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - blur(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Trigger the "change" event on an element. - */ - change(): JQuery; - /** - * Bind an event handler to the "change" JavaScript event - * - * @param handler A function to execute each time the event is triggered. - */ - change(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "change" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - change(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Trigger the "click" event on an element. - */ - click(): JQuery; - /** - * Bind an event handler to the "click" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - */ - click(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "click" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - click(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Trigger the "dblclick" event on an element. - */ - dblclick(): JQuery; - /** - * Bind an event handler to the "dblclick" JavaScript event - * - * @param handler A function to execute each time the event is triggered. - */ - dblclick(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "dblclick" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - dblclick(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery; - - delegate(selector: any, eventType: string, handler: (eventObject: JQueryEventObject) => any): JQuery; - delegate(selector: any, eventType: string, eventData: any, handler: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Trigger the "focus" event on an element. - */ - focus(): JQuery; - /** - * Bind an event handler to the "focus" JavaScript event - * - * @param handler A function to execute each time the event is triggered. - */ - focus(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "focus" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - focus(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Bind an event handler to the "focusin" JavaScript event - * - * @param handler A function to execute each time the event is triggered. - */ - focusin(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "focusin" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - focusin(eventData: Object, handler: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Bind an event handler to the "focusout" JavaScript event - * - * @param handler A function to execute each time the event is triggered. - */ - focusout(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "focusout" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - focusout(eventData: Object, handler: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Bind two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements. - * - * @param handlerIn A function to execute when the mouse pointer enters the element. - * @param handlerOut A function to execute when the mouse pointer leaves the element. - */ - hover(handlerIn: (eventObject: JQueryEventObject) => any, handlerOut: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind a single handler to the matched elements, to be executed when the mouse pointer enters or leaves the elements. - * - * @param handlerInOut A function to execute when the mouse pointer enters or leaves the element. - */ - hover(handlerInOut: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Trigger the "keydown" event on an element. - */ - keydown(): JQuery; - /** - * Bind an event handler to the "keydown" JavaScript event - * - * @param handler A function to execute each time the event is triggered. - */ - keydown(handler: (eventObject: JQueryKeyEventObject) => any): JQuery; - /** - * Bind an event handler to the "keydown" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - keydown(eventData?: any, handler?: (eventObject: JQueryKeyEventObject) => any): JQuery; - - /** - * Trigger the "keypress" event on an element. - */ - keypress(): JQuery; - /** - * Bind an event handler to the "keypress" JavaScript event - * - * @param handler A function to execute each time the event is triggered. - */ - keypress(handler: (eventObject: JQueryKeyEventObject) => any): JQuery; - /** - * Bind an event handler to the "keypress" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - keypress(eventData?: any, handler?: (eventObject: JQueryKeyEventObject) => any): JQuery; - - /** - * Trigger the "keyup" event on an element. - */ - keyup(): JQuery; - /** - * Bind an event handler to the "keyup" JavaScript event - * - * @param handler A function to execute each time the event is triggered. - */ - keyup(handler: (eventObject: JQueryKeyEventObject) => any): JQuery; - /** - * Bind an event handler to the "keyup" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - keyup(eventData?: any, handler?: (eventObject: JQueryKeyEventObject) => any): JQuery; - - /** - * Bind an event handler to the "load" JavaScript event. - * - * @param handler A function to execute when the event is triggered. - */ - load(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "load" JavaScript event. - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute when the event is triggered. - */ - load(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Trigger the "mousedown" event on an element. - */ - mousedown(): JQuery; - /** - * Bind an event handler to the "mousedown" JavaScript event. - * - * @param handler A function to execute when the event is triggered. - */ - mousedown(handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - /** - * Bind an event handler to the "mousedown" JavaScript event. - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute when the event is triggered. - */ - mousedown(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - - /** - * Trigger the "mouseenter" event on an element. - */ - mouseenter(): JQuery; - /** - * Bind an event handler to be fired when the mouse enters an element. - * - * @param handler A function to execute when the event is triggered. - */ - mouseenter(handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - /** - * Bind an event handler to be fired when the mouse enters an element. - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute when the event is triggered. - */ - mouseenter(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - - /** - * Trigger the "mouseleave" event on an element. - */ - mouseleave(): JQuery; - /** - * Bind an event handler to be fired when the mouse leaves an element. - * - * @param handler A function to execute when the event is triggered. - */ - mouseleave(handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - /** - * Bind an event handler to be fired when the mouse leaves an element. - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute when the event is triggered. - */ - mouseleave(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - - /** - * Trigger the "mousemove" event on an element. - */ - mousemove(): JQuery; - /** - * Bind an event handler to the "mousemove" JavaScript event. - * - * @param handler A function to execute when the event is triggered. - */ - mousemove(handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - /** - * Bind an event handler to the "mousemove" JavaScript event. - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute when the event is triggered. - */ - mousemove(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - - /** - * Trigger the "mouseout" event on an element. - */ - mouseout(): JQuery; - /** - * Bind an event handler to the "mouseout" JavaScript event. - * - * @param handler A function to execute when the event is triggered. - */ - mouseout(handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - /** - * Bind an event handler to the "mouseout" JavaScript event. - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute when the event is triggered. - */ - mouseout(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - - /** - * Trigger the "mouseover" event on an element. - */ - mouseover(): JQuery; - /** - * Bind an event handler to the "mouseover" JavaScript event. - * - * @param handler A function to execute when the event is triggered. - */ - mouseover(handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - /** - * Bind an event handler to the "mouseover" JavaScript event. - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute when the event is triggered. - */ - mouseover(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - - /** - * Trigger the "mouseup" event on an element. - */ - mouseup(): JQuery; - /** - * Bind an event handler to the "mouseup" JavaScript event. - * - * @param handler A function to execute when the event is triggered. - */ - mouseup(handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - /** - * Bind an event handler to the "mouseup" JavaScript event. - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute when the event is triggered. - */ - mouseup(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery; - - /** - * Remove an event handler. - */ - off(): JQuery; - /** - * Remove an event handler. - * - * @param events One or more space-separated event types and optional namespaces, or just namespaces, such as "click", "keydown.myPlugin", or ".myPlugin". - * @param selector A selector which should match the one originally passed to .on() when attaching event handlers. - * @param handler A handler function previously attached for the event(s), or the special value false. - */ - off(events: string, selector?: string, handler?: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Remove an event handler. - * - * @param events One or more space-separated event types and optional namespaces, or just namespaces, such as "click", "keydown.myPlugin", or ".myPlugin". - * @param handler A handler function previously attached for the event(s), or the special value false. - */ - off(events: string, handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Remove an event handler. - * - * @param events An object where the string keys represent one or more space-separated event types and optional namespaces, and the values represent handler functions previously attached for the event(s). - * @param selector A selector which should match the one originally passed to .on() when attaching event handlers. - */ - off(events: { [key: string]: any; }, selector?: string): JQuery; - - /** - * Attach an event handler function for one or more events to the selected elements. - * - * @param events One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin". - * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false. Rest parameter args is for optional parameters passed to jQuery.trigger(). Note that the actual parameters on the event handler function must be marked as optional (? syntax). - */ - on(events: string, handler: (eventObject: JQueryEventObject, ...args: any[]) => any): JQuery; - /** - * Attach an event handler function for one or more events to the selected elements. - * - * @param events One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin". - * @param data Data to be passed to the handler in event.data when an event is triggered. - * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false. - */ - on(events: string, data : any, handler: (eventObject: JQueryEventObject, ...args: any[]) => any): JQuery; - /** - * Attach an event handler function for one or more events to the selected elements. - * - * @param events One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin". - * @param selector A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element. - * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false. - */ - on(events: string, selector: string, handler: (eventObject: JQueryEventObject, ...eventData: any[]) => any): JQuery; - /** - * Attach an event handler function for one or more events to the selected elements. - * - * @param events One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin". - * @param selector A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element. - * @param data Data to be passed to the handler in event.data when an event is triggered. - * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false. - */ - on(events: string, selector: string, data: any, handler: (eventObject: JQueryEventObject, ...eventData: any[]) => any): JQuery; - /** - * Attach an event handler function for one or more events to the selected elements. - * - * @param events An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s). - * @param selector A selector string to filter the descendants of the selected elements that will call the handler. If the selector is null or omitted, the handler is always called when it reaches the selected element. - * @param data Data to be passed to the handler in event.data when an event occurs. - */ - on(events: { [key: string]: any; }, selector?: string, data?: any): JQuery; - /** - * Attach an event handler function for one or more events to the selected elements. - * - * @param events An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s). - * @param data Data to be passed to the handler in event.data when an event occurs. - */ - on(events: { [key: string]: any; }, data?: any): JQuery; - - /** - * Attach a handler to an event for the elements. The handler is executed at most once per element per event type. - * - * @param events A string containing one or more JavaScript event types, such as "click" or "submit," or custom event names. - * @param handler A function to execute at the time the event is triggered. - */ - one(events: string, handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Attach a handler to an event for the elements. The handler is executed at most once per element per event type. - * - * @param events A string containing one or more JavaScript event types, such as "click" or "submit," or custom event names. - * @param data An object containing data that will be passed to the event handler. - * @param handler A function to execute at the time the event is triggered. - */ - one(events: string, data: Object, handler: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Attach a handler to an event for the elements. The handler is executed at most once per element per event type. - * - * @param events One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin". - * @param selector A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element. - * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false. - */ - one(events: string, selector: string, handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Attach a handler to an event for the elements. The handler is executed at most once per element per event type. - * - * @param events One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin". - * @param selector A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element. - * @param data Data to be passed to the handler in event.data when an event is triggered. - * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false. - */ - one(events: string, selector: string, data: any, handler: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Attach a handler to an event for the elements. The handler is executed at most once per element per event type. - * - * @param events An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s). - * @param selector A selector string to filter the descendants of the selected elements that will call the handler. If the selector is null or omitted, the handler is always called when it reaches the selected element. - * @param data Data to be passed to the handler in event.data when an event occurs. - */ - one(events: { [key: string]: any; }, selector?: string, data?: any): JQuery; - - /** - * Attach a handler to an event for the elements. The handler is executed at most once per element per event type. - * - * @param events An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s). - * @param data Data to be passed to the handler in event.data when an event occurs. - */ - one(events: { [key: string]: any; }, data?: any): JQuery; - - - /** - * Specify a function to execute when the DOM is fully loaded. - * - * @param handler A function to execute after the DOM is ready. - */ - ready(handler: Function): JQuery; - - /** - * Trigger the "resize" event on an element. - */ - resize(): JQuery; - /** - * Bind an event handler to the "resize" JavaScript event. - * - * @param handler A function to execute each time the event is triggered. - */ - resize(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "resize" JavaScript event. - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - resize(eventData: Object, handler: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Trigger the "scroll" event on an element. - */ - scroll(): JQuery; - /** - * Bind an event handler to the "scroll" JavaScript event. - * - * @param handler A function to execute each time the event is triggered. - */ - scroll(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "scroll" JavaScript event. - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - scroll(eventData: Object, handler: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Trigger the "select" event on an element. - */ - select(): JQuery; - /** - * Bind an event handler to the "select" JavaScript event. - * - * @param handler A function to execute each time the event is triggered. - */ - select(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "select" JavaScript event. - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - select(eventData: Object, handler: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Trigger the "submit" event on an element. - */ - submit(): JQuery; - /** - * Bind an event handler to the "submit" JavaScript event - * - * @param handler A function to execute each time the event is triggered. - */ - submit(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "submit" JavaScript event - * - * @param eventData An object containing data that will be passed to the event handler. - * @param handler A function to execute each time the event is triggered. - */ - submit(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Execute all handlers and behaviors attached to the matched elements for the given event type. - * - * @param eventType A string containing a JavaScript event type, such as click or submit. - * @param extraParameters Additional parameters to pass along to the event handler. - */ - trigger(eventType: string, extraParameters?: any[]): JQuery; - /** - * Execute all handlers and behaviors attached to the matched elements for the given event type. - * - * @param eventType A string containing a JavaScript event type, such as click or submit. - * @param extraParameters Additional parameters to pass along to the event handler. - */ - trigger(eventType: string, extraParameters?: Object): JQuery; - /** - * Execute all handlers and behaviors attached to the matched elements for the given event type. - * - * @param event A jQuery.Event object. - * @param extraParameters Additional parameters to pass along to the event handler. - */ - trigger(event: JQueryEventObject, extraParameters?: any[]): JQuery; - /** - * Execute all handlers and behaviors attached to the matched elements for the given event type. - * - * @param event A jQuery.Event object. - * @param extraParameters Additional parameters to pass along to the event handler. - */ - trigger(event: JQueryEventObject, extraParameters?: Object): JQuery; - - /** - * Execute all handlers attached to an element for an event. - * - * @param eventType A string containing a JavaScript event type, such as click or submit. - * @param extraParameters An array of additional parameters to pass along to the event handler. - */ - triggerHandler(eventType: string, ...extraParameters: any[]): Object; - - /** - * Remove a previously-attached event handler from the elements. - * - * @param eventType A string containing a JavaScript event type, such as click or submit. - * @param handler The function that is to be no longer executed. - */ - unbind(eventType?: string, handler?: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Remove a previously-attached event handler from the elements. - * - * @param eventType A string containing a JavaScript event type, such as click or submit. - * @param fls Unbinds the corresponding 'return false' function that was bound using .bind( eventType, false ). - */ - unbind(eventType: string, fls: boolean): JQuery; - /** - * Remove a previously-attached event handler from the elements. - * - * @param evt A JavaScript event object as passed to an event handler. - */ - unbind(evt: any): JQuery; - - /** - * Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements. - */ - undelegate(): JQuery; - /** - * Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements. - * - * @param selector A selector which will be used to filter the event results. - * @param eventType A string containing a JavaScript event type, such as "click" or "keydown" - * @param handler A function to execute at the time the event is triggered. - */ - undelegate(selector: string, eventType: string, handler?: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements. - * - * @param selector A selector which will be used to filter the event results. - * @param events An object of one or more event types and previously bound functions to unbind from them. - */ - undelegate(selector: string, events: Object): JQuery; - /** - * Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements. - * - * @param namespace A string containing a namespace to unbind all events from. - */ - undelegate(namespace: string): JQuery; - - /** - * Bind an event handler to the "unload" JavaScript event. (DEPRECATED from v1.8) - * - * @param handler A function to execute when the event is triggered. - */ - unload(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "unload" JavaScript event. (DEPRECATED from v1.8) - * - * @param eventData A plain object of data that will be passed to the event handler. - * @param handler A function to execute when the event is triggered. - */ - unload(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document. (DEPRECATED from v1.10) - */ - context: Element; - - jquery: string; - - /** - * Bind an event handler to the "error" JavaScript event. (DEPRECATED from v1.8) - * - * @param handler A function to execute when the event is triggered. - */ - error(handler: (eventObject: JQueryEventObject) => any): JQuery; - /** - * Bind an event handler to the "error" JavaScript event. (DEPRECATED from v1.8) - * - * @param eventData A plain object of data that will be passed to the event handler. - * @param handler A function to execute when the event is triggered. - */ - error(eventData: any, handler: (eventObject: JQueryEventObject) => any): JQuery; - - /** - * Add a collection of DOM elements onto the jQuery stack. - * - * @param elements An array of elements to push onto the stack and make into a new jQuery object. - */ - pushStack(elements: any[]): JQuery; - /** - * Add a collection of DOM elements onto the jQuery stack. - * - * @param elements An array of elements to push onto the stack and make into a new jQuery object. - * @param name The name of a jQuery method that generated the array of elements. - * @param arguments The arguments that were passed in to the jQuery method (for serialization). - */ - pushStack(elements: any[], name: string, arguments: any[]): JQuery; - - /** - * Insert content, specified by the parameter, after each element in the set of matched elements. - * - * param content1 HTML string, DOM element, array of elements, or jQuery object to insert after each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements. - */ - after(content1: JQuery, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, after each element in the set of matched elements. - * - * param content1 HTML string, DOM element, array of elements, or jQuery object to insert after each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements. - */ - after(content1: any[], ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, after each element in the set of matched elements. - * - * param content1 HTML string, DOM element, array of elements, or jQuery object to insert after each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements. - */ - after(content1: Element, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, after each element in the set of matched elements. - * - * param content1 HTML string, DOM element, array of elements, or jQuery object to insert after each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements. - */ - after(content1: Text, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, after each element in the set of matched elements. - * - * param content1 HTML string, DOM element, array of elements, or jQuery object to insert after each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements. - */ - after(content1: string, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, after each element in the set of matched elements. - * - * param func A function that returns an HTML string, DOM element(s), or jQuery object to insert after each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set. - */ - after(func: (index: number) => any): JQuery; - - /** - * Insert content, specified by the parameter, to the end of each element in the set of matched elements. - * - * param content1 DOM element, array of elements, HTML string, or jQuery object to insert at the end of each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements. - */ - append(content1: JQuery, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, to the end of each element in the set of matched elements. - * - * param content1 DOM element, array of elements, HTML string, or jQuery object to insert at the end of each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements. - */ - append(content1: any[], ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, to the end of each element in the set of matched elements. - * - * param content1 DOM element, array of elements, HTML string, or jQuery object to insert at the end of each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements. - */ - append(content1: Element, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, to the end of each element in the set of matched elements. - * - * param content1 DOM element, array of elements, HTML string, or jQuery object to insert at the end of each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements. - */ - append(content1: Text, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, to the end of each element in the set of matched elements. - * - * param content1 DOM element, array of elements, HTML string, or jQuery object to insert at the end of each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements. - */ - append(content1: string, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, to the end of each element in the set of matched elements. - * - * param func A function that returns an HTML string, DOM element(s), or jQuery object to insert at the end of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set. - */ - append(func: (index: number, html: string) => any): JQuery; - - /** - * Insert every element in the set of matched elements to the end of the target. - * - * @param target A selector, element, HTML string, array of elements, or jQuery object; the matched set of elements will be inserted at the end of the element(s) specified by this parameter. - */ - appendTo(target: JQuery): JQuery; - /** - * Insert every element in the set of matched elements to the end of the target. - * - * @param target A selector, element, HTML string, array of elements, or jQuery object; the matched set of elements will be inserted at the end of the element(s) specified by this parameter. - */ - appendTo(target: any[]): JQuery; - /** - * Insert every element in the set of matched elements to the end of the target. - * - * @param target A selector, element, HTML string, array of elements, or jQuery object; the matched set of elements will be inserted at the end of the element(s) specified by this parameter. - */ - appendTo(target: Element): JQuery; - /** - * Insert every element in the set of matched elements to the end of the target. - * - * @param target A selector, element, HTML string, array of elements, or jQuery object; the matched set of elements will be inserted at the end of the element(s) specified by this parameter. - */ - appendTo(target: string): JQuery; - - /** - * Insert content, specified by the parameter, before each element in the set of matched elements. - * - * param content1 HTML string, DOM element, array of elements, or jQuery object to insert before each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements. - */ - before(content1: JQuery, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, before each element in the set of matched elements. - * - * param content1 HTML string, DOM element, array of elements, or jQuery object to insert before each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements. - */ - before(content1: any[], ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, before each element in the set of matched elements. - * - * param content1 HTML string, DOM element, array of elements, or jQuery object to insert before each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements. - */ - before(content1: Element, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, before each element in the set of matched elements. - * - * param content1 HTML string, DOM element, array of elements, or jQuery object to insert before each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements. - */ - before(content1: Text, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, before each element in the set of matched elements. - * - * param content1 HTML string, DOM element, array of elements, or jQuery object to insert before each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements. - */ - before(content1: string, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, before each element in the set of matched elements. - * - * param func A function that returns an HTML string, DOM element(s), or jQuery object to insert before each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set. - */ - before(func: (index: number) => any): JQuery; - - /** - * Create a deep copy of the set of matched elements. - * - * param withDataAndEvents A Boolean indicating whether event handlers and data should be copied along with the elements. The default value is false. - * param deepWithDataAndEvents A Boolean indicating whether event handlers and data for all children of the cloned element should be copied. By default its value matches the first argument's value (which defaults to false). - */ - clone(withDataAndEvents?: boolean, deepWithDataAndEvents?: boolean): JQuery; - - /** - * Remove the set of matched elements from the DOM. - * - * param selector A selector expression that filters the set of matched elements to be removed. - */ - detach(selector?: string): JQuery; - - /** - * Remove all child nodes of the set of matched elements from the DOM. - */ - empty(): JQuery; - - /** - * Insert every element in the set of matched elements after the target. - * - * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter. - */ - insertAfter(target: JQuery): JQuery; - /** - * Insert every element in the set of matched elements after the target. - * - * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter. - */ - insertAfter(target: any[]): JQuery; - /** - * Insert every element in the set of matched elements after the target. - * - * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter. - */ - insertAfter(target: Element): JQuery; - /** - * Insert every element in the set of matched elements after the target. - * - * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter. - */ - insertAfter(target: Text): JQuery; - /** - * Insert every element in the set of matched elements after the target. - * - * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter. - */ - insertAfter(target: string): JQuery; - - /** - * Insert every element in the set of matched elements before the target. - * - * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted before the element(s) specified by this parameter. - */ - insertBefore(target: JQuery): JQuery; - /** - * Insert every element in the set of matched elements before the target. - * - * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted before the element(s) specified by this parameter. - */ - insertBefore(target: any[]): JQuery; - /** - * Insert every element in the set of matched elements before the target. - * - * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted before the element(s) specified by this parameter. - */ - insertBefore(target: Element): JQuery; - /** - * Insert every element in the set of matched elements before the target. - * - * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted before the element(s) specified by this parameter. - */ - insertBefore(target: Text): JQuery; - /** - * Insert every element in the set of matched elements before the target. - * - * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted before the element(s) specified by this parameter. - */ - insertBefore(target: string): JQuery; - - /** - * Insert content, specified by the parameter, to the beginning of each element in the set of matched elements. - * - * param content1 DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements. - */ - prepend(content1: JQuery, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, to the beginning of each element in the set of matched elements. - * - * param content1 DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements. - */ - prepend(content1: any[], ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, to the beginning of each element in the set of matched elements. - * - * param content1 DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements. - */ - prepend(content1: Element, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, to the beginning of each element in the set of matched elements. - * - * param content1 DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements. - */ - prepend(content1: Text, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, to the beginning of each element in the set of matched elements. - * - * param content1 DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements. - * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements. - */ - prepend(content1: string, ...content2: any[]): JQuery; - /** - * Insert content, specified by the parameter, to the beginning of each element in the set of matched elements. - * - * param func A function that returns an HTML string, DOM element(s), or jQuery object to insert at the beginning of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set. - */ - prepend(func: (index: number, html: string) => any): JQuery; - - /** - * Insert every element in the set of matched elements to the beginning of the target. - * - * @param target A selector, element, HTML string, array of elements, or jQuery object; the matched set of elements will be inserted at the beginning of the element(s) specified by this parameter. - */ - prependTo(target: JQuery): JQuery; - /** - * Insert every element in the set of matched elements to the beginning of the target. - * - * @param target A selector, element, HTML string, array of elements, or jQuery object; the matched set of elements will be inserted at the beginning of the element(s) specified by this parameter. - */ - prependTo(target: any[]): JQuery; - /** - * Insert every element in the set of matched elements to the beginning of the target. - * - * @param target A selector, element, HTML string, array of elements, or jQuery object; the matched set of elements will be inserted at the beginning of the element(s) specified by this parameter. - */ - prependTo(target: Element): JQuery; - /** - * Insert every element in the set of matched elements to the beginning of the target. - * - * @param target A selector, element, HTML string, array of elements, or jQuery object; the matched set of elements will be inserted at the beginning of the element(s) specified by this parameter. - */ - prependTo(target: string): JQuery; - - /** - * Remove the set of matched elements from the DOM. - * - * @param selector A selector expression that filters the set of matched elements to be removed. - */ - remove(selector?: string): JQuery; - - /** - * Replace each target element with the set of matched elements. - * - * @param target A selector string, jQuery object, DOM element, or array of elements indicating which element(s) to replace. - */ - replaceAll(target: JQuery): JQuery; - /** - * Replace each target element with the set of matched elements. - * - * @param target A selector string, jQuery object, DOM element, or array of elements indicating which element(s) to replace. - */ - replaceAll(target: any[]): JQuery; - /** - * Replace each target element with the set of matched elements. - * - * @param target A selector string, jQuery object, DOM element, or array of elements indicating which element(s) to replace. - */ - replaceAll(target: Element): JQuery; - /** - * Replace each target element with the set of matched elements. - * - * @param target A selector string, jQuery object, DOM element, or array of elements indicating which element(s) to replace. - */ - replaceAll(target: string): JQuery; - - /** - * Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed. - * - * param newContent The content to insert. May be an HTML string, DOM element, array of DOM elements, or jQuery object. - */ - replaceWith(newContent: JQuery): JQuery; - /** - * Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed. - * - * param newContent The content to insert. May be an HTML string, DOM element, array of DOM elements, or jQuery object. - */ - replaceWith(newContent: any[]): JQuery; - /** - * Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed. - * - * param newContent The content to insert. May be an HTML string, DOM element, array of DOM elements, or jQuery object. - */ - replaceWith(newContent: Element): JQuery; - /** - * Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed. - * - * param newContent The content to insert. May be an HTML string, DOM element, array of DOM elements, or jQuery object. - */ - replaceWith(newContent: Text): JQuery; - /** - * Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed. - * - * param newContent The content to insert. May be an HTML string, DOM element, array of DOM elements, or jQuery object. - */ - replaceWith(newContent: string): JQuery; - /** - * Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed. - * - * param func A function that returns content with which to replace the set of matched elements. - */ - replaceWith(func: () => any): JQuery; - - /** - * Get the combined text contents of each element in the set of matched elements, including their descendants. - */ - text(): string; - /** - * Set the content of each element in the set of matched elements to the specified text. - * - * @param text The text to set as the content of each matched element. - */ - text(text: string): JQuery; - /** - * Set the content of each element in the set of matched elements to the specified text. - * - * @param text The text to set as the content of each matched element. - */ - text(text: number): JQuery; - /** - * Set the content of each element in the set of matched elements to the specified text. - * - * @param text The text to set as the content of each matched element. - */ - text(text: boolean): JQuery; - /** - * Set the content of each element in the set of matched elements to the specified text. - * - * @param func A function returning the text content to set. Receives the index position of the element in the set and the old text value as arguments. - */ - text(func: (index: number, text: string) => string): JQuery; - - /** - * Retrieve all the elements contained in the jQuery set, as an array. - */ - toArray(): any[]; - - /** - * Remove the parents of the set of matched elements from the DOM, leaving the matched elements in their place. - */ - unwrap(): JQuery; - - /** - * Wrap an HTML structure around each element in the set of matched elements. - * - * @param wrappingElement A selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements. - */ - wrap(wrappingElement: JQuery): JQuery; - /** - * Wrap an HTML structure around each element in the set of matched elements. - * - * @param wrappingElement A selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements. - */ - wrap(wrappingElement: Element): JQuery; - /** - * Wrap an HTML structure around each element in the set of matched elements. - * - * @param wrappingElement A selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements. - */ - wrap(wrappingElement: string): JQuery; - /** - * Wrap an HTML structure around each element in the set of matched elements. - * - * @param func A callback function returning the HTML content or jQuery object to wrap around the matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set. - */ - wrap(func: (index: number) => any): JQuery; - - /** - * Wrap an HTML structure around all elements in the set of matched elements. - * - * @param wrappingElement A selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements. - */ - wrapAll(wrappingElement: JQuery): JQuery; - /** - * Wrap an HTML structure around all elements in the set of matched elements. - * - * @param wrappingElement A selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements. - */ - wrapAll(wrappingElement: Element): JQuery; - /** - * Wrap an HTML structure around all elements in the set of matched elements. - * - * @param wrappingElement A selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements. - */ - wrapAll(wrappingElement: string): JQuery; - - /** - * Wrap an HTML structure around the content of each element in the set of matched elements. - * - * @param wrappingElement An HTML snippet, selector expression, jQuery object, or DOM element specifying the structure to wrap around the content of the matched elements. - */ - wrapInner(wrappingElement: JQuery): JQuery; - /** - * Wrap an HTML structure around the content of each element in the set of matched elements. - * - * @param wrappingElement An HTML snippet, selector expression, jQuery object, or DOM element specifying the structure to wrap around the content of the matched elements. - */ - wrapInner(wrappingElement: Element): JQuery; - /** - * Wrap an HTML structure around the content of each element in the set of matched elements. - * - * @param wrappingElement An HTML snippet, selector expression, jQuery object, or DOM element specifying the structure to wrap around the content of the matched elements. - */ - wrapInner(wrappingElement: string): JQuery; - /** - * Wrap an HTML structure around the content of each element in the set of matched elements. - * - * @param func A callback function which generates a structure to wrap around the content of the matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set. - */ - wrapInner(func: (index: number) => any): JQuery; - - /** - * Iterate over a jQuery object, executing a function for each matched element. - * - * @param func A function to execute for each matched element. - */ - each(func: (index: number, elem: Element) => any): JQuery; - - /** - * Retrieve one of the elements matched by the jQuery object. - * - * @param index A zero-based integer indicating which element to retrieve. - */ - get(index: number): HTMLElement; - /** - * Retrieve the elements matched by the jQuery object. - */ - get(): any[]; - - /** - * Search for a given element from among the matched elements. - */ - index(): number; - /** - * Search for a given element from among the matched elements. - * - * @param selector A selector representing a jQuery collection in which to look for an element. - */ - index(selector: string): number; - /** - * Search for a given element from among the matched elements. - * - * @param element The DOM element or first element within the jQuery object to look for. - */ - index(element: JQuery): number; - /** - * Search for a given element from among the matched elements. - * - * @param element The DOM element or first element within the jQuery object to look for. - */ - index(element: Element): number; - - /** - * The number of elements in the jQuery object. - */ - length: number; - /** - * A selector representing selector passed to jQuery(), if any, when creating the original set. - * version deprecated: 1.7, removed: 1.9 - */ - selector: string; - [index: string]: any; - [index: number]: HTMLElement; - - /** - * Add elements to the set of matched elements. - * - * @param selector A string representing a selector expression to find additional elements to add to the set of matched elements. - * @param context The point in the document at which the selector should begin matching; similar to the context argument of the $(selector, context) method. - */ - add(selector: string, context?: Element): JQuery; - /** - * Add elements to the set of matched elements. - * - * @param elements One or more elements to add to the set of matched elements. - */ - add(...elements: Element[]): JQuery; - /** - * Add elements to the set of matched elements. - * - * @param html An HTML fragment to add to the set of matched elements. - */ - add(html: string): JQuery; - /** - * Add elements to the set of matched elements. - * - * @param obj An existing jQuery object to add to the set of matched elements. - */ - add(obj: JQuery): JQuery; - - /** - * Get the children of each element in the set of matched elements, optionally filtered by a selector. - * - * @param selector A string containing a selector expression to match elements against. - */ - children(selector?: string): JQuery; - - /** - * For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. - * - * @param selector A string containing a selector expression to match elements against. - */ - closest(selector: string): JQuery; - /** - * For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. - * - * @param selector A string containing a selector expression to match elements against. - * @param context A DOM element within which a matching element may be found. If no context is passed in then the context of the jQuery set will be used instead. - */ - closest(selector: string, context?: Element): JQuery; - /** - * For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. - * - * @param obj A jQuery object to match elements against. - */ - closest(obj: JQuery): JQuery; - /** - * For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. - * - * @param element An element to match elements against. - */ - closest(element: Element): JQuery; - - /** - * Get an array of all the elements and selectors matched against the current element up through the DOM tree. - * - * @param selectors An array or string containing a selector expression to match elements against (can also be a jQuery object). - * @param context A DOM element within which a matching element may be found. If no context is passed in then the context of the jQuery set will be used instead. - */ - closest(selectors: any, context?: Element): any[]; - - /** - * Get the children of each element in the set of matched elements, including text and comment nodes. - */ - contents(): JQuery; - - /** - * End the most recent filtering operation in the current chain and return the set of matched elements to its previous state. - */ - end(): JQuery; - - /** - * Reduce the set of matched elements to the one at the specified index. - * - * @param index An integer indicating the 0-based position of the element. OR An integer indicating the position of the element, counting backwards from the last element in the set. - * - */ - eq(index: number): JQuery; - - /** - * Reduce the set of matched elements to those that match the selector or pass the function's test. - * - * @param selector A string containing a selector expression to match the current set of elements against. - */ - filter(selector: string): JQuery; - /** - * Reduce the set of matched elements to those that match the selector or pass the function's test. - * - * @param func A function used as a test for each element in the set. this is the current DOM element. - */ - filter(func: (index: number, element: Element) => any): JQuery; - /** - * Reduce the set of matched elements to those that match the selector or pass the function's test. - * - * @param element An element to match the current set of elements against. - */ - filter(element: Element): JQuery; - /** - * Reduce the set of matched elements to those that match the selector or pass the function's test. - * - * @param obj An existing jQuery object to match the current set of elements against. - */ - filter(obj: JQuery): JQuery; - - /** - * Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element. - * - * @param selector A string containing a selector expression to match elements against. - */ - find(selector: string): JQuery; - /** - * Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element. - * - * @param element An element to match elements against. - */ - find(element: Element): JQuery; - /** - * Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element. - * - * @param obj A jQuery object to match elements against. - */ - find(obj: JQuery): JQuery; - - /** - * Reduce the set of matched elements to the first in the set. - */ - first(): JQuery; - - /** - * Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element. - * - * @param selector A string containing a selector expression to match elements against. - */ - has(selector: string): JQuery; - /** - * Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element. - * - * @param contained A DOM element to match elements against. - */ - has(contained: Element): JQuery; - - /** - * Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments. - * - * @param selector A string containing a selector expression to match elements against. - */ - is(selector: string): boolean; - /** - * Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments. - * - * @param func A function used as a test for the set of elements. It accepts one argument, index, which is the element's index in the jQuery collection.Within the function, this refers to the current DOM element. - */ - is(func: (index: number) => any): boolean; - /** - * Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments. - * - * @param obj An existing jQuery object to match the current set of elements against. - */ - is(obj: JQuery): boolean; - /** - * Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments. - * - * @param elements One or more elements to match the current set of elements against. - */ - is(elements: any): boolean; - - /** - * Reduce the set of matched elements to the final one in the set. - */ - last(): JQuery; - - /** - * Pass each element in the current matched set through a function, producing a new jQuery object containing the return values. - * - * @param callback A function object that will be invoked for each element in the current set. - */ - map(callback: (index: number, domElement: Element) => any): JQuery; - - /** - * Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling only if it matches that selector. - * - * @param selector A string containing a selector expression to match elements against. - */ - next(selector?: string): JQuery; - - /** - * Get all following siblings of each element in the set of matched elements, optionally filtered by a selector. - * - * @param selector A string containing a selector expression to match elements against. - */ - nextAll(selector?: string): JQuery; - - /** - * Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed. - * - * @param selector A string containing a selector expression to indicate where to stop matching following sibling elements. - * @param filter A string containing a selector expression to match elements against. - */ - nextUntil(selector?: string, filter?: string): JQuery; - /** - * Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed. - * - * @param element A DOM node or jQuery object indicating where to stop matching following sibling elements. - * @param filter A string containing a selector expression to match elements against. - */ - nextUntil(element?: Element, filter?: string): JQuery; - /** - * Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed. - * - * @param obj A DOM node or jQuery object indicating where to stop matching following sibling elements. - * @param filter A string containing a selector expression to match elements against. - */ - nextUntil(obj?: JQuery, filter?: string): JQuery; - - /** - * Remove elements from the set of matched elements. - * - * @param selector A string containing a selector expression to match elements against. - */ - not(selector: string): JQuery; - /** - * Remove elements from the set of matched elements. - * - * @param func A function used as a test for each element in the set. this is the current DOM element. - */ - not(func: (index: number) => any): JQuery; - /** - * Remove elements from the set of matched elements. - * - * @param elements One or more DOM elements to remove from the matched set. - */ - not(...elements: Element[]): JQuery; - /** - * Remove elements from the set of matched elements. - * - * @param obj An existing jQuery object to match the current set of elements against. - */ - not(obj: JQuery): JQuery; - - /** - * Get the closest ancestor element that is positioned. - */ - offsetParent(): JQuery; - - /** - * Get the parent of each element in the current set of matched elements, optionally filtered by a selector. - * - * @param selector A string containing a selector expression to match elements against. - */ - parent(selector?: string): JQuery; - - /** - * Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector. - * - * @param selector A string containing a selector expression to match elements against. - */ - parents(selector?: string): JQuery; - - /** - * Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object. - * - * @param selector A string containing a selector expression to indicate where to stop matching ancestor elements. - * @param filter A string containing a selector expression to match elements against. - */ - parentsUntil(selector?: string, filter?: string): JQuery; - /** - * Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object. - * - * @param element A DOM node or jQuery object indicating where to stop matching ancestor elements. - * @param filter A string containing a selector expression to match elements against. - */ - parentsUntil(element?: Element, filter?: string): JQuery; - /** - * Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object. - * - * @param obj A DOM node or jQuery object indicating where to stop matching ancestor elements. - * @param filter A string containing a selector expression to match elements against. - */ - parentsUntil(obj?: JQuery, filter?: string): JQuery; - - /** - * Get the immediately preceding sibling of each element in the set of matched elements, optionally filtered by a selector. - * - * @param selector A string containing a selector expression to match elements against. - */ - prev(selector?: string): JQuery; - - /** - * Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector. - * - * @param selector A string containing a selector expression to match elements against. - */ - prevAll(selector?: string): JQuery; - - /** - * Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object. - * - * @param selector A string containing a selector expression to indicate where to stop matching preceding sibling elements. - * @param filter A string containing a selector expression to match elements against. - */ - prevUntil(selector?: string, filter?: string): JQuery; - /** - * Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object. - * - * @param element A DOM node or jQuery object indicating where to stop matching preceding sibling elements. - * @param filter A string containing a selector expression to match elements against. - */ - prevUntil(element?: Element, filter?: string): JQuery; - /** - * Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object. - * - * @param obj A DOM node or jQuery object indicating where to stop matching preceding sibling elements. - * @param filter A string containing a selector expression to match elements against. - */ - prevUntil(obj?: JQuery, filter?: string): JQuery; - - /** - * Get the siblings of each element in the set of matched elements, optionally filtered by a selector. - * - * @param selector A string containing a selector expression to match elements against. - */ - siblings(selector?: string): JQuery; - - /** - * Reduce the set of matched elements to a subset specified by a range of indices. - * - * @param start An integer indicating the 0-based position at which the elements begin to be selected. If negative, it indicates an offset from the end of the set. - * @param end An integer indicating the 0-based position at which the elements stop being selected. If negative, it indicates an offset from the end of the set. If omitted, the range continues until the end of the set. - */ - slice(start: number, end?: number): JQuery; - - /** - * Show the queue of functions to be executed on the matched elements. - * - * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue. - */ - queue(queueName?: string): any[]; - /** - * Manipulate the queue of functions to be executed, once for each matched element. - * - * @param newQueue An array of functions to replace the current queue contents. - */ - queue(newQueue: Function[]): JQuery; - /** - * Manipulate the queue of functions to be executed, once for each matched element. - * - * @param callback The new function to add to the queue, with a function to call that will dequeue the next item. - */ - queue(callback: Function): JQuery; - /** - * Manipulate the queue of functions to be executed, once for each matched element. - * - * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue. - * @param newQueue An array of functions to replace the current queue contents. - */ - queue(queueName: string, newQueue: Function[]): JQuery; - /** - * Manipulate the queue of functions to be executed, once for each matched element. - * - * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue. - * @param callback The new function to add to the queue, with a function to call that will dequeue the next item. - */ - queue(queueName: string, callback: Function): JQuery; -} -declare module "jquery" { - export = $; -} -declare var jQuery: JQueryStatic; -declare var $: JQueryStatic; diff --git a/Resources/Stylesheets/SCSS/Base/Mixins/_border.scss b/Resources/Stylesheets/SCSS/Base/Mixins/_border.scss deleted file mode 100644 index edec35a..0000000 --- a/Resources/Stylesheets/SCSS/Base/Mixins/_border.scss +++ /dev/null @@ -1,38 +0,0 @@ -@mixin border($var-direction: "def", $var-width: var(--border-width), $var-color: var(--color-border)) { - @if $var-direction == 'def' { - border: $var-width solid $var-color; - } - - @if $var-direction == 'bottom' { - border-bottom: $var-width solid $var-color; - } - - @if $var-direction == 'top' { - border-top: $var-width solid $var-color; - } - - @if $var-direction == 'right' { - border-right: $var-width solid $var-color; - } - - @if $var-direction == 'left' { - border-left: $var-width solid $var-color; - } - - @if $var-direction == 'tb' { - border-bottom: $var-width solid $var-color; - border-top: $var-width solid $var-color; - } - - @if $var-direction == 'lr' { - border-left: $var-width solid $var-color; - border-right: $var-width solid $var-color; - } -} - - -@mixin box-shadow { - -moz-box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.1); - box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.1); - webkit-box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.1); -} diff --git a/Resources/Stylesheets/SCSS/Base/Mixins/_grid-flex.scss b/Resources/Stylesheets/SCSS/Base/Mixins/_grid-flex.scss deleted file mode 100644 index edd9f9b..0000000 --- a/Resources/Stylesheets/SCSS/Base/Mixins/_grid-flex.scss +++ /dev/null @@ -1,138 +0,0 @@ -@import "responsive"; - -@mixin flex-wrapper-row($items-grow: 0, $items-shrink: 0, $items-width: 30%, $items-align: flex-start, $justify-content: space-between) { - display: -webkit-box; - display: -webkit-flex; - display: -moz-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -moz-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -moz-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-align-items: $items-align; - -moz-align-items: $items-align; - align-items: $items-align; - -webkit-justify-content: $justify-content; - -moz-justify-content: $justify-content; - justify-content: $justify-content; - width: 100%; - -webkit-box-direction: normal; - -webkit-box-orient: horizontal; - - @if $justify-content == flex-start { - -webkit-box-pack: start; - -ms-flex-pack: start; - } - @else if $justify-content == flex-end { - -webkit-box-pack: end; - -ms-flex-pack: end; - } - @else if $justify-content == space-between { - -webkit-box-pack: justify; - -ms-flex-pack: justify; - } - @else if $justify-content == space-around { - -ms-flex-pack: distribute; - } - @else { - -webkit-box-pack: $justify-content; - -ms-flex-pack: $justify-content; - } - - @if $items-align == flex-start { - -webkit-box-align: start; - -ms-flex-align: start; - } - @else if $items-align == flex-end { - -webkit-box-align: end; - -ms-flex-align: end; - } - @else { - -webkit-box-align: $items-align; - -ms-flex-align: $items-align; - } - - & > * { - @if $items-grow == true { - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -moz-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; - } - @else if $items-grow == 1 { - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -moz-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; - } - @else { - -webkit-box-flex: 0; - -webkit-flex-grow: 0; - -moz-flex-grow: 0; - -ms-flex-positive: 0; - flex-grow: 0; - } - - @if $items-shrink == true { - -webkit-flex-shrink: 1; - -moz-flex-shrink: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - } - @else if $items-shrink == 1 { - -webkit-flex-shrink: 1; - -moz-flex-shrink: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - } - @else { - -webkit-flex-shrink: 0; - -moz-flex-shrink: 0; - -ms-flex-negative: 0; - flex-shrink: 0; - } - - -webkit-flex-basis: $items-width; - -moz-flex-basis: $items-width; - flex-basis: $items-width; - width: $items-width; - box-sizing: border-box; - -ms-flex-preferred-size: $items-width; - } - - @include res-max-mobile-l { - -webkit-flex-direction: column; - -moz-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-direction: normal; - -webkit-box-orient: vertical; - - & > * { - width: 100%; - - &:not(:last-child) { - margin-bottom: 1rem; - } - } - } -} - -// Flexbox Order -// The 'order' property controls the order in which flex items appear within -// their flex container, by assigning them to ordinal groups. - -@mixin flex-order-item($int) { - -webkit-order: $int; - -moz-order: $int; - order: $int; - -webkit-box-ordinal-group: $int + 1; - -ms-flex-order: $int; -} diff --git a/Resources/Stylesheets/SCSS/Base/_font-faces.scss b/Resources/Stylesheets/SCSS/Base/_font-faces.scss deleted file mode 100644 index 5032313..0000000 --- a/Resources/Stylesheets/SCSS/Base/_font-faces.scss +++ /dev/null @@ -1,23 +0,0 @@ -@font-face { - font-family: 'ramagothice-regular'; - font-weight: 400; - font-display: fallback; - font-style: normal; - src: url('./wwwroot/fonts/rama-gothic/ramagothice-regular.otf') format('opentype'), url('./wwwroot/fonts/rama-gothic/ramagothice-regular.ttf') format('truetype'), url('./wwwroot/fonts/rama-gothic/ramagothice-regular.woff') format('woff'), url('./wwwroot/fonts/rama-gothic/ramagothice-regular.woff2') format('woff2'); -} - -@font-face { - font-family: 'ramagothice-semibold'; - font-weight: 700; - font-display: fallback; - font-style: normal; - src: url('./wwwroot/fonts/rama-gothic/ramagothice-semibold.otf') format('opentype'), url('./wwwroot/fonts/rama-gothic/ramagothice-semibold.ttf') format('truetype'), url('./wwwroot/fonts/rama-gothic/ramagothice-semibold.woff') format('woff'), url('./wwwroot/fonts/rama-gothic/ramagothice-semibold.woff2') format('woff2'); -} - -@font-face { - font-family: 'ramagothice-light'; - font-weight: 300; - font-display: fallback; - font-style: normal; - src: url('./wwwroot/fonts/rama-gothic/ramagothice-light.otf') format('opentype'), url('./wwwroot/fonts/rama-gothic/ramagothice-light.ttf') format('truetype'), url('./wwwroot/fonts/rama-gothic/ramagothice-light.woff') format('woff'), url('./wwwroot/fonts/rama-gothic/ramagothice-light.woff2') format('woff2'); -} \ No newline at end of file diff --git a/Resources/Stylesheets/SCSS/Base/_mixins.scss b/Resources/Stylesheets/SCSS/Base/_mixins.scss deleted file mode 100644 index 309af5d..0000000 --- a/Resources/Stylesheets/SCSS/Base/_mixins.scss +++ /dev/null @@ -1,17 +0,0 @@ -@import "mixins/border"; -@import "Mixins/grid-flex"; -@import "Mixins/responsive"; - -@mixin center-item { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); -} - -@mixin gradient-text{ - display: inline-block; - background: linear-gradient(135deg, var(--color-secondary--darken) 15%, var(--color-secondary) 100%); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; -} \ No newline at end of file diff --git a/Resources/Stylesheets/SCSS/Base/_variables.scss b/Resources/Stylesheets/SCSS/Base/_variables.scss deleted file mode 100644 index d940c66..0000000 --- a/Resources/Stylesheets/SCSS/Base/_variables.scss +++ /dev/null @@ -1,32 +0,0 @@ -//colors -$color-black: hsla(0, 0%, 0%, 1); -$color-white: hsla(0, 0%, 100%, 1); -$color-trans: hsla(0, 0%, 0%, 0); -$color-primary: hsla(0, 0%, 87%,1); -$color-secondary: hsl(43, 63%, 65%); -$color-secondary--darken: hsl(43, 63%, 45%); -$color-shadow: hsla(0, 0%, 56%, 1); -$color-bg: hsla(0, 0%, 8%, 1); - -$trans-time: .25s; -$border-width: .1rem; -$gap-m: .8rem; -$gap-s: ($gap-m / 2); -$gap-l: ($gap-m * 2); -$gap-xl: ($gap-m * 3); -$gap-xxl: ($gap-m * 4); -$font-family--text: 'ramagothice-regular', sans-serif; -$font-family--title: 'ramagothice-semibold', sans-serif; -$font-family--link: 'ramagothice-light', sans-serif; -$letter-spacing: .05em; - -// All devices width for MediaQuery -$width-mobile-s: 320px; -$width-mobile-m: 375px; -$width-mobile-l: 425px; -$width-tablet: 768px; -$width-laptop-s: 1024px; -$width-laptop-m: 1360px; -$width-laptop-l: 1440px; -$width-laptop-xl: 1920px; -$width-4k: 2560px; \ No newline at end of file diff --git a/Resources/Stylesheets/SCSS/Base/default.scss b/Resources/Stylesheets/SCSS/Base/default.scss deleted file mode 100644 index 86095fa..0000000 --- a/Resources/Stylesheets/SCSS/Base/default.scss +++ /dev/null @@ -1,46 +0,0 @@ -@import "global"; - -html { - height: 100%; - padding: 0; - margin: 0; - font-size: 62.5%; - scroll-behavior: smooth; - - * { - box-sizing: border-box; - } -} - -body { - padding: 0; - margin: 0; - background-image: url("./wwwroot/images/backgrounds/background.webp"); - background-repeat: no-repeat; - background-position: center; - background-size: cover; - background-color: var(--color-bg); - font-family: var(--font-family--text); - - @include res-max-laptop-l { - background-image: url("./wwwroot/images/backgrounds/background_1920.webp"); - } - - @include res-max-laptop-m { - background-image: url("./wwwroot/images/backgrounds/background_1440.webp"); - } - - @include res-max-laptop-s { - background-image: url("./wwwroot/images/backgrounds/background_1366.webp"); - } - - @include res-max-tablet { - background-image: url("./wwwroot/images/backgrounds/background_1024.webp"); - } -} - -.no-mobile{ - @include res-max-mobile-l{ - display: none; - } -} \ No newline at end of file diff --git a/Resources/Stylesheets/SCSS/Base/layout.scss b/Resources/Stylesheets/SCSS/Base/layout.scss deleted file mode 100644 index 1380b9a..0000000 --- a/Resources/Stylesheets/SCSS/Base/layout.scss +++ /dev/null @@ -1,25 +0,0 @@ -@import "global"; - -body { - display: flex; - flex-flow: column wrap; - - nav { - flex: none; - } - - header { - flex: 0 0 auto; - width: 100%; - } - - main { - flex: 1 1 auto; - width: 100%; - } - - footer { - flex: 0 0 auto; - width: 100%; - } -} diff --git a/Resources/Stylesheets/SCSS/Base/root.scss b/Resources/Stylesheets/SCSS/Base/root.scss deleted file mode 100644 index c07d4a0..0000000 --- a/Resources/Stylesheets/SCSS/Base/root.scss +++ /dev/null @@ -1,24 +0,0 @@ -@import "variables"; - -:root { - --color-black: #{$color-black}; - --color-white: #{$color-white}; - --color-trans: #{$color-trans}; - --color-primary: #{$color-primary}; - --color-secondary: #{$color-secondary}; - --color-secondary--darken: #{$color-secondary--darken}; - --color-shadow: #{$color-shadow}; - --color-bg: #{$color-bg}; - --color-border: #{$color-black}; - --border-width: #{$border-width}; - --letter-spacing: #{$letter-spacing}; - --trans-time: #{$trans-time}; - --gap-xxl: #{$gap-xxl}; - --gap-xl: #{$gap-xl}; - --gap-l: #{$gap-l}; - --gap-m: #{$gap-m}; - --gap-s: #{$gap-s}; - --font-family--text: #{$font-family--text}; - --font-family--title: #{$font-family--title}; - --font-family--link: #{$font-family--link}; -} diff --git a/Resources/Stylesheets/SCSS/Base/typography.scss b/Resources/Stylesheets/SCSS/Base/typography.scss deleted file mode 100644 index f9eff40..0000000 --- a/Resources/Stylesheets/SCSS/Base/typography.scss +++ /dev/null @@ -1,64 +0,0 @@ -@import "../Base/global"; - -h1, -h2, -h3, -p { - margin: 0; -} - -h1 { - font-family: var(--font-family--title); - font-size: 12vh; - line-height: 12vh; - color: var(--color-primary); -} - -h3 { - @include gradient-text; - font-size: 5.6vh; - letter-spacing: var(--letter-spacing); - text-transform: uppercase; - a{ - text-decoration: underline; - text-decoration-color: var(--color-secondary--darken); - } - &.subtitle{ - margin-top: .16em; - font-size: 4vh; - } -} - -h2, -strong { - @include gradient-text; - font-size: 7.2vh; - line-height: 7.2vh; - letter-spacing: var(--letter-spacing); - color: var(--color-secondary); - text-transform: uppercase; -} - -p { - margin-top: 5.6vh; - font-size: 5.6vh; - color: var(--color-primary); -} - - - -.references { - margin: 2.4vh 0 4vh; - font-size: 4vh; - line-height: 1.5; - color: var(--color-primary); - word-spacing: var(--gap-l); -} - -.preferences { - margin-top: 1.6vh; - font-size: 4vh; - line-height: 1.5; - color: var(--color-primary); - word-spacing: var(--gap-s); -} \ No newline at end of file diff --git a/Resources/Stylesheets/SCSS/Components/container.scss b/Resources/Stylesheets/SCSS/Components/container.scss deleted file mode 100644 index f0682b3..0000000 --- a/Resources/Stylesheets/SCSS/Components/container.scss +++ /dev/null @@ -1,21 +0,0 @@ -@import "../base/global"; - -.container { - width: 80%; - min-width: $width-laptop-l; - margin: 0 auto; - - @include res-max-laptop-l { - min-width: $width-laptop-s; - } - - @include res-max-laptop-m { - width: 100%; - min-width: 0; - padding: 0 var(--gap-xxl); - } - - @include res-max-mobile-l{ - padding: 0 var(--gap-l); - } -} \ No newline at end of file diff --git a/Resources/Stylesheets/SCSS/Components/link.scss b/Resources/Stylesheets/SCSS/Components/link.scss deleted file mode 100644 index 4af1ee5..0000000 --- a/Resources/Stylesheets/SCSS/Components/link.scss +++ /dev/null @@ -1,46 +0,0 @@ -@import "../Base/global"; - -.link { - backface-visibility: hidden; - font-family: var(--font-family--link); - font-size: 5.6vh; - color: var(--color-primary); - transform: rotate(0deg) translateZ(0); - transition: transform var(--trans-time) ease-in-out; - -webkit-font-smoothing: antialiased; - text-decoration-color: var(--color-primary); - - &:hover { - transform: rotate(-5deg) translateZ(0); - transition: text-decoration-color var(--trans-time) ease-in-out, transform var(--trans-time) ease-in-out; - text-decoration-color: var(--color-secondary); - - @include res-max-tablet { - transform: rotate(0); - } - } - - &--secondary { - @include gradient-text; - position: relative; - font-family: var(--font-family--text); - text-decoration: none; - - &:after { - position: absolute; - top: 85%; - left: 50%; - display: block; - content: ""; - width: 100%; - height: .09em; - background: linear-gradient(135deg, var(--color-secondary--darken) 15%, var(--color-secondary) 100%); - backface-visibility: hidden; - transform: translateX(-50%); - } - } -} - -p .link { - font-size: 1em; -} \ No newline at end of file diff --git a/Resources/Stylesheets/SCSS/Components/section.scss b/Resources/Stylesheets/SCSS/Components/section.scss deleted file mode 100644 index f68a58f..0000000 --- a/Resources/Stylesheets/SCSS/Components/section.scss +++ /dev/null @@ -1,9 +0,0 @@ -@import "../base/global"; -section{ - display: grid; - align-items: center; - min-height: 100vh; - @include res-max-tablet{ - padding: 3rem 0; - } -} \ No newline at end of file diff --git a/Resources/Stylesheets/SCSS/Views/contact.scss b/Resources/Stylesheets/SCSS/Views/contact.scss deleted file mode 100644 index 0503156..0000000 --- a/Resources/Stylesheets/SCSS/Views/contact.scss +++ /dev/null @@ -1,82 +0,0 @@ -@import "../base/global"; - -.contact { - display: grid; - grid-template-columns: 8fr 5fr; - align-items: stretch; - justify-content: space-between; - grid-gap: 4vw; - - @include res-max-laptop-l { - grid-template-columns: 1fr; - grid-gap: 8rem; - } - - >div:first-of-type { - display: flex; - flex-direction: column; - align-items: flex-start; - justify-content: center; - } - - &__social { - display: grid; - grid-template-columns: repeat(5, minmax(3.2rem, 4vh)); - margin: 3.2vh 0 7.2vh 0; - grid-gap: var(--gap-l); - - >a { - position: relative; - display: block; - width: 4vh; - min-width: 3.2rem; - height: 4vh; - min-height: 3.2rem; - text-decoration: none; - - &:before { - position: absolute; - bottom: 0; - left: 50%; - display: block; - content: ""; - width: 100%; - height: 100%; - background-color: var(--color-shadow); - border-radius: 50%; - transform: translate(-50%, 50%) rotateX(75deg) scale(0, 0); - transition: transform var(--trans-time) ease-in-out; - z-index: 5; - } - - &:hover { - &:before { - transform: translate(-50%, 50%) rotateX(75deg) scale(1, 1); - - @include res-max-tablet { - transform: translate(-50%, 50%) rotateX(75deg) scale(0, 0); - } - } - - >svg { - transform: translateY(-20%); - fill: var(--color-secondary--darken); - - @include res-max-tablet { - transform: translateY(0); - } - } - } - - } - - svg { - width: 100%; - height: 100%; - transform: translateY(0); - transition: transform var(--trans-time) ease-in-out, fill var(--trans-time) ease-in-out; - z-index: 10; - fill: var(--color-primary); - } - } -} \ No newline at end of file diff --git a/Resources/Stylesheets/SCSS/style.scss b/Resources/Stylesheets/SCSS/style.scss deleted file mode 100644 index d7c76b8..0000000 --- a/Resources/Stylesheets/SCSS/style.scss +++ /dev/null @@ -1,15 +0,0 @@ - -// Base -@import "Base/root"; -@import "Base/font-faces"; -@import "Base/default"; -@import "Base/layout"; -@import "Base/typography"; - -// Components -@import "Components/container"; -@import "Components/link"; -@import "Components/section"; - -// Views -@import "Views/contact"; \ No newline at end of file diff --git a/anewstyle.code-workspace b/anewstyle.code-workspace new file mode 100644 index 0000000..876a149 --- /dev/null +++ b/anewstyle.code-workspace @@ -0,0 +1,8 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": {} +} \ No newline at end of file diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 0000000..34962eb --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,8 @@ +import { defineConfig } from 'astro/config'; + +// https://astro.build/config +export default defineConfig({ + root: "./", + publicDir: './public', + publicPath: './', +}); \ No newline at end of file diff --git a/index.html b/index.html deleted file mode 100644 index 95e53bd..0000000 --- a/index.html +++ /dev/null @@ -1,764 +0,0 @@ - - - - - - Lukáš Chylík | CREATIVE FRONTEND DEVELOPER - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-

Lukáš Chylík

- Creative frontend developer - -

Focus on web

-
- development, performance, accessibility,
UI-UX design, SEO and analytics
-
-

Contact me by email or - phone -

-
- -
-
-
- -
- - - \ No newline at end of file diff --git a/manifest.json b/manifest.json deleted file mode 100644 index 8dec964..0000000 --- a/manifest.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": "Lukáš Chylík | CREATIVE FRONTEND DEVELOPER", - "short_name": "Lukáš Chylík", - "icons": [ - { - "src": "./wwwroot/images/favicons/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - } - ], - "theme_color": "#000000", - "background_color": "#000000", - "display": "standalone" -} diff --git a/package.json b/package.json index 76333d0..f9ac0ce 100644 --- a/package.json +++ b/package.json @@ -1,54 +1,36 @@ { + "name": "anew-style-npm-config", "version": "2.0.0", - "name": "lukas_chylik_portfolio", - "description": "NPM confiwg with stylelint. Updated on 7.2.2023", + "description": "Updated on 13.1.2024", "private": true, - "main": "./postcss.config.js", - "author": "Lukáš Chylík", "license": "ISC", - "devDependencies": { - "autoprefixer": "^10.4.13", - "browser-sync": "^2.27.11", - "clean-css-cli": "^5.6.2", - "node-sass": "^8.0.0", - "nunjucks": "^3.2.3", - "postcss": "^8.4.21", - "postcss-cli": "^10.1.0", - "postcss-loader": "^7.0.2", - "postcss-scss": "^4.0.6", - "postcss-value-parser": "^4.2.0", - "stylelint": "^14.16.1", - "stylelint-order": "^6.0.1", - "ts-loader": "^9.4.2", - "typescript": "^4.9.5", - "uglify-js": "^3.17.4", - "watch": "^1.0.2" - }, - "browserslist": { - "production": [ - "defaults", - "IE 11", - "not IE_Mob 11" - ], - "development": [ - "defaults" - ] + "author": "Lukáš Chylík", + "type": "module", + "scripts": { + "dev": "astro dev", + "start": "pnpm run dev", + "build": "npm run scss && astro check && astro build", + "preview": "astro preview", + "astro": "astro", + "scss": "sass src/styles/style.scss public/css/style.css", + "scss:watch": "sass --watch src/styles/style.scss public/css/style.css" }, - "stylelint": { - "enabled": true, - "rules": "Resources/.stylelintrc.json", - "fileExtensions": "scss" + "dependencies": { + "@astrojs/check": "^0.3.4", + "@fancyapps/ui": "^5.0.33", + "@google/model-viewer": "^3.3.0", + "astro": "^4.1.1", + "pnpm": "^8.14.2", + "typescript": "^5.3.3" }, - "scripts": { - "bundle": "npm run bundle:css && npm run bundle:js", - "postcss": "npm run compile:scss && postcss wwwroot/CSS/style.css --config ./postcss.config.js -o wwwroot/CSS/style.css", - "bundle:css": "npm run stylelint && npm run compile:scss && postcss wwwroot/CSS/style.css --config ./postcss.config.js | cleancss -o wwwroot/CSS/style.min.css", - "bundle:js": "npm run compile:ts && uglifyjs -o wwwroot/JS/app.min.js -c -m -- wwwroot/JS/app.js", - "compile:scss": "node-sass --source-map=true Resources/Stylesheets/SCSS/style.scss wwwroot/CSS/style.css", - "compile:ts": "tsc -p Resources", - "stylelint": "stylelint --fix Resources/Stylesheets/SCSS/**/*.scss --custom-syntax postcss-scss", - "watch": "npm run watch:scss", - "watch:scss": "npm run bundle:css & watch \"npm run bundle:css\" Resources/Stylesheets/SCSS", - "watch:ts": "npm run compile:ts -- -w && npm run bundle:js" + "devDependencies": { + "autoprefixer": "^10.4.16", + "cssnano": "^6.0.3", + "npm-run-all": "^4.1.5", + "postcss": "^8.4.33", + "postcss-preset-env": "^9.3.0", + "postcss-scss": "^4.0.2", + "sass": "^1.69.7", + "stylelint": "^14.2.0" } } \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..098d723 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,6438 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +dependencies: + '@astrojs/check': + specifier: ^0.3.4 + version: 0.3.4(typescript@5.3.3) + '@fancyapps/ui': + specifier: ^5.0.33 + version: 5.0.33 + '@google/model-viewer': + specifier: ^3.3.0 + version: 3.4.0(three@0.160.1) + astro: + specifier: ^4.1.1 + version: 4.3.6(sass@1.70.0)(typescript@5.3.3) + pnpm: + specifier: ^8.14.2 + version: 8.15.1 + typescript: + specifier: ^5.3.3 + version: 5.3.3 + +devDependencies: + autoprefixer: + specifier: ^10.4.16 + version: 10.4.17(postcss@8.4.35) + cssnano: + specifier: ^6.0.3 + version: 6.0.3(postcss@8.4.35) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + postcss: + specifier: ^8.4.33 + version: 8.4.35 + postcss-preset-env: + specifier: ^9.3.0 + version: 9.3.0(postcss@8.4.35) + postcss-scss: + specifier: ^4.0.2 + version: 4.0.9(postcss@8.4.35) + sass: + specifier: ^1.69.7 + version: 1.70.0 + stylelint: + specifier: ^14.2.0 + version: 14.16.1 + +packages: + + /@ampproject/remapping@2.2.1: + resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.22 + dev: false + + /@astrojs/check@0.3.4(typescript@5.3.3): + resolution: {integrity: sha512-Wi4KwW38J3GCd/U6LH2UuU4uc4P/K1WYaqhoKm2o7rVoGhQfO+RWrSO26rUPRXYbmae8JugAgpCmsHC8bt5RlA==} + hasBin: true + peerDependencies: + typescript: ^5.0.0 + dependencies: + '@astrojs/language-server': 2.7.3(typescript@5.3.3) + chokidar: 3.6.0 + fast-glob: 3.3.2 + kleur: 4.1.5 + typescript: 5.3.3 + yargs: 17.7.2 + transitivePeerDependencies: + - prettier + - prettier-plugin-astro + dev: false + + /@astrojs/compiler@2.5.3: + resolution: {integrity: sha512-jzj01BRv/fmo+9Mr2FhocywGzEYiyiP2GVHje1ziGNU6c97kwhYGsnvwMkHrncAy9T9Vi54cjaMK7UE4ClX4vA==} + dev: false + + /@astrojs/internal-helpers@0.2.1: + resolution: {integrity: sha512-06DD2ZnItMwUnH81LBLco3tWjcZ1lGU9rLCCBaeUCGYe9cI0wKyY2W3kDyoW1I6GmcWgt1fu+D1CTvz+FIKf8A==} + dev: false + + /@astrojs/language-server@2.7.3(typescript@5.3.3): + resolution: {integrity: sha512-1atGw+HjWl7KIE85vwpFuxb9wu6phmrRjCzgkVuyLb6JPWg0A002wlbrLzkGyIV4OmwzSpPPT/esSO9cUs6BGA==} + hasBin: true + peerDependencies: + prettier: ^3.0.0 + prettier-plugin-astro: '>=0.11.0' + peerDependenciesMeta: + prettier: + optional: true + prettier-plugin-astro: + optional: true + dependencies: + '@astrojs/compiler': 2.5.3 + '@jridgewell/sourcemap-codec': 1.4.15 + '@volar/kit': 2.0.3(typescript@5.3.3) + '@volar/language-core': 2.0.3 + '@volar/language-server': 2.0.3 + '@volar/language-service': 2.0.3 + '@volar/typescript': 2.0.3 + fast-glob: 3.3.2 + volar-service-css: 0.0.29(@volar/language-service@2.0.3) + volar-service-emmet: 0.0.29(@volar/language-service@2.0.3) + volar-service-html: 0.0.29(@volar/language-service@2.0.3) + volar-service-prettier: 0.0.29(@volar/language-service@2.0.3) + volar-service-typescript: 0.0.29(@volar/language-service@2.0.3)(@volar/typescript@2.0.3) + volar-service-typescript-twoslash-queries: 0.0.29(@volar/language-service@2.0.3) + vscode-html-languageservice: 5.1.2 + vscode-uri: 3.0.8 + transitivePeerDependencies: + - typescript + dev: false + + /@astrojs/markdown-remark@4.2.1: + resolution: {integrity: sha512-2RQBIwrq+2qPYtp99bH+eL5hfbK0BoxXla85lHsRpIX/IsGqFrPX6pXI2cbWPihBwGbKCdxS6uZNX2QerZWwpQ==} + dependencies: + '@astrojs/prism': 3.0.0 + github-slugger: 2.0.0 + import-meta-resolve: 4.0.0 + mdast-util-definitions: 6.0.0 + rehype-raw: 7.0.0 + rehype-stringify: 10.0.0 + remark-gfm: 4.0.0 + remark-parse: 11.0.0 + remark-rehype: 11.1.0 + remark-smartypants: 2.1.0 + shikiji: 0.9.19 + unified: 11.0.4 + unist-util-visit: 5.0.0 + vfile: 6.0.1 + transitivePeerDependencies: + - supports-color + dev: false + + /@astrojs/prism@3.0.0: + resolution: {integrity: sha512-g61lZupWq1bYbcBnYZqdjndShr/J3l/oFobBKPA3+qMat146zce3nz2kdO4giGbhYDt4gYdhmoBz0vZJ4sIurQ==} + engines: {node: '>=18.14.1'} + dependencies: + prismjs: 1.29.0 + dev: false + + /@astrojs/telemetry@3.0.4: + resolution: {integrity: sha512-A+0c7k/Xy293xx6odsYZuXiaHO0PL+bnDoXOc47sGDF5ffIKdKQGRPFl2NMlCF4L0NqN4Ynbgnaip+pPF0s7pQ==} + engines: {node: '>=18.14.1'} + dependencies: + ci-info: 3.9.0 + debug: 4.3.4 + dlv: 1.1.3 + dset: 3.1.3 + is-docker: 3.0.0 + is-wsl: 3.1.0 + which-pm-runs: 1.1.0 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/code-frame@7.23.5: + resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.23.4 + chalk: 2.4.2 + + /@babel/compat-data@7.23.5: + resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/core@7.23.9: + resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9) + '@babel/helpers': 7.23.9 + '@babel/parser': 7.23.9 + '@babel/template': 7.23.9 + '@babel/traverse': 7.23.9 + '@babel/types': 7.23.9 + convert-source-map: 2.0.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/generator@7.23.6: + resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.9 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.22 + jsesc: 2.5.2 + dev: false + + /@babel/helper-annotate-as-pure@7.22.5: + resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.9 + dev: false + + /@babel/helper-compilation-targets@7.23.6: + resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/helper-validator-option': 7.23.5 + browserslist: 4.22.3 + lru-cache: 5.1.1 + semver: 6.3.1 + dev: false + + /@babel/helper-environment-visitor@7.22.20: + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/helper-function-name@7.23.0: + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.23.9 + '@babel/types': 7.23.9 + dev: false + + /@babel/helper-hoist-variables@7.22.5: + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.9 + dev: false + + /@babel/helper-module-imports@7.22.15: + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.9 + dev: false + + /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.9): + resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 + dev: false + + /@babel/helper-plugin-utils@7.22.5: + resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/helper-simple-access@7.22.5: + resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.9 + dev: false + + /@babel/helper-split-export-declaration@7.22.6: + resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.9 + dev: false + + /@babel/helper-string-parser@7.23.4: + resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + engines: {node: '>=6.9.0'} + + /@babel/helper-validator-option@7.23.5: + resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/helpers@7.23.9: + resolution: {integrity: sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.23.9 + '@babel/traverse': 7.23.9 + '@babel/types': 7.23.9 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/highlight@7.23.4: + resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.22.20 + chalk: 2.4.2 + js-tokens: 4.0.0 + + /@babel/parser@7.23.9: + resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.23.9 + dev: false + + /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.9): + resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.9): + resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9) + '@babel/types': 7.23.9 + dev: false + + /@babel/template@7.23.9: + resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.23.5 + '@babel/parser': 7.23.9 + '@babel/types': 7.23.9 + dev: false + + /@babel/traverse@7.23.9: + resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.9 + '@babel/types': 7.23.9 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/types@7.23.9: + resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.23.4 + '@babel/helper-validator-identifier': 7.22.20 + to-fast-properties: 2.0.0 + dev: false + + /@csstools/cascade-layer-name-parser@1.0.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3): + resolution: {integrity: sha512-9J4aMRJ7A2WRjaRLvsMeWrL69FmEuijtiW1XlK/sG+V0UJiHVYUyvj9mY4WAXfU/hGIiGOgL8e0jJcRyaZTjDQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + '@csstools/css-parser-algorithms': ^2.5.0 + '@csstools/css-tokenizer': ^2.2.3 + dependencies: + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + dev: true + + /@csstools/color-helpers@4.0.0: + resolution: {integrity: sha512-wjyXB22/h2OvxAr3jldPB7R7kjTUEzopvjitS8jWtyd8fN6xJ8vy1HnHu0ZNfEkqpBJgQ76Q+sBDshWcMvTa/w==} + engines: {node: ^14 || ^16 || >=18} + dev: true + + /@csstools/css-calc@1.1.6(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3): + resolution: {integrity: sha512-YHPAuFg5iA4qZGzMzvrQwzkvJpesXXyIUyaONflQrjtHB+BcFFbgltJkIkb31dMGO4SE9iZFA4HYpdk7+hnYew==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + '@csstools/css-parser-algorithms': ^2.5.0 + '@csstools/css-tokenizer': ^2.2.3 + dependencies: + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + dev: true + + /@csstools/css-color-parser@1.5.1(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3): + resolution: {integrity: sha512-x+SajGB2paGrTjPOUorGi8iCztF008YMKXTn+XzGVDBEIVJ/W1121pPerpneJYGOe1m6zWLPLnzOPaznmQxKFw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + '@csstools/css-parser-algorithms': ^2.5.0 + '@csstools/css-tokenizer': ^2.2.3 + dependencies: + '@csstools/color-helpers': 4.0.0 + '@csstools/css-calc': 1.1.6(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + dev: true + + /@csstools/css-parser-algorithms@2.5.0(@csstools/css-tokenizer@2.2.3): + resolution: {integrity: sha512-abypo6m9re3clXA00eu5syw+oaPHbJTPapu9C4pzNsJ4hdZDzushT50Zhu+iIYXgEe1CxnRMn7ngsbV+MLrlpQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + '@csstools/css-tokenizer': ^2.2.3 + dependencies: + '@csstools/css-tokenizer': 2.2.3 + dev: true + + /@csstools/css-tokenizer@2.2.3: + resolution: {integrity: sha512-pp//EvZ9dUmGuGtG1p+n17gTHEOqu9jO+FiCUjNN3BDmyhdA2Jq9QsVeR7K8/2QCK17HSsioPlTW9ZkzoWb3Lg==} + engines: {node: ^14 || ^16 || >=18} + dev: true + + /@csstools/media-query-list-parser@2.1.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3): + resolution: {integrity: sha512-lHPKJDkPUECsyAvD60joYfDmp8UERYxHGkFfyLJFTVK/ERJe0sVlIFLXU5XFxdjNDTerp5L4KeaKG+Z5S94qxQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + '@csstools/css-parser-algorithms': ^2.5.0 + '@csstools/css-tokenizer': ^2.2.3 + dependencies: + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + dev: true + + /@csstools/postcss-cascade-layers@4.0.2(postcss@8.4.35): + resolution: {integrity: sha512-PqM+jvg5T2tB4FHX+akrMGNWAygLupD4FNUjcv4PSvtVuWZ6ISxuo37m4jFGU7Jg3rCfloGzKd0+xfr5Ec3vZQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/selector-specificity': 3.0.1(postcss-selector-parser@6.0.15) + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /@csstools/postcss-color-function@3.0.9(postcss@8.4.35): + resolution: {integrity: sha512-6Hbkw/4k73UH121l4LG+LNLKSvrfHqk3GHHH0A6/iFlD0xGmsWAr80Jd0VqXjfYbUTOGmJTOMMoxv3jvNxt1uw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-color-parser': 1.5.1(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/postcss-progressive-custom-properties': 3.0.3(postcss@8.4.35) + postcss: 8.4.35 + dev: true + + /@csstools/postcss-color-mix-function@2.0.9(postcss@8.4.35): + resolution: {integrity: sha512-fs1SOWJ/44DQSsDeJP+rxAkP2MYkCg6K4ZB8qJwFku2EjurgCAPiPZJvC6w94T1hBBinJwuMfT9qvvvniXyVgw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-color-parser': 1.5.1(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/postcss-progressive-custom-properties': 3.0.3(postcss@8.4.35) + postcss: 8.4.35 + dev: true + + /@csstools/postcss-exponential-functions@1.0.3(postcss@8.4.35): + resolution: {integrity: sha512-IfGtEg3eC4b8Nd/kPgO3SxgKb33YwhHVsL0eJ3UYihx6fzzAiZwNbWmVW9MZTQjZ5GacgKxa4iAHikGvpwuIjw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-calc': 1.1.6(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + postcss: 8.4.35 + dev: true + + /@csstools/postcss-font-format-keywords@3.0.1(postcss@8.4.35): + resolution: {integrity: sha512-D1lcG2sfotTq6yBEOMV3myFxJLT10F3DLYZJMbiny5YToqzHWodZen8WId3UTimm0mEHitXqAUNL5jdd6RzVdA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-gamut-mapping@1.0.2(postcss@8.4.35): + resolution: {integrity: sha512-zf9KHGM2PTuJEm4ZYg4DTmzCir38EbZBzlMPMbA4jbhLDqXHkqwnQ+Z5+UNrU8y6seVu5B4vzZmZarTFQwe+Ig==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-color-parser': 1.5.1(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + postcss: 8.4.35 + dev: true + + /@csstools/postcss-gradients-interpolation-method@4.0.9(postcss@8.4.35): + resolution: {integrity: sha512-PSqR6QH7h3ggOl8TsoH73kbwYTKVQjAJauGg6nDKwaGfi5IL5StV//ehrv1C7HuPsHixMTc9YoAuuv1ocT20EQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-color-parser': 1.5.1(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/postcss-progressive-custom-properties': 3.0.3(postcss@8.4.35) + postcss: 8.4.35 + dev: true + + /@csstools/postcss-hwb-function@3.0.8(postcss@8.4.35): + resolution: {integrity: sha512-CRQEG372Hivmt17rm/Ho22hBQI9K/a6grzGQ21Zwc7dyspmyG0ibmPIW8hn15vJmXqWGeNq7S+L2b8/OrU7O5A==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-color-parser': 1.5.1(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + postcss: 8.4.35 + dev: true + + /@csstools/postcss-ic-unit@3.0.3(postcss@8.4.35): + resolution: {integrity: sha512-MpcmIL0/uMm/cFWh5V/9nbKKJ7jRr2qTYW5Q6zoE6HZ6uzOBJr2KRERv5/x8xzEBQ1MthDT7iP1EBp9luSQy7g==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/postcss-progressive-custom-properties': 3.0.3(postcss@8.4.35) + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-initial@1.0.1(postcss@8.4.35): + resolution: {integrity: sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + dev: true + + /@csstools/postcss-is-pseudo-class@4.0.4(postcss@8.4.35): + resolution: {integrity: sha512-vTVO/uZixpTVAOQt3qZRUFJ/K1L03OfNkeJ8sFNDVNdVy/zW0h1L5WT7HIPMDUkvSrxQkFaCCybTZkUP7UESlQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/selector-specificity': 3.0.1(postcss-selector-parser@6.0.15) + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /@csstools/postcss-logical-float-and-clear@2.0.1(postcss@8.4.35): + resolution: {integrity: sha512-SsrWUNaXKr+e/Uo4R/uIsqJYt3DaggIh/jyZdhy/q8fECoJSKsSMr7nObSLdvoULB69Zb6Bs+sefEIoMG/YfOA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + dev: true + + /@csstools/postcss-logical-overflow@1.0.1(postcss@8.4.35): + resolution: {integrity: sha512-Kl4lAbMg0iyztEzDhZuQw8Sj9r2uqFDcU1IPl+AAt2nue8K/f1i7ElvKtXkjhIAmKiy5h2EY8Gt/Cqg0pYFDCw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + dev: true + + /@csstools/postcss-logical-overscroll-behavior@1.0.1(postcss@8.4.35): + resolution: {integrity: sha512-+kHamNxAnX8ojPCtV8WPcUP3XcqMFBSDuBuvT6MHgq7oX4IQxLIXKx64t7g9LiuJzE7vd06Q9qUYR6bh4YnGpQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + dev: true + + /@csstools/postcss-logical-resize@2.0.1(postcss@8.4.35): + resolution: {integrity: sha512-W5Gtwz7oIuFcKa5SmBjQ2uxr8ZoL7M2bkoIf0T1WeNqljMkBrfw1DDA8/J83k57NQ1kcweJEjkJ04pUkmyee3A==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-logical-viewport-units@2.0.5(postcss@8.4.35): + resolution: {integrity: sha512-2fjSamKN635DSW6fEoyNd2Bkpv3FVblUpgk5cpghIgPW1aDHZE2SYfZK5xQALvjMYZVjfqsD5EbXA7uDVBQVQA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-tokenizer': 2.2.3 + postcss: 8.4.35 + dev: true + + /@csstools/postcss-media-minmax@1.1.2(postcss@8.4.35): + resolution: {integrity: sha512-7qTRTJxW96u2yiEaTep1+8nto1O/rEDacewKqH+Riq5E6EsHTOmGHxkB4Se5Ic5xgDC4I05lLZxzzxnlnSypxA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-calc': 1.1.6(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/media-query-list-parser': 2.1.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + postcss: 8.4.35 + dev: true + + /@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.5(postcss@8.4.35): + resolution: {integrity: sha512-XHMPasWYPWa9XaUHXU6Iq0RLfoAI+nvGTPj51hOizNsHaAyFiq2SL4JvF1DU8lM6B70+HVzKM09Isbyrr755Bw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/media-query-list-parser': 2.1.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + postcss: 8.4.35 + dev: true + + /@csstools/postcss-nested-calc@3.0.1(postcss@8.4.35): + resolution: {integrity: sha512-bwwababZpWRm0ByHaWBxTsDGTMhZKmtUNl3Wt0Eom8AY7ORgXx5qF9SSk1vEFrCi+HOfJT6M6W5KPgzXuQNRwQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-normalize-display-values@3.0.2(postcss@8.4.35): + resolution: {integrity: sha512-fCapyyT/dUdyPtrelQSIV+d5HqtTgnNP/BEG9IuhgXHt93Wc4CfC1bQ55GzKAjWrZbgakMQ7MLfCXEf3rlZJOw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-oklab-function@3.0.9(postcss@8.4.35): + resolution: {integrity: sha512-l639gpcBfL3ogJe+og1M5FixQn8iGX8+29V7VtTSCUB37VzpzOC05URfde7INIdiJT65DkHzgdJ64/QeYggU8A==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-color-parser': 1.5.1(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/postcss-progressive-custom-properties': 3.0.3(postcss@8.4.35) + postcss: 8.4.35 + dev: true + + /@csstools/postcss-progressive-custom-properties@3.0.3(postcss@8.4.35): + resolution: {integrity: sha512-WipTVh6JTMQfeIrzDV4wEPsV9NTzMK2jwXxyH6CGBktuWdivHnkioP/smp1x/0QDPQyx7NTS14RB+GV3zZZYEw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-relative-color-syntax@2.0.9(postcss@8.4.35): + resolution: {integrity: sha512-2UoaRd2iIuzUGtYgteN5fJ0s+OfCiV7PvCnw8MCh3om8+SeVinfG8D5sqBOvImxFVfrp6k60XF5RFlH6oc//fg==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-color-parser': 1.5.1(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/postcss-progressive-custom-properties': 3.0.3(postcss@8.4.35) + postcss: 8.4.35 + dev: true + + /@csstools/postcss-scope-pseudo-class@3.0.1(postcss@8.4.35): + resolution: {integrity: sha512-3ZFonK2gfgqg29gUJ2w7xVw2wFJ1eNWVDONjbzGkm73gJHVCYK5fnCqlLr+N+KbEfv2XbWAO0AaOJCFB6Fer6A==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /@csstools/postcss-stepped-value-functions@3.0.4(postcss@8.4.35): + resolution: {integrity: sha512-gyNQ2YaOVXPqLR737XtReRPVu7DGKBr9JBDLoiH1T+N1ggV3r4HotRCOC1l6rxVC0zOuU1KiOzUn9Z5W838/rg==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-calc': 1.1.6(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + postcss: 8.4.35 + dev: true + + /@csstools/postcss-text-decoration-shorthand@3.0.4(postcss@8.4.35): + resolution: {integrity: sha512-yUZmbnUemgQmja7SpOZeU45+P49wNEgQguRdyTktFkZsHf7Gof+ZIYfvF6Cm+LsU1PwSupy4yUeEKKjX5+k6cQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/color-helpers': 4.0.0 + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-trigonometric-functions@3.0.4(postcss@8.4.35): + resolution: {integrity: sha512-qj4Cxth6c38iNYzfJJWAxt8jsLrZaMVmbfGDDLOlI2YJeZoC3A5Su6/Kr7oXaPFRuspUu+4EQHngOktqVHWfVg==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-calc': 1.1.6(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + postcss: 8.4.35 + dev: true + + /@csstools/postcss-unset-value@3.0.1(postcss@8.4.35): + resolution: {integrity: sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + dev: true + + /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.15): + resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss-selector-parser: ^6.0.10 + dependencies: + postcss-selector-parser: 6.0.15 + dev: true + + /@csstools/selector-specificity@3.0.1(postcss-selector-parser@6.0.15): + resolution: {integrity: sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss-selector-parser: ^6.0.13 + dependencies: + postcss-selector-parser: 6.0.15 + dev: true + + /@emmetio/abbreviation@2.3.3: + resolution: {integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==} + dependencies: + '@emmetio/scanner': 1.0.4 + dev: false + + /@emmetio/css-abbreviation@2.1.8: + resolution: {integrity: sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==} + dependencies: + '@emmetio/scanner': 1.0.4 + dev: false + + /@emmetio/scanner@1.0.4: + resolution: {integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==} + dev: false + + /@esbuild/aix-ppc64@0.19.12: + resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + requiresBuild: true + dev: false + optional: true + + /@esbuild/android-arm64@0.19.12: + resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: false + optional: true + + /@esbuild/android-arm@0.19.12: + resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: false + optional: true + + /@esbuild/android-x64@0.19.12: + resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: false + optional: true + + /@esbuild/darwin-arm64@0.19.12: + resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + + /@esbuild/darwin-x64@0.19.12: + resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + + /@esbuild/freebsd-arm64@0.19.12: + resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: false + optional: true + + /@esbuild/freebsd-x64@0.19.12: + resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-arm64@0.19.12: + resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-arm@0.19.12: + resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-ia32@0.19.12: + resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-loong64@0.19.12: + resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-mips64el@0.19.12: + resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-ppc64@0.19.12: + resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-riscv64@0.19.12: + resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-s390x@0.19.12: + resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/linux-x64@0.19.12: + resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@esbuild/netbsd-x64@0.19.12: + resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: false + optional: true + + /@esbuild/openbsd-x64@0.19.12: + resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: false + optional: true + + /@esbuild/sunos-x64@0.19.12: + resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: false + optional: true + + /@esbuild/win32-arm64@0.19.12: + resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: false + optional: true + + /@esbuild/win32-ia32@0.19.12: + resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: false + optional: true + + /@esbuild/win32-x64@0.19.12: + resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: false + optional: true + + /@fancyapps/ui@5.0.33: + resolution: {integrity: sha512-nYW7ntjhrpqoLz/vA9KpJ2zJ5gXRB7rpFKXWjW4GC1f2st/IoI1Oy2TEEz0xABIlvPTCuoMXaT1X3UC7bP97rA==} + dev: false + + /@google/model-viewer@3.4.0(three@0.160.1): + resolution: {integrity: sha512-ZGZktE+uy7CiNOSrFdR1bTZDe9nfel2h8gWiRY6D5Eit77RAzIRYnPlkdQBoLSo8nnYS0faL/Z1tKP7nntvoGg==} + engines: {node: '>=6.0.0'} + peerDependencies: + three: ^0.160.0 + dependencies: + '@monogrid/gainmap-js': 3.0.3(three@0.160.1) + lit: 2.8.0 + three: 0.160.1 + dev: false + + /@jridgewell/gen-mapping@0.3.3: + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.22 + dev: false + + /@jridgewell/resolve-uri@3.1.1: + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} + engines: {node: '>=6.0.0'} + dev: false + + /@jridgewell/set-array@1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + dev: false + + /@jridgewell/sourcemap-codec@1.4.15: + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + dev: false + + /@jridgewell/trace-mapping@0.3.22: + resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==} + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + dev: false + + /@lit-labs/ssr-dom-shim@1.2.0: + resolution: {integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==} + dev: false + + /@lit/reactive-element@1.6.3: + resolution: {integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==} + dependencies: + '@lit-labs/ssr-dom-shim': 1.2.0 + dev: false + + /@monogrid/gainmap-js@3.0.3(three@0.160.1): + resolution: {integrity: sha512-gku5jyAorfEhyBF804/xDqtex4kfGQNxNtvX62NenIEdNi5Wi94OUKG6A1GmQFBWmZbj5+FjDO2qnUcJhLAl9w==} + peerDependencies: + three: '>= 0.159.0' + dependencies: + promise-worker-transferable: 1.0.4 + three: 0.160.1 + dev: false + + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.17.1 + + /@rollup/rollup-android-arm-eabi@4.10.0: + resolution: {integrity: sha512-/MeDQmcD96nVoRumKUljsYOLqfv1YFJps+0pTrb2Z9Nl/w5qNUysMaWQsrd1mvAlNT4yza1iVyIu4Q4AgF6V3A==} + cpu: [arm] + os: [android] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-android-arm64@4.10.0: + resolution: {integrity: sha512-lvu0jK97mZDJdpZKDnZI93I0Om8lSDaiPx3OiCk0RXn3E8CMPJNS/wxjAvSJJzhhZpfjXsjLWL8LnS6qET4VNQ==} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-darwin-arm64@4.10.0: + resolution: {integrity: sha512-uFpayx8I8tyOvDkD7X6n0PriDRWxcqEjqgtlxnUA/G9oS93ur9aZ8c8BEpzFmsed1TH5WZNG5IONB8IiW90TQg==} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-darwin-x64@4.10.0: + resolution: {integrity: sha512-nIdCX03qFKoR/MwQegQBK+qZoSpO3LESurVAC6s6jazLA1Mpmgzo3Nj3H1vydXp/JM29bkCiuF7tDuToj4+U9Q==} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-linux-arm-gnueabihf@4.10.0: + resolution: {integrity: sha512-Fz7a+y5sYhYZMQFRkOyCs4PLhICAnxRX/GnWYReaAoruUzuRtcf+Qnw+T0CoAWbHCuz2gBUwmWnUgQ67fb3FYw==} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-linux-arm64-gnu@4.10.0: + resolution: {integrity: sha512-yPtF9jIix88orwfTi0lJiqINnlWo6p93MtZEoaehZnmCzEmLL0eqjA3eGVeyQhMtxdV+Mlsgfwhh0+M/k1/V7Q==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-linux-arm64-musl@4.10.0: + resolution: {integrity: sha512-9GW9yA30ib+vfFiwjX+N7PnjTnCMiUffhWj4vkG4ukYv1kJ4T9gHNg8zw+ChsOccM27G9yXrEtMScf1LaCuoWQ==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-linux-riscv64-gnu@4.10.0: + resolution: {integrity: sha512-X1ES+V4bMq2ws5fF4zHornxebNxMXye0ZZjUrzOrf7UMx1d6wMQtfcchZ8SqUnQPPHdOyOLW6fTcUiFgHFadRA==} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-linux-x64-gnu@4.10.0: + resolution: {integrity: sha512-w/5OpT2EnI/Xvypw4FIhV34jmNqU5PZjZue2l2Y3ty1Ootm3SqhI+AmfhlUYGBTd9JnpneZCDnt3uNOiOBkMyw==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-linux-x64-musl@4.10.0: + resolution: {integrity: sha512-q/meftEe3QlwQiGYxD9rWwB21DoKQ9Q8wA40of/of6yGHhZuGfZO0c3WYkN9dNlopHlNT3mf5BPsUSxoPuVQaw==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-win32-arm64-msvc@4.10.0: + resolution: {integrity: sha512-NrR6667wlUfP0BHaEIKgYM/2va+Oj+RjZSASbBMnszM9k+1AmliRjHc3lJIiOehtSSjqYiO7R6KLNrWOX+YNSQ==} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-win32-ia32-msvc@4.10.0: + resolution: {integrity: sha512-FV0Tpt84LPYDduIDcXvEC7HKtyXxdvhdAOvOeWMWbQNulxViH2O07QXkT/FffX4FqEI02jEbCJbr+YcuKdyyMg==} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: false + optional: true + + /@rollup/rollup-win32-x64-msvc@4.10.0: + resolution: {integrity: sha512-OZoJd+o5TaTSQeFFQ6WjFCiltiYVjIdsXxwu/XZ8qRpsvMQr4UsVrE5UyT9RIvsnuF47DqkJKhhVZ2Q9YW9IpQ==} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: false + optional: true + + /@trysound/sax@0.2.0: + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + dev: true + + /@types/babel__core@7.20.5: + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + dependencies: + '@babel/parser': 7.23.9 + '@babel/types': 7.23.9 + '@types/babel__generator': 7.6.8 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.5 + dev: false + + /@types/babel__generator@7.6.8: + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + dependencies: + '@babel/types': 7.23.9 + dev: false + + /@types/babel__template@7.4.4: + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + dependencies: + '@babel/parser': 7.23.9 + '@babel/types': 7.23.9 + dev: false + + /@types/babel__traverse@7.20.5: + resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} + dependencies: + '@babel/types': 7.23.9 + dev: false + + /@types/debug@4.1.12: + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + dependencies: + '@types/ms': 0.7.34 + dev: false + + /@types/estree@1.0.5: + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + dev: false + + /@types/hast@3.0.4: + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + dependencies: + '@types/unist': 3.0.2 + dev: false + + /@types/mdast@4.0.3: + resolution: {integrity: sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==} + dependencies: + '@types/unist': 3.0.2 + dev: false + + /@types/minimist@1.2.5: + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + dev: true + + /@types/ms@0.7.34: + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + dev: false + + /@types/nlcst@1.0.4: + resolution: {integrity: sha512-ABoYdNQ/kBSsLvZAekMhIPMQ3YUZvavStpKYs7BjLLuKVmIMA0LUgZ7b54zzuWJRbHF80v1cNf4r90Vd6eMQDg==} + dependencies: + '@types/unist': 2.0.10 + dev: false + + /@types/normalize-package-data@2.4.4: + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + dev: true + + /@types/parse-json@4.0.2: + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + dev: true + + /@types/trusted-types@2.0.7: + resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} + dev: false + + /@types/unist@2.0.10: + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + dev: false + + /@types/unist@3.0.2: + resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} + dev: false + + /@ungap/structured-clone@1.2.0: + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + dev: false + + /@volar/kit@2.0.3(typescript@5.3.3): + resolution: {integrity: sha512-/fUMt36UN+a01c8QjQcJ21OLXhQa0TePZ6vOPwzt1akTUB3UbSL2HFY+S1z/XbDPFQIt1IXzvp7F4eruHpVD7w==} + peerDependencies: + typescript: '*' + dependencies: + '@volar/language-service': 2.0.3 + '@volar/typescript': 2.0.3 + typesafe-path: 0.2.2 + typescript: 5.3.3 + vscode-languageserver-textdocument: 1.0.11 + vscode-uri: 3.0.8 + dev: false + + /@volar/language-core@2.0.3: + resolution: {integrity: sha512-SBSL+NKG3l7GA7GFFPU6i26BIeIyzBbka5e0UVOOzEssxxurGXdlv3HKVI8zdS5LiCNeQk1p024R+49v1yE+4g==} + dependencies: + '@volar/source-map': 2.0.3 + dev: false + + /@volar/language-server@2.0.3: + resolution: {integrity: sha512-6nnCzvroLgEdOxHwbrmLFKf+hOIeQqkE1cDswqPNloXoJEcGAvLPG5k7Ghkv0gZjpX9TBgQV1b5kE5JG5U6bfg==} + dependencies: + '@volar/language-core': 2.0.3 + '@volar/language-service': 2.0.3 + '@volar/snapshot-document': 2.0.3 + '@volar/typescript': 2.0.3 + '@vscode/l10n': 0.0.16 + path-browserify: 1.0.1 + request-light: 0.7.0 + vscode-languageserver: 9.0.1 + vscode-languageserver-protocol: 3.17.5 + vscode-languageserver-textdocument: 1.0.11 + vscode-uri: 3.0.8 + dev: false + + /@volar/language-service@2.0.3: + resolution: {integrity: sha512-c63f0owlPQeKpH31mkTOD6cXBW9Oh35kLUGXoM/EYwecbVPqXjnRnSphQjnF0LW7ZozSOpwS21iUGsPQ8wy3+g==} + dependencies: + '@volar/language-core': 2.0.3 + vscode-languageserver-protocol: 3.17.5 + vscode-languageserver-textdocument: 1.0.11 + vscode-uri: 3.0.8 + dev: false + + /@volar/snapshot-document@2.0.3: + resolution: {integrity: sha512-+g6GUKftYBU4p8v1lcMleiV0UUI5PDSUmiOY0m7qf5zEpdd0b0CvXBG9uGVnhJlAaDjcR0IEOA7a7x/P3e56gg==} + dependencies: + vscode-languageserver-protocol: 3.17.5 + vscode-languageserver-textdocument: 1.0.11 + dev: false + + /@volar/source-map@2.0.3: + resolution: {integrity: sha512-Z7w/nR7HLu72yD2r0YTc1v2s73ZhAglMm7oSu1it8W65/rLeaM+e/8dr7JivxFjcOtEw1ko6+rFJMQqWjTx2oQ==} + dependencies: + muggle-string: 0.4.1 + dev: false + + /@volar/typescript@2.0.3: + resolution: {integrity: sha512-EQ+s7sDb1s3arGAUHpbPY4h3zm4/tOTPLr+srwxJZ8W2xYHwKGt/7JeUiG10nbYibF/YJn/JinDKLHkUKIMoHg==} + dependencies: + '@volar/language-core': 2.0.3 + path-browserify: 1.0.1 + dev: false + + /@vscode/emmet-helper@2.9.2: + resolution: {integrity: sha512-MaGuyW+fa13q3aYsluKqclmh62Hgp0BpKIqS66fCxfOaBcVQ1OnMQxRRgQUYnCkxFISAQlkJ0qWWPyXjro1Qrg==} + dependencies: + emmet: 2.4.6 + jsonc-parser: 2.3.1 + vscode-languageserver-textdocument: 1.0.11 + vscode-languageserver-types: 3.17.5 + vscode-uri: 2.1.2 + dev: false + + /@vscode/l10n@0.0.16: + resolution: {integrity: sha512-JT5CvrIYYCrmB+dCana8sUqJEcGB1ZDXNLMQ2+42bW995WmNoenijWMUdZfwmuQUTQcEVVIa2OecZzTYWUW9Cg==} + dev: false + + /@vscode/l10n@0.0.18: + resolution: {integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==} + dev: false + + /acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: false + + /ajv@8.12.0: + resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + dev: true + + /ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + dependencies: + string-width: 4.2.3 + dev: false + + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + /ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + dev: false + + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + + /ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + dev: false + + /anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + /argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + dependencies: + sprintf-js: 1.0.3 + dev: false + + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: false + + /aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + dependencies: + dequal: 2.0.3 + dev: false + + /array-buffer-byte-length@1.0.1: + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + is-array-buffer: 3.0.4 + dev: true + + /array-iterate@2.0.1: + resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} + dev: false + + /array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + dev: true + + /arraybuffer.prototype.slice@1.0.3: + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.1 + call-bind: 1.0.6 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + is-array-buffer: 3.0.4 + is-shared-array-buffer: 1.0.2 + dev: true + + /arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + dev: true + + /astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + dev: true + + /astro@4.3.6(sass@1.70.0)(typescript@5.3.3): + resolution: {integrity: sha512-VYJGsBygMtPM/qTRgn5QdxkSILgjpW2uHVw3snp/Gkl+N9uRAAnuYxrUO7wkbLejfrmlb0nZyyKG+H5VDQPbeg==} + engines: {node: '>=18.14.1', npm: '>=6.14.0'} + hasBin: true + dependencies: + '@astrojs/compiler': 2.5.3 + '@astrojs/internal-helpers': 0.2.1 + '@astrojs/markdown-remark': 4.2.1 + '@astrojs/telemetry': 3.0.4 + '@babel/core': 7.23.9 + '@babel/generator': 7.23.6 + '@babel/parser': 7.23.9 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.9) + '@babel/traverse': 7.23.9 + '@babel/types': 7.23.9 + '@types/babel__core': 7.20.5 + acorn: 8.11.3 + aria-query: 5.3.0 + axobject-query: 4.0.0 + boxen: 7.1.1 + chokidar: 3.6.0 + ci-info: 4.0.0 + clsx: 2.1.0 + common-ancestor-path: 1.0.1 + cookie: 0.6.0 + cssesc: 3.0.0 + debug: 4.3.4 + deterministic-object-hash: 2.0.2 + devalue: 4.3.2 + diff: 5.2.0 + dlv: 1.1.3 + dset: 3.1.3 + es-module-lexer: 1.4.1 + esbuild: 0.19.12 + estree-walker: 3.0.3 + execa: 8.0.1 + fast-glob: 3.3.2 + flattie: 1.1.0 + github-slugger: 2.0.0 + gray-matter: 4.0.3 + html-escaper: 3.0.3 + http-cache-semantics: 4.1.1 + js-yaml: 4.1.0 + kleur: 4.1.5 + magic-string: 0.30.7 + mdast-util-to-hast: 13.0.2 + mime: 3.0.0 + ora: 7.0.1 + p-limit: 5.0.0 + p-queue: 8.0.1 + path-to-regexp: 6.2.1 + preferred-pm: 3.1.2 + probe-image-size: 7.2.3 + prompts: 2.4.2 + rehype: 13.0.1 + resolve: 1.22.8 + semver: 7.6.0 + server-destroy: 1.0.1 + shikiji: 0.9.19 + shikiji-core: 0.9.19 + string-width: 7.1.0 + strip-ansi: 7.1.0 + tsconfck: 3.0.2(typescript@5.3.3) + unist-util-visit: 5.0.0 + vfile: 6.0.1 + vite: 5.1.1(sass@1.70.0) + vitefu: 0.2.5(vite@5.1.1) + which-pm: 2.1.1 + yargs-parser: 21.1.1 + zod: 3.22.4 + optionalDependencies: + sharp: 0.32.6 + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser + - typescript + dev: false + + /autoprefixer@10.4.17(postcss@8.4.35): + resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.22.3 + caniuse-lite: 1.0.30001587 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /available-typed-arrays@1.0.6: + resolution: {integrity: sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==} + engines: {node: '>= 0.4'} + dev: true + + /axobject-query@4.0.0: + resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==} + dependencies: + dequal: 2.0.3 + dev: false + + /b4a@1.6.6: + resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==} + requiresBuild: true + dev: false + optional: true + + /bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + dev: false + + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /balanced-match@2.0.0: + resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} + dev: true + + /bare-events@2.2.0: + resolution: {integrity: sha512-Yyyqff4PIFfSuthCZqLlPISTWHmnQxoPuAvkmgzsJEmG3CesdIv6Xweayl0JkCZJSB2yYIdJyEz97tpxNhgjbg==} + requiresBuild: true + dev: false + optional: true + + /bare-fs@2.1.3: + resolution: {integrity: sha512-Oa7F0QJV7We0mtKq7Tk246uiBrl7vun64cPEsJOEwv2vHjnVL9yO7aH3643aSrd4rXfVe7yhJ9LHZywQQAXKFQ==} + requiresBuild: true + dependencies: + bare-events: 2.2.0 + bare-os: 2.1.2 + bare-path: 2.1.0 + streamx: 2.15.8 + dev: false + optional: true + + /bare-os@2.1.2: + resolution: {integrity: sha512-slQjOn78Q8itnzomNAamiKo5MDpEpV3JnoNZ93lyynaFh6paWcU+5c0GVcZ7EYIJC2unN2JGdF1qupdscYl0Yg==} + requiresBuild: true + dev: false + optional: true + + /bare-path@2.1.0: + resolution: {integrity: sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==} + requiresBuild: true + dependencies: + bare-os: 2.1.2 + dev: false + optional: true + + /base-64@1.0.0: + resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} + dev: false + + /base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + dev: false + + /binary-extensions@2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + + /bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + requiresBuild: true + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + dev: false + optional: true + + /bl@5.1.0: + resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==} + dependencies: + buffer: 6.0.3 + inherits: 2.0.4 + readable-stream: 3.6.2 + dev: false + + /boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + dev: true + + /boxen@7.1.1: + resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} + engines: {node: '>=14.16'} + dependencies: + ansi-align: 3.0.1 + camelcase: 7.0.1 + chalk: 5.3.0 + cli-boxes: 3.0.0 + string-width: 5.1.2 + type-fest: 2.19.0 + widest-line: 4.0.1 + wrap-ansi: 8.1.0 + dev: false + + /brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + + /browserslist@4.22.3: + resolution: {integrity: sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001587 + electron-to-chromium: 1.4.665 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.22.3) + + /buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + requiresBuild: true + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: false + optional: true + + /buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: false + + /call-bind@1.0.6: + resolution: {integrity: sha512-Mj50FLHtlsoVfRfnHaZvyrooHcrlceNZdL/QBvJJVd9Ta55qCQK0gs4ss2oZDeV9zFCs6ewzYgVE5yfVmfFpVg==} + engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + set-function-length: 1.2.1 + dev: true + + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + dev: true + + /camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + dev: true + + /camelcase@7.0.1: + resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} + engines: {node: '>=14.16'} + dev: false + + /caniuse-api@3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + dependencies: + browserslist: 4.22.3 + caniuse-lite: 1.0.30001587 + lodash.memoize: 4.1.2 + lodash.uniq: 4.5.0 + dev: true + + /caniuse-lite@1.0.30001587: + resolution: {integrity: sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA==} + + /ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + dev: false + + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + + /chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + dev: false + + /character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + dev: false + + /character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + dev: false + + /character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + dev: false + + /chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + + /chownr@1.1.4: + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + requiresBuild: true + dev: false + optional: true + + /ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + dev: false + + /ci-info@4.0.0: + resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} + engines: {node: '>=8'} + dev: false + + /cli-boxes@3.0.0: + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + engines: {node: '>=10'} + dev: false + + /cli-cursor@4.0.0: + resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + restore-cursor: 4.0.0 + dev: false + + /cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + dev: false + + /cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: false + + /clsx@2.1.0: + resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} + engines: {node: '>=6'} + dev: false + + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + + /color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + requiresBuild: true + + /color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + requiresBuild: true + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + dev: false + optional: true + + /color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + requiresBuild: true + dependencies: + color-convert: 2.0.1 + color-string: 1.9.1 + dev: false + optional: true + + /colord@2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + dev: true + + /comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + dev: false + + /commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + dev: true + + /common-ancestor-path@1.0.1: + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + dev: false + + /concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + dev: true + + /convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + dev: false + + /cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} + dev: false + + /cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + dependencies: + '@types/parse-json': 4.0.2 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: true + + /cross-spawn@6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.2 + shebang-command: 1.2.0 + which: 1.3.1 + dev: true + + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: false + + /css-blank-pseudo@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-goSnEITByxTzU4Oh5oJZrEWudxTqk7L6IXj1UW69pO6Hv0UdX+Vsrt02FFu5DweRh2bLu6WpX/+zsQCu5O1gKw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /css-declaration-sorter@7.1.1(postcss@8.4.35): + resolution: {integrity: sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.0.9 + dependencies: + postcss: 8.4.35 + dev: true + + /css-functions-list@3.2.1: + resolution: {integrity: sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==} + engines: {node: '>=12 || >=16'} + dev: true + + /css-has-pseudo@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-WwoVKqNxApfEI7dWFyaHoeFCcUPD+lPyjL6lNpRUNX7IyIUuVpawOTwwA5D0ZR6V2xQZonNPVj8kEcxzEaAQfQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/selector-specificity': 3.0.1(postcss-selector-parser@6.0.15) + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + postcss-value-parser: 4.2.0 + dev: true + + /css-prefers-color-scheme@9.0.1(postcss@8.4.35): + resolution: {integrity: sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + dev: true + + /css-select@5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 5.0.3 + domutils: 3.1.0 + nth-check: 2.1.1 + dev: true + + /css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + dependencies: + mdn-data: 2.0.28 + source-map-js: 1.0.2 + dev: true + + /css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.0.2 + dev: true + + /css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + dev: true + + /cssdb@7.10.0: + resolution: {integrity: sha512-yGZ5tmA57gWh/uvdQBHs45wwFY0IBh3ypABk5sEubPBPSzXzkNgsWReqx7gdx6uhC+QoFBe+V8JwBB9/hQ6cIA==} + dev: true + + /cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + /cssnano-preset-default@6.0.3(postcss@8.4.35): + resolution: {integrity: sha512-4y3H370aZCkT9Ev8P4SO4bZbt+AExeKhh8wTbms/X7OLDo5E7AYUUy6YPxa/uF5Grf+AJwNcCnxKhZynJ6luBA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + css-declaration-sorter: 7.1.1(postcss@8.4.35) + cssnano-utils: 4.0.1(postcss@8.4.35) + postcss: 8.4.35 + postcss-calc: 9.0.1(postcss@8.4.35) + postcss-colormin: 6.0.2(postcss@8.4.35) + postcss-convert-values: 6.0.2(postcss@8.4.35) + postcss-discard-comments: 6.0.1(postcss@8.4.35) + postcss-discard-duplicates: 6.0.1(postcss@8.4.35) + postcss-discard-empty: 6.0.1(postcss@8.4.35) + postcss-discard-overridden: 6.0.1(postcss@8.4.35) + postcss-merge-longhand: 6.0.2(postcss@8.4.35) + postcss-merge-rules: 6.0.3(postcss@8.4.35) + postcss-minify-font-values: 6.0.1(postcss@8.4.35) + postcss-minify-gradients: 6.0.1(postcss@8.4.35) + postcss-minify-params: 6.0.2(postcss@8.4.35) + postcss-minify-selectors: 6.0.2(postcss@8.4.35) + postcss-normalize-charset: 6.0.1(postcss@8.4.35) + postcss-normalize-display-values: 6.0.1(postcss@8.4.35) + postcss-normalize-positions: 6.0.1(postcss@8.4.35) + postcss-normalize-repeat-style: 6.0.1(postcss@8.4.35) + postcss-normalize-string: 6.0.1(postcss@8.4.35) + postcss-normalize-timing-functions: 6.0.1(postcss@8.4.35) + postcss-normalize-unicode: 6.0.2(postcss@8.4.35) + postcss-normalize-url: 6.0.1(postcss@8.4.35) + postcss-normalize-whitespace: 6.0.1(postcss@8.4.35) + postcss-ordered-values: 6.0.1(postcss@8.4.35) + postcss-reduce-initial: 6.0.2(postcss@8.4.35) + postcss-reduce-transforms: 6.0.1(postcss@8.4.35) + postcss-svgo: 6.0.2(postcss@8.4.35) + postcss-unique-selectors: 6.0.2(postcss@8.4.35) + dev: true + + /cssnano-utils@4.0.1(postcss@8.4.35): + resolution: {integrity: sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + dev: true + + /cssnano@6.0.3(postcss@8.4.35): + resolution: {integrity: sha512-MRq4CIj8pnyZpcI2qs6wswoYoDD1t0aL28n+41c1Ukcpm56m1h6mCexIHBGjfZfnTqtGSSCP4/fB1ovxgjBOiw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + cssnano-preset-default: 6.0.3(postcss@8.4.35) + lilconfig: 3.0.0 + postcss: 8.4.35 + dev: true + + /csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + dependencies: + css-tree: 2.2.1 + dev: true + + /debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.0.0 + dev: false + + /debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + dev: false + + /debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + + /decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + dev: true + + /decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + dev: true + + /decode-named-character-reference@1.0.2: + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + dependencies: + character-entities: 2.0.2 + dev: false + + /decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + requiresBuild: true + dependencies: + mimic-response: 3.1.0 + dev: false + optional: true + + /deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + requiresBuild: true + dev: false + optional: true + + /define-data-property@1.1.2: + resolution: {integrity: sha512-SRtsSqsDbgpJBbW3pABMCOt6rQyeM8s8RiyeSN8jYG8sYmt/kGJejbydttUsnDs1tadr19tvhT4ShwMyoqAm4g==} + engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.2 + has-property-descriptors: 1.0.1 + object-keys: 1.1.1 + dev: true + + /dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + dev: false + + /detect-libc@2.0.2: + resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} + engines: {node: '>=8'} + requiresBuild: true + dev: false + optional: true + + /deterministic-object-hash@2.0.2: + resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} + engines: {node: '>=18'} + dependencies: + base-64: 1.0.0 + dev: false + + /devalue@4.3.2: + resolution: {integrity: sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==} + dev: false + + /devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + dependencies: + dequal: 2.0.3 + dev: false + + /diff@5.2.0: + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} + engines: {node: '>=0.3.1'} + dev: false + + /dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + dependencies: + path-type: 4.0.0 + dev: true + + /dlv@1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + dev: false + + /dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + dev: true + + /domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + dev: true + + /domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + dependencies: + domelementtype: 2.3.0 + dev: true + + /domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + dev: true + + /dset@3.1.3: + resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==} + engines: {node: '>=4'} + dev: false + + /eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + dev: false + + /electron-to-chromium@1.4.665: + resolution: {integrity: sha512-UpyCWObBoD+nSZgOC2ToaIdZB0r9GhqT2WahPKiSki6ckkSuKhQNso8V2PrFcHBMleI/eqbKgVQgVC4Wni4ilw==} + + /emmet@2.4.6: + resolution: {integrity: sha512-dJfbdY/hfeTyf/Ef7Y7ubLYzkBvPQ912wPaeVYpAxvFxkEBf/+hJu4H6vhAvFN6HlxqedlfVn2x1S44FfQ97pg==} + dependencies: + '@emmetio/abbreviation': 2.3.3 + '@emmetio/css-abbreviation': 2.1.8 + dev: false + + /emoji-regex@10.3.0: + resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} + dev: false + + /emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + /emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + dev: false + + /end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + requiresBuild: true + dependencies: + once: 1.4.0 + dev: false + optional: true + + /entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + dependencies: + is-arrayish: 0.2.1 + dev: true + + /es-abstract@1.22.3: + resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.1 + arraybuffer.prototype.slice: 1.0.3 + available-typed-arrays: 1.0.6 + call-bind: 1.0.6 + es-set-tostringtag: 2.0.2 + es-to-primitive: 1.2.1 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.4 + get-symbol-description: 1.0.2 + globalthis: 1.0.3 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.1 + internal-slot: 1.0.7 + is-array-buffer: 3.0.4 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-typed-array: 1.1.13 + is-weakref: 1.0.2 + object-inspect: 1.13.1 + object-keys: 1.1.1 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.2 + safe-array-concat: 1.1.0 + safe-regex-test: 1.0.3 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 + typed-array-buffer: 1.0.1 + typed-array-byte-length: 1.0.0 + typed-array-byte-offset: 1.0.0 + typed-array-length: 1.0.4 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.14 + dev: true + + /es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + dev: true + + /es-module-lexer@1.4.1: + resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==} + dev: false + + /es-set-tostringtag@2.0.2: + resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.4 + has-tostringtag: 1.0.2 + hasown: 2.0.1 + dev: true + + /es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /esbuild@0.19.12: + resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/aix-ppc64': 0.19.12 + '@esbuild/android-arm': 0.19.12 + '@esbuild/android-arm64': 0.19.12 + '@esbuild/android-x64': 0.19.12 + '@esbuild/darwin-arm64': 0.19.12 + '@esbuild/darwin-x64': 0.19.12 + '@esbuild/freebsd-arm64': 0.19.12 + '@esbuild/freebsd-x64': 0.19.12 + '@esbuild/linux-arm': 0.19.12 + '@esbuild/linux-arm64': 0.19.12 + '@esbuild/linux-ia32': 0.19.12 + '@esbuild/linux-loong64': 0.19.12 + '@esbuild/linux-mips64el': 0.19.12 + '@esbuild/linux-ppc64': 0.19.12 + '@esbuild/linux-riscv64': 0.19.12 + '@esbuild/linux-s390x': 0.19.12 + '@esbuild/linux-x64': 0.19.12 + '@esbuild/netbsd-x64': 0.19.12 + '@esbuild/openbsd-x64': 0.19.12 + '@esbuild/sunos-x64': 0.19.12 + '@esbuild/win32-arm64': 0.19.12 + '@esbuild/win32-ia32': 0.19.12 + '@esbuild/win32-x64': 0.19.12 + dev: false + + /escalade@3.1.2: + resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} + engines: {node: '>=6'} + + /escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + /escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + dev: false + + /esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: false + + /estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + dependencies: + '@types/estree': 1.0.5 + dev: false + + /eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + dev: false + + /execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 8.0.1 + human-signals: 5.0.0 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.2.0 + onetime: 6.0.0 + signal-exit: 4.1.0 + strip-final-newline: 3.0.0 + dev: false + + /expand-template@2.0.3: + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} + engines: {node: '>=6'} + requiresBuild: true + dev: false + optional: true + + /extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + dependencies: + is-extendable: 0.1.1 + dev: false + + /extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + dev: false + + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: true + + /fast-fifo@1.3.2: + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} + requiresBuild: true + dev: false + optional: true + + /fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + + /fastest-levenshtein@1.0.16: + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} + dev: true + + /fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + dependencies: + reusify: 1.0.4 + + /file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flat-cache: 3.2.0 + dev: true + + /fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + + /find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: false + + /find-yarn-workspace-root2@1.2.16: + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + dependencies: + micromatch: 4.0.5 + pkg-dir: 4.2.0 + dev: false + + /flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flatted: 3.2.9 + keyv: 4.5.4 + rimraf: 3.0.2 + dev: true + + /flatted@3.2.9: + resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + dev: true + + /flattie@1.1.0: + resolution: {integrity: sha512-xU99gDEnciIwJdGcBmNHnzTJ/w5AT+VFJOu6sTB6WM8diOYNA3Sa+K1DiEBQ7XH4QikQq3iFW1U+jRVcotQnBw==} + engines: {node: '>=8'} + dev: false + + /for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + dependencies: + is-callable: 1.2.7 + dev: true + + /fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + dev: true + + /fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + requiresBuild: true + dev: false + optional: true + + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true + + /fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + optional: true + + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + /function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + define-properties: 1.2.1 + es-abstract: 1.22.3 + functions-have-names: 1.2.3 + dev: true + + /functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + dev: true + + /gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + dev: false + + /get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + dev: false + + /get-east-asian-width@1.2.0: + resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} + engines: {node: '>=18'} + dev: false + + /get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.1 + dev: true + + /get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + dev: false + + /get-symbol-description@1.0.2: + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + dev: true + + /github-from-package@0.0.0: + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} + requiresBuild: true + dev: false + optional: true + + /github-slugger@2.0.0: + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + dev: false + + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + + /glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /global-modules@2.0.0: + resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} + engines: {node: '>=6'} + dependencies: + global-prefix: 3.0.0 + dev: true + + /global-prefix@3.0.0: + resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} + engines: {node: '>=6'} + dependencies: + ini: 1.3.8 + kind-of: 6.0.3 + which: 1.3.1 + dev: true + + /globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + dev: false + + /globalthis@1.0.3: + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} + dependencies: + define-properties: 1.2.1 + dev: true + + /globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.2 + ignore: 5.3.1 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /globjoin@0.1.4: + resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} + dev: true + + /gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + dependencies: + get-intrinsic: 1.2.4 + dev: true + + /graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + /gray-matter@4.0.3: + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} + dependencies: + js-yaml: 3.14.1 + kind-of: 6.0.3 + section-matter: 1.0.0 + strip-bom-string: 1.0.0 + dev: false + + /hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + dev: true + + /has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + dev: true + + /has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /has-property-descriptors@1.0.1: + resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} + dependencies: + get-intrinsic: 1.2.4 + dev: true + + /has-proto@1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} + dev: true + + /has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /hasown@2.0.1: + resolution: {integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==} + engines: {node: '>= 0.4'} + dependencies: + function-bind: 1.1.2 + + /hast-util-from-html@2.0.1: + resolution: {integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==} + dependencies: + '@types/hast': 3.0.4 + devlop: 1.1.0 + hast-util-from-parse5: 8.0.1 + parse5: 7.1.2 + vfile: 6.0.1 + vfile-message: 4.0.2 + dev: false + + /hast-util-from-parse5@8.0.1: + resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 + devlop: 1.1.0 + hastscript: 8.0.0 + property-information: 6.4.1 + vfile: 6.0.1 + vfile-location: 5.0.2 + web-namespaces: 2.0.1 + dev: false + + /hast-util-parse-selector@4.0.0: + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} + dependencies: + '@types/hast': 3.0.4 + dev: false + + /hast-util-raw@9.0.2: + resolution: {integrity: sha512-PldBy71wO9Uq1kyaMch9AHIghtQvIwxBUkv823pKmkTM3oV1JxtsTNYdevMxvUHqcnOAuO65JKU2+0NOxc2ksA==} + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 + '@ungap/structured-clone': 1.2.0 + hast-util-from-parse5: 8.0.1 + hast-util-to-parse5: 8.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.0.2 + parse5: 7.1.2 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.1 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + dev: false + + /hast-util-to-html@9.0.0: + resolution: {integrity: sha512-IVGhNgg7vANuUA2XKrT6sOIIPgaYZnmLx3l/CCOAK0PtgfoHrZwX7jCSYyFxHTrGmC6S9q8aQQekjp4JPZF+cw==} + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 + ccount: 2.0.1 + comma-separated-tokens: 2.0.3 + hast-util-raw: 9.0.2 + hast-util-whitespace: 3.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.0.2 + property-information: 6.4.1 + space-separated-tokens: 2.0.2 + stringify-entities: 4.0.3 + zwitch: 2.0.4 + dev: false + + /hast-util-to-parse5@8.0.0: + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + property-information: 6.4.1 + space-separated-tokens: 2.0.2 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + dev: false + + /hast-util-whitespace@3.0.0: + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + dependencies: + '@types/hast': 3.0.4 + dev: false + + /hastscript@8.0.0: + resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + hast-util-parse-selector: 4.0.0 + property-information: 6.4.1 + space-separated-tokens: 2.0.2 + dev: false + + /hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + dev: true + + /hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + dependencies: + lru-cache: 6.0.0 + dev: true + + /html-escaper@3.0.3: + resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} + dev: false + + /html-tags@3.3.1: + resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} + engines: {node: '>=8'} + dev: true + + /html-void-elements@3.0.0: + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} + dev: false + + /http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + dev: false + + /human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + dev: false + + /iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: false + + /ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + dev: false + + /ignore@5.3.1: + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + engines: {node: '>= 4'} + dev: true + + /immediate@3.0.6: + resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} + dev: false + + /immutable@4.3.5: + resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==} + + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /import-lazy@4.0.0: + resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} + engines: {node: '>=8'} + dev: true + + /import-meta-resolve@4.0.0: + resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==} + dev: false + + /imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: true + + /indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + dev: true + + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + /ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + /internal-slot@1.0.7: + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + hasown: 2.0.1 + side-channel: 1.0.5 + dev: true + + /is-array-buffer@3.0.4: + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + get-intrinsic: 1.2.4 + dev: true + + /is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + dev: true + + /is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + requiresBuild: true + dev: false + optional: true + + /is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + + /is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + has-tostringtag: 1.0.2 + dev: true + + /is-buffer@2.0.5: + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} + dev: false + + /is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + dev: true + + /is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + dependencies: + hasown: 2.0.1 + + /is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.2 + dev: true + + /is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + dev: false + + /is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + dev: false + + /is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + /is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + + /is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + dependencies: + is-docker: 3.0.0 + dev: false + + /is-interactive@2.0.0: + resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} + engines: {node: '>=12'} + dev: false + + /is-negative-zero@2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + dev: true + + /is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.2 + dev: true + + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + /is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + dev: true + + /is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + dev: false + + /is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + dev: true + + /is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + dev: false + + /is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + has-tostringtag: 1.0.2 + dev: true + + /is-shared-array-buffer@1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.6 + dev: true + + /is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: false + + /is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.2 + dev: true + + /is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-typed-array@1.1.13: + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + engines: {node: '>= 0.4'} + dependencies: + which-typed-array: 1.1.14 + dev: true + + /is-unicode-supported@1.3.0: + resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} + engines: {node: '>=12'} + dev: false + + /is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.6 + dev: true + + /is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} + dependencies: + is-inside-container: 1.0.0 + dev: false + + /isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + dev: true + + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + /js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + dev: false + + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: false + + /jsesc@2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + dev: false + + /json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + dev: true + + /json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + dev: true + + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: true + + /json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + dev: true + + /json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + dev: false + + /jsonc-parser@2.3.1: + resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} + dev: false + + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + dependencies: + json-buffer: 3.0.1 + dev: true + + /kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + /kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + dev: false + + /kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + dev: false + + /known-css-properties@0.26.0: + resolution: {integrity: sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==} + dev: true + + /lie@3.3.0: + resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} + dependencies: + immediate: 3.0.6 + dev: false + + /lilconfig@3.0.0: + resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} + engines: {node: '>=14'} + dev: true + + /lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: true + + /lit-element@3.3.3: + resolution: {integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==} + dependencies: + '@lit-labs/ssr-dom-shim': 1.2.0 + '@lit/reactive-element': 1.6.3 + lit-html: 2.8.0 + dev: false + + /lit-html@2.8.0: + resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==} + dependencies: + '@types/trusted-types': 2.0.7 + dev: false + + /lit@2.8.0: + resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==} + dependencies: + '@lit/reactive-element': 1.6.3 + lit-element: 3.3.3 + lit-html: 2.8.0 + dev: false + + /load-json-file@4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} + dependencies: + graceful-fs: 4.2.11 + parse-json: 4.0.0 + pify: 3.0.0 + strip-bom: 3.0.0 + dev: true + + /load-yaml-file@0.2.0: + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} + engines: {node: '>=6'} + dependencies: + graceful-fs: 4.2.11 + js-yaml: 3.14.1 + pify: 4.0.1 + strip-bom: 3.0.0 + dev: false + + /locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + + /locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + dependencies: + p-locate: 5.0.0 + dev: false + + /lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + dev: true + + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: false + + /lodash.truncate@4.4.2: + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + dev: true + + /lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + dev: true + + /log-symbols@5.1.0: + resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==} + engines: {node: '>=12'} + dependencies: + chalk: 5.3.0 + is-unicode-supported: 1.3.0 + dev: false + + /longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + dev: false + + /lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + dependencies: + yallist: 3.1.1 + dev: false + + /lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + + /magic-string@0.30.7: + resolution: {integrity: sha512-8vBuFF/I/+OSLRmdf2wwFCJCz+nSn0m6DPvGH1fS/KiQoSaR+sETbov0eIk9KhEKy8CYqIkIAnbohxT/4H0kuA==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + dev: false + + /map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + dev: true + + /map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + dev: true + + /markdown-table@3.0.3: + resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} + dev: false + + /mathml-tag-names@2.1.3: + resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==} + dev: true + + /mdast-util-definitions@6.0.0: + resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} + dependencies: + '@types/mdast': 4.0.3 + '@types/unist': 3.0.2 + unist-util-visit: 5.0.0 + dev: false + + /mdast-util-find-and-replace@3.0.1: + resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} + dependencies: + '@types/mdast': 4.0.3 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + dev: false + + /mdast-util-from-markdown@2.0.0: + resolution: {integrity: sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA==} + dependencies: + '@types/mdast': 4.0.3 + '@types/unist': 3.0.2 + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.0 + micromark-util-decode-numeric-character-reference: 2.0.1 + micromark-util-decode-string: 2.0.0 + micromark-util-normalize-identifier: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: false + + /mdast-util-gfm-autolink-literal@2.0.0: + resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==} + dependencies: + '@types/mdast': 4.0.3 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.1 + micromark-util-character: 2.1.0 + dev: false + + /mdast-util-gfm-footnote@2.0.0: + resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} + dependencies: + '@types/mdast': 4.0.3 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.0 + mdast-util-to-markdown: 2.1.0 + micromark-util-normalize-identifier: 2.0.0 + transitivePeerDependencies: + - supports-color + dev: false + + /mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + dependencies: + '@types/mdast': 4.0.3 + mdast-util-from-markdown: 2.0.0 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + dev: false + + /mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + dependencies: + '@types/mdast': 4.0.3 + devlop: 1.1.0 + markdown-table: 3.0.3 + mdast-util-from-markdown: 2.0.0 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + dev: false + + /mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + dependencies: + '@types/mdast': 4.0.3 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.0 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + dev: false + + /mdast-util-gfm@3.0.0: + resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} + dependencies: + mdast-util-from-markdown: 2.0.0 + mdast-util-gfm-autolink-literal: 2.0.0 + mdast-util-gfm-footnote: 2.0.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + dev: false + + /mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + dependencies: + '@types/mdast': 4.0.3 + unist-util-is: 6.0.0 + dev: false + + /mdast-util-to-hast@13.0.2: + resolution: {integrity: sha512-U5I+500EOOw9e3ZrclN3Is3fRpw8c19SMyNZlZ2IS+7vLsNzb2Om11VpIVOR+/0137GhZsFEF6YiKD5+0Hr2Og==} + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.3 + '@ungap/structured-clone': 1.2.0 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.0 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + dev: false + + /mdast-util-to-markdown@2.1.0: + resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} + dependencies: + '@types/mdast': 4.0.3 + '@types/unist': 3.0.2 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-decode-string: 2.0.0 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 + dev: false + + /mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + dependencies: + '@types/mdast': 4.0.3 + dev: false + + /mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + dev: true + + /mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + dev: true + + /memorystream@0.3.1: + resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} + engines: {node: '>= 0.10.0'} + dev: true + + /meow@9.0.0: + resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==} + engines: {node: '>=10'} + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 6.2.2 + decamelize: 1.2.0 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + dev: true + + /merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: false + + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + /micromark-core-commonmark@2.0.0: + resolution: {integrity: sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA==} + dependencies: + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + micromark-factory-destination: 2.0.0 + micromark-factory-label: 2.0.0 + micromark-factory-space: 2.0.0 + micromark-factory-title: 2.0.0 + micromark-factory-whitespace: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-chunked: 2.0.0 + micromark-util-classify-character: 2.0.0 + micromark-util-html-tag-name: 2.0.0 + micromark-util-normalize-identifier: 2.0.0 + micromark-util-resolve-all: 2.0.0 + micromark-util-subtokenize: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-extension-gfm-autolink-literal@2.0.0: + resolution: {integrity: sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==} + dependencies: + micromark-util-character: 2.1.0 + micromark-util-sanitize-uri: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-extension-gfm-footnote@2.0.0: + resolution: {integrity: sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==} + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.0 + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-normalize-identifier: 2.0.0 + micromark-util-sanitize-uri: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-extension-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==} + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.0 + micromark-util-classify-character: 2.0.0 + micromark-util-resolve-all: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-extension-gfm-table@2.0.0: + resolution: {integrity: sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==} + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + dependencies: + micromark-util-types: 2.0.0 + dev: false + + /micromark-extension-gfm-task-list-item@2.0.1: + resolution: {integrity: sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==} + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + dependencies: + micromark-extension-gfm-autolink-literal: 2.0.0 + micromark-extension-gfm-footnote: 2.0.0 + micromark-extension-gfm-strikethrough: 2.0.0 + micromark-extension-gfm-table: 2.0.0 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.0.1 + micromark-util-combine-extensions: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-factory-destination@2.0.0: + resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} + dependencies: + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-factory-label@2.0.0: + resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-factory-space@2.0.0: + resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} + dependencies: + micromark-util-character: 2.1.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-factory-title@2.0.0: + resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} + dependencies: + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-factory-whitespace@2.0.0: + resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} + dependencies: + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-util-character@2.1.0: + resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} + dependencies: + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-util-chunked@2.0.0: + resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} + dependencies: + micromark-util-symbol: 2.0.0 + dev: false + + /micromark-util-classify-character@2.0.0: + resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} + dependencies: + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-util-combine-extensions@2.0.0: + resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} + dependencies: + micromark-util-chunked: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-util-decode-numeric-character-reference@2.0.1: + resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} + dependencies: + micromark-util-symbol: 2.0.0 + dev: false + + /micromark-util-decode-string@2.0.0: + resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} + dependencies: + decode-named-character-reference: 1.0.2 + micromark-util-character: 2.1.0 + micromark-util-decode-numeric-character-reference: 2.0.1 + micromark-util-symbol: 2.0.0 + dev: false + + /micromark-util-encode@2.0.0: + resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} + dev: false + + /micromark-util-html-tag-name@2.0.0: + resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} + dev: false + + /micromark-util-normalize-identifier@2.0.0: + resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} + dependencies: + micromark-util-symbol: 2.0.0 + dev: false + + /micromark-util-resolve-all@2.0.0: + resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} + dependencies: + micromark-util-types: 2.0.0 + dev: false + + /micromark-util-sanitize-uri@2.0.0: + resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} + dependencies: + micromark-util-character: 2.1.0 + micromark-util-encode: 2.0.0 + micromark-util-symbol: 2.0.0 + dev: false + + /micromark-util-subtokenize@2.0.0: + resolution: {integrity: sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg==} + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + dev: false + + /micromark-util-symbol@2.0.0: + resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} + dev: false + + /micromark-util-types@2.0.0: + resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} + dev: false + + /micromark@4.0.0: + resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} + dependencies: + '@types/debug': 4.1.12 + debug: 4.3.4 + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.0 + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-chunked: 2.0.0 + micromark-util-combine-extensions: 2.0.0 + micromark-util-decode-numeric-character-reference: 2.0.1 + micromark-util-encode: 2.0.0 + micromark-util-normalize-identifier: 2.0.0 + micromark-util-resolve-all: 2.0.0 + micromark-util-sanitize-uri: 2.0.0 + micromark-util-subtokenize: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + transitivePeerDependencies: + - supports-color + dev: false + + /micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + + /mime@3.0.0: + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} + engines: {node: '>=10.0.0'} + hasBin: true + dev: false + + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: false + + /mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + dev: false + + /mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + requiresBuild: true + dev: false + optional: true + + /min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + dev: true + + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + dev: true + + /minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + requiresBuild: true + dev: false + optional: true + + /mkdirp-classic@0.5.3: + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + requiresBuild: true + dev: false + optional: true + + /ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + dev: false + + /ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + /ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + dev: false + + /muggle-string@0.4.1: + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} + dev: false + + /nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + /napi-build-utils@1.0.2: + resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} + requiresBuild: true + dev: false + optional: true + + /needle@2.9.1: + resolution: {integrity: sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==} + engines: {node: '>= 4.4.x'} + hasBin: true + dependencies: + debug: 3.2.7 + iconv-lite: 0.4.24 + sax: 1.3.0 + transitivePeerDependencies: + - supports-color + dev: false + + /nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + dev: true + + /nlcst-to-string@3.1.1: + resolution: {integrity: sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==} + dependencies: + '@types/nlcst': 1.0.4 + dev: false + + /node-abi@3.54.0: + resolution: {integrity: sha512-p7eGEiQil0YUV3ItH4/tBb781L5impVmmx2E9FRKF7d18XXzp4PGT2tdYMFY6wQqgxD0IwNZOiSJ0/K0fSi/OA==} + engines: {node: '>=10'} + requiresBuild: true + dependencies: + semver: 7.6.0 + dev: false + optional: true + + /node-addon-api@6.1.0: + resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==} + requiresBuild: true + dev: false + optional: true + + /node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + + /normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.8 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.13.1 + semver: 7.6.0 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + /normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + dev: true + + /npm-run-all@4.1.5: + resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} + engines: {node: '>= 4'} + hasBin: true + dependencies: + ansi-styles: 3.2.1 + chalk: 2.4.2 + cross-spawn: 6.0.5 + memorystream: 0.3.1 + minimatch: 3.1.2 + pidtree: 0.3.1 + read-pkg: 3.0.0 + shell-quote: 1.8.1 + string.prototype.padend: 3.1.5 + dev: true + + /npm-run-path@5.2.0: + resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + path-key: 4.0.0 + dev: false + + /nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + dependencies: + boolbase: 1.0.0 + dev: true + + /object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + dev: true + + /object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + dev: true + + /object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + define-properties: 1.2.1 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + dependencies: + mimic-fn: 2.1.0 + dev: false + + /onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + dependencies: + mimic-fn: 4.0.0 + dev: false + + /ora@7.0.1: + resolution: {integrity: sha512-0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw==} + engines: {node: '>=16'} + dependencies: + chalk: 5.3.0 + cli-cursor: 4.0.0 + cli-spinners: 2.9.2 + is-interactive: 2.0.0 + is-unicode-supported: 1.3.0 + log-symbols: 5.1.0 + stdin-discarder: 0.1.0 + string-width: 6.1.0 + strip-ansi: 7.1.0 + dev: false + + /p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + + /p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + dependencies: + yocto-queue: 0.1.0 + dev: false + + /p-limit@5.0.0: + resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==} + engines: {node: '>=18'} + dependencies: + yocto-queue: 1.0.0 + dev: false + + /p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + + /p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + dependencies: + p-limit: 3.1.0 + dev: false + + /p-queue@8.0.1: + resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==} + engines: {node: '>=18'} + dependencies: + eventemitter3: 5.0.1 + p-timeout: 6.1.2 + dev: false + + /p-timeout@6.1.2: + resolution: {integrity: sha512-UbD77BuZ9Bc9aABo74gfXhNvzC9Tx7SxtHSh1fxvx3jTLLYvmVhiQZZrJzqqU0jKbN32kb5VOKiLEQI/3bIjgQ==} + engines: {node: '>=14.16'} + dev: false + + /p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + + /parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + dependencies: + error-ex: 1.3.2 + json-parse-better-errors: 1.0.2 + dev: true + + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': 7.23.5 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /parse-latin@5.0.1: + resolution: {integrity: sha512-b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg==} + dependencies: + nlcst-to-string: 3.1.1 + unist-util-modify-children: 3.1.1 + unist-util-visit-children: 2.0.2 + dev: false + + /parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + dependencies: + entities: 4.5.0 + dev: false + + /path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + dev: false + + /path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + /path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: true + + /path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + dev: true + + /path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: false + + /path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + dev: false + + /path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + /path-to-regexp@6.2.1: + resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==} + dev: false + + /path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + dependencies: + pify: 3.0.0 + dev: true + + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + dev: true + + /picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + /pidtree@0.3.1: + resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} + engines: {node: '>=0.10'} + hasBin: true + dev: true + + /pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + dev: true + + /pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + dev: false + + /pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + dev: false + + /pnpm@8.15.1: + resolution: {integrity: sha512-gxz0xfi4N0r3FSHU0VPbSdcIbeYVwq98tenX64umMN2sRv6kldZD5VLvLmijqpmj5en77oaWcClnUE31xZyycw==} + engines: {node: '>=16.14'} + hasBin: true + dev: false + + /postcss-attribute-case-insensitive@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-IRuCwwAAQbgaLhxQdQcIIK0dCVXg3XDUnzgKD8iwdiYdwU4rMWRWyl/W9/0nA4ihVpq5pyALiHB2veBJ0292pw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-calc@9.0.1(postcss@8.4.35): + resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.2.2 + dependencies: + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-clamp@4.1.0(postcss@8.4.35): + resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} + engines: {node: '>=7.6.0'} + peerDependencies: + postcss: ^8.4.6 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-color-functional-notation@6.0.4(postcss@8.4.35): + resolution: {integrity: sha512-YBzfVvVUNR4U3N0imzU1NPKCuwxzfHJkEP6imJxzsJ8LozRKeej9mWmg9Ef1ovJdb0xrGTRVzUxgTrMun5iw/Q==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-color-parser': 1.5.1(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/postcss-progressive-custom-properties': 3.0.3(postcss@8.4.35) + postcss: 8.4.35 + dev: true + + /postcss-color-hex-alpha@9.0.3(postcss@8.4.35): + resolution: {integrity: sha512-7sEHU4tAS6htlxun8AB9LDrCXoljxaC34tFVRlYKcvO+18r5fvGiXgv5bQzN40+4gXLCyWSMRK5FK31244WcCA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-color-rebeccapurple@9.0.2(postcss@8.4.35): + resolution: {integrity: sha512-f+RDEAPW2m8UbJWkSpRfV+QxhSaQhDMihI75DVGJJh4oRIoegjheeRtINFJum9D8BqGJcvD4GLjggTvCwZ4zuA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-colormin@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-TXKOxs9LWcdYo5cgmcSHPkyrLAh86hX1ijmyy6J8SbOhyv6ua053M3ZAM/0j44UsnQNIWdl8gb5L7xX2htKeLw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + browserslist: 4.22.3 + caniuse-api: 3.0.0 + colord: 2.9.3 + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-convert-values@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-aeBmaTnGQ+NUSVQT8aY0sKyAD/BaLJenEKZ03YK0JnDE1w1Rr8XShoxdal2V2H26xTJKr3v5haByOhJuyT4UYw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + browserslist: 4.22.3 + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-custom-media@10.0.2(postcss@8.4.35): + resolution: {integrity: sha512-zcEFNRmDm2fZvTPdI1pIW3W//UruMcLosmMiCdpQnrCsTRzWlKQPYMa1ud9auL0BmrryKK1+JjIGn19K0UjO/w==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/cascade-layer-name-parser': 1.0.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/media-query-list-parser': 2.1.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + postcss: 8.4.35 + dev: true + + /postcss-custom-properties@13.3.4(postcss@8.4.35): + resolution: {integrity: sha512-9YN0gg9sG3OH+Z9xBrp2PWRb+O4msw+5Sbp3ZgqrblrwKspXVQe5zr5sVqi43gJGwW/Rv1A483PRQUzQOEewvA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/cascade-layer-name-parser': 1.0.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-custom-selectors@7.1.6(postcss@8.4.35): + resolution: {integrity: sha512-svsjWRaxqL3vAzv71dV0/65P24/FB8TbPX+lWyyf9SZ7aZm4S4NhCn7N3Bg+Z5sZunG3FS8xQ80LrCU9hb37cw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/cascade-layer-name-parser': 1.0.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-dir-pseudo-class@8.0.1(postcss@8.4.35): + resolution: {integrity: sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-discard-comments@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-discard-duplicates@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-discard-empty@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-discard-overridden@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-double-position-gradients@5.0.3(postcss@8.4.35): + resolution: {integrity: sha512-QKYpwmaSm6HcdS0ndAuWSNNMv78R1oSySoh3mYBmctHWr2KWcwPJVakdOyU4lvFVW0GRu9wfIQwGeM4p3xU9ow==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/postcss-progressive-custom-properties': 3.0.3(postcss@8.4.35) + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-focus-visible@9.0.1(postcss@8.4.35): + resolution: {integrity: sha512-N2VQ5uPz3Z9ZcqI5tmeholn4d+1H14fKXszpjogZIrFbhaq0zNAtq8sAnw6VLiqGbL8YBzsnu7K9bBkTqaRimQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-focus-within@8.0.1(postcss@8.4.35): + resolution: {integrity: sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-font-variant@5.0.0(postcss@8.4.35): + resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-gap-properties@5.0.1(postcss@8.4.35): + resolution: {integrity: sha512-k2z9Cnngc24c0KF4MtMuDdToROYqGMMUQGcE6V0odwjHyOHtaDBlLeRBV70y9/vF7KIbShrTRZ70JjsI1BZyWw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-image-set-function@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-/O1xwqpJiz/apxGQi7UUfv1xUcorvkHZfvCYHPpRxxZj2WvjD0rg0+/+c+u5/Do5CpUg3XvfYxMrhcnjW1ArDQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-lab-function@6.0.9(postcss@8.4.35): + resolution: {integrity: sha512-PKFAVTBEWJYsoSTD7Kp/OzeiMsXaLX39Pv75XgUyF5VrbMfeTw+JqCGsvDP3dPhclh6BemdCFHcjXBG9gO4UCg==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/css-color-parser': 1.5.1(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3) + '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3) + '@csstools/css-tokenizer': 2.2.3 + '@csstools/postcss-progressive-custom-properties': 3.0.3(postcss@8.4.35) + postcss: 8.4.35 + dev: true + + /postcss-logical@7.0.1(postcss@8.4.35): + resolution: {integrity: sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-media-query-parser@0.2.3: + resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} + dev: true + + /postcss-merge-longhand@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + stylehacks: 6.0.2(postcss@8.4.35) + dev: true + + /postcss-merge-rules@6.0.3(postcss@8.4.35): + resolution: {integrity: sha512-yfkDqSHGohy8sGYIJwBmIGDv4K4/WrJPX355XrxQb/CSsT4Kc/RxDi6akqn5s9bap85AWgv21ArcUWwWdGNSHA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + browserslist: 4.22.3 + caniuse-api: 3.0.0 + cssnano-utils: 4.0.1(postcss@8.4.35) + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-minify-font-values@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-minify-gradients@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + colord: 2.9.3 + cssnano-utils: 4.0.1(postcss@8.4.35) + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-minify-params@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-zwQtbrPEBDj+ApELZ6QylLf2/c5zmASoOuA4DzolyVGdV38iR2I5QRMsZcHkcdkZzxpN8RS4cN7LPskOkTwTZw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + browserslist: 4.22.3 + cssnano-utils: 4.0.1(postcss@8.4.35) + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-minify-selectors@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-nesting@12.0.2(postcss@8.4.35): + resolution: {integrity: sha512-63PpJHSeNs93S3ZUIyi+7kKx4JqOIEJ6QYtG3x+0qA4J03+4n0iwsyA1GAHyWxsHYljQS4/4ZK1o2sMi70b5wQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/selector-specificity': 3.0.1(postcss-selector-parser@6.0.15) + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-normalize-charset@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-normalize-display-values@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-positions@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-repeat-style@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-string@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-timing-functions@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-unicode@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-Ff2VdAYCTGyMUwpevTZPZ4w0+mPjbZzLLyoLh/RMpqUqeQKZ+xMm31hkxBavDcGKcxm6ACzGk0nBfZ8LZkStKA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + browserslist: 4.22.3 + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-url@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-whitespace@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-opacity-percentage@2.0.0(postcss@8.4.35): + resolution: {integrity: sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-ordered-values@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + cssnano-utils: 4.0.1(postcss@8.4.35) + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-overflow-shorthand@5.0.1(postcss@8.4.35): + resolution: {integrity: sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-page-break@3.0.4(postcss@8.4.35): + resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} + peerDependencies: + postcss: ^8 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-place@9.0.1(postcss@8.4.35): + resolution: {integrity: sha512-JfL+paQOgRQRMoYFc2f73pGuG/Aw3tt4vYMR6UA3cWVMxivviPTnMFnFTczUJOA4K2Zga6xgQVE+PcLs64WC8Q==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-preset-env@9.3.0(postcss@8.4.35): + resolution: {integrity: sha512-ycw6doPrqV6QxDCtgiyGDef61bEfiSc59HGM4gOw/wxQxmKnhuEery61oOC/5ViENz/ycpRsuhTexs1kUBTvVw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + '@csstools/postcss-cascade-layers': 4.0.2(postcss@8.4.35) + '@csstools/postcss-color-function': 3.0.9(postcss@8.4.35) + '@csstools/postcss-color-mix-function': 2.0.9(postcss@8.4.35) + '@csstools/postcss-exponential-functions': 1.0.3(postcss@8.4.35) + '@csstools/postcss-font-format-keywords': 3.0.1(postcss@8.4.35) + '@csstools/postcss-gamut-mapping': 1.0.2(postcss@8.4.35) + '@csstools/postcss-gradients-interpolation-method': 4.0.9(postcss@8.4.35) + '@csstools/postcss-hwb-function': 3.0.8(postcss@8.4.35) + '@csstools/postcss-ic-unit': 3.0.3(postcss@8.4.35) + '@csstools/postcss-initial': 1.0.1(postcss@8.4.35) + '@csstools/postcss-is-pseudo-class': 4.0.4(postcss@8.4.35) + '@csstools/postcss-logical-float-and-clear': 2.0.1(postcss@8.4.35) + '@csstools/postcss-logical-overflow': 1.0.1(postcss@8.4.35) + '@csstools/postcss-logical-overscroll-behavior': 1.0.1(postcss@8.4.35) + '@csstools/postcss-logical-resize': 2.0.1(postcss@8.4.35) + '@csstools/postcss-logical-viewport-units': 2.0.5(postcss@8.4.35) + '@csstools/postcss-media-minmax': 1.1.2(postcss@8.4.35) + '@csstools/postcss-media-queries-aspect-ratio-number-values': 2.0.5(postcss@8.4.35) + '@csstools/postcss-nested-calc': 3.0.1(postcss@8.4.35) + '@csstools/postcss-normalize-display-values': 3.0.2(postcss@8.4.35) + '@csstools/postcss-oklab-function': 3.0.9(postcss@8.4.35) + '@csstools/postcss-progressive-custom-properties': 3.0.3(postcss@8.4.35) + '@csstools/postcss-relative-color-syntax': 2.0.9(postcss@8.4.35) + '@csstools/postcss-scope-pseudo-class': 3.0.1(postcss@8.4.35) + '@csstools/postcss-stepped-value-functions': 3.0.4(postcss@8.4.35) + '@csstools/postcss-text-decoration-shorthand': 3.0.4(postcss@8.4.35) + '@csstools/postcss-trigonometric-functions': 3.0.4(postcss@8.4.35) + '@csstools/postcss-unset-value': 3.0.1(postcss@8.4.35) + autoprefixer: 10.4.17(postcss@8.4.35) + browserslist: 4.22.3 + css-blank-pseudo: 6.0.1(postcss@8.4.35) + css-has-pseudo: 6.0.1(postcss@8.4.35) + css-prefers-color-scheme: 9.0.1(postcss@8.4.35) + cssdb: 7.10.0 + postcss: 8.4.35 + postcss-attribute-case-insensitive: 6.0.2(postcss@8.4.35) + postcss-clamp: 4.1.0(postcss@8.4.35) + postcss-color-functional-notation: 6.0.4(postcss@8.4.35) + postcss-color-hex-alpha: 9.0.3(postcss@8.4.35) + postcss-color-rebeccapurple: 9.0.2(postcss@8.4.35) + postcss-custom-media: 10.0.2(postcss@8.4.35) + postcss-custom-properties: 13.3.4(postcss@8.4.35) + postcss-custom-selectors: 7.1.6(postcss@8.4.35) + postcss-dir-pseudo-class: 8.0.1(postcss@8.4.35) + postcss-double-position-gradients: 5.0.3(postcss@8.4.35) + postcss-focus-visible: 9.0.1(postcss@8.4.35) + postcss-focus-within: 8.0.1(postcss@8.4.35) + postcss-font-variant: 5.0.0(postcss@8.4.35) + postcss-gap-properties: 5.0.1(postcss@8.4.35) + postcss-image-set-function: 6.0.2(postcss@8.4.35) + postcss-lab-function: 6.0.9(postcss@8.4.35) + postcss-logical: 7.0.1(postcss@8.4.35) + postcss-nesting: 12.0.2(postcss@8.4.35) + postcss-opacity-percentage: 2.0.0(postcss@8.4.35) + postcss-overflow-shorthand: 5.0.1(postcss@8.4.35) + postcss-page-break: 3.0.4(postcss@8.4.35) + postcss-place: 9.0.1(postcss@8.4.35) + postcss-pseudo-class-any-link: 9.0.1(postcss@8.4.35) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.35) + postcss-selector-not: 7.0.1(postcss@8.4.35) + postcss-value-parser: 4.2.0 + dev: true + + /postcss-pseudo-class-any-link@9.0.1(postcss@8.4.35): + resolution: {integrity: sha512-cKYGGZ9yzUZi+dZd7XT2M8iSDfo+T2Ctbpiizf89uBTBfIpZpjvTavzIJXpCReMVXSKROqzpxClNu6fz4DHM0Q==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-reduce-initial@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-YGKalhNlCLcjcLvjU5nF8FyeCTkCO5UtvJEt0hrPZVCTtRLSOH4z00T1UntQPj4dUmIYZgMj8qK77JbSX95hSw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + browserslist: 4.22.3 + caniuse-api: 3.0.0 + postcss: 8.4.35 + dev: true + + /postcss-reduce-transforms@6.0.1(postcss@8.4.35): + resolution: {integrity: sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.35): + resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} + peerDependencies: + postcss: ^8.0.3 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-resolve-nested-selector@0.1.1: + resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} + dev: true + + /postcss-safe-parser@6.0.0(postcss@8.4.35): + resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.3.3 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-scss@4.0.9(postcss@8.4.35): + resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.4.29 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-selector-not@7.0.1(postcss@8.4.35): + resolution: {integrity: sha512-1zT5C27b/zeJhchN7fP0kBr16Cc61mu7Si9uWWLoA3Px/D9tIJPKchJCkUH3tPO5D0pCFmGeApAv8XpXBQJ8SQ==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-selector-parser@6.0.15: + resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + dev: true + + /postcss-svgo@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ==} + engines: {node: ^14 || ^16 || >= 18} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-value-parser: 4.2.0 + svgo: 3.2.0 + dev: true + + /postcss-unique-selectors@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + dev: true + + /postcss@8.4.35: + resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.0 + source-map-js: 1.0.2 + + /prebuild-install@7.1.1: + resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} + engines: {node: '>=10'} + hasBin: true + requiresBuild: true + dependencies: + detect-libc: 2.0.2 + expand-template: 2.0.3 + github-from-package: 0.0.0 + minimist: 1.2.8 + mkdirp-classic: 0.5.3 + napi-build-utils: 1.0.2 + node-abi: 3.54.0 + pump: 3.0.0 + rc: 1.2.8 + simple-get: 4.0.1 + tar-fs: 2.1.1 + tunnel-agent: 0.6.0 + dev: false + optional: true + + /preferred-pm@3.1.2: + resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==} + engines: {node: '>=10'} + dependencies: + find-up: 5.0.0 + find-yarn-workspace-root2: 1.2.16 + path-exists: 4.0.0 + which-pm: 2.0.0 + dev: false + + /prismjs@1.29.0: + resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} + engines: {node: '>=6'} + dev: false + + /probe-image-size@7.2.3: + resolution: {integrity: sha512-HubhG4Rb2UH8YtV4ba0Vp5bQ7L78RTONYu/ujmCu5nBI8wGv24s4E9xSKBi0N1MowRpxk76pFCpJtW0KPzOK0w==} + dependencies: + lodash.merge: 4.6.2 + needle: 2.9.1 + stream-parser: 0.3.1 + transitivePeerDependencies: + - supports-color + dev: false + + /promise-worker-transferable@1.0.4: + resolution: {integrity: sha512-bN+0ehEnrXfxV2ZQvU2PetO0n4gqBD4ulq3MI1WOPLgr7/Mg9yRQkX5+0v1vagr74ZTsl7XtzlaYDo2EuCeYJw==} + dependencies: + is-promise: 2.2.2 + lie: 3.3.0 + dev: false + + /prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + dev: false + + /property-information@6.4.1: + resolution: {integrity: sha512-OHYtXfu5aI2sS2LWFSN5rgJjrQ4pCy8i1jubJLe2QvMF8JJ++HXTUIVWFLfXJoaOfvYYjk2SN8J2wFUWIGXT4w==} + dev: false + + /pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + requiresBuild: true + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: false + optional: true + + /punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + dev: true + + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + /queue-tick@1.0.1: + resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} + requiresBuild: true + dev: false + optional: true + + /quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + dev: true + + /rc@1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + requiresBuild: true + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.8 + strip-json-comments: 2.0.1 + dev: false + optional: true + + /read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + dev: true + + /read-pkg@3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} + dependencies: + load-json-file: 4.0.0 + normalize-package-data: 2.5.0 + path-type: 3.0.0 + dev: true + + /read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + dependencies: + '@types/normalize-package-data': 2.4.4 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + dev: true + + /readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + dev: false + + /readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + + /redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + dev: true + + /regexp.prototype.flags@1.5.2: + resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + define-properties: 1.2.1 + es-errors: 1.3.0 + set-function-name: 2.0.1 + dev: true + + /rehype-parse@9.0.0: + resolution: {integrity: sha512-WG7nfvmWWkCR++KEkZevZb/uw41E8TsH4DsY9UxsTbIXCVGbAs4S+r8FrQ+OtH5EEQAs+5UxKC42VinkmpA1Yw==} + dependencies: + '@types/hast': 3.0.4 + hast-util-from-html: 2.0.1 + unified: 11.0.4 + dev: false + + /rehype-raw@7.0.0: + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} + dependencies: + '@types/hast': 3.0.4 + hast-util-raw: 9.0.2 + vfile: 6.0.1 + dev: false + + /rehype-stringify@10.0.0: + resolution: {integrity: sha512-1TX1i048LooI9QoecrXy7nGFFbFSufxVRAfc6Y9YMRAi56l+oB0zP51mLSV312uRuvVLPV1opSlJmslozR1XHQ==} + dependencies: + '@types/hast': 3.0.4 + hast-util-to-html: 9.0.0 + unified: 11.0.4 + dev: false + + /rehype@13.0.1: + resolution: {integrity: sha512-AcSLS2mItY+0fYu9xKxOu1LhUZeBZZBx8//5HKzF+0XP+eP8+6a5MXn2+DW2kfXR6Dtp1FEXMVrjyKAcvcU8vg==} + dependencies: + '@types/hast': 3.0.4 + rehype-parse: 9.0.0 + rehype-stringify: 10.0.0 + unified: 11.0.4 + dev: false + + /remark-gfm@4.0.0: + resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} + dependencies: + '@types/mdast': 4.0.3 + mdast-util-gfm: 3.0.0 + micromark-extension-gfm: 3.0.0 + remark-parse: 11.0.0 + remark-stringify: 11.0.0 + unified: 11.0.4 + transitivePeerDependencies: + - supports-color + dev: false + + /remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + dependencies: + '@types/mdast': 4.0.3 + mdast-util-from-markdown: 2.0.0 + micromark-util-types: 2.0.0 + unified: 11.0.4 + transitivePeerDependencies: + - supports-color + dev: false + + /remark-rehype@11.1.0: + resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.3 + mdast-util-to-hast: 13.0.2 + unified: 11.0.4 + vfile: 6.0.1 + dev: false + + /remark-smartypants@2.1.0: + resolution: {integrity: sha512-qoF6Vz3BjU2tP6OfZqHOvCU0ACmu/6jhGaINSQRI9mM7wCxNQTKB3JUAN4SVoN2ybElEDTxBIABRep7e569iJw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + retext: 8.1.0 + retext-smartypants: 5.2.0 + unist-util-visit: 5.0.0 + dev: false + + /remark-stringify@11.0.0: + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + dependencies: + '@types/mdast': 4.0.3 + mdast-util-to-markdown: 2.1.0 + unified: 11.0.4 + dev: false + + /request-light@0.7.0: + resolution: {integrity: sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==} + dev: false + + /require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + dev: false + + /require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + dev: true + + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + + /resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + dev: true + + /resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + /restore-cursor@4.0.0: + resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: false + + /retext-latin@3.1.0: + resolution: {integrity: sha512-5MrD1tuebzO8ppsja5eEu+ZbBeUNCjoEarn70tkXOS7Bdsdf6tNahsv2bY0Z8VooFF6cw7/6S+d3yI/TMlMVVQ==} + dependencies: + '@types/nlcst': 1.0.4 + parse-latin: 5.0.1 + unherit: 3.0.1 + unified: 10.1.2 + dev: false + + /retext-smartypants@5.2.0: + resolution: {integrity: sha512-Do8oM+SsjrbzT2UNIKgheP0hgUQTDDQYyZaIY3kfq0pdFzoPk+ZClYJ+OERNXveog4xf1pZL4PfRxNoVL7a/jw==} + dependencies: + '@types/nlcst': 1.0.4 + nlcst-to-string: 3.1.1 + unified: 10.1.2 + unist-util-visit: 4.1.2 + dev: false + + /retext-stringify@3.1.0: + resolution: {integrity: sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==} + dependencies: + '@types/nlcst': 1.0.4 + nlcst-to-string: 3.1.1 + unified: 10.1.2 + dev: false + + /retext@8.1.0: + resolution: {integrity: sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==} + dependencies: + '@types/nlcst': 1.0.4 + retext-latin: 3.1.0 + retext-stringify: 3.1.0 + unified: 10.1.2 + dev: false + + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + /rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rollup@4.10.0: + resolution: {integrity: sha512-t2v9G2AKxcQ8yrG+WGxctBes1AomT0M4ND7jTFBCVPXQ/WFTvNSefIrNSmLKhIKBrvN8SG+CZslimJcT3W2u2g==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + dependencies: + '@types/estree': 1.0.5 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.10.0 + '@rollup/rollup-android-arm64': 4.10.0 + '@rollup/rollup-darwin-arm64': 4.10.0 + '@rollup/rollup-darwin-x64': 4.10.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.10.0 + '@rollup/rollup-linux-arm64-gnu': 4.10.0 + '@rollup/rollup-linux-arm64-musl': 4.10.0 + '@rollup/rollup-linux-riscv64-gnu': 4.10.0 + '@rollup/rollup-linux-x64-gnu': 4.10.0 + '@rollup/rollup-linux-x64-musl': 4.10.0 + '@rollup/rollup-win32-arm64-msvc': 4.10.0 + '@rollup/rollup-win32-ia32-msvc': 4.10.0 + '@rollup/rollup-win32-x64-msvc': 4.10.0 + fsevents: 2.3.3 + dev: false + + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + + /safe-array-concat@1.1.0: + resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} + engines: {node: '>=0.4'} + dependencies: + call-bind: 1.0.6 + get-intrinsic: 1.2.4 + has-symbols: 1.0.3 + isarray: 2.0.5 + dev: true + + /safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + dev: false + + /safe-regex-test@1.0.3: + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + es-errors: 1.3.0 + is-regex: 1.1.4 + dev: true + + /safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + dev: false + + /sass@1.70.0: + resolution: {integrity: sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==} + engines: {node: '>=14.0.0'} + hasBin: true + dependencies: + chokidar: 3.6.0 + immutable: 4.3.5 + source-map-js: 1.0.2 + + /sax@1.3.0: + resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} + dev: false + + /section-matter@1.0.0: + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} + dependencies: + extend-shallow: 2.0.1 + kind-of: 6.0.3 + dev: false + + /semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + dev: true + + /semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + dev: false + + /semver@7.6.0: + resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + + /server-destroy@1.0.1: + resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==} + dev: false + + /set-function-length@1.2.1: + resolution: {integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.2 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.2 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.1 + dev: true + + /sharp@0.32.6: + resolution: {integrity: sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==} + engines: {node: '>=14.15.0'} + requiresBuild: true + dependencies: + color: 4.2.3 + detect-libc: 2.0.2 + node-addon-api: 6.1.0 + prebuild-install: 7.1.1 + semver: 7.6.0 + simple-get: 4.0.1 + tar-fs: 3.0.5 + tunnel-agent: 0.6.0 + dev: false + optional: true + + /shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + dependencies: + shebang-regex: 1.0.0 + dev: true + + /shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: false + + /shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + dev: true + + /shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: false + + /shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + dev: true + + /shikiji-core@0.9.19: + resolution: {integrity: sha512-AFJu/vcNT21t0e6YrfadZ+9q86gvPum6iywRyt1OtIPjPFe25RQnYJyxHQPMLKCCWA992TPxmEmbNcOZCAJclw==} + dev: false + + /shikiji@0.9.19: + resolution: {integrity: sha512-Kw2NHWktdcdypCj1GkKpXH4o6Vxz8B8TykPlPuLHOGSV8VkhoCLcFOH4k19K4LXAQYRQmxg+0X/eM+m2sLhAkg==} + dependencies: + shikiji-core: 0.9.19 + dev: false + + /side-channel@1.0.5: + resolution: {integrity: sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + object-inspect: 1.13.1 + dev: true + + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + /signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + dev: false + + /simple-concat@1.0.1: + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + requiresBuild: true + dev: false + optional: true + + /simple-get@4.0.1: + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} + requiresBuild: true + dependencies: + decompress-response: 6.0.0 + once: 1.4.0 + simple-concat: 1.0.1 + dev: false + optional: true + + /simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + requiresBuild: true + dependencies: + is-arrayish: 0.3.2 + dev: false + optional: true + + /sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + dev: false + + /slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + dev: true + + /slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + + /source-map-js@1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + + /space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + dev: false + + /spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.17 + dev: true + + /spdx-exceptions@2.4.0: + resolution: {integrity: sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==} + dev: true + + /spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + dependencies: + spdx-exceptions: 2.4.0 + spdx-license-ids: 3.0.17 + dev: true + + /spdx-license-ids@3.0.17: + resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==} + dev: true + + /sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + dev: false + + /stdin-discarder@0.1.0: + resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + bl: 5.1.0 + dev: false + + /stream-parser@0.3.1: + resolution: {integrity: sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ==} + dependencies: + debug: 2.6.9 + transitivePeerDependencies: + - supports-color + dev: false + + /streamx@2.15.8: + resolution: {integrity: sha512-6pwMeMY/SuISiRsuS8TeIrAzyFbG5gGPHFQsYjUr/pbBadaL1PCWmzKw+CHZSwainfvcF6Si6cVLq4XTEwswFQ==} + requiresBuild: true + dependencies: + fast-fifo: 1.3.2 + queue-tick: 1.0.1 + optionalDependencies: + bare-events: 2.2.0 + dev: false + optional: true + + /string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + /string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + dev: false + + /string-width@6.1.0: + resolution: {integrity: sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==} + engines: {node: '>=16'} + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 10.3.0 + strip-ansi: 7.1.0 + dev: false + + /string-width@7.1.0: + resolution: {integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==} + engines: {node: '>=18'} + dependencies: + emoji-regex: 10.3.0 + get-east-asian-width: 1.2.0 + strip-ansi: 7.1.0 + dev: false + + /string.prototype.padend@3.1.5: + resolution: {integrity: sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} + dependencies: + call-bind: 1.0.6 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + dependencies: + call-bind: 1.0.6 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + dependencies: + safe-buffer: 5.2.1 + dev: false + + /stringify-entities@4.0.3: + resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==} + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + dev: false + + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + + /strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + dependencies: + ansi-regex: 6.0.1 + dev: false + + /strip-bom-string@1.0.0: + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} + dev: false + + /strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + /strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + dev: false + + /strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + dependencies: + min-indent: 1.0.1 + dev: true + + /strip-json-comments@2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: false + optional: true + + /style-search@0.1.0: + resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} + dev: true + + /stylehacks@6.0.2(postcss@8.4.35): + resolution: {integrity: sha512-00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + dependencies: + browserslist: 4.22.3 + postcss: 8.4.35 + postcss-selector-parser: 6.0.15 + dev: true + + /stylelint@14.16.1: + resolution: {integrity: sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + dependencies: + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.15) + balanced-match: 2.0.0 + colord: 2.9.3 + cosmiconfig: 7.1.0 + css-functions-list: 3.2.1 + debug: 4.3.4 + fast-glob: 3.3.2 + fastest-levenshtein: 1.0.16 + file-entry-cache: 6.0.1 + global-modules: 2.0.0 + globby: 11.1.0 + globjoin: 0.1.4 + html-tags: 3.3.1 + ignore: 5.3.1 + import-lazy: 4.0.0 + imurmurhash: 0.1.4 + is-plain-object: 5.0.0 + known-css-properties: 0.26.0 + mathml-tag-names: 2.1.3 + meow: 9.0.0 + micromatch: 4.0.5 + normalize-path: 3.0.0 + picocolors: 1.0.0 + postcss: 8.4.35 + postcss-media-query-parser: 0.2.3 + postcss-resolve-nested-selector: 0.1.1 + postcss-safe-parser: 6.0.0(postcss@8.4.35) + postcss-selector-parser: 6.0.15 + postcss-value-parser: 4.2.0 + resolve-from: 5.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + style-search: 0.1.0 + supports-hyperlinks: 2.3.0 + svg-tags: 1.0.0 + table: 6.8.1 + v8-compile-cache: 2.4.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-hyperlinks@2.3.0: + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + supports-color: 7.2.0 + dev: true + + /supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + /svg-tags@1.0.0: + resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} + dev: true + + /svgo@3.2.0: + resolution: {integrity: sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==} + engines: {node: '>=14.0.0'} + hasBin: true + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 5.1.0 + css-tree: 2.3.1 + css-what: 6.1.0 + csso: 5.0.5 + picocolors: 1.0.0 + dev: true + + /table@6.8.1: + resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} + engines: {node: '>=10.0.0'} + dependencies: + ajv: 8.12.0 + lodash.truncate: 4.4.2 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /tar-fs@2.1.1: + resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + requiresBuild: true + dependencies: + chownr: 1.1.4 + mkdirp-classic: 0.5.3 + pump: 3.0.0 + tar-stream: 2.2.0 + dev: false + optional: true + + /tar-fs@3.0.5: + resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==} + requiresBuild: true + dependencies: + pump: 3.0.0 + tar-stream: 3.1.7 + optionalDependencies: + bare-fs: 2.1.3 + bare-path: 2.1.0 + dev: false + optional: true + + /tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + requiresBuild: true + dependencies: + bl: 4.1.0 + end-of-stream: 1.4.4 + fs-constants: 1.0.0 + inherits: 2.0.4 + readable-stream: 3.6.2 + dev: false + optional: true + + /tar-stream@3.1.7: + resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} + requiresBuild: true + dependencies: + b4a: 1.6.6 + fast-fifo: 1.3.2 + streamx: 2.15.8 + dev: false + optional: true + + /three@0.160.1: + resolution: {integrity: sha512-Bgl2wPJypDOZ1stAxwfWAcJ0WQf7QzlptsxkjYiURPz+n5k4RBDLsq+6f9Y75TYxn6aHLcWz+JNmwTOXWrQTBQ==} + dev: false + + /to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + dev: false + + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + + /trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + dev: false + + /trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + dev: true + + /trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + dev: false + + /tsconfck@3.0.2(typescript@5.3.3): + resolution: {integrity: sha512-6lWtFjwuhS3XI4HsX4Zg0izOI3FU/AI9EGVlPEUMDIhvLPMD4wkiof0WCoDgW7qY+Dy198g4d9miAqUHWHFH6Q==} + engines: {node: ^18 || >=20} + hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + dependencies: + typescript: 5.3.3 + dev: false + + /tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + requiresBuild: true + dependencies: + safe-buffer: 5.2.1 + dev: false + optional: true + + /type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + dev: true + + /type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + dev: true + + /type-fest@2.19.0: + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} + dev: false + + /typed-array-buffer@1.0.1: + resolution: {integrity: sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + es-errors: 1.3.0 + is-typed-array: 1.1.13 + dev: true + + /typed-array-byte-length@1.0.0: + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.6 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.13 + dev: true + + /typed-array-byte-offset@1.0.0: + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.6 + call-bind: 1.0.6 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.13 + dev: true + + /typed-array-length@1.0.4: + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + dependencies: + call-bind: 1.0.6 + for-each: 0.3.3 + is-typed-array: 1.1.13 + dev: true + + /typesafe-path@0.2.2: + resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==} + dev: false + + /typescript-auto-import-cache@0.3.2: + resolution: {integrity: sha512-+laqe5SFL1vN62FPOOJSUDTZxtgsoOXjneYOXIpx5rQ4UMiN89NAtJLpqLqyebv9fgQ/IMeeTX+mQyRnwvJzvg==} + dependencies: + semver: 7.6.0 + dev: false + + /typescript@5.3.3: + resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} + engines: {node: '>=14.17'} + hasBin: true + dev: false + + /unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.6 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /unherit@3.0.1: + resolution: {integrity: sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==} + dev: false + + /unified@10.1.2: + resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} + dependencies: + '@types/unist': 2.0.10 + bail: 2.0.2 + extend: 3.0.2 + is-buffer: 2.0.5 + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 5.3.7 + dev: false + + /unified@11.0.4: + resolution: {integrity: sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==} + dependencies: + '@types/unist': 3.0.2 + bail: 2.0.2 + devlop: 1.1.0 + extend: 3.0.2 + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 6.0.1 + dev: false + + /unist-util-is@5.2.1: + resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} + dependencies: + '@types/unist': 2.0.10 + dev: false + + /unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + dependencies: + '@types/unist': 3.0.2 + dev: false + + /unist-util-modify-children@3.1.1: + resolution: {integrity: sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==} + dependencies: + '@types/unist': 2.0.10 + array-iterate: 2.0.1 + dev: false + + /unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + dependencies: + '@types/unist': 3.0.2 + dev: false + + /unist-util-stringify-position@3.0.3: + resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} + dependencies: + '@types/unist': 2.0.10 + dev: false + + /unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + dependencies: + '@types/unist': 3.0.2 + dev: false + + /unist-util-visit-children@2.0.2: + resolution: {integrity: sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==} + dependencies: + '@types/unist': 2.0.10 + dev: false + + /unist-util-visit-parents@5.1.3: + resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} + dependencies: + '@types/unist': 2.0.10 + unist-util-is: 5.2.1 + dev: false + + /unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + dependencies: + '@types/unist': 3.0.2 + unist-util-is: 6.0.0 + dev: false + + /unist-util-visit@4.1.2: + resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} + dependencies: + '@types/unist': 2.0.10 + unist-util-is: 5.2.1 + unist-util-visit-parents: 5.1.3 + dev: false + + /unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + dependencies: + '@types/unist': 3.0.2 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + dev: false + + /update-browserslist-db@1.0.13(browserslist@4.22.3): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.22.3 + escalade: 3.1.2 + picocolors: 1.0.0 + + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.3.1 + dev: true + + /util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + /v8-compile-cache@2.4.0: + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + dev: true + + /validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + dev: true + + /vfile-location@5.0.2: + resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==} + dependencies: + '@types/unist': 3.0.2 + vfile: 6.0.1 + dev: false + + /vfile-message@3.1.4: + resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} + dependencies: + '@types/unist': 2.0.10 + unist-util-stringify-position: 3.0.3 + dev: false + + /vfile-message@4.0.2: + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} + dependencies: + '@types/unist': 3.0.2 + unist-util-stringify-position: 4.0.0 + dev: false + + /vfile@5.3.7: + resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} + dependencies: + '@types/unist': 2.0.10 + is-buffer: 2.0.5 + unist-util-stringify-position: 3.0.3 + vfile-message: 3.1.4 + dev: false + + /vfile@6.0.1: + resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} + dependencies: + '@types/unist': 3.0.2 + unist-util-stringify-position: 4.0.0 + vfile-message: 4.0.2 + dev: false + + /vite@5.1.1(sass@1.70.0): + resolution: {integrity: sha512-wclpAgY3F1tR7t9LL5CcHC41YPkQIpKUGeIuT8MdNwNZr6OqOTLs7JX5vIHAtzqLWXts0T+GDrh9pN2arneKqg==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.19.12 + postcss: 8.4.35 + rollup: 4.10.0 + sass: 1.70.0 + optionalDependencies: + fsevents: 2.3.3 + dev: false + + /vitefu@0.2.5(vite@5.1.1): + resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + vite: + optional: true + dependencies: + vite: 5.1.1(sass@1.70.0) + dev: false + + /volar-service-css@0.0.29(@volar/language-service@2.0.3): + resolution: {integrity: sha512-2kNdgEYEiLeeer3wkagNBVDPa3Zj7mBDeM7D3iYmBXA0LCwd2tQL3eASzcDW9Gvac1g478UtptK468GxzUAEcA==} + peerDependencies: + '@volar/language-service': ~2.0.1 + peerDependenciesMeta: + '@volar/language-service': + optional: true + dependencies: + '@volar/language-service': 2.0.3 + vscode-css-languageservice: 6.2.12 + vscode-uri: 3.0.8 + dev: false + + /volar-service-emmet@0.0.29(@volar/language-service@2.0.3): + resolution: {integrity: sha512-sXRMfQ970lpOQxUcKH9B4DqE7FCNhPy6V4m3gw+kgH17mADQ2rdL63b8osXFy5bnAMBcsXRhtJXJPmh/LgZXEw==} + peerDependencies: + '@volar/language-service': ~2.0.1 + peerDependenciesMeta: + '@volar/language-service': + optional: true + dependencies: + '@volar/language-service': 2.0.3 + '@vscode/emmet-helper': 2.9.2 + volar-service-html: 0.0.29(@volar/language-service@2.0.3) + dev: false + + /volar-service-html@0.0.29(@volar/language-service@2.0.3): + resolution: {integrity: sha512-ctTSU46KCLxcaR53mAod2wBWSEIXGdXdejqHEDPSX33H5rA2X89zyYEpuk9BOVzIHG8G8rggVXCGnGaXxmYrCw==} + peerDependencies: + '@volar/language-service': ~2.0.1 + peerDependenciesMeta: + '@volar/language-service': + optional: true + dependencies: + '@volar/language-service': 2.0.3 + vscode-html-languageservice: 5.1.2 + vscode-uri: 3.0.8 + dev: false + + /volar-service-prettier@0.0.29(@volar/language-service@2.0.3): + resolution: {integrity: sha512-GxcDKfiVv3fc4XUtUOkQpX0QlFjWppRCVWIBp751gOKJwDex142xMlbTxP9la9tollbmj2O/tVUrqqLDGQ+Lsg==} + peerDependencies: + '@volar/language-service': ~2.0.1 + prettier: ^2.2 || ^3.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + prettier: + optional: true + dependencies: + '@volar/language-service': 2.0.3 + vscode-uri: 3.0.8 + dev: false + + /volar-service-typescript-twoslash-queries@0.0.29(@volar/language-service@2.0.3): + resolution: {integrity: sha512-hdI8ZO1Wc/I5+iwKKnOfXW7ktpBe0qLoXz5+8viS6aV9gycKSAKAs6sayLTATQZcZ1EAESUqTqGS/vJOUgZOsg==} + peerDependencies: + '@volar/language-service': ~2.0.1 + peerDependenciesMeta: + '@volar/language-service': + optional: true + dependencies: + '@volar/language-service': 2.0.3 + dev: false + + /volar-service-typescript@0.0.29(@volar/language-service@2.0.3)(@volar/typescript@2.0.3): + resolution: {integrity: sha512-ssBhGT0Wrh670NRTrLoikzoRbszd72jIa02IKbrfI9QIIONvygOmIJ9jSqj4jxHEWz/KSCgCEhCyR7hEH80kGg==} + peerDependencies: + '@volar/language-service': ~2.0.1 + '@volar/typescript': ~2.0.1 + peerDependenciesMeta: + '@volar/language-service': + optional: true + dependencies: + '@volar/language-service': 2.0.3 + '@volar/typescript': 2.0.3 + path-browserify: 1.0.1 + semver: 7.6.0 + typescript-auto-import-cache: 0.3.2 + vscode-languageserver-textdocument: 1.0.11 + vscode-nls: 5.2.0 + vscode-uri: 3.0.8 + dev: false + + /vscode-css-languageservice@6.2.12: + resolution: {integrity: sha512-PS9r7HgNjqzRl3v91sXpCyZPc8UDotNo6gntFNtGCKPhGA9Frk7g/VjX1Mbv3F00pn56D+rxrFzR9ep4cawOgA==} + dependencies: + '@vscode/l10n': 0.0.18 + vscode-languageserver-textdocument: 1.0.11 + vscode-languageserver-types: 3.17.5 + vscode-uri: 3.0.8 + dev: false + + /vscode-html-languageservice@5.1.2: + resolution: {integrity: sha512-wkWfEx/IIR3s2P5yD4aTGHiOb8IAzFxgkSt1uSC3itJ4oDAm23yG7o0L29JljUdnXDDgLafPAvhv8A2I/8riHw==} + dependencies: + '@vscode/l10n': 0.0.18 + vscode-languageserver-textdocument: 1.0.11 + vscode-languageserver-types: 3.17.5 + vscode-uri: 3.0.8 + dev: false + + /vscode-jsonrpc@8.2.0: + resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} + engines: {node: '>=14.0.0'} + dev: false + + /vscode-languageserver-protocol@3.17.5: + resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} + dependencies: + vscode-jsonrpc: 8.2.0 + vscode-languageserver-types: 3.17.5 + dev: false + + /vscode-languageserver-textdocument@1.0.11: + resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==} + dev: false + + /vscode-languageserver-types@3.17.5: + resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} + dev: false + + /vscode-languageserver@9.0.1: + resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} + hasBin: true + dependencies: + vscode-languageserver-protocol: 3.17.5 + dev: false + + /vscode-nls@5.2.0: + resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==} + dev: false + + /vscode-uri@2.1.2: + resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} + dev: false + + /vscode-uri@3.0.8: + resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} + dev: false + + /web-namespaces@2.0.1: + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + dev: false + + /which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which-pm-runs@1.1.0: + resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} + engines: {node: '>=4'} + dev: false + + /which-pm@2.0.0: + resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} + engines: {node: '>=8.15'} + dependencies: + load-yaml-file: 0.2.0 + path-exists: 4.0.0 + dev: false + + /which-pm@2.1.1: + resolution: {integrity: sha512-xzzxNw2wMaoCWXiGE8IJ9wuPMU+EYhFksjHxrRT8kMT5SnocBPRg69YAMtyV4D12fP582RA+k3P8H9J5EMdIxQ==} + engines: {node: '>=8.15'} + dependencies: + load-yaml-file: 0.2.0 + path-exists: 4.0.0 + dev: false + + /which-typed-array@1.1.14: + resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.6 + call-bind: 1.0.6 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.2 + dev: true + + /which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: false + + /widest-line@4.0.1: + resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} + engines: {node: '>=12'} + dependencies: + string-width: 5.1.2 + dev: false + + /wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: false + + /wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + dev: false + + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + /write-file-atomic@4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + dev: true + + /y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + dev: false + + /yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + dev: false + + /yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + /yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + dev: true + + /yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + dev: true + + /yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + dev: false + + /yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + dependencies: + cliui: 8.0.1 + escalade: 3.1.2 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + dev: false + + /yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: false + + /yocto-queue@1.0.0: + resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} + engines: {node: '>=12.20'} + dev: false + + /zod@3.22.4: + resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} + dev: false + + /zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + dev: false diff --git a/postcss.config.cjs b/postcss.config.cjs new file mode 100644 index 0000000..0499b2f --- /dev/null +++ b/postcss.config.cjs @@ -0,0 +1,11 @@ +module.exports = { + plugins: [ + require('autoprefixer'), + require('cssnano')({ + preset: 'default', + }), + require('postcss-preset-env')({ + stage: 3, + }), + ], +}; \ No newline at end of file diff --git a/postcss.config.js b/postcss.config.js deleted file mode 100644 index bde6bc6..0000000 --- a/postcss.config.js +++ /dev/null @@ -1,10 +0,0 @@ -module.exports = (context) => ({ - map: context.options.map, - parser: context.options.parser, - plugins: [ - require('autoprefixer')({ - grid: true, - flex: true - }) - ] -}) \ No newline at end of file diff --git a/public/3d/products/Rock_sheet_DARKGOLD.glb b/public/3d/products/Rock_sheet_DARKGOLD.glb new file mode 100644 index 0000000..3682bbf Binary files /dev/null and b/public/3d/products/Rock_sheet_DARKGOLD.glb differ diff --git a/public/3d/products/Rock_sheet_GOLDENBARK.glb b/public/3d/products/Rock_sheet_GOLDENBARK.glb new file mode 100644 index 0000000..ae9b010 Binary files /dev/null and b/public/3d/products/Rock_sheet_GOLDENBARK.glb differ diff --git a/public/3d/products/Rock_sheet_PINK.glb b/public/3d/products/Rock_sheet_PINK.glb new file mode 100644 index 0000000..0fe5f3e Binary files /dev/null and b/public/3d/products/Rock_sheet_PINK.glb differ diff --git a/public/3d/products/Rock_sheet_WILDLIFE.glb b/public/3d/products/Rock_sheet_WILDLIFE.glb new file mode 100644 index 0000000..7b6bd9f Binary files /dev/null and b/public/3d/products/Rock_sheet_WILDLIFE.glb differ diff --git a/public/3d/products/Rockfoil_DARKGOLD_3D.glb b/public/3d/products/Rockfoil_DARKGOLD_3D.glb new file mode 100644 index 0000000..13c8f4e Binary files /dev/null and b/public/3d/products/Rockfoil_DARKGOLD_3D.glb differ diff --git a/public/3d/products/Rockfoil_DARKGOLD_3D_vertical.glb b/public/3d/products/Rockfoil_DARKGOLD_3D_vertical.glb new file mode 100644 index 0000000..fc0c249 Binary files /dev/null and b/public/3d/products/Rockfoil_DARKGOLD_3D_vertical.glb differ diff --git a/public/3d/products/Rockfoil_GOLDENBARK_3D.glb b/public/3d/products/Rockfoil_GOLDENBARK_3D.glb new file mode 100644 index 0000000..db7c1d2 Binary files /dev/null and b/public/3d/products/Rockfoil_GOLDENBARK_3D.glb differ diff --git a/public/3d/products/Rockfoil_GOLDENBARK_3D_vertical.glb b/public/3d/products/Rockfoil_GOLDENBARK_3D_vertical.glb new file mode 100644 index 0000000..df86062 Binary files /dev/null and b/public/3d/products/Rockfoil_GOLDENBARK_3D_vertical.glb differ diff --git a/public/3d/products/Rockfoil_PINK_3D.glb b/public/3d/products/Rockfoil_PINK_3D.glb new file mode 100644 index 0000000..d1b89eb Binary files /dev/null and b/public/3d/products/Rockfoil_PINK_3D.glb differ diff --git a/public/3d/products/Rockfoil_PINK_3D_vertical.glb b/public/3d/products/Rockfoil_PINK_3D_vertical.glb new file mode 100644 index 0000000..a6e9d22 Binary files /dev/null and b/public/3d/products/Rockfoil_PINK_3D_vertical.glb differ diff --git a/public/3d/products/Rockfoil_WILDLIFE_3D.glb b/public/3d/products/Rockfoil_WILDLIFE_3D.glb new file mode 100644 index 0000000..7e4d0b3 Binary files /dev/null and b/public/3d/products/Rockfoil_WILDLIFE_3D.glb differ diff --git a/public/3d/products/Rockfoil_WILDLIFE_3D_vertical.glb b/public/3d/products/Rockfoil_WILDLIFE_3D_vertical.glb new file mode 100644 index 0000000..134d4a5 Binary files /dev/null and b/public/3d/products/Rockfoil_WILDLIFE_3D_vertical.glb differ diff --git a/public/CNAME b/public/CNAME new file mode 100644 index 0000000..a526090 --- /dev/null +++ b/public/CNAME @@ -0,0 +1 @@ +anewstyle.cz \ No newline at end of file diff --git a/public/css/style.css b/public/css/style.css new file mode 100644 index 0000000..afd2d43 --- /dev/null +++ b/public/css/style.css @@ -0,0 +1,1976 @@ +:root { + --color-black: hsl(0, 0%, 0%); + --color-black--trans: hsla(0, 0%, 0%, 0.5); + --color-black--trans-dark: hsla(0, 0%, 0%, 0.8); + --color-white: hsl(0, 0%, 100%); + --color-border: var(--color-white); + --color-trans: hsla(0, 0%, 0%, 0); + --color-bg: hsl(0, 0%, 7%); + --color-bg-nav: hsla(0, 0%, 7%, 0.8); + --color-primary: hsl(43, 26%, 41%); + --color-primary--hover: #a39062; + --color-secondary: hsl(0, 0%, 7%); + --color-font: hsl(0, 0%, 100%); + --trans-time: 0.25s; + --trans-fnc: ease-in-out; + --animate-all: all ease-in-out var(0.25s); + --gap-xxl: 3.2rem; + --gap-xl: 2.4rem; + --gap-l: 1.6rem; + --gap-m: 0.8rem; + --gap-s: 0.4rem; + --font-text: system-ui; + --font-title: segoe-ui-bold, sans-serif; + --border-width: 1px; + --nav-height: 8rem; +} +@media only screen and (max-width: 1024px) { + :root { + --nav-height: 7rem; + } +} +@media only screen and (max-width: 768px) { + :root { + --nav-height: 5rem; + } +} + +* { + box-sizing: border-box; +} + +html { + height: 100%; + margin: 0; + font-size: 62.5%; + scroll-behavior: smooth; +} + +body { + position: relative; + padding: 0; + margin: 0; + background-color: hsl(0, 0%, 7%); +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +address { + font-style: normal; +} + +img { + max-width: 100%; + height: auto; + vertical-align: middle; + font-style: italic; + background-repeat: no-repeat; + background-size: cover; + shape-margin: 0.75rem; +} + +body { + display: flex; + flex-flow: column wrap; +} +body nav { + flex: none; +} +body header { + flex: 0 0 auto; + width: 100%; +} +body main { + flex: 1 1 auto; + width: 100%; +} +body footer { + flex: 0 0 auto; + width: 100%; +} + +.element-to-middle { + position: absolute; + inset: 50% auto auto 50%; + translate: -50% -50%; +} + +.text-center { + text-align: center; +} + +.text-left { + text-align: left; +} + +.text-right { + text-align: right; +} + +.text-justify { + text-align: justify; +} + +.uppercase { + text-transform: uppercase; +} + +.relative { + position: relative; +} + +.overflow-hidden { + overflow: hidden; +} + +.inline-flex { + display: inline-flex; +} + +.inline-block { + display: inline-block; +} + +.invisible { + position: absolute; + width: 0; + height: 0; + opacity: 0; + font-size: 0; + z-index: -999; +} + +.grid { + display: grid; + grid-template-columns: repeat(var(--col-count, 2), minmax(3.2rem, 1fr)); + align-items: flex-start; + align-content: flex-start; + justify-content: flex-start; + gap: var(--gap, 3.2rem); +} +@media only screen and (max-width: 768px) { + .grid { + --col-count: 1; + } +} + +.space { + padding-block-end: var(--space-pad-bottom, 10vh); +} +@media only screen and (max-width: 1366px) { + .space { + --space-pad-bottom: 5rem; + } +} +@media only screen and (max-width: 768px) { + .space { + --space-pad-bottom: 8vh; + } +} + +.no-pb { + padding-bottom: 0 !important; +} + +.no-pt { + padding-top: 0 !important; +} + +.inline-container { + container-type: inline-size; +} + +.h-100 { + min-block-size: 100vh; +} +@media only screen and (max-width: 560px) { + .h-100 { + min-block-size: unset; + } +} + +.tablet-content { + display: none; +} +@media only screen and (max-width: 768px) { + .tablet-content { + display: block; + } +} + +@media only screen and (max-width: 768px) { + .not-tablet-content { + display: none; + } +} + +h1, +h2, +h3, +h4, +h5, +h6, +p, +ul { + margin: 0; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: "segoe-ui-bold", sans-serif; + font-weight: 400; + font-style: normal; +} + +p, +span, +small { + font-family: system-ui; + font-weight: 100; +} + +.title { + --title-justify-content: flex-start; + --title-font-size: 7em; + --title-color: hsl(0, 0%, 100%); + --title-mg-bottom: clamp(3.2rem, 8vh, 10rem); + display: flex; + flex-flow: row wrap; + align-items: center; + align-content: normal; + justify-content: var(--title-justify-content); + gap: 0; + display: block; + margin-bottom: var(--title-mg-bottom); + font-family: "segoe-ui-bold", sans-serif; + font-size: var(--title-font-size); + font-weight: 900; + line-height: 1.2; + letter-spacing: 0.1em; + color: var(--title-color); + text-transform: uppercase; +} +@media only screen and (max-width: 1440px) { + .title { + --title-font-size: 4em; + } +} +@media only screen and (max-width: 1024px) { + .title { + --title-font-size: 3.2em; + } +} +@media only screen and (max-width: 768px) { + .title { + --title-font-size: 4em; + --title-mg-bottom: 2.4rem; + } +} +@media only screen and (max-width: 560px) { + .title { + --title-font-size: 3.2em; + } +} +.title--center { + --title-justify-content: center; + text-align: center; +} +.title--white { + --title-color: hsl(0, 0%, 100%); +} +.title--mg-s { + --title-mg-bottom: 3.2rem; +} +.title--s { + --title-font-size: 3.2em; + --title-mg-bottom: 3.2rem; + --title-color: hsl(43, 26%, 41%); +} +@media only screen and (max-width: 1440px) { + .title--s { + --title-font-size: 2.4em; + } +} +@media only screen and (max-width: 1024px) { + .title--s { + --title-font-size: 1.6em; + } +} +@media only screen and (max-width: 768px) { + .title--s { + --title-font-size: 3.2em; + --title-mg-bottom: 2.4rem; + } +} +@media only screen and (max-width: 560px) { + .title--s { + --title-font-size: 2.4em; + } +} +.title--xs { + --title-font-size: 1.6rem; + --title-mg-bottom: 1.6rem; + --title-color: hsl(43, 26%, 41%); + margin-block-start: 5vh; +} + +.desc { + --border-width: 0; + --mg-b: 5rem; + --desc-font-size: clamp(1.6rem, 3vh, 2.4rem); + border-left: var(--border-width) solid hsl(0, 0%, 100%); + padding-left: var(--desc-pad-left); + margin-block-end: var(--mg-b); + font-family: system-ui; + font-size: var(--desc-font-size); + line-height: 1.7; + color: hsl(0, 0%, 100%); +} +@media only screen and (max-width: 1024px) { + .desc { + --desc-font-size: medium; + } +} +@media only screen and (max-width: 560px) { + .desc { + --desc-font-size: 1.6rem; + --mg-b: 3.2rem; + } +} +.desc--line { + --desc-pad-left: 1.6rem; + --border-width: 0.2rem; +} +.desc--no-mg { + --mg-b: 0 !important; +} +.desc--mg-s { + --mg-b: 3.2rem; +} +.desc--center { + text-align: center; +} +.desc strong, +.desc a:not(.button), +.desc b, +.desc span { + font-family: inherit; + font-size: inherit; +} +.desc strong { + color: hsl(43, 26%, 41%); +} + +address { + font-family: system-ui; + font-size: clamp(1.6rem, 2vh, 2.4rem); + color: hsl(0, 0%, 100%); +} + +ul:not([class]) { + display: grid; + grid-template-columns: minmax(3.2rem, auto); + align-items: flex-start; + align-content: flex-start; + justify-content: flex-start; + gap: 0.8rem; + margin-block-end: 1.6rem; + font-family: system-ui; + font-size: var(--list_font-size, large); + color: hsl(0, 0%, 100%); +} +@media only screen and (max-width: 768px) { + ul:not([class]) { + --list_font-size: medium; + } +} + +.button { + --btn-color: hsl(0, 0%, 0%); + --btn-bg-color: hsl(0, 0%, 100%); + --btn-padding-x: 3.2rem; + --btn-padding-y: 1.6rem; + --btn-width: 20rem; + --btn-font-size: clamp(1.6rem, 2vh, 18px); + --icon-size: 0.8rem; + display: inline-flex; + flex-flow: row nowrap; + align-items: center; + align-content: center; + justify-content: center; + gap: 1.6rem; + border: 1px solid var(--color-trans); + min-width: var(--btn-width); + padding-block: var(--btn-padding-y); + padding-inline: var(--btn-padding-x); + background-color: var(--btn-bg-color); + border-radius: 0.25em; + font-family: system-ui; + font-size: var(--btn-font-size); + font-weight: var(--btn_font-weight, 600); + line-height: 1; + color: var(--btn-color); + text-decoration: none; + text-transform: var(--btn-text-transform, uppercase); + translate: 0 var(--btn_trans-y, 0); + transition: box-shadow var(--trans-time) var(--trans-fnc), translate var(--trans-time) var(--trans-fnc); + cursor: pointer; + white-space: nowrap; + box-shadow: 0 0 var(--btn-shadow_size, 0.8rem) 0 var(--btn_shadow-color, var(--color-trans)); +} +@media only screen and (max-width: 1024px) { + .button { + --btn-padding-x: 1.6rem; + --btn-padding-y: 1.2rem; + --btn-font-size: medium; + --btn-width: 16rem; + } +} +@media (hover: hover) { + .button:hover:not([aria-disabled=true], disabled) { + --btn_shadow-color: hsla(0, 0%, 100%, 0.4); + --btn_trans-y: calc(0.4rem * -1); + } +} +.button:is(.active) { + --btn_shadow-color: hsl(43, 26%, 41%); + --btn-shadow_size: 3.2rem; + --btn_font-weight: 900; + --btn-bg-color: hsl(43, 26%, 41%); +} +.button--s { + --btn-padding-x: 1.6rem; + --btn-padding-y: 0.8rem; + --btn-width: unset; + --btn-font-size: clamp(14px, 2vh, 1.6rem); +} +@media only screen and (max-width: 560px) { + .button--s { + --btn-font-size: 14px; + } + .button--s .icon { + --icon-size: 14px; + } +} +.button--xs { + --btn-padding-x: 0.8rem; + --btn-padding-y: 0.4rem; + --btn-width: unset; + --btn-text-transform: initial; + --btn-font-size: small; +} +@media (hover: hover) { + .button--xs:hover { + --btn_trans-y: -2px; + } +} +.button:is([aria-disabled=true], disabled) { + --btn-color: hsl(0, 0%, 50%); + --btn-bg-color: hsl(0, 0%, 83%); + pointer-events: none; +} +.button > small { + font-weight: inherit; + white-space: nowrap; +} + +.burger { + --burger-display: none; + position: relative; + display: var(--burger-display); + place-items: center; + inline-size: 2.4rem; + aspect-ratio: 1; + padding: 0; + background: none; + border-color: var(--color-trans); + color: var(--color-white); + cursor: pointer; +} +@media only screen and (max-width: 768px) { + .burger { + --burger-display: grid; + } +} + +.product-list { + display: grid; + grid-template-columns: repeat(4, minmax(1.6rem, 1fr)); + align-items: stretch; + align-content: flex-start; + justify-content: flex-start; + gap: clamp(2.4rem, 5dvi, 5rem); + margin-block-start: 10vh; +} +@media only screen and (max-width: 1024px) { + .product-list { + grid-template-columns: repeat(2, minmax(1rem, 1fr)); + } +} +@media only screen and (max-width: 560px) { + .product-list { + grid-template-columns: minmax(1rem, 1fr); + } +} + +.card { + display: grid; + grid-template-columns: minmax(1.6rem, 1fr); + align-items: flex-start; + align-content: center; + justify-content: center; + gap: 1.6rem; + cursor: pointer; + border-radius: 0.8rem; + scale: var(--card_scale, 1); + transition: scale 0.25s ease-in-out; +} +@media (hover: hover) { + .card:hover { + --card_scale: 1.05; + --card_color: hsl(43, 26%, 41%); + --card-text_trans-y: calc(0.4rem * -1); + --card-btn_trans-y: 0.8rem; + --card-btn_opacity: 1; + } +} +.card > div > .button { + opacity: var(--card-btn_opacity, 0); + transition: opacity 0.25s ease-in-out, translate 0.25s ease-in-out; + translate: 0 var(--card-btn_trans-y, -0.4rem); +} +.card .icon-ar { + inset: auto clamp(1.6rem, 4dvi, 1.6rem) 6.5rem auto; +} +@media only screen and (max-width: 1440px) { + .card img { + min-inline-size: 100%; + } +} +.card > strong { + color: var(--card_color, hsl(0, 0%, 100%)); + font-size: clamp(1.6rem, 2.5vh, 2.4rem); + font-family: "segoe-ui-bold", sans-serif; + text-align: center; + letter-spacing: 0.1em; + text-transform: uppercase; + translate: 0 var(--card-text_trans-y, 0); + transition: translate 0.25s ease-in-out, color 0.25s ease-in-out; +} + +.container { + inline-size: var(--container-width, 1366px); + margin-inline: auto; +} +@media only screen and (max-width: 1440px) { + .container { + --container-width: 75%; + } +} +@media only screen and (max-width: 1366px) { + .container { + --container-width: 85%; + } +} +@media only screen and (max-width: 1024px) { + .container { + --container-width: 90%; + } +} +@media only screen and (max-width: 768px) { + .container { + --container-width: calc(100% - calc(2.4rem * 2)); + } +} +.container--s { + --container-width: min(768px, calc(100% - calc(2.4rem * 2))); +} + +.dialog { + border: 0.4rem solid hsla(120, 2%, 17%, 0.7); + container-type: inline-size; + inline-size: min(768px, 100%); + max-block-size: calc(100vh - 3.2rem); + background-color: hsl(0, 0%, 0%); + border-radius: 2.4rem; + padding: 0; +} +.dialog::backdrop { + backdrop-filter: blur(0.8rem); + background-color: hsla(0, 0%, 0%, 0.25); +} +.dialog__close { + position: sticky; + inset: 0 auto auto 100%; + translate: -1.6rem 1.6rem; + z-index: 1; + background-color: unset; + padding: 0; + color: var(--close_color, hsl(0, 0%, 100%)); + scale: var(--close_scale, 1); + cursor: pointer; + border-color: hsla(0, 0%, 0%, 0); + transition: scale 0.25s ease-in-out, color 0.25s ease-in-out; +} +@media (hover: hover) { + .dialog__close:hover { + --close_scale: 1.1; + --close_color: hsl(43, 26%, 41%); + } +} +.dialog__close:focus-visible { + outline: none; +} + +.icon { + --icon-size: 2.4rem; + display: block; + inline-size: var(--icon-size); + min-inline-size: var(--icon-size); + block-size: var(--icon-size); + aspect-ratio: 1; + fill: currentColor; +} +.icon:is(.icon-ar):not(.icon-nav) { + --icon-size: clamp(2.4rem, 10dvi, 4.5rem); + scale: var(--ar-scale, 1); + position: absolute; + transition: scale 0.25s ease-in-out; + padding: 0.8rem; + background-color: hsl(0, 0%, 100%); + border-radius: 50%; + pointer-events: none; +} + +.link { + --link-text-decor: none; + --link-text-trans: none; + --icon-trans-x: 0; + display: inline-flex; + flex-flow: row nowrap; + align-items: stretch; + align-content: normal; + justify-content: flex-start; + gap: 1.2rem; + font-family: system-ui; + font-size: var(--link-font-size, large); + color: var(--link-color, inherit); + text-decoration: var(--link-text-decor); + text-transform: var(--link-text-trans); + transition: color var(--trans-time) var(--trans-fnc); +} +@media (hover: hover) { + .link:hover { + --link-text-decor: underline; + --icon-trans-x: 0.4rem; + } +} +@media only screen and (max-width: 768px) { + .link { + --trans-time: 0; + --link-font-size: medium; + } +} +.link--uppercase { + --link-text-trans: uppercase; +} +.link--underline { + --link-text-decor: underline; +} +.link--picture { + position: relative; +} +.link--picture address { + position: absolute; + inset: auto auto 0.8rem 0.8rem; + padding: 0.5; + padding: 0.4rem; + background-color: hsl(0, 0%, 100%); + color: hsl(0, 0%, 0%); + white-space: nowrap; +} +.link--light { + color: hsl(0, 0%, 100%); +} +.link > span { + font-size: 1em; + color: currentColor; +} +.link > .icon { + --icon-size: 2.4rem; + transform: translateX(var(--icon-trans-x)); + transition: transform 0.25s ease-in-out; +} +@media only screen and (max-width: 425px) { + .link > .icon { + --icon-size: 1.6rem; + } +} + +.logo { + --logo-display: block; + --logo-pad-x: 2.4rem; + --logo-max-width: none; + display: var(--logo-display); + padding: 0 var(--logo-pad-x); +} +@media only screen and (max-width: 1024px) { + .logo { + --logo-pad-x: 0.8rem; + --logo-max-width: 12rem; + } +} +.logo--mobile { + --logo-display: none; + --logo-max-width: 14rem; +} +@media only screen and (max-width: 768px) { + .logo--mobile { + --logo-display: block; + } +} +.logo > amp-img { + display: block; + max-width: var(--logo-max-width); + height: auto; +} + +@property --angle { + syntax: ""; + initial-value: 0deg; + inherits: true; +} +@property --radius { + syntax: ""; + initial-value: 0%; + inherits: true; +} +body { + min-block-size: 100vh; + display: grid; + place-items: center; + background-color: hsl(0, 0%, 10%); +} + +.palette { + display: grid; + place-items: center; + position: relative; + inline-size: 110px; + block-size: 110px; + background-color: unset; + border-radius: 100vmax; + border-color: transparent; + cursor: pointer; + font-family: "segoe-ui-bold", sans-serif; +} +@media (hover: hover) { + .palette:hover { + --text-scale: 1.1; + } +} +.palette:after { + opacity: var(--text-opacity, 1); + content: attr(data-text); + color: hsl(0, 0%, 0%); + font-size: 12px; + z-index: 1; + max-inline-size: calc(100% - 1.6rem); + scale: var(--text-scale, 1); + font-weight: 900; + letter-spacing: 0.05em; + text-align: center; + text-transform: uppercase; + transition: opacity 0.25s linear, scale 0.25s linear; +} +.palette--active { + --radius: 25%; + --text-opacity: 0; +} +@media (hover: hover) { + .palette--active > div:hover { + --radius: 65%; + --text-opacity: 1; + } +} +.palette__color { + display: inherit; + place-items: inherit; + position: absolute; + inline-size: 100%; + block-size: 100%; + border-radius: 100vmax; + background-color: var(--bg-color); + translate: calc(cos(var(--angle)) * var(--radius)) calc(sin(var(--angle) * -1) * var(--radius)); + transition: translate 0.25s linear; +} +.palette__color:after { + opacity: var(--text-opacity, 0); + content: attr(data-text); + color: hsl(0, 0%, 0%); + font-size: 1.6rem; + z-index: 1; + letter-spacing: 0.05em; + font-weight: 700; + transition: opacity 0.25s linear; +} +.palette__color:nth-of-type(1) { + --bg-color: hsl(23.64deg 16.42% 60.59%); + --angle: 0deg; +} +.palette__color:nth-of-type(2) { + --bg-color: hsl(38.4deg 24.04% 59.22%); + --angle: 90deg; +} +.palette__color:nth-of-type(3) { + --bg-color: hsl(43, 26%, 41%); + --angle: 180deg; +} +.palette__color:nth-of-type(4) { + --bg-color: hsl(37.37deg 47.11% 47.45%); + --angle: 270deg; +} + +.piktogram { + display: var(--piktogtam-display, grid); + grid-template-columns: var(--template-columns, minmax(3.2rem, 5fr) minmax(3.2rem, 8fr)); + align-items: center; + align-content: flex-start; + justify-content: flex-start; + gap: var(--gap, 3.2rem); +} +@media only screen and (max-width: 1024px) { + .piktogram { + grid-template-columns: repeat(2, minmax(1rem, 1fr)); + } +} +@media only screen and (max-width: 768px) { + .piktogram { + grid-template-columns: minmax(1rem, 1fr); + } +} +.piktogram:not(:last-of-type) { + margin-block-end: 5vh; +} +@media only screen and (max-width: 560px) { + .piktogram { + --template-columns: minmax(3.2rem, 1fr); + } +} +.piktogram--invert { + --template-columns: minmax(3.2rem, 8fr) minmax(3.2rem, 5fr); +} +@media only screen and (max-width: 1024px) { + .piktogram--invert { + grid-template-columns: repeat(2, minmax(1rem, 1fr)); + } +} +@media only screen and (max-width: 768px) { + .piktogram--invert { + grid-template-columns: minmax(1rem, 1fr); + } +} +@media only screen and (max-width: 768px) { + .piktogram--invert > .piktogram__box { + grid-row-start: 1; + } +} +.piktogram--hidden:not(.visible) { + --piktogtam-display: none; +} +.piktogram__box { + display: grid; + place-items: center; + inline-size: 110px; + aspect-ratio: 1/1.33; + margin-inline: auto; + overflow: hidden; +} +.piktogram__box:has(> .palette) { + overflow: initial; +} +.piktogram__circle { + display: grid; + place-items: center; + align-content: center; + inline-size: inherit; + gap: 1.6rem; + aspect-ratio: 1; + background-color: hsl(0, 0%, 100%); + border-radius: 50%; + color: hsl(0, 0%, 0%); + text-align: center; +} +.piktogram__circle > img { + display: block; + inline-size: auto; + block-size: 40px; +} +.piktogram__circle > img:is([alt=LED]) { + block-size: 65px; +} +.piktogram__circle > small { + font-size: 10.5px; + font-weight: 800; + text-transform: uppercase; + white-space: pre-wrap; + display: inline-block; +} +.piktogram__circle + div { + position: relative; + scale: 1 -1; +} +.piktogram__circle + div:after { + position: absolute; + inset: 0; + content: ""; + background-image: linear-gradient(0, hsla(0, 0%, 0%, 0), hsla(0, 0%, 7%, 0.5) 11%, hsla(0, 0%, 7%, 0.8) 22%, hsl(0, 0%, 7%) 33%); +} +.piktogram__desc > p { + margin: 0; + color: hsl(0, 0%, 100%); +} +@media only screen and (max-width: 768px) { + .piktogram__desc > p { + text-align: center; + } +} +.piktogram__desc > p > strong { + color: hsl(43, 26%, 41%); +} + +.product-detail { + display: grid; + grid-template-columns: minmax(1rem, 1fr); + align-items: flex-start; + align-content: flex-start; + justify-content: stretch; + max-inline-size: 100%; + align-items: center; + background-color: inherit; + padding-inline: clamp(2.4rem, 8dvi, 5rem); + padding-block: clamp(2.4rem, 8dvi, 5rem); + color: hsl(0, 0%, 100%); +} +.product-detail > strong { + text-align: center; + font-size: 6vh; + font-weight: 900; + line-height: 1.25; + letter-spacing: 0.1em; + font-family: "segoe-ui-bold", sans-serif; + text-wrap: pretty; + line-height: 1; + text-transform: uppercase; +} +@media only screen and (max-width: 560px) { + .product-detail > strong { + font-size: 2.4rem; + } +} +.product-detail__img { + aspect-ratio: 16/9; + position: relative; + display: var(--model-display, block); + margin-block-start: clamp(2.4rem, 4vh, 3.2rem); + margin-block-end: clamp(2.4rem, 3vh, 2.4rem); +} +@media only screen and (max-width: 1024px) { + .product-detail__img { + --model-display: block; + } +} +.product-detail__img > a { + color: var(--img-color, hsl(0, 0%, 0%)); +} +@media (hover: hover) { + .product-detail__img > a:hover { + --ar-scale: 1.1; + } +} +.product-detail__img > a .icon-ar { + inset: auto clamp(1.6rem, 5dvi, 3.2rem) clamp(1.6rem, 5dvi, 3.2rem) auto; +} +.product-detail__img > a > img { + position: absolute; + inset: 0; + inline-size: 100%; + block-size: 100%; +} +@media only screen and (max-width: 560px) { + .product-detail__img > a > img { + font-size: 3.2rem; + } +} +.product-detail__hidden { + display: none; +} +.product-detail__content { + display: grid; + grid-template-columns: minmax(1rem, 1fr); + align-items: flex-start; + align-content: flex-start; + justify-content: flex-start; + gap: clamp(1.6rem, 5dvi, 2.4rem); +} +.product-detail__footer { + display: flex; + flex-flow: row nowrap; + align-items: center; + align-content: normal; + justify-content: space-between; + gap: 1.6rem; +} +.product-detail__price { + display: flex; + flex-flow: column nowrap; + align-items: flex-start; + align-content: normal; + justify-content: flex-start; + gap: 0.4rem; + font-size: clamp(2.4rem, 3.5vh, 5rem); + font-weight: 900; + font-family: "segoe-ui-bold", sans-serif; + line-height: 1; +} +.product-detail__price > small { + font-size: clamp(1.6rem, 0.5em, 2.4rem); + font-weight: 400; +} + +model-viewer { + --fancybox-content-bg: transparent; + inline-size: 100%; + block-size: 100%; +} + +@media only screen and (min-width: 769px) { + ::-webkit-scrollbar { + width: 0.8rem; + } + /* Track */ + ::-webkit-scrollbar-track { + background: hsl(0, 0%, 0%); + } + /* Handle */ + ::-webkit-scrollbar-thumb { + background: hsl(43, 26%, 41%); + border-radius: 0.4rem; + cursor: move; + } + /* Handle on hover */ + ::-webkit-scrollbar-thumb:hover { + background: #a39062; + } +} +.social { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(2.4rem, 3.2rem)); + align-items: center; + align-content: flex-start; + justify-content: flex-start; + gap: 1.6rem; +} +.social a { + --item-scale: 1; + display: grid; + place-items: center; + inline-size: 3.2rem; + aspect-ratio: 1; + color: var(--color-white); + text-decoration: none; +} +@media (hover: hover) { + .social a:hover { + --item-scale: 1.1; + } +} +.social a > .icon { + --icon-size: 3.2rem; + scale: var(--item-scale); + transition: scale 0.25s ease-in-out; + fill: currentColor; +} + +.tags { + --tag-display: none; +} +.tags--all { + --tag-display: inline-block; +} +.tags > ul { + display: flex; + flex-flow: row wrap; + align-items: center; + align-content: normal; + justify-content: flex-start; + gap: 0.8rem; + padding: 0; + font-family: "segoe-ui-bold", sans-serif; + list-style: none; +} +@media only screen and (max-width: 560px) { + .tags > ul { + --mg-b: 3.2rem; + } +} +.tags li { + display: var(--tag-display, none); +} +.tags li:not(:last-child) { + padding: 0.4rem 0.8rem; + background-color: hsl(43, 26%, 41%); + font-size: small; + color: hsl(0, 0%, 0%); + border-radius: 0.4rem; + text-transform: initial; +} +.tags li:nth-child(1) { + --tag-display: inline-block; +} +.tags li:nth-child(2) { + --tag-display: inline-block; +} +.tags li:nth-child(3) { + --tag-display: inline-block; +} +.tags li:nth-child(4) { + --tag-display: inline-block; +} +.tags li:nth-child(5) { + --tag-display: inline-block; +} +.tags li:last-child { + --tag-display: inline-block; +} + +.ba-slider { + --ba-position: 50%; + position: relative; + display: grid; + max-height: 80vh; + overflow: hidden; + place-content: center; + border-radius: 1.6rem; +} +@media only screen and (max-width: 560px) { + .ba-slider { + max-height: 215px; + } +} +.ba-slider img { + display: block; + inline-size: var(--ba-inline-size); + min-inline-size: var(--ba-inline-size); +} + +.image-container + span { + position: absolute; + inset: auto auto 3.2rem 50%; + font-family: "segoe-ui-bold", sans-serif; + font-size: clamp(1.6rem, 3vh, 2em); + font-weight: 300; + color: var(--color-white); + translate: -50%; + z-index: 3; + pointer-events: none; +} +@media only screen and (max-width: 560px) { + .image-container + span { + bottom: 1.6rem; + font-size: clamp(0.4rem, 3vh, 1.6rem); + } +} + +.slider-image { + max-inline-size: 100%; + block-size: 100%; + min-block-size: 100%; + max-block-size: 100%; + object-fit: cover; + object-position: left; +} + +.image-before, +.image-after { + overflow: hidden; +} +.image-before > strong, +.image-after > strong { + position: absolute; + inset: auto auto 1em calc(var(--ba-inline-size) / 2); + opacity: 0.7; + font-family: "segoe-ui-bold", sans-serif; + font-size: clamp(3.2rem, 7vh, 8em); + font-weight: 900; + letter-spacing: 0.1em; + color: var(--color-white); + text-transform: uppercase; + white-space: nowrap; + translate: -50%; +} +@media only screen and (max-width: 768px) { + .image-before > strong, + .image-after > strong { + font-size: clamp(3.2rem, 5vh, 5rem); + bottom: 1.25em; + } +} +@media only screen and (max-width: 560px) { + .image-before > strong, + .image-after > strong { + font-size: clamp(2.4rem, 3vh, 3.2rem); + bottom: 1.5em; + } +} + +.image-before { + position: absolute; + inset: 0; + inline-size: var(--ba-position); + z-index: 2; +} + +.image-after { + z-index: 1; +} + +.slider { + position: absolute; + inset: 0; + inline-size: 100%; + block-size: 100%; + opacity: 0; + z-index: 2; + cursor: pointer; +} + +.slider:focus-visible ~ .slider-button { + outline: 5px solid black; + outline-offset: 3px; +} + +.slider-line { + position: absolute; + inset: 0; + left: var(--ba-position); + inline-size: 0.2rem; + block-size: 100%; + background-color: #fff; + transform: translateX(-50%); + z-index: 3; + pointer-events: none; +} + +.slider-button { + --icon-size: 1.6rem; + position: absolute; + top: 50%; + left: var(--ba-position); + display: grid; + place-items: center; + block-size: 4rem; + aspect-ratio: 1; + background-color: var(--color-white); + border-radius: 100vmax; + transform: translate(-50%, -50%); + z-index: 3; + box-shadow: 1px 1px 1px hsla(0, 50%, 2%, 0.5); + pointer-events: none; +} + +.contact__wrapper { + --logo_size: 150px; + display: grid; + grid-template-columns: var(--contact_col-temp, var(--logo_size) minmax(1.6rem, 1fr)); + align-items: flex-start; + align-content: flex-start; + justify-content: flex-start; + gap: var(--contact_gap, 10vw); +} +@media only screen and (max-width: 768px) { + .contact__wrapper { + --logo_size: 100px; + --contact_gap: 2.4rem; + } +} +@media only screen and (max-width: 560px) { + .contact__wrapper { + --logo_size: 100px; + --contact_col-temp: minmax(1.6rem, 1fr); + } +} +.contact__wrapper > img { + max-inline-size: var(--logo_size); +} +@media only screen and (max-width: 560px) { + .contact__wrapper > img { + margin-inline: auto; + } +} +.contact__grid { + display: grid; + grid-template-columns: var(--col-temp, minmax(1.6rem, 8fr) minmax(1.6rem, 5fr)); + align-items: flex-start; + align-content: flex-start; + justify-content: flex-start; + gap: var(--contact-inner_gap, 5vw); +} +@media only screen and (max-width: 768px) { + .contact__grid { + --col-temp: minmax(1.6rem, 1fr); + --contact-inner_gap: 3.2rem; + } +} +.contact__grid address { + display: block; + font-size: 1.6rem; + font-weight: 600; + margin-block: 1.6rem; +} +.contact__grid img { + display: block; + max-inline-size: 100%; + border-radius: 0.8rem; +} + +footer { + padding: 1.6rem; + background-color: hsl(0, 0%, 0%); +} +footer > small { + display: block; + width: 100%; + font-family: system-ui; + font-size: small; + color: hsl(0, 0%, 100%); + text-align: center; +} + +section:has(> .gallery) { + padding-inline: 3.2rem; +} +@media only screen and (max-width: 560px) { + section:has(> .gallery) { + padding-inline: 2.4rem; + } +} +@media only screen and (max-width: 560px) { + section:has(> .gallery) .container { + margin-inline: auto; + inline-size: 100%; + max-inline-size: 100%; + } +} + +@media only screen and (max-width: 768px) { + .is-compact .fancybox__footer { + display: none !important; + } +} + +.gallery { + display: grid; + grid-template-columns: repeat(var(--col-count, 4), minmax(0.8rem, 1fr)); + align-items: var(--align-items, flex-start); + align-content: flex-start; + justify-content: flex-start; + gap: var(--gap, 1.6rem); + max-inline-size: 1920px; + margin-block-end: 3.2rem; + margin-inline: auto; +} +@media only screen and (max-width: 1024px) { + .gallery { + --gap: 1.6rem; + --col-count: 3; + } +} +@media only screen and (max-width: 768px) { + .gallery { + --col-count: 2; + } +} +@media only screen and (max-width: 560px) { + .gallery { + --col-count: 1; + --gap: 2.4rem; + } +} + +.gitem { + --photo_scale: 1; + --text_translate-x: calc(-100% - 3.2rem); + --content_backgdrop-filter: blur(0); + container-type: inline-size; + position: relative; + display: block; + border-radius: 1rem; + text-decoration: none; + overflow: hidden; +} +.gitem:first-child { + grid-column-end: span var(--gitem_colspan, 2); + grid-row-end: span var(--gitem_rowspan, 2); +} +@media only screen and (max-width: 560px) { + .gitem:first-child { + --gitem_colspan: 1; + --gitem_rowspan: 1; + } +} +@media (hover: hover) { + .gitem:hover { + --photo_scale: 1.1; + --icon-scale: 1.1; + --gitem_text-opacity: 1; + --content_backgdrop-filter: blur(0.1em); + } +} +.gitem__photo { + position: relative; + inline-size: 100%; + aspect-ratio: 16/9; +} +.gitem__photo img { + position: absolute; + inset: 50% auto auto 50%; + translate: -50% -50%; + display: block; + min-inline-size: 100%; + min-block-size: 100%; + scale: var(--photo_scale); + transition: scale 0.5s ease-in-out; +} +.gitem__content { + position: absolute; + inset: 0; + display: grid; + place-items: center; + padding: 2.4rem; + background-color: hsla(0, 0%, 0%, 0.3); + font-size: clamp(1.6rem, 8cqi, 5vh); + transition: backdrop-filter 0.2s linear; + backdrop-filter: var(--content_backgdrop-filter); + color: hsl(0, 0%, 100%); +} +.gitem__content > strong { + display: block; + max-inline-size: 100%; + padding: 2.4rem; + opacity: var(--gitem_text-opacity, 0); + font-family: "segoe-ui-bold", sans-serif; + font-weight: 900; + line-height: 1.25; + letter-spacing: 0.2em; + text-align: center; + text-transform: uppercase; + text-shadow: var(--color-black) 0 0 1.5rem; + transition: opacity 0.5s var(--trans-fnc); +} +.gitem__content > .icon { + --icon-size: clamp(3.2rem, 10vh, 8rem); + scale: var(--icon-scale, 1); + transition: scale 0.5s ease-in-out, fill 0.25s ease-in-out; + cursor: pointer; +} +@media (hover: hover) { + .gitem__content > .icon:hover { + fill: hsl(43, 26%, 41%); + } +} + +header { + position: relative; + display: grid; + place-items: center; + min-block-size: 100vh; + background-color: var(--color-black); + overflow: hidden; +} + +.header__video { + position: absolute; + inset: 0; + inline-size: 100dvi; + z-index: 1; +} +@media only screen and (max-width: 1024px) { + .header__video { + inline-size: auto; + block-size: 100%; + } +} +.header__content { + display: flex; + flex-flow: column wrap; + align-items: center; + align-content: normal; + justify-content: center; + gap: var(--c_gap, 3em); + animation: headerTitleAnim 0.5s ease-in-out forwards, headerDescAnim 0.5s ease-in-out 0.25s forwards, headerBtnAnim 0.5s ease-in-out 1s forwards; + z-index: 3; +} +@media only screen and (max-width: 768px) { + .header__content { + inline-size: 100%; + padding-inline: 1.6rem; + text-align: center; + } +} +.header__content > div:has(> h1) { + mix-blend-mode: soft-light; +} +.header__content h1 { + position: relative; + display: inline-block; + opacity: var(--c-item-title_opacity); + opacity: var(--header-title_opacity, 0); + font-family: "segoe-ui-bold", sans-serif; + font-size: clamp(3.2rem, 10dvi, 16rem); + font-weight: 900; + line-height: 1; + letter-spacing: 0.1em; + color: hsl(0, 0%, 100%); + filter: opacity(0.5); + text-transform: uppercase; + text-shadow: var(--color-black) 0 0 1.5rem; + translate: 0 var(--header-title_translate-y, 1rem); + transition: opacity 1s var(--trans-fnc), translate 1s var(--trans-fnc); +} +@media only screen and (max-width: 1024px) { + .header__content h1 { + font-size: clamp(3.2rem, 6dvi, 10rem); + } +} +@media only screen and (max-width: 768px) { + .header__content h1 { + font-size: clamp(2.4rem, 8dvi, 7rem); + } +} +@media only screen and (max-width: 560px) { + .header__content h1 { + font-size: clamp(2.4rem, 10vh, 4rem); + } +} +.header__content > strong { + opacity: var(--header-desc_opacity, 0); + font-family: "segoe-ui-bold", sans-serif; + font-size: clamp(2.4rem, 5svi, 4rem); + line-height: 1; + letter-spacing: 0.2em; + color: hsl(0, 0%, 100%); + text-shadow: var(--color-black) 0 0 1.5rem; + translate: 0 -2.5vh; + translate: 0 var(--header-desc_translate-y, -1vh); + transition: opacity 1s var(--trans-fnc), translate 1s var(--trans-fnc); +} +@media only screen and (max-width: 1024px) { + .header__content > strong { + font-size: clamp(1.6rem, 4vi, 2.4rem); + } +} +.header__content > .button { + margin-block-start: 2.5vh; + opacity: var(--header-btn_opacity, 0); + translate: 0 var(--btn_trans-y, -1vh); + transition: opacity 0.5s var(--trans-fnc), translate 0.5s var(--trans-fnc), box-shadow var(--trans-time) var(--trans-fnc); +} + +@keyframes headerTitleAnim { + from { + --header-title_opacity: 0; + --header-title_translate-y: 1rem; + } + to { + --header-title_opacity: 1; + --header-title_translate-y: 0; + } +} +@keyframes headerDescAnim { + from { + --header-desc_opacity: 0; + --header-desc_translate-y: -1vh; + } + to { + --header-desc_opacity: 1; + --header-desc_translate-y: -2.5vh; + } +} +@keyframes headerBtnAnim { + from { + --header-btn_opacity: 0; + --btn_trans-y: -1vh; + } + to { + --header-btn_opacity: 1; + --btn_trans-y: 0; + } +} +nav { + position: fixed; + top: 0; + left: 0; + display: grid; + place-items: center; + width: 100%; + height: var(--nav-height); + background-color: var(--color-bg-nav); + color: var(--nav-color, hsl(0, 0%, 100%)); + z-index: 999; +} +@media only screen and (max-width: 768px) { + nav { + --nav-justify-content: space-between; + --color-bg-nav: hsl(200, 18%, 8%); + } +} + +.nav__container { + display: flex; + flex-flow: row nowrap; + align-items: center; + align-content: center; + justify-content: var(--nav-justify-content, space-between); + gap: 0; + inline-size: calc(100% - clamp(3.2rem, 10dvi, 10rem)); + margin-inline: auto; +} + +.logo { + display: block; + block-size: var(--logo_size, 6rem); + padding: 0; +} +@media only screen and (max-width: 768px) { + .logo { + --logo_size: 4rem; + } +} +.logo > img { + display: block; + block-size: 100%; +} + +.menu { + display: var(--menu-display, inline-flex); + flex-flow: var(--menu-flex-direction, row) nowrap; + align-items: center; + align-content: var(--menu-align-content, center); + justify-content: center; + gap: var(--menu-gap, 5em); + inline-size: auto; + block-size: var(--menu-height, auto); + padding: var(--menu-pad-top, 0) 0 0 0; + background-color: var(--menu-bg, var(--color-trans)); + list-style: none; +} +@media only screen and (max-width: 1366px) { + .menu { + --menu-gap: 2.4rem; + --menu-temp-col: repeat(auto-fit, minmax(110px, auto)); + } +} +@media only screen and (max-width: 768px) { + .menu { + --menu-display: none; + --menu-height: calc(100vh - var(--nav-height)); + --menu-gap: 3.2rem; + --menu-align-content: flex-start; + --menu-bg: var(--color-bg-nav); + --menu-pad-top: 15vh; + position: absolute; + backdrop-filter: blur(0.8rem); + justify-content: center; + inset: 100% 0 auto 0; + } +} +@media only screen and (max-width: 768px) { + .menu--open { + --menu-display: grid; + --menu-temp-col: minmax(130px, 1fr); + } +} +.menu li { + text-align: center; +} +@media only screen and (max-width: 768px) { + .menu li { + animation: showItem 0.25s ease-in-out forwards; + opacity: 0; + } + .menu li:nth-child(1) { + animation-delay: 0.1s; + } + .menu li:nth-child(2) { + animation-delay: 0.2s; + } + .menu li:nth-child(3) { + animation-delay: 0.3s; + } + .menu li:nth-child(4) { + animation-delay: 0.4s; + } + .menu li:nth-child(5) { + animation-delay: 0.5s; + } +} +.menu li a { + --nav-item-min-font-size: 1.6rem; + transition: color var(--trans-time) var(--trans-fnc) 0s; + display: inline-flex; + flex-flow: row nowrap; + align-items: center; + align-content: normal; + justify-content: flex-start; + gap: 0.8rem; + font-family: system-ui; + font-size: clamp(var(--nav-item-min-font-size), 2vh, 2.4rem); + color: var(--nav-color); + text-align: center; + text-decoration: none; + text-transform: uppercase; + white-space: nowrap; +} +@media only screen and (max-width: 1024px) { + .menu li a { + font-size: medium; + } +} +@media only screen and (max-width: 768px) { + .menu li a { + --nav-item-min-font-size: 18px; + text-align: center; + font-size: x-large; + } +} +.menu li a:hover { + text-decoration: underline; + color: hsl(43, 26%, 41%); +} + +@keyframes showMenu { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes showItem { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +section { + --sec-bg: hsl(0, 0%, 7%); + --sec-pad-y: 10vh; + scroll-margin-top: var(--sec_scroll-mg, 0); + padding-block: var(--sec-pad-y); + background-color: var(--sec-bg); +} +@media only screen and (max-width: 1366px) { + section { + --sec-pad-y: 5rem; + } +} +@media only screen and (max-width: 768px) { + section { + --sec-pad-y: 8vh; + --sec_scroll-mg: var(--nav-height); + } +} +section.dark { + --sec-bg: hsl(0, 0%, 0%); +} +section.no-pt { + padding-top: 0; +} +section.light { + --sec-bg: hsl(0, 0%, 100%); +} +section.light .title, +section.light .desc { + color: hsl(0, 0%, 0%) !important; +} +section.light .desc { + font-weight: 400; +} +section.no-p { + padding: 0; +} +section.full-height { + min-height: 100vh; +} +section.full-height > .container { + position: absolute; + inset: 50% auto auto 50%; + translate: -50% -50%; +} + +.nav + main > section:first-of-type { + padding-top: calc(var(--sec-pad-y) + var(--nav-height)); +} + +section:has(> .showcase) { + --sec-pad-y: 0; +} + +.showcase { + display: grid; + grid-template-columns: minmax(1rem, 8fr) minmax(1rem, 5fr); + align-items: center; + inline-size: max(100cqi - 4.8rem, 100px); + max-inline-size: 1920px; + margin-inline: auto; + background-color: inherit; + grid-auto-flow: column; + color: hsl(0, 0%, 100%); +} +@media only screen and (max-width: 1024px) { + .showcase { + grid-template-columns: minmax(1rem, 1fr); + grid-auto-flow: column; + } +} +.showcase__img { + position: relative; + display: grid; + place-items: center; + inline-size: 100%; + aspect-ratio: 1024/813; +} +@media only screen and (max-width: 1024px) { + .showcase__img { + grid-column-start: 1; + grid-column-start: 1; + } +} +.showcase__img > img { + position: absolute; + display: block; + inline-size: 100%; + opacity: var(--img_opacity, 0); + transition: box-shadow 0.25s ease-in-out, opacity 0.25s ease-in-out; + box-shadow: 0 0 2rem 0.5rem var(--img_shadow-color, transparent); +} +.showcase__img > img:is(.active) { + --img_opacity: 1; +} +.showcase__content { + padding-inline-end: 3.5svi; +} +@media only screen and (max-width: 1024px) { + .showcase__content { + display: grid; + grid-template-columns: minmax(1rem, 1fr); + padding-inline-end: 0; + grid-column-start: 1; + } +} +.showcase__content > .not-tablet-content { + margin-block-end: 7vh; +} +.showcase div:is([class*=tablet-content]) { + grid-column-start: 1; + padding-block-start: 7vh; +} +.showcase div:is([class*=tablet-content]) :is(h2) { + margin-block-end: 1.5vh; + font-size: clamp(3.2rem, 5vh, 6rem); + font-weight: 900; + line-height: 1.25; + grid-column-start: 2; + font-family: "segoe-ui-bold", sans-serif; + text-wrap: pretty; +} +@media only screen and (max-width: 1366px) { + .showcase div:is([class*=tablet-content]) :is(h2) { + font-size: clamp(2.4rem, 4vh, 4rem); + } +} +@media only screen and (max-width: 1024px) { + .showcase div:is([class*=tablet-content]) :is(h2) { + text-align: center; + grid-column-start: 1; + } +} +@media only screen and (max-width: 560px) { + .showcase div:is([class*=tablet-content]) :is(h2) { + font-size: clamp(1.6rem, 6.5vw, 3.2rem); + } +} +.showcase div:is([class*=tablet-content]) :is(h2) > span { + display: block; + font-size: 1.35em; + font-weight: inherit; + letter-spacing: 0.1em; + text-transform: uppercase; +} +@media only screen and (max-width: 560px) { + .showcase div:is([class*=tablet-content]) :is(h2) > span { + font-size: 1.5em; + } +} +.showcase div:is([class*=tablet-content]) :is(.desc, p) { + font-size: max(1.6rem, min(3vh, 2.4rem)); + line-height: 1.7; + text-wrap: pretty; +} +@media only screen and (max-width: 1024px) { + .showcase div:is([class*=tablet-content]) :is(.desc, p) { + grid-column-start: 1; + text-align: center; + } +} +.showcase div:is([class*=tablet-content]) :is(.desc, p) > strong { + color: hsl(43, 26%, 41%); +} +@media only screen and (max-width: 560px) { + .showcase div:is([class*=tablet-content]) :is(.desc, p) { + font-size: 1.6rem; + } +} +.showcase__buttons { + display: grid; + grid-template-columns: repeat(3, minmax(2.4rem, 1fr)); + align-items: stretch; + align-content: flex-start; + justify-content: stretch; + gap: 1.6rem; + container-type: inline-size; +} +@media only screen and (max-width: 1024px) { + .showcase__buttons { + grid-row-start: 1; + margin-block-end: 7vh; + margin-block-start: -0.25vh; + } +} +.showcase__buttons > .button { + --icon-size: 3.2rem; + flex-flow: column wrap; +} +@container (inline-size <= 600px) { + .showcase__buttons > .button { + --btn-padding-x: 0.4rem; + --btn-padding-y: 0.8rem; + --btn-font-size: small; + --btn-width: unset; + } +} +.showcase__buttons > .button--s { + --icon-size: 1.6rem; +} + +/*# sourceMappingURL=style.css.map */ diff --git a/public/css/style.css.map b/public/css/style.css.map new file mode 100644 index 0000000..ff14cc4 --- /dev/null +++ b/public/css/style.css.map @@ -0,0 +1 @@ +{"version":3,"sourceRoot":"","sources":["../../src/styles/Base/_root.scss","../../src/styles/Base/Mixins/_responsive.scss","../../src/styles/Base/_default.scss","../../src/styles/Base/_variables.scss","../../src/styles/Base/_layout.scss","../../src/styles/Base/_shared-classes.scss","../../src/styles/Base/Mixins/_position.scss","../../src/styles/Base/Mixins/_grid.scss","../../src/styles/Base/_typography.scss","../../src/styles/Base/Mixins/_flex.scss","../../src/styles/Base/Mixins/_border.scss","../../src/styles/Components/_button.scss","../../src/styles/Base/Mixins/_hover.scss","../../src/styles/Components/_burger.scss","../../src/styles/Components/_card.scss","../../src/styles/Components/_container.scss","../../src/styles/Components/_dialog.scss","../../src/styles/Components/_icon.scss","../../src/styles/Components/_link.scss","../../src/styles/Components/_logo.scss","../../src/styles/Components/_palette.scss","../../src/styles/Components/_piktogtam.scss","../../src/styles/Components/_product-detail.scss","../../src/styles/Components/_scrollbar.scss","../../src/styles/Components/_social.scss","../../src/styles/Components/_tags.scss","../../src/styles/Modules/_ba-slider.scss","../../src/styles/Modules/_contact.scss","../../src/styles/Modules/_footer.scss","../../src/styles/Modules/_gallery.scss","../../src/styles/Modules/_header.scss","../../src/styles/Modules/_nav.scss","../../src/styles/Base/Mixins/_transition.scss","../../src/styles/Modules/_section.scss","../../src/styles/Modules/_showcase.scss"],"names":[],"mappings":"AAGA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ACCA;EDzBJ;IA2BQ;;;ACRJ;EDnBJ;IA+BQ;;;;AElCR;EACI;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA,kBCLc;;;ADQlB;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AEhCJ;EACE;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;ACpBJ;ECDI,UADuE;EAEvE;EACA;;;ADGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EEzCI,SF2CI;EE1CJ,uBF2CI;EE1CJ,aF4CI;EE3CJ,eAJ4J;EAK5J,iBALgI;EAQ5H,KFsCA;;AJjCJ;EI6BJ;IASQ;;;;AAIR;EACI;;AJ/BA;EI8BJ;IAIQ;;;AJ9CJ;EI0CJ;IAQQ;;;;AAIR;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;AJzEA;EIwEJ;IAIQ;;;;AAIR;EACI;;AJ3EA;EI0EJ;IAGQ;;;;AJ7EJ;EIiFJ;IAEQ;;;;AGvGR;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI,aLaS;EKZT;EACA;;;AAGJ;AAAA;AAAA;EAGI,aLIQ;EKHR;;;AAGJ;EACI;EACA;EACA;EACA;EClCA,SDmCkB;EClClB;EACA,aDiCsC;EChCtC,eAJqI;EAKrI,iBD+B8C;EC9B9C,KD8BmC;EACnC;EACA;EACA,aLPS;EKQT;EACA;EACA;EACA;EACA;EACA;;APLA;EOTJ;IAiBQ;;;APpBJ;EOGJ;IAqBQ;;;AP9BJ;EOSJ;IAyBQ;IACA;;;APzCJ;EOeJ;IA8BQ;;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;APxCJ;EOqCA;IAMQ;;;APvDR;EOiDA;IAUQ;;;APjER;EOuDA;IAcQ;IACA;;;AP5ER;EO6DA;IAmBQ;;;AAIR;EACI;EACA;EACA;EACA;;;AAIR;EACI;EACA;EACA;EE5FA;EF8FA;EACA;EACA,aLpFQ;EKqFR;EACA;EACA,OLlHU;;AFwBV;EOgFJ;IAaQ;;;APzGJ;EO4FJ;IAiBQ;IACA;;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;AAAA;AAAA;AAAA;EAII;EACA;;AAGJ;EACI,OLpJQ;;;AKwJhB;EACI,aLjIQ;EKkIR;EACA,OL9JU;;;AKiKd;ED3JI,SC4JsB;ED3JtB,uBC2J4B;ED1J5B,aAHkG;EAIlG,eAJ4J;EAK5J,iBALgI;EAQ5H,KJSA;EK6IJ,kBL3II;EK4IJ,aLzIQ;EK0IR;EACA,OLtKU;;AFkBV;EO+IJ;IAQQ;;;;AG3KR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EFRA,SESkB;EFRlB;EACA,aEOoD;EFNpD,eEMoE;EFLpE,iBEK4D;EFJ5D,KNsBI;EOrBJ;ECKA;EACA;EACA;EACA;EACA;EACA,aRcQ;EQbR;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YACI;EAEJ;EACA;EACA;;AVFA;EU1BJ;IA+BQ;IACA;IACA;IACA;;;AClCA;EDsCA;IACI;IACA;;;AAGR;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AVxCJ;EUoCA;IAOQ;;EACA;IACI;;;AAKZ;EACI;EACA;EACA;EACA;EACA;;ACrEA;EACI;IDuEA;;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;EACA;;;AErFR;EACE;EACE;EACA;EACA;EACA,aVuBK;EUtBL;EACA;EACA;EACA;EACA;EACA;;AZUA;EYrBJ;IAcQ;;;;ACbR;EPQI,SOPoB;EPQpB,uBOR0B;EPS1B,aOTsF;EPUtF,eAJ4J;EAK5J,iBALgI;EAQ5H,KOdsD;EAC5D;;AbwBE;Ea1BJ;IAKI;;;AbSA;EadJ;IASI;;;;AAIJ;EPLI,SOMoB;EPLpB,uBOK0B;EPJ1B,aOIuD;EPHvD,eOG2E;EPF3E,iBOEmE;EPC/D,KJWA;EWXN;EACA,eXQM;EWPN;EACA;;AFlBM;EACI;IEoBR;IACA;IACA;IACA;IACA;;;AAGF;EACE;EACA,YACE;EAEF;;AAGF;EACE;;AbCA;EaEF;IAEI;;;AAIJ;EACE;EACA;EACA,aXnBS;EWoBT;EACA;EACA;EACA;EACA,YACE;;;ACvDN;EACC;EACA;;AdoCG;EctCJ;IAKE;;;Ad2BE;EchCJ;IASE;;;AdiBE;Ec1BJ;IAaE;;;AdOE;EcpBJ;IAiBE;;;AAGD;EACC;;;ACrBF;ENKI;EMHA;EACA;EACA;EACA,kBbNU;EaOV,ebqBK;EapBL;;AAEA;EACI;EACA,kBbOgB;;AaJpB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,cbpBM;EaqBN,YACI;;AJ1BJ;EACI;II6BA;IACA;;;AAGJ;EACI;;;ACnCZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA,SdUA;EcTA,kBdbM;EccN;EACA;;;ACjBR;EACI;EACA;EACA;ETJA,SSKkB;ETJlB;EACA,aAH8E;EAI9E,eAJqI;EAKrI,iBALyG;EAMzG;ESCA,afwBQ;EevBR;EACA;EACA;EACA;EACA;;ANVI;EACI;IMYJ;IACA;;;AjBMJ;EiBpBJ;IAkBQ;IACA;;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AACA;EACI;EACA;EACA;EACA,SfXJ;EeYI,kBfnCE;EeoCF,OfvCE;EewCF;;AAIR;EACI,Of1CM;;Ae6CV;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AjB/CJ;EiB4CA;IAMQ;;;;AC1DZ;EACI;EACA;EACA;EACA;EACA;;AlBqBA;EkB1BJ;IAQQ;IACA;;;AAGJ;EACI;EACA;;AlBMJ;EkBRA;IAKQ;;;AAIR;EACI;EACA;EACA;;;ACxBR;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,ajBCS;;AS9BL;EACI;IQ+BJ;;;AAGJ;EACI;EACA;EACA,OjBvCM;EiBwCN;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YACI;;AAIR;EACI;EACA;;ARtDA;EACI;IQyDI;IACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA,OjB/EE;EiBgFF,WjBrDJ;EiBsDI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;;ACxGZ;EdSI,ScPI;EdQJ,uBcPI;EdQJ,acNI;EdOJ,eAJ4J;EAK5J,iBALgI;EAQ5H,KcZA;;ApBuBJ;EoB3BJ;IAQQ;;;ApBaJ;EoBrBJ;IAYQ;;;AAGJ;EACI;;ApBDJ;EoBfJ;IAoBQ;;;AAGJ;EACI;;ApBGJ;EoBJA;IAIQ;;;ApBNR;EoBEA;IAQQ;;;ApBVR;EoBaI;IAEQ;;;AAKZ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA,KlBpCA;EkBqCA;EACA,kBlB9DM;EkB+DN;EACA,OlBnEM;EkBoEN;;AAEA;EACI;EACA;EACA;;AACA;EACI;;AAGR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AACA;EACI;EACA;EACA;EACA;;AAWZ;EACI;EACA,OlBvGM;;AFkBV;EoBmFA;IAKQ;;;AAGJ;EACI,OlB3GI;;;AmBNhB;EfSI,SeRsB;EfStB,uBeT4B;EfU5B,aeVkD;EfWlD,eAJ4J;EAK5J,iBeZ8D;EAC9D;EACA;EACA;EACA;EACA;EACA,OnBJU;;AmBMV;EACI;EACA;EACA;EACA;EACA;EACA,anBgBK;EmBfL;EACA;EACA;;ArBHJ;EqBNA;IAYQ,WnBOH;;;AmBHL;EACI;EACA;EACA;EACA;EACA;;ArBHJ;EqBFA;IAQQ;;;AAGJ;EACI;;AVpCJ;EACI;IUsCI;;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;;ArBpCZ;EqBgCQ;IAOQ,WnBzBV;;;AmB+BN;EACI;;AAGJ;EfvDA,SewD0B;EfvD1B,uBeuDgC;EftDhC,aesDiF;EfrDjF,eAJ4J;EAK5J,iBeoD6F;EfjDzF,KeiD+C;;AAEnD;EbnEA,SaoEsB;EbnEtB;EACA,aakEiD;EbjEjD,eAJqI;EAKrI,iBagEyD;Eb/DzD,KNsBI;;AmB4CJ;EbvEA,SawEsB;EbvEtB;EACA,aasEoD;EbrEpD,eAJqI;EAKrI,iBaoEgE;EbnEhE,KNqBI;EmB+CA;EACA;EACA,anB5CK;EmB6CL;;AAEA;EACI;EACA;;;AAKZ;EACI;EACA;EACA;;;ArBZA;EsB1EF;IACE,OpBsBI;;AoBnBN;EACA;IACE,YpBRU;;AoBWZ;EACA;IACE,YpBPY;IoBQZ,epBYI;IoBXJ;;AAGF;EACA;IACE,YpBbmB;;;AqBNvB;EjBQI,SiBPsB;EjBQtB,uBiBR4B;EjBS5B,aiBTiF;EjBUjF,eAJ4J;EAK5J,iBALgI;EAQ5H,KJWA;;AqBvBJ;EACE;EACA;EACA;EACA,arBqBI;EqBpBJ;EACA;EACA;;AZVE;EACI;IYYJ;;;AAGF;EACE;EACA;EACA;EACA;;;ACpBR;EACI;;AAEA;EACI;;AAGJ;EhBRA,SgBSsB;EhBRtB;EACA,agBO+C;EhBN/C,eAJqI;EAKrI,iBgBKuD;EhBJvD,KNoBI;EsBfA;EACA,atBoBK;EsBnBL;;AxBGJ;EwBPA;IAOQ;;;AAGR;EACI;;AAEA;EACI;EACA,kBtBjBI;EsBkBJ;EACA,OtBzBE;EsB0BF;EACA;;AAIA;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AAIR;EACI;;;ACtCZ;EACE;EACA;EACA;EACA;EACA;EACA;EACA,evBqBM;;AFZJ;EyBhBJ;IAUI;;;AAGF;EACE;EACA;EACA;;;AAIJ;EACE;EACA;EACA,avBSW;EuBRX;EACA;EACA;EACA;EACA;EACA;;AzBbE;EyBIJ;IAYI,QvBJI;IuBKJ;;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;;AACA;AAAA;EACE;EACA;EACA;EACA,avBrBS;EuBsBT;EACA;EACA;EACA;EACA;EACA;EACA;;AzBtCA;EyB2BF;AAAA;IAcI;IACA;;;AzBhDF;EyBiCF;AAAA;IAmBI;IACA;;;;AAKN;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AC3HE;EACI;EpBMJ,SoBJQ;EpBKR,uBoBJQ;EpBKR,aoBHQ;EpBIR,eAJ4J;EAK5J,iBALgI;EAQ5H,KoBTI;;A1BcR;E0BnBA;IAUQ;IACA;;;A1BER;E0BbA;IAeQ;IACA;;;AAGJ;EACI;;A1BPR;E0BMI;IAGQ;;;AAIZ;EpBnBA,SoBqBQ;EpBpBR,uBoBqBQ;EpBpBR,aoBsBQ;EpBrBR,eAJ4J;EAK5J,iBALgI;EAQ5H,KoBgBI;;A1BXR;E0BOA;IASQ;IACA;;;AAGJ;EACI;EACA,WxBhBJ;EwBiBI;EACA,cxBlBJ;;AwBqBA;EACI;EACA;EACA,exB1BJ;;;AyBxBR;EACE,SzByBM;EyBxBN,kBzBHY;;AyBKZ;EACE;EACA;EACA,azBsBQ;EyBrBR;EACA,OzBPU;EyBQV;;;ACVJ;EACE,gB1B2BQ;;AFdN;E4BdJ;IAII,gB1BuBK;;;AFbL;E4BPF;IAEI;IACA;IACA;;;;A5BSF;E4BJJ;IAEI;;;;AAIJ;EtBdI,SsBgBA;EtBfA,uBsBgBA;EtBfA,asBiBA;EtBhBA,eAJ4J;EAK5J,iBALgI;EAQ5H,KsBWJ;EAGF,iB1BWgB;E0BVhB,kB1BFQ;E0BGR;;A5BLE;E4BJJ;IAYI;IACA;;;A5BfA;E4BEJ;IAiBI;;;A5BzBA;E4BQJ;IAqBI;IACA;;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EtB5DE;EAIA;;ANWA;E4B6CF;IAKI;IACA;;;AjBjEE;EACI;IiBqER;IACA;IACA;IACA;;;AAGF;EACE;EACA;EACA;;AAEA;EvBlFA,UADuE;EAEvE;EACA;EuBkFE;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,O1BnGU;;A0BqGV;EACE;EACA;EACA;EACA;EACA,a1B9EO;E0B+EP;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA,YACE;EAEF;;AjB5HE;EACI;IiB8HJ;;;;AC/HR;EACE;EACA;EACA;EACA;EACA;EACA;;;AAIA;EACE;EACA;EACA;EACA;;A7BYA;E6BhBF;IAOI;IACA;;;AAIJ;ErBvBE,SqBwBkB;ErBvBlB;EACA,aqBsByD;ErBrBzD,eAJqI;EAKrI,iBqBoBiE;ErBnBjE,KqBmBsC;EACtC,WACE;EAGF;;A7BRA;E6BEF;IASI;IACA,gB3BNE;I2BOF;;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA,a3BfO;E2BgBP;EACA;EACA;EACA;EACA,O3BhDQ;E2BiDR;EACA;EACA;EACA;EACA,YACE;;A7B9BJ;E6BcA;IAoBI;;;A7BxCJ;E6BoBA;IAwBI;;;A7BlDJ;E6B0BA;IA4BI;;;AAIJ;EACE;EACA,a3B5CO;E2B6CP;EACA;EACA;EACA,O3B5EQ;E2B6ER;EACA;EACA;EACA,YACE;;A7BzDJ;E6B8CA;IAeI;;;AAIJ;EACE;EACA;EACA;EACA,YACE;;;AAOR;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;;ACpIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A9BUA;E8BpBJ;IAaQ;IACA;;;;AAIR;EtBnBI,SsBoBkB;EtBnBlB;EACA,asBkBwC;EtBjBxC,esBiB2F;EtBhB3F,iBsBgBgD;EtBfhD,KsBeqC;EACrC;EACA;;;AAGJ;EACI;EACA;EACA;;A9BPA;E8BIJ;IAMQ;;;AAGJ;EACI;EACA;;;AAIR;EtBxCI,SsB0CI;EtBzCJ;EACA,asB4CI;EtB3CJ,esB6CI;EtB5CJ,iBsB2CI;EtB1CJ,KsBwCI;EAKJ;EACA;EACA;EACA;EACA;;A9BrBA;E8BOJ;IAiBQ;IACA;;;A9BrCJ;E8BmBJ;IAsBQ;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;A9BlDJ;E8BqDA;IAEQ;IACA;;;AAGR;EACI;;A9B5DJ;E8B2DA;IAIQ;IACA;;EAGI;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;EADJ;IACI;;;AAKhB;EACI;EC/FJ;EvBAA,SsBiGsB;EtBhGtB;EACA,asB+FwD;EtB9FxD,eAJqI;EAKrI,iBALyG;EAMzG,KNoBI;E4ByEA,a5BpEI;E4BqEJ;EACA;EACA;EACA;EACA;EACA;;A9B7EJ;E8BmEA;IAaQ;;;A9BtFR;E8ByEA;IAiBQ;IACA;IACA;;;AAGJ;EACI;EACA,O5BhHI;;;A4BqHhB;EACI;IACI;;EAGJ;IACI;;;AAIR;EACI;IACI;;EAGJ;IACI;;;AE1IR;EACI;EACA;EACA;EACA;EACA;;AhC2BA;EgChCJ;IAQQ;;;AhCYJ;EgCpBJ;IAYQ;IACA;;;AAGJ;EACI;;AAEJ;EACI;;AAGJ;EACI;;AACA;AAAA;EAEI;;AAGJ;EACI;;AAIR;EACI;;AAGJ;EACI;;AAEA;E3B3CJ,UADuE;EAEvE;EACA;;;A2B+CJ;EACI;;;ACjDJ;EACE;;;AAEF;EACE;EACA;EACA;EACA;EACA,iB/BgCgB;E+B/BhB;EACA;EACA;EACA,O/BVY;;AFwBV;EiCvBJ;IAYI;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AjCEA;EiCPF;IAQI;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA,YACE;EAEF;;AAEA;EACE;;AAKN;EACE;;AjCtBA;EiCqBF;IAGI;IACA;IACA;IACA;;;AAEF;EACE;;AAIJ;EACE;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA,a/BvCO;E+BwCP;;AjCtCF;EiC+BA;IAUI;;;AjC/CJ;EiCqCA;IAcI;IACA;;;AjChEJ;EiCiDA;IAmBI;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AjC5EJ;EiCuEE;IAQI;;;AAIN;EACE;EACA;EACA;;AjC1EF;EiCuEA;IAKI;IACA;;;AAEF;EACE,O/BrGQ;;AFSZ;EiCmFA;IAYI;;;AAKN;E3B1GE,S2B2GsB;E3B1GtB,uB2B0G4B;E3BzG5B,a2ByGqE;E3BxGrE,eAJ4J;EAK5J,iB2BuG8E;E3BpG1E,KJWA;E+B0FJ;;AjC1FA;EiCwFF;IAKI;IACA;IACA;;;AAEF;EACE;EACA;;AAEA;EAJF;IAKI;IACA;IACA;IACA;;;AAGF;EACE","file":"style.css"} \ No newline at end of file diff --git a/public/downloads/MIBOXER_FUT035W-FUT036W_EN_V1.0.pdf b/public/downloads/MIBOXER_FUT035W-FUT036W_EN_V1.0.pdf new file mode 100644 index 0000000..5fdbef8 Binary files /dev/null and b/public/downloads/MIBOXER_FUT035W-FUT036W_EN_V1.0.pdf differ diff --git a/public/downloads/MIBOXER__K1_K1-B_EN_V1.0.pdf b/public/downloads/MIBOXER__K1_K1-B_EN_V1.0.pdf new file mode 100644 index 0000000..731d6df Binary files /dev/null and b/public/downloads/MIBOXER__K1_K1-B_EN_V1.0.pdf differ diff --git a/public/downloads/dae/Rock_sheet_DARKGOLD.dae b/public/downloads/dae/Rock_sheet_DARKGOLD.dae new file mode 100644 index 0000000..7dd0313 --- /dev/null +++ b/public/downloads/dae/Rock_sheet_DARKGOLD.dae @@ -0,0 +1,1160 @@ + + + + + SketchUp 20.0.363 + + 2024-01-20T11:48:47Z + 2024-01-20T11:48:47Z + + Z_UP + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 1 0 0 -5.782987 0 -3.828569e-16 1 0.109252 -0 1 3.828569e-16 -5.783253 0 0 0 1 + + 1 0 0 5.861993 0 1 0 5.861993 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 0 0 53.30294 0 1 0 5.861993 0 0 1 0.2125984 0 0 0 1 + + + 1 0 0 53.30294 0 1 0 5.861993 0 0 1 0.2125984 0 0 0 1 + + 1 0 0 0 0 1 0 0.5905512 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + -3.535366e-14 -1 0 48.03123 1 -3.535366e-14 0 95.47244 0 0 1 -2.775558e-17 0 0 0 1 + + + + + + + + + + + + -1 0 0 -46.85066 0 1 0 0.5905512 0 -0 1 0 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + 3.535366e-14 -1 0 48.03123 -1 -3.535366e-14 0 0.5905512 0 0 1 -9.714451e-16 0 0 0 1 + + + + + + + + + + + + + 1 0 0 9.4053 0 1 0 90.90136 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + -1 0 0 50.35018 0 1 0 90.90136 0 -0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + -1 0 0 50.40924 0 -1 0 16.88562 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + 1 0 0 9.464355 0 -1 0 16.88562 -0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + 1 0 0 9.4053 0 1 0 9.4053 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + 1 0 0 -2.273737e-13 0 1 0 0.2037402 0 0 1 0.6692913 0 0 0 1 + + + 1 0 0 0.07874016 0 1 0 0.2037402 0 0 1 0.07874016 0 0 0 1 + + + + + + + + + + + + + + + 1 0 0 7.105427e-15 0 1 0 0.2037402 0 0 1 -3.384951e-12 0 0 0 1 + + + -2.335419e-17 -0.05674756 1.12301e-13 50.88327 2.560529e-17 -6.372809e-15 -1 0.9124016 0.06099979 -2.172619e-17 4.197602e-16 -3.223188 0 0 0 1 + + + + + + + + + + + + + + + + + + 48.0315 96.06299 0 44.48819 3.543307 1.665335e-16 48.0315 0 0 3.543307 3.543307 1.665335e-16 3.543307 92.51969 1.665335e-16 0 0 0 44.48819 92.51969 1.665335e-16 0 96.06299 0 0 96.06299 0 3.543307 92.51969 1.665335e-16 0 0 0 48.0315 96.06299 0 44.48819 92.51969 1.665335e-16 44.48819 3.543307 1.665335e-16 3.543307 3.543307 1.665335e-16 48.0315 0 0 48.0315 96.06299 0.3149606 0 96.06299 0.3149606 48.0315 96.06299 0 0 96.06299 0 0 96.06299 0.3149606 48.0315 96.06299 0 0 96.06299 0 48.0315 96.06299 0.3149606 48.0315 96.06299 0.3149606 48.0315 96.06299 0 48.0315 0 0.3149606 48.0315 0 0 48.0315 96.06299 0 48.0315 0 0.3149606 48.0315 0 0 48.0315 96.06299 0.3149606 0 0 0.3149606 48.0315 0 0.3149606 0 0 0 48.0315 0 0 48.0315 0 0.3149606 0 0 0 48.0315 0 0 0 0 0.3149606 0 96.06299 0 0 96.06299 0.3149606 0 0 0 0 0 0.3149606 0 96.06299 0.3149606 0 0 0 0 0 0.3149606 0 96.06299 0 48.0315 0 0.3149606 47.44094 95.47244 0.3149606 48.0315 96.06299 0.3149606 0.5905512 95.47244 0.3149606 0.5905512 0.5905512 0.3149606 0 96.06299 0.3149606 47.44094 0.5905512 0.3149606 0 0 0.3149606 0 0 0.3149606 0.5905512 0.5905512 0.3149606 0 96.06299 0.3149606 48.0315 0 0.3149606 47.44094 0.5905512 0.3149606 47.44094 95.47244 0.3149606 0.5905512 95.47244 0.3149606 48.0315 96.06299 0.3149606 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 0 1 0 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 1 0 0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 + + + + + + + + + + -4.80315 9.606299 -4.448819 0.3543307 -4.80315 0 -0.3543307 0.3543307 -0.3543307 9.251969 0 0 -4.448819 9.251969 0 9.606299 -4.80315 0.03149606 0 0.03149606 9.606299 0.03149606 9.606299 0 4.80315 0.03149606 4.80315 0 -9.606299 0 -9.606299 0.03149606 4.744094 9.547244 4.80315 9.606299 0.05905512 9.547244 0.05905512 0.05905512 4.744094 0.05905512 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 3 3 2 2 4 4 5 5 3 3 2 2 3 3 5 5 1 1 0 0 6 6 6 6 0 0 4 4 0 0 7 7 4 4 5 5 4 4 7 7 8 7 9 4 10 5 9 4 8 7 11 0 9 4 11 0 12 6 12 6 11 0 13 1 10 5 14 3 15 2 14 3 10 5 9 4 15 2 14 3 13 1 15 2 13 1 11 0 16 8 17 9 18 2 19 5 18 2 17 9 20 9 21 2 22 5 21 2 20 9 23 8 24 10 25 11 26 9 27 5 26 9 25 11 28 11 29 9 30 5 29 9 28 11 31 10 32 9 33 12 34 5 35 13 34 5 33 12 36 12 37 5 38 13 37 5 36 12 39 9 40 14 41 15 42 5 43 9 42 5 41 15 44 15 45 5 46 9 45 5 44 15 47 14 48 13 49 16 50 17 49 16 51 18 50 17 52 19 53 7 51 18 50 17 51 18 53 7 49 16 48 13 54 20 54 20 48 13 52 19 48 13 55 5 52 19 53 7 52 19 55 5 56 5 57 19 58 7 57 19 56 5 59 13 57 19 59 13 60 20 60 20 59 13 61 16 58 7 62 18 63 17 62 18 58 7 57 19 63 17 62 18 61 16 63 17 61 16 59 13

+
+
+
+ + + + 47.44094 0.5905512 0.7480315 44.48819 92.51969 0.7480315 47.44094 95.47244 0.7480315 3.543307 92.51969 0.7480315 3.543307 3.543307 0.7480315 0.5905512 95.47244 0.7480315 44.48819 3.543307 0.7480315 0.5905512 0.5905512 0.7480315 0.5905512 0.5905512 0.7480315 3.543307 3.543307 0.7480315 0.5905512 95.47244 0.7480315 47.44094 0.5905512 0.7480315 44.48819 3.543307 0.7480315 44.48819 92.51969 0.7480315 3.543307 92.51969 0.7480315 47.44094 95.47244 0.7480315 47.44094 95.47244 0.7480315 0.5905512 95.47244 0.7480315 47.44094 95.47244 0.3149606 0.5905512 95.47244 0.3149606 0.5905512 95.47244 0.7480315 47.44094 95.47244 0.3149606 0.5905512 95.47244 0.3149606 47.44094 95.47244 0.7480315 0.5905512 95.47244 0.3149606 0.5905512 95.47244 0.7480315 0.5905512 0.5905512 0.3149606 0.5905512 0.5905512 0.7480315 0.5905512 95.47244 0.7480315 0.5905512 0.5905512 0.3149606 0.5905512 0.5905512 0.7480315 0.5905512 95.47244 0.3149606 0.5905512 0.5905512 0.7480315 47.44094 0.5905512 0.7480315 0.5905512 0.5905512 0.3149606 47.44094 0.5905512 0.3149606 47.44094 0.5905512 0.7480315 0.5905512 0.5905512 0.3149606 47.44094 0.5905512 0.3149606 0.5905512 0.5905512 0.7480315 47.44094 95.47244 0.7480315 47.44094 95.47244 0.3149606 47.44094 0.5905512 0.7480315 47.44094 0.5905512 0.3149606 47.44094 95.47244 0.3149606 47.44094 0.5905512 0.7480315 47.44094 0.5905512 0.3149606 47.44094 95.47244 0.7480315 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 0 1 0 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 + + + + + + + + + + 4.744094 0.05905512 4.448819 9.251969 4.744094 9.547244 0.3543307 9.251969 0.3543307 0.3543307 0.05905512 9.547244 4.448819 0.3543307 0.05905512 0.05905512 -4.744094 0.07480315 -0.05905512 0.07480315 -4.744094 0.03149606 -0.05905512 0.03149606 -9.547244 0.03149606 -9.547244 0.07480315 0.05905512 0.07480315 4.744094 0.07480315 0.05905512 0.03149606 4.744094 0.03149606 9.547244 0.07480315 9.547244 0.03149606 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 3 3 2 2 4 4 5 5 3 3 2 2 3 3 5 5 1 1 0 0 6 6 6 6 0 0 4 4 0 0 7 7 4 4 5 5 4 4 7 7 8 7 9 4 10 5 9 4 8 7 11 0 9 4 11 0 12 6 12 6 11 0 13 1 10 5 14 3 15 2 14 3 10 5 9 4 15 2 14 3 13 1 15 2 13 1 11 0 16 8 17 9 18 10 19 11 18 10 17 9 20 9 21 10 22 11 21 10 20 9 23 8 24 12 25 13 26 11 27 9 26 11 25 13 28 13 29 11 30 9 29 11 28 13 31 12 32 14 33 15 34 16 35 17 34 16 33 15 36 15 37 16 38 17 37 16 36 15 39 14 40 18 41 19 42 14 43 16 42 14 41 19 44 19 45 14 46 16 45 14 44 19 47 18

+
+
+
+ + + + 44.48819 3.543307 0.7480315 3.543307 3.543307 0.7480315 44.48819 3.543307 1.665335e-16 3.543307 3.543307 1.665335e-16 3.543307 3.543307 0.7480315 44.48819 3.543307 1.665335e-16 3.543307 3.543307 1.665335e-16 44.48819 3.543307 0.7480315 44.48819 92.51969 1.665335e-16 44.48819 92.51969 0.7480315 44.48819 3.543307 1.665335e-16 44.48819 3.543307 0.7480315 44.48819 92.51969 0.7480315 44.48819 3.543307 1.665335e-16 44.48819 3.543307 0.7480315 44.48819 92.51969 1.665335e-16 3.543307 92.51969 0.7480315 44.48819 92.51969 0.7480315 3.543307 92.51969 1.665335e-16 44.48819 92.51969 1.665335e-16 44.48819 92.51969 0.7480315 3.543307 92.51969 1.665335e-16 44.48819 92.51969 1.665335e-16 3.543307 92.51969 0.7480315 + + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + -4.448819 0.07480315 -0.3543307 0.07480315 -4.448819 1.665335e-17 -0.3543307 1.665335e-17 -9.251969 1.665335e-17 -9.251969 0.07480315 -0.3543307 1.665335e-17 -0.3543307 0.07480315 0.3543307 0.07480315 4.448819 0.07480315 0.3543307 1.665335e-17 4.448819 1.665335e-17 + + + + + + + + + + + + + + +

0 0 1 1 2 2 3 3 2 2 1 1 4 1 5 2 6 3 5 2 4 1 7 0 8 4 9 5 10 6 11 7 10 6 9 5 12 5 13 6 14 7 13 6 12 5 15 4 16 8 17 9 18 10 19 11 18 10 17 9 20 9 21 10 22 11 21 10 20 9 23 8

+
+
+
+ + + + 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.5905512 95.47244 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 0 0.511811 0 -1.776357e-15 0.5905512 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 0.5905512 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 -1.776357e-15 0.5905512 0 0 0.511811 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 4.263256e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 0.5905512 -0.5905512 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 0.5905512 -0.5905512 -0.1181102 0.6692913 95.55118 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 0.6692913 95.55118 0.5905512 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 7.105427e-15 94.88189 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 0.5905512 + + + + + + + + + + -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 5 4 7 8 9 10 11 10 9 12 13 14 13 12 15 16 17 18 19 20 17 18 17 20 21 22 19 22 23 19 20 19 23 24 25 26 25 24 27 25 27 28 26 29 30 29 26 25 30 29 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 41 43 42 43 44 42 42 44 45 44 46 45 47 45 46 48 49 50 49 48 51 49 51 52 52 51 53 52 53 54 52 54 55 56 57 58 59 58 57 60 61 62 61 60 63 64 65 66 67 66 65 68 69 70 69 68 71 72 73 74 75 74 73 76 77 78 77 76 79 80 81 82 83 82 81 84 85 86 85 84 87 88 89 90 91 90 89 92 93 94 93 92 95

+
+
+
+ + + + 0 0 0.511811 1.421085e-14 3.996803e-15 -0.1181102 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.5905512 95.47244 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 0.6692913 47.36194 0.5905512 0.6692913 47.36194 0.5905512 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.5905512 -1.520561e-12 48.03123 0.511811 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 7.105427e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1181102 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 0.5905512 95.47244 -0.1181102 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 95.47244 -0.1181102 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1968504 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 0.6692913 95.55118 0.5905512 + + + + + + + + + + -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 5 4 7 8 9 10 11 10 9 12 13 14 13 12 15 16 17 18 19 20 17 18 17 20 21 22 19 22 23 19 20 19 23 24 25 26 25 24 27 25 27 28 26 29 30 29 26 25 30 29 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 41 43 42 43 44 42 42 44 45 44 46 45 47 45 46 48 49 50 49 48 51 49 51 52 52 51 53 52 53 54 52 54 55 56 57 58 59 58 57 60 61 62 61 60 63 64 65 66 67 66 65 68 69 70 69 68 71 72 73 74 75 74 73 76 77 78 77 76 79 80 81 82 83 82 81 84 85 86 85 84 87 88 89 90 91 90 89 92 93 94 93 92 95

+
+
+
+ + + + 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 0.5905512 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 -1.776357e-15 0.5905512 0 0 0.511811 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 0 0.511811 0 -1.776357e-15 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 7.105427e-15 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 4.263256e-14 94.88189 0.5905512 4.263256e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 94.88189 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 + + + + + + + + + + -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 17 19 20 18 21 22 21 18 17 22 21 23 24 25 26 27 28 25 26 25 28 29 30 27 30 31 27 28 27 31 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 41 43 44 44 43 45 44 45 46 44 46 47 48 49 50 49 51 50 51 52 50 50 52 53 52 54 53 55 53 54 56 57 58 57 56 59 60 61 62 63 62 61 64 65 66 65 64 67 68 69 70 71 70 69 72 73 74 73 72 75 76 77 78 79 78 77 80 81 82 81 80 83 84 85 86 87 86 85 88 89 90 89 88 91 92 93 94 95 94 93

+
+
+
+ + + + 0 0 0.511811 1.421085e-14 3.996803e-15 -0.1181102 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.6692913 47.36194 0.5905512 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.5905512 -1.520561e-12 48.03123 0.511811 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 2.842171e-14 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 7.105427e-14 94.88189 0.5905512 7.105427e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1181102 2.842171e-14 94.88189 -0.1968504 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 + + + + + + + + + + -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 17 19 20 18 21 22 21 18 17 22 21 23 24 25 26 27 28 25 26 25 28 29 30 27 30 31 27 28 27 31 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 41 43 44 44 43 45 44 45 46 44 46 47 48 49 50 49 51 50 51 52 50 50 52 53 52 54 53 55 53 54 56 57 58 57 56 59 60 61 62 63 62 61 64 65 66 65 64 67 68 69 70 71 70 69 72 73 74 73 72 75 76 77 78 79 78 77 80 81 82 81 80 83 84 85 86 87 86 85 88 89 90 89 88 91 92 93 94 95 94 93

+
+
+
+ + + + 4.628882 6.299213 0 1.181102 2.851433 0 7.480315 7.480315 0 1.181102 6.299213 0 0 0 0 0 7.480315 0 0 7.480315 0.05905512 0 7.480315 0 0 7.42126 0.05905512 0 0 0.05905512 0 0 0 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 7.42126 7.42126 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0 0 0 0 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 7.42126 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 6.791339 7.480315 0.7480315 0.6889764 7.480315 0.7480315 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 1.181102 2.851433 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.05905512 0 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 0.05905512 6.791339 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 0.6889764 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0 0.05905512 6.791339 7.480315 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 3 4 1 2 1 4 0 2 3 2 5 3 4 3 5 6 7 8 8 7 9 10 9 7 11 12 13 14 13 12 15 16 17 17 16 18 18 16 19 20 19 16 21 22 23 24 23 22 25 26 27 27 26 28 29 28 26 30 31 32 33 32 31 26 34 29 35 29 34 36 37 11 12 11 37 38 39 40 41 42 25 43 26 42 25 42 26 41 25 43 25 34 43 26 43 34 44 45 46 47 48 49 49 48 50 50 48 51 52 51 48 53 54 55 56 55 54 57 58 59 60 59 58 61 62 63 64 63 62 65 66 67 68 67 66 69 70 71 70 72 71 73 71 72 74 75 76 77 76 75

+
+
+
+ + + + 4.628882 6.299213 0 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 1.181102 6.299213 0.05905512 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 7 6 5 8 9 10 11 10 9

+
+
+
+ + + + 0 7.480315 0 1.181102 6.299213 0 0 0 0 7.480315 7.480315 0 4.628882 6.299213 0 1.181102 2.851433 0 0 7.480315 0 0 0 0.05905512 0 0 0 0 7.42126 0.05905512 0 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 0 0 0.05905512 0 0 0 0.05905512 0.05905512 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 0 7.480315 0.05905512 0.05905512 7.42126 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0 6.791339 0.7480315 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.6889764 7.480315 0.7480315 6.791339 7.480315 0.7480315 7.480315 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 1.181102 2.851433 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 0.05905512 0 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 6.791339 7.42126 0.7480315 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 6.791339 7.480315 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0 0.05905512 0.05905512 7.42126 0.05905512 0.05905512 6.791339 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 2 5 3 5 2 1 3 5 4 6 7 8 7 6 9 9 6 10 11 12 13 12 11 14 15 16 17 16 15 18 18 15 19 19 15 20 21 22 23 22 21 24 25 26 27 26 25 28 28 25 29 30 31 32 31 30 33 34 27 35 27 34 25 36 14 11 14 36 37 38 39 40 34 41 25 41 34 29 41 29 42 25 43 29 43 25 41 29 43 42 44 45 46 47 48 49 48 47 50 50 47 51 51 47 52 53 54 55 54 53 56 57 58 59 58 57 60 61 62 63 62 61 64 65 66 67 66 65 68 69 70 71 70 69 72 70 72 73 74 75 76 75 74 77

+
+
+
+ + + + 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 4.628882 6.299213 0 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 1.181102 6.299213 0.05905512 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11

+
+
+
+ + + + 4.628882 6.299213 0 1.181102 2.851433 0 7.480315 7.480315 0 1.181102 6.299213 0 0 0 0 0 7.480315 0 0 7.480315 0.05905512 0 7.480315 0 0 7.42126 0.05905512 0 0 0.05905512 0 0 0 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 7.42126 7.42126 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0 0 0 0 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 7.42126 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 6.791339 7.480315 0.7480315 0.6889764 7.480315 0.7480315 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 1.181102 2.851433 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.05905512 0 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 0.05905512 6.791339 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 0.6889764 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0 0.05905512 6.791339 7.480315 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 3 4 1 2 1 4 0 2 3 2 5 3 4 3 5 6 7 8 8 7 9 10 9 7 11 12 13 14 13 12 15 16 17 17 16 18 18 16 19 20 19 16 21 22 23 24 23 22 25 26 27 27 26 28 29 28 26 30 31 32 33 32 31 26 34 29 35 29 34 36 37 11 12 11 37 38 39 40 41 42 25 43 26 42 25 42 26 41 25 43 25 34 43 26 43 34 44 45 46 47 48 49 49 48 50 50 48 51 52 51 48 53 54 55 56 55 54 57 58 59 60 59 58 61 62 63 64 63 62 65 66 67 68 67 66 69 70 71 70 72 71 73 71 72 74 75 76 77 76 75

+
+
+
+ + + + 4.628882 6.299213 0 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 1.181102 6.299213 0.05905512 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 7 6 5 8 9 10 11 10 9

+
+
+
+ + + + 0 7.480315 0 1.181102 6.299213 0 0 0 0 7.480315 7.480315 0 4.628882 6.299213 0 1.181102 2.851433 0 0 7.480315 0 0 0 0.05905512 0 0 0 0 7.42126 0.05905512 0 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 0 0 0.05905512 0 0 0 0.05905512 0.05905512 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 0 7.480315 0.05905512 0.05905512 7.42126 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0 6.791339 0.7480315 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.6889764 7.480315 0.7480315 6.791339 7.480315 0.7480315 7.480315 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 1.181102 2.851433 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 0.05905512 0 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 6.791339 7.42126 0.7480315 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 6.791339 7.480315 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0 0.05905512 0.05905512 7.42126 0.05905512 0.05905512 6.791339 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 2 5 3 5 2 1 3 5 4 6 7 8 7 6 9 9 6 10 11 12 13 12 11 14 15 16 17 16 15 18 18 15 19 19 15 20 21 22 23 22 21 24 25 26 27 26 25 28 28 25 29 30 31 32 31 30 33 34 27 35 27 34 25 36 14 11 14 36 37 38 39 40 34 41 25 41 34 29 41 29 42 25 43 29 43 25 41 29 43 42 44 45 46 47 48 49 48 47 50 50 47 51 51 47 52 53 54 55 54 53 56 57 58 59 58 57 60 61 62 63 62 61 64 65 66 67 66 65 68 69 70 71 70 69 72 70 72 73 74 75 76 75 74 77

+
+
+
+ + + + 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 4.628882 6.299213 0 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 1.181102 6.299213 0.05905512 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11

+
+
+
+ + + + 40.94488 8.881784e-16 1.110223e-15 40.94488 88.97638 1.110223e-16 0 8.881784e-16 4.440892e-16 0 88.97638 1.110223e-16 0 88.97638 1.110223e-16 0 88.97638 0.01968504 0 8.881784e-16 4.440892e-16 0 8.881784e-16 0.01968504 40.94488 88.97638 0.01968504 0 88.97638 0.01968504 40.94488 88.97638 1.110223e-16 0 88.97638 1.110223e-16 40.94488 88.97638 0.01968504 40.94488 88.97638 1.110223e-16 40.94488 8.881784e-16 0.01968504 40.94488 8.881784e-16 1.110223e-15 40.94488 8.881784e-16 0.01968504 40.94488 8.881784e-16 1.110223e-15 0 8.881784e-16 0.01968504 0 8.881784e-16 4.440892e-16 40.94488 88.97638 0.01968504 40.94488 8.881784e-16 0.01968504 0 88.97638 0.01968504 0 8.881784e-16 0.01968504 + + + + + + + + + + 8.134519e-18 -7.69601e-18 -1 8.134519e-18 -7.69601e-18 -1 8.134519e-18 -7.69601e-18 -1 8.134519e-18 -7.69601e-18 -1 -1 -3.215325e-35 -8.134519e-18 -1 -3.215325e-35 -8.134519e-18 -1 -3.215325e-35 -8.134519e-18 -1 -3.215325e-35 -8.134519e-18 0 1 -7.69601e-18 0 1 -7.69601e-18 0 1 -7.69601e-18 0 1 -7.69601e-18 1 9.305343e-35 8.134519e-18 1 9.305343e-35 8.134519e-18 1 9.305343e-35 8.134519e-18 1 9.305343e-35 8.134519e-18 -6.353919e-33 -1 7.69601e-18 -6.353919e-33 -1 7.69601e-18 -6.353919e-33 -1 7.69601e-18 -6.353919e-33 -1 7.69601e-18 -8.134519e-18 7.69601e-18 1 -8.134519e-18 7.69601e-18 1 -8.134519e-18 7.69601e-18 1 -8.134519e-18 7.69601e-18 1 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 7 6 5 8 9 10 11 10 9 12 13 14 15 14 13 16 17 18 19 18 17 20 21 22 23 22 21

+
+
+
+ + + + 48.1105 0 1.24345e-14 0.0002663133 1.082229e-11 96.14173 0 2.020606e-14 0 48.1105 1.080211e-11 96.14173 48.1105 1.080211e-11 96.14173 48.1105 0 1.24345e-14 0.0002663133 1.082229e-11 96.14173 0 2.020606e-14 0 + + + + + + + + + + -4.19796e-16 -1 1.115517e-13 -4.19796e-16 -1 1.115517e-13 -4.19796e-16 -1 1.115517e-13 -4.19796e-16 -1 1.115517e-13 4.19796e-16 1 -1.115517e-13 4.19796e-16 1 -1.115517e-13 4.19796e-16 1 -1.115517e-13 4.19796e-16 1 -1.115517e-13 + + + + + + + + + + 0.9966799 0.001848337 0.003680098 0.9981534 0.003674601 0.001848337 0.9966799 0.9981534 1 -2.220446e-16 0.0008183306 3.708145e-14 1 1 0.0008183306 1.000006 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 0 0 3 3

+
+ + + +

4 4 5 5 6 6 7 7 6 6 5 5

+
+
+
+ + + + 0 944 0 0 0 0 1680 944 0 1680 0 0 1680 944 0 0 0 0 0 944 0 1680 0 0 + + + + + + + + + + 0 1 0 0 1 1 1 0 + + + + + + + + + + + + + +

0 0 1 1 2 2 3 3 2 2 1 1 4 2 5 1 6 0 5 1 4 2 7 3

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + ID12 + + + + + ID13 + + + + + + + + + + + + + + + + + 0.1176471 0.1176471 0.1176471 1 + + + + + + + + + + + 0.1176471 0.1176471 0.1176471 1 + + + 1 + + + + + + + + + + + 1 1 1 1 + + + + + + + + + + ID146 + + + + + ID147 + + + + + + + + + + + + + + + + ID155 + + + + + ID156 + + + + + + + + + + + + + + + + ID166 + + + + + ID167 + + + + + + + + + + + + + + + Rock_sheet_DARKGOLD/Wood_Board_Cork.jpg + + + Rock_sheet_DARKGOLD/Rockfoil_DARKGOLD_light_1.jpg + + + Rock_sheet_DARKGOLD/Rockfoil_DARKGOLD_light.jpg + + + Rock_sheet_DARKGOLD/texture.png + + + + + +
diff --git a/public/downloads/dae/Rock_sheet_GOLDENBARK.dae b/public/downloads/dae/Rock_sheet_GOLDENBARK.dae new file mode 100644 index 0000000..1aaeb53 --- /dev/null +++ b/public/downloads/dae/Rock_sheet_GOLDENBARK.dae @@ -0,0 +1,1160 @@ + + + + + SketchUp 20.0.363 + + 2024-01-20T11:49:10Z + 2024-01-20T11:49:10Z + + Z_UP + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 1 0 0 -5.782987 0 -3.828569e-16 1 0.109252 -0 1 3.828569e-16 -5.783253 0 0 0 1 + + 1 0 0 5.861993 0 1 0 5.861993 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 0 0 53.30294 0 1 0 5.861993 0 0 1 0.2125984 0 0 0 1 + + + 1 0 0 53.30294 0 1 0 5.861993 0 0 1 0.2125984 0 0 0 1 + + 1 0 0 0 0 1 0 0.5905512 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + -3.535366e-14 -1 0 48.03123 1 -3.535366e-14 0 95.47244 0 0 1 -2.775558e-17 0 0 0 1 + + + + + + + + + + + + -1 0 0 -46.85066 0 1 0 0.5905512 0 -0 1 0 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + 3.535366e-14 -1 0 48.03123 -1 -3.535366e-14 0 0.5905512 0 0 1 -9.714451e-16 0 0 0 1 + + + + + + + + + + + + + 1 0 0 9.4053 0 1 0 90.90136 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + -1 0 0 50.35018 0 1 0 90.90136 0 -0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + -1 0 0 50.40924 0 -1 0 16.88562 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + 1 0 0 9.464355 0 -1 0 16.88562 -0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + 1 0 0 9.4053 0 1 0 9.4053 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + 1 0 0 -2.273737e-13 0 1 0 0.2037402 0 0 1 0.6692913 0 0 0 1 + + + + + + + + + + + + + + + 1 0 0 0.07874016 0 1 0 0.2037402 0 0 1 0.07874016 0 0 0 1 + + + 1 0 0 7.105427e-15 0 1 0 0.2037402 0 0 1 -3.384951e-12 0 0 0 1 + + + -2.335419e-17 -0.05674756 1.12301e-13 50.88327 2.560529e-17 -6.372809e-15 -1 0.9124016 0.06099979 -2.172619e-17 4.197602e-16 -3.223188 0 0 0 1 + + + + + + + + + + + + + + + + + + 48.0315 96.06299 0 44.48819 3.543307 1.665335e-16 48.0315 0 0 3.543307 3.543307 1.665335e-16 3.543307 92.51969 1.665335e-16 0 0 0 44.48819 92.51969 1.665335e-16 0 96.06299 0 0 96.06299 0 3.543307 92.51969 1.665335e-16 0 0 0 48.0315 96.06299 0 44.48819 92.51969 1.665335e-16 44.48819 3.543307 1.665335e-16 3.543307 3.543307 1.665335e-16 48.0315 0 0 48.0315 96.06299 0.3149606 0 96.06299 0.3149606 48.0315 96.06299 0 0 96.06299 0 0 96.06299 0.3149606 48.0315 96.06299 0 0 96.06299 0 48.0315 96.06299 0.3149606 48.0315 96.06299 0.3149606 48.0315 96.06299 0 48.0315 0 0.3149606 48.0315 0 0 48.0315 96.06299 0 48.0315 0 0.3149606 48.0315 0 0 48.0315 96.06299 0.3149606 0 0 0.3149606 48.0315 0 0.3149606 0 0 0 48.0315 0 0 48.0315 0 0.3149606 0 0 0 48.0315 0 0 0 0 0.3149606 0 96.06299 0 0 96.06299 0.3149606 0 0 0 0 0 0.3149606 0 96.06299 0.3149606 0 0 0 0 0 0.3149606 0 96.06299 0 48.0315 0 0.3149606 47.44094 95.47244 0.3149606 48.0315 96.06299 0.3149606 0.5905512 95.47244 0.3149606 0.5905512 0.5905512 0.3149606 0 96.06299 0.3149606 47.44094 0.5905512 0.3149606 0 0 0.3149606 0 0 0.3149606 0.5905512 0.5905512 0.3149606 0 96.06299 0.3149606 48.0315 0 0.3149606 47.44094 0.5905512 0.3149606 47.44094 95.47244 0.3149606 0.5905512 95.47244 0.3149606 48.0315 96.06299 0.3149606 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 0 1 0 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 1 0 0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 + + + + + + + + + + -4.80315 9.606299 -4.448819 0.3543307 -4.80315 0 -0.3543307 0.3543307 -0.3543307 9.251969 0 0 -4.448819 9.251969 0 9.606299 -4.80315 0.03149606 0 0.03149606 9.606299 0.03149606 9.606299 0 4.80315 0.03149606 4.80315 0 -9.606299 0 -9.606299 0.03149606 4.744094 9.547244 4.80315 9.606299 0.05905512 9.547244 0.05905512 0.05905512 4.744094 0.05905512 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 3 3 2 2 4 4 5 5 3 3 2 2 3 3 5 5 1 1 0 0 6 6 6 6 0 0 4 4 0 0 7 7 4 4 5 5 4 4 7 7 8 7 9 4 10 5 9 4 8 7 11 0 9 4 11 0 12 6 12 6 11 0 13 1 10 5 14 3 15 2 14 3 10 5 9 4 15 2 14 3 13 1 15 2 13 1 11 0 16 8 17 9 18 2 19 5 18 2 17 9 20 9 21 2 22 5 21 2 20 9 23 8 24 10 25 11 26 9 27 5 26 9 25 11 28 11 29 9 30 5 29 9 28 11 31 10 32 9 33 12 34 5 35 13 34 5 33 12 36 12 37 5 38 13 37 5 36 12 39 9 40 14 41 15 42 5 43 9 42 5 41 15 44 15 45 5 46 9 45 5 44 15 47 14 48 13 49 16 50 17 49 16 51 18 50 17 52 19 53 7 51 18 50 17 51 18 53 7 49 16 48 13 54 20 54 20 48 13 52 19 48 13 55 5 52 19 53 7 52 19 55 5 56 5 57 19 58 7 57 19 56 5 59 13 57 19 59 13 60 20 60 20 59 13 61 16 58 7 62 18 63 17 62 18 58 7 57 19 63 17 62 18 61 16 63 17 61 16 59 13

+
+
+
+ + + + 47.44094 0.5905512 0.7480315 44.48819 92.51969 0.7480315 47.44094 95.47244 0.7480315 3.543307 92.51969 0.7480315 3.543307 3.543307 0.7480315 0.5905512 95.47244 0.7480315 44.48819 3.543307 0.7480315 0.5905512 0.5905512 0.7480315 0.5905512 0.5905512 0.7480315 3.543307 3.543307 0.7480315 0.5905512 95.47244 0.7480315 47.44094 0.5905512 0.7480315 44.48819 3.543307 0.7480315 44.48819 92.51969 0.7480315 3.543307 92.51969 0.7480315 47.44094 95.47244 0.7480315 47.44094 95.47244 0.7480315 0.5905512 95.47244 0.7480315 47.44094 95.47244 0.3149606 0.5905512 95.47244 0.3149606 0.5905512 95.47244 0.7480315 47.44094 95.47244 0.3149606 0.5905512 95.47244 0.3149606 47.44094 95.47244 0.7480315 0.5905512 95.47244 0.3149606 0.5905512 95.47244 0.7480315 0.5905512 0.5905512 0.3149606 0.5905512 0.5905512 0.7480315 0.5905512 95.47244 0.7480315 0.5905512 0.5905512 0.3149606 0.5905512 0.5905512 0.7480315 0.5905512 95.47244 0.3149606 0.5905512 0.5905512 0.7480315 47.44094 0.5905512 0.7480315 0.5905512 0.5905512 0.3149606 47.44094 0.5905512 0.3149606 47.44094 0.5905512 0.7480315 0.5905512 0.5905512 0.3149606 47.44094 0.5905512 0.3149606 0.5905512 0.5905512 0.7480315 47.44094 95.47244 0.7480315 47.44094 95.47244 0.3149606 47.44094 0.5905512 0.7480315 47.44094 0.5905512 0.3149606 47.44094 95.47244 0.3149606 47.44094 0.5905512 0.7480315 47.44094 0.5905512 0.3149606 47.44094 95.47244 0.7480315 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 0 1 0 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 + + + + + + + + + + 4.744094 0.05905512 4.448819 9.251969 4.744094 9.547244 0.3543307 9.251969 0.3543307 0.3543307 0.05905512 9.547244 4.448819 0.3543307 0.05905512 0.05905512 -4.744094 0.07480315 -0.05905512 0.07480315 -4.744094 0.03149606 -0.05905512 0.03149606 -9.547244 0.03149606 -9.547244 0.07480315 0.05905512 0.07480315 4.744094 0.07480315 0.05905512 0.03149606 4.744094 0.03149606 9.547244 0.07480315 9.547244 0.03149606 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 3 3 2 2 4 4 5 5 3 3 2 2 3 3 5 5 1 1 0 0 6 6 6 6 0 0 4 4 0 0 7 7 4 4 5 5 4 4 7 7 8 7 9 4 10 5 9 4 8 7 11 0 9 4 11 0 12 6 12 6 11 0 13 1 10 5 14 3 15 2 14 3 10 5 9 4 15 2 14 3 13 1 15 2 13 1 11 0 16 8 17 9 18 10 19 11 18 10 17 9 20 9 21 10 22 11 21 10 20 9 23 8 24 12 25 13 26 11 27 9 26 11 25 13 28 13 29 11 30 9 29 11 28 13 31 12 32 14 33 15 34 16 35 17 34 16 33 15 36 15 37 16 38 17 37 16 36 15 39 14 40 18 41 19 42 14 43 16 42 14 41 19 44 19 45 14 46 16 45 14 44 19 47 18

+
+
+
+ + + + 44.48819 3.543307 0.7480315 3.543307 3.543307 0.7480315 44.48819 3.543307 1.665335e-16 3.543307 3.543307 1.665335e-16 3.543307 3.543307 0.7480315 44.48819 3.543307 1.665335e-16 3.543307 3.543307 1.665335e-16 44.48819 3.543307 0.7480315 44.48819 92.51969 1.665335e-16 44.48819 92.51969 0.7480315 44.48819 3.543307 1.665335e-16 44.48819 3.543307 0.7480315 44.48819 92.51969 0.7480315 44.48819 3.543307 1.665335e-16 44.48819 3.543307 0.7480315 44.48819 92.51969 1.665335e-16 3.543307 92.51969 0.7480315 44.48819 92.51969 0.7480315 3.543307 92.51969 1.665335e-16 44.48819 92.51969 1.665335e-16 44.48819 92.51969 0.7480315 3.543307 92.51969 1.665335e-16 44.48819 92.51969 1.665335e-16 3.543307 92.51969 0.7480315 + + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + -4.448819 0.07480315 -0.3543307 0.07480315 -4.448819 1.665335e-17 -0.3543307 1.665335e-17 -9.251969 1.665335e-17 -9.251969 0.07480315 -0.3543307 1.665335e-17 -0.3543307 0.07480315 0.3543307 0.07480315 4.448819 0.07480315 0.3543307 1.665335e-17 4.448819 1.665335e-17 + + + + + + + + + + + + + + +

0 0 1 1 2 2 3 3 2 2 1 1 4 1 5 2 6 3 5 2 4 1 7 0 8 4 9 5 10 6 11 7 10 6 9 5 12 5 13 6 14 7 13 6 12 5 15 4 16 8 17 9 18 10 19 11 18 10 17 9 20 9 21 10 22 11 21 10 20 9 23 8

+
+
+
+ + + + 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.5905512 95.47244 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 0 0.511811 0 -1.776357e-15 0.5905512 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 0.5905512 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 -1.776357e-15 0.5905512 0 0 0.511811 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 4.263256e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 0.5905512 -0.5905512 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 0.5905512 -0.5905512 -0.1181102 0.6692913 95.55118 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 0.6692913 95.55118 0.5905512 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 7.105427e-15 94.88189 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 0.5905512 + + + + + + + + + + -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 5 4 7 8 9 10 11 10 9 12 13 14 13 12 15 16 17 18 19 20 17 18 17 20 21 22 19 22 23 19 20 19 23 24 25 26 25 24 27 25 27 28 26 29 30 29 26 25 30 29 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 41 43 42 43 44 42 42 44 45 44 46 45 47 45 46 48 49 50 49 48 51 49 51 52 52 51 53 52 53 54 52 54 55 56 57 58 59 58 57 60 61 62 61 60 63 64 65 66 67 66 65 68 69 70 69 68 71 72 73 74 75 74 73 76 77 78 77 76 79 80 81 82 83 82 81 84 85 86 85 84 87 88 89 90 91 90 89 92 93 94 93 92 95

+
+
+
+ + + + 0 0 0.511811 1.421085e-14 3.996803e-15 -0.1181102 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.5905512 95.47244 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 0.6692913 47.36194 0.5905512 0.6692913 47.36194 0.5905512 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.5905512 -1.520561e-12 48.03123 0.511811 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 7.105427e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1181102 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 0.5905512 95.47244 -0.1181102 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 95.47244 -0.1181102 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1968504 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 0.6692913 95.55118 0.5905512 + + + + + + + + + + -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 5 4 7 8 9 10 11 10 9 12 13 14 13 12 15 16 17 18 19 20 17 18 17 20 21 22 19 22 23 19 20 19 23 24 25 26 25 24 27 25 27 28 26 29 30 29 26 25 30 29 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 41 43 42 43 44 42 42 44 45 44 46 45 47 45 46 48 49 50 49 48 51 49 51 52 52 51 53 52 53 54 52 54 55 56 57 58 59 58 57 60 61 62 61 60 63 64 65 66 67 66 65 68 69 70 69 68 71 72 73 74 75 74 73 76 77 78 77 76 79 80 81 82 83 82 81 84 85 86 85 84 87 88 89 90 91 90 89 92 93 94 93 92 95

+
+
+
+ + + + 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 0.5905512 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 -1.776357e-15 0.5905512 0 0 0.511811 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 0 0.511811 0 -1.776357e-15 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 7.105427e-15 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 4.263256e-14 94.88189 0.5905512 4.263256e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 94.88189 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 + + + + + + + + + + -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 17 19 20 18 21 22 21 18 17 22 21 23 24 25 26 27 28 25 26 25 28 29 30 27 30 31 27 28 27 31 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 41 43 44 44 43 45 44 45 46 44 46 47 48 49 50 49 51 50 51 52 50 50 52 53 52 54 53 55 53 54 56 57 58 57 56 59 60 61 62 63 62 61 64 65 66 65 64 67 68 69 70 71 70 69 72 73 74 73 72 75 76 77 78 79 78 77 80 81 82 81 80 83 84 85 86 87 86 85 88 89 90 89 88 91 92 93 94 95 94 93

+
+
+
+ + + + 0 0 0.511811 1.421085e-14 3.996803e-15 -0.1181102 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.6692913 47.36194 0.5905512 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.5905512 -1.520561e-12 48.03123 0.511811 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 2.842171e-14 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 7.105427e-14 94.88189 0.5905512 7.105427e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1181102 2.842171e-14 94.88189 -0.1968504 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 + + + + + + + + + + -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 17 19 20 18 21 22 21 18 17 22 21 23 24 25 26 27 28 25 26 25 28 29 30 27 30 31 27 28 27 31 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 41 43 44 44 43 45 44 45 46 44 46 47 48 49 50 49 51 50 51 52 50 50 52 53 52 54 53 55 53 54 56 57 58 57 56 59 60 61 62 63 62 61 64 65 66 65 64 67 68 69 70 71 70 69 72 73 74 73 72 75 76 77 78 79 78 77 80 81 82 81 80 83 84 85 86 87 86 85 88 89 90 89 88 91 92 93 94 95 94 93

+
+
+
+ + + + 4.628882 6.299213 0 1.181102 2.851433 0 7.480315 7.480315 0 1.181102 6.299213 0 0 0 0 0 7.480315 0 0 7.480315 0.05905512 0 7.480315 0 0 7.42126 0.05905512 0 0 0.05905512 0 0 0 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 7.42126 7.42126 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0 0 0 0 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 7.42126 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 6.791339 7.480315 0.7480315 0.6889764 7.480315 0.7480315 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 1.181102 2.851433 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.05905512 0 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 0.05905512 6.791339 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 0.6889764 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0 0.05905512 6.791339 7.480315 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 3 4 1 2 1 4 0 2 3 2 5 3 4 3 5 6 7 8 8 7 9 10 9 7 11 12 13 14 13 12 15 16 17 17 16 18 18 16 19 20 19 16 21 22 23 24 23 22 25 26 27 27 26 28 29 28 26 30 31 32 33 32 31 26 34 29 35 29 34 36 37 11 12 11 37 38 39 40 41 42 25 43 26 42 25 42 26 41 25 43 25 34 43 26 43 34 44 45 46 47 48 49 49 48 50 50 48 51 52 51 48 53 54 55 56 55 54 57 58 59 60 59 58 61 62 63 64 63 62 65 66 67 68 67 66 69 70 71 70 72 71 73 71 72 74 75 76 77 76 75

+
+
+
+ + + + 4.628882 6.299213 0 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 1.181102 6.299213 0.05905512 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 7 6 5 8 9 10 11 10 9

+
+
+
+ + + + 0 7.480315 0 1.181102 6.299213 0 0 0 0 7.480315 7.480315 0 4.628882 6.299213 0 1.181102 2.851433 0 0 7.480315 0 0 0 0.05905512 0 0 0 0 7.42126 0.05905512 0 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 0 0 0.05905512 0 0 0 0.05905512 0.05905512 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 0 7.480315 0.05905512 0.05905512 7.42126 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0 6.791339 0.7480315 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.6889764 7.480315 0.7480315 6.791339 7.480315 0.7480315 7.480315 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 1.181102 2.851433 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 0.05905512 0 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 6.791339 7.42126 0.7480315 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 6.791339 7.480315 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0 0.05905512 0.05905512 7.42126 0.05905512 0.05905512 6.791339 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 2 5 3 5 2 1 3 5 4 6 7 8 7 6 9 9 6 10 11 12 13 12 11 14 15 16 17 16 15 18 18 15 19 19 15 20 21 22 23 22 21 24 25 26 27 26 25 28 28 25 29 30 31 32 31 30 33 34 27 35 27 34 25 36 14 11 14 36 37 38 39 40 34 41 25 41 34 29 41 29 42 25 43 29 43 25 41 29 43 42 44 45 46 47 48 49 48 47 50 50 47 51 51 47 52 53 54 55 54 53 56 57 58 59 58 57 60 61 62 63 62 61 64 65 66 67 66 65 68 69 70 71 70 69 72 70 72 73 74 75 76 75 74 77

+
+
+
+ + + + 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 4.628882 6.299213 0 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 1.181102 6.299213 0.05905512 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11

+
+
+
+ + + + 4.628882 6.299213 0 1.181102 2.851433 0 7.480315 7.480315 0 1.181102 6.299213 0 0 0 0 0 7.480315 0 0 7.480315 0.05905512 0 7.480315 0 0 7.42126 0.05905512 0 0 0.05905512 0 0 0 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 7.42126 7.42126 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0 0 0 0 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 7.42126 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 6.791339 7.480315 0.7480315 0.6889764 7.480315 0.7480315 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 1.181102 2.851433 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.05905512 0 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 0.05905512 6.791339 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 0.6889764 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0 0.05905512 6.791339 7.480315 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 3 4 1 2 1 4 0 2 3 2 5 3 4 3 5 6 7 8 8 7 9 10 9 7 11 12 13 14 13 12 15 16 17 17 16 18 18 16 19 20 19 16 21 22 23 24 23 22 25 26 27 27 26 28 29 28 26 30 31 32 33 32 31 26 34 29 35 29 34 36 37 11 12 11 37 38 39 40 41 42 25 43 26 42 25 42 26 41 25 43 25 34 43 26 43 34 44 45 46 47 48 49 49 48 50 50 48 51 52 51 48 53 54 55 56 55 54 57 58 59 60 59 58 61 62 63 64 63 62 65 66 67 68 67 66 69 70 71 70 72 71 73 71 72 74 75 76 77 76 75

+
+
+
+ + + + 4.628882 6.299213 0 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 1.181102 6.299213 0.05905512 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 7 6 5 8 9 10 11 10 9

+
+
+
+ + + + 0 7.480315 0 1.181102 6.299213 0 0 0 0 7.480315 7.480315 0 4.628882 6.299213 0 1.181102 2.851433 0 0 7.480315 0 0 0 0.05905512 0 0 0 0 7.42126 0.05905512 0 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 0 0 0.05905512 0 0 0 0.05905512 0.05905512 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 0 7.480315 0.05905512 0.05905512 7.42126 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0 6.791339 0.7480315 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.6889764 7.480315 0.7480315 6.791339 7.480315 0.7480315 7.480315 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 1.181102 2.851433 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 0.05905512 0 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 6.791339 7.42126 0.7480315 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 6.791339 7.480315 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0 0.05905512 0.05905512 7.42126 0.05905512 0.05905512 6.791339 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 2 5 3 5 2 1 3 5 4 6 7 8 7 6 9 9 6 10 11 12 13 12 11 14 15 16 17 16 15 18 18 15 19 19 15 20 21 22 23 22 21 24 25 26 27 26 25 28 28 25 29 30 31 32 31 30 33 34 27 35 27 34 25 36 14 11 14 36 37 38 39 40 34 41 25 41 34 29 41 29 42 25 43 29 43 25 41 29 43 42 44 45 46 47 48 49 48 47 50 50 47 51 51 47 52 53 54 55 54 53 56 57 58 59 58 57 60 61 62 63 62 61 64 65 66 67 66 65 68 69 70 71 70 69 72 70 72 73 74 75 76 75 74 77

+
+
+
+ + + + 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 4.628882 6.299213 0 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 1.181102 6.299213 0.05905512 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11

+
+
+
+ + + + 40.94488 8.881784e-16 1.110223e-15 40.94488 88.97638 1.110223e-16 0 8.881784e-16 4.440892e-16 0 88.97638 1.110223e-16 0 88.97638 1.110223e-16 0 88.97638 0.01968504 0 8.881784e-16 4.440892e-16 0 8.881784e-16 0.01968504 40.94488 88.97638 0.01968504 0 88.97638 0.01968504 40.94488 88.97638 1.110223e-16 0 88.97638 1.110223e-16 40.94488 88.97638 0.01968504 40.94488 88.97638 1.110223e-16 40.94488 8.881784e-16 0.01968504 40.94488 8.881784e-16 1.110223e-15 40.94488 8.881784e-16 0.01968504 40.94488 8.881784e-16 1.110223e-15 0 8.881784e-16 0.01968504 0 8.881784e-16 4.440892e-16 40.94488 88.97638 0.01968504 40.94488 8.881784e-16 0.01968504 0 88.97638 0.01968504 0 8.881784e-16 0.01968504 + + + + + + + + + + 8.134519e-18 -7.69601e-18 -1 8.134519e-18 -7.69601e-18 -1 8.134519e-18 -7.69601e-18 -1 8.134519e-18 -7.69601e-18 -1 -1 -3.215325e-35 -8.134519e-18 -1 -3.215325e-35 -8.134519e-18 -1 -3.215325e-35 -8.134519e-18 -1 -3.215325e-35 -8.134519e-18 0 1 -7.69601e-18 0 1 -7.69601e-18 0 1 -7.69601e-18 0 1 -7.69601e-18 1 9.305343e-35 8.134519e-18 1 9.305343e-35 8.134519e-18 1 9.305343e-35 8.134519e-18 1 9.305343e-35 8.134519e-18 -6.353919e-33 -1 7.69601e-18 -6.353919e-33 -1 7.69601e-18 -6.353919e-33 -1 7.69601e-18 -6.353919e-33 -1 7.69601e-18 -8.134519e-18 7.69601e-18 1 -8.134519e-18 7.69601e-18 1 -8.134519e-18 7.69601e-18 1 -8.134519e-18 7.69601e-18 1 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 7 6 5 8 9 10 11 10 9 12 13 14 15 14 13 16 17 18 19 18 17 20 21 22 23 22 21

+
+
+
+ + + + 48.18924 6.142253e-12 95.55118 0 0 2.109424e-14 48.18924 6.12646e-12 0 4.263256e-14 1.579292e-14 95.55118 4.263256e-14 1.579292e-14 95.55118 48.18924 6.142253e-12 95.55118 0 0 2.109424e-14 48.18924 6.12646e-12 0 + + + + + + + + + + 1.271335e-13 -1 1.653963e-16 1.271335e-13 -1 1.653963e-16 1.271335e-13 -1 1.653963e-16 1.271335e-13 -1 1.653963e-16 -1.271335e-13 1 -1.653963e-16 -1.271335e-13 1 -1.653963e-16 -1.271335e-13 1 -1.653963e-16 -1.271335e-13 1 -1.653963e-16 + + + + + + + + + + 0.9967166 0.9981517 0.003656339 0.001846642 0.9967166 0.001846642 0.003656339 0.9981517 1 1 1 0 1.431366e-19 1 0 0 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 0 0 3 3

+
+ + + +

4 4 5 5 6 6 7 7 6 6 5 5

+
+
+
+ + + + 0 944 0 0 0 0 1680 944 0 1680 0 0 1680 944 0 0 0 0 0 944 0 1680 0 0 + + + + + + + + + + 0 1 0 0 1 1 1 0 + + + + + + + + + + + + + +

0 0 1 1 2 2 3 3 2 2 1 1 4 2 5 1 6 0 5 1 4 2 7 3

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + ID12 + + + + + ID13 + + + + + + + + + + + + + + + + + 0.1176471 0.1176471 0.1176471 1 + + + + + + + + + + + 0.1176471 0.1176471 0.1176471 1 + + + 1 + + + + + + + + + + + 1 1 1 1 + + + + + + + + + + ID145 + + + + + ID146 + + + + + + + + + + + + + + + + ID154 + + + + + ID155 + + + + + + + + + + + + + + + + ID166 + + + + + ID167 + + + + + + + + + + + + + + + Rock_sheet_GOLDENBARK/Wood_Board_Cork.jpg + + + Rock_sheet_GOLDENBARK/Rockfoil_GOLDENBARK_light_2.jpg + + + Rock_sheet_GOLDENBARK/Rockfoil_GOLDENBARK_light.jpg + + + Rock_sheet_GOLDENBARK/texture.png + + + + + +
diff --git a/public/downloads/dae/Rock_sheet_PINK.dae b/public/downloads/dae/Rock_sheet_PINK.dae new file mode 100644 index 0000000..d684fe3 --- /dev/null +++ b/public/downloads/dae/Rock_sheet_PINK.dae @@ -0,0 +1,1163 @@ + + + + + SketchUp 20.0.363 + + 2024-01-20T11:49:23Z + 2024-01-20T11:49:23Z + + Z_UP + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + 35 + 0 + 1 + 1000 + + + + + + + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 0.9222304 -0.01445575 0.3863705 94.66547 0.3865888 0.01808328 -0.9220749 -154.3916 0.006342439 0.999732 0.02226538 51.91502 0 0 0 1 + + + + 1 0 0 -5.782987 0 -3.828569e-16 1 0.109252 -0 1 3.828569e-16 -5.783253 0 0 0 1 + + 1 0 0 5.861993 0 1 0 5.861993 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 0 0 53.30294 0 1 0 5.861993 0 0 1 0.2125984 0 0 0 1 + + + 1 0 0 53.30294 0 1 0 5.861993 0 0 1 0.2125984 0 0 0 1 + + 1 0 0 0 0 1 0 0.5905512 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + -3.535366e-14 -1 0 48.03123 1 -3.535366e-14 0 95.47244 0 0 1 -2.775558e-17 0 0 0 1 + + + + + + + + + + + + -1 0 0 -46.85066 0 1 0 0.5905512 0 -0 1 0 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + 3.535366e-14 -1 0 48.03123 -1 -3.535366e-14 0 0.5905512 0 0 1 -9.714451e-16 0 0 0 1 + + + + + + + + + + + + + 1 0 0 9.4053 0 1 0 90.90136 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + -1 0 0 50.35018 0 1 0 90.90136 0 -0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + -1 0 0 50.40924 0 -1 0 16.88562 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + 1 0 0 9.464355 0 -1 0 16.88562 -0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + + + + + + + + + 1 0 0 9.4053 0 1 0 9.4053 0 0 1 0.4094488 0 0 0 1 + + + + + + + + + + + + + 1 0 0 -2.273737e-13 0 1 0 0.2037402 0 0 1 0.6692913 0 0 0 1 + + + 1 0 0 0.07874016 0 1 0 0.2037402 0 0 1 0.07874016 0 0 0 1 + + + 1 0 0 7.105427e-15 0 1 0 0.2037402 0 0 1 -3.384951e-12 0 0 0 1 + + + 1 0 0 2.131628e-14 0 1 0 0.2037402 0 0 1 -3.419609e-12 0 0 0 1 + + + + + + + + + + + + + + + -2.335419e-17 -0.05674756 1.12301e-13 50.88327 2.560529e-17 -6.372809e-15 -1 0.9124016 0.06099979 -2.172619e-17 4.197602e-16 -3.223188 0 0 0 1 + + + + + + + + + + + + + + + + + + 48.0315 96.06299 0 44.48819 3.543307 1.665335e-16 48.0315 0 0 3.543307 3.543307 1.665335e-16 3.543307 92.51969 1.665335e-16 0 0 0 44.48819 92.51969 1.665335e-16 0 96.06299 0 0 96.06299 0 3.543307 92.51969 1.665335e-16 0 0 0 48.0315 96.06299 0 44.48819 92.51969 1.665335e-16 44.48819 3.543307 1.665335e-16 3.543307 3.543307 1.665335e-16 48.0315 0 0 48.0315 96.06299 0.3149606 0 96.06299 0.3149606 48.0315 96.06299 0 0 96.06299 0 0 96.06299 0.3149606 48.0315 96.06299 0 0 96.06299 0 48.0315 96.06299 0.3149606 48.0315 96.06299 0.3149606 48.0315 96.06299 0 48.0315 0 0.3149606 48.0315 0 0 48.0315 96.06299 0 48.0315 0 0.3149606 48.0315 0 0 48.0315 96.06299 0.3149606 0 0 0.3149606 48.0315 0 0.3149606 0 0 0 48.0315 0 0 48.0315 0 0.3149606 0 0 0 48.0315 0 0 0 0 0.3149606 0 96.06299 0 0 96.06299 0.3149606 0 0 0 0 0 0.3149606 0 96.06299 0.3149606 0 0 0 0 0 0.3149606 0 96.06299 0 48.0315 0 0.3149606 47.44094 95.47244 0.3149606 48.0315 96.06299 0.3149606 0.5905512 95.47244 0.3149606 0.5905512 0.5905512 0.3149606 0 96.06299 0.3149606 47.44094 0.5905512 0.3149606 0 0 0.3149606 0 0 0.3149606 0.5905512 0.5905512 0.3149606 0 96.06299 0.3149606 48.0315 0 0.3149606 47.44094 0.5905512 0.3149606 47.44094 95.47244 0.3149606 0.5905512 95.47244 0.3149606 48.0315 96.06299 0.3149606 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 1 0 1 0 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 1 0 0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 + + + + + + + + + + -4.80315 9.606299 -4.448819 0.3543307 -4.80315 0 -0.3543307 0.3543307 -0.3543307 9.251969 0 0 -4.448819 9.251969 0 9.606299 -4.80315 0.03149606 0 0.03149606 9.606299 0.03149606 9.606299 0 4.80315 0.03149606 4.80315 0 -9.606299 0 -9.606299 0.03149606 4.744094 9.547244 4.80315 9.606299 0.05905512 9.547244 0.05905512 0.05905512 4.744094 0.05905512 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 3 3 2 2 4 4 5 5 3 3 2 2 3 3 5 5 1 1 0 0 6 6 6 6 0 0 4 4 0 0 7 7 4 4 5 5 4 4 7 7 8 7 9 4 10 5 9 4 8 7 11 0 9 4 11 0 12 6 12 6 11 0 13 1 10 5 14 3 15 2 14 3 10 5 9 4 15 2 14 3 13 1 15 2 13 1 11 0 16 8 17 9 18 2 19 5 18 2 17 9 20 9 21 2 22 5 21 2 20 9 23 8 24 10 25 11 26 9 27 5 26 9 25 11 28 11 29 9 30 5 29 9 28 11 31 10 32 9 33 12 34 5 35 13 34 5 33 12 36 12 37 5 38 13 37 5 36 12 39 9 40 14 41 15 42 5 43 9 42 5 41 15 44 15 45 5 46 9 45 5 44 15 47 14 48 13 49 16 50 17 49 16 51 18 50 17 52 19 53 7 51 18 50 17 51 18 53 7 49 16 48 13 54 20 54 20 48 13 52 19 48 13 55 5 52 19 53 7 52 19 55 5 56 5 57 19 58 7 57 19 56 5 59 13 57 19 59 13 60 20 60 20 59 13 61 16 58 7 62 18 63 17 62 18 58 7 57 19 63 17 62 18 61 16 63 17 61 16 59 13

+
+
+
+ + + + 47.44094 0.5905512 0.7480315 44.48819 92.51969 0.7480315 47.44094 95.47244 0.7480315 3.543307 92.51969 0.7480315 3.543307 3.543307 0.7480315 0.5905512 95.47244 0.7480315 44.48819 3.543307 0.7480315 0.5905512 0.5905512 0.7480315 0.5905512 0.5905512 0.7480315 3.543307 3.543307 0.7480315 0.5905512 95.47244 0.7480315 47.44094 0.5905512 0.7480315 44.48819 3.543307 0.7480315 44.48819 92.51969 0.7480315 3.543307 92.51969 0.7480315 47.44094 95.47244 0.7480315 47.44094 95.47244 0.7480315 0.5905512 95.47244 0.7480315 47.44094 95.47244 0.3149606 0.5905512 95.47244 0.3149606 0.5905512 95.47244 0.7480315 47.44094 95.47244 0.3149606 0.5905512 95.47244 0.3149606 47.44094 95.47244 0.7480315 0.5905512 95.47244 0.3149606 0.5905512 95.47244 0.7480315 0.5905512 0.5905512 0.3149606 0.5905512 0.5905512 0.7480315 0.5905512 95.47244 0.7480315 0.5905512 0.5905512 0.3149606 0.5905512 0.5905512 0.7480315 0.5905512 95.47244 0.3149606 0.5905512 0.5905512 0.7480315 47.44094 0.5905512 0.7480315 0.5905512 0.5905512 0.3149606 47.44094 0.5905512 0.3149606 47.44094 0.5905512 0.7480315 0.5905512 0.5905512 0.3149606 47.44094 0.5905512 0.3149606 0.5905512 0.5905512 0.7480315 47.44094 95.47244 0.7480315 47.44094 95.47244 0.3149606 47.44094 0.5905512 0.7480315 47.44094 0.5905512 0.3149606 47.44094 95.47244 0.3149606 47.44094 0.5905512 0.7480315 47.44094 0.5905512 0.3149606 47.44094 95.47244 0.7480315 + + + + + + + + + + 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 0 1 0 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 + + + + + + + + + + 4.744094 0.05905512 4.448819 9.251969 4.744094 9.547244 0.3543307 9.251969 0.3543307 0.3543307 0.05905512 9.547244 4.448819 0.3543307 0.05905512 0.05905512 -4.744094 0.07480315 -0.05905512 0.07480315 -4.744094 0.03149606 -0.05905512 0.03149606 -9.547244 0.03149606 -9.547244 0.07480315 0.05905512 0.07480315 4.744094 0.07480315 0.05905512 0.03149606 4.744094 0.03149606 9.547244 0.07480315 9.547244 0.03149606 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 3 3 2 2 4 4 5 5 3 3 2 2 3 3 5 5 1 1 0 0 6 6 6 6 0 0 4 4 0 0 7 7 4 4 5 5 4 4 7 7 8 7 9 4 10 5 9 4 8 7 11 0 9 4 11 0 12 6 12 6 11 0 13 1 10 5 14 3 15 2 14 3 10 5 9 4 15 2 14 3 13 1 15 2 13 1 11 0 16 8 17 9 18 10 19 11 18 10 17 9 20 9 21 10 22 11 21 10 20 9 23 8 24 12 25 13 26 11 27 9 26 11 25 13 28 13 29 11 30 9 29 11 28 13 31 12 32 14 33 15 34 16 35 17 34 16 33 15 36 15 37 16 38 17 37 16 36 15 39 14 40 18 41 19 42 14 43 16 42 14 41 19 44 19 45 14 46 16 45 14 44 19 47 18

+
+
+
+ + + + 44.48819 3.543307 0.7480315 3.543307 3.543307 0.7480315 44.48819 3.543307 1.665335e-16 3.543307 3.543307 1.665335e-16 3.543307 3.543307 0.7480315 44.48819 3.543307 1.665335e-16 3.543307 3.543307 1.665335e-16 44.48819 3.543307 0.7480315 44.48819 92.51969 1.665335e-16 44.48819 92.51969 0.7480315 44.48819 3.543307 1.665335e-16 44.48819 3.543307 0.7480315 44.48819 92.51969 0.7480315 44.48819 3.543307 1.665335e-16 44.48819 3.543307 0.7480315 44.48819 92.51969 1.665335e-16 3.543307 92.51969 0.7480315 44.48819 92.51969 0.7480315 3.543307 92.51969 1.665335e-16 44.48819 92.51969 1.665335e-16 44.48819 92.51969 0.7480315 3.543307 92.51969 1.665335e-16 44.48819 92.51969 1.665335e-16 3.543307 92.51969 0.7480315 + + + + + + + + + + 0 1 0 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1 -0 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 0 1 0 0 1 0 0 1 0 + + + + + + + + + + -4.448819 0.07480315 -0.3543307 0.07480315 -4.448819 1.665335e-17 -0.3543307 1.665335e-17 -9.251969 1.665335e-17 -9.251969 0.07480315 -0.3543307 1.665335e-17 -0.3543307 0.07480315 0.3543307 0.07480315 4.448819 0.07480315 0.3543307 1.665335e-17 4.448819 1.665335e-17 + + + + + + + + + + + + + + +

0 0 1 1 2 2 3 3 2 2 1 1 4 1 5 2 6 3 5 2 4 1 7 0 8 4 9 5 10 6 11 7 10 6 9 5 12 5 13 6 14 7 13 6 12 5 15 4 16 8 17 9 18 10 19 11 18 10 17 9 20 9 21 10 22 11 21 10 20 9 23 8

+
+
+
+ + + + 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.5905512 95.47244 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 0 0.511811 0 -1.776357e-15 0.5905512 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 0.5905512 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 -1.776357e-15 0.5905512 0 0 0.511811 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 4.263256e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 0.5905512 -0.5905512 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 0.5905512 -0.5905512 -0.1181102 0.6692913 95.55118 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 0.6692913 95.55118 0.5905512 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 7.105427e-15 94.88189 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 0.5905512 + + + + + + + + + + -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 5 4 7 8 9 10 11 10 9 12 13 14 13 12 15 16 17 18 19 20 17 18 17 20 21 22 19 22 23 19 20 19 23 24 25 26 25 24 27 25 27 28 26 29 30 29 26 25 30 29 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 41 43 42 43 44 42 42 44 45 44 46 45 47 45 46 48 49 50 49 48 51 49 51 52 52 51 53 52 53 54 52 54 55 56 57 58 59 58 57 60 61 62 61 60 63 64 65 66 67 66 65 68 69 70 69 68 71 72 73 74 75 74 73 76 77 78 77 76 79 80 81 82 83 82 81 84 85 86 85 84 87 88 89 90 91 90 89 92 93 94 93 92 95

+
+
+
+ + + + 0 0 0.511811 1.421085e-14 3.996803e-15 -0.1181102 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.5905512 95.47244 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 0.6692913 47.36194 0.5905512 0.6692913 47.36194 0.5905512 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.5905512 -1.520561e-12 48.03123 0.511811 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 7.105427e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1181102 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 0.5905512 95.47244 -0.1181102 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 95.47244 -0.1181102 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1968504 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 0.6692913 95.55118 0.5905512 + + + + + + + + + + -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 5 4 7 8 9 10 11 10 9 12 13 14 13 12 15 16 17 18 19 20 17 18 17 20 21 22 19 22 23 19 20 19 23 24 25 26 25 24 27 25 27 28 26 29 30 29 26 25 30 29 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 41 43 42 43 44 42 42 44 45 44 46 45 47 45 46 48 49 50 49 48 51 49 51 52 52 51 53 52 53 54 52 54 55 56 57 58 59 58 57 60 61 62 61 60 63 64 65 66 67 66 65 68 69 70 69 68 71 72 73 74 75 74 73 76 77 78 77 76 79 80 81 82 83 82 81 84 85 86 85 84 87 88 89 90 91 90 89 92 93 94 93 92 95

+
+
+
+ + + + 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 0.5905512 -0.5905512 0.511811 0 0 0.511811 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 0.5905512 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 -1.776357e-15 0.5905512 0 0 0.511811 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 -0.5905512 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 0.5905512 -0.5905512 0.511811 0.6692913 -0.6692913 -0.1968504 0 0 0.511811 0 -1.776357e-15 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 0 0 0.511811 0 -1.776357e-15 0.5905512 7.105427e-15 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 4.263256e-14 94.88189 0.511811 4.263256e-14 94.88189 0.5905512 4.263256e-14 94.88189 0.5905512 4.263256e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 94.88189 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 0.5905512 -0.5905512 -0.1181102 0.5905512 -0.5905512 -0.1181102 1.421085e-14 3.996803e-15 -0.1181102 0.5905512 95.47244 -0.1181102 7.105427e-15 94.88189 -0.1181102 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 -0.6692913 0.5905512 4.263256e-14 94.88189 0.5905512 0 -1.776357e-15 0.5905512 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1968504 7.105427e-15 94.88189 -0.1181102 7.105427e-15 6.106227e-15 -0.1968504 1.421085e-14 3.996803e-15 -0.1181102 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 -0.1968504 7.105427e-15 6.106227e-15 -0.1968504 7.105427e-15 94.88189 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 -0.6692913 0.5905512 0.6692913 -0.6692913 -0.1968504 + + + + + + + + + + -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 -7.645242e-15 1.4597e-15 -1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 7.645242e-15 -1.4597e-15 1 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 -1 6.287138e-16 5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 1 -6.287138e-16 -5.07594e-14 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 -0.7071068 -0.7071068 -7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 0.7071068 0.7071068 7.458125e-15 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 -1 4.493225e-16 2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 1 -4.493225e-16 -2.945948e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 -1.271335e-13 -5.482532e-16 1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 1.271335e-13 5.482532e-16 -1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 3.782658e-15 -1.414651e-15 1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -3.782658e-15 1.414651e-15 -1 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 -1 -3.744354e-17 4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1 3.744354e-17 -4.511946e-14 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 1.12301e-13 8.026171e-16 -1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 -1.12301e-13 -8.026171e-16 1 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 1 -6.276848e-16 -4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 -1 6.276848e-16 4.060752e-14 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 17 19 20 18 21 22 21 18 17 22 21 23 24 25 26 27 28 25 26 25 28 29 30 27 30 31 27 28 27 31 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 41 43 44 44 43 45 44 45 46 44 46 47 48 49 50 49 51 50 51 52 50 50 52 53 52 54 53 55 53 54 56 57 58 57 56 59 60 61 62 63 62 61 64 65 66 65 64 67 68 69 70 71 70 69 72 73 74 73 72 75 76 77 78 79 78 77 80 81 82 81 80 83 84 85 86 87 86 85 88 89 90 89 88 91 92 93 94 95 94 93

+
+
+
+ + + + 0 0 0.511811 1.421085e-14 3.996803e-15 -0.1181102 + + + + + + + + + + + + + +

1 0

+
+
+
+ + + + 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 0.5905512 95.47244 0.511811 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 0.5905512 47.44068 0.511811 -1.520561e-12 48.03123 0.511811 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 0.511811 0.5905512 47.44068 -0.1181102 0.5905512 47.44068 0.511811 0.6692913 47.36194 0.5905512 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.5905512 -1.520561e-12 48.03123 0.511811 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 47.44068 -0.1181102 -1.520561e-12 48.03123 -0.1968504 0.5905512 47.44068 0.511811 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.511811 -1.520561e-12 48.03123 0.5905512 2.842171e-14 94.88189 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 7.105427e-14 94.88189 0.511811 7.105427e-14 94.88189 0.5905512 7.105427e-14 94.88189 0.5905512 7.105427e-14 94.88189 0.511811 0.6692913 95.55118 0.5905512 0.5905512 95.47244 0.511811 0.5905512 95.47244 -0.1181102 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1181102 2.842171e-14 94.88189 -0.1968504 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 95.47244 -0.1181102 0.5905512 47.44068 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1968504 2.842171e-14 94.88189 -0.1181102 -1.520561e-12 48.03123 -0.1968504 -1.534772e-12 48.03123 -0.1181102 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 95.55118 -0.1968504 2.842171e-14 94.88189 -0.1968504 0.6692913 47.36194 -0.1968504 -1.520561e-12 48.03123 -0.1968504 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 -0.1968504 0.6692913 47.36194 0.5905512 0.6692913 47.36194 -0.1968504 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 95.55118 0.5905512 0.6692913 47.36194 0.5905512 7.105427e-14 94.88189 0.5905512 -1.520561e-12 48.03123 0.5905512 + + + + + + + + + + -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 -5.295202e-14 1.580883e-15 -1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 5.295202e-14 -1.580883e-15 1 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 -1 7.376121e-16 6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 1 -7.376121e-16 -6.76792e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 -0.7071068 -0.7071068 -1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 0.7071068 0.7071068 1.604387e-14 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 -1 3.44437e-14 -9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 1 -3.44437e-14 9.022597e-30 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 -0.7071068 0.7071068 7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 0.7071068 -0.7071068 -7.485821e-14 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 -2.322242e-13 -8.407132e-16 1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 2.322242e-13 8.407132e-16 -1 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 -1 3.368539e-14 -9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 1 -3.368539e-14 9.023893e-14 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 2.26095e-13 -1.167933e-18 -1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 -2.26095e-13 1.167933e-18 1 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 1 -3.417408e-14 -5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 -1 3.417408e-14 5.414336e-14 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 5.709951e-14 -7.815768e-16 1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 -5.709951e-14 7.815768e-16 -1 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 17 19 20 18 21 22 21 18 17 22 21 23 24 25 26 27 28 25 26 25 28 29 30 27 30 31 27 28 27 31 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 41 43 44 44 43 45 44 45 46 44 46 47 48 49 50 49 51 50 51 52 50 50 52 53 52 54 53 55 53 54 56 57 58 57 56 59 60 61 62 63 62 61 64 65 66 65 64 67 68 69 70 71 70 69 72 73 74 73 72 75 76 77 78 79 78 77 80 81 82 81 80 83 84 85 86 87 86 85 88 89 90 89 88 91 92 93 94 95 94 93

+
+
+
+ + + + 4.628882 6.299213 0 1.181102 2.851433 0 7.480315 7.480315 0 1.181102 6.299213 0 0 0 0 0 7.480315 0 0 7.480315 0.05905512 0 7.480315 0 0 7.42126 0.05905512 0 0 0.05905512 0 0 0 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 7.42126 7.42126 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0 0 0 0 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 7.42126 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 6.791339 7.480315 0.7480315 0.6889764 7.480315 0.7480315 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 1.181102 2.851433 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.05905512 0 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 0.05905512 6.791339 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 0.6889764 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0 0.05905512 6.791339 7.480315 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 3 4 1 2 1 4 0 2 3 2 5 3 4 3 5 6 7 8 8 7 9 10 9 7 11 12 13 14 13 12 15 16 17 17 16 18 18 16 19 20 19 16 21 22 23 24 23 22 25 26 27 27 26 28 29 28 26 30 31 32 33 32 31 26 34 29 35 29 34 36 37 11 12 11 37 38 39 40 41 42 25 43 26 42 25 42 26 41 25 43 25 34 43 26 43 34 44 45 46 47 48 49 49 48 50 50 48 51 52 51 48 53 54 55 56 55 54 57 58 59 60 59 58 61 62 63 64 63 62 65 66 67 68 67 66 69 70 71 70 72 71 73 71 72 74 75 76 77 76 75

+
+
+
+ + + + 4.628882 6.299213 0 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 1.181102 6.299213 0.05905512 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 7 6 5 8 9 10 11 10 9

+
+
+
+ + + + 0 7.480315 0 1.181102 6.299213 0 0 0 0 7.480315 7.480315 0 4.628882 6.299213 0 1.181102 2.851433 0 0 7.480315 0 0 0 0.05905512 0 0 0 0 7.42126 0.05905512 0 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 0 0 0.05905512 0 0 0 0.05905512 0.05905512 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 0 7.480315 0.05905512 0.05905512 7.42126 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0 6.791339 0.7480315 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.6889764 7.480315 0.7480315 6.791339 7.480315 0.7480315 7.480315 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 1.181102 2.851433 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 0.05905512 0 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 6.791339 7.42126 0.7480315 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 6.791339 7.480315 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0 0.05905512 0.05905512 7.42126 0.05905512 0.05905512 6.791339 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 2 5 3 5 2 1 3 5 4 6 7 8 7 6 9 9 6 10 11 12 13 12 11 14 15 16 17 16 15 18 18 15 19 19 15 20 21 22 23 22 21 24 25 26 27 26 25 28 28 25 29 30 31 32 31 30 33 34 27 35 27 34 25 36 14 11 14 36 37 38 39 40 34 41 25 41 34 29 41 29 42 25 43 29 43 25 41 29 43 42 44 45 46 47 48 49 48 47 50 50 47 51 51 47 52 53 54 55 54 53 56 57 58 59 58 57 60 61 62 63 62 61 64 65 66 67 66 65 68 69 70 71 70 69 72 70 72 73 74 75 76 75 74 77

+
+
+
+ + + + 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 4.628882 6.299213 0 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 1.181102 6.299213 0.05905512 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11

+
+
+
+ + + + 4.628882 6.299213 0 1.181102 2.851433 0 7.480315 7.480315 0 1.181102 6.299213 0 0 0 0 0 7.480315 0 0 7.480315 0.05905512 0 7.480315 0 0 7.42126 0.05905512 0 0 0.05905512 0 0 0 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 7.42126 7.42126 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0 0 0 0 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 7.42126 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.480315 7.480315 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 6.791339 7.480315 0.7480315 0.6889764 7.480315 0.7480315 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 1.181102 2.851433 0.05905512 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.05905512 0 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0 7.42126 0.05905512 0.05905512 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 0.05905512 6.791339 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0 0.6889764 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0 0.05905512 6.791339 7.480315 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 3 4 1 2 1 4 0 2 3 2 5 3 4 3 5 6 7 8 8 7 9 10 9 7 11 12 13 14 13 12 15 16 17 17 16 18 18 16 19 20 19 16 21 22 23 24 23 22 25 26 27 27 26 28 29 28 26 30 31 32 33 32 31 26 34 29 35 29 34 36 37 11 12 11 37 38 39 40 41 42 25 43 26 42 25 42 26 41 25 43 25 34 43 26 43 34 44 45 46 47 48 49 49 48 50 50 48 51 52 51 48 53 54 55 56 55 54 57 58 59 60 59 58 61 62 63 64 63 62 65 66 67 68 67 66 69 70 71 70 72 71 73 71 72 74 75 76 77 76 75

+
+
+
+ + + + 4.628882 6.299213 0 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 1.181102 6.299213 0.05905512 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 7 6 5 8 9 10 11 10 9

+
+
+
+ + + + 0 7.480315 0 1.181102 6.299213 0 0 0 0 7.480315 7.480315 0 4.628882 6.299213 0 1.181102 2.851433 0 0 7.480315 0 0 0 0.05905512 0 0 0 0 7.42126 0.05905512 0 7.480315 0.05905512 0 7.480315 0.05905512 7.480315 7.480315 0 0 7.480315 0 7.480315 7.480315 0.05905512 7.480315 7.480315 0 0 0 0.05905512 0 0 0 0.05905512 0.05905512 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 0.6889764 7.480315 0.7480315 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 0 7.480315 0.05905512 0.05905512 7.42126 0.05905512 0 7.480315 0.05905512 0 7.42126 0.05905512 7.480315 7.480315 0.05905512 7.42126 7.42126 0.05905512 0 0.6889764 0.7480315 0 7.42126 0.05905512 0 0 0.05905512 0 6.791339 0.7480315 0.05905512 0.05905512 0.05905512 0 0 0.05905512 0.6889764 7.480315 0.7480315 6.791339 7.480315 0.7480315 7.480315 7.42126 0.05905512 7.42126 7.42126 0.05905512 7.480315 7.480315 0.05905512 1.181102 2.851433 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0.05905512 0.05905512 0 0.05905512 0 0 0.05905512 0.05905512 0.05905512 0.05905512 6.791339 7.42126 0.7480315 7.42126 7.42126 0.05905512 7.480315 7.42126 0.05905512 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.6889764 7.42126 0.7480315 6.791339 7.42126 0.7480315 0.6889764 7.480315 0.7480315 0.6889764 7.42126 0.7480315 6.791339 7.480315 0.7480315 0 6.791339 0.7480315 0.05905512 7.42126 0.05905512 0 7.42126 0.05905512 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 6.791339 0.7480315 0 0.6889764 0.7480315 0.05905512 6.791339 0.7480315 0.05905512 0.6889764 0.7480315 0 0 0.05905512 0.05905512 0 0.05905512 0 0.6889764 0.7480315 0.05905512 0.05905512 0.05905512 0.05905512 0.6889764 0.7480315 0.05905512 0 0.05905512 0.05905512 7.42126 0.05905512 0.05905512 6.791339 0.7480315 7.480315 7.480315 0.05905512 6.791339 7.42126 0.7480315 7.480315 7.42126 0.05905512 6.791339 7.480315 0.7480315 + + + + + + + + + + 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 0.7071068 -0.7071068 6.331005e-15 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 -0.7071068 1.599449e-28 0.7071068 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 -9.53939e-30 0.7380288 0.6747692 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 + + + + + + + + + + + + + + +

0 1 2 1 0 3 1 3 4 2 5 3 5 2 1 3 5 4 6 7 8 7 6 9 9 6 10 11 12 13 12 11 14 15 16 17 16 15 18 18 15 19 19 15 20 21 22 23 22 21 24 25 26 27 26 25 28 28 25 29 30 31 32 31 30 33 34 27 35 27 34 25 36 14 11 14 36 37 38 39 40 34 41 25 41 34 29 41 29 42 25 43 29 43 25 41 29 43 42 44 45 46 47 48 49 48 47 50 50 47 51 51 47 52 53 54 55 54 53 56 57 58 59 58 57 60 61 62 63 62 61 64 65 66 67 66 65 68 69 70 71 70 69 72 70 72 73 74 75 76 75 74 77

+
+
+
+ + + + 4.628882 6.299213 0.05905512 1.181102 2.851433 0 1.181102 2.851433 0.05905512 4.628882 6.299213 0 1.181102 6.299213 0 1.181102 2.851433 0.05905512 1.181102 2.851433 0 1.181102 6.299213 0.05905512 4.628882 6.299213 0.05905512 1.181102 6.299213 0 4.628882 6.299213 0 1.181102 6.299213 0.05905512 + + + + + + + + + + -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 1 0 0 1 0 0 1 0 0 1 0 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0 + + + + + + + + + + + + + + +

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11

+
+
+
+ + + + 40.94488 8.881784e-16 1.110223e-15 40.94488 88.97638 1.110223e-16 0 8.881784e-16 4.440892e-16 0 88.97638 1.110223e-16 0 88.97638 1.110223e-16 0 88.97638 0.01968504 0 8.881784e-16 4.440892e-16 0 8.881784e-16 0.01968504 40.94488 88.97638 0.01968504 0 88.97638 0.01968504 40.94488 88.97638 1.110223e-16 0 88.97638 1.110223e-16 40.94488 88.97638 0.01968504 40.94488 88.97638 1.110223e-16 40.94488 8.881784e-16 0.01968504 40.94488 8.881784e-16 1.110223e-15 40.94488 8.881784e-16 0.01968504 40.94488 8.881784e-16 1.110223e-15 0 8.881784e-16 0.01968504 0 8.881784e-16 4.440892e-16 40.94488 88.97638 0.01968504 40.94488 8.881784e-16 0.01968504 0 88.97638 0.01968504 0 8.881784e-16 0.01968504 + + + + + + + + + + 8.134519e-18 -7.69601e-18 -1 8.134519e-18 -7.69601e-18 -1 8.134519e-18 -7.69601e-18 -1 8.134519e-18 -7.69601e-18 -1 -1 -3.215325e-35 -8.134519e-18 -1 -3.215325e-35 -8.134519e-18 -1 -3.215325e-35 -8.134519e-18 -1 -3.215325e-35 -8.134519e-18 0 1 -7.69601e-18 0 1 -7.69601e-18 0 1 -7.69601e-18 0 1 -7.69601e-18 1 9.305343e-35 8.134519e-18 1 9.305343e-35 8.134519e-18 1 9.305343e-35 8.134519e-18 1 9.305343e-35 8.134519e-18 -6.353919e-33 -1 7.69601e-18 -6.353919e-33 -1 7.69601e-18 -6.353919e-33 -1 7.69601e-18 -6.353919e-33 -1 7.69601e-18 -8.134519e-18 7.69601e-18 1 -8.134519e-18 7.69601e-18 1 -8.134519e-18 7.69601e-18 1 -8.134519e-18 7.69601e-18 1 + + + + + + + + + + + + + + +

0 1 2 3 2 1 4 5 6 7 6 5 8 9 10 11 10 9 12 13 14 15 14 13 16 17 18 19 18 17 20 21 22 23 22 21

+
+
+
+ + + + 48.34672 5.469805e-12 96.24897 48.18924 5.570669e-12 1.676559e-12 48.34672 5.429393e-12 1.850988e-14 48.18924 5.425008e-12 0.07874016 0 4.041212e-14 96.24897 3.552714e-14 0 0 0.07874016 5.445214e-12 0.07874016 0.07900647 5.590875e-12 1.658139e-12 48.18924 5.425008e-12 0.07874016 0.07874016 5.445214e-12 0.07874016 0 4.041212e-14 96.24897 0.07900647 5.590875e-12 1.658139e-12 3.552714e-14 0 0 48.34672 5.469805e-12 96.24897 48.18924 5.570669e-12 1.676559e-12 48.34672 5.429393e-12 1.850988e-14 + + + + + + + + + + 7.494048e-14 -1 -1.448427e-14 7.494048e-14 -1 -1.448427e-14 7.494048e-14 -1 -1.448427e-14 7.494048e-14 -1 -1.448427e-14 7.494048e-14 -1 -1.448427e-14 7.494048e-14 -1 -1.448427e-14 7.494048e-14 -1 -1.448427e-14 7.494048e-14 -1 -1.448427e-14 -7.494048e-14 1 1.448427e-14 -7.494048e-14 1 1.448427e-14 -7.494048e-14 1 1.448427e-14 -7.494048e-14 1 1.448427e-14 -7.494048e-14 1 1.448427e-14 -7.494048e-14 1 1.448427e-14 -7.494048e-14 1 1.448427e-14 -7.494048e-14 1 1.448427e-14 + + + + + + + + + + 0.9966177 0.9981531 0.9933834 0.002609389 0.9966177 0.002609389 0.9933834 0.003423831 0.003670652 0.9981531 0.003670652 0.002609389 0.005287821 0.003423831 0.00529329 0.002609389 0.0008180883 0.003257311 0.0008180883 0.9983713 1 1 1.722729e-14 0.9983658 7.903575e-30 1 1 2.220446e-16 1.722729e-14 0.003257311 8.390021e-30 2.220446e-16 + + + + + + + + + + + + + + +

0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 5 5 6 6 4 4 6 6 5 5 7 7 4 4 6 6 3 3

+
+ + + +

8 8 9 9 10 10 11 11 12 12 9 9 10 10 9 9 12 12 10 10 13 13 8 8 8 8 13 13 14 14 15 15 14 14 13 13

+
+
+
+ + + + 0 944 0 0 0 0 1680 944 0 1680 0 0 1680 944 0 0 0 0 0 944 0 1680 0 0 + + + + + + + + + + 0 1 0 0 1 1 1 0 + + + + + + + + + + + + + +

0 0 1 1 2 2 3 3 2 2 1 1 4 2 5 1 6 0 5 1 4 2 7 3

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + ID12 + + + + + ID13 + + + + + + + + + + + + + + + + + 0.1176471 0.1176471 0.1176471 1 + + + + + + + + + + + 0.1176471 0.1176471 0.1176471 1 + + + 1 + + + + + + + + + + + 1 1 1 1 + + + + + + + + + + ID148 + + + + + ID149 + + + + + + + + + + + + + + + + ID157 + + + + + ID158 + + + + + + + + + + + + + + + + ID167 + + + + + ID168 + + + + + + + + + + + + + + + Rock_sheet_PINK/Wood_Board_Cork.jpg + + + Rock_sheet_PINK/Rockfoil_PINK_light_2.jpg + + + Rock_sheet_PINK/Rockfoil_PINK_light.jpg + + + Rock_sheet_PINK/texture.png + + + + + +
diff --git a/public/icons/AnewStyle_IconSet.json b/public/icons/AnewStyle_IconSet.json new file mode 100644 index 0000000..ab15c88 --- /dev/null +++ b/public/icons/AnewStyle_IconSet.json @@ -0,0 +1,252 @@ +{ + "selection": [ + { + "order": 655, + "name": "close", + "prevSize": 32 + }, + { + "order": 654, + "name": "email", + "prevSize": 32 + }, + { + "order": 146, + "name": "download", + "prevSize": 32 + }, + { + "order": 145, + "name": "ar", + "prevSize": 32 + }, + { + "order": 29, + "name": "play", + "prevSize": 32 + }, + { + "order": 653, + "name": "pdf", + "prevSize": 32 + }, + { + "order": 650, + "name": "bulp", + "prevSize": 32 + }, + { + "order": 651, + "name": "frame", + "prevSize": 32 + }, + { + "order": 652, + "name": "turn-off", + "prevSize": 32 + }, + { + "order": 2, + "name": "move", + "prevSize": 32 + }, + { + "order": 3, + "name": "menu", + "prevSize": 32 + }, + { + "order": 4, + "name": "instagram", + "prevSize": 32 + }, + { + "order": 5, + "name": "facebook", + "prevSize": 32 + } + ], + "metadata": { + "name": "AnewStyle_IconSet", + "importSize": { + "width": 512, + "height": 512 + }, + "iconsHash": 915394577 + }, + "height": 1024, + "prevSize": 32, + "icons": [ + { + "paths": [ + "M50 1024c-0.003 0-0.006 0-0.009 0-27.614 0-50-22.386-50-50 0-13.809 5.598-26.311 14.649-35.36l924-924c9.049-9.049 21.551-14.647 35.36-14.647 27.618 0 50.007 22.389 50.007 50.007 0 13.809-5.597 26.311-14.647 35.36l-924 924c-9.026 9.045-21.506 14.64-35.293 14.64-0.024 0-0.047-0-0.071-0l0.004 0z", + "M974 1024c-0.020 0-0.044 0-0.067 0-13.787 0-26.266-5.595-35.292-14.639l-0.001-0.001-924-924c-9.049-9.049-14.647-21.551-14.647-35.36 0-27.618 22.389-50.007 50.007-50.007 13.809 0 26.311 5.597 35.36 14.647l924 924c9.051 9.049 14.649 21.551 14.649 35.36 0 27.614-22.386 50-50 50-0.003 0-0.007-0-0.010-0l0 0z" + ], + "grid": 0, + "tags": [ + "close" + ] + }, + { + "paths": [ + "M934 152h-844c-49.726 0-90 40.524-90 90v540c0 49.77 40.57 90 90 90h844c49.31 0 90-40.060 90-90v-540c0-49.388-40.114-90-90-90zM921.396 212c-18.388 18.29-334.83 333.066-345.756 343.934-17 17-39.6 26.36-63.64 26.36s-46.64-9.362-63.696-26.416c-7.348-7.31-320.298-318.61-345.7-343.878h818.792zM60 769.788v-515.538l259.276 257.91-259.276 257.628zM102.642 812l259.174-257.526 44.118 43.886c28.332 28.332 66 43.934 106.066 43.934s77.734-15.602 106.010-43.878l44.174-43.942 259.174 257.526h-818.716zM964 769.788l-259.276-257.628 259.276-257.91v515.538z" + ], + "grid": 0, + "tags": [ + "email" + ] + }, + { + "paths": [ + "M896 810.667h-768c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h768c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z", + "M512 85.333c-23.564 0-42.667 19.103-42.667 42.667v0 451.84l-140.373-140.8c-7.753-7.753-18.463-12.548-30.293-12.548-23.661 0-42.841 19.181-42.841 42.841 0 11.83 4.795 22.541 12.548 30.293l213.333 213.333c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 213.333-213.333c7.753-7.753 12.548-18.463 12.548-30.293 0-23.661-19.181-42.841-42.841-42.841-11.83 0-22.541 4.795-30.293 12.548l0-0-140.373 140.8v-451.84c0-23.564-19.103-42.667-42.667-42.667v0z" + ], + "grid": 0, + "tags": [ + "download" + ] + }, + { + "paths": [ + "M768 402.286v256c0 10.971-7.314 21.943-14.629 29.257l-219.429 146.286c-10.971 7.314-29.257 7.314-40.229 0l-219.429-146.286c-10.971-7.314-18.286-18.286-18.286-29.257v-256c0-10.971 7.314-21.943 14.629-29.257l219.429-146.286c10.971-7.314 29.257-7.314 40.229 0l219.429 146.286c10.971 7.314 18.286 18.286 18.286 29.257zM694.857 640v-168.229l-146.286 98.743v168.229zM512 504.686l153.6-102.4-153.6-102.4-153.6 102.4zM475.429 735.086v-168.229l-146.286-98.743v168.229zM146.286 329.143c-21.943 0-36.571-14.629-36.571-36.571v-146.286c0-21.943 14.629-36.571 36.571-36.571h146.286c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571h-109.714v109.714c0 21.943-14.629 36.571-36.571 36.571zM292.571 914.286h-146.286c-21.943 0-36.571-14.629-36.571-36.571v-146.286c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v109.714h109.714c21.943 0 36.571 14.629 36.571 36.571s-14.629 36.571-36.571 36.571zM877.714 914.286h-146.286c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h109.714v-109.714c0-21.943 14.629-36.571 36.571-36.571s36.571 14.629 36.571 36.571v146.286c0 21.943-14.629 36.571-36.571 36.571zM877.714 329.143c-21.943 0-36.571-14.629-36.571-36.571v-109.714h-109.714c-21.943 0-36.571-14.629-36.571-36.571s14.629-36.571 36.571-36.571h146.286c21.943 0 36.571 14.629 36.571 36.571v146.286c0 21.943-14.629 36.571-36.571 36.571z" + ], + "grid": 0, + "tags": [ + "ar" + ] + }, + { + "paths": [ + "M1023.734 495.294c-8.59-268.997-226.031-486.43-495.021-495.021-146.367-4.644-283.302 51.068-384.503 155.554-97.29 100.446-148.408 232.867-143.937 372.886 8.583 268.99 226.024 486.43 495.013 495.013 5.6 0.18 11.15 0.266 16.713 0.266 139.847 0 270.463-55.338 367.79-155.82 97.29-100.439 148.416-232.867 143.944-372.879zM802.34 793.16c-76.832 79.326-179.945 123.011-290.34 123.011-4.414 0-8.828-0.072-13.277-0.208-212.293-6.779-383.899-178.385-390.685-390.685-3.53-110.575 36.82-215.14 113.623-294.43 76.832-79.326 179.945-123.011 290.34-123.011 4.414 0 8.828 0.072 13.277 0.208 212.293 6.779 383.899 178.385 390.685 390.685 3.53 110.575-36.827 215.14-113.623 294.43z", + "M679.933 482.254l-227.044-162.793c-24.218-17.368-57.933-0.058-57.933 29.746v325.593c0 29.804 33.714 47.114 57.933 29.746l227.037-162.8c20.372-14.6 20.372-44.886 0.007-59.493z" + ], + "tags": [ + "play" + ], + "grid": 0 + }, + { + "paths": [ + "M255.482 418h-63.482c-7.972 0-15.618 3.174-21.248 8.82s-8.778 13.302-8.752 21.276l0.442 227.89c0 16.568 13.432 30 30 30s30-13.432 30-30v-69.194c12.266-0.062 25.37-0.116 33.040-0.116 52.712 0 95.598-42.32 95.598-94.338s-42.886-94.338-95.598-94.338zM255.482 546.676c-7.738 0-20.89 0.054-33.204 0.118-0.064-12.772-0.12-26.526-0.12-34.456 0-6.786-0.034-20.988-0.070-34.338h33.392c19.296 0 35.598 15.724 35.598 34.338s-16.3 34.338-35.596 34.338z", + "M510.66 418h-62.66c-7.966 0-15.606 3.168-21.234 8.806s-8.782 13.284-8.766 21.25c0 0.002 0.446 220.492 0.448 221.292 0.030 7.958 3.218 15.578 8.866 21.184 5.622 5.58 13.218 8.708 21.134 8.708h0.114c1.894-0.008 46.588-0.178 64.456-0.49 67.788-1.184 116.988-60.118 116.988-140.13-0.002-84.108-47.962-140.62-119.346-140.62zM511.97 638.76c-7.77 0.136-21.138 0.246-33.622 0.326-0.084-26.058-0.248-134.006-0.294-161.086h32.606c55.066 0 59.344 61.708 59.344 80.622 0 39.384-17.944 79.438-58.034 80.138z", + "M827.726 475.684c16.568 0 30-13.432 30-30s-13.432-30-30-30h-91.726c-16.568 0-30 13.432-30 30v226.316c0 16.568 13.432 30 30 30s30-13.432 30-30v-85.3h54.44c16.568 0 30-13.432 30-30s-13.432-30-30-30h-54.44v-51.016z", + "M916 290h-22v-8.558c0-38.564-14.612-75.214-41.144-103.202l-124.61-131.442c-28.196-29.74-67.872-46.798-108.856-46.798h-399.39c-49.626 0-90 40.374-90 90v200h-22c-49.626 0-90 40.374-90 90v360c0 49.626 40.374 90 90 90h22v104c0 49.626 40.374 90 90 90h584c49.626 0 90-40.374 90-90v-104h22c49.626 0 90-40.374 90-90v-360c0-49.626-40.374-90-90-90zM190 90c0-16.542 13.458-30 30-30h399.39c24.59 0 48.396 10.234 65.314 28.080l124.61 131.442c15.92 16.792 24.686 38.782 24.686 61.92v8.558h-644zM834 934c0 16.542-13.458 30-30 30h-584c-16.542 0-30-13.458-30-30v-104h644zM946 740c0 16.542-13.458 30-30 30h-808c-16.542 0-30-13.458-30-30v-360c0-16.542 13.458-30 30-30h808c16.542 0 30 13.458 30 30z" + ], + "tags": [ + "pdf" + ], + "grid": 0 + }, + { + "paths": [ + "M576 1024h-128c-29.867 0-64-25.6-64-76.8v-89.6c0-42.667-21.333-81.067-55.467-110.933-76.8-59.733-115.2-145.067-115.2-238.933 4.267-162.133 136.533-290.133 294.4-294.4 81.067 0 157.867 29.867 213.333 85.333s89.6 132.267 89.6 213.333c0 89.6-38.4 174.933-110.933 230.4-38.4 29.867-59.733 76.8-59.733 119.467v98.133c0 34.133-29.867 64-64 64zM512 256c-136.533 0-251.733 115.2-256 251.733 0 81.067 34.133 157.867 98.133 204.8 46.933 38.4 72.533 89.6 72.533 145.067v89.6c0 8.533 0 34.133 21.333 34.133h128c12.8 0 21.333-8.533 21.333-21.333v-98.133c0-55.467 29.867-115.2 76.8-153.6 59.733-46.933 93.867-119.467 93.867-196.267 0-68.267-25.6-132.267-76.8-183.467-46.933-46.933-110.933-72.533-179.2-72.533z", + "M618.667 896h-213.333c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h213.333c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333z", + "M512 128c-12.8 0-21.333-8.533-21.333-21.333v-85.333c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v85.333c0 12.8-8.533 21.333-21.333 21.333z", + "M797.867 247.467c-4.267 0-12.8 0-17.067-4.267-8.533-8.533-8.533-21.333 0-29.867l59.733-59.733c8.533-8.533 21.333-8.533 29.867 0s8.533 21.333 0 29.867l-59.733 59.733s-8.533 4.267-12.8 4.267z", + "M1002.667 533.333h-85.333c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h85.333c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333z", + "M857.6 878.933c-4.267 0-12.8 0-17.067-4.267l-59.733-59.733c-8.533-8.533-8.533-21.333 0-29.867s21.333-8.533 29.867 0l59.733 59.733c8.533 8.533 8.533 21.333 0 29.867 0 4.267-4.267 4.267-12.8 4.267z", + "M166.4 878.933c-4.267 0-12.8 0-17.067-4.267-8.533-8.533-8.533-21.333 0-29.867l59.733-59.733c8.533-8.533 21.333-8.533 29.867 0s8.533 21.333 0 29.867l-59.733 59.733c-4.267 4.267-8.533 4.267-12.8 4.267z", + "M106.667 533.333h-85.333c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h85.333c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333z", + "M226.133 247.467c-4.267 0-12.8 0-17.067-4.267l-59.733-64c-8.533-8.533-8.533-21.333 0-29.867s21.333-8.533 29.867 0l59.733 59.733c8.533 8.533 8.533 21.333 0 29.867-4.267 4.267-8.533 8.533-12.8 8.533z", + "M682.667 533.333c-12.8 0-21.333-8.533-21.333-21.333 0-81.067-68.267-149.333-149.333-149.333-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333c106.667 0 192 85.333 192 192 0 12.8-8.533 21.333-21.333 21.333z" + ], + "tags": [ + "bulp" + ], + "grid": 0 + }, + { + "paths": [ + "M1008.789 106h-814.5c-8.398 0-15.203 6.813-15.203 15.211s6.805 15.203 15.203 15.203h777.789l-81.109 81.109h-757.938l-81.109-81.109h81.531c8.398 0 15.211-6.805 15.211-15.203s-6.813-15.211-15.211-15.211h-118.242c-8.398 0-15.211 6.813-15.211 15.211v780.844c0 8.398 6.813 15.203 15.211 15.203h993.578c8.406 0 15.211-6.805 15.211-15.203v-780.844c0-8.398-6.805-15.211-15.211-15.211zM912.477 784.227v-545.195l81.109-81.109v707.414zM141.938 247.938h740.125v527.383h-156.641c-8.398 0-15.203 6.805-15.203 15.203s6.805 15.211 15.203 15.211h165.547l81.109 81.109h-920.156l81.109-81.109h531.555c8.406 0 15.211-6.813 15.211-15.211s-6.805-15.203-15.211-15.203h-522.648zM111.523 784.227l-81.109 81.109v-707.414l81.109 81.109zM111.523 784.227z" + ], + "tags": [ + "frame" + ], + "grid": 0 + }, + { + "paths": [ + "M832.036 251.281c-15.093-15.093-39.56-15.093-54.659 0-15.093 15.093-15.093 39.56 0 54.654 70.922 70.922 109.978 165.219 109.978 265.519 0 100.295-39.055 194.587-109.978 265.504-73.19 73.195-169.316 109.787-265.468 109.777-96.152-0.005-192.324-36.608-265.524-109.808-146.374-146.374-146.359-384.551 0.026-530.935 15.093-15.093 15.093-39.566 0-54.654-15.093-15.093-39.56-15.093-54.659 0-176.52 176.52-176.535 463.739-0.026 640.248 88.283 88.283 204.228 132.419 320.188 132.414 115.929-0.005 231.874-44.131 320.127-132.383 85.516-85.511 132.61-199.214 132.61-320.157 0.005-120.949-47.094-234.657-132.615-320.178z", + "M511.869 500.697c21.349 0 38.648-17.304 38.648-38.648v-423.4c0-21.344-17.299-38.648-38.648-38.648s-38.648 17.304-38.648 38.648v423.4c0 21.349 17.299 38.648 38.648 38.648z" + ], + "tags": [ + "turn-off" + ], + "grid": 0 + }, + { + "paths": [ + "M438.971 166.947c-7.238-3.494-15.836-2.521-22.122 2.489l-408.972 326.101c-4.968 3.975-7.876 9.989-7.876 16.359 0 6.359 2.897 12.384 7.876 16.348l408.972 326.237c3.776 3.002 8.389 4.571 13.054 4.571 3.086 0 6.182-0.68 9.069-2.071 7.238-3.473 11.84-10.815 11.84-18.848v-652.337c0-8.033-4.602-15.365-11.84-18.848z", + "M1016.113 495.547l-408.972-326.216c-6.286-5.010-14.884-5.993-22.122-2.489-7.228 3.483-11.83 10.815-11.83 18.848v652.64c0 8.043 4.592 15.365 11.851 18.838 2.876 1.402 5.983 2.081 9.069 2.081 4.644 0 9.278-1.548 13.054-4.581l408.972-326.404c4.979-3.964 7.866-9.989 7.866-16.348 0-6.391-2.897-12.405-7.887-16.369z" + ], + "tags": [ + "move" + ], + "grid": 0 + }, + { + "paths": [ + "M960 896.001h-895.999c-35.348 0-64-28.655-64-64s28.653-64 64-64h896.001c35.345 0 64 28.655 64 64-0.002 35.345-28.655 64-64.003 64z", + "M960 575.999h-895.999c-35.348 0-64-28.653-64-63.998s28.653-64 64-64h896.001c35.345 0 64 28.653 64 64s-28.655 63.998-64.003 63.998z", + "M960 255.999h-895.999c-35.348 0-64-28.653-64-64s28.653-64 64-64h896.001c35.345 0 64 28.653 64 64s-28.655 64-64.003 64z" + ], + "tags": [ + "menu" + ], + "grid": 0 + }, + { + "paths": [ + "M602 512c0 49.703-40.297 90-90 90s-90-40.297-90-90 40.297-90 90-90 90 40.297 90 90zM602 512z", + "M664 240h-304c-66.172 0-120 53.828-120 120v304c0 66.172 53.828 120 120 120h304c66.172 0 120-53.828 120-120v-304c0-66.172-53.828-120-120-120zM512 662c-82.711 0-150-67.289-150-150s67.289-150 150-150 150 67.289 150 150-67.289 150-150 150zM684 370c-16.57 0-30-13.43-30-30s13.43-30 30-30 30 13.43 30 30-13.43 30-30 30zM684 370z", + "M754 0h-484c-148.875 0-270 121.125-270 270v484c0 148.875 121.125 270 270 270h484c148.875 0 270-121.125 270-270v-484c0-148.875-121.125-270-270-270zM844 664c0 99.25-80.75 180-180 180h-304c-99.25 0-180-80.75-180-180v-304c0-99.25 80.75-180 180-180h304c99.25 0 180 80.75 180 180zM844 664z" + ], + "tags": [ + "instagram" + ], + "grid": 0 + }, + { + "paths": [ + "M767.187 0h-511.187c-140.597 0-256 115.403-256 256.813v511.187c0 140.597 115.403 256 256 256h511.187c141.41 0 256.813-115.403 256.813-256.813v-510.375c0-141.41-115.403-256.813-256.813-256.813zM649.346 512h-96.711v316.952h-121.905v-316.952h-65.016v-130.032h56.889v-55.263c0-52.013 26.006-134.095 135.721-134.095h99.962v108.089h-70.705c-11.378 0-26.819 7.314-26.819 32.508v48.762h99.962l-11.378 130.032z" + ], + "tags": [ + "facebook" + ], + "grid": 0 + } + ], + "colorThemes": [], + "colorThemeIdx": 0, + "preferences": { + "showGlyphs": true, + "showQuickUse": true, + "showQuickUse2": true, + "showSVGs": true, + "fontPref": { + "prefix": "icon-", + "metadata": { + "fontFamily": "icomoon" + }, + "metrics": { + "emSize": 1024, + "baseline": 6.25, + "whitespace": 50 + }, + "embed": false + }, + "imagePref": { + "prefix": "icon-", + "png": true, + "useClassSelector": true, + "color": 0, + "bgColor": 16777215, + "classSelector": ".icon", + "name": "icomoon" + }, + "historySize": 50, + "showCodes": true, + "gridSize": 16 + }, + "IcoMoonType": "icon-set" +} \ No newline at end of file diff --git a/public/images/backgrounds/Rockfoil_viz5_after_1024.webp b/public/images/backgrounds/Rockfoil_viz5_after_1024.webp new file mode 100644 index 0000000..be07531 Binary files /dev/null and b/public/images/backgrounds/Rockfoil_viz5_after_1024.webp differ diff --git a/public/images/backgrounds/Rockfoil_viz5_after_1366.webp b/public/images/backgrounds/Rockfoil_viz5_after_1366.webp new file mode 100644 index 0000000..8b989f3 Binary files /dev/null and b/public/images/backgrounds/Rockfoil_viz5_after_1366.webp differ diff --git a/public/images/backgrounds/Rockfoil_viz5_after_1440.webp b/public/images/backgrounds/Rockfoil_viz5_after_1440.webp new file mode 100644 index 0000000..3568e9c Binary files /dev/null and b/public/images/backgrounds/Rockfoil_viz5_after_1440.webp differ diff --git a/public/images/backgrounds/Rockfoil_viz5_after_425.webp b/public/images/backgrounds/Rockfoil_viz5_after_425.webp new file mode 100644 index 0000000..08d597e Binary files /dev/null and b/public/images/backgrounds/Rockfoil_viz5_after_425.webp differ diff --git a/public/images/backgrounds/Rockfoil_viz5_after_768.webp b/public/images/backgrounds/Rockfoil_viz5_after_768.webp new file mode 100644 index 0000000..2ec52d6 Binary files /dev/null and b/public/images/backgrounds/Rockfoil_viz5_after_768.webp differ diff --git a/public/images/backgrounds/Rockfoil_viz5_before_1024.webp b/public/images/backgrounds/Rockfoil_viz5_before_1024.webp new file mode 100644 index 0000000..2149cc6 Binary files /dev/null and b/public/images/backgrounds/Rockfoil_viz5_before_1024.webp differ diff --git a/public/images/backgrounds/Rockfoil_viz5_before_1366.webp b/public/images/backgrounds/Rockfoil_viz5_before_1366.webp new file mode 100644 index 0000000..397fb79 Binary files /dev/null and b/public/images/backgrounds/Rockfoil_viz5_before_1366.webp differ diff --git a/public/images/backgrounds/Rockfoil_viz5_before_1440.webp b/public/images/backgrounds/Rockfoil_viz5_before_1440.webp new file mode 100644 index 0000000..10581e8 Binary files /dev/null and b/public/images/backgrounds/Rockfoil_viz5_before_1440.webp differ diff --git a/public/images/backgrounds/Rockfoil_viz5_before_425.webp b/public/images/backgrounds/Rockfoil_viz5_before_425.webp new file mode 100644 index 0000000..1b876c4 Binary files /dev/null and b/public/images/backgrounds/Rockfoil_viz5_before_425.webp differ diff --git a/public/images/backgrounds/Rockfoil_viz5_before_768.webp b/public/images/backgrounds/Rockfoil_viz5_before_768.webp new file mode 100644 index 0000000..143fe6e Binary files /dev/null and b/public/images/backgrounds/Rockfoil_viz5_before_768.webp differ diff --git a/public/images/favicons/android-chrome-192x192.png b/public/images/favicons/android-chrome-192x192.png new file mode 100644 index 0000000..39c837b Binary files /dev/null and b/public/images/favicons/android-chrome-192x192.png differ diff --git a/public/images/favicons/android-chrome-512x512.png b/public/images/favicons/android-chrome-512x512.png new file mode 100644 index 0000000..eac852d Binary files /dev/null and b/public/images/favicons/android-chrome-512x512.png differ diff --git a/public/images/favicons/apple-touch-icon.png b/public/images/favicons/apple-touch-icon.png new file mode 100644 index 0000000..e0af877 Binary files /dev/null and b/public/images/favicons/apple-touch-icon.png differ diff --git a/wwwroot/images/favicons/browserconfig.xml b/public/images/favicons/browserconfig.xml similarity index 82% rename from wwwroot/images/favicons/browserconfig.xml rename to public/images/favicons/browserconfig.xml index b9639ca..d416bc5 100644 --- a/wwwroot/images/favicons/browserconfig.xml +++ b/public/images/favicons/browserconfig.xml @@ -3,7 +3,7 @@ - #000000 + #ffffff diff --git a/public/images/favicons/favicon-16x16.png b/public/images/favicons/favicon-16x16.png new file mode 100644 index 0000000..ff4fc14 Binary files /dev/null and b/public/images/favicons/favicon-16x16.png differ diff --git a/public/images/favicons/favicon-32x32.png b/public/images/favicons/favicon-32x32.png new file mode 100644 index 0000000..0b92d62 Binary files /dev/null and b/public/images/favicons/favicon-32x32.png differ diff --git a/public/images/favicons/favicon.ico b/public/images/favicons/favicon.ico new file mode 100644 index 0000000..8765596 Binary files /dev/null and b/public/images/favicons/favicon.ico differ diff --git a/public/images/favicons/manifest.json b/public/images/favicons/manifest.json new file mode 100644 index 0000000..b523455 --- /dev/null +++ b/public/images/favicons/manifest.json @@ -0,0 +1,19 @@ +{ + "name": "A New Style", + "short_name": "A New Style", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/public/images/favicons/mstile-150x150.png b/public/images/favicons/mstile-150x150.png new file mode 100644 index 0000000..90ca13a Binary files /dev/null and b/public/images/favicons/mstile-150x150.png differ diff --git a/public/images/favicons/safari-pinned-tab.svg b/public/images/favicons/safari-pinned-tab.svg new file mode 100644 index 0000000..5870024 --- /dev/null +++ b/public/images/favicons/safari-pinned-tab.svg @@ -0,0 +1,81 @@ + + + + +Created by potrace 1.14, written by Peter Selinger 2001-2017 + + + + + + + + + + diff --git a/public/images/gallery/2023/Rockfoil_viz1_1024.webp b/public/images/gallery/2023/Rockfoil_viz1_1024.webp new file mode 100644 index 0000000..d80e4e4 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz1_1024.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz1_1366.webp b/public/images/gallery/2023/Rockfoil_viz1_1366.webp new file mode 100644 index 0000000..20b6f4c Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz1_1366.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz1_1440.webp b/public/images/gallery/2023/Rockfoil_viz1_1440.webp new file mode 100644 index 0000000..edb14ad Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz1_1440.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz1_425.webp b/public/images/gallery/2023/Rockfoil_viz1_425.webp new file mode 100644 index 0000000..9d820b6 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz1_425.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz1_768.webp b/public/images/gallery/2023/Rockfoil_viz1_768.webp new file mode 100644 index 0000000..65f8f89 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz1_768.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz2_1024.webp b/public/images/gallery/2023/Rockfoil_viz2_1024.webp new file mode 100644 index 0000000..354a745 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz2_1024.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz2_1366.webp b/public/images/gallery/2023/Rockfoil_viz2_1366.webp new file mode 100644 index 0000000..0d02247 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz2_1366.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz2_1440.webp b/public/images/gallery/2023/Rockfoil_viz2_1440.webp new file mode 100644 index 0000000..1b9a92d Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz2_1440.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz2_425.webp b/public/images/gallery/2023/Rockfoil_viz2_425.webp new file mode 100644 index 0000000..7d039db Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz2_425.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz2_768.webp b/public/images/gallery/2023/Rockfoil_viz2_768.webp new file mode 100644 index 0000000..da55f72 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz2_768.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz3_1024.webp b/public/images/gallery/2023/Rockfoil_viz3_1024.webp new file mode 100644 index 0000000..415c000 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz3_1024.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz3_1366.webp b/public/images/gallery/2023/Rockfoil_viz3_1366.webp new file mode 100644 index 0000000..569a529 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz3_1366.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz3_1440.webp b/public/images/gallery/2023/Rockfoil_viz3_1440.webp new file mode 100644 index 0000000..956842c Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz3_1440.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz3_425.webp b/public/images/gallery/2023/Rockfoil_viz3_425.webp new file mode 100644 index 0000000..d5fb8f3 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz3_425.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz3_768.webp b/public/images/gallery/2023/Rockfoil_viz3_768.webp new file mode 100644 index 0000000..ea7e89f Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz3_768.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz4_1024.webp b/public/images/gallery/2023/Rockfoil_viz4_1024.webp new file mode 100644 index 0000000..76b2dfb Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz4_1024.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz4_1336.webp b/public/images/gallery/2023/Rockfoil_viz4_1336.webp new file mode 100644 index 0000000..87697f9 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz4_1336.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz4_1440.webp b/public/images/gallery/2023/Rockfoil_viz4_1440.webp new file mode 100644 index 0000000..24b4fc7 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz4_1440.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz4_425.webp b/public/images/gallery/2023/Rockfoil_viz4_425.webp new file mode 100644 index 0000000..2d6aa73 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz4_425.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz4_768.webp b/public/images/gallery/2023/Rockfoil_viz4_768.webp new file mode 100644 index 0000000..557a031 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz4_768.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz5_1024.webp b/public/images/gallery/2023/Rockfoil_viz5_1024.webp new file mode 100644 index 0000000..e7b3eb8 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz5_1024.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz5_1366.webp b/public/images/gallery/2023/Rockfoil_viz5_1366.webp new file mode 100644 index 0000000..60758ef Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz5_1366.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz5_1440.webp b/public/images/gallery/2023/Rockfoil_viz5_1440.webp new file mode 100644 index 0000000..9322e08 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz5_1440.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz5_425.webp b/public/images/gallery/2023/Rockfoil_viz5_425.webp new file mode 100644 index 0000000..0b62324 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz5_425.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz5_768.webp b/public/images/gallery/2023/Rockfoil_viz5_768.webp new file mode 100644 index 0000000..279b995 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz5_768.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz6_1024.webp b/public/images/gallery/2023/Rockfoil_viz6_1024.webp new file mode 100644 index 0000000..c9a7b7d Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz6_1024.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz6_1366.webp b/public/images/gallery/2023/Rockfoil_viz6_1366.webp new file mode 100644 index 0000000..5f8fd3e Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz6_1366.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz6_1440.webp b/public/images/gallery/2023/Rockfoil_viz6_1440.webp new file mode 100644 index 0000000..59772a1 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz6_1440.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz6_425.webp b/public/images/gallery/2023/Rockfoil_viz6_425.webp new file mode 100644 index 0000000..15dfb9b Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz6_425.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz6_768.webp b/public/images/gallery/2023/Rockfoil_viz6_768.webp new file mode 100644 index 0000000..5fce2cb Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz6_768.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz7_1024.webp b/public/images/gallery/2023/Rockfoil_viz7_1024.webp new file mode 100644 index 0000000..6eb3fb0 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz7_1024.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz7_1366.webp b/public/images/gallery/2023/Rockfoil_viz7_1366.webp new file mode 100644 index 0000000..dbde52b Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz7_1366.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz7_1440.webp b/public/images/gallery/2023/Rockfoil_viz7_1440.webp new file mode 100644 index 0000000..80c4e80 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz7_1440.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz7_425.webp b/public/images/gallery/2023/Rockfoil_viz7_425.webp new file mode 100644 index 0000000..83a9951 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz7_425.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz7_768.webp b/public/images/gallery/2023/Rockfoil_viz7_768.webp new file mode 100644 index 0000000..016ab9c Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz7_768.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz8_1024.webp b/public/images/gallery/2023/Rockfoil_viz8_1024.webp new file mode 100644 index 0000000..58f887d Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz8_1024.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz8_1366.webp b/public/images/gallery/2023/Rockfoil_viz8_1366.webp new file mode 100644 index 0000000..dabcb1a Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz8_1366.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz8_1440.webp b/public/images/gallery/2023/Rockfoil_viz8_1440.webp new file mode 100644 index 0000000..a471a5c Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz8_1440.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz8_425.webp b/public/images/gallery/2023/Rockfoil_viz8_425.webp new file mode 100644 index 0000000..83b5545 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz8_425.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz8_768.webp b/public/images/gallery/2023/Rockfoil_viz8_768.webp new file mode 100644 index 0000000..391f65f Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz8_768.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz9_1024.webp b/public/images/gallery/2023/Rockfoil_viz9_1024.webp new file mode 100644 index 0000000..16ffcff Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz9_1024.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz9_1366.webp b/public/images/gallery/2023/Rockfoil_viz9_1366.webp new file mode 100644 index 0000000..9fa9c2d Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz9_1366.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz9_1440.webp b/public/images/gallery/2023/Rockfoil_viz9_1440.webp new file mode 100644 index 0000000..72aae66 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz9_1440.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz9_425.webp b/public/images/gallery/2023/Rockfoil_viz9_425.webp new file mode 100644 index 0000000..0bb7b39 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz9_425.webp differ diff --git a/public/images/gallery/2023/Rockfoil_viz9_768.webp b/public/images/gallery/2023/Rockfoil_viz9_768.webp new file mode 100644 index 0000000..49fc0c7 Binary files /dev/null and b/public/images/gallery/2023/Rockfoil_viz9_768.webp differ diff --git a/public/images/gallery/RAL_Metallic_Sample.webp b/public/images/gallery/RAL_Metallic_Sample.webp new file mode 100644 index 0000000..12fe22d Binary files /dev/null and b/public/images/gallery/RAL_Metallic_Sample.webp differ diff --git a/public/images/gallery/RockFoil_backlight.webp b/public/images/gallery/RockFoil_backlight.webp new file mode 100644 index 0000000..35aadc0 Binary files /dev/null and b/public/images/gallery/RockFoil_backlight.webp differ diff --git a/public/images/gallery/RockFoil_impregnation.webp b/public/images/gallery/RockFoil_impregnation.webp new file mode 100644 index 0000000..5cf3fb3 Binary files /dev/null and b/public/images/gallery/RockFoil_impregnation.webp differ diff --git a/public/images/gallery/Rockfoil_viz1_video_425.webp b/public/images/gallery/Rockfoil_viz1_video_425.webp new file mode 100644 index 0000000..c5b38ec Binary files /dev/null and b/public/images/gallery/Rockfoil_viz1_video_425.webp differ diff --git a/public/images/gallery/Rockfoil_viz1_video_768.webp b/public/images/gallery/Rockfoil_viz1_video_768.webp new file mode 100644 index 0000000..3f3f09d Binary files /dev/null and b/public/images/gallery/Rockfoil_viz1_video_768.webp differ diff --git a/public/images/gallery/Showroom.webp b/public/images/gallery/Showroom.webp new file mode 100644 index 0000000..3bb307a Binary files /dev/null and b/public/images/gallery/Showroom.webp differ diff --git a/public/images/logos/atak-logo.avif b/public/images/logos/atak-logo.avif new file mode 100644 index 0000000..b870065 Binary files /dev/null and b/public/images/logos/atak-logo.avif differ diff --git a/public/images/logos/atak-logo.webp b/public/images/logos/atak-logo.webp new file mode 100644 index 0000000..b981471 Binary files /dev/null and b/public/images/logos/atak-logo.webp differ diff --git a/public/images/logos/logo-new.svg b/public/images/logos/logo-new.svg new file mode 100644 index 0000000..b43b0b2 --- /dev/null +++ b/public/images/logos/logo-new.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/meta/meta-fb.png b/public/images/meta/meta-fb.png new file mode 100644 index 0000000..0267072 Binary files /dev/null and b/public/images/meta/meta-fb.png differ diff --git a/public/images/meta/meta-google.png b/public/images/meta/meta-google.png new file mode 100644 index 0000000..2ac35fe Binary files /dev/null and b/public/images/meta/meta-google.png differ diff --git a/public/images/meta/meta-google.webp b/public/images/meta/meta-google.webp new file mode 100644 index 0000000..9d99e61 Binary files /dev/null and b/public/images/meta/meta-google.webp differ diff --git a/public/images/meta/meta-twitter.png b/public/images/meta/meta-twitter.png new file mode 100644 index 0000000..45d9d7d Binary files /dev/null and b/public/images/meta/meta-twitter.png differ diff --git a/public/images/products/Rockfoil_DARKGOLD_dark.webp b/public/images/products/Rockfoil_DARKGOLD_dark.webp new file mode 100644 index 0000000..5cc4375 Binary files /dev/null and b/public/images/products/Rockfoil_DARKGOLD_dark.webp differ diff --git a/public/images/products/Rockfoil_DARKGOLD_light.webp b/public/images/products/Rockfoil_DARKGOLD_light.webp new file mode 100644 index 0000000..aba986e Binary files /dev/null and b/public/images/products/Rockfoil_DARKGOLD_light.webp differ diff --git a/public/images/products/Rockfoil_DARKGOLD_light_frame.webp b/public/images/products/Rockfoil_DARKGOLD_light_frame.webp new file mode 100644 index 0000000..68c79bb Binary files /dev/null and b/public/images/products/Rockfoil_DARKGOLD_light_frame.webp differ diff --git a/public/images/products/Rockfoil_GOLDENBARK_dark.webp b/public/images/products/Rockfoil_GOLDENBARK_dark.webp new file mode 100644 index 0000000..698a896 Binary files /dev/null and b/public/images/products/Rockfoil_GOLDENBARK_dark.webp differ diff --git a/public/images/products/Rockfoil_GOLDENBARK_light.webp b/public/images/products/Rockfoil_GOLDENBARK_light.webp new file mode 100644 index 0000000..5ae22fc Binary files /dev/null and b/public/images/products/Rockfoil_GOLDENBARK_light.webp differ diff --git a/public/images/products/Rockfoil_GOLDENBARK_light_frame.webp b/public/images/products/Rockfoil_GOLDENBARK_light_frame.webp new file mode 100644 index 0000000..a855941 Binary files /dev/null and b/public/images/products/Rockfoil_GOLDENBARK_light_frame.webp differ diff --git a/public/images/products/Rockfoil_PINK_dark.webp b/public/images/products/Rockfoil_PINK_dark.webp new file mode 100644 index 0000000..b9a372f Binary files /dev/null and b/public/images/products/Rockfoil_PINK_dark.webp differ diff --git a/public/images/products/Rockfoil_PINK_light.webp b/public/images/products/Rockfoil_PINK_light.webp new file mode 100644 index 0000000..370858e Binary files /dev/null and b/public/images/products/Rockfoil_PINK_light.webp differ diff --git a/public/images/products/Rockfoil_PINK_light_frame.webp b/public/images/products/Rockfoil_PINK_light_frame.webp new file mode 100644 index 0000000..1fb41e0 Binary files /dev/null and b/public/images/products/Rockfoil_PINK_light_frame.webp differ diff --git a/public/images/products/Rockfoil_WILDLIFE_dark.webp b/public/images/products/Rockfoil_WILDLIFE_dark.webp new file mode 100644 index 0000000..8272571 Binary files /dev/null and b/public/images/products/Rockfoil_WILDLIFE_dark.webp differ diff --git a/public/images/products/Rockfoil_WILDLIFE_light.webp b/public/images/products/Rockfoil_WILDLIFE_light.webp new file mode 100644 index 0000000..0a07924 Binary files /dev/null and b/public/images/products/Rockfoil_WILDLIFE_light.webp differ diff --git a/public/images/products/Rockfoil_WILDLIFE_light_frame.webp b/public/images/products/Rockfoil_WILDLIFE_light_frame.webp new file mode 100644 index 0000000..3c43db9 Binary files /dev/null and b/public/images/products/Rockfoil_WILDLIFE_light_frame.webp differ diff --git a/public/images/products/rockfoil_pink_dark_frame_mirror.webp b/public/images/products/rockfoil_pink_dark_frame_mirror.webp new file mode 100644 index 0000000..2d0178f Binary files /dev/null and b/public/images/products/rockfoil_pink_dark_frame_mirror.webp differ diff --git a/public/images/products/rockfoil_pink_dark_mirror.webp b/public/images/products/rockfoil_pink_dark_mirror.webp new file mode 100644 index 0000000..2db0276 Binary files /dev/null and b/public/images/products/rockfoil_pink_dark_mirror.webp differ diff --git a/public/images/products/rockfoil_pink_light_frame_mirror.webp b/public/images/products/rockfoil_pink_light_frame_mirror.webp new file mode 100644 index 0000000..dd29487 Binary files /dev/null and b/public/images/products/rockfoil_pink_light_frame_mirror.webp differ diff --git a/public/images/showcase/rockfoil_pink_dark_frame_mirror.webp b/public/images/showcase/rockfoil_pink_dark_frame_mirror.webp new file mode 100644 index 0000000..2d0178f Binary files /dev/null and b/public/images/showcase/rockfoil_pink_dark_frame_mirror.webp differ diff --git a/public/images/showcase/rockfoil_pink_dark_mirror.webp b/public/images/showcase/rockfoil_pink_dark_mirror.webp new file mode 100644 index 0000000..2db0276 Binary files /dev/null and b/public/images/showcase/rockfoil_pink_dark_mirror.webp differ diff --git a/public/images/showcase/rockfoil_pink_light_frame_mirror.webp b/public/images/showcase/rockfoil_pink_light_frame_mirror.webp new file mode 100644 index 0000000..dd29487 Binary files /dev/null and b/public/images/showcase/rockfoil_pink_light_frame_mirror.webp differ diff --git a/public/images/symbols/14mm.svg b/public/images/symbols/14mm.svg new file mode 100644 index 0000000..ffb0e7e --- /dev/null +++ b/public/images/symbols/14mm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/symbols/25mm.svg b/public/images/symbols/25mm.svg new file mode 100644 index 0000000..18a077f --- /dev/null +++ b/public/images/symbols/25mm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/symbols/Blacklight.svg b/public/images/symbols/Blacklight.svg new file mode 100644 index 0000000..5212a7b --- /dev/null +++ b/public/images/symbols/Blacklight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/symbols/CustomSize.svg b/public/images/symbols/CustomSize.svg new file mode 100644 index 0000000..295030f --- /dev/null +++ b/public/images/symbols/CustomSize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/symbols/Dimmable.svg b/public/images/symbols/Dimmable.svg new file mode 100644 index 0000000..b97d189 --- /dev/null +++ b/public/images/symbols/Dimmable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/symbols/LED.svg b/public/images/symbols/LED.svg new file mode 100644 index 0000000..4b01b33 --- /dev/null +++ b/public/images/symbols/LED.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/symbols/MobileControl.svg b/public/images/symbols/MobileControl.svg new file mode 100644 index 0000000..7bb5df2 --- /dev/null +++ b/public/images/symbols/MobileControl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/symbols/Mounting.svg b/public/images/symbols/Mounting.svg new file mode 100644 index 0000000..20e05b4 --- /dev/null +++ b/public/images/symbols/Mounting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/symbols/QuickMounting.svg b/public/images/symbols/QuickMounting.svg new file mode 100644 index 0000000..b15db2a --- /dev/null +++ b/public/images/symbols/QuickMounting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/symbols/RF_control.svg b/public/images/symbols/RF_control.svg new file mode 100644 index 0000000..18a8fd7 --- /dev/null +++ b/public/images/symbols/RF_control.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/symbols/Repair.svg b/public/images/symbols/Repair.svg new file mode 100644 index 0000000..7c7f99f --- /dev/null +++ b/public/images/symbols/Repair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/symbols/Waterproof.svg b/public/images/symbols/Waterproof.svg new file mode 100644 index 0000000..cbe6436 --- /dev/null +++ b/public/images/symbols/Waterproof.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..07f06ef --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,6 @@ +User-agent: * + +Allow: *.js +Allow: *.css + +Sitemap: https://anewstyle.cz/sitemap.xml \ No newline at end of file diff --git a/sitemap.xml b/public/sitemap.xml similarity index 59% rename from sitemap.xml rename to public/sitemap.xml index caaddcc..3494463 100644 --- a/sitemap.xml +++ b/public/sitemap.xml @@ -8,14 +8,8 @@ - https://lukaschylik.sk/ - 2020-06-15T07:30:40+00:00 - 1.00 - - - https://lukaschylik.sk/Luk%C3%A1%C5%A1_Chyl%C3%ADk_CV.pdf - 2020-06-15T07:30:40+00:00 - 0.80 + https://anewstyle.cz/ + 2022-12-16T08:39:38+00:00 diff --git a/public/videos/Rock_sheet_animation_background.mp4 b/public/videos/Rock_sheet_animation_background.mp4 new file mode 100644 index 0000000..e4e010f Binary files /dev/null and b/public/videos/Rock_sheet_animation_background.mp4 differ diff --git a/public/videos/main-video.mp4 b/public/videos/main-video.mp4 new file mode 100644 index 0000000..b0d1b18 Binary files /dev/null and b/public/videos/main-video.mp4 differ diff --git a/public/videos/main-video.ogv b/public/videos/main-video.ogv new file mode 100644 index 0000000..c3ecaf1 Binary files /dev/null and b/public/videos/main-video.ogv differ diff --git a/public/videos/main-video.webm b/public/videos/main-video.webm new file mode 100644 index 0000000..6731d7b Binary files /dev/null and b/public/videos/main-video.webm differ diff --git a/robots.txt b/robots.txt deleted file mode 100644 index 0a5e70f..0000000 --- a/robots.txt +++ /dev/null @@ -1,6 +0,0 @@ -User-agent: * - -Allow: *.js -Allow: *.css - -Sitemap: https://lukaschylik.sk/sitemap.xml \ No newline at end of file diff --git a/src/components/footer/Footer.astro b/src/components/footer/Footer.astro new file mode 100644 index 0000000..53679dd --- /dev/null +++ b/src/components/footer/Footer.astro @@ -0,0 +1,3 @@ +
+ ©2022 - 2023 anewstyle.cz | Všechna práva vyhrazena. +
\ No newline at end of file diff --git a/src/components/icons/Icon.astro b/src/components/icons/Icon.astro new file mode 100644 index 0000000..67ec9e2 --- /dev/null +++ b/src/components/icons/Icon.astro @@ -0,0 +1,12 @@ +--- +interface Props { + name: string; + iconClass?: string; +} + +const { name, iconClass } = Astro.props; +--- + + + + diff --git a/src/components/icons/IconSet.astro b/src/components/icons/IconSet.astro new file mode 100644 index 0000000..00f6a71 --- /dev/null +++ b/src/components/icons/IconSet.astro @@ -0,0 +1,76 @@ + diff --git a/src/components/nav/Nav.astro b/src/components/nav/Nav.astro new file mode 100644 index 0000000..14173b9 --- /dev/null +++ b/src/components/nav/Nav.astro @@ -0,0 +1,45 @@ +--- +import NavItem from "./NavItem.astro"; +--- + + + + diff --git a/src/components/nav/NavItem.astro b/src/components/nav/NavItem.astro new file mode 100644 index 0000000..d69ee4f --- /dev/null +++ b/src/components/nav/NavItem.astro @@ -0,0 +1,19 @@ +--- +import Icon from "../icons/Icon.astro"; + +interface Props { + href: string; + text: string; + icon?: string; + iconClass?: string; +} + +const { href, text, icon, iconClass } = Astro.props; +--- + +
  • + + {icon && } + {text} + +
  • diff --git a/src/components/palette/Palette.astro b/src/components/palette/Palette.astro new file mode 100644 index 0000000..28ea7c8 --- /dev/null +++ b/src/components/palette/Palette.astro @@ -0,0 +1,22 @@ + + + diff --git a/src/components/product/Card.astro b/src/components/product/Card.astro new file mode 100644 index 0000000..67de4df --- /dev/null +++ b/src/components/product/Card.astro @@ -0,0 +1,23 @@ +--- +import Icon from "../icons/Icon.astro"; + +interface Props { + id: number; + title: string; + imgFame: string; + has3D: boolean; +} + +const { id, title, imgFame, has3D } = Astro.props; +--- + +
    + + {title} + + {title} +
    +
    Zobrazit detail
    +
    + {has3D && } +
    diff --git a/src/components/product/DetailDialog.astro b/src/components/product/DetailDialog.astro new file mode 100644 index 0000000..41a153e --- /dev/null +++ b/src/components/product/DetailDialog.astro @@ -0,0 +1,121 @@ +--- +import Icon from "../icons/Icon.astro"; +interface Props { + id: number; + title?: string; + desc?: string; + imgDark?: string; + imgFrame?: string; + imgLight?: string; + modelHorizontal3d?: string; + modelVertical3d?: string; + daeFile?: string; + content?: string; + price?: number; + reservation: boolean; +} +const { id, title, desc, content, price, imgDark, imgFrame, imgLight, modelHorizontal3d, modelVertical3d, daeFile, reservation } = Astro.props; +--- + + + +
    + {title} + +
    + + + + + + +
    +
    +

    {desc}

    +
    + { + daeFile && ( + + + Stáhnout ve 3D + + ) + } + +
    +
    + + +
    diff --git a/src/components/sections/BeforeAfter.astro b/src/components/sections/BeforeAfter.astro new file mode 100644 index 0000000..b4de011 --- /dev/null +++ b/src/components/sections/BeforeAfter.astro @@ -0,0 +1,49 @@ +
    +
    +
    +
    + + + + + + + Kámen ve dne + + Ve dne +
    +
    + + + + + + + Kámen v noci + + V noci +
    +
    + Vždy elegantní + + + +
    +
    + + diff --git a/src/components/sections/Contact.astro b/src/components/sections/Contact.astro new file mode 100644 index 0000000..31bf4e1 --- /dev/null +++ b/src/components/sections/Contact.astro @@ -0,0 +1,71 @@ +--- +import Icon from "../icons/Icon.astro"; +const { id } = Astro.props; +--- + +
    +
    +
    + Anew Style Logo +
    +

    Kontakujte nás

    +
    +
    +

    + Pro více informací nás neváhejte kontaktovat přes email info@anewstyle.cz, nebo sociální sítě. +

    + +
    + + +
    +

    Showroom

    +

    + Jak naše světla vypadají v reálu si můžete prohlédnout na adrese: +

    + + Hybešova 61
    + 602 00, Brno +
    +
    + Showroom +

    +
    +
    +

    Fakturační adresa

    +
    + OSM s.r.o.
    + Hudcova 86/54
    + 621 00, Brno

    + IČ: 47903180
    + DIČ: CZ47903180
    +
    + +

    Materiály ke stažení

    + + + Návod - RF dálkové ovládání + +

    + + + Návod - LED controller + +
    +
    +
    +
    +
    +
    diff --git a/src/components/sections/Features.astro b/src/components/sections/Features.astro new file mode 100644 index 0000000..857c70c --- /dev/null +++ b/src/components/sections/Features.astro @@ -0,0 +1,247 @@ +--- +import Palette from "../palette/Palette.astro"; + +const { id } = Astro.props; +--- + +
    +
    +

    Vlastnosti

    +
    +
    +
    + Mounting + Vert/Horiz
    mounting
    +
    +
    + Mounting + Vert/Horiz
    mounting
    +
    +
    +
    +

    + Rámy kamenných desek jsou připraveny pro svislou i + vodorovnou montáž, s využitím například jako svítící čelo postele. +

    +
    +
    +
    +
    +

    + Pro zpříjemnění atmosféry, umožňuje rám svítící kamenné desky využití efektního, stmívatelného zadního podsvětlení. +

    +
    +
    +
    + Blacklight + Blacklight
    control
    +
    +
    + Blacklight + Blacklight
    control
    +
    +
    +
    +
    +
    +
    + RF_control + RF Wirless
    Control
    +
    +
    + RF_control + RF Wirless
    Control
    +
    +
    +
    +

    + Ovládání zapínání a vypínání, stejně jako intenzitu prosvětlení kamene a zadního podsvětlení, můžete ovládat přiloženým RF dálkovým ovladačem. +

    +
    +
    +
    +
    +

    + Veškeré funkce dálkového ovladače lze plně nahradit nebo kombinovat s Vašim chytrým telefonem. +

    +
    +
    +
    + MobileControl + Smartphone
    control
    +
    +
    + MobileControl + Smartphone
    control
    +
    +
    +
    +
    +
    +
    + 14mm + 14 mm +
    +
    + 14mm + 14 mm +
    +
    +
    +

    + Elegantní verze SLIM, s tloušťkou pouhých 14mm. +

    +
    +
    +
    +
    +

    + Oblíbená verze o síle 25mm, obsahující zabudovaný jak AC/DC zdroj, tak i + LED controler. Odpadá tedy nutnost dodatečného řešení umístění napájecích a řídících komponentů. +

    +
    +
    +
    + 25mm + 25 mm +
    +
    + 25mm + 25 mm +
    +
    +
    +
    +
    +
    + QuickMounting + Quick
    mounting
    +
    +
    + QuickMounting + Quick
    mounting
    +
    +
    +
    +

    + Obě verze svítících kamenných desek jsou připraveny pro snadnou montáž, která Vám nezabere déle než 10 minut. +

    +
    +
    +
    +
    +

    + V případě zájmu, je možná zakázková výroba svítící kamenné desky o menším rozměru než standardně dodávaným. +

    +
    +
    +
    + CustomSize + Custom
    size
    +
    +
    + CustomSize + Custom
    size
    +
    +
    +
    +
    +
    +
    + LED +
    +
    + LED +
    +
    +
    +

    + Pro nasvícení jsou použity vysokosvítivé LED pásky s minimální spotřebou. +

    +
    +
    +
    +
    +

    + Plynule stmívatelné osvětlení, zajistí vždy tu správnou atmosféru. +

    +
    +
    +
    + Dimmable + Dimmable +
    +
    + Dimmable + Dimmable +
    +
    +
    +
    +
    +
    + Waterproof + Water
    resistant
    +
    +
    + Waterproof + Water
    resistant
    +
    +
    +
    +

    + Na dotek drsný a reliéfní povrch kamenné desky, je impregnován profesionální nano impregnací proti vlhkosti a znečištění. +

    +
    +
    +
    +
    +

    + Všechny věci mají svou životnost, která se dá opravou prodlužovat. Přestože se moderní LED technologie pyšní dobou životnosti dosahující 50 000 hodin, jsou naše svítící kamenné desky kompletovány tak, aby je bylo možné vždy opravit a tak vystoupit z řady dnes vyráběných LED svítidel. +

    +
    +
    +
    + Repair + Easy to repair +
    +
    + Repair + Easy to repair +
    +
    +
    +
    +
    +
    +

    + Nabízíme širokou paletu barevných odstínů rámů svítících kamenných desek, včetně elegantních variant RAL 140M, RAL 150M, RAL 260M a RAL 280M. +

    +
    +
    +
    + +
    +
    +
    + + diff --git a/src/components/sections/Mounting.astro b/src/components/sections/Mounting.astro new file mode 100644 index 0000000..1fb5edb --- /dev/null +++ b/src/components/sections/Mounting.astro @@ -0,0 +1,25 @@ +--- + const {id} = Astro.props; +--- +
    +
    +

    + Montáž a cena +

    +

    + Standardní dodávka obsahuje velkoplošnou svítící kamennou desku - o rozměru 2450 x 1220 mm, rám v + černé + barvě RAL 9005 mat, dle zvolené verze svítící desky SLIM nebo RTH (Ready-To-Hang) zabudovaný + nebo externí zdroj 12V/24V a ovladač WiFi/ZigBee (s možností propojení na chytrou domácnost), + pro zapínání/vypínáná a stmívání. +

    +

    + Základní cena standardní dodávky je 58.900,- Kč bez DPH 21%. Cenová kalkulace se provádí + individuálně, v návaznosti na vybraný typ kamene. Orientační cena balného a dopravy je 1.900,- Kč za + kus, dle místa dodání. +

    +

    + Pro zabudování externího zdroje a ovladače u verze SLIM, je možné u nást objednat odbornou montáž. +

    +
    +
    \ No newline at end of file diff --git a/src/components/sections/Piktograms.astro b/src/components/sections/Piktograms.astro new file mode 100644 index 0000000..92d03c6 --- /dev/null +++ b/src/components/sections/Piktograms.astro @@ -0,0 +1,247 @@ +--- +import Palette from "../palette/Palette.astro"; + +const { id } = Astro.props; +--- + +
    +
    +

    Vlastnosti

    +
    +
    +
    + Mounting + Vert/Horiz
    mounting
    +
    +
    + Mounting + Vert/Horiz
    mounting
    +
    +
    +
    +

    + Rámy kamenných desek jsou připraveny pro svislou i + vodorovnou montáž, s využitím například jako svítící čelo postele. +

    +
    +
    +
    +
    +

    + Pro zpříjemnění atmosféry, umožňuje rám svítící kamenné desky využití efektního, stmívatelného zadního podsvětlení. +

    +
    +
    +
    + Blacklight + Blacklight
    control
    +
    +
    + Blacklight + Blacklight
    control
    +
    +
    +
    +
    +
    +
    + RF_control + RF Wirless
    Control
    +
    +
    + RF_control + RF Wirless
    Control
    +
    +
    +
    +

    + Ovládání zapínání a vypínání, stejně jako intenzitu prosvětlení kamene a zadního podsvětlení, můžete ovládat přiloženým RF dálkovým ovladačem. +

    +
    +
    +
    +
    +

    + Veškeré funkce dálkového ovladače lze plně nahradit nebo kombinovat s Vašim chytrým telefonem. +

    +
    +
    +
    + MobileControl + Smartphone
    control
    +
    +
    + MobileControl + Smartphone
    control
    +
    +
    +
    +
    +
    +
    + 14mm + 14 mm +
    +
    + 14mm + 14 mm +
    +
    +
    +

    + Elegantní verze SLIM, s tloušťkou pouhých 14mm. +

    +
    +
    +
    +
    +

    + Oblíbená verze o síle 25mm, obsahující zabudovaný jak AC/DC zdroj, tak i + LED controler. Odpadá tedy nutnost dodatečného řešení umístění napájecích a řídících komponentů. +

    +
    +
    +
    + 25mm + 25 mm +
    +
    + 25mm + 25 mm +
    +
    +
    +
    +
    +
    + QuickMounting + Quick
    mounting
    +
    +
    + QuickMounting + Quick
    mounting
    +
    +
    +
    +

    + Obě verze svítících kamenných desek jsou připraveny pro snadnou montáž, která Vám nezabere déle než 10 minut. +

    +
    +
    +
    +
    +

    + V případě zájmu, je možná zakázková výroba svítící kamenné desky o menším rozměru než standardně dodávaným. +

    +
    +
    +
    + CustomSize + Custom
    size
    +
    +
    + CustomSize + Custom
    size
    +
    +
    +
    +
    +
    +
    + LED +
    +
    + LED +
    +
    +
    +

    + Pro nasvícení jsou použity vysokosvítivé LED pásky s minimální spotřebou. +

    +
    +
    +
    +
    +

    + Plynule stmívatelné osvětlení, zajistí vždy tu správnou atmosféru. +

    +
    +
    +
    + Dimmable + Dimmable +
    +
    + Dimmable + Dimmable +
    +
    +
    +
    +
    +
    + Waterproof + Water
    resistant
    +
    +
    + Waterproof + Water
    resistant
    +
    +
    +
    +

    + Na dotek drsný a reliéfní povrch kamenné desky, je impregnován profesionální nano impregnací proti vlhkosti a znečištění. +

    +
    +
    +
    +
    +

    + Všechny věci mají svou životnost, která se dá opravou prodlužovat. Přestože se moderní LED technologie pyšní dobou životnosti dosahující 50 000 hodin, jsou naše svítící kamenné desky kompletovány tak, aby je bylo možné vždy opravit a tak vystoupit z řady dnes vyráběných LED svítidel. +

    +
    +
    +
    + Repair + Easy to repair +
    +
    + Repair + Easy to repair +
    +
    +
    +
    +
    +
    +

    + Nabízíme širokou paletu barevných odstínů kamene, včetně elegantních variant RAL 140M, RAL 150M, RAL 260M a RAL 280M. +

    +
    +
    +
    + +
    +
    +
    + + diff --git a/src/components/sections/Products.astro b/src/components/sections/Products.astro new file mode 100644 index 0000000..ed04bcd --- /dev/null +++ b/src/components/sections/Products.astro @@ -0,0 +1,29 @@ +--- +import Card from "../product/Card.astro"; +import DetailDialog from "../product/DetailDialog.astro"; + +const { id } = Astro.props; +const products = await Astro.glob("../../content/products/*.md"); +--- + +
    +
    +

    Produkty

    +

    Designově jedinečné, velkoplošné svítící kamenné desky.

    +

    Každý nabízený vzor kamene je pečlivě vybírán z množství, přírodou vytvořených dekorů tak, aby byl ve vašem interiéru inspirativní, jak bez podsvícení, tak s efektním celoplošným podsvícením.

    +

    Vyberte si svítící kamennou desku a vyzkoušejte ji pomocí technologie AR ve Vašem interiéru.

    +
    + { + products.map((product) => { + const data = product.frontmatter; + return ( +
    + + +
    + ); + }) + } +
    +
    +
    diff --git a/src/components/sections/Showcase.astro b/src/components/sections/Showcase.astro new file mode 100644 index 0000000..f23d0ae --- /dev/null +++ b/src/components/sections/Showcase.astro @@ -0,0 +1,60 @@ +--- +import Icon from "../icons/Icon.astro"; + +const { id } = Astro.props; +--- + +
    +
    +
    +

    Designové interiérové osvětlení

    +

    Celoplošné svítící panely prosvětlující přírodní kamennou desku, se vyznačují malou hmotnost, snadnou montáží, nízkou spotřebou elektrické energie, ale především vždy jedinečnou a nepomíjivou elegancí.

    +
    +
    + Kamenná deska Goldenbark + Kamenná deska Goldenbark - rozsvícený rám + Kamenná deska Goldenbark - rozsvícená +
    +
    +
    +

    Designové interiérové osvětlení

    +

    Celoplošné svítící panely prosvětlující přírodní kamennou desku, se vyznačují malou hmotnost, snadnou montáží, nízkou spotřebou elektrické energie, ale především vždy jedinečnou a nepomíjivou elegancí.

    +
    +
    + + + +
    +
    +
    +
    + + diff --git a/src/components/sections/Showroom.astro b/src/components/sections/Showroom.astro new file mode 100644 index 0000000..9e40133 --- /dev/null +++ b/src/components/sections/Showroom.astro @@ -0,0 +1,108 @@ +--- +import Icon from "../icons/Icon.astro"; +const { id } = Astro.props; +--- + +
    +
    +

    Galerie

    +

    + Pro inspiraci si prohlédněte naši galerii fotografií. Jak by se tenhle krásný designový prvek mohl vyjímat u Vás doma, či v kanceláři? +

    +
    + +
    +

    + Vizualizace interiérů jsou použity se souhlasem společnosti ATAK Design. +

    + + + + Logo společnosti ATAK Design + +

    +
    + + +
    diff --git a/src/content/products/product-1.md b/src/content/products/product-1.md new file mode 100644 index 0000000..3340c3d --- /dev/null +++ b/src/content/products/product-1.md @@ -0,0 +1,24 @@ +--- +id: 1 +title: WILDLIFE +desc: Raritní svítící kamenná deska WILDLIFE je díky své živé kresbě kamene vhodná k osvětlení každého interiéru. Její, přírodou vytvořený divoký vzor, Vám nikdy nezevšední. +price: 58900 +imgDark: Rockfoil_WILDLIFE_dark.webp +imgLight: Rockfoil_WILDLIFE_light.webp +imgFrame: Rockfoil_WILDLIFE_light_frame.webp +modelHorizontal3d: Rockfoil_WILDLIFE_3D.glb +modelVertical3d: Rockfoil_WILDLIFE_3D_vertical.glb +daeFile: Rock_sheet_WILDLIFE.dae +reservation: false +--- +- **rozměr**: 2450 x 1220 mm +- **tloušťka**: 25 mm +- **hmotnost**: 34 kg +- **napájecí napěti**: 230V +- **zabudovaný zdroj**: 12V +- **max: spotreba**: 63W +- **max. spotřeba zadního podsvícení**: 35W +- **spotřeba ve standby režimu**: O,2W +- **světelný tok**: 5760 lm (jas desky je snížen dle kresby kamene) +- **barva rámu**: RAL 9005 mat (černá) +- volitelné příplatkové barvy ramu - RAL E4 Metallic diff --git a/src/content/products/product-2.md b/src/content/products/product-2.md new file mode 100644 index 0000000..2f64970 --- /dev/null +++ b/src/content/products/product-2.md @@ -0,0 +1,24 @@ +--- +id: 2 +title: Pink +desc: Jedinečná narůžovělá kresba kamene předurčuje svítící kamennou desku PINK k osvětlení tmavých, ale i světlých prostor, kde je její svit výrazný i za denního světla. +price: 74900 +imgDark: Rockfoil_PINK_dark.webp +imgLight: Rockfoil_PINK_light.webp +imgFrame: Rockfoil_PINK_light_frame.webp +modelHorizontal3d: Rockfoil_PINK_3D.glb +modelVertical3d: Rockfoil_PINK_3D_vertical.glb +daeFile: Rock_sheet_PINK.dae +reservation: true +--- +- **rozměr**: 2450 x 1220 mm +- **tloušťka**: 25 mm +- **hmotnost**: 34 kg +- **napájecí napěti**: 230V +- **zabudovaný zdroj**: 12V +- **max: spotreba**: 63W +- **max. spotřeba zadního podsvícení**: 35W +- **spotřeba ve standby režimu**: O,2W +- **světelný tok**: 5760 lm (jas desky je snížen dle kresby kamene) +- **barva rámu**: RAL 9005 mat (černá) +- volitelné příplatkové barvy ramu - RAL E4 Metallic \ No newline at end of file diff --git a/src/content/products/product-3.md b/src/content/products/product-3.md new file mode 100644 index 0000000..0a16294 --- /dev/null +++ b/src/content/products/product-3.md @@ -0,0 +1,24 @@ +--- +id: 3 +title: Goldenbark +desc: Zemitá kresba svítící kamenné desky GOLDENBARK, ji činí univerzálním luxusním osvětlením téměř do všech prostor. Speciálně navržené LED prosvětlení, zvýrazňuje zlatavé žilkování kamene. +price: 74900 +imgDark: Rockfoil_GOLDENBARK_dark.webp +imgLight: Rockfoil_GOLDENBARK_light.webp +imgFrame: Rockfoil_GOLDENBARK_light_frame.webp +modelHorizontal3d: Rockfoil_GOLDENBARK_3D.glb +modelVertical3d: Rockfoil_GOLDENBARK_3D_vertical.glb +daeFile: Rock_sheet_GOLDENBARK.dae +reservation: true +--- +- **rozměr**: 2450 x 1220 mm +- **tloušťka**: 25 mm +- **hmotnost**: 34 kg +- **napájecí napěti**: 230V +- **zabudovaný zdroj**: 12V +- **max: spotreba**: 63W +- **max. spotřeba zadního podsvícení**: 35W +- **spotřeba ve standby režimu**: O,2W +- **světelný tok**: 5760 lm (jas desky je snížen dle kresby kamene) +- **barva rámu**: RAL 9005 mat (černá) +- volitelné příplatkové barvy ramu - RAL E4 Metallic \ No newline at end of file diff --git a/src/content/products/product-4.md b/src/content/products/product-4.md new file mode 100644 index 0000000..091a2ee --- /dev/null +++ b/src/content/products/product-4.md @@ -0,0 +1,25 @@ +--- +id: 4 +title: Darkgold +desc: Tmavá svítící kamenná deska DARKGOLD je výjimečná svou zlatavou kresbou, která podtrhne výjimečnost Vašeho interiéru. Speciálně navržené LED prosvětlení, zvýrazňuje přechody mezi převažující černou a zlatavými ostrůvky kresby kamene. +price: 74900 +imgDark: Rockfoil_DARKGOLD_dark.webp +imgLight: Rockfoil_DARKGOLD_light.webp +imgFrame: Rockfoil_DARKGOLD_light_frame.webp +model3d: Rockfoil_DARKGOLD_3D.glb +modelHorizontal3d: Rockfoil_DARKGOLD_3D.glb +modelVertical3d: Rockfoil_DARKGOLD_3D_vertical.glb +daeFile: Rock_sheet_DARKGOLD.dae +reservation: true +--- +- **rozměr**: 2450 x 1220 mm +- **tloušťka**: 25 mm +- **hmotnost**: 34 kg +- **napájecí napěti**: 230V +- **zabudovaný zdroj**: 12V +- **max: spotreba**: 63W +- **max. spotřeba zadního podsvícení**: 35W +- **spotřeba ve standby režimu**: O,2W +- **světelný tok**: 5760 lm (jas desky je snížen dle kresby kamene) +- **barva rámu**: RAL 9005 mat (černá) +- volitelné příplatkové barvy ramu - RAL E4 Metallic \ No newline at end of file diff --git a/src/env.d.ts b/src/env.d.ts new file mode 100644 index 0000000..acef35f --- /dev/null +++ b/src/env.d.ts @@ -0,0 +1,2 @@ +/// +/// diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro new file mode 100644 index 0000000..f3caad7 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,56 @@ +--- +import Footer from "../components/footer/Footer.astro"; +import IconSet from "../components/icons/IconSet.astro"; +interface Props { + title: string; + description: string; +} +const { title } = Astro.props; +const { description } = Astro.props; +--- + + + + + + {title} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +