@manifoldco/ui
Advanced tools
Comparing version 0.0.17-alpha.3 to 0.0.17-alpha.4
@@ -155,2 +155,7 @@ { | ||
{ | ||
"name": "productId", | ||
"type": "String", | ||
"attr": "product-id" | ||
}, | ||
{ | ||
"name": "productLabel", | ||
@@ -184,2 +189,7 @@ "type": "String", | ||
{ | ||
"name": "productId", | ||
"type": "String", | ||
"attr": "product-id" | ||
}, | ||
{ | ||
"name": "productLabel", | ||
@@ -1192,7 +1202,18 @@ "type": "String", | ||
"dependencies": [ | ||
"context-consumer" | ||
"context-consumer", | ||
"manifold-icon", | ||
"manifold-number-input", | ||
"manifold-select", | ||
"manifold-toggle", | ||
"manifold-tooltip" | ||
], | ||
"componentClass": "ManifoldResourceDetails", | ||
"componentPath": "components/manifold-resource-details/manifold-resource-details.js", | ||
"styles": {}, | ||
"styles": { | ||
"$": { | ||
"stylePaths": [ | ||
"components/manifold-resource-details/style.css" | ||
] | ||
} | ||
}, | ||
"props": [ | ||
@@ -1211,2 +1232,5 @@ { | ||
{ | ||
"name": "plan" | ||
}, | ||
{ | ||
"name": "resource" | ||
@@ -1217,3 +1241,4 @@ } | ||
"name": "el" | ||
} | ||
}, | ||
"shadow": true | ||
}, | ||
@@ -1220,0 +1245,0 @@ { |
@@ -9,10 +9,20 @@ import Tunnel from '../../data/connection'; | ||
componentWillLoad() { | ||
fetch(`${this.connection.catalog}/products?label=${this.productLabel}`, withAuth()) | ||
.then(response => response.json()) | ||
.then(data => { | ||
this.product = Object.assign({}, data[0]); | ||
}); | ||
if (this.productLabel) { | ||
return fetch(`${this.connection.catalog}/products?label=${this.productLabel}`, withAuth()) | ||
.then(response => response.json()) | ||
.then(data => { | ||
this.product = Object.assign({}, data[0]); | ||
}); | ||
} | ||
if (this.productId) { | ||
return fetch(`${this.connection.catalog}/products/${this.productId}`, withAuth()) | ||
.then(response => response.json()) | ||
.then(data => { | ||
this.product = Object.assign({}, data); | ||
}); | ||
} | ||
return null; | ||
} | ||
render() { | ||
return this.product ? h("img", { src: this.product.body.logo_url, alt: this.alt || this.product.body.name }) : h("slot", null); | ||
return this.product ? (h("img", { src: this.product.body.logo_url, alt: this.alt || this.product.body.name })) : (h("slot", null)); | ||
} | ||
@@ -35,2 +45,6 @@ static get is() { return "manifold-data-product-logo"; } | ||
}, | ||
"productId": { | ||
"type": String, | ||
"attr": "product-id" | ||
}, | ||
"productLabel": { | ||
@@ -37,0 +51,0 @@ "type": String, |
@@ -9,7 +9,17 @@ import Tunnel from '../../data/connection'; | ||
componentWillLoad() { | ||
fetch(`${this.connection.catalog}/products?label=${this.productLabel}`, withAuth()) | ||
.then(response => response.json()) | ||
.then(data => { | ||
this.product = Object.assign({}, data[0]); | ||
}); | ||
if (this.productLabel) { | ||
return fetch(`${this.connection.catalog}/products?label=${this.productLabel}`, withAuth()) | ||
.then(response => response.json()) | ||
.then(data => { | ||
this.product = Object.assign({}, data[0]); | ||
}); | ||
} | ||
if (this.productId) { | ||
return fetch(`${this.connection.catalog}/products/${this.productId}`, withAuth()) | ||
.then(response => response.json()) | ||
.then(data => { | ||
this.product = data; | ||
}); | ||
} | ||
return null; | ||
} | ||
@@ -31,2 +41,6 @@ render() { | ||
}, | ||
"productId": { | ||
"type": String, | ||
"attr": "product-id" | ||
}, | ||
"productLabel": { | ||
@@ -33,0 +47,0 @@ "type": String, |
@@ -17,3 +17,3 @@ import { check } from '@manifoldco/icons'; | ||
} | ||
return (h("manifold-toggle", { "aria-label": feature.name, defaultValue: feature.value && booleanFeatureDefaultValue(feature.value), name: feature.label, onUpdateValue: (e) => onChange(e) })); | ||
return (h("manifold-toggle", { "aria-label": feature.name, defaultValue: feature.value && booleanFeatureDefaultValue(feature.value), name: feature.label, onUpdateValue: (e) => onChange && onChange(e) })); | ||
}; |
import Tunnel from '../../data/connection'; | ||
import { withAuth } from '../../utils/auth'; | ||
import { connections } from '../../utils/connections'; | ||
import { FeatureName } from './components/FeatureName'; | ||
import { FeatureValue } from './components/FeatureValue'; | ||
export class ManifoldResourceDetails { | ||
@@ -8,13 +10,26 @@ constructor() { | ||
} | ||
componentWillLoad() { | ||
return fetch(`${this.connection.marketplace}/resources/${this.resourceId}`, withAuth()) | ||
.then(response => response.json()) | ||
.then((resource) => { | ||
this.resource = resource; | ||
}); | ||
async componentWillLoad() { | ||
const resourceResponse = await fetch(`${this.connection.marketplace}/resources/${this.resourceId}`, withAuth()); | ||
const resource = await resourceResponse.json(); | ||
this.resource = resource; | ||
if (this.resource) { | ||
const planResponse = await fetch(`${this.connection.catalog}/plans/${this.resource.body.plan_id}`, withAuth()); | ||
const plan = await planResponse.json(); | ||
this.plan = plan; | ||
} | ||
} | ||
render() { | ||
return h("div", null, JSON.stringify(this.resource)); | ||
if (!this.resource || !this.plan) | ||
return null; | ||
const { expanded_features = [] } = this.plan.body; | ||
const { features: customFeatures } = this.resource.body; | ||
return (h("dl", { class: "features" }, expanded_features.map(feature => [ | ||
h("dt", { class: "feature-name" }, | ||
h(FeatureName, { feature: feature })), | ||
h("dd", { class: "feature-value" }, | ||
h(FeatureValue, { feature: feature, value: customFeatures[feature.label] })), | ||
]))); | ||
} | ||
static get is() { return "manifold-resource-details"; } | ||
static get encapsulation() { return "shadow"; } | ||
static get properties() { return { | ||
@@ -28,2 +43,5 @@ "connection": { | ||
}, | ||
"plan": { | ||
"state": true | ||
}, | ||
"resource": { | ||
@@ -37,3 +55,4 @@ "state": true | ||
}; } | ||
static get style() { return "/**style-placeholder:manifold-resource-details:**/"; } | ||
} | ||
Tunnel.injectProps(ManifoldResourceDetails, ['connection']); |
import { h } from '../manifold.core.js'; | ||
import { g as ai, h as plug, i as shield, j as file, k as database, l as infrastructure, m as logging, n as cpu, o as activity, p as message_circle, q as image, r as credit_card, s as play_circle, t as search, u as dollar_sign, v as worker, w as square, x as tool, y as shopping_cart } from './chunk-d74facf4.js'; | ||
import { i as ai, j as plug, k as shield, l as file, m as database, n as infrastructure, o as logging, p as cpu, q as activity, r as message_circle, s as image, t as credit_card, u as play_circle, v as search, w as dollar_sign, x as worker, y as square, z as tool, A as shopping_cart } from './chunk-d74facf4.js'; | ||
@@ -5,0 +5,0 @@ function formatCategoryLabel(tag) { |
@@ -39,2 +39,2 @@ import { h } from '../manifold.core.js'; | ||
export { check as a, sliders as b, arrow_right as c, book as d, arrow_up_right as e, life_buoy as f, ai as g, plug as h, shield as i, file as j, database as k, infrastructure as l, logging as m, cpu as n, activity as o, message_circle as p, image as q, credit_card as r, play_circle as s, search as t, dollar_sign as u, worker as v, square as w, tool as x, shopping_cart as y, check_circle as z, alert_triangle as A, slash as B, bell as C, x as D, minus as E, plus as F, lock as G, eye as H, refresh_cw as I }; | ||
export { check as a, sliders as b, minus as c, plus as d, arrow_right as e, book as f, arrow_up_right as g, life_buoy as h, ai as i, plug as j, shield as k, file as l, database as m, infrastructure as n, logging as o, cpu as p, activity as q, message_circle as r, image as s, credit_card as t, play_circle as u, search as v, dollar_sign as w, worker as x, square as y, tool as z, shopping_cart as A, check_circle as B, alert_triangle as C, slash as D, bell as E, x as F, lock as G, eye as H, refresh_cw as I }; |
// manifold: Host Data, ES Module/es2017 Target | ||
export const COMPONENTS = [["context-consumer","gfawzwhn",0,[["context",1],["el",64],["renderer",1,0,1,1],["subscribe",1],["unsubscribe",16]]],["manifold-active-plan","z0rfwhdk",1,[["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plans",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regions",1],["selectedPlanId",16],["selectedResource",1]],1],["manifold-badge","gfawzwhn",1,0,1],["manifold-connection","zjmcsnd8",0,[["env",1,0,1,2]]],["manifold-cost-display","gfawzwhn",1,[["baseCost",1,0,"base-cost",8],["compact",1,0,1,4],["el",64],["isCustomizable",1,0,"is-customizable",4],["measuredFeatures",1]],1],["manifold-data-product-logo","t3o3uzes",0,[["alt",1,0,1,2],["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-product-name","akvyxd3e",0,[["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-provision-button","guv8xgxj",0,[["connection",1],["el",64],["features",1],["formLabel",1,0,"form-label",2],["inputId",1,0,"input-id",2],["ownerId",1,0,"owner-id",2],["planId",1,0,"plan-id",2],["productId",2,0,"product-id",2],["productLabel",1,0,"product-label",2],["regionId",1,0,"region-id",2],["resourceName",16]]],["manifold-data-resource-list","xysudypn",0,[["connection",1],["disableUpdate",1,0,"disable-update",4],["el",64],["interval",16],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4],["resources",16]]],["manifold-featured-service","hxmzzpqc",1,[["logo",1,0,1,2],["name",1,0,1,2],["productGradient",1,0,"product-gradient",2]],1],["manifold-icon","llrkhz7d",1,[["color",1,0,1,2],["element",64],["gradient",1,0,1,2],["icon",1,0,1,2],["marginLeft",1,0,"margin-left",4],["marginRight",1,0,"margin-right",4],["title",1,0,1,2]],1],["manifold-image-gallery","hxmzzpqc",1,[["images",1],["selectedImage",16],["title",1,0,1,2]],1],["manifold-lazy-image","4sm2fetu",0,[["alt",1,0,1,2],["itemprop",1,0,1,2],["observer",16],["src",1,0,1,2]]],["manifold-link-button","gfawzwhn",1,[["color",1,0,1,2],["href",1,0,1,2],["onClick",1],["rel",1,0,1,2],["size",1,0,1,2],["target",1,0,1,2]],1],["manifold-marketplace","4sm2fetu",0,[["connection",1],["el",64],["excludes",1,0,1,2],["featured",1,0,1,2],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["parsedExcludes",16],["parsedFeatured",16],["parsedProducts",16],["preserveEvent",1,0,"preserve-event",4],["products",1,0,1,2],["services",16]]],["manifold-marketplace-grid","4sm2fetu",1,[["activeCategory",16],["el",64],["excludes",1],["featured",1],["filter",16],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["observer",16],["preserveEvent",1,0,"preserve-event",4],["products",1],["scrollToCategory",16],["search",16],["services",1]],1],["manifold-number-input","evulxbw2",1,[["decrementDisabledLabel",1,0,"decrement-disabled-label",2],["error",1,0,1,2],["increment",1,0,1,8],["incrementDisabledLabel",1,0,"increment-disabled-label",2],["max",1,0,1,8],["min",1,0,1,8],["name",1,0,1,2],["suffix",1,0,1,2],["value",2,0,1,8]],1],["manifold-plan-cost","gfawzwhn",0,[["allFeatures",1],["baseCost",16],["compact",1,0,1,4],["connection",1],["controller",16],["customizable",1,0,1,4],["el",64],["planId",1,0,"plan-id",2],["selectedFeatures",1]]],["manifold-plan-details","evulxbw2",1,[["features",16],["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plan",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regionId",16],["regions",1],["resourceFeatures",1]],1],["manifold-plan-menu","z0rfwhdk",1,[["plans",1],["selectPlan",1],["selectedPlanId",1,0,"selected-plan-id",2]],1],["manifold-plan-selector","z0rfwhdk",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["parsedRegions",16],["plans",16],["preserveEvent",1,0,"preserve-event",4],["product",16],["productLabel",1,0,"product-label",2],["regions",1,0,1,2],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-product","miotsssn",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",16],["productLabel",1,0,"product-label",2],["provider",16]]],["manifold-product-details","hxmzzpqc",1,[["product",1]],1],["manifold-product-page","hxmzzpqc",1,[["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",1],["provider",1]],1],["manifold-region-selector","evulxbw2",0,[["allowedRegions",1],["ariaLabel",1,0,"aria-label",2],["connection",1],["el",64],["globalRegion",16],["name",1,0,1,2],["preferredRegions",1],["regions",16],["value",1,0,1,2]]],["manifold-resource-credentials","ijzjdu5t",1,[["connection",1],["credentials",16],["el",64],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-resource-details","8mh2f5jc",0,[["connection",1],["el",64],["resource",16],["resourceId",1,0,"resource-id",2]]],["manifold-resource-status","4qe1m7qo",1,[["connection",1],["el",64],["loading",16],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-select","ewbawxtk",1,[["defaultValue",1,0,"default-value",2],["name",1,0,1,2],["options",1],["required",1,0,1,4]],2],["manifold-service-card","4sm2fetu",1,[["connection",1],["description",1,0,1,2],["el",64],["isFeatured",1,0,"is-featured",4],["isFree",16],["label",1,0,1,2],["linkFormat",1,0,"link-format",2],["logo",1,0,1,2],["name",1,0,1,2],["preserveEvent",1,0,"preserve-event",4],["productId",1,0,"product-id",2]],1],["manifold-template-card","4sm2fetu",1,[["category",1,0,1,2],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4]],1],["manifold-toast","4sm2fetu",1,[["alertType",1,0,"alert-type",2],["dismissable",1,0,1,4],["el",64],["icon",1,0,1,2],["lastHeight",16],["observer",16],["status",16]],1],["manifold-toggle","evulxbw2",1,[["ariaLabelledby",1,0,"aria-labelledby",2],["defaultValue",1,0,"default-value",4],["disabled",1,0,1,4],["label",1,0,1,2],["name",1,0,1,2]],2],["manifold-tooltip","gfawzwhn",1,[["labelText",1,0,"label-text",2]],1]] | ||
export const COMPONENTS = [["context-consumer","qaxc3xvy",0,[["context",1],["el",64],["renderer",1,0,1,1],["subscribe",1],["unsubscribe",16]]],["manifold-active-plan","z0rfwhdk",1,[["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plans",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regions",1],["selectedPlanId",16],["selectedResource",1]],1],["manifold-badge","qaxc3xvy",1,0,1],["manifold-connection","zjmcsnd8",0,[["env",1,0,1,2]]],["manifold-cost-display","qaxc3xvy",1,[["baseCost",1,0,"base-cost",8],["compact",1,0,1,4],["el",64],["isCustomizable",1,0,"is-customizable",4],["measuredFeatures",1]],1],["manifold-data-product-logo","uyaypu3c",0,[["alt",1,0,1,2],["connection",1],["el",64],["product",16],["productId",1,0,"product-id",2],["productLabel",1,0,"product-label",2]]],["manifold-data-product-name","gxoxujh0",0,[["connection",1],["el",64],["product",16],["productId",1,0,"product-id",2],["productLabel",1,0,"product-label",2]]],["manifold-data-provision-button","guv8xgxj",0,[["connection",1],["el",64],["features",1],["formLabel",1,0,"form-label",2],["inputId",1,0,"input-id",2],["ownerId",1,0,"owner-id",2],["planId",1,0,"plan-id",2],["productId",2,0,"product-id",2],["productLabel",1,0,"product-label",2],["regionId",1,0,"region-id",2],["resourceName",16]]],["manifold-data-resource-list","xysudypn",0,[["connection",1],["disableUpdate",1,0,"disable-update",4],["el",64],["interval",16],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4],["resources",16]]],["manifold-featured-service","gywse8kn",1,[["logo",1,0,1,2],["name",1,0,1,2],["productGradient",1,0,"product-gradient",2]],1],["manifold-icon","llrkhz7d",1,[["color",1,0,1,2],["element",64],["gradient",1,0,1,2],["icon",1,0,1,2],["marginLeft",1,0,"margin-left",4],["marginRight",1,0,"margin-right",4],["title",1,0,1,2]],1],["manifold-image-gallery","gywse8kn",1,[["images",1],["selectedImage",16],["title",1,0,1,2]],1],["manifold-lazy-image","v0if847o",0,[["alt",1,0,1,2],["itemprop",1,0,1,2],["observer",16],["src",1,0,1,2]]],["manifold-link-button","qaxc3xvy",1,[["color",1,0,1,2],["href",1,0,1,2],["onClick",1],["rel",1,0,1,2],["size",1,0,1,2],["target",1,0,1,2]],1],["manifold-marketplace","v0if847o",0,[["connection",1],["el",64],["excludes",1,0,1,2],["featured",1,0,1,2],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["parsedExcludes",16],["parsedFeatured",16],["parsedProducts",16],["preserveEvent",1,0,"preserve-event",4],["products",1,0,1,2],["services",16]]],["manifold-marketplace-grid","v0if847o",1,[["activeCategory",16],["el",64],["excludes",1],["featured",1],["filter",16],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["observer",16],["preserveEvent",1,0,"preserve-event",4],["products",1],["scrollToCategory",16],["search",16],["services",1]],1],["manifold-number-input","qaxc3xvy",1,[["decrementDisabledLabel",1,0,"decrement-disabled-label",2],["error",1,0,1,2],["increment",1,0,1,8],["incrementDisabledLabel",1,0,"increment-disabled-label",2],["max",1,0,1,8],["min",1,0,1,8],["name",1,0,1,2],["suffix",1,0,1,2],["value",2,0,1,8]],1],["manifold-plan-cost","qaxc3xvy",0,[["allFeatures",1],["baseCost",16],["compact",1,0,1,4],["connection",1],["controller",16],["customizable",1,0,1,4],["el",64],["planId",1,0,"plan-id",2],["selectedFeatures",1]]],["manifold-plan-details","b6lrayam",1,[["features",16],["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plan",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regionId",16],["regions",1],["resourceFeatures",1]],1],["manifold-plan-menu","z0rfwhdk",1,[["plans",1],["selectPlan",1],["selectedPlanId",1,0,"selected-plan-id",2]],1],["manifold-plan-selector","z0rfwhdk",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["parsedRegions",16],["plans",16],["preserveEvent",1,0,"preserve-event",4],["product",16],["productLabel",1,0,"product-label",2],["regions",1,0,1,2],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-product","miotsssn",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",16],["productLabel",1,0,"product-label",2],["provider",16]]],["manifold-product-details","gywse8kn",1,[["product",1]],1],["manifold-product-page","gywse8kn",1,[["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",1],["provider",1]],1],["manifold-region-selector","b6lrayam",0,[["allowedRegions",1],["ariaLabel",1,0,"aria-label",2],["connection",1],["el",64],["globalRegion",16],["name",1,0,1,2],["preferredRegions",1],["regions",16],["value",1,0,1,2]]],["manifold-resource-credentials","ijzjdu5t",1,[["connection",1],["credentials",16],["el",64],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-resource-details","8dtj008j",1,[["connection",1],["el",64],["plan",16],["resource",16],["resourceId",1,0,"resource-id",2]],1],["manifold-resource-status","4qe1m7qo",1,[["connection",1],["el",64],["loading",16],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-select","ewbawxtk",1,[["defaultValue",1,0,"default-value",2],["name",1,0,1,2],["options",1],["required",1,0,1,4]],2],["manifold-service-card","v0if847o",1,[["connection",1],["description",1,0,1,2],["el",64],["isFeatured",1,0,"is-featured",4],["isFree",16],["label",1,0,1,2],["linkFormat",1,0,"link-format",2],["logo",1,0,1,2],["name",1,0,1,2],["preserveEvent",1,0,"preserve-event",4],["productId",1,0,"product-id",2]],1],["manifold-template-card","v0if847o",1,[["category",1,0,1,2],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4]],1],["manifold-toast","v0if847o",1,[["alertType",1,0,"alert-type",2],["dismissable",1,0,1,4],["el",64],["icon",1,0,1,2],["lastHeight",16],["observer",16],["status",16]],1],["manifold-toggle","qaxc3xvy",1,[["ariaLabelledby",1,0,"aria-labelledby",2],["defaultValue",1,0,"default-value",4],["disabled",1,0,1,4],["label",1,0,1,2],["name",1,0,1,2]],2],["manifold-tooltip","qaxc3xvy",1,[["labelText",1,0,"label-text",2]],1]] |
@@ -1,1 +0,1 @@ | ||
import{g as ai,h as plug,i as shield,j as file,k as database,l as infrastructure,m as logging,n as cpu,o as activity,p as message_circle,q as image,r as credit_card,s as play_circle,t as search,u as dollar_sign,v as worker,w as square,x as tool,y as shopping_cart}from"./chunk-d74facf4.js";function formatCategoryLabel(a){switch(a){case"cms":return"CMS";case"ai-ml":return"AI/ML";default:return a.replace(/-/g," ")}}function categories(a){var e={};return Array.isArray(a)&&a.forEach(function(a){return(a.body.tags||["uncategorized"]).forEach(function(r){e[r]=e[r]||[],e[r].push(a)}),{}}),e}function filteredServices(a,e){if(!a||!e)return[];var r=a.toLocaleLowerCase();return e.filter(function(a){return[a.body.label,a.body.name.toLocaleLowerCase()].concat(a.body.tags||[]).some(function(a){return a.includes(r)})})}var categoryIcon={"ai-ml":ai,api:plug,authentication:shield,cms:file,database:database,infrastructure:infrastructure,logging:logging,"memory-store":cpu,monitoring:activity,messaging:message_circle,optimization:image,payment:credit_card,runtime:play_circle,search:search,"sell-your-service":dollar_sign,worker:worker,uncategorized:square,utility:tool,ecommerce:shopping_cart};export{categoryIcon as a,filteredServices as b,categories as c,formatCategoryLabel as d}; | ||
import{i as ai,j as plug,k as shield,l as file,m as database,n as infrastructure,o as logging,p as cpu,q as activity,r as message_circle,s as image,t as credit_card,u as play_circle,v as search,w as dollar_sign,x as worker,y as square,z as tool,A as shopping_cart}from"./chunk-d74facf4.js";function formatCategoryLabel(a){switch(a){case"cms":return"CMS";case"ai-ml":return"AI/ML";default:return a.replace(/-/g," ")}}function categories(a){var e={};return Array.isArray(a)&&a.forEach(function(a){return(a.body.tags||["uncategorized"]).forEach(function(r){e[r]=e[r]||[],e[r].push(a)}),{}}),e}function filteredServices(a,e){if(!a||!e)return[];var r=a.toLocaleLowerCase();return e.filter(function(a){return[a.body.label,a.body.name.toLocaleLowerCase()].concat(a.body.tags||[]).some(function(a){return a.includes(r)})})}var categoryIcon={"ai-ml":ai,api:plug,authentication:shield,cms:file,database:database,infrastructure:infrastructure,logging:logging,"memory-store":cpu,monitoring:activity,messaging:message_circle,optimization:image,payment:credit_card,runtime:play_circle,search:search,"sell-your-service":dollar_sign,worker:worker,uncategorized:square,utility:tool,ecommerce:shopping_cart};export{categoryIcon as a,filteredServices as b,categories as c,formatCategoryLabel as d}; |
@@ -1,1 +0,1 @@ | ||
var activity="M640 761.076l-215.523-646.569c-12.966-38.899-67.988-38.899-80.954 0l-118.275 354.826h-139.914c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667h170.667c18.365 0 34.67-11.752 40.477-29.174l87.523-262.569 215.523 646.569c12.966 38.899 67.988 38.899 80.954 0l118.275-354.826h139.914c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-170.667c-18.365 0-34.67 11.752-40.477 29.174l-87.523 262.569z",ai="M535.429 460.129c16.838-95.227 100.004-167.558 200.063-167.558 112.21 0 203.175 90.964 203.175 203.175s-90.964 203.175-203.175 203.175c-96.666 0-177.564-67.507-198.123-157.95-1.655 0.205-3.341 0.311-5.052 0.311h-58.19l-145.577 188.417c0.391 3.231 0.592 6.521 0.592 9.857 0 44.884-36.386 81.27-81.27 81.27s-81.27-36.386-81.27-81.27c0-44.884 36.386-81.27 81.27-81.27 10.227 0 20.014 1.889 29.029 5.338l94.525-122.341h-125.724c-3.744 0-7.369-0.506-10.811-1.454-14.476 22.378-39.652 37.188-68.287 37.188-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c32.23 0 60.078 18.761 73.218 45.958 1.92-0.278 3.883-0.422 5.88-0.422h129.776l-105.627-129.812c-6.99 1.959-14.362 3.007-21.978 3.007-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c44.884 0 81.27 36.386 81.27 81.27 0 6.714-0.814 13.239-2.349 19.479l153.459 188.596h52.065c1.047 0 2.084 0.040 3.111 0.117zM735.492 617.651c67.326 0 121.905-54.579 121.905-121.905s-54.579-121.905-121.905-121.905c-67.326 0-121.905 54.579-121.905 121.905s54.579 121.905 121.905 121.905z",alert_triangle="M421.511 147.152c23.327-38.457 64.821-61.819 109.562-61.819s86.236 23.362 109.562 61.819l361.733 603.896c22.743 39.386 22.879 87.881 0.357 127.394s-64.319 64.106-110.266 64.609l-723.242-0.003c-45.478-0.5-87.275-25.094-109.797-64.606s-22.386-88.008 0.703-127.983l361.387-603.307zM494.644 191.121l-360.969 602.598c-7.581 13.129-7.626 29.294-0.119 42.465s21.44 21.369 36.13 21.533l722.304 0.003c15.159-0.167 29.092-8.365 36.599-21.535s7.462-29.336 0.228-41.875l-361.264-603.104c-7.735-12.751-21.566-20.539-36.48-20.539-14.881 0-28.685 7.753-36.429 20.455zM488.406 388.384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM531.073 772.384c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",arrow_right="M750.327 469.333l-183.163-183.163c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l256 256c16.662 16.662 16.662 43.677 0 60.34l-256 256c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l183.163-183.163h-579.66c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h579.66z",arrow_up_right="M664.994 298.667h-280.994c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h384c23.564 0 42.667 19.103 42.667 42.667v384c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-280.994l-439.163 439.163c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l439.163-439.163z",bell="M768 597.333v-213.333c0-141.385-114.615-256-256-256s-256 114.615-256 256v213.333c0 31.086-8.311 60.231-22.832 85.333h557.664c-14.521-25.103-22.832-54.247-22.832-85.333zM938.667 768h-853.333c-56.889 0-56.889-85.333 0-85.333 47.128 0 85.333-38.205 85.333-85.333v-213.333c0-188.513 152.82-341.333 341.333-341.333s341.333 152.82 341.333 341.333v213.333c0 47.128 38.205 85.333 85.333 85.333 56.889 0 56.889 85.333 0 85.333zM622.72 917.409c-22.899 39.475-65.084 63.773-110.72 63.773s-87.821-24.298-110.72-63.773c-16.5-28.444 4.023-64.076 36.907-64.076h147.627c32.884 0 53.407 35.631 36.907 64.076z",book="M810.667 682.667v-554.667h-533.333c-35.346 0-64 28.654-64 64v505.037c19.397-9.215 41.097-14.371 64-14.371h533.333zM810.667 768h-533.333c-35.346 0-64 28.654-64 64s28.654 64 64 64h533.333v-128zM277.333 42.667h576c23.564 0 42.667 19.103 42.667 42.667v853.333c0 23.564-19.103 42.667-42.667 42.667h-576c-82.475 0-149.333-66.859-149.333-149.333v-640c0-82.475 66.859-149.333 149.333-149.333z",check_circle="M853.336 472.588c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667l-0 39.704c-0.119 207.853-136.938 390.871-336.261 449.804s-413.668-20.256-526.798-194.625c-113.13-174.369-98.095-402.38 36.952-560.384s357.934-208.363 547.793-123.767c21.524 9.591 31.198 34.814 21.608 56.338s-34.814 31.198-56.338 21.608c-155.339-69.215-337.702-28.013-448.194 101.264s-122.794 315.83-30.233 458.496c92.561 142.665 267.934 207.457 431.017 159.238s275.025-197.96 275.122-367.997v-39.68zM469.336 537.262l439.163-439.163c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-469.333 469.333c-16.662 16.662-43.677 16.662-60.34 0l-128-128c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l97.83 97.83z",check="M384 707.66l-183.163-183.163c-16.662-16.662-43.677-16.662-60.34 0s-16.662 43.677 0 60.34l213.333 213.333c16.662 16.662 43.677 16.662 60.34 0l469.333-469.333c16.662-16.662 16.662-43.677 0-60.34s-43.677-16.662-60.34 0l-439.163 439.163z",cpu="M256 213.333c-23.564 0-42.667 19.103-42.667 42.667v512c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-512c0-23.564-19.103-42.667-42.667-42.667h-512zM128 554.667v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333v-85.333c0-70.692 57.308-128 128-128h85.333v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h170.667v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h85.333c70.692 0 128 57.308 128 128v85.333h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128c0 70.692-57.308 128-128 128h-85.333v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-170.667v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-85.333c-70.692 0-128-57.308-128-128v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM384 341.333c-23.564 0-42.667 19.103-42.667 42.667v256c0 23.564 19.103 42.667 42.667 42.667h256c23.564 0 42.667-19.103 42.667-42.667v-256c0-23.564-19.103-42.667-42.667-42.667h-256zM426.667 597.333v-170.667h170.667v170.667h-170.667z",credit_card="M938.667 384v-128c0-23.564-19.103-42.667-42.667-42.667h-768c-23.564 0-42.667 19.103-42.667 42.667v128h853.333zM938.667 469.333h-853.333v298.667c0 23.564 19.103 42.667 42.667 42.667h768c23.564 0 42.667-19.103 42.667-42.667v-298.667zM128 128h768c70.692 0 128 57.308 128 128v512c0 70.692-57.308 128-128 128h-768c-70.692 0-128-57.308-128-128v-512c-0-70.692 57.308-128 128-128z",database="M135.758 303.835v208.165c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-208.165c-84.941 44.139-220.154 68.529-372.364 68.529s-287.423-24.39-372.364-68.529zM42.667 186.182c0-116.678 208.511-186.182 465.455-186.182s465.455 69.504 465.455 186.182v651.636c0 116.914-207.484 186.182-465.455 186.182s-465.455-69.268-465.455-186.182v-651.636zM880.485 629.912c-84.767 44.020-219.728 68.27-372.364 68.27s-287.597-24.25-372.364-68.27v207.906c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-207.906zM508.121 279.273c205.771 0 372.364-55.531 372.364-93.091s-166.593-93.091-372.364-93.091c-205.771 0-372.364 55.531-372.364 93.091s166.593 93.091 372.364 93.091z",dollar_sign="M554.333 170.667H725c23.564 0 42.667 19.102 42.667 42.666C767.667 236.897 748.564 256 725 256H554.333v213.333h64c106.039 0 192 85.962 192 192 0 106.039-85.961 192-192 192h-64v128c0 23.564-19.102 42.667-42.666 42.667-23.564 0-42.667-19.103-42.667-42.667v-128H255.667c-23.564 0-42.667-19.102-42.667-42.666C213 787.103 232.103 768 255.667 768H469V554.667h-64c-106.039 0-192-85.962-192-192 0-106.039 85.961-192 192-192h64v-128C469 19.103 488.103 0 511.667 0s42.666 19.103 42.666 42.667v128zm0 384V768h64C677.243 768 725 720.244 725 661.333c0-58.91-47.756-106.666-106.667-106.666h-64zM469 469.333V256h-64c-58.91 0-106.667 47.756-106.667 106.667 0 58.91 47.757 106.666 106.667 106.666h64z",eye="M109.842 542.186c24.524 37.972 53.497 75.97 86.619 111.3 92.657 98.834 198.411 157.181 315.54 157.181s222.882-58.347 315.54-157.181c33.122-35.33 62.095-73.328 86.619-111.3 6.961-10.778 13.134-20.9 18.505-30.186-5.371-9.286-11.544-19.408-18.505-30.186-24.524-37.972-53.497-75.97-86.619-111.3-92.657-98.834-198.411-157.181-315.54-157.181s-222.882 58.347-315.54 157.181c-33.122 35.33-62.095 73.328-86.619 111.3-6.961 10.778-13.134 20.9-18.505 30.186 5.371 9.286 11.544 19.408 18.505 30.186zM4.504 492.919c5.998-11.995 17.254-32.007 33.654-57.4 27.143-42.028 59.17-84.030 96.048-123.367 107.343-114.499 233.589-184.152 377.794-184.152s270.451 69.653 377.794 184.152c36.878 39.337 68.905 81.339 96.048 123.367 16.4 25.393 27.656 45.405 33.654 57.4 6.006 12.012 6.006 26.15 0 38.162-5.998 11.995-17.254 32.007-33.654 57.4-27.143 42.028-59.17 84.030-96.048 123.367-107.343 114.499-233.589 184.152-377.794 184.152s-270.451-69.653-377.794-184.152c-36.878-39.337-68.905-81.339-96.048-123.367-16.4-25.393-27.656-45.405-33.654-57.4-6.006-12.012-6.006-26.15 0-38.162zM512 682.667c94.257 0 170.667-76.41 170.667-170.667s-76.41-170.667-170.667-170.667c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667zM512 597.333c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c47.128 0 85.333 38.205 85.333 85.333s-38.205 85.333-85.333 85.333z",file="M810.667 426.667h-256c-23.564 0-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667 19.103-42.667 42.667v682.667c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-426.667h42.667c23.564 0 42.667-19.103 42.667-42.667 0-5.891-1.194-11.503-3.353-16.608 2.229 5.408 3.353 10.95 3.353 16.608v469.333c0 70.692-57.308 128-128 128h-512c-70.692 0-128-57.308-128-128v-682.667c0-70.692 57.308-128 128-128h298.667c11.316 0 22.168 4.495 30.17 12.497l298.667 298.667c4.001 4.001 7.125 8.714 9.249 13.842zM597.333 188.34v152.994h152.994l-152.994-152.994z",image="M853.333 536.994v-323.66c0-23.564-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 18.296 11.516 33.902 27.694 39.966l454.136-454.136c16.662-16.662 43.677-16.662 60.34 0l140.497 140.497zM853.333 657.673l-170.667-170.667-366.327 366.327h494.327c23.564 0 42.667-19.103 42.667-42.667v-152.994zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128zM362.667 469.333c-58.91 0-106.667-47.756-106.667-106.667s47.756-106.667 106.667-106.667c58.91 0 106.667 47.756 106.667 106.667s-47.756 106.667-106.667 106.667zM362.667 384c11.782 0 21.333-9.551 21.333-21.333s-9.551-21.333-21.333-21.333c-11.782 0-21.333 9.551-21.333 21.333s9.551 21.333 21.333 21.333z",infrastructure="M128 42.667h768c47.128 0 85.333 38.205 85.333 85.333v768c0 47.128-38.205 85.333-85.333 85.333h-768c-47.128 0-85.333-38.205-85.333-85.333v-768c0-47.128 38.205-85.333 85.333-85.333zM128 128v768h768v-768h-768zM384 426.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM384 682.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM725.333 469.333v-170.667h-426.667v170.667h426.667zM725.333 554.667h-426.667v170.667h426.667v-170.667zM213.333 256c0-23.564 19.103-42.667 42.667-42.667h512c23.564 0 42.667 19.103 42.667 42.667v512c0 23.564-19.103 42.667-42.667 42.667h-512c-23.564 0-42.667-19.103-42.667-42.667v-512z",life_buoy="M272.312 812.028c65.693 52.549 149.021 83.972 239.688 83.972s173.995-31.423 239.688-83.972l-122.039-122.039c-33.725 22.337-74.168 35.345-117.649 35.345s-83.923-13.008-117.649-35.345l-122.039 122.039zM211.972 751.688l122.039-122.039c-22.337-33.725-35.345-74.168-35.345-117.649s13.008-83.923 35.345-117.649l-122.039-122.039c-52.549 65.693-83.972 149.021-83.972 239.688s31.423 173.995 83.972 239.688zM689.988 394.351c22.337 33.725 35.345 74.168 35.345 117.649s-13.008 83.923-35.345 117.649l122.039 122.039c52.549-65.693 83.972-149.021 83.972-239.688s-31.423-173.995-83.972-239.688l-122.039 122.039zM629.649 334.012l122.039-122.039c-65.693-52.549-149.021-83.972-239.688-83.972s-173.995 31.423-239.688 83.972l122.039 122.039c33.725-22.337 74.168-35.345 117.649-35.345s83.923 13.008 117.649 35.345zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z",lock="M213.333 512c-23.564 0-42.667 19.103-42.667 42.667v298.667c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-298.667c0-23.564-19.103-42.667-42.667-42.667h-597.333zM256 426.667v-128c0-141.385 114.615-256 256-256s256 114.615 256 256v128h42.667c70.692 0 128 57.308 128 128v298.667c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-298.667c0-70.692 57.308-128 128-128h42.667zM341.333 426.667h341.333v-128c0-94.257-76.41-170.667-170.667-170.667s-170.667 76.41-170.667 170.667v128z",logging="M753.778 384c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM896 213.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM896 554.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM753.778 725.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM128 298.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 469.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 810.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",message_circle="M195.462 828.538l162.246-54.082c10.792-3.597 22.574-2.736 32.729 2.393 44.268 22.36 93.191 33.947 142.88 33.818 121.182-0.047 231.942-68.543 286.199-177.103 22.36-44.268 33.947-93.191 33.818-142.786l0.065-19.094c-8.961-162.426-138.655-292.121-298.731-301.017l-21.445-0c-49.594-0.129-98.518 11.458-142.948 33.899-108.398 54.176-176.894 164.935-176.941 286.212-0.129 49.594 11.458 98.518 33.818 142.786 5.129 10.154 5.99 21.936 2.393 32.729l-54.082 162.246zM938.667 490.613c0.155 63.015-14.572 125.176-42.901 181.262-68.622 137.304-208.918 224.066-362.321 224.125-56.963 0.149-113.23-11.864-165.063-35.153l-226.889 75.63c-33.355 11.118-65.088-20.615-53.97-53.97l75.63-226.889c-23.288-51.832-35.301-108.091-35.153-164.968 0.059-153.498 86.821-293.793 223.964-362.334 56.265-28.419 118.447-43.147 181.37-42.982l23.684 0.065c205.856 11.357 370.228 175.729 381.65 383.935v21.279z",minus="M213.333 554.667h597.333c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667z",play_circle="M512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384zM450.334 305.833l256 170.667c25.333 16.888 25.333 54.113 0 71.002l-256 170.667c-28.354 18.903-66.334-1.423-66.334-35.501v-341.333c0-34.078 37.98-54.404 66.334-35.501zM469.333 421.057v181.887l136.415-90.943-136.415-90.943z",plug="M428.753 188.522l-33.346 33.346c-106.113 106.113-106.113 278.156 0 384.269s278.156 106.113 384.269 0l33.346-33.346-384.269-384.269zM746.33 385.42l96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 96.861 96.861c16.662 16.662 16.662 43.677 0 60.34l-63.516 63.516c-129.228 129.228-332.87 138.69-472.995 28.386l-214.915 214.915c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l214.915-214.915c-110.304-140.125-100.842-343.767 28.386-472.995l63.516-63.516c16.662-16.662 43.677-16.662 60.34 0l96.861 96.861 96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 130.207 130.207z",plus="M554.667 469.333h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256v-256c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256z",refresh_cw="M85.333 695.973v157.361c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256c0-23.564 19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-148.298l120.449 113.198c82.851 82.893 202.437 117.483 316.746 91.619s207.356-108.565 246.454-219.050c7.861-22.214 32.242-33.85 54.456-25.989s33.85 32.242 25.989 54.456c-48.871 138.107-165.18 241.483-308.067 273.813s-292.369-10.908-394.973-113.593l-126.090-118.481zM938.667 328.027v-157.361c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256c0 23.564-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h148.298l-120.449-113.198c-82.851-82.893-202.437-117.483-316.746-91.619s-207.356 108.565-246.454 219.050c-7.861 22.214-32.242 33.85-54.456 25.989s-33.85-32.242-25.989-54.456c48.871-138.107 165.18-241.483 308.067-273.813s292.369 10.908 394.973 113.593l126.090 118.481z",search="M672.504 732.844c-61.751 48.737-139.731 77.823-224.504 77.823-200.295 0-362.667-162.371-362.667-362.667s162.371-362.667 362.667-362.667c200.295 0 362.667 162.371 362.667 362.667 0 84.773-29.086 162.753-77.823 224.504l193.326 193.326c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-193.326-193.326zM448 725.333c153.167 0 277.333-124.166 277.333-277.333s-124.166-277.333-277.333-277.333c-153.167 0-277.333 124.166-277.333 277.333s124.166 277.333 277.333 277.333z",shield="M531.081 976.829c-12.012 6.006-26.15 6.006-38.162 0-11.813-5.907-31.646-16.886-56.866-32.648-41.818-26.136-83.629-56.449-122.816-90.738-115.018-100.641-185.237-214.747-185.237-341.443v-341.333c0-19.578 13.325-36.644 32.318-41.393l341.333-85.333c6.794-1.699 13.902-1.699 20.696 0l341.333 85.333c18.994 4.748 32.318 21.814 32.318 41.393v341.333c0 126.696-70.219 240.802-185.237 341.443-39.187 34.289-80.998 64.602-122.816 90.738-25.219 15.762-45.052 26.741-56.866 32.648zM542.72 871.819c38.182-23.864 76.371-51.551 111.85-82.595 98.315-86.026 156.096-179.92 156.096-277.223v-308.020l-298.667-74.667-298.667 74.667v308.020c0 97.304 57.781 191.198 156.096 277.223 35.48 31.045 73.669 58.732 111.85 82.595 10.971 6.857 21.274 12.975 30.72 18.326 9.446-5.352 19.749-11.47 30.72-18.326z",shopping_cart="M341.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM341.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM853.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM853.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM278.906 213.333h702.427c26.929 0 47.123 24.639 41.836 51.044l-71.667 357.908c-12.079 60.815-66.009 104.228-127.182 103.048l-450.625-0.002c-64.673 0.549-119.595-47.233-127.995-111.324l-64.858-491.555c-2.781-21.214-20.845-37.088-42.175-37.12h-96c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667l96.065 0c64.186 0.097 118.376 47.718 126.715 111.325l13.459 102.008zM290.165 298.667l40.139 304.215c2.802 21.376 21.109 37.303 43.029 37.118l451.804 0.008c20.664 0.396 38.64-14.075 42.68-34.412l61.459-306.929h-639.111z",slash="M211.972 272.312c-52.549 65.693-83.972 149.021-83.972 239.688 0 212.077 171.923 384 384 384 90.667 0 173.995-31.423 239.688-83.972l-539.716-539.716zM272.312 211.972l539.716 539.716c52.549-65.693 83.972-149.021 83.972-239.688 0-212.077-171.923-384-384-384-90.667 0-173.995 31.423-239.688 83.972zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333z",sliders="M810.667 725.333h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM469.333 298.667v-170.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM128 640h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256zM213.333 426.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-298.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v298.667zM554.667 896c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384zM896 512c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384z",square="M213.333 170.667c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-597.333c0-23.564-19.103-42.667-42.667-42.667h-597.333zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128z",tool="M763.502 0.571c-77.008-4.934-155.9 22.112-214.627 80.818-72.225 72.195-93.623 174.034-69.609 266.373l-438.681 438.881c-54.114 54.090-54.112 142.699 0 196.789 54.11 54.092 142.752 54.090 196.862 0l439.044-438.88c92.345 23.959 194.278 2.585 266.472-69.583 78.305-78.274 99.693-191.946 64.895-289.93-3.996-11.212-13.447-19.605-25.057-22.249s-23.765 0.827-32.226 9.202l-97.888 97.851c-27.694 27.684-70.919 27.684-98.613 0s-27.694-70.53 0-98.214l97.888-97.851c8.554-8.448 12.14-20.712 9.485-32.435s-11.176-21.247-22.536-25.188c-24.506-8.696-49.74-13.939-75.41-15.584zM756.976 70.154l-52.207 52.187c-54.11 54.091-54.11 142.699 0 196.79s142.752 54.091 196.862 0l52.207-51.825c3.171 56.973-16.456 114.665-60.182 158.374-59.043 59.022-143.928 75.044-217.528 48.926-12.612-4.543-26.714-1.442-36.255 7.973l-451.734 451.565c-27.695 27.685-70.919 27.684-98.613 0s-27.695-70.892 0-98.576l451.734-451.202c9.546-9.458 12.791-23.565 8.338-36.241-26.128-73.573-10.465-158.425 48.581-217.447 43.729-43.713 101.797-63.696 158.795-60.523z",worker="M177.515 966.904c-11.762 14.448-33.168 16.881-47.74 5.49l-29.967-23.425c-14.604-11.416-17.454-32.664-6.214-47.66l0.971-1.295c11.172-14.906 12.835-40.058 3.596-56.388l-4.159-7.35c-9.186-16.236-31.543-27.87-50.186-25.96l-1.61 0.165c-18.531 1.899-35.393-11.516-37.652-29.874l-4.645-37.751c-2.264-18.398 10.74-35.437 29.294-38.094l1.603-0.23c18.442-2.641 37.406-19.254 42.362-37.123l2.376-8.566c4.954-17.862-2.656-41.806-17.191-53.639l-1.256-1.022c-14.448-11.762-16.881-33.168-5.49-47.74l23.425-29.967c11.416-14.604 32.664-17.454 47.66-6.214l1.295 0.971c14.906 11.172 40.058 12.835 56.388 3.596l7.35-4.159c16.236-9.186 27.87-31.543 25.96-50.186l-0.165-1.61c-1.899-18.531 11.516-35.393 29.874-37.652l37.751-4.645c18.398-2.264 35.437 10.74 38.094 29.294l0.23 1.603c2.641 18.442 19.254 37.406 37.123 42.362l8.566 2.376c17.862 4.953 41.806-2.656 53.639-17.191l1.022-1.256c11.762-14.448 33.168-16.881 47.74-5.49l29.967 23.425c14.604 11.416 17.454 32.664 6.214 47.66l-0.971 1.295c-11.172 14.906-12.835 40.058-3.596 56.388l4.159 7.35c9.186 16.236 31.543 27.87 50.186 25.96l1.61-0.165c18.531-1.899 35.393 11.516 37.652 29.874l4.645 37.751c2.264 18.398-10.74 35.437-29.294 38.094l-1.603 0.23c-18.442 2.641-37.406 19.254-42.362 37.123l-2.376 8.566c-4.953 17.862 2.656 41.806 17.191 53.639l1.256 1.022c14.448 11.762 16.881 33.168 5.49 47.74l-23.425 29.967c-11.416 14.604-32.664 17.454-47.66 6.214l-1.295-0.971c-14.906-11.172-40.058-12.835-56.388-3.596l-7.35 4.159c-16.236 9.186-27.87 31.543-25.96 50.186l0.165 1.61c1.899 18.531-11.516 35.393-29.874 37.652l-37.751 4.645c-18.398 2.264-35.437-10.74-38.094-29.294l-0.23-1.603c-2.641-18.442-19.254-37.406-37.123-42.362l-8.566-2.376c-17.862-4.953-41.806 2.656-53.639 17.191l-1.022 1.256zM314.266 852.379c70.166-8.615 120.062-72.48 111.447-142.645s-72.48-120.062-142.645-111.447c-70.166 8.615-120.062 72.48-111.447 142.645s72.48 120.062 142.645 111.447zM638.981 554.748c-9.637 15.944-30.496 21.333-46.511 12.081l-32.935-19.026c-16.051-9.272-21.83-29.917-12.787-46.332l0.781-1.418c8.989-16.316 7.135-41.455-4.287-56.34l-5.141-6.7c-11.356-14.8-35.115-23.209-53.31-18.723l-1.572 0.388c-18.086 4.459-36.652-6.478-41.443-24.343l-9.854-36.737c-4.802-17.904 5.704-36.587 23.707-41.8l1.555-0.45c17.895-5.182 34.362-24.272 36.783-42.658l1.16-8.814c2.419-18.377-8.448-41.029-24.489-50.724l-1.386-0.837c-15.944-9.637-21.333-30.496-12.081-46.511l19.026-32.935c9.272-16.051 29.917-21.83 46.332-12.787l1.418 0.781c16.316 8.989 41.455 7.135 56.34-4.287l6.7-5.141c14.8-11.356 23.209-35.115 18.723-53.31l-0.388-1.572c-4.459-18.086 6.478-36.652 24.343-41.443l36.737-9.854c17.904-4.802 36.587 5.704 41.8 23.707l0.45 1.555c5.182 17.895 24.272 34.362 42.658 36.783l8.814 1.16c18.377 2.419 41.029-8.448 50.724-24.489l0.837-1.386c9.637-15.944 30.496-21.333 46.511-12.081l32.935 19.026c16.051 9.272 21.83 29.917 12.787 46.332l-0.781 1.418c-8.989 16.316-7.135 41.455 4.287 56.34l5.141 6.7c11.356 14.8 35.115 23.209 53.31 18.723l1.572-0.388c18.086-4.459 36.652 6.478 41.443 24.343l9.854 36.737c4.802 17.904-5.704 36.587-23.707 41.8l-1.555 0.45c-17.895 5.182-34.362 24.272-36.783 42.658l-1.16 8.814c-2.419 18.377 8.448 41.029 24.489 50.724l1.386 0.837c15.944 9.637 21.333 30.496 12.081 46.511l-19.026 32.935c-9.272 16.051-29.917 21.83-46.332 12.787l-1.418-0.781c-16.316-8.989-41.455-7.135-56.34 4.287l-6.7 5.141c-14.8 11.356-23.209 35.115-18.723 53.31l0.388 1.572c4.459 18.086-6.478 36.652-24.343 41.443l-36.737 9.854c-17.904 4.802-36.587-5.704-41.8-23.707l-0.45-1.555c-5.182-17.895-24.272-34.362-42.658-36.783l-8.814-1.16c-18.377-2.419-41.029 8.448-50.724 24.489l-0.837 1.386zM758.462 422.305c68.284-18.297 108.806-88.484 90.51-156.767s-88.484-108.806-156.767-90.51c-68.284 18.297-108.806 88.484-90.51 156.767s88.484 108.806 156.767 90.51z",x="M572.34 512l225.83 225.83c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-225.83-225.83-225.83 225.83c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l225.83-225.83-225.83-225.83c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l225.83 225.83 225.83-225.83c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-225.83 225.83z";export{check as a,sliders as b,arrow_right as c,book as d,arrow_up_right as e,life_buoy as f,ai as g,plug as h,shield as i,file as j,database as k,infrastructure as l,logging as m,cpu as n,activity as o,message_circle as p,image as q,credit_card as r,play_circle as s,search as t,dollar_sign as u,worker as v,square as w,tool as x,shopping_cart as y,check_circle as z,alert_triangle as A,slash as B,bell as C,x as D,minus as E,plus as F,lock as G,eye as H,refresh_cw as I}; | ||
var activity="M640 761.076l-215.523-646.569c-12.966-38.899-67.988-38.899-80.954 0l-118.275 354.826h-139.914c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667h170.667c18.365 0 34.67-11.752 40.477-29.174l87.523-262.569 215.523 646.569c12.966 38.899 67.988 38.899 80.954 0l118.275-354.826h139.914c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-170.667c-18.365 0-34.67 11.752-40.477 29.174l-87.523 262.569z",ai="M535.429 460.129c16.838-95.227 100.004-167.558 200.063-167.558 112.21 0 203.175 90.964 203.175 203.175s-90.964 203.175-203.175 203.175c-96.666 0-177.564-67.507-198.123-157.95-1.655 0.205-3.341 0.311-5.052 0.311h-58.19l-145.577 188.417c0.391 3.231 0.592 6.521 0.592 9.857 0 44.884-36.386 81.27-81.27 81.27s-81.27-36.386-81.27-81.27c0-44.884 36.386-81.27 81.27-81.27 10.227 0 20.014 1.889 29.029 5.338l94.525-122.341h-125.724c-3.744 0-7.369-0.506-10.811-1.454-14.476 22.378-39.652 37.188-68.287 37.188-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c32.23 0 60.078 18.761 73.218 45.958 1.92-0.278 3.883-0.422 5.88-0.422h129.776l-105.627-129.812c-6.99 1.959-14.362 3.007-21.978 3.007-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c44.884 0 81.27 36.386 81.27 81.27 0 6.714-0.814 13.239-2.349 19.479l153.459 188.596h52.065c1.047 0 2.084 0.040 3.111 0.117zM735.492 617.651c67.326 0 121.905-54.579 121.905-121.905s-54.579-121.905-121.905-121.905c-67.326 0-121.905 54.579-121.905 121.905s54.579 121.905 121.905 121.905z",alert_triangle="M421.511 147.152c23.327-38.457 64.821-61.819 109.562-61.819s86.236 23.362 109.562 61.819l361.733 603.896c22.743 39.386 22.879 87.881 0.357 127.394s-64.319 64.106-110.266 64.609l-723.242-0.003c-45.478-0.5-87.275-25.094-109.797-64.606s-22.386-88.008 0.703-127.983l361.387-603.307zM494.644 191.121l-360.969 602.598c-7.581 13.129-7.626 29.294-0.119 42.465s21.44 21.369 36.13 21.533l722.304 0.003c15.159-0.167 29.092-8.365 36.599-21.535s7.462-29.336 0.228-41.875l-361.264-603.104c-7.735-12.751-21.566-20.539-36.48-20.539-14.881 0-28.685 7.753-36.429 20.455zM488.406 388.384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM531.073 772.384c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",arrow_right="M750.327 469.333l-183.163-183.163c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l256 256c16.662 16.662 16.662 43.677 0 60.34l-256 256c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l183.163-183.163h-579.66c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h579.66z",arrow_up_right="M664.994 298.667h-280.994c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h384c23.564 0 42.667 19.103 42.667 42.667v384c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-280.994l-439.163 439.163c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l439.163-439.163z",bell="M768 597.333v-213.333c0-141.385-114.615-256-256-256s-256 114.615-256 256v213.333c0 31.086-8.311 60.231-22.832 85.333h557.664c-14.521-25.103-22.832-54.247-22.832-85.333zM938.667 768h-853.333c-56.889 0-56.889-85.333 0-85.333 47.128 0 85.333-38.205 85.333-85.333v-213.333c0-188.513 152.82-341.333 341.333-341.333s341.333 152.82 341.333 341.333v213.333c0 47.128 38.205 85.333 85.333 85.333 56.889 0 56.889 85.333 0 85.333zM622.72 917.409c-22.899 39.475-65.084 63.773-110.72 63.773s-87.821-24.298-110.72-63.773c-16.5-28.444 4.023-64.076 36.907-64.076h147.627c32.884 0 53.407 35.631 36.907 64.076z",book="M810.667 682.667v-554.667h-533.333c-35.346 0-64 28.654-64 64v505.037c19.397-9.215 41.097-14.371 64-14.371h533.333zM810.667 768h-533.333c-35.346 0-64 28.654-64 64s28.654 64 64 64h533.333v-128zM277.333 42.667h576c23.564 0 42.667 19.103 42.667 42.667v853.333c0 23.564-19.103 42.667-42.667 42.667h-576c-82.475 0-149.333-66.859-149.333-149.333v-640c0-82.475 66.859-149.333 149.333-149.333z",check_circle="M853.336 472.588c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667l-0 39.704c-0.119 207.853-136.938 390.871-336.261 449.804s-413.668-20.256-526.798-194.625c-113.13-174.369-98.095-402.38 36.952-560.384s357.934-208.363 547.793-123.767c21.524 9.591 31.198 34.814 21.608 56.338s-34.814 31.198-56.338 21.608c-155.339-69.215-337.702-28.013-448.194 101.264s-122.794 315.83-30.233 458.496c92.561 142.665 267.934 207.457 431.017 159.238s275.025-197.96 275.122-367.997v-39.68zM469.336 537.262l439.163-439.163c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-469.333 469.333c-16.662 16.662-43.677 16.662-60.34 0l-128-128c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l97.83 97.83z",check="M384 707.66l-183.163-183.163c-16.662-16.662-43.677-16.662-60.34 0s-16.662 43.677 0 60.34l213.333 213.333c16.662 16.662 43.677 16.662 60.34 0l469.333-469.333c16.662-16.662 16.662-43.677 0-60.34s-43.677-16.662-60.34 0l-439.163 439.163z",cpu="M256 213.333c-23.564 0-42.667 19.103-42.667 42.667v512c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-512c0-23.564-19.103-42.667-42.667-42.667h-512zM128 554.667v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333v-85.333c0-70.692 57.308-128 128-128h85.333v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h170.667v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h85.333c70.692 0 128 57.308 128 128v85.333h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128c0 70.692-57.308 128-128 128h-85.333v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-170.667v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-85.333c-70.692 0-128-57.308-128-128v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM384 341.333c-23.564 0-42.667 19.103-42.667 42.667v256c0 23.564 19.103 42.667 42.667 42.667h256c23.564 0 42.667-19.103 42.667-42.667v-256c0-23.564-19.103-42.667-42.667-42.667h-256zM426.667 597.333v-170.667h170.667v170.667h-170.667z",credit_card="M938.667 384v-128c0-23.564-19.103-42.667-42.667-42.667h-768c-23.564 0-42.667 19.103-42.667 42.667v128h853.333zM938.667 469.333h-853.333v298.667c0 23.564 19.103 42.667 42.667 42.667h768c23.564 0 42.667-19.103 42.667-42.667v-298.667zM128 128h768c70.692 0 128 57.308 128 128v512c0 70.692-57.308 128-128 128h-768c-70.692 0-128-57.308-128-128v-512c-0-70.692 57.308-128 128-128z",database="M135.758 303.835v208.165c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-208.165c-84.941 44.139-220.154 68.529-372.364 68.529s-287.423-24.39-372.364-68.529zM42.667 186.182c0-116.678 208.511-186.182 465.455-186.182s465.455 69.504 465.455 186.182v651.636c0 116.914-207.484 186.182-465.455 186.182s-465.455-69.268-465.455-186.182v-651.636zM880.485 629.912c-84.767 44.020-219.728 68.27-372.364 68.27s-287.597-24.25-372.364-68.27v207.906c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-207.906zM508.121 279.273c205.771 0 372.364-55.531 372.364-93.091s-166.593-93.091-372.364-93.091c-205.771 0-372.364 55.531-372.364 93.091s166.593 93.091 372.364 93.091z",dollar_sign="M554.333 170.667H725c23.564 0 42.667 19.102 42.667 42.666C767.667 236.897 748.564 256 725 256H554.333v213.333h64c106.039 0 192 85.962 192 192 0 106.039-85.961 192-192 192h-64v128c0 23.564-19.102 42.667-42.666 42.667-23.564 0-42.667-19.103-42.667-42.667v-128H255.667c-23.564 0-42.667-19.102-42.667-42.666C213 787.103 232.103 768 255.667 768H469V554.667h-64c-106.039 0-192-85.962-192-192 0-106.039 85.961-192 192-192h64v-128C469 19.103 488.103 0 511.667 0s42.666 19.103 42.666 42.667v128zm0 384V768h64C677.243 768 725 720.244 725 661.333c0-58.91-47.756-106.666-106.667-106.666h-64zM469 469.333V256h-64c-58.91 0-106.667 47.756-106.667 106.667 0 58.91 47.757 106.666 106.667 106.666h64z",eye="M109.842 542.186c24.524 37.972 53.497 75.97 86.619 111.3 92.657 98.834 198.411 157.181 315.54 157.181s222.882-58.347 315.54-157.181c33.122-35.33 62.095-73.328 86.619-111.3 6.961-10.778 13.134-20.9 18.505-30.186-5.371-9.286-11.544-19.408-18.505-30.186-24.524-37.972-53.497-75.97-86.619-111.3-92.657-98.834-198.411-157.181-315.54-157.181s-222.882 58.347-315.54 157.181c-33.122 35.33-62.095 73.328-86.619 111.3-6.961 10.778-13.134 20.9-18.505 30.186 5.371 9.286 11.544 19.408 18.505 30.186zM4.504 492.919c5.998-11.995 17.254-32.007 33.654-57.4 27.143-42.028 59.17-84.030 96.048-123.367 107.343-114.499 233.589-184.152 377.794-184.152s270.451 69.653 377.794 184.152c36.878 39.337 68.905 81.339 96.048 123.367 16.4 25.393 27.656 45.405 33.654 57.4 6.006 12.012 6.006 26.15 0 38.162-5.998 11.995-17.254 32.007-33.654 57.4-27.143 42.028-59.17 84.030-96.048 123.367-107.343 114.499-233.589 184.152-377.794 184.152s-270.451-69.653-377.794-184.152c-36.878-39.337-68.905-81.339-96.048-123.367-16.4-25.393-27.656-45.405-33.654-57.4-6.006-12.012-6.006-26.15 0-38.162zM512 682.667c94.257 0 170.667-76.41 170.667-170.667s-76.41-170.667-170.667-170.667c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667zM512 597.333c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c47.128 0 85.333 38.205 85.333 85.333s-38.205 85.333-85.333 85.333z",file="M810.667 426.667h-256c-23.564 0-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667 19.103-42.667 42.667v682.667c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-426.667h42.667c23.564 0 42.667-19.103 42.667-42.667 0-5.891-1.194-11.503-3.353-16.608 2.229 5.408 3.353 10.95 3.353 16.608v469.333c0 70.692-57.308 128-128 128h-512c-70.692 0-128-57.308-128-128v-682.667c0-70.692 57.308-128 128-128h298.667c11.316 0 22.168 4.495 30.17 12.497l298.667 298.667c4.001 4.001 7.125 8.714 9.249 13.842zM597.333 188.34v152.994h152.994l-152.994-152.994z",image="M853.333 536.994v-323.66c0-23.564-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 18.296 11.516 33.902 27.694 39.966l454.136-454.136c16.662-16.662 43.677-16.662 60.34 0l140.497 140.497zM853.333 657.673l-170.667-170.667-366.327 366.327h494.327c23.564 0 42.667-19.103 42.667-42.667v-152.994zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128zM362.667 469.333c-58.91 0-106.667-47.756-106.667-106.667s47.756-106.667 106.667-106.667c58.91 0 106.667 47.756 106.667 106.667s-47.756 106.667-106.667 106.667zM362.667 384c11.782 0 21.333-9.551 21.333-21.333s-9.551-21.333-21.333-21.333c-11.782 0-21.333 9.551-21.333 21.333s9.551 21.333 21.333 21.333z",infrastructure="M128 42.667h768c47.128 0 85.333 38.205 85.333 85.333v768c0 47.128-38.205 85.333-85.333 85.333h-768c-47.128 0-85.333-38.205-85.333-85.333v-768c0-47.128 38.205-85.333 85.333-85.333zM128 128v768h768v-768h-768zM384 426.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM384 682.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM725.333 469.333v-170.667h-426.667v170.667h426.667zM725.333 554.667h-426.667v170.667h426.667v-170.667zM213.333 256c0-23.564 19.103-42.667 42.667-42.667h512c23.564 0 42.667 19.103 42.667 42.667v512c0 23.564-19.103 42.667-42.667 42.667h-512c-23.564 0-42.667-19.103-42.667-42.667v-512z",life_buoy="M272.312 812.028c65.693 52.549 149.021 83.972 239.688 83.972s173.995-31.423 239.688-83.972l-122.039-122.039c-33.725 22.337-74.168 35.345-117.649 35.345s-83.923-13.008-117.649-35.345l-122.039 122.039zM211.972 751.688l122.039-122.039c-22.337-33.725-35.345-74.168-35.345-117.649s13.008-83.923 35.345-117.649l-122.039-122.039c-52.549 65.693-83.972 149.021-83.972 239.688s31.423 173.995 83.972 239.688zM689.988 394.351c22.337 33.725 35.345 74.168 35.345 117.649s-13.008 83.923-35.345 117.649l122.039 122.039c52.549-65.693 83.972-149.021 83.972-239.688s-31.423-173.995-83.972-239.688l-122.039 122.039zM629.649 334.012l122.039-122.039c-65.693-52.549-149.021-83.972-239.688-83.972s-173.995 31.423-239.688 83.972l122.039 122.039c33.725-22.337 74.168-35.345 117.649-35.345s83.923 13.008 117.649 35.345zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z",lock="M213.333 512c-23.564 0-42.667 19.103-42.667 42.667v298.667c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-298.667c0-23.564-19.103-42.667-42.667-42.667h-597.333zM256 426.667v-128c0-141.385 114.615-256 256-256s256 114.615 256 256v128h42.667c70.692 0 128 57.308 128 128v298.667c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-298.667c0-70.692 57.308-128 128-128h42.667zM341.333 426.667h341.333v-128c0-94.257-76.41-170.667-170.667-170.667s-170.667 76.41-170.667 170.667v128z",logging="M753.778 384c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM896 213.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM896 554.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM753.778 725.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM128 298.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 469.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 810.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",message_circle="M195.462 828.538l162.246-54.082c10.792-3.597 22.574-2.736 32.729 2.393 44.268 22.36 93.191 33.947 142.88 33.818 121.182-0.047 231.942-68.543 286.199-177.103 22.36-44.268 33.947-93.191 33.818-142.786l0.065-19.094c-8.961-162.426-138.655-292.121-298.731-301.017l-21.445-0c-49.594-0.129-98.518 11.458-142.948 33.899-108.398 54.176-176.894 164.935-176.941 286.212-0.129 49.594 11.458 98.518 33.818 142.786 5.129 10.154 5.99 21.936 2.393 32.729l-54.082 162.246zM938.667 490.613c0.155 63.015-14.572 125.176-42.901 181.262-68.622 137.304-208.918 224.066-362.321 224.125-56.963 0.149-113.23-11.864-165.063-35.153l-226.889 75.63c-33.355 11.118-65.088-20.615-53.97-53.97l75.63-226.889c-23.288-51.832-35.301-108.091-35.153-164.968 0.059-153.498 86.821-293.793 223.964-362.334 56.265-28.419 118.447-43.147 181.37-42.982l23.684 0.065c205.856 11.357 370.228 175.729 381.65 383.935v21.279z",minus="M213.333 554.667h597.333c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667z",play_circle="M512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384zM450.334 305.833l256 170.667c25.333 16.888 25.333 54.113 0 71.002l-256 170.667c-28.354 18.903-66.334-1.423-66.334-35.501v-341.333c0-34.078 37.98-54.404 66.334-35.501zM469.333 421.057v181.887l136.415-90.943-136.415-90.943z",plug="M428.753 188.522l-33.346 33.346c-106.113 106.113-106.113 278.156 0 384.269s278.156 106.113 384.269 0l33.346-33.346-384.269-384.269zM746.33 385.42l96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 96.861 96.861c16.662 16.662 16.662 43.677 0 60.34l-63.516 63.516c-129.228 129.228-332.87 138.69-472.995 28.386l-214.915 214.915c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l214.915-214.915c-110.304-140.125-100.842-343.767 28.386-472.995l63.516-63.516c16.662-16.662 43.677-16.662 60.34 0l96.861 96.861 96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 130.207 130.207z",plus="M554.667 469.333h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256v-256c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256z",refresh_cw="M85.333 695.973v157.361c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256c0-23.564 19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-148.298l120.449 113.198c82.851 82.893 202.437 117.483 316.746 91.619s207.356-108.565 246.454-219.050c7.861-22.214 32.242-33.85 54.456-25.989s33.85 32.242 25.989 54.456c-48.871 138.107-165.18 241.483-308.067 273.813s-292.369-10.908-394.973-113.593l-126.090-118.481zM938.667 328.027v-157.361c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256c0 23.564-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h148.298l-120.449-113.198c-82.851-82.893-202.437-117.483-316.746-91.619s-207.356 108.565-246.454 219.050c-7.861 22.214-32.242 33.85-54.456 25.989s-33.85-32.242-25.989-54.456c48.871-138.107 165.18-241.483 308.067-273.813s292.369 10.908 394.973 113.593l126.090 118.481z",search="M672.504 732.844c-61.751 48.737-139.731 77.823-224.504 77.823-200.295 0-362.667-162.371-362.667-362.667s162.371-362.667 362.667-362.667c200.295 0 362.667 162.371 362.667 362.667 0 84.773-29.086 162.753-77.823 224.504l193.326 193.326c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-193.326-193.326zM448 725.333c153.167 0 277.333-124.166 277.333-277.333s-124.166-277.333-277.333-277.333c-153.167 0-277.333 124.166-277.333 277.333s124.166 277.333 277.333 277.333z",shield="M531.081 976.829c-12.012 6.006-26.15 6.006-38.162 0-11.813-5.907-31.646-16.886-56.866-32.648-41.818-26.136-83.629-56.449-122.816-90.738-115.018-100.641-185.237-214.747-185.237-341.443v-341.333c0-19.578 13.325-36.644 32.318-41.393l341.333-85.333c6.794-1.699 13.902-1.699 20.696 0l341.333 85.333c18.994 4.748 32.318 21.814 32.318 41.393v341.333c0 126.696-70.219 240.802-185.237 341.443-39.187 34.289-80.998 64.602-122.816 90.738-25.219 15.762-45.052 26.741-56.866 32.648zM542.72 871.819c38.182-23.864 76.371-51.551 111.85-82.595 98.315-86.026 156.096-179.92 156.096-277.223v-308.020l-298.667-74.667-298.667 74.667v308.020c0 97.304 57.781 191.198 156.096 277.223 35.48 31.045 73.669 58.732 111.85 82.595 10.971 6.857 21.274 12.975 30.72 18.326 9.446-5.352 19.749-11.47 30.72-18.326z",shopping_cart="M341.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM341.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM853.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM853.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM278.906 213.333h702.427c26.929 0 47.123 24.639 41.836 51.044l-71.667 357.908c-12.079 60.815-66.009 104.228-127.182 103.048l-450.625-0.002c-64.673 0.549-119.595-47.233-127.995-111.324l-64.858-491.555c-2.781-21.214-20.845-37.088-42.175-37.12h-96c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667l96.065 0c64.186 0.097 118.376 47.718 126.715 111.325l13.459 102.008zM290.165 298.667l40.139 304.215c2.802 21.376 21.109 37.303 43.029 37.118l451.804 0.008c20.664 0.396 38.64-14.075 42.68-34.412l61.459-306.929h-639.111z",slash="M211.972 272.312c-52.549 65.693-83.972 149.021-83.972 239.688 0 212.077 171.923 384 384 384 90.667 0 173.995-31.423 239.688-83.972l-539.716-539.716zM272.312 211.972l539.716 539.716c52.549-65.693 83.972-149.021 83.972-239.688 0-212.077-171.923-384-384-384-90.667 0-173.995 31.423-239.688 83.972zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333z",sliders="M810.667 725.333h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM469.333 298.667v-170.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM128 640h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256zM213.333 426.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-298.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v298.667zM554.667 896c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384zM896 512c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384z",square="M213.333 170.667c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-597.333c0-23.564-19.103-42.667-42.667-42.667h-597.333zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128z",tool="M763.502 0.571c-77.008-4.934-155.9 22.112-214.627 80.818-72.225 72.195-93.623 174.034-69.609 266.373l-438.681 438.881c-54.114 54.090-54.112 142.699 0 196.789 54.11 54.092 142.752 54.090 196.862 0l439.044-438.88c92.345 23.959 194.278 2.585 266.472-69.583 78.305-78.274 99.693-191.946 64.895-289.93-3.996-11.212-13.447-19.605-25.057-22.249s-23.765 0.827-32.226 9.202l-97.888 97.851c-27.694 27.684-70.919 27.684-98.613 0s-27.694-70.53 0-98.214l97.888-97.851c8.554-8.448 12.14-20.712 9.485-32.435s-11.176-21.247-22.536-25.188c-24.506-8.696-49.74-13.939-75.41-15.584zM756.976 70.154l-52.207 52.187c-54.11 54.091-54.11 142.699 0 196.79s142.752 54.091 196.862 0l52.207-51.825c3.171 56.973-16.456 114.665-60.182 158.374-59.043 59.022-143.928 75.044-217.528 48.926-12.612-4.543-26.714-1.442-36.255 7.973l-451.734 451.565c-27.695 27.685-70.919 27.684-98.613 0s-27.695-70.892 0-98.576l451.734-451.202c9.546-9.458 12.791-23.565 8.338-36.241-26.128-73.573-10.465-158.425 48.581-217.447 43.729-43.713 101.797-63.696 158.795-60.523z",worker="M177.515 966.904c-11.762 14.448-33.168 16.881-47.74 5.49l-29.967-23.425c-14.604-11.416-17.454-32.664-6.214-47.66l0.971-1.295c11.172-14.906 12.835-40.058 3.596-56.388l-4.159-7.35c-9.186-16.236-31.543-27.87-50.186-25.96l-1.61 0.165c-18.531 1.899-35.393-11.516-37.652-29.874l-4.645-37.751c-2.264-18.398 10.74-35.437 29.294-38.094l1.603-0.23c18.442-2.641 37.406-19.254 42.362-37.123l2.376-8.566c4.954-17.862-2.656-41.806-17.191-53.639l-1.256-1.022c-14.448-11.762-16.881-33.168-5.49-47.74l23.425-29.967c11.416-14.604 32.664-17.454 47.66-6.214l1.295 0.971c14.906 11.172 40.058 12.835 56.388 3.596l7.35-4.159c16.236-9.186 27.87-31.543 25.96-50.186l-0.165-1.61c-1.899-18.531 11.516-35.393 29.874-37.652l37.751-4.645c18.398-2.264 35.437 10.74 38.094 29.294l0.23 1.603c2.641 18.442 19.254 37.406 37.123 42.362l8.566 2.376c17.862 4.953 41.806-2.656 53.639-17.191l1.022-1.256c11.762-14.448 33.168-16.881 47.74-5.49l29.967 23.425c14.604 11.416 17.454 32.664 6.214 47.66l-0.971 1.295c-11.172 14.906-12.835 40.058-3.596 56.388l4.159 7.35c9.186 16.236 31.543 27.87 50.186 25.96l1.61-0.165c18.531-1.899 35.393 11.516 37.652 29.874l4.645 37.751c2.264 18.398-10.74 35.437-29.294 38.094l-1.603 0.23c-18.442 2.641-37.406 19.254-42.362 37.123l-2.376 8.566c-4.953 17.862 2.656 41.806 17.191 53.639l1.256 1.022c14.448 11.762 16.881 33.168 5.49 47.74l-23.425 29.967c-11.416 14.604-32.664 17.454-47.66 6.214l-1.295-0.971c-14.906-11.172-40.058-12.835-56.388-3.596l-7.35 4.159c-16.236 9.186-27.87 31.543-25.96 50.186l0.165 1.61c1.899 18.531-11.516 35.393-29.874 37.652l-37.751 4.645c-18.398 2.264-35.437-10.74-38.094-29.294l-0.23-1.603c-2.641-18.442-19.254-37.406-37.123-42.362l-8.566-2.376c-17.862-4.953-41.806 2.656-53.639 17.191l-1.022 1.256zM314.266 852.379c70.166-8.615 120.062-72.48 111.447-142.645s-72.48-120.062-142.645-111.447c-70.166 8.615-120.062 72.48-111.447 142.645s72.48 120.062 142.645 111.447zM638.981 554.748c-9.637 15.944-30.496 21.333-46.511 12.081l-32.935-19.026c-16.051-9.272-21.83-29.917-12.787-46.332l0.781-1.418c8.989-16.316 7.135-41.455-4.287-56.34l-5.141-6.7c-11.356-14.8-35.115-23.209-53.31-18.723l-1.572 0.388c-18.086 4.459-36.652-6.478-41.443-24.343l-9.854-36.737c-4.802-17.904 5.704-36.587 23.707-41.8l1.555-0.45c17.895-5.182 34.362-24.272 36.783-42.658l1.16-8.814c2.419-18.377-8.448-41.029-24.489-50.724l-1.386-0.837c-15.944-9.637-21.333-30.496-12.081-46.511l19.026-32.935c9.272-16.051 29.917-21.83 46.332-12.787l1.418 0.781c16.316 8.989 41.455 7.135 56.34-4.287l6.7-5.141c14.8-11.356 23.209-35.115 18.723-53.31l-0.388-1.572c-4.459-18.086 6.478-36.652 24.343-41.443l36.737-9.854c17.904-4.802 36.587 5.704 41.8 23.707l0.45 1.555c5.182 17.895 24.272 34.362 42.658 36.783l8.814 1.16c18.377 2.419 41.029-8.448 50.724-24.489l0.837-1.386c9.637-15.944 30.496-21.333 46.511-12.081l32.935 19.026c16.051 9.272 21.83 29.917 12.787 46.332l-0.781 1.418c-8.989 16.316-7.135 41.455 4.287 56.34l5.141 6.7c11.356 14.8 35.115 23.209 53.31 18.723l1.572-0.388c18.086-4.459 36.652 6.478 41.443 24.343l9.854 36.737c4.802 17.904-5.704 36.587-23.707 41.8l-1.555 0.45c-17.895 5.182-34.362 24.272-36.783 42.658l-1.16 8.814c-2.419 18.377 8.448 41.029 24.489 50.724l1.386 0.837c15.944 9.637 21.333 30.496 12.081 46.511l-19.026 32.935c-9.272 16.051-29.917 21.83-46.332 12.787l-1.418-0.781c-16.316-8.989-41.455-7.135-56.34 4.287l-6.7 5.141c-14.8 11.356-23.209 35.115-18.723 53.31l0.388 1.572c4.459 18.086-6.478 36.652-24.343 41.443l-36.737 9.854c-17.904 4.802-36.587-5.704-41.8-23.707l-0.45-1.555c-5.182-17.895-24.272-34.362-42.658-36.783l-8.814-1.16c-18.377-2.419-41.029 8.448-50.724 24.489l-0.837 1.386zM758.462 422.305c68.284-18.297 108.806-88.484 90.51-156.767s-88.484-108.806-156.767-90.51c-68.284 18.297-108.806 88.484-90.51 156.767s88.484 108.806 156.767 90.51z",x="M572.34 512l225.83 225.83c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-225.83-225.83-225.83 225.83c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l225.83-225.83-225.83-225.83c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l225.83 225.83 225.83-225.83c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-225.83 225.83z";export{check as a,sliders as b,minus as c,plus as d,arrow_right as e,book as f,arrow_up_right as g,life_buoy as h,ai as i,plug as j,shield as k,file as l,database as m,infrastructure as n,logging as o,cpu as p,activity as q,message_circle as r,image as s,credit_card as t,play_circle as u,search as v,dollar_sign as w,worker as x,square as y,tool as z,shopping_cart as A,check_circle as B,alert_triangle as C,slash as D,bell as E,x as F,lock as G,eye as H,refresh_cw as I}; |
// manifold: Host Data, ES Module/es5 Target | ||
export var COMPONENTS = [["context-consumer","gfawzwhn",0,[["context",1],["el",64],["renderer",1,0,1,1],["subscribe",1],["unsubscribe",16]]],["manifold-active-plan","z0rfwhdk",1,[["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plans",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regions",1],["selectedPlanId",16],["selectedResource",1]],1],["manifold-badge","gfawzwhn",1,0,1],["manifold-connection","zjmcsnd8",0,[["env",1,0,1,2]]],["manifold-cost-display","gfawzwhn",1,[["baseCost",1,0,"base-cost",8],["compact",1,0,1,4],["el",64],["isCustomizable",1,0,"is-customizable",4],["measuredFeatures",1]],1],["manifold-data-product-logo","t3o3uzes",0,[["alt",1,0,1,2],["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-product-name","akvyxd3e",0,[["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-provision-button","guv8xgxj",0,[["connection",1],["el",64],["features",1],["formLabel",1,0,"form-label",2],["inputId",1,0,"input-id",2],["ownerId",1,0,"owner-id",2],["planId",1,0,"plan-id",2],["productId",2,0,"product-id",2],["productLabel",1,0,"product-label",2],["regionId",1,0,"region-id",2],["resourceName",16]]],["manifold-data-resource-list","xysudypn",0,[["connection",1],["disableUpdate",1,0,"disable-update",4],["el",64],["interval",16],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4],["resources",16]]],["manifold-featured-service","hxmzzpqc",1,[["logo",1,0,1,2],["name",1,0,1,2],["productGradient",1,0,"product-gradient",2]],1],["manifold-icon","llrkhz7d",1,[["color",1,0,1,2],["element",64],["gradient",1,0,1,2],["icon",1,0,1,2],["marginLeft",1,0,"margin-left",4],["marginRight",1,0,"margin-right",4],["title",1,0,1,2]],1],["manifold-image-gallery","hxmzzpqc",1,[["images",1],["selectedImage",16],["title",1,0,1,2]],1],["manifold-lazy-image","4sm2fetu",0,[["alt",1,0,1,2],["itemprop",1,0,1,2],["observer",16],["src",1,0,1,2]]],["manifold-link-button","gfawzwhn",1,[["color",1,0,1,2],["href",1,0,1,2],["onClick",1],["rel",1,0,1,2],["size",1,0,1,2],["target",1,0,1,2]],1],["manifold-marketplace","4sm2fetu",0,[["connection",1],["el",64],["excludes",1,0,1,2],["featured",1,0,1,2],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["parsedExcludes",16],["parsedFeatured",16],["parsedProducts",16],["preserveEvent",1,0,"preserve-event",4],["products",1,0,1,2],["services",16]]],["manifold-marketplace-grid","4sm2fetu",1,[["activeCategory",16],["el",64],["excludes",1],["featured",1],["filter",16],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["observer",16],["preserveEvent",1,0,"preserve-event",4],["products",1],["scrollToCategory",16],["search",16],["services",1]],1],["manifold-number-input","evulxbw2",1,[["decrementDisabledLabel",1,0,"decrement-disabled-label",2],["error",1,0,1,2],["increment",1,0,1,8],["incrementDisabledLabel",1,0,"increment-disabled-label",2],["max",1,0,1,8],["min",1,0,1,8],["name",1,0,1,2],["suffix",1,0,1,2],["value",2,0,1,8]],1],["manifold-plan-cost","gfawzwhn",0,[["allFeatures",1],["baseCost",16],["compact",1,0,1,4],["connection",1],["controller",16],["customizable",1,0,1,4],["el",64],["planId",1,0,"plan-id",2],["selectedFeatures",1]]],["manifold-plan-details","evulxbw2",1,[["features",16],["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plan",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regionId",16],["regions",1],["resourceFeatures",1]],1],["manifold-plan-menu","z0rfwhdk",1,[["plans",1],["selectPlan",1],["selectedPlanId",1,0,"selected-plan-id",2]],1],["manifold-plan-selector","z0rfwhdk",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["parsedRegions",16],["plans",16],["preserveEvent",1,0,"preserve-event",4],["product",16],["productLabel",1,0,"product-label",2],["regions",1,0,1,2],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-product","miotsssn",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",16],["productLabel",1,0,"product-label",2],["provider",16]]],["manifold-product-details","hxmzzpqc",1,[["product",1]],1],["manifold-product-page","hxmzzpqc",1,[["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",1],["provider",1]],1],["manifold-region-selector","evulxbw2",0,[["allowedRegions",1],["ariaLabel",1,0,"aria-label",2],["connection",1],["el",64],["globalRegion",16],["name",1,0,1,2],["preferredRegions",1],["regions",16],["value",1,0,1,2]]],["manifold-resource-credentials","ijzjdu5t",1,[["connection",1],["credentials",16],["el",64],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-resource-details","8mh2f5jc",0,[["connection",1],["el",64],["resource",16],["resourceId",1,0,"resource-id",2]]],["manifold-resource-status","4qe1m7qo",1,[["connection",1],["el",64],["loading",16],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-select","ewbawxtk",1,[["defaultValue",1,0,"default-value",2],["name",1,0,1,2],["options",1],["required",1,0,1,4]],2],["manifold-service-card","4sm2fetu",1,[["connection",1],["description",1,0,1,2],["el",64],["isFeatured",1,0,"is-featured",4],["isFree",16],["label",1,0,1,2],["linkFormat",1,0,"link-format",2],["logo",1,0,1,2],["name",1,0,1,2],["preserveEvent",1,0,"preserve-event",4],["productId",1,0,"product-id",2]],1],["manifold-template-card","4sm2fetu",1,[["category",1,0,1,2],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4]],1],["manifold-toast","4sm2fetu",1,[["alertType",1,0,"alert-type",2],["dismissable",1,0,1,4],["el",64],["icon",1,0,1,2],["lastHeight",16],["observer",16],["status",16]],1],["manifold-toggle","evulxbw2",1,[["ariaLabelledby",1,0,"aria-labelledby",2],["defaultValue",1,0,"default-value",4],["disabled",1,0,1,4],["label",1,0,1,2],["name",1,0,1,2]],2],["manifold-tooltip","gfawzwhn",1,[["labelText",1,0,"label-text",2]],1]] | ||
export var COMPONENTS = [["context-consumer","qaxc3xvy",0,[["context",1],["el",64],["renderer",1,0,1,1],["subscribe",1],["unsubscribe",16]]],["manifold-active-plan","z0rfwhdk",1,[["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plans",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regions",1],["selectedPlanId",16],["selectedResource",1]],1],["manifold-badge","qaxc3xvy",1,0,1],["manifold-connection","zjmcsnd8",0,[["env",1,0,1,2]]],["manifold-cost-display","qaxc3xvy",1,[["baseCost",1,0,"base-cost",8],["compact",1,0,1,4],["el",64],["isCustomizable",1,0,"is-customizable",4],["measuredFeatures",1]],1],["manifold-data-product-logo","uyaypu3c",0,[["alt",1,0,1,2],["connection",1],["el",64],["product",16],["productId",1,0,"product-id",2],["productLabel",1,0,"product-label",2]]],["manifold-data-product-name","gxoxujh0",0,[["connection",1],["el",64],["product",16],["productId",1,0,"product-id",2],["productLabel",1,0,"product-label",2]]],["manifold-data-provision-button","guv8xgxj",0,[["connection",1],["el",64],["features",1],["formLabel",1,0,"form-label",2],["inputId",1,0,"input-id",2],["ownerId",1,0,"owner-id",2],["planId",1,0,"plan-id",2],["productId",2,0,"product-id",2],["productLabel",1,0,"product-label",2],["regionId",1,0,"region-id",2],["resourceName",16]]],["manifold-data-resource-list","xysudypn",0,[["connection",1],["disableUpdate",1,0,"disable-update",4],["el",64],["interval",16],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4],["resources",16]]],["manifold-featured-service","gywse8kn",1,[["logo",1,0,1,2],["name",1,0,1,2],["productGradient",1,0,"product-gradient",2]],1],["manifold-icon","llrkhz7d",1,[["color",1,0,1,2],["element",64],["gradient",1,0,1,2],["icon",1,0,1,2],["marginLeft",1,0,"margin-left",4],["marginRight",1,0,"margin-right",4],["title",1,0,1,2]],1],["manifold-image-gallery","gywse8kn",1,[["images",1],["selectedImage",16],["title",1,0,1,2]],1],["manifold-lazy-image","v0if847o",0,[["alt",1,0,1,2],["itemprop",1,0,1,2],["observer",16],["src",1,0,1,2]]],["manifold-link-button","qaxc3xvy",1,[["color",1,0,1,2],["href",1,0,1,2],["onClick",1],["rel",1,0,1,2],["size",1,0,1,2],["target",1,0,1,2]],1],["manifold-marketplace","v0if847o",0,[["connection",1],["el",64],["excludes",1,0,1,2],["featured",1,0,1,2],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["parsedExcludes",16],["parsedFeatured",16],["parsedProducts",16],["preserveEvent",1,0,"preserve-event",4],["products",1,0,1,2],["services",16]]],["manifold-marketplace-grid","v0if847o",1,[["activeCategory",16],["el",64],["excludes",1],["featured",1],["filter",16],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["observer",16],["preserveEvent",1,0,"preserve-event",4],["products",1],["scrollToCategory",16],["search",16],["services",1]],1],["manifold-number-input","qaxc3xvy",1,[["decrementDisabledLabel",1,0,"decrement-disabled-label",2],["error",1,0,1,2],["increment",1,0,1,8],["incrementDisabledLabel",1,0,"increment-disabled-label",2],["max",1,0,1,8],["min",1,0,1,8],["name",1,0,1,2],["suffix",1,0,1,2],["value",2,0,1,8]],1],["manifold-plan-cost","qaxc3xvy",0,[["allFeatures",1],["baseCost",16],["compact",1,0,1,4],["connection",1],["controller",16],["customizable",1,0,1,4],["el",64],["planId",1,0,"plan-id",2],["selectedFeatures",1]]],["manifold-plan-details","b6lrayam",1,[["features",16],["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plan",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regionId",16],["regions",1],["resourceFeatures",1]],1],["manifold-plan-menu","z0rfwhdk",1,[["plans",1],["selectPlan",1],["selectedPlanId",1,0,"selected-plan-id",2]],1],["manifold-plan-selector","z0rfwhdk",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["parsedRegions",16],["plans",16],["preserveEvent",1,0,"preserve-event",4],["product",16],["productLabel",1,0,"product-label",2],["regions",1,0,1,2],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-product","miotsssn",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",16],["productLabel",1,0,"product-label",2],["provider",16]]],["manifold-product-details","gywse8kn",1,[["product",1]],1],["manifold-product-page","gywse8kn",1,[["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",1],["provider",1]],1],["manifold-region-selector","b6lrayam",0,[["allowedRegions",1],["ariaLabel",1,0,"aria-label",2],["connection",1],["el",64],["globalRegion",16],["name",1,0,1,2],["preferredRegions",1],["regions",16],["value",1,0,1,2]]],["manifold-resource-credentials","ijzjdu5t",1,[["connection",1],["credentials",16],["el",64],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-resource-details","8dtj008j",1,[["connection",1],["el",64],["plan",16],["resource",16],["resourceId",1,0,"resource-id",2]],1],["manifold-resource-status","4qe1m7qo",1,[["connection",1],["el",64],["loading",16],["resource",16],["resourceName",1,0,"resource-name",2]],1],["manifold-select","ewbawxtk",1,[["defaultValue",1,0,"default-value",2],["name",1,0,1,2],["options",1],["required",1,0,1,4]],2],["manifold-service-card","v0if847o",1,[["connection",1],["description",1,0,1,2],["el",64],["isFeatured",1,0,"is-featured",4],["isFree",16],["label",1,0,1,2],["linkFormat",1,0,"link-format",2],["logo",1,0,1,2],["name",1,0,1,2],["preserveEvent",1,0,"preserve-event",4],["productId",1,0,"product-id",2]],1],["manifold-template-card","v0if847o",1,[["category",1,0,1,2],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4]],1],["manifold-toast","v0if847o",1,[["alertType",1,0,"alert-type",2],["dismissable",1,0,1,4],["el",64],["icon",1,0,1,2],["lastHeight",16],["observer",16],["status",16]],1],["manifold-toggle","qaxc3xvy",1,[["ariaLabelledby",1,0,"aria-labelledby",2],["defaultValue",1,0,"default-value",4],["disabled",1,0,1,4],["label",1,0,1,2],["name",1,0,1,2]],2],["manifold-tooltip","qaxc3xvy",1,[["labelText",1,0,"label-text",2]],1]] |
@@ -1,1 +0,1 @@ | ||
!function(e,t,n,o,i,a,r,l,d,s,c,m,f,u){for(c=e.manifold=e.manifold||{},(m=t.createElement("style")).innerHTML=d+"{visibility:hidden}.hydrated{visibility:inherit}",m.setAttribute("data-styles",""),f=t.head.querySelector("meta[charset]"),t.head.insertBefore(m,f?f.nextSibling:t.head.firstChild),function(e,t,n){(e["s-apps"]=e["s-apps"]||[]).push("manifold"),n.componentOnReady||(n.componentOnReady=function(){var t=this;function n(n){if(t.nodeName.indexOf("-")>0){for(var o=e["s-apps"],i=0,a=0;a<o.length;a++)if(e[o[a]].componentOnReady){if(e[o[a]].componentOnReady(t,n))return;i++}if(i<o.length)return void(e["s-cr"]=e["s-cr"]||[]).push([t,n])}n(null)}return e.Promise?new e.Promise(n):{then:n}})}(e,0,s),i=i||c.resourcesUrl,m=(f=t.querySelectorAll("script")).length-1;m>=0&&!(u=f[m]).src&&!u.hasAttribute("data-resources-url");m--);f=u.getAttribute("data-resources-url"),!i&&f&&(i=f),!i&&u.src&&(i=(f=u.src.split("/").slice(0,-1)).join("/")+(f.length?"/":"")+"manifold/"),m=t.createElement("script"),function(e,t,n,o){return!(t.search.indexOf("core=esm")>0)&&(!(!(t.search.indexOf("core=es5")>0||"file:"===t.protocol)&&e.customElements&&e.customElements.define&&e.fetch&&e.CSS&&e.CSS.supports&&e.CSS.supports("color","var(--c)")&&"noModule"in n)||function(e){try{return new Function('import("")'),!1}catch(e){}return!0}())}(e,e.location,m)?m.src=i+"manifold.tzlpcudb.js":(m.src=i+"manifold.i2keddxn.js",m.setAttribute("type","module"),m.setAttribute("crossorigin",!0)),m.setAttribute("data-resources-url",i),m.setAttribute("data-namespace","manifold"),t.head.appendChild(m)}(window,document,0,0,0,0,0,0,"context-consumer,manifold-active-plan,manifold-badge,manifold-connection,manifold-cost-display,manifold-data-product-logo,manifold-data-product-name,manifold-data-provision-button,manifold-data-resource-list,manifold-featured-service,manifold-icon,manifold-image-gallery,manifold-lazy-image,manifold-link-button,manifold-marketplace,manifold-marketplace-grid,manifold-number-input,manifold-plan-cost,manifold-plan-details,manifold-plan-menu,manifold-plan-selector,manifold-product,manifold-product-details,manifold-product-page,manifold-region-selector,manifold-resource-credentials,manifold-resource-details,manifold-resource-status,manifold-select,manifold-service-card,manifold-template-card,manifold-toast,manifold-toggle,manifold-tooltip",HTMLElement.prototype); | ||
!function(e,t,n,o,i,a,r,l,d,s,c,m,f,u){for(c=e.manifold=e.manifold||{},(m=t.createElement("style")).innerHTML=d+"{visibility:hidden}.hydrated{visibility:inherit}",m.setAttribute("data-styles",""),f=t.head.querySelector("meta[charset]"),t.head.insertBefore(m,f?f.nextSibling:t.head.firstChild),function(e,t,n){(e["s-apps"]=e["s-apps"]||[]).push("manifold"),n.componentOnReady||(n.componentOnReady=function(){var t=this;function n(n){if(t.nodeName.indexOf("-")>0){for(var o=e["s-apps"],i=0,a=0;a<o.length;a++)if(e[o[a]].componentOnReady){if(e[o[a]].componentOnReady(t,n))return;i++}if(i<o.length)return void(e["s-cr"]=e["s-cr"]||[]).push([t,n])}n(null)}return e.Promise?new e.Promise(n):{then:n}})}(e,0,s),i=i||c.resourcesUrl,m=(f=t.querySelectorAll("script")).length-1;m>=0&&!(u=f[m]).src&&!u.hasAttribute("data-resources-url");m--);f=u.getAttribute("data-resources-url"),!i&&f&&(i=f),!i&&u.src&&(i=(f=u.src.split("/").slice(0,-1)).join("/")+(f.length?"/":"")+"manifold/"),m=t.createElement("script"),function(e,t,n,o){return!(t.search.indexOf("core=esm")>0)&&(!(!(t.search.indexOf("core=es5")>0||"file:"===t.protocol)&&e.customElements&&e.customElements.define&&e.fetch&&e.CSS&&e.CSS.supports&&e.CSS.supports("color","var(--c)")&&"noModule"in n)||function(e){try{return new Function('import("")'),!1}catch(e){}return!0}())}(e,e.location,m)?m.src=i+"manifold.utw9d56q.js":(m.src=i+"manifold.mcbhkv3s.js",m.setAttribute("type","module"),m.setAttribute("crossorigin",!0)),m.setAttribute("data-resources-url",i),m.setAttribute("data-namespace","manifold"),t.head.appendChild(m)}(window,document,0,0,0,0,0,0,"context-consumer,manifold-active-plan,manifold-badge,manifold-connection,manifold-cost-display,manifold-data-product-logo,manifold-data-product-name,manifold-data-provision-button,manifold-data-resource-list,manifold-featured-service,manifold-icon,manifold-image-gallery,manifold-lazy-image,manifold-link-button,manifold-marketplace,manifold-marketplace-grid,manifold-number-input,manifold-plan-cost,manifold-plan-details,manifold-plan-menu,manifold-plan-selector,manifold-product,manifold-product-details,manifold-product-page,manifold-region-selector,manifold-resource-credentials,manifold-resource-details,manifold-resource-status,manifold-select,manifold-service-card,manifold-template-card,manifold-toast,manifold-toggle,manifold-tooltip",HTMLElement.prototype); |
@@ -1,1 +0,1 @@ | ||
manifold.loadBundle("chunk-54bdf9ea.js",["exports"],function(c){window,c.check="M384 707.66l-183.163-183.163c-16.662-16.662-43.677-16.662-60.34 0s-16.662 43.677 0 60.34l213.333 213.333c16.662 16.662 43.677 16.662 60.34 0l469.333-469.333c16.662-16.662 16.662-43.677 0-60.34s-43.677-16.662-60.34 0l-439.163 439.163z",c.sliders="M810.667 725.333h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM469.333 298.667v-170.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM128 640h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256zM213.333 426.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-298.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v298.667zM554.667 896c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384zM896 512c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384z",c.arrow_right="M750.327 469.333l-183.163-183.163c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l256 256c16.662 16.662 16.662 43.677 0 60.34l-256 256c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l183.163-183.163h-579.66c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h579.66z",c.book="M810.667 682.667v-554.667h-533.333c-35.346 0-64 28.654-64 64v505.037c19.397-9.215 41.097-14.371 64-14.371h533.333zM810.667 768h-533.333c-35.346 0-64 28.654-64 64s28.654 64 64 64h533.333v-128zM277.333 42.667h576c23.564 0 42.667 19.103 42.667 42.667v853.333c0 23.564-19.103 42.667-42.667 42.667h-576c-82.475 0-149.333-66.859-149.333-149.333v-640c0-82.475 66.859-149.333 149.333-149.333z",c.arrow_up_right="M664.994 298.667h-280.994c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h384c23.564 0 42.667 19.103 42.667 42.667v384c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-280.994l-439.163 439.163c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l439.163-439.163z",c.life_buoy="M272.312 812.028c65.693 52.549 149.021 83.972 239.688 83.972s173.995-31.423 239.688-83.972l-122.039-122.039c-33.725 22.337-74.168 35.345-117.649 35.345s-83.923-13.008-117.649-35.345l-122.039 122.039zM211.972 751.688l122.039-122.039c-22.337-33.725-35.345-74.168-35.345-117.649s13.008-83.923 35.345-117.649l-122.039-122.039c-52.549 65.693-83.972 149.021-83.972 239.688s31.423 173.995 83.972 239.688zM689.988 394.351c22.337 33.725 35.345 74.168 35.345 117.649s-13.008 83.923-35.345 117.649l122.039 122.039c52.549-65.693 83.972-149.021 83.972-239.688s-31.423-173.995-83.972-239.688l-122.039 122.039zM629.649 334.012l122.039-122.039c-65.693-52.549-149.021-83.972-239.688-83.972s-173.995 31.423-239.688 83.972l122.039 122.039c33.725-22.337 74.168-35.345 117.649-35.345s83.923 13.008 117.649 35.345zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z",c.ai="M535.429 460.129c16.838-95.227 100.004-167.558 200.063-167.558 112.21 0 203.175 90.964 203.175 203.175s-90.964 203.175-203.175 203.175c-96.666 0-177.564-67.507-198.123-157.95-1.655 0.205-3.341 0.311-5.052 0.311h-58.19l-145.577 188.417c0.391 3.231 0.592 6.521 0.592 9.857 0 44.884-36.386 81.27-81.27 81.27s-81.27-36.386-81.27-81.27c0-44.884 36.386-81.27 81.27-81.27 10.227 0 20.014 1.889 29.029 5.338l94.525-122.341h-125.724c-3.744 0-7.369-0.506-10.811-1.454-14.476 22.378-39.652 37.188-68.287 37.188-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c32.23 0 60.078 18.761 73.218 45.958 1.92-0.278 3.883-0.422 5.88-0.422h129.776l-105.627-129.812c-6.99 1.959-14.362 3.007-21.978 3.007-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c44.884 0 81.27 36.386 81.27 81.27 0 6.714-0.814 13.239-2.349 19.479l153.459 188.596h52.065c1.047 0 2.084 0.040 3.111 0.117zM735.492 617.651c67.326 0 121.905-54.579 121.905-121.905s-54.579-121.905-121.905-121.905c-67.326 0-121.905 54.579-121.905 121.905s54.579 121.905 121.905 121.905z",c.plug="M428.753 188.522l-33.346 33.346c-106.113 106.113-106.113 278.156 0 384.269s278.156 106.113 384.269 0l33.346-33.346-384.269-384.269zM746.33 385.42l96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 96.861 96.861c16.662 16.662 16.662 43.677 0 60.34l-63.516 63.516c-129.228 129.228-332.87 138.69-472.995 28.386l-214.915 214.915c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l214.915-214.915c-110.304-140.125-100.842-343.767 28.386-472.995l63.516-63.516c16.662-16.662 43.677-16.662 60.34 0l96.861 96.861 96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 130.207 130.207z",c.shield="M531.081 976.829c-12.012 6.006-26.15 6.006-38.162 0-11.813-5.907-31.646-16.886-56.866-32.648-41.818-26.136-83.629-56.449-122.816-90.738-115.018-100.641-185.237-214.747-185.237-341.443v-341.333c0-19.578 13.325-36.644 32.318-41.393l341.333-85.333c6.794-1.699 13.902-1.699 20.696 0l341.333 85.333c18.994 4.748 32.318 21.814 32.318 41.393v341.333c0 126.696-70.219 240.802-185.237 341.443-39.187 34.289-80.998 64.602-122.816 90.738-25.219 15.762-45.052 26.741-56.866 32.648zM542.72 871.819c38.182-23.864 76.371-51.551 111.85-82.595 98.315-86.026 156.096-179.92 156.096-277.223v-308.020l-298.667-74.667-298.667 74.667v308.020c0 97.304 57.781 191.198 156.096 277.223 35.48 31.045 73.669 58.732 111.85 82.595 10.971 6.857 21.274 12.975 30.72 18.326 9.446-5.352 19.749-11.47 30.72-18.326z",c.file="M810.667 426.667h-256c-23.564 0-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667 19.103-42.667 42.667v682.667c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-426.667h42.667c23.564 0 42.667-19.103 42.667-42.667 0-5.891-1.194-11.503-3.353-16.608 2.229 5.408 3.353 10.95 3.353 16.608v469.333c0 70.692-57.308 128-128 128h-512c-70.692 0-128-57.308-128-128v-682.667c0-70.692 57.308-128 128-128h298.667c11.316 0 22.168 4.495 30.17 12.497l298.667 298.667c4.001 4.001 7.125 8.714 9.249 13.842zM597.333 188.34v152.994h152.994l-152.994-152.994z",c.database="M135.758 303.835v208.165c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-208.165c-84.941 44.139-220.154 68.529-372.364 68.529s-287.423-24.39-372.364-68.529zM42.667 186.182c0-116.678 208.511-186.182 465.455-186.182s465.455 69.504 465.455 186.182v651.636c0 116.914-207.484 186.182-465.455 186.182s-465.455-69.268-465.455-186.182v-651.636zM880.485 629.912c-84.767 44.020-219.728 68.27-372.364 68.27s-287.597-24.25-372.364-68.27v207.906c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-207.906zM508.121 279.273c205.771 0 372.364-55.531 372.364-93.091s-166.593-93.091-372.364-93.091c-205.771 0-372.364 55.531-372.364 93.091s166.593 93.091 372.364 93.091z",c.infrastructure="M128 42.667h768c47.128 0 85.333 38.205 85.333 85.333v768c0 47.128-38.205 85.333-85.333 85.333h-768c-47.128 0-85.333-38.205-85.333-85.333v-768c0-47.128 38.205-85.333 85.333-85.333zM128 128v768h768v-768h-768zM384 426.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM384 682.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM725.333 469.333v-170.667h-426.667v170.667h426.667zM725.333 554.667h-426.667v170.667h426.667v-170.667zM213.333 256c0-23.564 19.103-42.667 42.667-42.667h512c23.564 0 42.667 19.103 42.667 42.667v512c0 23.564-19.103 42.667-42.667 42.667h-512c-23.564 0-42.667-19.103-42.667-42.667v-512z",c.logging="M753.778 384c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM896 213.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM896 554.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM753.778 725.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM128 298.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 469.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 810.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",c.cpu="M256 213.333c-23.564 0-42.667 19.103-42.667 42.667v512c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-512c0-23.564-19.103-42.667-42.667-42.667h-512zM128 554.667v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333v-85.333c0-70.692 57.308-128 128-128h85.333v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h170.667v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h85.333c70.692 0 128 57.308 128 128v85.333h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128c0 70.692-57.308 128-128 128h-85.333v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-170.667v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-85.333c-70.692 0-128-57.308-128-128v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM384 341.333c-23.564 0-42.667 19.103-42.667 42.667v256c0 23.564 19.103 42.667 42.667 42.667h256c23.564 0 42.667-19.103 42.667-42.667v-256c0-23.564-19.103-42.667-42.667-42.667h-256zM426.667 597.333v-170.667h170.667v170.667h-170.667z",c.activity="M640 761.076l-215.523-646.569c-12.966-38.899-67.988-38.899-80.954 0l-118.275 354.826h-139.914c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667h170.667c18.365 0 34.67-11.752 40.477-29.174l87.523-262.569 215.523 646.569c12.966 38.899 67.988 38.899 80.954 0l118.275-354.826h139.914c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-170.667c-18.365 0-34.67 11.752-40.477 29.174l-87.523 262.569z",c.message_circle="M195.462 828.538l162.246-54.082c10.792-3.597 22.574-2.736 32.729 2.393 44.268 22.36 93.191 33.947 142.88 33.818 121.182-0.047 231.942-68.543 286.199-177.103 22.36-44.268 33.947-93.191 33.818-142.786l0.065-19.094c-8.961-162.426-138.655-292.121-298.731-301.017l-21.445-0c-49.594-0.129-98.518 11.458-142.948 33.899-108.398 54.176-176.894 164.935-176.941 286.212-0.129 49.594 11.458 98.518 33.818 142.786 5.129 10.154 5.99 21.936 2.393 32.729l-54.082 162.246zM938.667 490.613c0.155 63.015-14.572 125.176-42.901 181.262-68.622 137.304-208.918 224.066-362.321 224.125-56.963 0.149-113.23-11.864-165.063-35.153l-226.889 75.63c-33.355 11.118-65.088-20.615-53.97-53.97l75.63-226.889c-23.288-51.832-35.301-108.091-35.153-164.968 0.059-153.498 86.821-293.793 223.964-362.334 56.265-28.419 118.447-43.147 181.37-42.982l23.684 0.065c205.856 11.357 370.228 175.729 381.65 383.935v21.279z",c.image="M853.333 536.994v-323.66c0-23.564-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 18.296 11.516 33.902 27.694 39.966l454.136-454.136c16.662-16.662 43.677-16.662 60.34 0l140.497 140.497zM853.333 657.673l-170.667-170.667-366.327 366.327h494.327c23.564 0 42.667-19.103 42.667-42.667v-152.994zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128zM362.667 469.333c-58.91 0-106.667-47.756-106.667-106.667s47.756-106.667 106.667-106.667c58.91 0 106.667 47.756 106.667 106.667s-47.756 106.667-106.667 106.667zM362.667 384c11.782 0 21.333-9.551 21.333-21.333s-9.551-21.333-21.333-21.333c-11.782 0-21.333 9.551-21.333 21.333s9.551 21.333 21.333 21.333z",c.credit_card="M938.667 384v-128c0-23.564-19.103-42.667-42.667-42.667h-768c-23.564 0-42.667 19.103-42.667 42.667v128h853.333zM938.667 469.333h-853.333v298.667c0 23.564 19.103 42.667 42.667 42.667h768c23.564 0 42.667-19.103 42.667-42.667v-298.667zM128 128h768c70.692 0 128 57.308 128 128v512c0 70.692-57.308 128-128 128h-768c-70.692 0-128-57.308-128-128v-512c-0-70.692 57.308-128 128-128z",c.play_circle="M512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384zM450.334 305.833l256 170.667c25.333 16.888 25.333 54.113 0 71.002l-256 170.667c-28.354 18.903-66.334-1.423-66.334-35.501v-341.333c0-34.078 37.98-54.404 66.334-35.501zM469.333 421.057v181.887l136.415-90.943-136.415-90.943z",c.search="M672.504 732.844c-61.751 48.737-139.731 77.823-224.504 77.823-200.295 0-362.667-162.371-362.667-362.667s162.371-362.667 362.667-362.667c200.295 0 362.667 162.371 362.667 362.667 0 84.773-29.086 162.753-77.823 224.504l193.326 193.326c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-193.326-193.326zM448 725.333c153.167 0 277.333-124.166 277.333-277.333s-124.166-277.333-277.333-277.333c-153.167 0-277.333 124.166-277.333 277.333s124.166 277.333 277.333 277.333z",c.dollar_sign="M554.333 170.667H725c23.564 0 42.667 19.102 42.667 42.666C767.667 236.897 748.564 256 725 256H554.333v213.333h64c106.039 0 192 85.962 192 192 0 106.039-85.961 192-192 192h-64v128c0 23.564-19.102 42.667-42.666 42.667-23.564 0-42.667-19.103-42.667-42.667v-128H255.667c-23.564 0-42.667-19.102-42.667-42.666C213 787.103 232.103 768 255.667 768H469V554.667h-64c-106.039 0-192-85.962-192-192 0-106.039 85.961-192 192-192h64v-128C469 19.103 488.103 0 511.667 0s42.666 19.103 42.666 42.667v128zm0 384V768h64C677.243 768 725 720.244 725 661.333c0-58.91-47.756-106.666-106.667-106.666h-64zM469 469.333V256h-64c-58.91 0-106.667 47.756-106.667 106.667 0 58.91 47.757 106.666 106.667 106.666h64z",c.worker="M177.515 966.904c-11.762 14.448-33.168 16.881-47.74 5.49l-29.967-23.425c-14.604-11.416-17.454-32.664-6.214-47.66l0.971-1.295c11.172-14.906 12.835-40.058 3.596-56.388l-4.159-7.35c-9.186-16.236-31.543-27.87-50.186-25.96l-1.61 0.165c-18.531 1.899-35.393-11.516-37.652-29.874l-4.645-37.751c-2.264-18.398 10.74-35.437 29.294-38.094l1.603-0.23c18.442-2.641 37.406-19.254 42.362-37.123l2.376-8.566c4.954-17.862-2.656-41.806-17.191-53.639l-1.256-1.022c-14.448-11.762-16.881-33.168-5.49-47.74l23.425-29.967c11.416-14.604 32.664-17.454 47.66-6.214l1.295 0.971c14.906 11.172 40.058 12.835 56.388 3.596l7.35-4.159c16.236-9.186 27.87-31.543 25.96-50.186l-0.165-1.61c-1.899-18.531 11.516-35.393 29.874-37.652l37.751-4.645c18.398-2.264 35.437 10.74 38.094 29.294l0.23 1.603c2.641 18.442 19.254 37.406 37.123 42.362l8.566 2.376c17.862 4.953 41.806-2.656 53.639-17.191l1.022-1.256c11.762-14.448 33.168-16.881 47.74-5.49l29.967 23.425c14.604 11.416 17.454 32.664 6.214 47.66l-0.971 1.295c-11.172 14.906-12.835 40.058-3.596 56.388l4.159 7.35c9.186 16.236 31.543 27.87 50.186 25.96l1.61-0.165c18.531-1.899 35.393 11.516 37.652 29.874l4.645 37.751c2.264 18.398-10.74 35.437-29.294 38.094l-1.603 0.23c-18.442 2.641-37.406 19.254-42.362 37.123l-2.376 8.566c-4.953 17.862 2.656 41.806 17.191 53.639l1.256 1.022c14.448 11.762 16.881 33.168 5.49 47.74l-23.425 29.967c-11.416 14.604-32.664 17.454-47.66 6.214l-1.295-0.971c-14.906-11.172-40.058-12.835-56.388-3.596l-7.35 4.159c-16.236 9.186-27.87 31.543-25.96 50.186l0.165 1.61c1.899 18.531-11.516 35.393-29.874 37.652l-37.751 4.645c-18.398 2.264-35.437-10.74-38.094-29.294l-0.23-1.603c-2.641-18.442-19.254-37.406-37.123-42.362l-8.566-2.376c-17.862-4.953-41.806 2.656-53.639 17.191l-1.022 1.256zM314.266 852.379c70.166-8.615 120.062-72.48 111.447-142.645s-72.48-120.062-142.645-111.447c-70.166 8.615-120.062 72.48-111.447 142.645s72.48 120.062 142.645 111.447zM638.981 554.748c-9.637 15.944-30.496 21.333-46.511 12.081l-32.935-19.026c-16.051-9.272-21.83-29.917-12.787-46.332l0.781-1.418c8.989-16.316 7.135-41.455-4.287-56.34l-5.141-6.7c-11.356-14.8-35.115-23.209-53.31-18.723l-1.572 0.388c-18.086 4.459-36.652-6.478-41.443-24.343l-9.854-36.737c-4.802-17.904 5.704-36.587 23.707-41.8l1.555-0.45c17.895-5.182 34.362-24.272 36.783-42.658l1.16-8.814c2.419-18.377-8.448-41.029-24.489-50.724l-1.386-0.837c-15.944-9.637-21.333-30.496-12.081-46.511l19.026-32.935c9.272-16.051 29.917-21.83 46.332-12.787l1.418 0.781c16.316 8.989 41.455 7.135 56.34-4.287l6.7-5.141c14.8-11.356 23.209-35.115 18.723-53.31l-0.388-1.572c-4.459-18.086 6.478-36.652 24.343-41.443l36.737-9.854c17.904-4.802 36.587 5.704 41.8 23.707l0.45 1.555c5.182 17.895 24.272 34.362 42.658 36.783l8.814 1.16c18.377 2.419 41.029-8.448 50.724-24.489l0.837-1.386c9.637-15.944 30.496-21.333 46.511-12.081l32.935 19.026c16.051 9.272 21.83 29.917 12.787 46.332l-0.781 1.418c-8.989 16.316-7.135 41.455 4.287 56.34l5.141 6.7c11.356 14.8 35.115 23.209 53.31 18.723l1.572-0.388c18.086-4.459 36.652 6.478 41.443 24.343l9.854 36.737c4.802 17.904-5.704 36.587-23.707 41.8l-1.555 0.45c-17.895 5.182-34.362 24.272-36.783 42.658l-1.16 8.814c-2.419 18.377 8.448 41.029 24.489 50.724l1.386 0.837c15.944 9.637 21.333 30.496 12.081 46.511l-19.026 32.935c-9.272 16.051-29.917 21.83-46.332 12.787l-1.418-0.781c-16.316-8.989-41.455-7.135-56.34 4.287l-6.7 5.141c-14.8 11.356-23.209 35.115-18.723 53.31l0.388 1.572c4.459 18.086-6.478 36.652-24.343 41.443l-36.737 9.854c-17.904 4.802-36.587-5.704-41.8-23.707l-0.45-1.555c-5.182-17.895-24.272-34.362-42.658-36.783l-8.814-1.16c-18.377-2.419-41.029 8.448-50.724 24.489l-0.837 1.386zM758.462 422.305c68.284-18.297 108.806-88.484 90.51-156.767s-88.484-108.806-156.767-90.51c-68.284 18.297-108.806 88.484-90.51 156.767s88.484 108.806 156.767 90.51z",c.square="M213.333 170.667c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-597.333c0-23.564-19.103-42.667-42.667-42.667h-597.333zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128z",c.tool="M763.502 0.571c-77.008-4.934-155.9 22.112-214.627 80.818-72.225 72.195-93.623 174.034-69.609 266.373l-438.681 438.881c-54.114 54.090-54.112 142.699 0 196.789 54.11 54.092 142.752 54.090 196.862 0l439.044-438.88c92.345 23.959 194.278 2.585 266.472-69.583 78.305-78.274 99.693-191.946 64.895-289.93-3.996-11.212-13.447-19.605-25.057-22.249s-23.765 0.827-32.226 9.202l-97.888 97.851c-27.694 27.684-70.919 27.684-98.613 0s-27.694-70.53 0-98.214l97.888-97.851c8.554-8.448 12.14-20.712 9.485-32.435s-11.176-21.247-22.536-25.188c-24.506-8.696-49.74-13.939-75.41-15.584zM756.976 70.154l-52.207 52.187c-54.11 54.091-54.11 142.699 0 196.79s142.752 54.091 196.862 0l52.207-51.825c3.171 56.973-16.456 114.665-60.182 158.374-59.043 59.022-143.928 75.044-217.528 48.926-12.612-4.543-26.714-1.442-36.255 7.973l-451.734 451.565c-27.695 27.685-70.919 27.684-98.613 0s-27.695-70.892 0-98.576l451.734-451.202c9.546-9.458 12.791-23.565 8.338-36.241-26.128-73.573-10.465-158.425 48.581-217.447 43.729-43.713 101.797-63.696 158.795-60.523z",c.shopping_cart="M341.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM341.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM853.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM853.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM278.906 213.333h702.427c26.929 0 47.123 24.639 41.836 51.044l-71.667 357.908c-12.079 60.815-66.009 104.228-127.182 103.048l-450.625-0.002c-64.673 0.549-119.595-47.233-127.995-111.324l-64.858-491.555c-2.781-21.214-20.845-37.088-42.175-37.12h-96c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667l96.065 0c64.186 0.097 118.376 47.718 126.715 111.325l13.459 102.008zM290.165 298.667l40.139 304.215c2.802 21.376 21.109 37.303 43.029 37.118l451.804 0.008c20.664 0.396 38.64-14.075 42.68-34.412l61.459-306.929h-639.111z",c.check_circle="M853.336 472.588c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667l-0 39.704c-0.119 207.853-136.938 390.871-336.261 449.804s-413.668-20.256-526.798-194.625c-113.13-174.369-98.095-402.38 36.952-560.384s357.934-208.363 547.793-123.767c21.524 9.591 31.198 34.814 21.608 56.338s-34.814 31.198-56.338 21.608c-155.339-69.215-337.702-28.013-448.194 101.264s-122.794 315.83-30.233 458.496c92.561 142.665 267.934 207.457 431.017 159.238s275.025-197.96 275.122-367.997v-39.68zM469.336 537.262l439.163-439.163c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-469.333 469.333c-16.662 16.662-43.677 16.662-60.34 0l-128-128c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l97.83 97.83z",c.alert_triangle="M421.511 147.152c23.327-38.457 64.821-61.819 109.562-61.819s86.236 23.362 109.562 61.819l361.733 603.896c22.743 39.386 22.879 87.881 0.357 127.394s-64.319 64.106-110.266 64.609l-723.242-0.003c-45.478-0.5-87.275-25.094-109.797-64.606s-22.386-88.008 0.703-127.983l361.387-603.307zM494.644 191.121l-360.969 602.598c-7.581 13.129-7.626 29.294-0.119 42.465s21.44 21.369 36.13 21.533l722.304 0.003c15.159-0.167 29.092-8.365 36.599-21.535s7.462-29.336 0.228-41.875l-361.264-603.104c-7.735-12.751-21.566-20.539-36.48-20.539-14.881 0-28.685 7.753-36.429 20.455zM488.406 388.384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM531.073 772.384c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",c.slash="M211.972 272.312c-52.549 65.693-83.972 149.021-83.972 239.688 0 212.077 171.923 384 384 384 90.667 0 173.995-31.423 239.688-83.972l-539.716-539.716zM272.312 211.972l539.716 539.716c52.549-65.693 83.972-149.021 83.972-239.688 0-212.077-171.923-384-384-384-90.667 0-173.995 31.423-239.688 83.972zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333z",c.bell="M768 597.333v-213.333c0-141.385-114.615-256-256-256s-256 114.615-256 256v213.333c0 31.086-8.311 60.231-22.832 85.333h557.664c-14.521-25.103-22.832-54.247-22.832-85.333zM938.667 768h-853.333c-56.889 0-56.889-85.333 0-85.333 47.128 0 85.333-38.205 85.333-85.333v-213.333c0-188.513 152.82-341.333 341.333-341.333s341.333 152.82 341.333 341.333v213.333c0 47.128 38.205 85.333 85.333 85.333 56.889 0 56.889 85.333 0 85.333zM622.72 917.409c-22.899 39.475-65.084 63.773-110.72 63.773s-87.821-24.298-110.72-63.773c-16.5-28.444 4.023-64.076 36.907-64.076h147.627c32.884 0 53.407 35.631 36.907 64.076z",c.x="M572.34 512l225.83 225.83c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-225.83-225.83-225.83 225.83c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l225.83-225.83-225.83-225.83c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l225.83 225.83 225.83-225.83c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-225.83 225.83z",c.minus="M213.333 554.667h597.333c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667z",c.plus="M554.667 469.333h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256v-256c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256z",c.lock="M213.333 512c-23.564 0-42.667 19.103-42.667 42.667v298.667c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-298.667c0-23.564-19.103-42.667-42.667-42.667h-597.333zM256 426.667v-128c0-141.385 114.615-256 256-256s256 114.615 256 256v128h42.667c70.692 0 128 57.308 128 128v298.667c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-298.667c0-70.692 57.308-128 128-128h42.667zM341.333 426.667h341.333v-128c0-94.257-76.41-170.667-170.667-170.667s-170.667 76.41-170.667 170.667v128z",c.eye="M109.842 542.186c24.524 37.972 53.497 75.97 86.619 111.3 92.657 98.834 198.411 157.181 315.54 157.181s222.882-58.347 315.54-157.181c33.122-35.33 62.095-73.328 86.619-111.3 6.961-10.778 13.134-20.9 18.505-30.186-5.371-9.286-11.544-19.408-18.505-30.186-24.524-37.972-53.497-75.97-86.619-111.3-92.657-98.834-198.411-157.181-315.54-157.181s-222.882 58.347-315.54 157.181c-33.122 35.33-62.095 73.328-86.619 111.3-6.961 10.778-13.134 20.9-18.505 30.186 5.371 9.286 11.544 19.408 18.505 30.186zM4.504 492.919c5.998-11.995 17.254-32.007 33.654-57.4 27.143-42.028 59.17-84.030 96.048-123.367 107.343-114.499 233.589-184.152 377.794-184.152s270.451 69.653 377.794 184.152c36.878 39.337 68.905 81.339 96.048 123.367 16.4 25.393 27.656 45.405 33.654 57.4 6.006 12.012 6.006 26.15 0 38.162-5.998 11.995-17.254 32.007-33.654 57.4-27.143 42.028-59.17 84.030-96.048 123.367-107.343 114.499-233.589 184.152-377.794 184.152s-270.451-69.653-377.794-184.152c-36.878-39.337-68.905-81.339-96.048-123.367-16.4-25.393-27.656-45.405-33.654-57.4-6.006-12.012-6.006-26.15 0-38.162zM512 682.667c94.257 0 170.667-76.41 170.667-170.667s-76.41-170.667-170.667-170.667c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667zM512 597.333c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c47.128 0 85.333 38.205 85.333 85.333s-38.205 85.333-85.333 85.333z",c.refresh_cw="M85.333 695.973v157.361c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256c0-23.564 19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-148.298l120.449 113.198c82.851 82.893 202.437 117.483 316.746 91.619s207.356-108.565 246.454-219.050c7.861-22.214 32.242-33.85 54.456-25.989s33.85 32.242 25.989 54.456c-48.871 138.107-165.18 241.483-308.067 273.813s-292.369-10.908-394.973-113.593l-126.090-118.481zM938.667 328.027v-157.361c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256c0 23.564-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h148.298l-120.449-113.198c-82.851-82.893-202.437-117.483-316.746-91.619s-207.356 108.565-246.454 219.050c-7.861 22.214-32.242 33.85-54.456 25.989s-33.85-32.242-25.989-54.456c48.871-138.107 165.18-241.483 308.067-273.813s292.369 10.908 394.973 113.593l126.090 118.481z"}); | ||
manifold.loadBundle("chunk-54bdf9ea.js",["exports"],function(c){window,c.check="M384 707.66l-183.163-183.163c-16.662-16.662-43.677-16.662-60.34 0s-16.662 43.677 0 60.34l213.333 213.333c16.662 16.662 43.677 16.662 60.34 0l469.333-469.333c16.662-16.662 16.662-43.677 0-60.34s-43.677-16.662-60.34 0l-439.163 439.163z",c.sliders="M810.667 725.333h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM469.333 298.667v-170.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM128 640h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256zM213.333 426.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-298.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v298.667zM554.667 896c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384zM896 512c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384z",c.minus="M213.333 554.667h597.333c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667z",c.plus="M554.667 469.333h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256v-256c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256z",c.arrow_right="M750.327 469.333l-183.163-183.163c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l256 256c16.662 16.662 16.662 43.677 0 60.34l-256 256c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l183.163-183.163h-579.66c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h579.66z",c.book="M810.667 682.667v-554.667h-533.333c-35.346 0-64 28.654-64 64v505.037c19.397-9.215 41.097-14.371 64-14.371h533.333zM810.667 768h-533.333c-35.346 0-64 28.654-64 64s28.654 64 64 64h533.333v-128zM277.333 42.667h576c23.564 0 42.667 19.103 42.667 42.667v853.333c0 23.564-19.103 42.667-42.667 42.667h-576c-82.475 0-149.333-66.859-149.333-149.333v-640c0-82.475 66.859-149.333 149.333-149.333z",c.arrow_up_right="M664.994 298.667h-280.994c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h384c23.564 0 42.667 19.103 42.667 42.667v384c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-280.994l-439.163 439.163c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l439.163-439.163z",c.life_buoy="M272.312 812.028c65.693 52.549 149.021 83.972 239.688 83.972s173.995-31.423 239.688-83.972l-122.039-122.039c-33.725 22.337-74.168 35.345-117.649 35.345s-83.923-13.008-117.649-35.345l-122.039 122.039zM211.972 751.688l122.039-122.039c-22.337-33.725-35.345-74.168-35.345-117.649s13.008-83.923 35.345-117.649l-122.039-122.039c-52.549 65.693-83.972 149.021-83.972 239.688s31.423 173.995 83.972 239.688zM689.988 394.351c22.337 33.725 35.345 74.168 35.345 117.649s-13.008 83.923-35.345 117.649l122.039 122.039c52.549-65.693 83.972-149.021 83.972-239.688s-31.423-173.995-83.972-239.688l-122.039 122.039zM629.649 334.012l122.039-122.039c-65.693-52.549-149.021-83.972-239.688-83.972s-173.995 31.423-239.688 83.972l122.039 122.039c33.725-22.337 74.168-35.345 117.649-35.345s83.923 13.008 117.649 35.345zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z",c.ai="M535.429 460.129c16.838-95.227 100.004-167.558 200.063-167.558 112.21 0 203.175 90.964 203.175 203.175s-90.964 203.175-203.175 203.175c-96.666 0-177.564-67.507-198.123-157.95-1.655 0.205-3.341 0.311-5.052 0.311h-58.19l-145.577 188.417c0.391 3.231 0.592 6.521 0.592 9.857 0 44.884-36.386 81.27-81.27 81.27s-81.27-36.386-81.27-81.27c0-44.884 36.386-81.27 81.27-81.27 10.227 0 20.014 1.889 29.029 5.338l94.525-122.341h-125.724c-3.744 0-7.369-0.506-10.811-1.454-14.476 22.378-39.652 37.188-68.287 37.188-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c32.23 0 60.078 18.761 73.218 45.958 1.92-0.278 3.883-0.422 5.88-0.422h129.776l-105.627-129.812c-6.99 1.959-14.362 3.007-21.978 3.007-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c44.884 0 81.27 36.386 81.27 81.27 0 6.714-0.814 13.239-2.349 19.479l153.459 188.596h52.065c1.047 0 2.084 0.040 3.111 0.117zM735.492 617.651c67.326 0 121.905-54.579 121.905-121.905s-54.579-121.905-121.905-121.905c-67.326 0-121.905 54.579-121.905 121.905s54.579 121.905 121.905 121.905z",c.plug="M428.753 188.522l-33.346 33.346c-106.113 106.113-106.113 278.156 0 384.269s278.156 106.113 384.269 0l33.346-33.346-384.269-384.269zM746.33 385.42l96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 96.861 96.861c16.662 16.662 16.662 43.677 0 60.34l-63.516 63.516c-129.228 129.228-332.87 138.69-472.995 28.386l-214.915 214.915c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l214.915-214.915c-110.304-140.125-100.842-343.767 28.386-472.995l63.516-63.516c16.662-16.662 43.677-16.662 60.34 0l96.861 96.861 96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 130.207 130.207z",c.shield="M531.081 976.829c-12.012 6.006-26.15 6.006-38.162 0-11.813-5.907-31.646-16.886-56.866-32.648-41.818-26.136-83.629-56.449-122.816-90.738-115.018-100.641-185.237-214.747-185.237-341.443v-341.333c0-19.578 13.325-36.644 32.318-41.393l341.333-85.333c6.794-1.699 13.902-1.699 20.696 0l341.333 85.333c18.994 4.748 32.318 21.814 32.318 41.393v341.333c0 126.696-70.219 240.802-185.237 341.443-39.187 34.289-80.998 64.602-122.816 90.738-25.219 15.762-45.052 26.741-56.866 32.648zM542.72 871.819c38.182-23.864 76.371-51.551 111.85-82.595 98.315-86.026 156.096-179.92 156.096-277.223v-308.020l-298.667-74.667-298.667 74.667v308.020c0 97.304 57.781 191.198 156.096 277.223 35.48 31.045 73.669 58.732 111.85 82.595 10.971 6.857 21.274 12.975 30.72 18.326 9.446-5.352 19.749-11.47 30.72-18.326z",c.file="M810.667 426.667h-256c-23.564 0-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667 19.103-42.667 42.667v682.667c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-426.667h42.667c23.564 0 42.667-19.103 42.667-42.667 0-5.891-1.194-11.503-3.353-16.608 2.229 5.408 3.353 10.95 3.353 16.608v469.333c0 70.692-57.308 128-128 128h-512c-70.692 0-128-57.308-128-128v-682.667c0-70.692 57.308-128 128-128h298.667c11.316 0 22.168 4.495 30.17 12.497l298.667 298.667c4.001 4.001 7.125 8.714 9.249 13.842zM597.333 188.34v152.994h152.994l-152.994-152.994z",c.database="M135.758 303.835v208.165c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-208.165c-84.941 44.139-220.154 68.529-372.364 68.529s-287.423-24.39-372.364-68.529zM42.667 186.182c0-116.678 208.511-186.182 465.455-186.182s465.455 69.504 465.455 186.182v651.636c0 116.914-207.484 186.182-465.455 186.182s-465.455-69.268-465.455-186.182v-651.636zM880.485 629.912c-84.767 44.020-219.728 68.27-372.364 68.27s-287.597-24.25-372.364-68.27v207.906c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-207.906zM508.121 279.273c205.771 0 372.364-55.531 372.364-93.091s-166.593-93.091-372.364-93.091c-205.771 0-372.364 55.531-372.364 93.091s166.593 93.091 372.364 93.091z",c.infrastructure="M128 42.667h768c47.128 0 85.333 38.205 85.333 85.333v768c0 47.128-38.205 85.333-85.333 85.333h-768c-47.128 0-85.333-38.205-85.333-85.333v-768c0-47.128 38.205-85.333 85.333-85.333zM128 128v768h768v-768h-768zM384 426.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM384 682.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM725.333 469.333v-170.667h-426.667v170.667h426.667zM725.333 554.667h-426.667v170.667h426.667v-170.667zM213.333 256c0-23.564 19.103-42.667 42.667-42.667h512c23.564 0 42.667 19.103 42.667 42.667v512c0 23.564-19.103 42.667-42.667 42.667h-512c-23.564 0-42.667-19.103-42.667-42.667v-512z",c.logging="M753.778 384c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM896 213.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM896 554.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM753.778 725.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM128 298.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 469.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 810.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",c.cpu="M256 213.333c-23.564 0-42.667 19.103-42.667 42.667v512c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-512c0-23.564-19.103-42.667-42.667-42.667h-512zM128 554.667v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333v-85.333c0-70.692 57.308-128 128-128h85.333v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h170.667v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h85.333c70.692 0 128 57.308 128 128v85.333h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128c0 70.692-57.308 128-128 128h-85.333v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-170.667v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-85.333c-70.692 0-128-57.308-128-128v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM384 341.333c-23.564 0-42.667 19.103-42.667 42.667v256c0 23.564 19.103 42.667 42.667 42.667h256c23.564 0 42.667-19.103 42.667-42.667v-256c0-23.564-19.103-42.667-42.667-42.667h-256zM426.667 597.333v-170.667h170.667v170.667h-170.667z",c.activity="M640 761.076l-215.523-646.569c-12.966-38.899-67.988-38.899-80.954 0l-118.275 354.826h-139.914c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667h170.667c18.365 0 34.67-11.752 40.477-29.174l87.523-262.569 215.523 646.569c12.966 38.899 67.988 38.899 80.954 0l118.275-354.826h139.914c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-170.667c-18.365 0-34.67 11.752-40.477 29.174l-87.523 262.569z",c.message_circle="M195.462 828.538l162.246-54.082c10.792-3.597 22.574-2.736 32.729 2.393 44.268 22.36 93.191 33.947 142.88 33.818 121.182-0.047 231.942-68.543 286.199-177.103 22.36-44.268 33.947-93.191 33.818-142.786l0.065-19.094c-8.961-162.426-138.655-292.121-298.731-301.017l-21.445-0c-49.594-0.129-98.518 11.458-142.948 33.899-108.398 54.176-176.894 164.935-176.941 286.212-0.129 49.594 11.458 98.518 33.818 142.786 5.129 10.154 5.99 21.936 2.393 32.729l-54.082 162.246zM938.667 490.613c0.155 63.015-14.572 125.176-42.901 181.262-68.622 137.304-208.918 224.066-362.321 224.125-56.963 0.149-113.23-11.864-165.063-35.153l-226.889 75.63c-33.355 11.118-65.088-20.615-53.97-53.97l75.63-226.889c-23.288-51.832-35.301-108.091-35.153-164.968 0.059-153.498 86.821-293.793 223.964-362.334 56.265-28.419 118.447-43.147 181.37-42.982l23.684 0.065c205.856 11.357 370.228 175.729 381.65 383.935v21.279z",c.image="M853.333 536.994v-323.66c0-23.564-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 18.296 11.516 33.902 27.694 39.966l454.136-454.136c16.662-16.662 43.677-16.662 60.34 0l140.497 140.497zM853.333 657.673l-170.667-170.667-366.327 366.327h494.327c23.564 0 42.667-19.103 42.667-42.667v-152.994zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128zM362.667 469.333c-58.91 0-106.667-47.756-106.667-106.667s47.756-106.667 106.667-106.667c58.91 0 106.667 47.756 106.667 106.667s-47.756 106.667-106.667 106.667zM362.667 384c11.782 0 21.333-9.551 21.333-21.333s-9.551-21.333-21.333-21.333c-11.782 0-21.333 9.551-21.333 21.333s9.551 21.333 21.333 21.333z",c.credit_card="M938.667 384v-128c0-23.564-19.103-42.667-42.667-42.667h-768c-23.564 0-42.667 19.103-42.667 42.667v128h853.333zM938.667 469.333h-853.333v298.667c0 23.564 19.103 42.667 42.667 42.667h768c23.564 0 42.667-19.103 42.667-42.667v-298.667zM128 128h768c70.692 0 128 57.308 128 128v512c0 70.692-57.308 128-128 128h-768c-70.692 0-128-57.308-128-128v-512c-0-70.692 57.308-128 128-128z",c.play_circle="M512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384zM450.334 305.833l256 170.667c25.333 16.888 25.333 54.113 0 71.002l-256 170.667c-28.354 18.903-66.334-1.423-66.334-35.501v-341.333c0-34.078 37.98-54.404 66.334-35.501zM469.333 421.057v181.887l136.415-90.943-136.415-90.943z",c.search="M672.504 732.844c-61.751 48.737-139.731 77.823-224.504 77.823-200.295 0-362.667-162.371-362.667-362.667s162.371-362.667 362.667-362.667c200.295 0 362.667 162.371 362.667 362.667 0 84.773-29.086 162.753-77.823 224.504l193.326 193.326c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-193.326-193.326zM448 725.333c153.167 0 277.333-124.166 277.333-277.333s-124.166-277.333-277.333-277.333c-153.167 0-277.333 124.166-277.333 277.333s124.166 277.333 277.333 277.333z",c.dollar_sign="M554.333 170.667H725c23.564 0 42.667 19.102 42.667 42.666C767.667 236.897 748.564 256 725 256H554.333v213.333h64c106.039 0 192 85.962 192 192 0 106.039-85.961 192-192 192h-64v128c0 23.564-19.102 42.667-42.666 42.667-23.564 0-42.667-19.103-42.667-42.667v-128H255.667c-23.564 0-42.667-19.102-42.667-42.666C213 787.103 232.103 768 255.667 768H469V554.667h-64c-106.039 0-192-85.962-192-192 0-106.039 85.961-192 192-192h64v-128C469 19.103 488.103 0 511.667 0s42.666 19.103 42.666 42.667v128zm0 384V768h64C677.243 768 725 720.244 725 661.333c0-58.91-47.756-106.666-106.667-106.666h-64zM469 469.333V256h-64c-58.91 0-106.667 47.756-106.667 106.667 0 58.91 47.757 106.666 106.667 106.666h64z",c.worker="M177.515 966.904c-11.762 14.448-33.168 16.881-47.74 5.49l-29.967-23.425c-14.604-11.416-17.454-32.664-6.214-47.66l0.971-1.295c11.172-14.906 12.835-40.058 3.596-56.388l-4.159-7.35c-9.186-16.236-31.543-27.87-50.186-25.96l-1.61 0.165c-18.531 1.899-35.393-11.516-37.652-29.874l-4.645-37.751c-2.264-18.398 10.74-35.437 29.294-38.094l1.603-0.23c18.442-2.641 37.406-19.254 42.362-37.123l2.376-8.566c4.954-17.862-2.656-41.806-17.191-53.639l-1.256-1.022c-14.448-11.762-16.881-33.168-5.49-47.74l23.425-29.967c11.416-14.604 32.664-17.454 47.66-6.214l1.295 0.971c14.906 11.172 40.058 12.835 56.388 3.596l7.35-4.159c16.236-9.186 27.87-31.543 25.96-50.186l-0.165-1.61c-1.899-18.531 11.516-35.393 29.874-37.652l37.751-4.645c18.398-2.264 35.437 10.74 38.094 29.294l0.23 1.603c2.641 18.442 19.254 37.406 37.123 42.362l8.566 2.376c17.862 4.953 41.806-2.656 53.639-17.191l1.022-1.256c11.762-14.448 33.168-16.881 47.74-5.49l29.967 23.425c14.604 11.416 17.454 32.664 6.214 47.66l-0.971 1.295c-11.172 14.906-12.835 40.058-3.596 56.388l4.159 7.35c9.186 16.236 31.543 27.87 50.186 25.96l1.61-0.165c18.531-1.899 35.393 11.516 37.652 29.874l4.645 37.751c2.264 18.398-10.74 35.437-29.294 38.094l-1.603 0.23c-18.442 2.641-37.406 19.254-42.362 37.123l-2.376 8.566c-4.953 17.862 2.656 41.806 17.191 53.639l1.256 1.022c14.448 11.762 16.881 33.168 5.49 47.74l-23.425 29.967c-11.416 14.604-32.664 17.454-47.66 6.214l-1.295-0.971c-14.906-11.172-40.058-12.835-56.388-3.596l-7.35 4.159c-16.236 9.186-27.87 31.543-25.96 50.186l0.165 1.61c1.899 18.531-11.516 35.393-29.874 37.652l-37.751 4.645c-18.398 2.264-35.437-10.74-38.094-29.294l-0.23-1.603c-2.641-18.442-19.254-37.406-37.123-42.362l-8.566-2.376c-17.862-4.953-41.806 2.656-53.639 17.191l-1.022 1.256zM314.266 852.379c70.166-8.615 120.062-72.48 111.447-142.645s-72.48-120.062-142.645-111.447c-70.166 8.615-120.062 72.48-111.447 142.645s72.48 120.062 142.645 111.447zM638.981 554.748c-9.637 15.944-30.496 21.333-46.511 12.081l-32.935-19.026c-16.051-9.272-21.83-29.917-12.787-46.332l0.781-1.418c8.989-16.316 7.135-41.455-4.287-56.34l-5.141-6.7c-11.356-14.8-35.115-23.209-53.31-18.723l-1.572 0.388c-18.086 4.459-36.652-6.478-41.443-24.343l-9.854-36.737c-4.802-17.904 5.704-36.587 23.707-41.8l1.555-0.45c17.895-5.182 34.362-24.272 36.783-42.658l1.16-8.814c2.419-18.377-8.448-41.029-24.489-50.724l-1.386-0.837c-15.944-9.637-21.333-30.496-12.081-46.511l19.026-32.935c9.272-16.051 29.917-21.83 46.332-12.787l1.418 0.781c16.316 8.989 41.455 7.135 56.34-4.287l6.7-5.141c14.8-11.356 23.209-35.115 18.723-53.31l-0.388-1.572c-4.459-18.086 6.478-36.652 24.343-41.443l36.737-9.854c17.904-4.802 36.587 5.704 41.8 23.707l0.45 1.555c5.182 17.895 24.272 34.362 42.658 36.783l8.814 1.16c18.377 2.419 41.029-8.448 50.724-24.489l0.837-1.386c9.637-15.944 30.496-21.333 46.511-12.081l32.935 19.026c16.051 9.272 21.83 29.917 12.787 46.332l-0.781 1.418c-8.989 16.316-7.135 41.455 4.287 56.34l5.141 6.7c11.356 14.8 35.115 23.209 53.31 18.723l1.572-0.388c18.086-4.459 36.652 6.478 41.443 24.343l9.854 36.737c4.802 17.904-5.704 36.587-23.707 41.8l-1.555 0.45c-17.895 5.182-34.362 24.272-36.783 42.658l-1.16 8.814c-2.419 18.377 8.448 41.029 24.489 50.724l1.386 0.837c15.944 9.637 21.333 30.496 12.081 46.511l-19.026 32.935c-9.272 16.051-29.917 21.83-46.332 12.787l-1.418-0.781c-16.316-8.989-41.455-7.135-56.34 4.287l-6.7 5.141c-14.8 11.356-23.209 35.115-18.723 53.31l0.388 1.572c4.459 18.086-6.478 36.652-24.343 41.443l-36.737 9.854c-17.904 4.802-36.587-5.704-41.8-23.707l-0.45-1.555c-5.182-17.895-24.272-34.362-42.658-36.783l-8.814-1.16c-18.377-2.419-41.029 8.448-50.724 24.489l-0.837 1.386zM758.462 422.305c68.284-18.297 108.806-88.484 90.51-156.767s-88.484-108.806-156.767-90.51c-68.284 18.297-108.806 88.484-90.51 156.767s88.484 108.806 156.767 90.51z",c.square="M213.333 170.667c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-597.333c0-23.564-19.103-42.667-42.667-42.667h-597.333zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128z",c.tool="M763.502 0.571c-77.008-4.934-155.9 22.112-214.627 80.818-72.225 72.195-93.623 174.034-69.609 266.373l-438.681 438.881c-54.114 54.090-54.112 142.699 0 196.789 54.11 54.092 142.752 54.090 196.862 0l439.044-438.88c92.345 23.959 194.278 2.585 266.472-69.583 78.305-78.274 99.693-191.946 64.895-289.93-3.996-11.212-13.447-19.605-25.057-22.249s-23.765 0.827-32.226 9.202l-97.888 97.851c-27.694 27.684-70.919 27.684-98.613 0s-27.694-70.53 0-98.214l97.888-97.851c8.554-8.448 12.14-20.712 9.485-32.435s-11.176-21.247-22.536-25.188c-24.506-8.696-49.74-13.939-75.41-15.584zM756.976 70.154l-52.207 52.187c-54.11 54.091-54.11 142.699 0 196.79s142.752 54.091 196.862 0l52.207-51.825c3.171 56.973-16.456 114.665-60.182 158.374-59.043 59.022-143.928 75.044-217.528 48.926-12.612-4.543-26.714-1.442-36.255 7.973l-451.734 451.565c-27.695 27.685-70.919 27.684-98.613 0s-27.695-70.892 0-98.576l451.734-451.202c9.546-9.458 12.791-23.565 8.338-36.241-26.128-73.573-10.465-158.425 48.581-217.447 43.729-43.713 101.797-63.696 158.795-60.523z",c.shopping_cart="M341.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM341.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM853.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM853.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM278.906 213.333h702.427c26.929 0 47.123 24.639 41.836 51.044l-71.667 357.908c-12.079 60.815-66.009 104.228-127.182 103.048l-450.625-0.002c-64.673 0.549-119.595-47.233-127.995-111.324l-64.858-491.555c-2.781-21.214-20.845-37.088-42.175-37.12h-96c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667l96.065 0c64.186 0.097 118.376 47.718 126.715 111.325l13.459 102.008zM290.165 298.667l40.139 304.215c2.802 21.376 21.109 37.303 43.029 37.118l451.804 0.008c20.664 0.396 38.64-14.075 42.68-34.412l61.459-306.929h-639.111z",c.check_circle="M853.336 472.588c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667l-0 39.704c-0.119 207.853-136.938 390.871-336.261 449.804s-413.668-20.256-526.798-194.625c-113.13-174.369-98.095-402.38 36.952-560.384s357.934-208.363 547.793-123.767c21.524 9.591 31.198 34.814 21.608 56.338s-34.814 31.198-56.338 21.608c-155.339-69.215-337.702-28.013-448.194 101.264s-122.794 315.83-30.233 458.496c92.561 142.665 267.934 207.457 431.017 159.238s275.025-197.96 275.122-367.997v-39.68zM469.336 537.262l439.163-439.163c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-469.333 469.333c-16.662 16.662-43.677 16.662-60.34 0l-128-128c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l97.83 97.83z",c.alert_triangle="M421.511 147.152c23.327-38.457 64.821-61.819 109.562-61.819s86.236 23.362 109.562 61.819l361.733 603.896c22.743 39.386 22.879 87.881 0.357 127.394s-64.319 64.106-110.266 64.609l-723.242-0.003c-45.478-0.5-87.275-25.094-109.797-64.606s-22.386-88.008 0.703-127.983l361.387-603.307zM494.644 191.121l-360.969 602.598c-7.581 13.129-7.626 29.294-0.119 42.465s21.44 21.369 36.13 21.533l722.304 0.003c15.159-0.167 29.092-8.365 36.599-21.535s7.462-29.336 0.228-41.875l-361.264-603.104c-7.735-12.751-21.566-20.539-36.48-20.539-14.881 0-28.685 7.753-36.429 20.455zM488.406 388.384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM531.073 772.384c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",c.slash="M211.972 272.312c-52.549 65.693-83.972 149.021-83.972 239.688 0 212.077 171.923 384 384 384 90.667 0 173.995-31.423 239.688-83.972l-539.716-539.716zM272.312 211.972l539.716 539.716c52.549-65.693 83.972-149.021 83.972-239.688 0-212.077-171.923-384-384-384-90.667 0-173.995 31.423-239.688 83.972zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333z",c.bell="M768 597.333v-213.333c0-141.385-114.615-256-256-256s-256 114.615-256 256v213.333c0 31.086-8.311 60.231-22.832 85.333h557.664c-14.521-25.103-22.832-54.247-22.832-85.333zM938.667 768h-853.333c-56.889 0-56.889-85.333 0-85.333 47.128 0 85.333-38.205 85.333-85.333v-213.333c0-188.513 152.82-341.333 341.333-341.333s341.333 152.82 341.333 341.333v213.333c0 47.128 38.205 85.333 85.333 85.333 56.889 0 56.889 85.333 0 85.333zM622.72 917.409c-22.899 39.475-65.084 63.773-110.72 63.773s-87.821-24.298-110.72-63.773c-16.5-28.444 4.023-64.076 36.907-64.076h147.627c32.884 0 53.407 35.631 36.907 64.076z",c.x="M572.34 512l225.83 225.83c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-225.83-225.83-225.83 225.83c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l225.83-225.83-225.83-225.83c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l225.83 225.83 225.83-225.83c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-225.83 225.83z",c.lock="M213.333 512c-23.564 0-42.667 19.103-42.667 42.667v298.667c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-298.667c0-23.564-19.103-42.667-42.667-42.667h-597.333zM256 426.667v-128c0-141.385 114.615-256 256-256s256 114.615 256 256v128h42.667c70.692 0 128 57.308 128 128v298.667c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-298.667c0-70.692 57.308-128 128-128h42.667zM341.333 426.667h341.333v-128c0-94.257-76.41-170.667-170.667-170.667s-170.667 76.41-170.667 170.667v128z",c.eye="M109.842 542.186c24.524 37.972 53.497 75.97 86.619 111.3 92.657 98.834 198.411 157.181 315.54 157.181s222.882-58.347 315.54-157.181c33.122-35.33 62.095-73.328 86.619-111.3 6.961-10.778 13.134-20.9 18.505-30.186-5.371-9.286-11.544-19.408-18.505-30.186-24.524-37.972-53.497-75.97-86.619-111.3-92.657-98.834-198.411-157.181-315.54-157.181s-222.882 58.347-315.54 157.181c-33.122 35.33-62.095 73.328-86.619 111.3-6.961 10.778-13.134 20.9-18.505 30.186 5.371 9.286 11.544 19.408 18.505 30.186zM4.504 492.919c5.998-11.995 17.254-32.007 33.654-57.4 27.143-42.028 59.17-84.030 96.048-123.367 107.343-114.499 233.589-184.152 377.794-184.152s270.451 69.653 377.794 184.152c36.878 39.337 68.905 81.339 96.048 123.367 16.4 25.393 27.656 45.405 33.654 57.4 6.006 12.012 6.006 26.15 0 38.162-5.998 11.995-17.254 32.007-33.654 57.4-27.143 42.028-59.17 84.030-96.048 123.367-107.343 114.499-233.589 184.152-377.794 184.152s-270.451-69.653-377.794-184.152c-36.878-39.337-68.905-81.339-96.048-123.367-16.4-25.393-27.656-45.405-33.654-57.4-6.006-12.012-6.006-26.15 0-38.162zM512 682.667c94.257 0 170.667-76.41 170.667-170.667s-76.41-170.667-170.667-170.667c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667zM512 597.333c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c47.128 0 85.333 38.205 85.333 85.333s-38.205 85.333-85.333 85.333z",c.refresh_cw="M85.333 695.973v157.361c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256c0-23.564 19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-148.298l120.449 113.198c82.851 82.893 202.437 117.483 316.746 91.619s207.356-108.565 246.454-219.050c7.861-22.214 32.242-33.85 54.456-25.989s33.85 32.242 25.989 54.456c-48.871 138.107-165.18 241.483-308.067 273.813s-292.369-10.908-394.973-113.593l-126.090-118.481zM938.667 328.027v-157.361c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256c0 23.564-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h148.298l-120.449-113.198c-82.851-82.893-202.437-117.483-316.746-91.619s-207.356 108.565-246.454 219.050c-7.861 22.214-32.242 33.85-54.456 25.989s-33.85-32.242-25.989-54.456c48.871-138.107 165.18-241.483 308.067-273.813s292.369 10.908 394.973 113.593l126.090 118.481z"}); |
@@ -1,1 +0,1 @@ | ||
import{g as a,h as s,i as e,j as r,k as t,l as o,m as n,n as c,o as i,p as u,q as m,r as l,s as d,t as f,u as g,v as y,w as h,x as p,y as b}from"./chunk-d74facf4.js";function w(a){switch(a){case"cms":return"CMS";case"ai-ml":return"AI/ML";default:return a.replace(/-/g," ")}}function L(a){const s={};return Array.isArray(a)&&a.forEach(a=>((a.body.tags||["uncategorized"]).forEach(e=>{s[e]=s[e]||[],s[e].push(a)}),{})),s}function k(a,s){if(!a||!s)return[];const e=a.toLocaleLowerCase();return s.filter(a=>[a.body.label,a.body.name.toLocaleLowerCase()].concat(a.body.tags||[]).some(a=>a.includes(e)))}const z={"ai-ml":a,api:s,authentication:e,cms:r,database:t,infrastructure:o,logging:n,"memory-store":c,monitoring:i,messaging:u,optimization:m,payment:l,runtime:d,search:f,"sell-your-service":g,worker:y,uncategorized:h,utility:p,ecommerce:b};export{z as a,k as b,L as c,w as d}; | ||
import{i as a,j as s,k as e,l as r,m as t,n as o,o as n,p as c,q as i,r as u,s as m,t as l,u as d,v as f,w as g,x as y,y as p,z as b,A as h}from"./chunk-d74facf4.js";function w(a){switch(a){case"cms":return"CMS";case"ai-ml":return"AI/ML";default:return a.replace(/-/g," ")}}function L(a){const s={};return Array.isArray(a)&&a.forEach(a=>((a.body.tags||["uncategorized"]).forEach(e=>{s[e]=s[e]||[],s[e].push(a)}),{})),s}function z(a,s){if(!a||!s)return[];const e=a.toLocaleLowerCase();return s.filter(a=>[a.body.label,a.body.name.toLocaleLowerCase()].concat(a.body.tags||[]).some(a=>a.includes(e)))}const A={"ai-ml":a,api:s,authentication:e,cms:r,database:t,infrastructure:o,logging:n,"memory-store":c,monitoring:i,messaging:u,optimization:m,payment:l,runtime:d,search:f,"sell-your-service":g,worker:y,uncategorized:p,utility:b,ecommerce:h};export{A as a,z as b,L as c,w as d}; |
@@ -1,1 +0,1 @@ | ||
const c="M640 761.076l-215.523-646.569c-12.966-38.899-67.988-38.899-80.954 0l-118.275 354.826h-139.914c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667h170.667c18.365 0 34.67-11.752 40.477-29.174l87.523-262.569 215.523 646.569c12.966 38.899 67.988 38.899 80.954 0l118.275-354.826h139.914c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-170.667c-18.365 0-34.67 11.752-40.477 29.174l-87.523 262.569z",s="M535.429 460.129c16.838-95.227 100.004-167.558 200.063-167.558 112.21 0 203.175 90.964 203.175 203.175s-90.964 203.175-203.175 203.175c-96.666 0-177.564-67.507-198.123-157.95-1.655 0.205-3.341 0.311-5.052 0.311h-58.19l-145.577 188.417c0.391 3.231 0.592 6.521 0.592 9.857 0 44.884-36.386 81.27-81.27 81.27s-81.27-36.386-81.27-81.27c0-44.884 36.386-81.27 81.27-81.27 10.227 0 20.014 1.889 29.029 5.338l94.525-122.341h-125.724c-3.744 0-7.369-0.506-10.811-1.454-14.476 22.378-39.652 37.188-68.287 37.188-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c32.23 0 60.078 18.761 73.218 45.958 1.92-0.278 3.883-0.422 5.88-0.422h129.776l-105.627-129.812c-6.99 1.959-14.362 3.007-21.978 3.007-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c44.884 0 81.27 36.386 81.27 81.27 0 6.714-0.814 13.239-2.349 19.479l153.459 188.596h52.065c1.047 0 2.084 0.040 3.111 0.117zM735.492 617.651c67.326 0 121.905-54.579 121.905-121.905s-54.579-121.905-121.905-121.905c-67.326 0-121.905 54.579-121.905 121.905s54.579 121.905 121.905 121.905z",l="M421.511 147.152c23.327-38.457 64.821-61.819 109.562-61.819s86.236 23.362 109.562 61.819l361.733 603.896c22.743 39.386 22.879 87.881 0.357 127.394s-64.319 64.106-110.266 64.609l-723.242-0.003c-45.478-0.5-87.275-25.094-109.797-64.606s-22.386-88.008 0.703-127.983l361.387-603.307zM494.644 191.121l-360.969 602.598c-7.581 13.129-7.626 29.294-0.119 42.465s21.44 21.369 36.13 21.533l722.304 0.003c15.159-0.167 29.092-8.365 36.599-21.535s7.462-29.336 0.228-41.875l-361.264-603.104c-7.735-12.751-21.566-20.539-36.48-20.539-14.881 0-28.685 7.753-36.429 20.455zM488.406 388.384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM531.073 772.384c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",h="M750.327 469.333l-183.163-183.163c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l256 256c16.662 16.662 16.662 43.677 0 60.34l-256 256c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l183.163-183.163h-579.66c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h579.66z",v="M664.994 298.667h-280.994c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h384c23.564 0 42.667 19.103 42.667 42.667v384c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-280.994l-439.163 439.163c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l439.163-439.163z",z="M768 597.333v-213.333c0-141.385-114.615-256-256-256s-256 114.615-256 256v213.333c0 31.086-8.311 60.231-22.832 85.333h557.664c-14.521-25.103-22.832-54.247-22.832-85.333zM938.667 768h-853.333c-56.889 0-56.889-85.333 0-85.333 47.128 0 85.333-38.205 85.333-85.333v-213.333c0-188.513 152.82-341.333 341.333-341.333s341.333 152.82 341.333 341.333v213.333c0 47.128 38.205 85.333 85.333 85.333 56.889 0 56.889 85.333 0 85.333zM622.72 917.409c-22.899 39.475-65.084 63.773-110.72 63.773s-87.821-24.298-110.72-63.773c-16.5-28.444 4.023-64.076 36.907-64.076h147.627c32.884 0 53.407 35.631 36.907 64.076z",M="M810.667 682.667v-554.667h-533.333c-35.346 0-64 28.654-64 64v505.037c19.397-9.215 41.097-14.371 64-14.371h533.333zM810.667 768h-533.333c-35.346 0-64 28.654-64 64s28.654 64 64 64h533.333v-128zM277.333 42.667h576c23.564 0 42.667 19.103 42.667 42.667v853.333c0 23.564-19.103 42.667-42.667 42.667h-576c-82.475 0-149.333-66.859-149.333-149.333v-640c0-82.475 66.859-149.333 149.333-149.333z",a="M853.336 472.588c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667l-0 39.704c-0.119 207.853-136.938 390.871-336.261 449.804s-413.668-20.256-526.798-194.625c-113.13-174.369-98.095-402.38 36.952-560.384s357.934-208.363 547.793-123.767c21.524 9.591 31.198 34.814 21.608 56.338s-34.814 31.198-56.338 21.608c-155.339-69.215-337.702-28.013-448.194 101.264s-122.794 315.83-30.233 458.496c92.561 142.665 267.934 207.457 431.017 159.238s275.025-197.96 275.122-367.997v-39.68zM469.336 537.262l439.163-439.163c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-469.333 469.333c-16.662 16.662-43.677 16.662-60.34 0l-128-128c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l97.83 97.83z",C="M384 707.66l-183.163-183.163c-16.662-16.662-43.677-16.662-60.34 0s-16.662 43.677 0 60.34l213.333 213.333c16.662 16.662 43.677 16.662 60.34 0l469.333-469.333c16.662-16.662 16.662-43.677 0-60.34s-43.677-16.662-60.34 0l-439.163 439.163z",H="M256 213.333c-23.564 0-42.667 19.103-42.667 42.667v512c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-512c0-23.564-19.103-42.667-42.667-42.667h-512zM128 554.667v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333v-85.333c0-70.692 57.308-128 128-128h85.333v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h170.667v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h85.333c70.692 0 128 57.308 128 128v85.333h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128c0 70.692-57.308 128-128 128h-85.333v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-170.667v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-85.333c-70.692 0-128-57.308-128-128v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM384 341.333c-23.564 0-42.667 19.103-42.667 42.667v256c0 23.564 19.103 42.667 42.667 42.667h256c23.564 0 42.667-19.103 42.667-42.667v-256c0-23.564-19.103-42.667-42.667-42.667h-256zM426.667 597.333v-170.667h170.667v170.667h-170.667z",o="M938.667 384v-128c0-23.564-19.103-42.667-42.667-42.667h-768c-23.564 0-42.667 19.103-42.667 42.667v128h853.333zM938.667 469.333h-853.333v298.667c0 23.564 19.103 42.667 42.667 42.667h768c23.564 0 42.667-19.103 42.667-42.667v-298.667zM128 128h768c70.692 0 128 57.308 128 128v512c0 70.692-57.308 128-128 128h-768c-70.692 0-128-57.308-128-128v-512c-0-70.692 57.308-128 128-128z",n="M135.758 303.835v208.165c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-208.165c-84.941 44.139-220.154 68.529-372.364 68.529s-287.423-24.39-372.364-68.529zM42.667 186.182c0-116.678 208.511-186.182 465.455-186.182s465.455 69.504 465.455 186.182v651.636c0 116.914-207.484 186.182-465.455 186.182s-465.455-69.268-465.455-186.182v-651.636zM880.485 629.912c-84.767 44.020-219.728 68.27-372.364 68.27s-287.597-24.25-372.364-68.27v207.906c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-207.906zM508.121 279.273c205.771 0 372.364-55.531 372.364-93.091s-166.593-93.091-372.364-93.091c-205.771 0-372.364 55.531-372.364 93.091s166.593 93.091 372.364 93.091z",t="M554.333 170.667H725c23.564 0 42.667 19.102 42.667 42.666C767.667 236.897 748.564 256 725 256H554.333v213.333h64c106.039 0 192 85.962 192 192 0 106.039-85.961 192-192 192h-64v128c0 23.564-19.102 42.667-42.666 42.667-23.564 0-42.667-19.103-42.667-42.667v-128H255.667c-23.564 0-42.667-19.102-42.667-42.666C213 787.103 232.103 768 255.667 768H469V554.667h-64c-106.039 0-192-85.962-192-192 0-106.039 85.961-192 192-192h64v-128C469 19.103 488.103 0 511.667 0s42.666 19.103 42.666 42.667v128zm0 384V768h64C677.243 768 725 720.244 725 661.333c0-58.91-47.756-106.666-106.667-106.666h-64zM469 469.333V256h-64c-58.91 0-106.667 47.756-106.667 106.667 0 58.91 47.757 106.666 106.667 106.666h64z",w="M109.842 542.186c24.524 37.972 53.497 75.97 86.619 111.3 92.657 98.834 198.411 157.181 315.54 157.181s222.882-58.347 315.54-157.181c33.122-35.33 62.095-73.328 86.619-111.3 6.961-10.778 13.134-20.9 18.505-30.186-5.371-9.286-11.544-19.408-18.505-30.186-24.524-37.972-53.497-75.97-86.619-111.3-92.657-98.834-198.411-157.181-315.54-157.181s-222.882 58.347-315.54 157.181c-33.122 35.33-62.095 73.328-86.619 111.3-6.961 10.778-13.134 20.9-18.505 30.186 5.371 9.286 11.544 19.408 18.505 30.186zM4.504 492.919c5.998-11.995 17.254-32.007 33.654-57.4 27.143-42.028 59.17-84.030 96.048-123.367 107.343-114.499 233.589-184.152 377.794-184.152s270.451 69.653 377.794 184.152c36.878 39.337 68.905 81.339 96.048 123.367 16.4 25.393 27.656 45.405 33.654 57.4 6.006 12.012 6.006 26.15 0 38.162-5.998 11.995-17.254 32.007-33.654 57.4-27.143 42.028-59.17 84.030-96.048 123.367-107.343 114.499-233.589 184.152-377.794 184.152s-270.451-69.653-377.794-184.152c-36.878-39.337-68.905-81.339-96.048-123.367-16.4-25.393-27.656-45.405-33.654-57.4-6.006-12.012-6.006-26.15 0-38.162zM512 682.667c94.257 0 170.667-76.41 170.667-170.667s-76.41-170.667-170.667-170.667c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667zM512 597.333c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c47.128 0 85.333 38.205 85.333 85.333s-38.205 85.333-85.333 85.333z",V="M810.667 426.667h-256c-23.564 0-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667 19.103-42.667 42.667v682.667c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-426.667h42.667c23.564 0 42.667-19.103 42.667-42.667 0-5.891-1.194-11.503-3.353-16.608 2.229 5.408 3.353 10.95 3.353 16.608v469.333c0 70.692-57.308 128-128 128h-512c-70.692 0-128-57.308-128-128v-682.667c0-70.692 57.308-128 128-128h298.667c11.316 0 22.168 4.495 30.17 12.497l298.667 298.667c4.001 4.001 7.125 8.714 9.249 13.842zM597.333 188.34v152.994h152.994l-152.994-152.994z",d="M853.333 536.994v-323.66c0-23.564-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 18.296 11.516 33.902 27.694 39.966l454.136-454.136c16.662-16.662 43.677-16.662 60.34 0l140.497 140.497zM853.333 657.673l-170.667-170.667-366.327 366.327h494.327c23.564 0 42.667-19.103 42.667-42.667v-152.994zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128zM362.667 469.333c-58.91 0-106.667-47.756-106.667-106.667s47.756-106.667 106.667-106.667c58.91 0 106.667 47.756 106.667 106.667s-47.756 106.667-106.667 106.667zM362.667 384c11.782 0 21.333-9.551 21.333-21.333s-9.551-21.333-21.333-21.333c-11.782 0-21.333 9.551-21.333 21.333s9.551 21.333 21.333 21.333z",e="M128 42.667h768c47.128 0 85.333 38.205 85.333 85.333v768c0 47.128-38.205 85.333-85.333 85.333h-768c-47.128 0-85.333-38.205-85.333-85.333v-768c0-47.128 38.205-85.333 85.333-85.333zM128 128v768h768v-768h-768zM384 426.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM384 682.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM725.333 469.333v-170.667h-426.667v170.667h426.667zM725.333 554.667h-426.667v170.667h426.667v-170.667zM213.333 256c0-23.564 19.103-42.667 42.667-42.667h512c23.564 0 42.667 19.103 42.667 42.667v512c0 23.564-19.103 42.667-42.667 42.667h-512c-23.564 0-42.667-19.103-42.667-42.667v-512z",i="M272.312 812.028c65.693 52.549 149.021 83.972 239.688 83.972s173.995-31.423 239.688-83.972l-122.039-122.039c-33.725 22.337-74.168 35.345-117.649 35.345s-83.923-13.008-117.649-35.345l-122.039 122.039zM211.972 751.688l122.039-122.039c-22.337-33.725-35.345-74.168-35.345-117.649s13.008-83.923 35.345-117.649l-122.039-122.039c-52.549 65.693-83.972 149.021-83.972 239.688s31.423 173.995 83.972 239.688zM689.988 394.351c22.337 33.725 35.345 74.168 35.345 117.649s-13.008 83.923-35.345 117.649l122.039 122.039c52.549-65.693 83.972-149.021 83.972-239.688s-31.423-173.995-83.972-239.688l-122.039 122.039zM629.649 334.012l122.039-122.039c-65.693-52.549-149.021-83.972-239.688-83.972s-173.995 31.423-239.688 83.972l122.039 122.039c33.725-22.337 74.168-35.345 117.649-35.345s83.923 13.008 117.649 35.345zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z",m="M213.333 512c-23.564 0-42.667 19.103-42.667 42.667v298.667c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-298.667c0-23.564-19.103-42.667-42.667-42.667h-597.333zM256 426.667v-128c0-141.385 114.615-256 256-256s256 114.615 256 256v128h42.667c70.692 0 128 57.308 128 128v298.667c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-298.667c0-70.692 57.308-128 128-128h42.667zM341.333 426.667h341.333v-128c0-94.257-76.41-170.667-170.667-170.667s-170.667 76.41-170.667 170.667v128z",p="M753.778 384c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM896 213.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM896 554.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM753.778 725.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM128 298.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 469.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 810.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",r="M195.462 828.538l162.246-54.082c10.792-3.597 22.574-2.736 32.729 2.393 44.268 22.36 93.191 33.947 142.88 33.818 121.182-0.047 231.942-68.543 286.199-177.103 22.36-44.268 33.947-93.191 33.818-142.786l0.065-19.094c-8.961-162.426-138.655-292.121-298.731-301.017l-21.445-0c-49.594-0.129-98.518 11.458-142.948 33.899-108.398 54.176-176.894 164.935-176.941 286.212-0.129 49.594 11.458 98.518 33.818 142.786 5.129 10.154 5.99 21.936 2.393 32.729l-54.082 162.246zM938.667 490.613c0.155 63.015-14.572 125.176-42.901 181.262-68.622 137.304-208.918 224.066-362.321 224.125-56.963 0.149-113.23-11.864-165.063-35.153l-226.889 75.63c-33.355 11.118-65.088-20.615-53.97-53.97l75.63-226.889c-23.288-51.832-35.301-108.091-35.153-164.968 0.059-153.498 86.821-293.793 223.964-362.334 56.265-28.419 118.447-43.147 181.37-42.982l23.684 0.065c205.856 11.357 370.228 175.729 381.65 383.935v21.279z",x="M213.333 554.667h597.333c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667z",b="M512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384zM450.334 305.833l256 170.667c25.333 16.888 25.333 54.113 0 71.002l-256 170.667c-28.354 18.903-66.334-1.423-66.334-35.501v-341.333c0-34.078 37.98-54.404 66.334-35.501zM469.333 421.057v181.887l136.415-90.943-136.415-90.943z",f="M428.753 188.522l-33.346 33.346c-106.113 106.113-106.113 278.156 0 384.269s278.156 106.113 384.269 0l33.346-33.346-384.269-384.269zM746.33 385.42l96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 96.861 96.861c16.662 16.662 16.662 43.677 0 60.34l-63.516 63.516c-129.228 129.228-332.87 138.69-472.995 28.386l-214.915 214.915c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l214.915-214.915c-110.304-140.125-100.842-343.767 28.386-472.995l63.516-63.516c16.662-16.662 43.677-16.662 60.34 0l96.861 96.861 96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 130.207 130.207z",g="M554.667 469.333h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256v-256c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256z",j="M85.333 695.973v157.361c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256c0-23.564 19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-148.298l120.449 113.198c82.851 82.893 202.437 117.483 316.746 91.619s207.356-108.565 246.454-219.050c7.861-22.214 32.242-33.85 54.456-25.989s33.85 32.242 25.989 54.456c-48.871 138.107-165.18 241.483-308.067 273.813s-292.369-10.908-394.973-113.593l-126.090-118.481zM938.667 328.027v-157.361c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256c0 23.564-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h148.298l-120.449-113.198c-82.851-82.893-202.437-117.483-316.746-91.619s-207.356 108.565-246.454 219.050c-7.861 22.214-32.242 33.85-54.456 25.989s-33.85-32.242-25.989-54.456c48.871-138.107 165.18-241.483 308.067-273.813s292.369 10.908 394.973 113.593l126.090 118.481z",k="M672.504 732.844c-61.751 48.737-139.731 77.823-224.504 77.823-200.295 0-362.667-162.371-362.667-362.667s162.371-362.667 362.667-362.667c200.295 0 362.667 162.371 362.667 362.667 0 84.773-29.086 162.753-77.823 224.504l193.326 193.326c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-193.326-193.326zM448 725.333c153.167 0 277.333-124.166 277.333-277.333s-124.166-277.333-277.333-277.333c-153.167 0-277.333 124.166-277.333 277.333s124.166 277.333 277.333 277.333z",q="M531.081 976.829c-12.012 6.006-26.15 6.006-38.162 0-11.813-5.907-31.646-16.886-56.866-32.648-41.818-26.136-83.629-56.449-122.816-90.738-115.018-100.641-185.237-214.747-185.237-341.443v-341.333c0-19.578 13.325-36.644 32.318-41.393l341.333-85.333c6.794-1.699 13.902-1.699 20.696 0l341.333 85.333c18.994 4.748 32.318 21.814 32.318 41.393v341.333c0 126.696-70.219 240.802-185.237 341.443-39.187 34.289-80.998 64.602-122.816 90.738-25.219 15.762-45.052 26.741-56.866 32.648zM542.72 871.819c38.182-23.864 76.371-51.551 111.85-82.595 98.315-86.026 156.096-179.92 156.096-277.223v-308.020l-298.667-74.667-298.667 74.667v308.020c0 97.304 57.781 191.198 156.096 277.223 35.48 31.045 73.669 58.732 111.85 82.595 10.971 6.857 21.274 12.975 30.72 18.326 9.446-5.352 19.749-11.47 30.72-18.326z",u="M341.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM341.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM853.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM853.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM278.906 213.333h702.427c26.929 0 47.123 24.639 41.836 51.044l-71.667 357.908c-12.079 60.815-66.009 104.228-127.182 103.048l-450.625-0.002c-64.673 0.549-119.595-47.233-127.995-111.324l-64.858-491.555c-2.781-21.214-20.845-37.088-42.175-37.12h-96c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667l96.065 0c64.186 0.097 118.376 47.718 126.715 111.325l13.459 102.008zM290.165 298.667l40.139 304.215c2.802 21.376 21.109 37.303 43.029 37.118l451.804 0.008c20.664 0.396 38.64-14.075 42.68-34.412l61.459-306.929h-639.111z",y="M211.972 272.312c-52.549 65.693-83.972 149.021-83.972 239.688 0 212.077 171.923 384 384 384 90.667 0 173.995-31.423 239.688-83.972l-539.716-539.716zM272.312 211.972l539.716 539.716c52.549-65.693 83.972-149.021 83.972-239.688 0-212.077-171.923-384-384-384-90.667 0-173.995 31.423-239.688 83.972zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333z",A="M810.667 725.333h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM469.333 298.667v-170.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM128 640h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256zM213.333 426.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-298.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v298.667zM554.667 896c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384zM896 512c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384z",B="M213.333 170.667c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-597.333c0-23.564-19.103-42.667-42.667-42.667h-597.333zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128z",D="M763.502 0.571c-77.008-4.934-155.9 22.112-214.627 80.818-72.225 72.195-93.623 174.034-69.609 266.373l-438.681 438.881c-54.114 54.090-54.112 142.699 0 196.789 54.11 54.092 142.752 54.090 196.862 0l439.044-438.88c92.345 23.959 194.278 2.585 266.472-69.583 78.305-78.274 99.693-191.946 64.895-289.93-3.996-11.212-13.447-19.605-25.057-22.249s-23.765 0.827-32.226 9.202l-97.888 97.851c-27.694 27.684-70.919 27.684-98.613 0s-27.694-70.53 0-98.214l97.888-97.851c8.554-8.448 12.14-20.712 9.485-32.435s-11.176-21.247-22.536-25.188c-24.506-8.696-49.74-13.939-75.41-15.584zM756.976 70.154l-52.207 52.187c-54.11 54.091-54.11 142.699 0 196.79s142.752 54.091 196.862 0l52.207-51.825c3.171 56.973-16.456 114.665-60.182 158.374-59.043 59.022-143.928 75.044-217.528 48.926-12.612-4.543-26.714-1.442-36.255 7.973l-451.734 451.565c-27.695 27.685-70.919 27.684-98.613 0s-27.695-70.892 0-98.576l451.734-451.202c9.546-9.458 12.791-23.565 8.338-36.241-26.128-73.573-10.465-158.425 48.581-217.447 43.729-43.713 101.797-63.696 158.795-60.523z",E="M177.515 966.904c-11.762 14.448-33.168 16.881-47.74 5.49l-29.967-23.425c-14.604-11.416-17.454-32.664-6.214-47.66l0.971-1.295c11.172-14.906 12.835-40.058 3.596-56.388l-4.159-7.35c-9.186-16.236-31.543-27.87-50.186-25.96l-1.61 0.165c-18.531 1.899-35.393-11.516-37.652-29.874l-4.645-37.751c-2.264-18.398 10.74-35.437 29.294-38.094l1.603-0.23c18.442-2.641 37.406-19.254 42.362-37.123l2.376-8.566c4.954-17.862-2.656-41.806-17.191-53.639l-1.256-1.022c-14.448-11.762-16.881-33.168-5.49-47.74l23.425-29.967c11.416-14.604 32.664-17.454 47.66-6.214l1.295 0.971c14.906 11.172 40.058 12.835 56.388 3.596l7.35-4.159c16.236-9.186 27.87-31.543 25.96-50.186l-0.165-1.61c-1.899-18.531 11.516-35.393 29.874-37.652l37.751-4.645c18.398-2.264 35.437 10.74 38.094 29.294l0.23 1.603c2.641 18.442 19.254 37.406 37.123 42.362l8.566 2.376c17.862 4.953 41.806-2.656 53.639-17.191l1.022-1.256c11.762-14.448 33.168-16.881 47.74-5.49l29.967 23.425c14.604 11.416 17.454 32.664 6.214 47.66l-0.971 1.295c-11.172 14.906-12.835 40.058-3.596 56.388l4.159 7.35c9.186 16.236 31.543 27.87 50.186 25.96l1.61-0.165c18.531-1.899 35.393 11.516 37.652 29.874l4.645 37.751c2.264 18.398-10.74 35.437-29.294 38.094l-1.603 0.23c-18.442 2.641-37.406 19.254-42.362 37.123l-2.376 8.566c-4.953 17.862 2.656 41.806 17.191 53.639l1.256 1.022c14.448 11.762 16.881 33.168 5.49 47.74l-23.425 29.967c-11.416 14.604-32.664 17.454-47.66 6.214l-1.295-0.971c-14.906-11.172-40.058-12.835-56.388-3.596l-7.35 4.159c-16.236 9.186-27.87 31.543-25.96 50.186l0.165 1.61c1.899 18.531-11.516 35.393-29.874 37.652l-37.751 4.645c-18.398 2.264-35.437-10.74-38.094-29.294l-0.23-1.603c-2.641-18.442-19.254-37.406-37.123-42.362l-8.566-2.376c-17.862-4.953-41.806 2.656-53.639 17.191l-1.022 1.256zM314.266 852.379c70.166-8.615 120.062-72.48 111.447-142.645s-72.48-120.062-142.645-111.447c-70.166 8.615-120.062 72.48-111.447 142.645s72.48 120.062 142.645 111.447zM638.981 554.748c-9.637 15.944-30.496 21.333-46.511 12.081l-32.935-19.026c-16.051-9.272-21.83-29.917-12.787-46.332l0.781-1.418c8.989-16.316 7.135-41.455-4.287-56.34l-5.141-6.7c-11.356-14.8-35.115-23.209-53.31-18.723l-1.572 0.388c-18.086 4.459-36.652-6.478-41.443-24.343l-9.854-36.737c-4.802-17.904 5.704-36.587 23.707-41.8l1.555-0.45c17.895-5.182 34.362-24.272 36.783-42.658l1.16-8.814c2.419-18.377-8.448-41.029-24.489-50.724l-1.386-0.837c-15.944-9.637-21.333-30.496-12.081-46.511l19.026-32.935c9.272-16.051 29.917-21.83 46.332-12.787l1.418 0.781c16.316 8.989 41.455 7.135 56.34-4.287l6.7-5.141c14.8-11.356 23.209-35.115 18.723-53.31l-0.388-1.572c-4.459-18.086 6.478-36.652 24.343-41.443l36.737-9.854c17.904-4.802 36.587 5.704 41.8 23.707l0.45 1.555c5.182 17.895 24.272 34.362 42.658 36.783l8.814 1.16c18.377 2.419 41.029-8.448 50.724-24.489l0.837-1.386c9.637-15.944 30.496-21.333 46.511-12.081l32.935 19.026c16.051 9.272 21.83 29.917 12.787 46.332l-0.781 1.418c-8.989 16.316-7.135 41.455 4.287 56.34l5.141 6.7c11.356 14.8 35.115 23.209 53.31 18.723l1.572-0.388c18.086-4.459 36.652 6.478 41.443 24.343l9.854 36.737c4.802 17.904-5.704 36.587-23.707 41.8l-1.555 0.45c-17.895 5.182-34.362 24.272-36.783 42.658l-1.16 8.814c-2.419 18.377 8.448 41.029 24.489 50.724l1.386 0.837c15.944 9.637 21.333 30.496 12.081 46.511l-19.026 32.935c-9.272 16.051-29.917 21.83-46.332 12.787l-1.418-0.781c-16.316-8.989-41.455-7.135-56.34 4.287l-6.7 5.141c-14.8 11.356-23.209 35.115-18.723 53.31l0.388 1.572c4.459 18.086-6.478 36.652-24.343 41.443l-36.737 9.854c-17.904 4.802-36.587-5.704-41.8-23.707l-0.45-1.555c-5.182-17.895-24.272-34.362-42.658-36.783l-8.814-1.16c-18.377-2.419-41.029 8.448-50.724 24.489l-0.837 1.386zM758.462 422.305c68.284-18.297 108.806-88.484 90.51-156.767s-88.484-108.806-156.767-90.51c-68.284 18.297-108.806 88.484-90.51 156.767s88.484 108.806 156.767 90.51z",F="M572.34 512l225.83 225.83c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-225.83-225.83-225.83 225.83c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l225.83-225.83-225.83-225.83c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l225.83 225.83 225.83-225.83c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-225.83 225.83z";export{C as a,A as b,h as c,M as d,v as e,i as f,s as g,f as h,q as i,V as j,n as k,e as l,p as m,H as n,c as o,r as p,d as q,o as r,b as s,k as t,t as u,E as v,B as w,D as x,u as y,a as z,l as A,y as B,z as C,F as D,x as E,g as F,m as G,w as H,j as I}; | ||
const c="M640 761.076l-215.523-646.569c-12.966-38.899-67.988-38.899-80.954 0l-118.275 354.826h-139.914c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667h170.667c18.365 0 34.67-11.752 40.477-29.174l87.523-262.569 215.523 646.569c12.966 38.899 67.988 38.899 80.954 0l118.275-354.826h139.914c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-170.667c-18.365 0-34.67 11.752-40.477 29.174l-87.523 262.569z",s="M535.429 460.129c16.838-95.227 100.004-167.558 200.063-167.558 112.21 0 203.175 90.964 203.175 203.175s-90.964 203.175-203.175 203.175c-96.666 0-177.564-67.507-198.123-157.95-1.655 0.205-3.341 0.311-5.052 0.311h-58.19l-145.577 188.417c0.391 3.231 0.592 6.521 0.592 9.857 0 44.884-36.386 81.27-81.27 81.27s-81.27-36.386-81.27-81.27c0-44.884 36.386-81.27 81.27-81.27 10.227 0 20.014 1.889 29.029 5.338l94.525-122.341h-125.724c-3.744 0-7.369-0.506-10.811-1.454-14.476 22.378-39.652 37.188-68.287 37.188-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c32.23 0 60.078 18.761 73.218 45.958 1.92-0.278 3.883-0.422 5.88-0.422h129.776l-105.627-129.812c-6.99 1.959-14.362 3.007-21.978 3.007-44.884 0-81.27-36.386-81.27-81.27s36.386-81.27 81.27-81.27c44.884 0 81.27 36.386 81.27 81.27 0 6.714-0.814 13.239-2.349 19.479l153.459 188.596h52.065c1.047 0 2.084 0.040 3.111 0.117zM735.492 617.651c67.326 0 121.905-54.579 121.905-121.905s-54.579-121.905-121.905-121.905c-67.326 0-121.905 54.579-121.905 121.905s54.579 121.905 121.905 121.905z",l="M421.511 147.152c23.327-38.457 64.821-61.819 109.562-61.819s86.236 23.362 109.562 61.819l361.733 603.896c22.743 39.386 22.879 87.881 0.357 127.394s-64.319 64.106-110.266 64.609l-723.242-0.003c-45.478-0.5-87.275-25.094-109.797-64.606s-22.386-88.008 0.703-127.983l361.387-603.307zM494.644 191.121l-360.969 602.598c-7.581 13.129-7.626 29.294-0.119 42.465s21.44 21.369 36.13 21.533l722.304 0.003c15.159-0.167 29.092-8.365 36.599-21.535s7.462-29.336 0.228-41.875l-361.264-603.104c-7.735-12.751-21.566-20.539-36.48-20.539-14.881 0-28.685 7.753-36.429 20.455zM488.406 388.384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM531.073 772.384c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",h="M750.327 469.333l-183.163-183.163c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l256 256c16.662 16.662 16.662 43.677 0 60.34l-256 256c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l183.163-183.163h-579.66c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h579.66z",v="M664.994 298.667h-280.994c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h384c23.564 0 42.667 19.103 42.667 42.667v384c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-280.994l-439.163 439.163c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l439.163-439.163z",z="M768 597.333v-213.333c0-141.385-114.615-256-256-256s-256 114.615-256 256v213.333c0 31.086-8.311 60.231-22.832 85.333h557.664c-14.521-25.103-22.832-54.247-22.832-85.333zM938.667 768h-853.333c-56.889 0-56.889-85.333 0-85.333 47.128 0 85.333-38.205 85.333-85.333v-213.333c0-188.513 152.82-341.333 341.333-341.333s341.333 152.82 341.333 341.333v213.333c0 47.128 38.205 85.333 85.333 85.333 56.889 0 56.889 85.333 0 85.333zM622.72 917.409c-22.899 39.475-65.084 63.773-110.72 63.773s-87.821-24.298-110.72-63.773c-16.5-28.444 4.023-64.076 36.907-64.076h147.627c32.884 0 53.407 35.631 36.907 64.076z",M="M810.667 682.667v-554.667h-533.333c-35.346 0-64 28.654-64 64v505.037c19.397-9.215 41.097-14.371 64-14.371h533.333zM810.667 768h-533.333c-35.346 0-64 28.654-64 64s28.654 64 64 64h533.333v-128zM277.333 42.667h576c23.564 0 42.667 19.103 42.667 42.667v853.333c0 23.564-19.103 42.667-42.667 42.667h-576c-82.475 0-149.333-66.859-149.333-149.333v-640c0-82.475 66.859-149.333 149.333-149.333z",a="M853.336 472.588c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667l-0 39.704c-0.119 207.853-136.938 390.871-336.261 449.804s-413.668-20.256-526.798-194.625c-113.13-174.369-98.095-402.38 36.952-560.384s357.934-208.363 547.793-123.767c21.524 9.591 31.198 34.814 21.608 56.338s-34.814 31.198-56.338 21.608c-155.339-69.215-337.702-28.013-448.194 101.264s-122.794 315.83-30.233 458.496c92.561 142.665 267.934 207.457 431.017 159.238s275.025-197.96 275.122-367.997v-39.68zM469.336 537.262l439.163-439.163c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-469.333 469.333c-16.662 16.662-43.677 16.662-60.34 0l-128-128c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l97.83 97.83z",C="M384 707.66l-183.163-183.163c-16.662-16.662-43.677-16.662-60.34 0s-16.662 43.677 0 60.34l213.333 213.333c16.662 16.662 43.677 16.662 60.34 0l469.333-469.333c16.662-16.662 16.662-43.677 0-60.34s-43.677-16.662-60.34 0l-439.163 439.163z",H="M256 213.333c-23.564 0-42.667 19.103-42.667 42.667v512c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-512c0-23.564-19.103-42.667-42.667-42.667h-512zM128 554.667v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333v-85.333c0-70.692 57.308-128 128-128h85.333v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h170.667v-85.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v85.333h85.333c70.692 0 128 57.308 128 128v85.333h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v128c0 70.692-57.308 128-128 128h-85.333v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-170.667v85.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-85.333h-85.333c-70.692 0-128-57.308-128-128v-128h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM384 341.333c-23.564 0-42.667 19.103-42.667 42.667v256c0 23.564 19.103 42.667 42.667 42.667h256c23.564 0 42.667-19.103 42.667-42.667v-256c0-23.564-19.103-42.667-42.667-42.667h-256zM426.667 597.333v-170.667h170.667v170.667h-170.667z",o="M938.667 384v-128c0-23.564-19.103-42.667-42.667-42.667h-768c-23.564 0-42.667 19.103-42.667 42.667v128h853.333zM938.667 469.333h-853.333v298.667c0 23.564 19.103 42.667 42.667 42.667h768c23.564 0 42.667-19.103 42.667-42.667v-298.667zM128 128h768c70.692 0 128 57.308 128 128v512c0 70.692-57.308 128-128 128h-768c-70.692 0-128-57.308-128-128v-512c-0-70.692 57.308-128 128-128z",n="M135.758 303.835v208.165c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-208.165c-84.941 44.139-220.154 68.529-372.364 68.529s-287.423-24.39-372.364-68.529zM42.667 186.182c0-116.678 208.511-186.182 465.455-186.182s465.455 69.504 465.455 186.182v651.636c0 116.914-207.484 186.182-465.455 186.182s-465.455-69.268-465.455-186.182v-651.636zM880.485 629.912c-84.767 44.020-219.728 68.27-372.364 68.27s-287.597-24.25-372.364-68.27v207.906c0 37.832 165.523 93.091 372.364 93.091s372.364-55.259 372.364-93.091v-207.906zM508.121 279.273c205.771 0 372.364-55.531 372.364-93.091s-166.593-93.091-372.364-93.091c-205.771 0-372.364 55.531-372.364 93.091s166.593 93.091 372.364 93.091z",t="M554.333 170.667H725c23.564 0 42.667 19.102 42.667 42.666C767.667 236.897 748.564 256 725 256H554.333v213.333h64c106.039 0 192 85.962 192 192 0 106.039-85.961 192-192 192h-64v128c0 23.564-19.102 42.667-42.666 42.667-23.564 0-42.667-19.103-42.667-42.667v-128H255.667c-23.564 0-42.667-19.102-42.667-42.666C213 787.103 232.103 768 255.667 768H469V554.667h-64c-106.039 0-192-85.962-192-192 0-106.039 85.961-192 192-192h64v-128C469 19.103 488.103 0 511.667 0s42.666 19.103 42.666 42.667v128zm0 384V768h64C677.243 768 725 720.244 725 661.333c0-58.91-47.756-106.666-106.667-106.666h-64zM469 469.333V256h-64c-58.91 0-106.667 47.756-106.667 106.667 0 58.91 47.757 106.666 106.667 106.666h64z",w="M109.842 542.186c24.524 37.972 53.497 75.97 86.619 111.3 92.657 98.834 198.411 157.181 315.54 157.181s222.882-58.347 315.54-157.181c33.122-35.33 62.095-73.328 86.619-111.3 6.961-10.778 13.134-20.9 18.505-30.186-5.371-9.286-11.544-19.408-18.505-30.186-24.524-37.972-53.497-75.97-86.619-111.3-92.657-98.834-198.411-157.181-315.54-157.181s-222.882 58.347-315.54 157.181c-33.122 35.33-62.095 73.328-86.619 111.3-6.961 10.778-13.134 20.9-18.505 30.186 5.371 9.286 11.544 19.408 18.505 30.186zM4.504 492.919c5.998-11.995 17.254-32.007 33.654-57.4 27.143-42.028 59.17-84.030 96.048-123.367 107.343-114.499 233.589-184.152 377.794-184.152s270.451 69.653 377.794 184.152c36.878 39.337 68.905 81.339 96.048 123.367 16.4 25.393 27.656 45.405 33.654 57.4 6.006 12.012 6.006 26.15 0 38.162-5.998 11.995-17.254 32.007-33.654 57.4-27.143 42.028-59.17 84.030-96.048 123.367-107.343 114.499-233.589 184.152-377.794 184.152s-270.451-69.653-377.794-184.152c-36.878-39.337-68.905-81.339-96.048-123.367-16.4-25.393-27.656-45.405-33.654-57.4-6.006-12.012-6.006-26.15 0-38.162zM512 682.667c94.257 0 170.667-76.41 170.667-170.667s-76.41-170.667-170.667-170.667c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667zM512 597.333c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c47.128 0 85.333 38.205 85.333 85.333s-38.205 85.333-85.333 85.333z",V="M810.667 426.667h-256c-23.564 0-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667 19.103-42.667 42.667v682.667c0 23.564 19.103 42.667 42.667 42.667h512c23.564 0 42.667-19.103 42.667-42.667v-426.667h42.667c23.564 0 42.667-19.103 42.667-42.667 0-5.891-1.194-11.503-3.353-16.608 2.229 5.408 3.353 10.95 3.353 16.608v469.333c0 70.692-57.308 128-128 128h-512c-70.692 0-128-57.308-128-128v-682.667c0-70.692 57.308-128 128-128h298.667c11.316 0 22.168 4.495 30.17 12.497l298.667 298.667c4.001 4.001 7.125 8.714 9.249 13.842zM597.333 188.34v152.994h152.994l-152.994-152.994z",d="M853.333 536.994v-323.66c0-23.564-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 18.296 11.516 33.902 27.694 39.966l454.136-454.136c16.662-16.662 43.677-16.662 60.34 0l140.497 140.497zM853.333 657.673l-170.667-170.667-366.327 366.327h494.327c23.564 0 42.667-19.103 42.667-42.667v-152.994zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128zM362.667 469.333c-58.91 0-106.667-47.756-106.667-106.667s47.756-106.667 106.667-106.667c58.91 0 106.667 47.756 106.667 106.667s-47.756 106.667-106.667 106.667zM362.667 384c11.782 0 21.333-9.551 21.333-21.333s-9.551-21.333-21.333-21.333c-11.782 0-21.333 9.551-21.333 21.333s9.551 21.333 21.333 21.333z",e="M128 42.667h768c47.128 0 85.333 38.205 85.333 85.333v768c0 47.128-38.205 85.333-85.333 85.333h-768c-47.128 0-85.333-38.205-85.333-85.333v-768c0-47.128 38.205-85.333 85.333-85.333zM128 128v768h768v-768h-768zM384 426.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM384 682.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM725.333 469.333v-170.667h-426.667v170.667h426.667zM725.333 554.667h-426.667v170.667h426.667v-170.667zM213.333 256c0-23.564 19.103-42.667 42.667-42.667h512c23.564 0 42.667 19.103 42.667 42.667v512c0 23.564-19.103 42.667-42.667 42.667h-512c-23.564 0-42.667-19.103-42.667-42.667v-512z",i="M272.312 812.028c65.693 52.549 149.021 83.972 239.688 83.972s173.995-31.423 239.688-83.972l-122.039-122.039c-33.725 22.337-74.168 35.345-117.649 35.345s-83.923-13.008-117.649-35.345l-122.039 122.039zM211.972 751.688l122.039-122.039c-22.337-33.725-35.345-74.168-35.345-117.649s13.008-83.923 35.345-117.649l-122.039-122.039c-52.549 65.693-83.972 149.021-83.972 239.688s31.423 173.995 83.972 239.688zM689.988 394.351c22.337 33.725 35.345 74.168 35.345 117.649s-13.008 83.923-35.345 117.649l122.039 122.039c52.549-65.693 83.972-149.021 83.972-239.688s-31.423-173.995-83.972-239.688l-122.039 122.039zM629.649 334.012l122.039-122.039c-65.693-52.549-149.021-83.972-239.688-83.972s-173.995 31.423-239.688 83.972l122.039 122.039c33.725-22.337 74.168-35.345 117.649-35.345s83.923 13.008 117.649 35.345zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128z",m="M213.333 512c-23.564 0-42.667 19.103-42.667 42.667v298.667c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-298.667c0-23.564-19.103-42.667-42.667-42.667h-597.333zM256 426.667v-128c0-141.385 114.615-256 256-256s256 114.615 256 256v128h42.667c70.692 0 128 57.308 128 128v298.667c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-298.667c0-70.692 57.308-128 128-128h42.667zM341.333 426.667h341.333v-128c0-94.257-76.41-170.667-170.667-170.667s-170.667 76.41-170.667 170.667v128z",p="M753.778 384c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM896 213.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM896 554.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h640zM753.778 725.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-497.778c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h497.778zM128 298.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 469.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 640c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667zM128 810.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667z",r="M195.462 828.538l162.246-54.082c10.792-3.597 22.574-2.736 32.729 2.393 44.268 22.36 93.191 33.947 142.88 33.818 121.182-0.047 231.942-68.543 286.199-177.103 22.36-44.268 33.947-93.191 33.818-142.786l0.065-19.094c-8.961-162.426-138.655-292.121-298.731-301.017l-21.445-0c-49.594-0.129-98.518 11.458-142.948 33.899-108.398 54.176-176.894 164.935-176.941 286.212-0.129 49.594 11.458 98.518 33.818 142.786 5.129 10.154 5.99 21.936 2.393 32.729l-54.082 162.246zM938.667 490.613c0.155 63.015-14.572 125.176-42.901 181.262-68.622 137.304-208.918 224.066-362.321 224.125-56.963 0.149-113.23-11.864-165.063-35.153l-226.889 75.63c-33.355 11.118-65.088-20.615-53.97-53.97l75.63-226.889c-23.288-51.832-35.301-108.091-35.153-164.968 0.059-153.498 86.821-293.793 223.964-362.334 56.265-28.419 118.447-43.147 181.37-42.982l23.684 0.065c205.856 11.357 370.228 175.729 381.65 383.935v21.279z",x="M213.333 554.667h597.333c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667z",b="M512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384zM450.334 305.833l256 170.667c25.333 16.888 25.333 54.113 0 71.002l-256 170.667c-28.354 18.903-66.334-1.423-66.334-35.501v-341.333c0-34.078 37.98-54.404 66.334-35.501zM469.333 421.057v181.887l136.415-90.943-136.415-90.943z",f="M428.753 188.522l-33.346 33.346c-106.113 106.113-106.113 278.156 0 384.269s278.156 106.113 384.269 0l33.346-33.346-384.269-384.269zM746.33 385.42l96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 96.861 96.861c16.662 16.662 16.662 43.677 0 60.34l-63.516 63.516c-129.228 129.228-332.87 138.69-472.995 28.386l-214.915 214.915c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l214.915-214.915c-110.304-140.125-100.842-343.767 28.386-472.995l63.516-63.516c16.662-16.662 43.677-16.662 60.34 0l96.861 96.861 96.861-96.861c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-96.861 96.861 130.207 130.207z",g="M554.667 469.333h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256v-256c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256z",j="M85.333 695.973v157.361c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256c0-23.564 19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-148.298l120.449 113.198c82.851 82.893 202.437 117.483 316.746 91.619s207.356-108.565 246.454-219.050c7.861-22.214 32.242-33.85 54.456-25.989s33.85 32.242 25.989 54.456c-48.871 138.107-165.18 241.483-308.067 273.813s-292.369-10.908-394.973-113.593l-126.090-118.481zM938.667 328.027v-157.361c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v256c0 23.564-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h148.298l-120.449-113.198c-82.851-82.893-202.437-117.483-316.746-91.619s-207.356 108.565-246.454 219.050c-7.861 22.214-32.242 33.85-54.456 25.989s-33.85-32.242-25.989-54.456c48.871-138.107 165.18-241.483 308.067-273.813s292.369 10.908 394.973 113.593l126.090 118.481z",k="M672.504 732.844c-61.751 48.737-139.731 77.823-224.504 77.823-200.295 0-362.667-162.371-362.667-362.667s162.371-362.667 362.667-362.667c200.295 0 362.667 162.371 362.667 362.667 0 84.773-29.086 162.753-77.823 224.504l193.326 193.326c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-193.326-193.326zM448 725.333c153.167 0 277.333-124.166 277.333-277.333s-124.166-277.333-277.333-277.333c-153.167 0-277.333 124.166-277.333 277.333s124.166 277.333 277.333 277.333z",q="M531.081 976.829c-12.012 6.006-26.15 6.006-38.162 0-11.813-5.907-31.646-16.886-56.866-32.648-41.818-26.136-83.629-56.449-122.816-90.738-115.018-100.641-185.237-214.747-185.237-341.443v-341.333c0-19.578 13.325-36.644 32.318-41.393l341.333-85.333c6.794-1.699 13.902-1.699 20.696 0l341.333 85.333c18.994 4.748 32.318 21.814 32.318 41.393v341.333c0 126.696-70.219 240.802-185.237 341.443-39.187 34.289-80.998 64.602-122.816 90.738-25.219 15.762-45.052 26.741-56.866 32.648zM542.72 871.819c38.182-23.864 76.371-51.551 111.85-82.595 98.315-86.026 156.096-179.92 156.096-277.223v-308.020l-298.667-74.667-298.667 74.667v308.020c0 97.304 57.781 191.198 156.096 277.223 35.48 31.045 73.669 58.732 111.85 82.595 10.971 6.857 21.274 12.975 30.72 18.326 9.446-5.352 19.749-11.47 30.72-18.326z",u="M341.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM341.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM853.333 1024c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM853.333 938.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667zM278.906 213.333h702.427c26.929 0 47.123 24.639 41.836 51.044l-71.667 357.908c-12.079 60.815-66.009 104.228-127.182 103.048l-450.625-0.002c-64.673 0.549-119.595-47.233-127.995-111.324l-64.858-491.555c-2.781-21.214-20.845-37.088-42.175-37.12h-96c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667l96.065 0c64.186 0.097 118.376 47.718 126.715 111.325l13.459 102.008zM290.165 298.667l40.139 304.215c2.802 21.376 21.109 37.303 43.029 37.118l451.804 0.008c20.664 0.396 38.64-14.075 42.68-34.412l61.459-306.929h-639.111z",y="M211.972 272.312c-52.549 65.693-83.972 149.021-83.972 239.688 0 212.077 171.923 384 384 384 90.667 0 173.995-31.423 239.688-83.972l-539.716-539.716zM272.312 211.972l539.716 539.716c52.549-65.693 83.972-149.021 83.972-239.688 0-212.077-171.923-384-384-384-90.667 0-173.995 31.423-239.688 83.972zM512 981.333c-259.206 0-469.333-210.128-469.333-469.333s210.128-469.333 469.333-469.333c259.206 0 469.333 210.128 469.333 469.333s-210.128 469.333-469.333 469.333z",A="M810.667 725.333h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-170.667zM469.333 298.667v-170.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v170.667h85.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h85.333zM128 640h-85.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h-85.333v256c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-256zM213.333 426.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-298.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v298.667zM554.667 896c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384zM896 512c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v-384c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v384z",B="M213.333 170.667c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 23.564 19.103 42.667 42.667 42.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-597.333c0-23.564-19.103-42.667-42.667-42.667h-597.333zM213.333 85.333h597.333c70.692 0 128 57.308 128 128v597.333c0 70.692-57.308 128-128 128h-597.333c-70.692 0-128-57.308-128-128v-597.333c0-70.692 57.308-128 128-128z",D="M763.502 0.571c-77.008-4.934-155.9 22.112-214.627 80.818-72.225 72.195-93.623 174.034-69.609 266.373l-438.681 438.881c-54.114 54.090-54.112 142.699 0 196.789 54.11 54.092 142.752 54.090 196.862 0l439.044-438.88c92.345 23.959 194.278 2.585 266.472-69.583 78.305-78.274 99.693-191.946 64.895-289.93-3.996-11.212-13.447-19.605-25.057-22.249s-23.765 0.827-32.226 9.202l-97.888 97.851c-27.694 27.684-70.919 27.684-98.613 0s-27.694-70.53 0-98.214l97.888-97.851c8.554-8.448 12.14-20.712 9.485-32.435s-11.176-21.247-22.536-25.188c-24.506-8.696-49.74-13.939-75.41-15.584zM756.976 70.154l-52.207 52.187c-54.11 54.091-54.11 142.699 0 196.79s142.752 54.091 196.862 0l52.207-51.825c3.171 56.973-16.456 114.665-60.182 158.374-59.043 59.022-143.928 75.044-217.528 48.926-12.612-4.543-26.714-1.442-36.255 7.973l-451.734 451.565c-27.695 27.685-70.919 27.684-98.613 0s-27.695-70.892 0-98.576l451.734-451.202c9.546-9.458 12.791-23.565 8.338-36.241-26.128-73.573-10.465-158.425 48.581-217.447 43.729-43.713 101.797-63.696 158.795-60.523z",E="M177.515 966.904c-11.762 14.448-33.168 16.881-47.74 5.49l-29.967-23.425c-14.604-11.416-17.454-32.664-6.214-47.66l0.971-1.295c11.172-14.906 12.835-40.058 3.596-56.388l-4.159-7.35c-9.186-16.236-31.543-27.87-50.186-25.96l-1.61 0.165c-18.531 1.899-35.393-11.516-37.652-29.874l-4.645-37.751c-2.264-18.398 10.74-35.437 29.294-38.094l1.603-0.23c18.442-2.641 37.406-19.254 42.362-37.123l2.376-8.566c4.954-17.862-2.656-41.806-17.191-53.639l-1.256-1.022c-14.448-11.762-16.881-33.168-5.49-47.74l23.425-29.967c11.416-14.604 32.664-17.454 47.66-6.214l1.295 0.971c14.906 11.172 40.058 12.835 56.388 3.596l7.35-4.159c16.236-9.186 27.87-31.543 25.96-50.186l-0.165-1.61c-1.899-18.531 11.516-35.393 29.874-37.652l37.751-4.645c18.398-2.264 35.437 10.74 38.094 29.294l0.23 1.603c2.641 18.442 19.254 37.406 37.123 42.362l8.566 2.376c17.862 4.953 41.806-2.656 53.639-17.191l1.022-1.256c11.762-14.448 33.168-16.881 47.74-5.49l29.967 23.425c14.604 11.416 17.454 32.664 6.214 47.66l-0.971 1.295c-11.172 14.906-12.835 40.058-3.596 56.388l4.159 7.35c9.186 16.236 31.543 27.87 50.186 25.96l1.61-0.165c18.531-1.899 35.393 11.516 37.652 29.874l4.645 37.751c2.264 18.398-10.74 35.437-29.294 38.094l-1.603 0.23c-18.442 2.641-37.406 19.254-42.362 37.123l-2.376 8.566c-4.953 17.862 2.656 41.806 17.191 53.639l1.256 1.022c14.448 11.762 16.881 33.168 5.49 47.74l-23.425 29.967c-11.416 14.604-32.664 17.454-47.66 6.214l-1.295-0.971c-14.906-11.172-40.058-12.835-56.388-3.596l-7.35 4.159c-16.236 9.186-27.87 31.543-25.96 50.186l0.165 1.61c1.899 18.531-11.516 35.393-29.874 37.652l-37.751 4.645c-18.398 2.264-35.437-10.74-38.094-29.294l-0.23-1.603c-2.641-18.442-19.254-37.406-37.123-42.362l-8.566-2.376c-17.862-4.953-41.806 2.656-53.639 17.191l-1.022 1.256zM314.266 852.379c70.166-8.615 120.062-72.48 111.447-142.645s-72.48-120.062-142.645-111.447c-70.166 8.615-120.062 72.48-111.447 142.645s72.48 120.062 142.645 111.447zM638.981 554.748c-9.637 15.944-30.496 21.333-46.511 12.081l-32.935-19.026c-16.051-9.272-21.83-29.917-12.787-46.332l0.781-1.418c8.989-16.316 7.135-41.455-4.287-56.34l-5.141-6.7c-11.356-14.8-35.115-23.209-53.31-18.723l-1.572 0.388c-18.086 4.459-36.652-6.478-41.443-24.343l-9.854-36.737c-4.802-17.904 5.704-36.587 23.707-41.8l1.555-0.45c17.895-5.182 34.362-24.272 36.783-42.658l1.16-8.814c2.419-18.377-8.448-41.029-24.489-50.724l-1.386-0.837c-15.944-9.637-21.333-30.496-12.081-46.511l19.026-32.935c9.272-16.051 29.917-21.83 46.332-12.787l1.418 0.781c16.316 8.989 41.455 7.135 56.34-4.287l6.7-5.141c14.8-11.356 23.209-35.115 18.723-53.31l-0.388-1.572c-4.459-18.086 6.478-36.652 24.343-41.443l36.737-9.854c17.904-4.802 36.587 5.704 41.8 23.707l0.45 1.555c5.182 17.895 24.272 34.362 42.658 36.783l8.814 1.16c18.377 2.419 41.029-8.448 50.724-24.489l0.837-1.386c9.637-15.944 30.496-21.333 46.511-12.081l32.935 19.026c16.051 9.272 21.83 29.917 12.787 46.332l-0.781 1.418c-8.989 16.316-7.135 41.455 4.287 56.34l5.141 6.7c11.356 14.8 35.115 23.209 53.31 18.723l1.572-0.388c18.086-4.459 36.652 6.478 41.443 24.343l9.854 36.737c4.802 17.904-5.704 36.587-23.707 41.8l-1.555 0.45c-17.895 5.182-34.362 24.272-36.783 42.658l-1.16 8.814c-2.419 18.377 8.448 41.029 24.489 50.724l1.386 0.837c15.944 9.637 21.333 30.496 12.081 46.511l-19.026 32.935c-9.272 16.051-29.917 21.83-46.332 12.787l-1.418-0.781c-16.316-8.989-41.455-7.135-56.34 4.287l-6.7 5.141c-14.8 11.356-23.209 35.115-18.723 53.31l0.388 1.572c4.459 18.086-6.478 36.652-24.343 41.443l-36.737 9.854c-17.904 4.802-36.587-5.704-41.8-23.707l-0.45-1.555c-5.182-17.895-24.272-34.362-42.658-36.783l-8.814-1.16c-18.377-2.419-41.029 8.448-50.724 24.489l-0.837 1.386zM758.462 422.305c68.284-18.297 108.806-88.484 90.51-156.767s-88.484-108.806-156.767-90.51c-68.284 18.297-108.806 88.484-90.51 156.767s88.484 108.806 156.767 90.51z",F="M572.34 512l225.83 225.83c16.662 16.662 16.662 43.677 0 60.34s-43.677 16.662-60.34 0l-225.83-225.83-225.83 225.83c-16.662 16.662-43.677 16.662-60.34 0s-16.662-43.677 0-60.34l225.83-225.83-225.83-225.83c-16.662-16.662-16.662-43.677 0-60.34s43.677-16.662 60.34 0l225.83 225.83 225.83-225.83c16.662-16.662 43.677-16.662 60.34 0s16.662 43.677 0 60.34l-225.83 225.83z";export{C as a,A as b,x as c,g as d,h as e,M as f,v as g,i as h,s as i,f as j,q as k,V as l,n as m,e as n,p as o,H as p,c as q,r,d as s,o as t,b as u,k as v,t as w,E as x,B as y,D as z,u as A,a as B,l as C,y as D,z as E,F,m as G,w as H,j as I}; |
@@ -81,5 +81,9 @@ /* tslint:disable */ | ||
/** | ||
* Product ID | ||
*/ | ||
'productId'?: string; | ||
/** | ||
* URL-friendly slug (e.g. `"jawsdb-mysql"`) | ||
*/ | ||
'productLabel': string; | ||
'productLabel'?: string; | ||
} | ||
@@ -96,2 +100,6 @@ interface ManifoldDataProductLogoAttributes extends StencilHTMLAttributes { | ||
/** | ||
* Product ID | ||
*/ | ||
'productId'?: string; | ||
/** | ||
* URL-friendly slug (e.g. `"jawsdb-mysql"`) | ||
@@ -108,5 +116,9 @@ */ | ||
/** | ||
* Product ID (e.g. `"jawsdb-mysql"`) | ||
*/ | ||
'productId'?: string; | ||
/** | ||
* URL-friendly slug (e.g. `"jawsdb-mysql"`) | ||
*/ | ||
'productLabel': string; | ||
'productLabel'?: string; | ||
} | ||
@@ -119,2 +131,6 @@ interface ManifoldDataProductNameAttributes extends StencilHTMLAttributes { | ||
/** | ||
* Product ID (e.g. `"jawsdb-mysql"`) | ||
*/ | ||
'productId'?: string; | ||
/** | ||
* URL-friendly slug (e.g. `"jawsdb-mysql"`) | ||
@@ -121,0 +137,0 @@ */ |
@@ -10,6 +10,8 @@ import '../../stencil.core'; | ||
/** URL-friendly slug (e.g. `"jawsdb-mysql"`) */ | ||
productLabel: string; | ||
productLabel?: string; | ||
/** Product ID */ | ||
productId?: string; | ||
product?: Catalog.ExpandedProduct; | ||
componentWillLoad(): void; | ||
componentWillLoad(): Promise<void> | null; | ||
render(): JSX.Element; | ||
} |
@@ -8,6 +8,8 @@ import '../../stencil.core'; | ||
/** URL-friendly slug (e.g. `"jawsdb-mysql"`) */ | ||
productLabel: string; | ||
productLabel?: string; | ||
/** Product ID (e.g. `"jawsdb-mysql"`) */ | ||
productId?: string; | ||
product?: Catalog.ExpandedProduct; | ||
componentWillLoad(): void; | ||
componentWillLoad(): Promise<void> | null; | ||
render(): JSX.Element; | ||
} |
@@ -5,5 +5,5 @@ import { FunctionalComponent } from '../../../stencil.core'; | ||
isExistingResource?: boolean; | ||
onChange: (e: CustomEvent) => void; | ||
onChange?: (e: CustomEvent) => void; | ||
} | ||
export declare const BooleanFeature: FunctionalComponent<BooleanFeatureProps>; | ||
export {}; |
@@ -10,4 +10,5 @@ import '../../stencil.core'; | ||
resource?: Marketplace.Resource; | ||
plan?: Catalog.ExpandedPlan; | ||
componentWillLoad(): Promise<void>; | ||
render(): JSX.Element; | ||
render(): JSX.Element | null; | ||
} |
@@ -76,2 +76,7 @@ { | ||
{ | ||
"label": "product-id", | ||
"description": "Product ID", | ||
"required": false | ||
}, | ||
{ | ||
"label": "product-label", | ||
@@ -88,2 +93,7 @@ "description": "URL-friendly slug (e.g. `\"jawsdb-mysql\"`)", | ||
{ | ||
"label": "product-id", | ||
"description": "Product ID (e.g. `\"jawsdb-mysql\"`)", | ||
"required": false | ||
}, | ||
{ | ||
"label": "product-label", | ||
@@ -565,3 +575,3 @@ "description": "URL-friendly slug (e.g. `\"jawsdb-mysql\"`)", | ||
"label": "manifold-resource-details", | ||
"description": "", | ||
"description": "The resource details component displays a table of features belonging to a resource. \n\n```html\n<manifold-resource-details resource-id=\"268ak39rn9czavv1qd9m93t482gmm\"></manifold-resource-details>\n```", | ||
"attributes": [ | ||
@@ -568,0 +578,0 @@ { |
@@ -54,3 +54,3 @@ { | ||
}, | ||
"version": "0.0.17-alpha.3" | ||
"version": "0.0.17-alpha.4" | ||
} |
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
1892928
341
20296
102
191